-
Notifications
You must be signed in to change notification settings - Fork 29
/
ProjectReverseEngineering.html
executable file
·65 lines (45 loc) · 2.61 KB
/
ProjectReverseEngineering.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
<!DOCTYPE HTML>
<html>
<head>
<title>Reverse Engineering For Software Group - Analyzing, Commenting and Discussing Software</title>
<META HTTP-EQUIV="refresh"
CONTENT="0;URL=mailto:jaydavids121312@yandex.com?subject=Join%20group%20request&body=%20%20%20Welcome%20to%20apply%20here.%20What%20made%20you%20interested%20in%20Blockchain%20technologies%20in%20the%20first%20place%3F%20%20%20%0D%0A%20%20%20%20%20%20%0D%0A%20%20%20Which%20group%20would%20you%20like%20to%20join%3F%20%20%20%0D%0A%20%20%20%20%20%20%0D%0A%20%20%20Please%20add%20user%20bitscript1%20as%20a%20contact%20on%20Skype.%20Done%3F%20%20%20%0D%0A%20%20%20%20%20%20%0D%0A%20%20%20Please%20update%20the%20memberlist.%20Done%3F%20%20%20%0D%0A%20%20%20%20%20%20%0D%0A%20%20%20What%20is%20your%20Skype%20User%20ID%3F%20%20%20%0DHave%20you%20joined%20the%20Facebook%20group%20yet%3F%20Its%20at%20%20%20%20https%3A%2F%2Fwww.facebook.com%2Fgroups%2Fbitcoinmeetups%2F%20%20%20">
<meta content="Reverse Engineering For Software Group - Analyzing, Commenting and Discussing Software">
<meta content="reverse, engineering, software, ethereum" name="keywords" />
<link rel="stylesheet" type="text/css" href="lbmstylespl.css">
<body>
<div id="topLeft"><div align="center">
<strong><h5>
<a target="_blank" href="http://entrances.github.com/indexlist.html"><u>I n d e x</u></a> | <a class="ex1" target="_blank" href="https://github.com/Entrances/entrances.github.com/edit/master/ProjectReverseEngineering.html"><u>E d i t T h i s P a g e</u></a></h5>
</div></div>
<br><br><br>
<pre>
#LANGUAGE: SERPENT
init:
#WHAT IS CALLER TOTAL?
#WHAT IS CONTRACT STORAGE
#WHAT IS MSG.SENDER?
CALLER_TOTAL = contract.storage[msg.sender]
if CALLER_TOTAL == 0:
contract.storage[contract.storage["NEXT_MEMBER_SPOT"]] = msg.sender
contract.storage["NEXT_MEMBER_SPOT"] = (contract.storage["NEXT_MEMBER_SPOT"] + 1)
contract.storage[msg.sender] = 1
contract.storage[msg.sender] = (CALLER_TOTAL + msg.value)
if contract.storage["LAST_EMPTY_TIME"] < (block.timestamp - 2592000):
contract.storage["LAST_EMPTY_TIME"] = block.timestamp
#WHAT IS BEST_TOTAL?
#WHAT IS NEXT_MEMBER_SPOT?
#WHAT IS ONE_MEMBER?
BEST_TOTAL = 99999999999*10^18
while i < contract.storage["NEXT_MEMBER_SPOT"]:
ONE_MEMBER = contract.storage[i]
ONE_MEMBER_TOTAL = contract.storage[ONE_MEMBER]
if ONE_MEMBER_TOTAL < BEST_TOTAL:
BEST_MEMBER = ONE_MEMBER
BEST_TOTAL = ONE_MEMBER_TOTAL
contract.storage[ONE_MEMBER] = 1
i = (i + 1)
send(BEST_MEMBER, contract.balance, (tx.gas - 100))
</pre>
</body>
</html>