-
Notifications
You must be signed in to change notification settings - Fork 30
/
bottracker.html
1017 lines (919 loc) · 52.8 KB
/
bottracker.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-107512713-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments)};
gtag('js', new Date());
gtag('config', 'UA-107512713-1');
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="img/favicon_no_smile_32px-high.ico" type="image/x-icon">
<meta property="og:title" content="Steem Bot Tracker">
<meta property="og:description" content="The #1 place for information on voting bots and other options to promote your posts on Steem!">
<meta property="og:image" content="https://steembottracker.com/img/header_logo.png">
<meta property="og:url" content="http://www.steembottracker.com">
<title>Steem Bot Tracker</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Import google fonts - Heading first/ text second -->
<link href='https://fonts.googleapis.com/css?family=Quattrocento+Sans:400,700' rel='stylesheet' type='text/css'>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="scripts/bootstrap-slider.min.js"></script>
<script src="scripts/steem.min.js"></script>
<script src="scripts/sc2.min.js"></script>
<script src="scripts/utils.js"></script>
<script src="scripts/bottracker.js"></script>
<!-- Dynamic admin theme -->
<link rel="stylesheet" href="css/icons.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/plugins.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/custom.css">
<style type="text/css">
@media (min-width: 1300px) {
.container {
width: 1300px;
}
}
@media (min-width: 768px) {
.modal-dialog {
width: 800px;
}
}
.slider.slider-horizontal { width: 70%; }
.progress.flat { margin-top: 4px; }
ul.actions li a { color: #333333 !important; }
</style>
</head>
<body>
<div id="header" class="page-navbar header-fixed">
<nav class="navbar navbar-default" style="margin-bottom: 0;">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#" class="navbar-brand">
<img alt="Steem Post Promoter" src="img/header_logo.png" height="44" style="margin-top: -10px;">
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-android mr10"></i>
Voting Bots <span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="#bid"><i class="l-basic-hammer mr10"></i> Bid-Based Voting Bots</a></li>
<li><a href="#paid"><i class="l-banknote mr10"></i> Promotion Services</a></li>
<li><a href="#free"><i class="fa fa-android mr10"></i> Other Bots</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-wrench mr10"></i>
Tools <span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="config.html"><i class="fa fa-code mr10"></i> Bot Owner Config</a></li>
<li><a href="delegation.html"><i class="fa fa-retweet mr10"></i> Delegation Manager</a></li>
</ul>
</li>
<li><a href="javascript:void(0);" style="font-size: 1.5em;"><div id="steem_price_container">STEEM - $<span id="steem_price">loading...</span></div></a></li>
<li><a href="javascript:void(0);" style="font-size: 1.5em;"><div id="sbd_price_container">SBD - $<span id="sbd_price">loading...</span></div></a></li>
</ul>
<!--
<ul class="nav navbar-nav navbar-right">
<li class="dropdown" id="user_info">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
<span id="login_info"></span>
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="#" id="btn_bid_history"><i class="fa fa-code mr10"></i> Bid History</a></li>
<li><a href="#" id="btn_logout"><i class="fa fa-calculator mr10"></i> Log Out</a></li>
</ul>
</li>
<li id="btn_login">
<button type="button" class="btn btn-default navbar-btn" onclick="window.location.href=sc2.getLoginURL();">Log in</button>
</li>
</ul>
-->
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
</div>
<div class="container">
<div class="panel panel-info plain">
<div class="panel-body">
<img src="img/bot_logo.png" style="float: left; height: 250px; margin-right: 30px;"/>
<h1>Steem Upvote Bot Tracker</h1>
<p>Welcome to the Steem Upvote Bot Tracker, the #1 place for information on voting bots and other options to promote your posts on Steem!</p>
<p>
If you like what you see here, you can find more great info by following me on SteemIt at <a target="_blank" href="http://www.steemit.com/@yabapmatt">@yabapmatt</a>.
</p>
<p>I don't charge anything or make any money off of this tool so I would appreciate your support by voting for @yabapmatt for Steem witness! To vote for me you can <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=yabapmatt&approve=1">Click Here</a> or go to <a href="https://steemit.com/~witnesses" target="_blank">https://steemit.com/~witnesses</a> and find @yabapmatt in the list and click the upvote icon!
<p>
<a class="btn btn-primary btn-lg" href="#bid" role="button">Bid-Based Voting Bots</a>
<a class="btn btn-primary btn-lg" href="#paid" role="button">Promotion Services</a>
<a class="btn btn-primary btn-lg" href="#free" role="button">Other Bots</a>
</p>
</div>
</div>
<div style="display: flex;">
<div class="panel panel-success" onclick="window.open('https://steemmonsters.com');" style="width: 50%; border-radius: 30px; cursor: pointer; margin-top: 10px; font-size: 2.3rem; text-align: center; background-image: url(https://steemmonsters.com/images/bg.png);">
<div class="panel-body">
<a href="https://steemmonsters.com" target="_blank"><img src="https://i.imgur.com/XOrOJbG.png" style="width: 300px; float:left;"/></a>
<div style="margin-top: 40px; font-family: 'IM Fell English SC', serif; font-size: 2rem; color: #FBAC25;">
Check out Steem Monsters, a new collectible card game built on the Steem blockchain!<br/><br/>
Buy/sell/trade on the decentralized Market, and battle with thousands of other players in live PvP combat!
</div>
</div>
</div>
<div style="width: 50%; padding-top: 10px; text-align: center;">
<a href="https://kryptogamers.com/blackjack?ref=steembottracker" target="_blank"><img src="img/kryptogamers.png" style="height: 300px; border-radius: 30px;"/></a>
</div>
</div>
<!--
<div class="panel panel-default">
<div class="panel-heading"><h4 class="panel-title"><a name="sponsored"></a><i class="l-banknote mr10"></i>Sponsored Upvote Services</h4></div>
<div class="panel-body">
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title"><a target="_blank" href="http://www.steemit.com/@randofish">@randofish</a></h3>
</div>
<div class="panel-body">
<div id="ss_bot_error" style="display: none;" class="alert alert-danger" role="alert">
There was an error loading bot info. Please try again in a little bit.
</div>
<div>
<div style="float:left;"><a href="http://www.steemit.com/@randofish" target="_blank"><img src="https://steemitimages.com/u/randofish/avatar"/></a></div>
<div style="padding-top: 40px;">
<div style="font-size: 1.5em; text-align: center;" id="randofish-desc-x">
Send 0.25 SBD for random Upvote (20-80%)<br/>
If you want a full 100% randofish Upvote just send 1 SBD to @randofish1
</div>
</div>
</div>
<dl class="dl-horizontal" style="font-size: 1.3em; clear: both;">
<dt>Vote Value:</dt>
<dd><span id="randofish-vote">Loading...</span></dd>
<dt>Voting Power:</dt>
<dd>
<div class="progress flat" id="randofish-progress">
<div class="progress-bar progress-bar-info progress-bar-striped active" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
Loading...
</div>
</div>
</dd>
</dl>
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion" href="#rf-howto" aria-expanded="true" aria-controls="collapseOne">
<i class="l-arrows-question mr10"></i>How To Use
</a>
</h4>
</div>
<div id="rf-howto" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<ul id="randofish-how-to">
<li>@randofish can be used to upvote your post or comment around the clock 24/7</li>
<li>For an upvote send 0.25 SBD with URL as memo to @randofish - You will receive a random Upvote from randofish (20 - 80%) OR an Upvote from randofish1 (90 - 100%)</li>
<li>For a full 100% Upvote from randofish just send 1 SBD to @randofish1</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
-->
<div class="bs-callout bs-callout-info fade in">
<h4>Vote for Witness!</h4>
<p>Help support me and the bot tracker by voting for @yabapmatt for Steem witness! To vote, click the button below or go to <a href="https://steemit.com/~witnesses" target="_blank">https://steemit.com/~witnesses</a> and find @yabapmatt in the list and click the upvote icon. Thank you!</p>
<button class="btn btn-success btn-lg" onclick="window.open('https://v2.steemconnect.com/sign/account-witness-vote?witness=yabapmatt&approve=1');">Vote for @yabapmatt!</button>
</div>
<div class="panel panel-info">
<!-- Default panel contents -->
<div class="panel-heading"><h4 class="panel-title"><a name="bid"></a><i class="l-basic-hammer mr10"></i>Bid-Based Voting Bots</h4></div>
<div class="panel-body">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
<i class="l-arrows-question mr10"></i>How Bid-Based Voting Bots Work
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<p>
Bid-based voting bots work on a bidding system. You can send any amount of SBD above the minimum (minimums vary for each bot) and once the bot account reaches 100% voting power it splits a 100% upvote between all of the bids based on each bid's % of the total amount bid during that period.
</p>
<p>
It takes 2.4 hours for voting power to return to 100% after a 100% upvote so each bidding period typically lasts roughly 2.4 hours. Recently some bots have switched to giving out a 50% upvote every 1.2 hours instead. You can see this indicated next to the "Vote Value" in the table below.
</p>
<p>
Take the following example: With a 2.4 hour bidding period user A sends $1 to a voting bot and user B sends $3. The total bid is $4 so that means that user A will get a 25% upvote on their post and user B will get a 75% upvote. If the bot's 100% upvote is worth more than $4 then both user A and B will receive an upvote worth more than they have spent.
</p>
<p>
Please note that vote values are based on the current value of STEEM. As STEEM prices rise or fall the value of votes will too. Additionally 50% of the value of votes cast more than 5 minutes after a post has been made go to the curation rewards, so for a $0.50 payment you would need at least a $1.00 upvote to be profitable if you are taking curation rewards into account.
</p>
<p>
Each voting bot has their own quirks and rules and those can change at any time. I do the best I can to keep this site up to date however <strong>it is your responsibility to check each voting bot before you use it</strong>. You can click on the links in the table below to go to the SteemIt profile page for each bot.
</p>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingTwo">
<a role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="true" aria-controls="collapseTwo">
<h3 class="panel-title"><i class="fa fa-calculator mr5"></i> Vote Calculator</h3>
</a>
</div>
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel">
<div class="panel-body">
<p>Calculate how much of an upvote you could receive*</p>
<form class="form-inline">
<div class="form-group">
<select id="bot_list" class="form-control"><option value="">Choose a bot</option></select>
</div>
<div class="form-group">
<input id="bid_amount" type="text" class="form-control" placeholder="Bid Amount">
</div>
<div class="form-group">
<select id="calc_currency" class="form-control">
<option value="SBD">SBD</option>
<option value="STEEM">STEEM</option>
</select>
</div>
<button id="calculate_vote" class="btn btn-default">Calculate</button>
<div class="form-group">
<dl class="dl-horizontal values">
<dt>Bid Dollar Value:</dt>
<dd><span class="value" id="bid_value">$0.00</span></dd>
<dt>Total Vote Value:</dt>
<dd><span class="value" id="vote_value">$0.00</span></dd>
<dt>After 50% Curation:</dt>
<dd><span class="value" id="vote_value_net">$0.00</span></dd>
</dl>
</div>
</form>
<div class="alert alert-warning fade in mt20">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<i class="glyphicon glyphicon-warning-sign alert-icon "></i>
<strong>Note!</strong> Actual vote value may differ substantially from what is shown here! This is an informational tool, use at your own risk.
</div>
</div>
</div>
</div>
<div class="bs-callout bs-callout-danger fade in" id="peg_msg">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true" id="close_peg_msg">×</button>
<h3>IMPORTANT UPDATE - PLEASE READ!</h3>
<h4>
Due to the broken SBD peg and some bots now accepting SBD and STEEM:<br /><br />
<ul>
<li style="margin-bottom: 5px;">All vote and total bid values are now shown in USD by default based on the current exchange rates for STEEM and SBDs.</li>
<li style="margin-bottom: 5px;">Profitability calculations now also take into account the exchange rates of the two currencies.</li>
<li style="margin-bottom: 5px;">If you want to view numbers in a different currency you can choose a currency in the settings section above.</li>
<li style="margin-bottom: 5px;">To view the numbers how they were originally, choose the "POST REWARDS" currency which matches what is shown on steemit.com.</li>
</ul>
</h4>
</div>
<div class="panel panel-success" style="margin-top: 10px; font-size: 2.3rem; text-align: center;">
<div class="panel-body">
<a href="http://isteemd.com" target="_blank"><img src="http://isteemd.com/wp-content/uploads/2018/04/Logo2_header.png" style="float:left;"/></a>
<div style="margin-top: 10px;">Interested in earning a return on your Steem Power investment? Go to <a href="http://isteemd.com" target="_blank">isteemd.com</a> to see up-to-date information and ratings of the voting bots that pay out their earnings to SP delegators!</div>
<div style="margin-top: 10px; font-size: 60%;">* iSTEEMd is a third-party service not created by @yabapmatt or otherwise affiliated with the Steem Bot Tracker website.</div>
</div>
</div>
<div class="panel panel-primary plain" style="margin-top: 10px;">
<div class="panel-body" style="font-size: 1.2em;">
<div class="row">
<label class="col-lg-2 col-md-2 control-label" style="margin-top: 5px; text-align: right;">Display Currency:</label>
<div class="col-lg-4 col-md-4">
<select id="currency_list" class="form-control">
<option value="USD">USD</option>
<option value="SBD">SBD</option>
<option value="STEEM">STEEM</option>
<option value="POST REWARDS">POST REWARDS (What is shown on steemit.com)</option>
</select>
</div>
<label class="col-lg-2 col-md-2 control-label" style="margin-top: 5px; text-align: right;">Include 50% curation:</label>
<div class="col-lg-1 col-md-1">
<div class="toggle-custom">
<label class="toggle" data-on="ON" data-off="OFF">
<input type="checkbox" id="curation_option" name="curation_option" checked>
<span class="button-checkbox"></span>
</label>
<label for="fixed-header-toggle"></label>
</div>
</div>
<label class="col-lg-2 col-md-2 control-label" style="margin-top: 5px; text-align: right;">Notifications:</label>
<div class="col-lg-1 col-md-1">
<div class="toggle-custom">
<label class="toggle" data-on="ON" data-off="OFF">
<input type="checkbox" id="notification_option" name="notification_option" checked>
<span class="button-checkbox"></span>
</label>
<label for="fixed-header-toggle"></label>
</div>
</div>
</div>
<hr style="margin-top: 0;" />
<div class="row">
<label class="col-lg-4 col-md-4 control-label text-left">
Filters:
<img id="filter_refund" src="img/refund.png" style="cursor: pointer; height: 30px; margin-left: 10px;" data-toggle="tooltip" data-placement="top" title="Only show bots that automatically refund invalid bids." />
<img id="filter_steem" src="img/steem.png" style="cursor: pointer; height: 30px; margin-left: 10px;" data-toggle="tooltip" data-placement="top" title="Only show bots that accept STEEM bids." />
<img id="filter_nocomment" src="img/no_comment.png" style="cursor: pointer; height: 30px; margin-left: 10px;" data-toggle="tooltip" data-placement="top" title="Only show bots that do not post a comment when they vote on a post." />
<img id="filter_se" src="img/steem_engine_logo_32.png" style="cursor: pointer; height: 30px; margin-left: 10px;" data-toggle="tooltip" data-placement="top" title="Only show bots that accept a Steem Engine token." />
</label>
<div class="col-lg-8 col-md-8" style="margin-top: 5px;">
<label class="control-label text-left" style="float: left; margin-right: 20px;">Vote Value: </label>
<div>
<b>$0 </b>
<input id="min_vote_slider" type="text" class="span2" value="" data-slider-min="0" data-slider-max="100" data-slider-step="1" data-slider-value="5" />
<b> $100</b>
</div>
</div>
</div>
</div>
</div>
<div id="bid_bot_error" style="display: none;" class="alert alert-danger" role="alert">
<i class="glyphicon glyphicon-ban-circle alert-icon "></i>
There was an error loading bot info. Please try again in a little bit.
</div>
<div class="table-responsive" style="overflow-x: inherit;">
<table id="bots_table" class="table table-striped table-hover">
<thead>
<tr>
<th>Bot Name</th>
<th>Vote Value</th>
<th>Min / Max Bid</th>
<th>Min / Max ROI</th>
<th>Min / Max Age</th>
<th>Total Bids</th>
<th>Max Suggested Bid</th>
<th>Last Vote</th>
<th>Next Vote</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<tr>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
</tr>
</tbody>
</table>
<div id="unhide_link" style="display: none;">
<span id="bots_hidden">0</span> bot(s) hidden -
<a href="javascript:void(0);">Unhide all bots</a>
</div>
</div>
</div>
</div>
</div>
<div class="panel panel-info">
<!-- Default panel contents -->
<div class="panel-heading"><h4 class="panel-title"><a name="paid"></a><i class="l-banknote mr10"></i>Content Promotion Services</h4></div>
<div class="panel-body">
<div id="therising-panel" class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title"><a target="_blank" href="http://www.steemit.com/@therising">@therising</a></h3>
</div>
<div class="panel-body">
<div id="therising_bot_error" style="display: none;" class="alert alert-danger" role="alert">
There was an error loading bot info. Please try again in a little bit.
</div>
<div>
<div style="float:left;"><a href="https://steemit.com/@therising" target="_blank"><img src="https://steemitimages.com/u/therising/avatar" /></a></div>
<div style="padding-top: 40px;">
<div style="font-size: 1.8em; text-align: center;" id="booster-desc">
Get an instant upvote with guaranteed profitable upvote of up to +25% ROI
</div>
</div>
</div>
<div style="margin: 20px 0; text-align: center;">
<button type="button" class="btn btn-warning btn-lg" id="therising-submit">Promote your post with @therising now!</button>
</div>
<dl class="dl-horizontal" style="font-size: 1.3em; clear: both;">
<dt>Vote Value:</dt>
<dd><span id="therising-vote">Loading...</span></dd>
<dt>Max Post Age:</dt>
<dd>3.5 Days</dd>
<dt>Comment Voting:</dt>
<dd>Disabled</dd>
<dt>Voting Power:</dt>
<dd>
<div class="progress flat" id="therising-progress" style="margin-top: 7px;">
<div class="progress-bar progress-bar-info progress-bar-striped active" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
Loading...
</div>
</div>
</dd>
</dl>
</div>
</div>
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title"><a target="_blank" href="http://www.steemit.com/@minnowbooster">@minnowbooster</a></h3>
</div>
<div class="panel-body">
<div id="mb_bot_error" style="display: none;" class="alert alert-danger" role="alert">
There was an error loading bot info. Please try again in a little bit.
</div>
<div style="margin-bottom: 20px;">
<div style="float:left; margin-right: 40px;"><a href="https://minnowbooster.net" target="_blank"><img src="https://www.minnowbooster.net/minnowbannericon.jpg" style="height: 128px;" /></a></div>
<div style="padding: 0 40px; text-align: center;">
<div style="font-size: 2em;">
Send at least 0.01 SBD to @minnowbooster with the post link as the memo and receive a guaranteed profitable upvote!<br />
<span style="font-size: 0.8em;">See <a href="https://www.minnowbooster.net" target="_blank">minnowbooster.net</a> for more details.</span>
</div>
</div>
</div>
<div style="margin: 20px 0; text-align: center;">
<button type="button" class="btn btn-warning btn-lg" id="minnowbooster-submit">Promote your post with @minnowbooster now!</button>
</div>
<dl class="dl-horizontal" style="font-size: 1.3em; clear: both;">
<dt>Min Payment:</dt>
<dd><span id="minnowbooster-min">Loading...</span></dd>
<dt>Vote Value:</dt>
<dd><span id="minnowbooster-vote">Loading...</span></dd>
<dt>Comment Voting:</dt>
<dd>Disabled</dd>
<dt>Voting Power:</dt>
<dd>
<div class="progress flat" id="minnowbooster-progress">
<div class="progress-bar progress-bar-info progress-bar-striped active" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
Loading...
</div>
</div>
</dd>
<dt>Additional Features:</dt>
<dd>SP Delegation Market, Steem Voter, Sell Your Vote and earn SBD & Curation!</dd>
</dl>
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion" href="#mb-howto" aria-expanded="true" aria-controls="collapseOne">
<i class="l-arrows-question mr10"></i>How To Use
</a>
</h4>
</div>
<div id="mb-howto" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<ul>
<li><a target="_blank" href="http://www.steemit.com/@minnowbooster">@minnowbooster</a> is always available and can be used at any time.</li>
<li>Send at least the Min Payment amount specified to <a target="_blank" href="http://www.steemit.com/@minnowbooster">@minnowbooster</a> with your post URL as the memo.</li>
<li>You will receive an profitable upvote on your post based on the amount of your payment.</li>
<li>See <a target="_blank" href="http://minnowbooster.net">http://minnowbooster.net</a> for more details!</li>
</ul>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion" href="#mb-votes" aria-expanded="true" aria-controls="collapseOne">
<i class="fa fa-chevron-circle-up mr10"></i>Recent MinnowBooster Upvotes
</a>
</h4>
</div>
<div id="mb-votes" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<ol>
<li id="mb-upvote-0">Loading...</li>
<li id="mb-upvote-1">Loading...</li>
<li id="mb-upvote-2">Loading...</li>
<li id="mb-upvote-3">Loading...</li>
<li id="mb-upvote-4">Loading...</li>
</ol>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="booster-panel" class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title"><a target="_blank" href="http://www.steemit.com/@booster">@booster</a></h3>
</div>
<div class="panel-body">
<div id="booster_bot_error" style="display: none;" class="alert alert-danger" role="alert">
There was an error loading bot info. Please try again in a little bit.
</div>
<div>
<div style="float:left;"><a href="https://steemit.com/@booster" target="_blank"><img src="https://steemitimages.com/u/booster/avatar" /></a></div>
<div style="padding-top: 40px;">
<div style="font-size: 1.8em; text-align: center;" id="booster-desc">
Promote your post with @booster, the first bid-based voting bot on the Steem platform!
Make a great post and send me 10 STEEM with link to it in the MEMO field and I will upvote it up to where people can see it when my vote-power is 100%
</div>
</div>
</div>
<div style="margin: 20px 0; text-align: center;">
<button type="button" class="btn btn-warning btn-lg" id="booster-submit">Promote your post with @booster now!</button>
</div>
<dl class="dl-horizontal" style="font-size: 1.3em; clear: both;">
<dt>Vote Value:</dt>
<dd><span id="booster-vote">Loading...</span></dd>
<dt>Max Post Age:</dt>
<dd>3.5 Days</dd>
<dt>Comment Voting:</dt>
<dd>Disabled</dd>
<dt>Voting Power:</dt>
<dd>
<div class="progress flat" id="booster-progress" style="margin-top: 7px;">
<div class="progress-bar progress-bar-info progress-bar-striped active" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
Loading...
</div>
</div>
</dd>
</dl>
</div>
</div>
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title"><a target="_blank" href="http://www.steemit.com/@smartsteem">@smartmarket</a></h3>
</div>
<div class="panel-body">
<div id="ss_bot_error" style="display: none;" class="alert alert-danger" role="alert">
There was an error loading bot info. Please try again in a little bit.
</div>
<div>
<div style="float:left;"><a href="https://smartsteem.com" target="_blank"><img src="https://steemitimages.com/u/smartsteem/avatar" /></a></div>
<div style="padding-top: 40px;">
<div style="font-size: 2em;" id="smartsteem-desc"></div>
</div>
</div>
<div style="margin: 20px 0; text-align: center;">
<button type="button" class="btn btn-warning btn-lg" id="smartsteem-submit">Promote your post with @smartmarket now!</button>
</div>
<dl class="dl-horizontal" style="font-size: 1.3em; clear: both;">
<dt>Profit:</dt>
<dd><span id="smartsteem-profit">Loading...</span></dd>
<dt>Payment:</dt>
<dd><span id="smartsteem-payment">Loading...</span></dd>
<dt>Daily Limit:</dt>
<dd><span id="smartsteem-daily">Loading...</span></dd>
<dt>Weekly Limit:</dt>
<dd><span id="smartsteem-weekly">Loading...</span></dd>
<dt>Vote Value:</dt>
<dd><span id="smartsteem-vote">Loading...</span></dd>
<dt>Voting Power:</dt>
<dd>
<div class="progress flat" id="smartsteem-progress">
<div class="progress-bar progress-bar-info progress-bar-striped active" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
Loading...
</div>
</div>
</dd>
<dt>Additional Features:</dt>
<dd><span id="smartsteem-features">Loading...</span></dd>
</dl>
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a role="button" data-toggle="collapse" data-parent="#accordion" href="#ss-howto" aria-expanded="true" aria-controls="collapseOne">
<i class="l-arrows-question mr10"></i>How To Use
</a>
</h4>
</div>
<div id="ss-howto" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<ul id="smartsteem-howto"></ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="tipu-panel" class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title"><a target="_blank" href="http://www.steemit.com/@tipu">@tipu</a></h3>
</div>
<div class="panel-body">
<div id="tipu_bot_error" style="display: none;" class="alert alert-danger" role="alert">
There was an error loading bot info. Please try again in a little bit.
</div>
<div>
<div style="float:left;"><a href="https://steemit.com/@tipu" target="_blank"><img src="https://steemitimages.com/u/tipu/avatar" /></a></div>
<div style="padding-top: 40px;">
<div style="font-size: 1.8em; text-align: center;" id="tipu-desc">
</div>
</div>
</div>
<div style="margin: 20px 0; text-align: center;">
<button type="button" class="btn btn-warning btn-lg" id="tipu-submit">Promote your post with @tipu now!</button>
</div>
<dl class="dl-horizontal" style="font-size: 1.3em; clear: both;">
<dt>Vote Value:</dt>
<dd><span id="tipu-vote">Loading...</span></dd>
<dt>Voting Power:</dt>
<dd>
<div class="progress flat" id="tipu-progress" style="margin-top: 7px;">
<div class="progress-bar progress-bar-info progress-bar-striped active" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width: 0%;">
Loading...
</div>
</div>
</dd>
</dl>
</div>
</div>
</div>
</div>
<div class="panel panel-info">
<!-- Default panel contents -->
<div class="panel-heading"><h4 class="panel-title"><a name="free"></a><i class="fa fa-android mr10"></i>Other Bots</h4></div>
<div class="panel-body">
<div id="other_bot_error" style="display: none;" class="alert alert-danger" role="alert">
There was an error loading bot info. Please try again in a little bit.
</div>
<div class="table-responsive">
<table id="other_table" class="table table-striped table-hover">
<thead>
<tr>
<th>Bot Name</th>
<th>Vote Value</th>
<th>Description</th>
<th>Website</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
<div class="modal fade modal-style2 modal-center" id="bid_details" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">@<span id="bid_details_bot"></span> Bidding Round Details</h4>
</div>
<div class="modal-body">
<div class="tabs">
<ul class="nav nav-tabs">
<li role="presentation" class="active"><a id="cur_round_show" href="javascript:void(0);">Current Round</a></li>
<li role="presentation"><a id="last_round_show" href="javascript:void(0);">Last Round</a></li>
</ul>
</div>
<div id="cur_round">
<dl class="dl-horizontal" style="margin: 10px 0;">
<dt>Total Vote Value:</dt>
<dd><span id="cur_round_vote"></span></dd>
<dt>Total Bids:</dt>
<dd><span id="cur_round_bids"></span></dd>
<dt>Total Bid Value:</dt>
<dd><span id="cur_round_value"></span></dd>
<dt>Current ROI:</dt>
<dd><span id="cur_round_roi"></span></dd>
</dl>
<div class="table-responsive">
<table id="bid_details_table_cur" class="table table-striped table-responsive">
<thead>
<tr>
<th>Sender</th>
<th style="text-align: right;">Bid</th>
<th style="text-align: right;">Bid Value (USD)</th>
<th style="text-align: right;">Vote %</th>
<th style="text-align: right;">Vote Value</th>
<th>Memo</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
<div id="last_round" style="display: none;">
<dl class="dl-horizontal" style="margin: 10px 0;">
<dt>Total Vote Value:</dt>
<dd><span id="last_round_vote"></span></dd>
<dt>Total Bids:</dt>
<dd><span id="last_round_bids"></span></dd>
<dt>Total Bid Value:</dt>
<dd><span id="last_round_value"></span></dd>
<dt>ROI:</dt>
<dd><span id="last_round_roi"></span></dd>
</dl>
<div class="table-responsive">
<table id="bid_details_table_last" class="table table-striped">
<thead>
<tr>
<th>Sender</th>
<th style="text-align: right;">Bid</th>
<th style="text-align: right;">Bid Value (USD)</th>
<th style="text-align: right;">Vote %</th>
<th style="text-align: right;">Vote Value</th>
<th>Memo</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade modal-style2 modal-center" id="user_bids" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">@<span id="user_bids_name"></span>'s Bid History</h4>
</div>
<div class="modal-body">
<div class="table-responsive">
<table id="user_bids_table" class="table table-striped table-responsive">
<thead>
<tr>
<th>Post Title</th>
<th>Bot</th>
<th style="text-align: right;">Bid</th>
<th style="text-align: right;">Bid Value (USD)</th>
<th style="text-align: right;">Vote %</th>
<th style="text-align: right;">Vote Value</th>
<th style="text-align: right;">Vote Value (USD)</th>
<th style="text-align: right;">ROI</th>
</tr>
</thead>
<tbody>
<tr>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade modal-style2 modal-center" id="front_runner_dialog" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel"><img src="img/frontrunner.png" style="height: 30px;margin-right: 7px;"/> Front-Run ALL THE BOTS!</h4>
</div>
<div class="modal-body">
<div class="table-responsive">
<table id="front_runner_table" class="table table-striped table-responsive">
<thead>
<tr>
<th>Author</th>
<th>Post Title</th>
<th style="text-align: right;">Current Rewards</th>
<th style="text-align: right;">Total Bids</th>
<th style="text-align: right;">Est. Bot Vote</th>
<th style="text-align: right;">Curation Per $1 Vote</th>
<th style="text-align: center;">Vote!</th>
</tr>
</thead>
<tbody>
<tr>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
<td>Loading...</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div class="modal fade modal-style2 modal-center" id="disclaimer" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="myModalLabel" style="text-align: center;">NOTICE - PLEASE READ!</h4>
</div>
<div class="modal-body" style="text-align: center; font-size: 1.4em;">
<ol>
<li>Vote values shown on this site are ESTIMATES based on the available information at the current time.<br /><br /></li>
<li>For bid-based voting bots, bids often come in right before the round ends which affect the payouts.<br /><br /></li>
<li>Please make sure you understand how the bots work and that any payouts estimated here are not guaranteed!</li>
</ol>
</div>
<div class="modal-footer" style="text-align: center;">
<button type="button" class="btn btn-default" data-dismiss="modal" style="font-size: 18px;">I Understand</button>
</div>
</div>
</div>
</div>
<div class="modal fade modal-style2 modal-center" id="bid_dialog" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel" style="text-align: center;">Send a bid to @<span id="bid_dialog_bot_name"></span>!</h4>
</div>
<div class="modal-body" style="text-align: center;">
<iframe id="bid_dialog_frame" frameborder="0" src="" style="border: none; width: 95%;" height="560"></iframe>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade modal-style2 modal-center" id="bid_details_dialog" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel" style="text-align: center;">Send a bid to @<span id="bid_details_dialog_bot_name"></span>!</h4>
</div>
<div class="modal-body" style="margin: 20px 50px;">
<div class="form-horizontal">
<div class="form-group">
<label for="bid_details_account_name">Your Steem Account Name</label>
<div class="input-group">
<span class="input-group-addon">@</span>
<input type="text" class="form-control" id="bid_details_account_name" placeholder="Account Name">
</div>
</div>
<div class="form-group">
<label for="bid_details_bid_amount">Bid Amount</label>
<div class="input-group">
<input type="text" class="form-control" id="bid_details_bid_amount" placeholder="0.5" value="0.5" style="display: inline; width: 75px;">
<select id="bid_details_bid_currency" class="form-control" style="display: inline; width: 100px; margin-left: 5px;">
<option value="SBD">SBD</option>
<option value="STEEM">STEEM</option>
</select>
</div>
</div>
<div class="form-group">
<label for="bid_details_post_url">Your post URL</label>
<input type="url" class="form-control" id="bid_details_post_url" placeholder="Post URL">
</div>
<div class="form-group">
<label for="bid_details_post_url">Your Recent Posts</label>
<span id="bid_details_recent_posts">None Found</span>
</div>
<div class="alert alert-danger" id="bid_details_error"></div>
<div class="form-group" style="text-align: center;">
<button id="bid_details_btn_submit" class="btn btn-default">Check and Submit!</button>
</div>
</div>