├── .dockerignore ├── .github ├── FUNDING.yml └── workflows │ └── docker-image.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── api.php ├── auto_updater.sh ├── config.php.example ├── docker-compose.yml ├── docker ├── README.md ├── attributes.sh ├── config.php ├── entrypoint.sh ├── env-substitution.sh ├── fastcgi.conf ├── nginx.conf └── opensearch.xml ├── docs ├── README.md ├── docker-compose-prebuilt-tor-proxy.md ├── docker-run-manually-built-tor-proxy.md ├── docker-run-prebuilt-tor-proxy.md └── system-tor-proxy.md ├── donate.php ├── engines ├── ahmia │ └── hidden_service.php ├── bittorrent │ ├── 1337x.php │ ├── get_magnet_1337x.php │ ├── merge.php │ ├── nyaa.php │ ├── rutor.php │ ├── sukebei.php │ ├── thepiratebay.php │ ├── torrentgalaxy.php │ └── yts.php ├── invidious │ └── video.php ├── librex │ └── fallback.php ├── maps │ └── openstreetmap.php ├── qwant │ └── image.php ├── special │ ├── currency.php │ ├── definition.php │ ├── ip.php │ ├── special.php │ ├── tor.php │ ├── user_agent.php │ ├── weather.php │ └── wikipedia.php └── text │ ├── bing.php │ ├── brave.php │ ├── duckduckgo.php │ ├── ecosia.php │ ├── google.php │ ├── mojeek.php │ ├── text.php │ └── yandex.php ├── favicon.ico ├── image_proxy.php ├── index.php ├── instances.json ├── instances.php ├── locale ├── bn.php ├── en.php ├── fr.php ├── hr.php ├── it.php ├── ko.php ├── localization.php ├── nl.php ├── sr.php ├── sv.php └── uk.php ├── misc ├── cooldowns.php ├── footer.php ├── header.php ├── search_engine.php └── tools.php ├── opensearch.xml.example ├── search.php ├── settings.php └── static ├── css ├── amoled.css ├── auto.css ├── catppuccin_frappe.css ├── catppuccin_latte.css ├── catppuccin_macchiato.css ├── catppuccin_mocha.css ├── dark.css ├── darker.css ├── discord.css ├── dracula.css ├── github_night.css ├── google.css ├── gruvbox.css ├── light.css ├── night_owl.css ├── nord.css ├── startpage.css ├── styles.css ├── tokyo_night.css └── ubuntu.css ├── images ├── btc.png ├── buy-me-a-coffee.png ├── general_result.png ├── images_result.png ├── kofi.png ├── librex.png ├── maps_result.png ├── tor_result.png ├── torrents_result.png ├── videos_result.png ├── xmr-ahwx.png └── xmr.png └── misc ├── ddg_bang.json └── languages.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/SECURITY.md -------------------------------------------------------------------------------- /api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/api.php -------------------------------------------------------------------------------- /auto_updater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/auto_updater.sh -------------------------------------------------------------------------------- /config.php.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/config.php.example -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/attributes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/docker/attributes.sh -------------------------------------------------------------------------------- /docker/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/docker/config.php -------------------------------------------------------------------------------- /docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/docker/entrypoint.sh -------------------------------------------------------------------------------- /docker/env-substitution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/docker/env-substitution.sh -------------------------------------------------------------------------------- /docker/fastcgi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/docker/fastcgi.conf -------------------------------------------------------------------------------- /docker/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/docker/nginx.conf -------------------------------------------------------------------------------- /docker/opensearch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/docker/opensearch.xml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/docker-compose-prebuilt-tor-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/docs/docker-compose-prebuilt-tor-proxy.md -------------------------------------------------------------------------------- /docs/docker-run-manually-built-tor-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/docs/docker-run-manually-built-tor-proxy.md -------------------------------------------------------------------------------- /docs/docker-run-prebuilt-tor-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/docs/docker-run-prebuilt-tor-proxy.md -------------------------------------------------------------------------------- /docs/system-tor-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/docs/system-tor-proxy.md -------------------------------------------------------------------------------- /donate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/donate.php -------------------------------------------------------------------------------- /engines/ahmia/hidden_service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/ahmia/hidden_service.php -------------------------------------------------------------------------------- /engines/bittorrent/1337x.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/bittorrent/1337x.php -------------------------------------------------------------------------------- /engines/bittorrent/get_magnet_1337x.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/bittorrent/get_magnet_1337x.php -------------------------------------------------------------------------------- /engines/bittorrent/merge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/bittorrent/merge.php -------------------------------------------------------------------------------- /engines/bittorrent/nyaa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/bittorrent/nyaa.php -------------------------------------------------------------------------------- /engines/bittorrent/rutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/bittorrent/rutor.php -------------------------------------------------------------------------------- /engines/bittorrent/sukebei.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/bittorrent/sukebei.php -------------------------------------------------------------------------------- /engines/bittorrent/thepiratebay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/bittorrent/thepiratebay.php -------------------------------------------------------------------------------- /engines/bittorrent/torrentgalaxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/bittorrent/torrentgalaxy.php -------------------------------------------------------------------------------- /engines/bittorrent/yts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/bittorrent/yts.php -------------------------------------------------------------------------------- /engines/invidious/video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/invidious/video.php -------------------------------------------------------------------------------- /engines/librex/fallback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/librex/fallback.php -------------------------------------------------------------------------------- /engines/maps/openstreetmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/maps/openstreetmap.php -------------------------------------------------------------------------------- /engines/qwant/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/qwant/image.php -------------------------------------------------------------------------------- /engines/special/currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/special/currency.php -------------------------------------------------------------------------------- /engines/special/definition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/special/definition.php -------------------------------------------------------------------------------- /engines/special/ip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/special/ip.php -------------------------------------------------------------------------------- /engines/special/special.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/special/special.php -------------------------------------------------------------------------------- /engines/special/tor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/special/tor.php -------------------------------------------------------------------------------- /engines/special/user_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/special/user_agent.php -------------------------------------------------------------------------------- /engines/special/weather.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/special/weather.php -------------------------------------------------------------------------------- /engines/special/wikipedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/special/wikipedia.php -------------------------------------------------------------------------------- /engines/text/bing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/text/bing.php -------------------------------------------------------------------------------- /engines/text/brave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/text/brave.php -------------------------------------------------------------------------------- /engines/text/duckduckgo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/text/duckduckgo.php -------------------------------------------------------------------------------- /engines/text/ecosia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/text/ecosia.php -------------------------------------------------------------------------------- /engines/text/google.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/text/google.php -------------------------------------------------------------------------------- /engines/text/mojeek.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/text/mojeek.php -------------------------------------------------------------------------------- /engines/text/text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/text/text.php -------------------------------------------------------------------------------- /engines/text/yandex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/engines/text/yandex.php -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/favicon.ico -------------------------------------------------------------------------------- /image_proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/image_proxy.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/index.php -------------------------------------------------------------------------------- /instances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/instances.json -------------------------------------------------------------------------------- /instances.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/instances.php -------------------------------------------------------------------------------- /locale/bn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/locale/bn.php -------------------------------------------------------------------------------- /locale/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/locale/en.php -------------------------------------------------------------------------------- /locale/fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/locale/fr.php -------------------------------------------------------------------------------- /locale/hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/locale/hr.php -------------------------------------------------------------------------------- /locale/it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/locale/it.php -------------------------------------------------------------------------------- /locale/ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/locale/ko.php -------------------------------------------------------------------------------- /locale/localization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/locale/localization.php -------------------------------------------------------------------------------- /locale/nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/locale/nl.php -------------------------------------------------------------------------------- /locale/sr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/locale/sr.php -------------------------------------------------------------------------------- /locale/sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/locale/sv.php -------------------------------------------------------------------------------- /locale/uk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/locale/uk.php -------------------------------------------------------------------------------- /misc/cooldowns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/misc/cooldowns.php -------------------------------------------------------------------------------- /misc/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/misc/footer.php -------------------------------------------------------------------------------- /misc/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/misc/header.php -------------------------------------------------------------------------------- /misc/search_engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/misc/search_engine.php -------------------------------------------------------------------------------- /misc/tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/misc/tools.php -------------------------------------------------------------------------------- /opensearch.xml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/opensearch.xml.example -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/search.php -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/settings.php -------------------------------------------------------------------------------- /static/css/amoled.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/amoled.css -------------------------------------------------------------------------------- /static/css/auto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/auto.css -------------------------------------------------------------------------------- /static/css/catppuccin_frappe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/catppuccin_frappe.css -------------------------------------------------------------------------------- /static/css/catppuccin_latte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/catppuccin_latte.css -------------------------------------------------------------------------------- /static/css/catppuccin_macchiato.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/catppuccin_macchiato.css -------------------------------------------------------------------------------- /static/css/catppuccin_mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/catppuccin_mocha.css -------------------------------------------------------------------------------- /static/css/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/dark.css -------------------------------------------------------------------------------- /static/css/darker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/darker.css -------------------------------------------------------------------------------- /static/css/discord.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/discord.css -------------------------------------------------------------------------------- /static/css/dracula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/dracula.css -------------------------------------------------------------------------------- /static/css/github_night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/github_night.css -------------------------------------------------------------------------------- /static/css/google.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/google.css -------------------------------------------------------------------------------- /static/css/gruvbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/gruvbox.css -------------------------------------------------------------------------------- /static/css/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/light.css -------------------------------------------------------------------------------- /static/css/night_owl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/night_owl.css -------------------------------------------------------------------------------- /static/css/nord.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/nord.css -------------------------------------------------------------------------------- /static/css/startpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/startpage.css -------------------------------------------------------------------------------- /static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/styles.css -------------------------------------------------------------------------------- /static/css/tokyo_night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/tokyo_night.css -------------------------------------------------------------------------------- /static/css/ubuntu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/css/ubuntu.css -------------------------------------------------------------------------------- /static/images/btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/images/btc.png -------------------------------------------------------------------------------- /static/images/buy-me-a-coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/images/buy-me-a-coffee.png -------------------------------------------------------------------------------- /static/images/general_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/images/general_result.png -------------------------------------------------------------------------------- /static/images/images_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/images/images_result.png -------------------------------------------------------------------------------- /static/images/kofi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/images/kofi.png -------------------------------------------------------------------------------- /static/images/librex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/images/librex.png -------------------------------------------------------------------------------- /static/images/maps_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/images/maps_result.png -------------------------------------------------------------------------------- /static/images/tor_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/images/tor_result.png -------------------------------------------------------------------------------- /static/images/torrents_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/images/torrents_result.png -------------------------------------------------------------------------------- /static/images/videos_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/images/videos_result.png -------------------------------------------------------------------------------- /static/images/xmr-ahwx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/images/xmr-ahwx.png -------------------------------------------------------------------------------- /static/images/xmr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/images/xmr.png -------------------------------------------------------------------------------- /static/misc/ddg_bang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/misc/ddg_bang.json -------------------------------------------------------------------------------- /static/misc/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahwxorg/LibreY/HEAD/static/misc/languages.json --------------------------------------------------------------------------------