├── .htaccess ├── README.md ├── cache ├── .htaccess └── index.html ├── config ├── autoload.php ├── cms_config.php ├── config.php ├── constants.php ├── development │ └── database.php ├── doctypes.php ├── foreign_chars.php ├── hooks.php ├── index.html ├── memcached.php ├── migration.php ├── mimes.php ├── production │ └── database.php ├── profiler.php ├── routes.php ├── smileys.php └── user_agents.php ├── controllers ├── About.php ├── Account.php ├── Article.php ├── Dashboard.php ├── Deposit.php ├── Dice.php ├── Dicetry.php ├── Faq.php ├── Faqs.php ├── Faucet.php ├── Index.php ├── Logout.php ├── Lottery.php ├── Main.php ├── News.php ├── Packs.php ├── Promoter.php ├── Refer.php ├── Reset.php ├── Secure_reset.php ├── Tools.php ├── Withdraw.php ├── Work.php ├── admin │ ├── Addresses.php │ ├── Article.php │ ├── Dashboard.php │ ├── Deposits.php │ ├── Faq.php │ ├── Lottery.php │ ├── Menu.php │ ├── News.php │ ├── Page.php │ ├── Promoters.php │ ├── Transactions.php │ ├── User.php │ ├── Withdraw.php │ └── migration.php ├── games │ └── Sit_lottery.php ├── upgrade.php └── upload.php ├── core ├── MY_Controller.php ├── MY_Model.php └── index.html ├── helpers ├── cms_helper.php ├── index.html ├── mihelper_helper.php └── price_helper.php ├── hooks ├── index.html └── language │ ├── english │ └── index.html │ └── index.html ├── index.html ├── libraries ├── Admin_Controller.php ├── Buster_Controller.php ├── Frontend_Controller.php └── index.html ├── logs └── index.html ├── migrations ├── 001_create_users.php ├── 002_create_pages.php ├── 003_create_sessions.php ├── 004_parent_id_to_pages.php ├── 005_create_articles.php ├── 006_template_to_pages.php ├── 007_create_deposit.php ├── 008_withdraw.php ├── 009_refer.php ├── 010_purchase.php ├── 011_faucet.php ├── 012_members.php └── 013_store_items.php ├── models ├── Account_m.php ├── Article_m.php ├── Buster_m.php ├── Credit_m.php ├── Deposit_m.php ├── Dice_m.php ├── Email_m.php ├── Login_m.php ├── Lottery_m.php ├── Page_m.php ├── Page_menu_m.php ├── Refer_m.php ├── Rules_m.php ├── Security_m.php ├── Sit_lottery_m.php ├── Tracker_m.php ├── Upgrade_m.php └── User_m.php ├── third_party └── index.html └── views ├── _main_layout.php ├── admin ├── _layout_main.php ├── _layout_modal.php ├── addr │ ├── change_coin.php │ ├── create.php │ ├── faucet_head.php │ ├── faucet_timecheck.php │ ├── head.php │ ├── index_check.php │ ├── new_hash.php │ ├── newaddr.php │ ├── settings.php │ ├── settings_amd.php │ └── verify.php ├── article │ ├── edit.php │ └── index.php ├── components │ ├── page_head.php │ └── page_tail.php ├── dashboard │ └── index.php ├── faq │ ├── edit.php │ ├── index.php │ └── topic.php ├── lottery │ └── dashboard.php ├── menu.php ├── news │ ├── edit.php │ └── index.php ├── page │ ├── edit.php │ ├── index.php │ ├── index_visitors.php │ ├── login.php │ ├── order.php │ ├── order_ajax.php │ └── order_visitors.php ├── promo │ ├── index.php │ └── user_stats.php ├── store │ ├── edit.php │ ├── index.php │ ├── order.php │ └── order_ajax.php ├── tables │ ├── deposit.php │ ├── promoters.php │ ├── transactions.php │ └── withdraw.php ├── transactions │ ├── index.php │ ├── page_script.php │ └── pagination.php └── user │ ├── deposits.php │ ├── edit.php │ ├── index.php │ ├── login.php │ └── payouts.php ├── buster ├── 2fa.php ├── about.php ├── components │ ├── btc_reward.php │ ├── doge_reward.php │ ├── head.php │ ├── head_script.php │ ├── menu.php │ ├── menu_account.php │ ├── sliders │ │ └── sit_loto_promo.php │ └── tail.php ├── dashboard.php ├── dice │ ├── auto_bet.php │ ├── dice_script.php │ ├── dice_test.php │ ├── dicebeta.php │ ├── dicetry_script.php │ ├── index.php │ ├── manual_bet.php │ ├── table_bet.php │ └── verify.php ├── faqs.php ├── faqs │ ├── index.php │ └── topic.php ├── hola.php ├── index.php ├── jobs │ ├── jobs.php │ └── promoter.php ├── login │ ├── components │ │ └── page_head.php │ ├── log_input.php │ ├── register.php │ ├── reset.php │ └── reset_method.php ├── lottery │ ├── buy_tickets.php │ ├── loto_box.php │ ├── paginator.php │ ├── prizes.php │ ├── settings.php │ ├── sit_lottery │ │ ├── card_view.php │ │ ├── loto_box.php │ │ ├── loto_card.php │ │ ├── lottery_card.php │ │ ├── new_addr.php │ │ ├── single_round.php │ │ ├── single_ticket.php │ │ ├── ticket_status.php │ │ ├── user_round.php │ │ └── winner.php │ ├── stats.php │ └── winners.php ├── main_body.php ├── new_deposit.php ├── news │ └── index.php ├── promo │ ├── advert_trans_tab.php │ ├── banners.php │ ├── become_promoter.php │ ├── calculator.php │ ├── history.php │ ├── index.php │ ├── info.php │ ├── loto_packs.php │ ├── month.php │ ├── promo_lvl.php │ ├── promoter_box.php │ ├── report_email.php │ ├── today.php │ ├── transfer_script.php │ ├── week.php │ └── withdraw.php ├── script │ └── faucet_timer.php ├── security │ ├── 2fa_auth.php │ ├── address_book.php │ ├── address_tab.php │ ├── change_password.php │ ├── change_pin.php │ ├── email.php │ ├── form_email.php │ ├── form_password.php │ ├── form_pincode.php │ ├── password.php │ ├── pincode.php │ ├── reset.php │ └── reset_method.php ├── store │ └── item_box.php ├── tools │ └── price.php └── user │ ├── account.php │ ├── currency_box.php │ ├── deposit.php │ ├── deposit_tab.php │ ├── faucet.php │ ├── new_form.php │ ├── paginator.php │ ├── referrals.php │ ├── security.php │ ├── send.php │ ├── user_form.php │ ├── withdraw.php │ ├── withdraw_form.php │ └── withdraw_tab.php ├── errors ├── cli │ ├── error_404.php │ ├── error_db.php │ ├── error_exception.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── html │ ├── error_404.php │ ├── error_db.php │ ├── error_exception.php │ ├── error_general.php │ ├── error_php.php │ └── index.html └── index.html ├── sidebar.php ├── templates ├── article.php ├── last_articles.php ├── news.php └── withdraw_request.php ├── upload_form.php ├── upload_success.php └── usertable.php /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/README.md -------------------------------------------------------------------------------- /cache/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/cache/.htaccess -------------------------------------------------------------------------------- /cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/cache/index.html -------------------------------------------------------------------------------- /config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/config/autoload.php -------------------------------------------------------------------------------- /config/cms_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/config/cms_config.php -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/config/config.php -------------------------------------------------------------------------------- /config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/config/constants.php -------------------------------------------------------------------------------- /config/development/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/config/development/database.php -------------------------------------------------------------------------------- /config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/config/doctypes.php -------------------------------------------------------------------------------- /config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/config/foreign_chars.php -------------------------------------------------------------------------------- /config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/config/hooks.php -------------------------------------------------------------------------------- /config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/config/index.html -------------------------------------------------------------------------------- /config/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/config/memcached.php -------------------------------------------------------------------------------- /config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/config/migration.php -------------------------------------------------------------------------------- /config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/config/mimes.php -------------------------------------------------------------------------------- /config/production/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/config/production/database.php -------------------------------------------------------------------------------- /config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/config/profiler.php -------------------------------------------------------------------------------- /config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/config/routes.php -------------------------------------------------------------------------------- /config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/config/smileys.php -------------------------------------------------------------------------------- /config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/config/user_agents.php -------------------------------------------------------------------------------- /controllers/About.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/About.php -------------------------------------------------------------------------------- /controllers/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Account.php -------------------------------------------------------------------------------- /controllers/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Article.php -------------------------------------------------------------------------------- /controllers/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Dashboard.php -------------------------------------------------------------------------------- /controllers/Deposit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Deposit.php -------------------------------------------------------------------------------- /controllers/Dice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Dice.php -------------------------------------------------------------------------------- /controllers/Dicetry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Dicetry.php -------------------------------------------------------------------------------- /controllers/Faq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Faq.php -------------------------------------------------------------------------------- /controllers/Faqs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Faqs.php -------------------------------------------------------------------------------- /controllers/Faucet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Faucet.php -------------------------------------------------------------------------------- /controllers/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Index.php -------------------------------------------------------------------------------- /controllers/Logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Logout.php -------------------------------------------------------------------------------- /controllers/Lottery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Lottery.php -------------------------------------------------------------------------------- /controllers/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Main.php -------------------------------------------------------------------------------- /controllers/News.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/News.php -------------------------------------------------------------------------------- /controllers/Packs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Packs.php -------------------------------------------------------------------------------- /controllers/Promoter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Promoter.php -------------------------------------------------------------------------------- /controllers/Refer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Refer.php -------------------------------------------------------------------------------- /controllers/Reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Reset.php -------------------------------------------------------------------------------- /controllers/Secure_reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Secure_reset.php -------------------------------------------------------------------------------- /controllers/Tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Tools.php -------------------------------------------------------------------------------- /controllers/Withdraw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Withdraw.php -------------------------------------------------------------------------------- /controllers/Work.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/Work.php -------------------------------------------------------------------------------- /controllers/admin/Addresses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/admin/Addresses.php -------------------------------------------------------------------------------- /controllers/admin/Article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/admin/Article.php -------------------------------------------------------------------------------- /controllers/admin/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/admin/Dashboard.php -------------------------------------------------------------------------------- /controllers/admin/Deposits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/admin/Deposits.php -------------------------------------------------------------------------------- /controllers/admin/Faq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/admin/Faq.php -------------------------------------------------------------------------------- /controllers/admin/Lottery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/admin/Lottery.php -------------------------------------------------------------------------------- /controllers/admin/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/admin/Menu.php -------------------------------------------------------------------------------- /controllers/admin/News.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/admin/News.php -------------------------------------------------------------------------------- /controllers/admin/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/admin/Page.php -------------------------------------------------------------------------------- /controllers/admin/Promoters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/admin/Promoters.php -------------------------------------------------------------------------------- /controllers/admin/Transactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/admin/Transactions.php -------------------------------------------------------------------------------- /controllers/admin/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/admin/User.php -------------------------------------------------------------------------------- /controllers/admin/Withdraw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/admin/Withdraw.php -------------------------------------------------------------------------------- /controllers/admin/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/admin/migration.php -------------------------------------------------------------------------------- /controllers/games/Sit_lottery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/games/Sit_lottery.php -------------------------------------------------------------------------------- /controllers/upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/upgrade.php -------------------------------------------------------------------------------- /controllers/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/controllers/upload.php -------------------------------------------------------------------------------- /core/MY_Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/core/MY_Controller.php -------------------------------------------------------------------------------- /core/MY_Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/core/MY_Model.php -------------------------------------------------------------------------------- /core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/core/index.html -------------------------------------------------------------------------------- /helpers/cms_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/helpers/cms_helper.php -------------------------------------------------------------------------------- /helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/helpers/index.html -------------------------------------------------------------------------------- /helpers/mihelper_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/helpers/mihelper_helper.php -------------------------------------------------------------------------------- /helpers/price_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/helpers/price_helper.php -------------------------------------------------------------------------------- /hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/hooks/index.html -------------------------------------------------------------------------------- /hooks/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/hooks/language/english/index.html -------------------------------------------------------------------------------- /hooks/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/hooks/language/index.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/index.html -------------------------------------------------------------------------------- /libraries/Admin_Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/libraries/Admin_Controller.php -------------------------------------------------------------------------------- /libraries/Buster_Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/libraries/Buster_Controller.php -------------------------------------------------------------------------------- /libraries/Frontend_Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/libraries/Frontend_Controller.php -------------------------------------------------------------------------------- /libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/libraries/index.html -------------------------------------------------------------------------------- /logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/logs/index.html -------------------------------------------------------------------------------- /migrations/001_create_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/migrations/001_create_users.php -------------------------------------------------------------------------------- /migrations/002_create_pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/migrations/002_create_pages.php -------------------------------------------------------------------------------- /migrations/003_create_sessions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/migrations/003_create_sessions.php -------------------------------------------------------------------------------- /migrations/004_parent_id_to_pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/migrations/004_parent_id_to_pages.php -------------------------------------------------------------------------------- /migrations/005_create_articles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/migrations/005_create_articles.php -------------------------------------------------------------------------------- /migrations/006_template_to_pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/migrations/006_template_to_pages.php -------------------------------------------------------------------------------- /migrations/007_create_deposit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/migrations/007_create_deposit.php -------------------------------------------------------------------------------- /migrations/008_withdraw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/migrations/008_withdraw.php -------------------------------------------------------------------------------- /migrations/009_refer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/migrations/009_refer.php -------------------------------------------------------------------------------- /migrations/010_purchase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/migrations/010_purchase.php -------------------------------------------------------------------------------- /migrations/011_faucet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/migrations/011_faucet.php -------------------------------------------------------------------------------- /migrations/012_members.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/migrations/012_members.php -------------------------------------------------------------------------------- /migrations/013_store_items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/migrations/013_store_items.php -------------------------------------------------------------------------------- /models/Account_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/Account_m.php -------------------------------------------------------------------------------- /models/Article_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/Article_m.php -------------------------------------------------------------------------------- /models/Buster_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/Buster_m.php -------------------------------------------------------------------------------- /models/Credit_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/Credit_m.php -------------------------------------------------------------------------------- /models/Deposit_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/Deposit_m.php -------------------------------------------------------------------------------- /models/Dice_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/Dice_m.php -------------------------------------------------------------------------------- /models/Email_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/Email_m.php -------------------------------------------------------------------------------- /models/Login_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/Login_m.php -------------------------------------------------------------------------------- /models/Lottery_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/Lottery_m.php -------------------------------------------------------------------------------- /models/Page_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/Page_m.php -------------------------------------------------------------------------------- /models/Page_menu_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/Page_menu_m.php -------------------------------------------------------------------------------- /models/Refer_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/Refer_m.php -------------------------------------------------------------------------------- /models/Rules_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/Rules_m.php -------------------------------------------------------------------------------- /models/Security_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/Security_m.php -------------------------------------------------------------------------------- /models/Sit_lottery_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/Sit_lottery_m.php -------------------------------------------------------------------------------- /models/Tracker_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/Tracker_m.php -------------------------------------------------------------------------------- /models/Upgrade_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/Upgrade_m.php -------------------------------------------------------------------------------- /models/User_m.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/models/User_m.php -------------------------------------------------------------------------------- /third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/third_party/index.html -------------------------------------------------------------------------------- /views/_main_layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/_main_layout.php -------------------------------------------------------------------------------- /views/admin/_layout_main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/_layout_main.php -------------------------------------------------------------------------------- /views/admin/_layout_modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/_layout_modal.php -------------------------------------------------------------------------------- /views/admin/addr/change_coin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/addr/change_coin.php -------------------------------------------------------------------------------- /views/admin/addr/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/addr/create.php -------------------------------------------------------------------------------- /views/admin/addr/faucet_head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/addr/faucet_head.php -------------------------------------------------------------------------------- /views/admin/addr/faucet_timecheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/addr/faucet_timecheck.php -------------------------------------------------------------------------------- /views/admin/addr/head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/addr/head.php -------------------------------------------------------------------------------- /views/admin/addr/index_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/addr/index_check.php -------------------------------------------------------------------------------- /views/admin/addr/new_hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/addr/new_hash.php -------------------------------------------------------------------------------- /views/admin/addr/newaddr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/addr/newaddr.php -------------------------------------------------------------------------------- /views/admin/addr/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/addr/settings.php -------------------------------------------------------------------------------- /views/admin/addr/settings_amd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/addr/settings_amd.php -------------------------------------------------------------------------------- /views/admin/addr/verify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/addr/verify.php -------------------------------------------------------------------------------- /views/admin/article/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/article/edit.php -------------------------------------------------------------------------------- /views/admin/article/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/article/index.php -------------------------------------------------------------------------------- /views/admin/components/page_head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/components/page_head.php -------------------------------------------------------------------------------- /views/admin/components/page_tail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/components/page_tail.php -------------------------------------------------------------------------------- /views/admin/dashboard/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/dashboard/index.php -------------------------------------------------------------------------------- /views/admin/faq/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/faq/edit.php -------------------------------------------------------------------------------- /views/admin/faq/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/faq/index.php -------------------------------------------------------------------------------- /views/admin/faq/topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/faq/topic.php -------------------------------------------------------------------------------- /views/admin/lottery/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/lottery/dashboard.php -------------------------------------------------------------------------------- /views/admin/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/menu.php -------------------------------------------------------------------------------- /views/admin/news/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/news/edit.php -------------------------------------------------------------------------------- /views/admin/news/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/news/index.php -------------------------------------------------------------------------------- /views/admin/page/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/page/edit.php -------------------------------------------------------------------------------- /views/admin/page/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/page/index.php -------------------------------------------------------------------------------- /views/admin/page/index_visitors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/page/index_visitors.php -------------------------------------------------------------------------------- /views/admin/page/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/page/login.php -------------------------------------------------------------------------------- /views/admin/page/order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/page/order.php -------------------------------------------------------------------------------- /views/admin/page/order_ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/page/order_ajax.php -------------------------------------------------------------------------------- /views/admin/page/order_visitors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/page/order_visitors.php -------------------------------------------------------------------------------- /views/admin/promo/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/promo/index.php -------------------------------------------------------------------------------- /views/admin/promo/user_stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/promo/user_stats.php -------------------------------------------------------------------------------- /views/admin/store/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/store/edit.php -------------------------------------------------------------------------------- /views/admin/store/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/store/index.php -------------------------------------------------------------------------------- /views/admin/store/order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/store/order.php -------------------------------------------------------------------------------- /views/admin/store/order_ajax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/store/order_ajax.php -------------------------------------------------------------------------------- /views/admin/tables/deposit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/tables/deposit.php -------------------------------------------------------------------------------- /views/admin/tables/promoters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/tables/promoters.php -------------------------------------------------------------------------------- /views/admin/tables/transactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/tables/transactions.php -------------------------------------------------------------------------------- /views/admin/tables/withdraw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/tables/withdraw.php -------------------------------------------------------------------------------- /views/admin/transactions/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/transactions/index.php -------------------------------------------------------------------------------- /views/admin/transactions/page_script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/transactions/page_script.php -------------------------------------------------------------------------------- /views/admin/transactions/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/transactions/pagination.php -------------------------------------------------------------------------------- /views/admin/user/deposits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/user/deposits.php -------------------------------------------------------------------------------- /views/admin/user/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/user/edit.php -------------------------------------------------------------------------------- /views/admin/user/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/user/index.php -------------------------------------------------------------------------------- /views/admin/user/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/user/login.php -------------------------------------------------------------------------------- /views/admin/user/payouts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/admin/user/payouts.php -------------------------------------------------------------------------------- /views/buster/2fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/2fa.php -------------------------------------------------------------------------------- /views/buster/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/about.php -------------------------------------------------------------------------------- /views/buster/components/btc_reward.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/components/btc_reward.php -------------------------------------------------------------------------------- /views/buster/components/doge_reward.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/components/doge_reward.php -------------------------------------------------------------------------------- /views/buster/components/head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/components/head.php -------------------------------------------------------------------------------- /views/buster/components/head_script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/components/head_script.php -------------------------------------------------------------------------------- /views/buster/components/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/components/menu.php -------------------------------------------------------------------------------- /views/buster/components/menu_account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/components/menu_account.php -------------------------------------------------------------------------------- /views/buster/components/sliders/sit_loto_promo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/components/sliders/sit_loto_promo.php -------------------------------------------------------------------------------- /views/buster/components/tail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/components/tail.php -------------------------------------------------------------------------------- /views/buster/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/dashboard.php -------------------------------------------------------------------------------- /views/buster/dice/auto_bet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/dice/auto_bet.php -------------------------------------------------------------------------------- /views/buster/dice/dice_script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/dice/dice_script.php -------------------------------------------------------------------------------- /views/buster/dice/dice_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/dice/dice_test.php -------------------------------------------------------------------------------- /views/buster/dice/dicebeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/dice/dicebeta.php -------------------------------------------------------------------------------- /views/buster/dice/dicetry_script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/dice/dicetry_script.php -------------------------------------------------------------------------------- /views/buster/dice/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/dice/index.php -------------------------------------------------------------------------------- /views/buster/dice/manual_bet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/dice/manual_bet.php -------------------------------------------------------------------------------- /views/buster/dice/table_bet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/dice/table_bet.php -------------------------------------------------------------------------------- /views/buster/dice/verify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/dice/verify.php -------------------------------------------------------------------------------- /views/buster/faqs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/faqs.php -------------------------------------------------------------------------------- /views/buster/faqs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/faqs/index.php -------------------------------------------------------------------------------- /views/buster/faqs/topic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhipgraby/Codeigniter-App.-Faucet-Multi-Cryptocurrency-Website/HEAD/views/buster/faqs/topic.php -------------------------------------------------------------------------------- /views/buster/hola.php: -------------------------------------------------------------------------------- 1 |