├── .dockerignore ├── .env ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── __init__.py ├── _config.py ├── bangs.json ├── compose.yaml ├── requirements.txt ├── resources └── _config.py.gen.template ├── scripts ├── docker-cmd.sh ├── generate-opensearch.sh └── generate-pyconfig.py ├── src ├── helpers.py ├── images.py ├── textResults.py ├── text_engines │ ├── google.py │ ├── mullvad.py │ ├── objects │ │ ├── fullEngineResults.py │ │ ├── textResult.py │ │ └── wikiSnippet.py │ └── qwant.py ├── torrent_sites │ ├── nyaa.py │ ├── rutor.py │ ├── thepiratebay.py │ └── torrentgalaxy.py ├── torrents.py └── video.py ├── static ├── calculator.js ├── cookies-settings-version.js ├── cookies.js ├── css │ ├── ancient.css │ ├── catppuccin_mocha_blue.css │ ├── catppuccin_mocha_green.css │ ├── classic.css │ ├── dark.css │ ├── dark_blur.css │ ├── dark_blur_beta.css │ ├── dark_default.css │ ├── darker.css │ ├── gentoo_lavender.css │ ├── github_night.css │ ├── light.css │ ├── menu.css │ ├── night.css │ ├── red.css │ ├── search.css │ ├── settings-style.css │ └── style.css ├── favicon.ico ├── favicon.png ├── fonts │ ├── inter-v12-latin-300.woff │ ├── inter-v12-latin-300.woff2 │ ├── inter-v12-latin-700.woff │ ├── inter-v12-latin-700.woff2 │ ├── inter-v12-latin-regular.woff │ ├── inter-v12-latin-regular.woff2 │ └── material-icons-round-v108-latin-regular.woff2 ├── imagesearch.png ├── lang │ ├── README.md │ ├── danish.json │ ├── dutch.json │ ├── english.json │ ├── french.json │ ├── french_canadian.json │ ├── german.json │ ├── greek.json │ ├── italian.json │ ├── japanese.json │ ├── korean.json │ ├── mandarin_chinese.json │ ├── norwegian.json │ ├── polish.json │ ├── portuguese.json │ ├── romanian.json │ ├── russian.json │ ├── spanish.json │ ├── swedish.json │ ├── turkish.json │ └── ukrainian.json ├── menu.js ├── opensearch.xml.example ├── preview1.webp ├── preview2.webp ├── preview3.webp ├── script.js ├── searchicon.png ├── sheng-l-q2dUSl9S4Xg-unsplash.webp ├── themepreview │ ├── preview1.webp │ ├── preview10.webp │ ├── preview11.webp │ ├── preview12.webp │ ├── preview13.webp │ ├── preview2.webp │ ├── preview3.webp │ ├── preview4.webp │ ├── preview5.webp │ ├── preview6.webp │ ├── preview7.webp │ ├── preview8.webp │ └── preview9.webp ├── torrentSort.js └── uxlang.js └── templates ├── discover.html ├── images.html ├── preresults_layout.html ├── results.html ├── results_layout.html ├── search.html ├── settings.html ├── torrents.html └── videos.html /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/SECURITY.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/__init__.py -------------------------------------------------------------------------------- /_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/_config.py -------------------------------------------------------------------------------- /bangs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/bangs.json -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/compose.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/_config.py.gen.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/resources/_config.py.gen.template -------------------------------------------------------------------------------- /scripts/docker-cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/scripts/docker-cmd.sh -------------------------------------------------------------------------------- /scripts/generate-opensearch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/scripts/generate-opensearch.sh -------------------------------------------------------------------------------- /scripts/generate-pyconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/scripts/generate-pyconfig.py -------------------------------------------------------------------------------- /src/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/src/helpers.py -------------------------------------------------------------------------------- /src/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/src/images.py -------------------------------------------------------------------------------- /src/textResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/src/textResults.py -------------------------------------------------------------------------------- /src/text_engines/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/src/text_engines/google.py -------------------------------------------------------------------------------- /src/text_engines/mullvad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/src/text_engines/mullvad.py -------------------------------------------------------------------------------- /src/text_engines/objects/fullEngineResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/src/text_engines/objects/fullEngineResults.py -------------------------------------------------------------------------------- /src/text_engines/objects/textResult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/src/text_engines/objects/textResult.py -------------------------------------------------------------------------------- /src/text_engines/objects/wikiSnippet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/src/text_engines/objects/wikiSnippet.py -------------------------------------------------------------------------------- /src/text_engines/qwant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/src/text_engines/qwant.py -------------------------------------------------------------------------------- /src/torrent_sites/nyaa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/src/torrent_sites/nyaa.py -------------------------------------------------------------------------------- /src/torrent_sites/rutor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/src/torrent_sites/rutor.py -------------------------------------------------------------------------------- /src/torrent_sites/thepiratebay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/src/torrent_sites/thepiratebay.py -------------------------------------------------------------------------------- /src/torrent_sites/torrentgalaxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/src/torrent_sites/torrentgalaxy.py -------------------------------------------------------------------------------- /src/torrents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/src/torrents.py -------------------------------------------------------------------------------- /src/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/src/video.py -------------------------------------------------------------------------------- /static/calculator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/calculator.js -------------------------------------------------------------------------------- /static/cookies-settings-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/cookies-settings-version.js -------------------------------------------------------------------------------- /static/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/cookies.js -------------------------------------------------------------------------------- /static/css/ancient.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/css/ancient.css -------------------------------------------------------------------------------- /static/css/catppuccin_mocha_blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/css/catppuccin_mocha_blue.css -------------------------------------------------------------------------------- /static/css/catppuccin_mocha_green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/css/catppuccin_mocha_green.css -------------------------------------------------------------------------------- /static/css/classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/css/classic.css -------------------------------------------------------------------------------- /static/css/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/css/dark.css -------------------------------------------------------------------------------- /static/css/dark_blur.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/css/dark_blur.css -------------------------------------------------------------------------------- /static/css/dark_blur_beta.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/css/dark_blur_beta.css -------------------------------------------------------------------------------- /static/css/dark_default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/css/dark_default.css -------------------------------------------------------------------------------- /static/css/darker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/css/darker.css -------------------------------------------------------------------------------- /static/css/gentoo_lavender.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/css/gentoo_lavender.css -------------------------------------------------------------------------------- /static/css/github_night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/css/github_night.css -------------------------------------------------------------------------------- /static/css/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/css/light.css -------------------------------------------------------------------------------- /static/css/menu.css: -------------------------------------------------------------------------------- 1 | .search-menu { 2 | margin-top: -50px !important; 3 | } -------------------------------------------------------------------------------- /static/css/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/css/night.css -------------------------------------------------------------------------------- /static/css/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/css/red.css -------------------------------------------------------------------------------- /static/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/css/search.css -------------------------------------------------------------------------------- /static/css/settings-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/css/settings-style.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/fonts/inter-v12-latin-300.woff -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/fonts/inter-v12-latin-300.woff2 -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/fonts/inter-v12-latin-700.woff -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/fonts/inter-v12-latin-700.woff2 -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/fonts/inter-v12-latin-regular.woff -------------------------------------------------------------------------------- /static/fonts/inter-v12-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/fonts/inter-v12-latin-regular.woff2 -------------------------------------------------------------------------------- /static/fonts/material-icons-round-v108-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/fonts/material-icons-round-v108-latin-regular.woff2 -------------------------------------------------------------------------------- /static/imagesearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/imagesearch.png -------------------------------------------------------------------------------- /static/lang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/README.md -------------------------------------------------------------------------------- /static/lang/danish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/danish.json -------------------------------------------------------------------------------- /static/lang/dutch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/dutch.json -------------------------------------------------------------------------------- /static/lang/english.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/english.json -------------------------------------------------------------------------------- /static/lang/french.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/french.json -------------------------------------------------------------------------------- /static/lang/french_canadian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/french_canadian.json -------------------------------------------------------------------------------- /static/lang/german.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/german.json -------------------------------------------------------------------------------- /static/lang/greek.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/greek.json -------------------------------------------------------------------------------- /static/lang/italian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/italian.json -------------------------------------------------------------------------------- /static/lang/japanese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/japanese.json -------------------------------------------------------------------------------- /static/lang/korean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/korean.json -------------------------------------------------------------------------------- /static/lang/mandarin_chinese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/mandarin_chinese.json -------------------------------------------------------------------------------- /static/lang/norwegian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/norwegian.json -------------------------------------------------------------------------------- /static/lang/polish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/polish.json -------------------------------------------------------------------------------- /static/lang/portuguese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/portuguese.json -------------------------------------------------------------------------------- /static/lang/romanian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/romanian.json -------------------------------------------------------------------------------- /static/lang/russian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/russian.json -------------------------------------------------------------------------------- /static/lang/spanish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/spanish.json -------------------------------------------------------------------------------- /static/lang/swedish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/swedish.json -------------------------------------------------------------------------------- /static/lang/turkish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/turkish.json -------------------------------------------------------------------------------- /static/lang/ukrainian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/lang/ukrainian.json -------------------------------------------------------------------------------- /static/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/menu.js -------------------------------------------------------------------------------- /static/opensearch.xml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/opensearch.xml.example -------------------------------------------------------------------------------- /static/preview1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/preview1.webp -------------------------------------------------------------------------------- /static/preview2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/preview2.webp -------------------------------------------------------------------------------- /static/preview3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/preview3.webp -------------------------------------------------------------------------------- /static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/script.js -------------------------------------------------------------------------------- /static/searchicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/searchicon.png -------------------------------------------------------------------------------- /static/sheng-l-q2dUSl9S4Xg-unsplash.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/sheng-l-q2dUSl9S4Xg-unsplash.webp -------------------------------------------------------------------------------- /static/themepreview/preview1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/themepreview/preview1.webp -------------------------------------------------------------------------------- /static/themepreview/preview10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/themepreview/preview10.webp -------------------------------------------------------------------------------- /static/themepreview/preview11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/themepreview/preview11.webp -------------------------------------------------------------------------------- /static/themepreview/preview12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/themepreview/preview12.webp -------------------------------------------------------------------------------- /static/themepreview/preview13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/themepreview/preview13.webp -------------------------------------------------------------------------------- /static/themepreview/preview2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/themepreview/preview2.webp -------------------------------------------------------------------------------- /static/themepreview/preview3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/themepreview/preview3.webp -------------------------------------------------------------------------------- /static/themepreview/preview4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/themepreview/preview4.webp -------------------------------------------------------------------------------- /static/themepreview/preview5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/themepreview/preview5.webp -------------------------------------------------------------------------------- /static/themepreview/preview6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/themepreview/preview6.webp -------------------------------------------------------------------------------- /static/themepreview/preview7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/themepreview/preview7.webp -------------------------------------------------------------------------------- /static/themepreview/preview8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/themepreview/preview8.webp -------------------------------------------------------------------------------- /static/themepreview/preview9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/themepreview/preview9.webp -------------------------------------------------------------------------------- /static/torrentSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/torrentSort.js -------------------------------------------------------------------------------- /static/uxlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/static/uxlang.js -------------------------------------------------------------------------------- /templates/discover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/templates/discover.html -------------------------------------------------------------------------------- /templates/images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/templates/images.html -------------------------------------------------------------------------------- /templates/preresults_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/templates/preresults_layout.html -------------------------------------------------------------------------------- /templates/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/templates/results.html -------------------------------------------------------------------------------- /templates/results_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/templates/results_layout.html -------------------------------------------------------------------------------- /templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/templates/search.html -------------------------------------------------------------------------------- /templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/templates/settings.html -------------------------------------------------------------------------------- /templates/torrents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/templates/torrents.html -------------------------------------------------------------------------------- /templates/videos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TEMtheLEM/araa-search/HEAD/templates/videos.html --------------------------------------------------------------------------------