├── .gitignore ├── .vscode └── launch.json ├── README.md ├── config.json ├── contributing.md ├── globalconfig.py ├── helper ├── confighelper.html └── data.js ├── hotnear.json ├── icon.png ├── main.py ├── main.spec ├── modules ├── __init__.py ├── base.py ├── blum.py ├── cellcoin.py ├── cexio.py ├── hamster.py ├── hotgame.py ├── memefi.py ├── spinner.py ├── tapswap.py ├── timefarm.py └── yescoin.py ├── proxy.txt ├── proxyhelper.py ├── requirements.txt ├── templates.json ├── testproxy.py ├── ua.json ├── utils.py └── worker.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/config.json -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/contributing.md -------------------------------------------------------------------------------- /globalconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/globalconfig.py -------------------------------------------------------------------------------- /helper/confighelper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/helper/confighelper.html -------------------------------------------------------------------------------- /helper/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/helper/data.js -------------------------------------------------------------------------------- /hotnear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/hotnear.json -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/icon.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/main.py -------------------------------------------------------------------------------- /main.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/main.spec -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [] -------------------------------------------------------------------------------- /modules/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/modules/base.py -------------------------------------------------------------------------------- /modules/blum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/modules/blum.py -------------------------------------------------------------------------------- /modules/cellcoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/modules/cellcoin.py -------------------------------------------------------------------------------- /modules/cexio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/modules/cexio.py -------------------------------------------------------------------------------- /modules/hamster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/modules/hamster.py -------------------------------------------------------------------------------- /modules/hotgame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/modules/hotgame.py -------------------------------------------------------------------------------- /modules/memefi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/modules/memefi.py -------------------------------------------------------------------------------- /modules/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/modules/spinner.py -------------------------------------------------------------------------------- /modules/tapswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/modules/tapswap.py -------------------------------------------------------------------------------- /modules/timefarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/modules/timefarm.py -------------------------------------------------------------------------------- /modules/yescoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/modules/yescoin.py -------------------------------------------------------------------------------- /proxy.txt: -------------------------------------------------------------------------------- 1 | 63342af6-d20d-8517-b29120e667xx -------------------------------------------------------------------------------- /proxyhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/proxyhelper.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/templates.json -------------------------------------------------------------------------------- /testproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/testproxy.py -------------------------------------------------------------------------------- /ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/ua.json -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/utils.py -------------------------------------------------------------------------------- /worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anbusystem/autoairdrop/HEAD/worker.py --------------------------------------------------------------------------------