├── README.md ├── cryptomaze ├── __init__.py ├── calculate_time.py ├── cryptomaze.db ├── faucethub.py ├── forms.py ├── models.py ├── referrals.py ├── routes.py ├── settings.py ├── static │ ├── bootstrap.min.css │ ├── bootstrap.min.js │ ├── claim-pg.js │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── img │ │ ├── ad-160x600.jpg │ │ ├── ad-300x250.jpg │ │ ├── ad-728x90.jpg │ │ ├── bg-img.png │ │ ├── btc-icon.png │ │ ├── faucet-icon.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── j-back.png │ │ ├── jumbotron-back.jpg │ │ ├── jumbotron-back.png │ │ └── logo.png │ ├── jquery-2.2.4.min.js │ ├── jquery-3.3.1.min.js │ ├── signup-pg.js │ ├── style.css │ ├── sweetalert2.min.css │ ├── sweetalert2.min.js │ ├── toastr.css │ ├── toastr.min.js │ └── withdrawal-pg.js ├── templates │ ├── claim.html │ ├── index.html │ ├── layout.html │ ├── referral.html │ └── withdrawals.html └── validate_btc_address.py ├── requirements.txt └── run.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/README.md -------------------------------------------------------------------------------- /cryptomaze/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/__init__.py -------------------------------------------------------------------------------- /cryptomaze/calculate_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/calculate_time.py -------------------------------------------------------------------------------- /cryptomaze/cryptomaze.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/cryptomaze.db -------------------------------------------------------------------------------- /cryptomaze/faucethub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/faucethub.py -------------------------------------------------------------------------------- /cryptomaze/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/forms.py -------------------------------------------------------------------------------- /cryptomaze/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/models.py -------------------------------------------------------------------------------- /cryptomaze/referrals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/referrals.py -------------------------------------------------------------------------------- /cryptomaze/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/routes.py -------------------------------------------------------------------------------- /cryptomaze/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/settings.py -------------------------------------------------------------------------------- /cryptomaze/static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/bootstrap.min.css -------------------------------------------------------------------------------- /cryptomaze/static/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/bootstrap.min.js -------------------------------------------------------------------------------- /cryptomaze/static/claim-pg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/claim-pg.js -------------------------------------------------------------------------------- /cryptomaze/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/favicon.ico -------------------------------------------------------------------------------- /cryptomaze/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /cryptomaze/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /cryptomaze/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /cryptomaze/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /cryptomaze/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /cryptomaze/static/img/ad-160x600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/img/ad-160x600.jpg -------------------------------------------------------------------------------- /cryptomaze/static/img/ad-300x250.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/img/ad-300x250.jpg -------------------------------------------------------------------------------- /cryptomaze/static/img/ad-728x90.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/img/ad-728x90.jpg -------------------------------------------------------------------------------- /cryptomaze/static/img/bg-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/img/bg-img.png -------------------------------------------------------------------------------- /cryptomaze/static/img/btc-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/img/btc-icon.png -------------------------------------------------------------------------------- /cryptomaze/static/img/faucet-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/img/faucet-icon.png -------------------------------------------------------------------------------- /cryptomaze/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/img/favicon.ico -------------------------------------------------------------------------------- /cryptomaze/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/img/favicon.png -------------------------------------------------------------------------------- /cryptomaze/static/img/j-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/img/j-back.png -------------------------------------------------------------------------------- /cryptomaze/static/img/jumbotron-back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/img/jumbotron-back.jpg -------------------------------------------------------------------------------- /cryptomaze/static/img/jumbotron-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/img/jumbotron-back.png -------------------------------------------------------------------------------- /cryptomaze/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/img/logo.png -------------------------------------------------------------------------------- /cryptomaze/static/jquery-2.2.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/jquery-2.2.4.min.js -------------------------------------------------------------------------------- /cryptomaze/static/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /cryptomaze/static/signup-pg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/signup-pg.js -------------------------------------------------------------------------------- /cryptomaze/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/style.css -------------------------------------------------------------------------------- /cryptomaze/static/sweetalert2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/sweetalert2.min.css -------------------------------------------------------------------------------- /cryptomaze/static/sweetalert2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/sweetalert2.min.js -------------------------------------------------------------------------------- /cryptomaze/static/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/toastr.css -------------------------------------------------------------------------------- /cryptomaze/static/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/toastr.min.js -------------------------------------------------------------------------------- /cryptomaze/static/withdrawal-pg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/static/withdrawal-pg.js -------------------------------------------------------------------------------- /cryptomaze/templates/claim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/templates/claim.html -------------------------------------------------------------------------------- /cryptomaze/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/templates/index.html -------------------------------------------------------------------------------- /cryptomaze/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/templates/layout.html -------------------------------------------------------------------------------- /cryptomaze/templates/referral.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/templates/referral.html -------------------------------------------------------------------------------- /cryptomaze/templates/withdrawals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/templates/withdrawals.html -------------------------------------------------------------------------------- /cryptomaze/validate_btc_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/cryptomaze/validate_btc_address.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasmikash/cryptomaze/HEAD/run.py --------------------------------------------------------------------------------