├── Homepage copy ├── LICENSE ├── README.md ├── about-us.php ├── api.php ├── assets ├── css │ ├── animate.min.css │ ├── bootstrap.min.css │ ├── demo.css │ ├── light-bootstrap-dashboard.css │ └── pe-icon-7-stroke.css ├── fonts │ ├── Pe-icon-7-stroke.eot │ ├── Pe-icon-7-stroke.svg │ ├── Pe-icon-7-stroke.ttf │ └── Pe-icon-7-stroke.woff ├── img │ ├── default-avatar.png │ ├── faces │ │ ├── face-0.jpg │ │ ├── face-1.jpg │ │ ├── face-2.jpg │ │ ├── face-3.jpg │ │ ├── face-4.jpg │ │ ├── face-5.jpg │ │ ├── face-6.jpg │ │ ├── face-7.jpg │ │ └── tim_vector.jpe │ ├── favicon.ico │ ├── loading-bubbles.svg │ ├── mask.png │ ├── new_logo.png │ ├── sidebar-1.jpg │ ├── sidebar-2.jpg │ ├── sidebar-3.jpg │ ├── sidebar-4.jpg │ ├── sidebar-5.jpg │ └── tim_80x80.png ├── js │ ├── bootstrap-checkbox-radio-switch.js │ ├── bootstrap-notify.js │ ├── bootstrap-select.js │ ├── bootstrap.min.js │ ├── chartist.min.js │ ├── demo.js │ ├── jquery-1.10.2.js │ └── light-bootstrap-dashboard.js └── sass │ ├── lbd │ ├── _alerts.scss │ ├── _buttons.scss │ ├── _cards.scss │ ├── _chartist.scss │ ├── _checkbox-radio-switch.scss │ ├── _dropdown.scss │ ├── _footers.scss │ ├── _inputs.scss │ ├── _misc.scss │ ├── _mixins.scss │ ├── _navbars.scss │ ├── _responsive.scss │ ├── _sidebar-and-main-panel.scss │ ├── _tables.scss │ ├── _typography.scss │ ├── _variables.scss │ └── mixins │ │ ├── _buttons.scss │ │ ├── _cards.scss │ │ ├── _chartist.scss │ │ ├── _icons.scss │ │ ├── _inputs.scss │ │ ├── _labels.scss │ │ ├── _morphing-buttons.scss │ │ ├── _navbars.scss │ │ ├── _social-buttons.scss │ │ ├── _tabs.scss │ │ ├── _transparency.scss │ │ └── _vendor-prefixes.scss │ └── light-bootstrap-dashboard.scss ├── callback.php ├── contact.php ├── css ├── 1.css ├── bootstrap-theme.css ├── bootstrap-theme.css.map ├── bootstrap-theme.min.css ├── bootstrap-theme.min.css.map ├── bootstrap.css ├── bootstrap.css.map ├── bootstrap.min.css ├── bootstrap.min.css.map ├── one-page-wonder.css └── t.css ├── dash.php ├── donations.php ├── faq.php ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── img ├── avatar.jpg ├── avatar.png ├── logo.png └── noimg.png ├── inc ├── .htaccess ├── api │ ├── fan_list.php │ └── trail_list.php ├── conf │ └── db.php ├── dash │ ├── claimreward.php │ ├── commentupvote.php │ ├── fanbase.php │ ├── js.php │ ├── list.php │ ├── scheduled.php │ └── trail.php ├── dep │ ├── func.php │ ├── login_register.php │ └── node.php └── temp │ ├── footer.php │ └── head.php ├── index.php ├── js ├── app.js ├── bootstrap.js ├── bootstrap.min.js ├── jquery.js ├── npm.js └── ven.js ├── mysql.sql ├── nodejs ├── claimreward.js ├── commentup.js ├── config.js ├── delay.js ├── donations.js ├── fan.js ├── fan_dailylimit_reset.js ├── helpers │ ├── broadcastUpvote.js │ ├── checkLimits.js │ ├── nodeCall.js │ ├── shuffle.js │ └── streamBlock.js ├── mysql │ └── index.js ├── schedule_posts.js ├── trail.js ├── unauthorized_users.js ├── update_power.js ├── upvote.js └── vote_power.js ├── privacy-policy.php ├── register ├── assets │ ├── css │ │ ├── animate.min.css │ │ ├── bootstrap.min.css │ │ ├── demo.css │ │ ├── light-bootstrap-dashboard.css │ │ └── pe-icon-7-stroke.css │ └── fonts │ │ ├── Pe-icon-7-stroke.eot │ │ ├── Pe-icon-7-stroke.svg │ │ └── Pe-icon-7-stroke.ttf ├── index.php └── lost.php └── templates ├── readme.txt └── steemauto-design-02 ├── i ├── discord-logo.png ├── sa-bg.png └── sa-video-thumb.png ├── index.html └── style.css /Homepage copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/Homepage copy -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/README.md -------------------------------------------------------------------------------- /about-us.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/about-us.php -------------------------------------------------------------------------------- /api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/api.php -------------------------------------------------------------------------------- /assets/css/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/css/animate.min.css -------------------------------------------------------------------------------- /assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/css/demo.css -------------------------------------------------------------------------------- /assets/css/light-bootstrap-dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/css/light-bootstrap-dashboard.css -------------------------------------------------------------------------------- /assets/css/pe-icon-7-stroke.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/css/pe-icon-7-stroke.css -------------------------------------------------------------------------------- /assets/fonts/Pe-icon-7-stroke.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/fonts/Pe-icon-7-stroke.eot -------------------------------------------------------------------------------- /assets/fonts/Pe-icon-7-stroke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/fonts/Pe-icon-7-stroke.svg -------------------------------------------------------------------------------- /assets/fonts/Pe-icon-7-stroke.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/fonts/Pe-icon-7-stroke.ttf -------------------------------------------------------------------------------- /assets/fonts/Pe-icon-7-stroke.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/fonts/Pe-icon-7-stroke.woff -------------------------------------------------------------------------------- /assets/img/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/default-avatar.png -------------------------------------------------------------------------------- /assets/img/faces/face-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/faces/face-0.jpg -------------------------------------------------------------------------------- /assets/img/faces/face-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/faces/face-1.jpg -------------------------------------------------------------------------------- /assets/img/faces/face-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/faces/face-2.jpg -------------------------------------------------------------------------------- /assets/img/faces/face-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/faces/face-3.jpg -------------------------------------------------------------------------------- /assets/img/faces/face-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/faces/face-4.jpg -------------------------------------------------------------------------------- /assets/img/faces/face-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/faces/face-5.jpg -------------------------------------------------------------------------------- /assets/img/faces/face-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/faces/face-6.jpg -------------------------------------------------------------------------------- /assets/img/faces/face-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/faces/face-7.jpg -------------------------------------------------------------------------------- /assets/img/faces/tim_vector.jpe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/faces/tim_vector.jpe -------------------------------------------------------------------------------- /assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/favicon.ico -------------------------------------------------------------------------------- /assets/img/loading-bubbles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/loading-bubbles.svg -------------------------------------------------------------------------------- /assets/img/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/mask.png -------------------------------------------------------------------------------- /assets/img/new_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/new_logo.png -------------------------------------------------------------------------------- /assets/img/sidebar-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/sidebar-1.jpg -------------------------------------------------------------------------------- /assets/img/sidebar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/sidebar-2.jpg -------------------------------------------------------------------------------- /assets/img/sidebar-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/sidebar-3.jpg -------------------------------------------------------------------------------- /assets/img/sidebar-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/sidebar-4.jpg -------------------------------------------------------------------------------- /assets/img/sidebar-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/sidebar-5.jpg -------------------------------------------------------------------------------- /assets/img/tim_80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/img/tim_80x80.png -------------------------------------------------------------------------------- /assets/js/bootstrap-checkbox-radio-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/js/bootstrap-checkbox-radio-switch.js -------------------------------------------------------------------------------- /assets/js/bootstrap-notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/js/bootstrap-notify.js -------------------------------------------------------------------------------- /assets/js/bootstrap-select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/js/bootstrap-select.js -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/js/chartist.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/js/chartist.min.js -------------------------------------------------------------------------------- /assets/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/js/demo.js -------------------------------------------------------------------------------- /assets/js/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/js/jquery-1.10.2.js -------------------------------------------------------------------------------- /assets/js/light-bootstrap-dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/js/light-bootstrap-dashboard.js -------------------------------------------------------------------------------- /assets/sass/lbd/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/_alerts.scss -------------------------------------------------------------------------------- /assets/sass/lbd/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/_buttons.scss -------------------------------------------------------------------------------- /assets/sass/lbd/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/_cards.scss -------------------------------------------------------------------------------- /assets/sass/lbd/_chartist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/_chartist.scss -------------------------------------------------------------------------------- /assets/sass/lbd/_checkbox-radio-switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/_checkbox-radio-switch.scss -------------------------------------------------------------------------------- /assets/sass/lbd/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/_dropdown.scss -------------------------------------------------------------------------------- /assets/sass/lbd/_footers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/_footers.scss -------------------------------------------------------------------------------- /assets/sass/lbd/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/_inputs.scss -------------------------------------------------------------------------------- /assets/sass/lbd/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/_misc.scss -------------------------------------------------------------------------------- /assets/sass/lbd/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/_mixins.scss -------------------------------------------------------------------------------- /assets/sass/lbd/_navbars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/_navbars.scss -------------------------------------------------------------------------------- /assets/sass/lbd/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/_responsive.scss -------------------------------------------------------------------------------- /assets/sass/lbd/_sidebar-and-main-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/_sidebar-and-main-panel.scss -------------------------------------------------------------------------------- /assets/sass/lbd/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/_tables.scss -------------------------------------------------------------------------------- /assets/sass/lbd/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/_typography.scss -------------------------------------------------------------------------------- /assets/sass/lbd/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/_variables.scss -------------------------------------------------------------------------------- /assets/sass/lbd/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/mixins/_buttons.scss -------------------------------------------------------------------------------- /assets/sass/lbd/mixins/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/mixins/_cards.scss -------------------------------------------------------------------------------- /assets/sass/lbd/mixins/_chartist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/mixins/_chartist.scss -------------------------------------------------------------------------------- /assets/sass/lbd/mixins/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/mixins/_icons.scss -------------------------------------------------------------------------------- /assets/sass/lbd/mixins/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/mixins/_inputs.scss -------------------------------------------------------------------------------- /assets/sass/lbd/mixins/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/mixins/_labels.scss -------------------------------------------------------------------------------- /assets/sass/lbd/mixins/_morphing-buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/mixins/_morphing-buttons.scss -------------------------------------------------------------------------------- /assets/sass/lbd/mixins/_navbars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/mixins/_navbars.scss -------------------------------------------------------------------------------- /assets/sass/lbd/mixins/_social-buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/mixins/_social-buttons.scss -------------------------------------------------------------------------------- /assets/sass/lbd/mixins/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/mixins/_tabs.scss -------------------------------------------------------------------------------- /assets/sass/lbd/mixins/_transparency.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/mixins/_transparency.scss -------------------------------------------------------------------------------- /assets/sass/lbd/mixins/_vendor-prefixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/lbd/mixins/_vendor-prefixes.scss -------------------------------------------------------------------------------- /assets/sass/light-bootstrap-dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/assets/sass/light-bootstrap-dashboard.scss -------------------------------------------------------------------------------- /callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/callback.php -------------------------------------------------------------------------------- /contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/contact.php -------------------------------------------------------------------------------- /css/1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/css/1.css -------------------------------------------------------------------------------- /css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/css/bootstrap-theme.css -------------------------------------------------------------------------------- /css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/css/bootstrap.css.map -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /css/one-page-wonder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/css/one-page-wonder.css -------------------------------------------------------------------------------- /css/t.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/css/t.css -------------------------------------------------------------------------------- /dash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/dash.php -------------------------------------------------------------------------------- /donations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/donations.php -------------------------------------------------------------------------------- /faq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/faq.php -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/img/avatar.jpg -------------------------------------------------------------------------------- /img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/img/avatar.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/noimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/img/noimg.png -------------------------------------------------------------------------------- /inc/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /inc/api/fan_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/inc/api/fan_list.php -------------------------------------------------------------------------------- /inc/api/trail_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/inc/api/trail_list.php -------------------------------------------------------------------------------- /inc/conf/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/inc/conf/db.php -------------------------------------------------------------------------------- /inc/dash/claimreward.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/inc/dash/claimreward.php -------------------------------------------------------------------------------- /inc/dash/commentupvote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/inc/dash/commentupvote.php -------------------------------------------------------------------------------- /inc/dash/fanbase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/inc/dash/fanbase.php -------------------------------------------------------------------------------- /inc/dash/js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/inc/dash/js.php -------------------------------------------------------------------------------- /inc/dash/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/inc/dash/list.php -------------------------------------------------------------------------------- /inc/dash/scheduled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/inc/dash/scheduled.php -------------------------------------------------------------------------------- /inc/dash/trail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/inc/dash/trail.php -------------------------------------------------------------------------------- /inc/dep/func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/inc/dep/func.php -------------------------------------------------------------------------------- /inc/dep/login_register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/inc/dep/login_register.php -------------------------------------------------------------------------------- /inc/dep/node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/inc/dep/node.php -------------------------------------------------------------------------------- /inc/temp/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/inc/temp/footer.php -------------------------------------------------------------------------------- /inc/temp/head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/inc/temp/head.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/index.php -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/js/app.js -------------------------------------------------------------------------------- /js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/js/bootstrap.js -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/js/jquery.js -------------------------------------------------------------------------------- /js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/js/npm.js -------------------------------------------------------------------------------- /js/ven.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/js/ven.js -------------------------------------------------------------------------------- /mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/mysql.sql -------------------------------------------------------------------------------- /nodejs/claimreward.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/claimreward.js -------------------------------------------------------------------------------- /nodejs/commentup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/commentup.js -------------------------------------------------------------------------------- /nodejs/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/config.js -------------------------------------------------------------------------------- /nodejs/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/delay.js -------------------------------------------------------------------------------- /nodejs/donations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/donations.js -------------------------------------------------------------------------------- /nodejs/fan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/fan.js -------------------------------------------------------------------------------- /nodejs/fan_dailylimit_reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/fan_dailylimit_reset.js -------------------------------------------------------------------------------- /nodejs/helpers/broadcastUpvote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/helpers/broadcastUpvote.js -------------------------------------------------------------------------------- /nodejs/helpers/checkLimits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/helpers/checkLimits.js -------------------------------------------------------------------------------- /nodejs/helpers/nodeCall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/helpers/nodeCall.js -------------------------------------------------------------------------------- /nodejs/helpers/shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/helpers/shuffle.js -------------------------------------------------------------------------------- /nodejs/helpers/streamBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/helpers/streamBlock.js -------------------------------------------------------------------------------- /nodejs/mysql/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/mysql/index.js -------------------------------------------------------------------------------- /nodejs/schedule_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/schedule_posts.js -------------------------------------------------------------------------------- /nodejs/trail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/trail.js -------------------------------------------------------------------------------- /nodejs/unauthorized_users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/unauthorized_users.js -------------------------------------------------------------------------------- /nodejs/update_power.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/update_power.js -------------------------------------------------------------------------------- /nodejs/upvote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/upvote.js -------------------------------------------------------------------------------- /nodejs/vote_power.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/nodejs/vote_power.js -------------------------------------------------------------------------------- /privacy-policy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/privacy-policy.php -------------------------------------------------------------------------------- /register/assets/css/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/register/assets/css/animate.min.css -------------------------------------------------------------------------------- /register/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/register/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /register/assets/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/register/assets/css/demo.css -------------------------------------------------------------------------------- /register/assets/css/light-bootstrap-dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/register/assets/css/light-bootstrap-dashboard.css -------------------------------------------------------------------------------- /register/assets/css/pe-icon-7-stroke.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/register/assets/css/pe-icon-7-stroke.css -------------------------------------------------------------------------------- /register/assets/fonts/Pe-icon-7-stroke.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/register/assets/fonts/Pe-icon-7-stroke.eot -------------------------------------------------------------------------------- /register/assets/fonts/Pe-icon-7-stroke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/register/assets/fonts/Pe-icon-7-stroke.svg -------------------------------------------------------------------------------- /register/assets/fonts/Pe-icon-7-stroke.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/register/assets/fonts/Pe-icon-7-stroke.ttf -------------------------------------------------------------------------------- /register/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/register/index.php -------------------------------------------------------------------------------- /register/lost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/register/lost.php -------------------------------------------------------------------------------- /templates/readme.txt: -------------------------------------------------------------------------------- 1 | home template files 2 | -------------------------------------------------------------------------------- /templates/steemauto-design-02/i/discord-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/templates/steemauto-design-02/i/discord-logo.png -------------------------------------------------------------------------------- /templates/steemauto-design-02/i/sa-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/templates/steemauto-design-02/i/sa-bg.png -------------------------------------------------------------------------------- /templates/steemauto-design-02/i/sa-video-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/templates/steemauto-design-02/i/sa-video-thumb.png -------------------------------------------------------------------------------- /templates/steemauto-design-02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/templates/steemauto-design-02/index.html -------------------------------------------------------------------------------- /templates/steemauto-design-02/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahdiyari/steemauto/HEAD/templates/steemauto-design-02/style.css --------------------------------------------------------------------------------