Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Source Code
Overview
Max Total Supply
40,000,000 WBA
Holders
54
Transfers
-
0
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 7 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
WeBetCrypto
Compiler Version
v0.4.18+commit.9cf6e910
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2017-11-23
*/
pragma solidity ^0.4.18;
/**
* @title WeBetCrypto
* @author AL_X
* @dev The WBC ERC-223 Token Contract
*/
contract WeBetCrypto {
string public name = "We Bet Crypto";
string public symbol = "WBA";
address public selfAddress;
address public admin;
address[] private users;
uint8 public decimals = 7;
uint256 public relativeDateSave;
uint256 public totalFunds;
uint256 public totalSupply = 400000000000000;
uint256 public IOUSupply = 0;
uint256 private amountInCirculation;
uint256 private currentProfits;
uint256 private currentIteration;
uint256 private actualProfitSplit;
bool public isFrozen;
bool private running;
mapping(address => uint256) balances;
mapping(address => uint256) moneySpent;
mapping(address => uint256) monthlyLimit;
mapping(address => uint256) cooldown;
mapping(address => bool) isAdded;
mapping(address => bool) claimedBonus;
mapping(address => bool) bannedUser;
//mapping(address => bool) loggedUser;
mapping (address => mapping (address => uint256)) allowed;
event Transfer(address indexed _from, address indexed _to, uint256 _value);
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
/**
* @notice Ensures admin is caller
*/
modifier isAdmin() {
require(msg.sender == admin);
//Continue executing rest of method body
_;
}
/**
* @notice Re-entry protection
*/
modifier isRunning() {
require(!running);
running = true;
_;
running = false;
}
/**
* @notice Ensures system isn't frozen
*/
modifier noFreeze() {
require(!isFrozen);
_;
}
/**
* @notice Ensures player isn't logged in on platform
*/
modifier userNotPlaying(address _user) {
//require(!loggedUser[_user]);
uint256 check = 0;
check -= 1;
require(cooldown[_user] == check);
_;
}
/**
* @notice Ensures player isn't bannedUser
*/
modifier userNotBanned(address _user) {
require(!bannedUser[_user]);
_;
}
/**
* @notice SafeMath Library safeSub Import
* @dev
Since we are dealing with a limited currency
circulation of 40 million tokens and values
that will not surpass the uint256 limit, only
safeSub is required to prevent underflows.
*/
function safeSub(uint256 a, uint256 b) internal pure returns (uint256 z) {
assert((z = a - b) <= a);
}
/**
* @notice WBC Constructor
* @dev
Constructor function containing proper initializations such as
token distribution to the team members and pushing the first
profit split to 6 months when the DApp will already be live.
*/
function WeBetCrypto() public {
admin = msg.sender;
selfAddress = this;
balances[0x66AE070A8501E816CA95ac99c4E15C7e132fd289] = 200000000000000;
addUser(0x66AE070A8501E816CA95ac99c4E15C7e132fd289);
Transfer(selfAddress, 0x66AE070A8501E816CA95ac99c4E15C7e132fd289, 200000000000000);
balances[0xcf8d242C523bfaDC384Cc1eFF852Bf299396B22D] = 50000000000000;
addUser(0xcf8d242C523bfaDC384Cc1eFF852Bf299396B22D);
Transfer(selfAddress, 0xcf8d242C523bfaDC384Cc1eFF852Bf299396B22D, 50000000000000);
relativeDateSave = now + 40 days;
balances[selfAddress] = 150000000000000;
}
/**
* @notice Check the name of the token ~ ERC-20 Standard
* @return {
"_name": "The token name"
}
*/
function name() external constant returns (string _name) {
return name;
}
/**
* @notice Check the symbol of the token ~ ERC-20 Standard
* @return {
"_symbol": "The token symbol"
}
*/
function symbol() external constant returns (string _symbol) {
return symbol;
}
/**
* @notice Check the decimals of the token ~ ERC-20 Standard
* @return {
"_decimals": "The token decimals"
}
*/
function decimals() external constant returns (uint8 _decimals) {
return decimals;
}
/**
* @notice Check the total supply of the token ~ ERC-20 Standard
* @return {
"_totalSupply": "Total supply of tokens"
}
*/
function totalSupply() external constant returns (uint256 _totalSupply) {
return totalSupply;
}
/**
* @notice Query the available balance of an address ~ ERC-20 Standard
* @param _owner The address whose balance we wish to retrieve
* @return {
"balance": "Balance of the address"
}
*/
function balanceOf(address _owner) external constant returns (uint256 balance) {
return balances[_owner];
}
/**
* @notice Query the amount of tokens the spender address can withdraw from the owner address ~ ERC-20 Standard
* @param _owner The address who owns the tokens
* @param _spender The address who can withdraw the tokens
* @return {
"remaining": "Remaining withdrawal amount"
}
*/
function allowance(address _owner, address _spender) external constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
/**
* @notice Query whether the user is eligible for claiming dividence
* @param _user The address to query
* @return _success Whether or not the user is eligible
*/
function eligibleForDividence(address _user) public view returns (bool _success) {
if (moneySpent[_user] == 0) {
return false;
} else if ((balances[_user] + allowed[selfAddress][_user])/moneySpent[_user] > 20) {
return false;
}
return true;
}
/**
* @notice Transfer tokens from an address to another ~ ERC-20 Standard
* @dev
Adjusts the monthly limit in case the _from address is the Casino
and ensures that the user isn't logged in when retrieving funds
so as to prevent against a race attack with the Casino.
* @param _from The address whose balance we will transfer
* @param _to The recipient address
* @param _value The amount of tokens to be transferred
*/
function transferFrom(address _from, address _to, uint256 _value) external noFreeze {
var _allowance = allowed[_from][_to];
if (_from == selfAddress) {
monthlyLimit[_to] = safeSub(monthlyLimit[_to], _value);
require(cooldown[_to] < now /*&& !loggedUser[_to]*/);
IOUSupply -= _value;
}
balances[_to] = balances[_to]+_value;
balances[_from] = safeSub(balances[_from], _value);
allowed[_from][_to] = safeSub(_allowance, _value);
addUser(_to);
Transfer(_from, _to, _value);
}
/**
* @notice Authorize an address to retrieve funds from you ~ ERC-20 Standard
* @dev
30 minute cooldown removed for easier participation in
trading platforms such as Ether Delta
* @param _spender The address you wish to authorize
* @param _value The amount of tokens you wish to authorize
*/
function approve(address _spender, uint256 _value) external {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
}
/**
* @notice Transfer the specified amount to the target address ~ ERC-20 Standard
* @dev
A boolean is returned so that callers of the function
will know if their transaction went through.
* @param _to The address you wish to send the tokens to
* @param _value The amount of tokens you wish to send
* @return {
"success": "Transaction success"
}
*/
function transfer(address _to, uint256 _value) external isRunning noFreeze returns (bool success) {
bytes memory empty;
if (_to == selfAddress) {
return transferToSelf(_value);
} else if (isContract(_to)) {
return transferToContract(_to, _value, empty);
} else {
return transferToAddress(_to, _value);
}
}
/**
* @notice Check whether address is a contract ~ ERC-223 Proposed Standard
* @param _address The address to check
* @return {
"is_contract": "Result of query"
}
*/
function isContract(address _address) internal view returns (bool is_contract) {
uint length;
assembly {
length := extcodesize(_address)
}
return length > 0;
}
/**
* @notice Transfer the specified amount to the target address with embedded bytes data ~ ERC-223 Proposed Standard
* @dev Includes an extra transferToSelf function to handle Casino deposits
* @param _to The address to transfer to
* @param _value The amount of tokens to transfer
* @param _data Any extra embedded data of the transaction
* @return {
"success": "Transaction success"
}
*/
function transfer(address _to, uint256 _value, bytes _data) external isRunning noFreeze returns (bool success){
if (_to == selfAddress) {
return transferToSelf(_value);
} else if (isContract(_to)) {
return transferToContract(_to, _value, _data);
} else {
return transferToAddress(_to, _value);
}
}
/**
* @notice Handles transfer to an ECA (Externally Controlled Account), a normal account ~ ERC-223 Proposed Standard
* @param _to The address to transfer to
* @param _value The amount of tokens to transfer
* @return {
"success": "Transaction success"
}
*/
function transferToAddress(address _to, uint256 _value) internal returns (bool success) {
balances[msg.sender] = safeSub(balances[msg.sender], _value);
balances[_to] = balances[_to]+_value;
addUser(_to);
Transfer(msg.sender, _to, _value);
return true;
}
/**
* @notice Handles transfer to a contract ~ ERC-223 Proposed Standard
* @param _to The address to transfer to
* @param _value The amount of tokens to transfer
* @param _data Any extra embedded data of the transaction
* @return {
"success": "Transaction success"
}
*/
function transferToContract(address _to, uint256 _value, bytes _data) internal returns (bool success) {
balances[msg.sender] = safeSub(balances[msg.sender], _value);
balances[_to] = balances[_to]+_value;
WeBetCrypto rec = WeBetCrypto(_to);
rec.tokenFallback(msg.sender, _value, _data);
addUser(_to);
Transfer(msg.sender, _to, _value);
return true;
}
/**
* @notice Handles Casino deposits ~ Custom ERC-223 Proposed Standard Addition
* @param _value The amount of tokens to transfer
* @return {
"success": "Transaction success"
}
*/
function transferToSelf(uint256 _value) internal returns (bool success) {
balances[msg.sender] = safeSub(balances[msg.sender], _value);
balances[selfAddress] = balances[selfAddress]+_value;
Transfer(msg.sender, selfAddress, _value);
allowed[selfAddress][msg.sender] = _value + allowed[selfAddress][msg.sender];
IOUSupply += _value;
Approval(selfAddress, msg.sender, allowed[selfAddress][msg.sender]);
return true;
}
/**
* @notice Empty tokenFallback method to ensure ERC-223 compatibility
* @param _sender The address who sent the ERC-223 tokens
* @param _value The amount of tokens the address sent to this contract
* @param _data Any embedded data of the transaction
*/
function tokenFallback(address _sender, uint256 _value, bytes _data) public {}
/**
* @notice Check how much Casino withdrawal balance remains for address
* @return {
"remaining": "Withdrawal balance remaining"
}
*/
function checkMonthlyLimit() external constant returns (uint256 remaining) {
return monthlyLimit[msg.sender];
}
/**
* @notice Retrieve ERC Tokens sent to contract
* @dev Feel free to contact us and retrieve your ERC tokens should you wish so.
* @param _token The token contract address
*/
function claimTokens(address _token) isAdmin external {
require(_token != selfAddress);
WeBetCrypto token = WeBetCrypto(_token);
uint balance = token.balanceOf(selfAddress);
token.transfer(admin, balance);
}
/**
* @notice Freeze token circulation - splitProfits internal
* @dev
Ensures that one doesn't transfer his total balance mid-split to
an account later in the split queue in order to receive twice the
monthly profits
*/
function assetFreeze() internal {
isFrozen = true;
}
/**
* @notice Re-enable token circulation - splitProfits internal
*/
function assetThaw() internal {
isFrozen = false;
}
/**
* @notice Freeze token circulation
* @dev To be used only in extreme circumstances.
*/
function emergencyFreeze() isAdmin external {
isFrozen = true;
}
/**
* @notice Re-enable token circulation
* @dev To be used only in extreme circumstances
*/
function emergencyThaw() isAdmin external {
isFrozen = false;
}
/**
* @notice Disable the splitting function
* @dev
To be used in case the system is upgraded to a
node.js operated profit reward system via the
alterBankBalance function. Ensures scalability
in case userbase gets too big.
*/
function emergencySplitToggle() isAdmin external {
uint temp = 0;
temp -= 1;
if (relativeDateSave == temp) {
relativeDateSave = now;
} else {
relativeDateSave = temp;
}
}
/**
* @notice Add the address to the user list
* @dev Used for the splitting function to take it into account
* @param _user User to add to database
*/
function addUser(address _user) internal {
if (!isAdded[_user]) {
users.push(_user);
monthlyLimit[_user] = 1000000000000;
isAdded[_user] = true;
}
}
/**
* @notice Split the monthly profits of the Casino to the users
* @dev
The formula that calculates the profit a user is owed can be seen on
the white paper. The actualProfitSplit variable stores the actual values
that are distributed to the users to prevent rounding errors from burning
tokens. Since gas requirements will spike the more users use our platform,
a loop-state-save is implemented to ensure scalability.
*/
function splitProfits() external {
uint i;
if (!isFrozen) {
require(now >= relativeDateSave);
assetFreeze();
require(balances[selfAddress] > 30000000000000);
relativeDateSave = now + 30 days;
currentProfits = ((balances[selfAddress]-30000000000000)/10)*7;
amountInCirculation = safeSub(400000000000000, balances[selfAddress]) + IOUSupply;
currentIteration = 0;
actualProfitSplit = 0;
} else {
for (i = currentIteration; i < users.length; i++) {
monthlyLimit[users[i]] = 1000000000000;
if (msg.gas < 250000) {
currentIteration = i;
break;
}
if (!eligibleForDividence(users[i])) {
moneySpent[users[i]] = 0;
checkSplitEnd(i);
continue;
}
moneySpent[users[i]] = 0;
actualProfitSplit += ((balances[users[i]]+allowed[selfAddress][users[i]])*currentProfits)/amountInCirculation;
Transfer(selfAddress, users[i], ((balances[users[i]]+allowed[selfAddress][users[i]])*currentProfits)/amountInCirculation);
balances[users[i]] += ((balances[users[i]]+allowed[selfAddress][users[i]])*currentProfits)/amountInCirculation;
checkSplitEnd(i);
}
}
}
/**
* @notice Change variables on split end
* @param i The current index of the split loop.
*/
function checkSplitEnd(uint256 i) internal {
if (i == users.length-1) {
assetThaw();
balances[0x66AE070A8501E816CA95ac99c4E15C7e132fd289] = balances[0x66AE070A8501E816CA95ac99c4E15C7e132fd289] + currentProfits/20;
balances[selfAddress] = balances[selfAddress] - actualProfitSplit - currentProfits/20;
}
}
/**
* @notice Rise or lower user bank balance - Backend Function
* @dev
This allows adjustment of the balance a user has within the Casino to
represent earnings and losses.
* @param _toAlter The address whose Casino balance to alter
* @param _amount The amount to alter it by
*/
function alterBankBalance(address _toAlter, uint256 _amount) internal {
if (_amount > allowed[selfAddress][_toAlter]) {
IOUSupply += (_amount - allowed[selfAddress][_toAlter]);
moneySpent[_toAlter] += (_amount - allowed[selfAddress][_toAlter]);
allowed[selfAddress][_toAlter] = _amount;
Approval(selfAddress, _toAlter, allowed[selfAddress][_toAlter]);
} else {
IOUSupply -= (allowed[selfAddress][_toAlter] - _amount);
moneySpent[_toAlter] += (allowed[selfAddress][_toAlter] - _amount);
allowed[selfAddress][_toAlter] = _amount;
Approval(selfAddress, _toAlter, allowed[selfAddress][_toAlter]);
}
}
/**
* @notice Freeze user during platform use - Backend Function
* @dev Prevents against the ERC-20 race attack on the Casino
*/
function platformLogin() userNotBanned(msg.sender) external {
//loggedUser[msg.sender] = true;
cooldown[msg.sender] = 0;
cooldown[msg.sender] -= 1;
}
/**
* @notice De-Freeze user - Backend Function
* @dev Used when a user logs out or loses connection with the DApp
*/
function platformLogout(address _toLogout, uint256 _newBalance) external isAdmin {
//loggedUser[msg.sender] = false;
cooldown[_toLogout] = now + 30 minutes;
alterBankBalance(_toLogout,_newBalance);
}
/**
* @notice Check if user is logged internal
* @dev Used to ensure that the user is logged in throughout
* the whole casino session
* @param _toCheck The user address to check
*/
function checkLogin(address _toCheck) view external returns (bool) {
uint256 check = 0;
check -= 1;
return (cooldown[_toCheck] == check);
}
/**
* @notice Ban a user
* @dev Used in extreme circumstances where the users break the law
* @param _user The user to ban
*/
function banUser(address _user) external isAdmin {
bannedUser[_user] = true;
cooldown[_user] = now + 30 minutes;
}
/**
* @notice Unban a user
* @dev Used in extreme circumstances where the users have redeemed
* @param _user The user to unban
*/
function unbanUser(address _user) external isAdmin {
bannedUser[_user] = false;
}
/**
* @notice Check if a user is banned
* @dev Used by the back-end to give a message to the user
* @param _user The user to check
*/
function checkBan(address _user) external view returns (bool) {
return bannedUser[_user];
}
/**
* @notice Purchase WBC Tokens for Self - ICO
*/
function() payable external {
totalFunds = totalFunds + msg.value;
address etherTransfer = 0x66AE070A8501E816CA95ac99c4E15C7e132fd289;
require(msg.value > 0);
require(msg.sender != etherTransfer);
require(totalFunds/1 ether < 2000);
addUser(msg.sender);
uint256 tokenAmount = msg.value/100000000;
balances[selfAddress] = balances[selfAddress] - tokenAmount;
balances[msg.sender] = balances[msg.sender] + tokenAmount;
Transfer(selfAddress, msg.sender, tokenAmount);
etherTransfer.transfer(msg.value);
}
/**
* @notice Advertising Token Distribution
* @dev Ensures the user has at least 0.1 Ether on his
* account before distributing 20 WBC
*/
function claimBonus() external {
require(msg.sender.balance/(1000 finney) >= 1 && !claimedBonus[msg.sender]);
claimedBonus[msg.sender] = true;
allowed[selfAddress][msg.sender] = allowed[selfAddress][msg.sender] + 200000000;
IOUSupply += 200000000;
addUser(msg.sender);
Approval(selfAddress, msg.sender, allowed[selfAddress][msg.sender]);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"_name","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"splitProfits","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"}],"name":"banUser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"selfAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"_totalSupply","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"emergencyThaw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isFrozen","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"}],"name":"unbanUser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimBonus","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_user","type":"address"}],"name":"checkBan","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_toLogout","type":"address"},{"name":"_newBalance","type":"uint256"}],"name":"platformLogout","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"relativeDateSave","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_toCheck","type":"address"}],"name":"checkLogin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"platformLogin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"emergencySplitToggle","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"_symbol","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalFunds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_user","type":"address"}],"name":"eligibleForDividence","outputs":[{"name":"_success","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"checkMonthlyLimit","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_sender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"tokenFallback","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"IOUSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"emergencyFreeze","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]Contract Creation Code
606060405260408051908101604052600d81527f5765204265742043727970746f00000000000000000000000000000000000000602082015260009080516200004d92916020019062000305565b5060408051908101604052600381527f5742410000000000000000000000000000000000000000000000000000000000602082015260019080516200009792916020019062000305565b506005805460ff1916600717905566016bcc41e9000060085560006009553415620000c157600080fd5b60038054600160a060020a03338116600160a060020a0319928316179092556002805430909316929091169190911790557366ae070a8501e816ca95ac99c4e15c7e132fd2896000819052600f60205265b5e620f480007f5a6c46c047a5911ee4e7d3049b59d0ad4c21fdc222c45f43d7247494d2906b40556200015390640100000000620006ba6200027a82021704565b6002547366ae070a8501e816ca95ac99c4e15c7e132fd28990600160a060020a031660008051602062001eb883398151915265b5e620f4800060405190815260200160405180910390a373cf8d242c523bfadc384cc1eff852bf299396b22d6000819052600f602052652d79883d20007fbf1e6e0d54ee903efacd70f16bbcd66107b015b75e5d5240db3fcaa56d188f1a55620001fe90640100000000620006ba6200027a82021704565b60025473cf8d242c523bfadc384cc1eff852bf299396b22d90600160a060020a031660008051602062001eb8833981519152652d79883d200060405190815260200160405180910390a36234bc004201600655600254600160a060020a03166000908152600f6020526040902065886c98b760009055620003d6565b600160a060020a03811660009081526013602052604090205460ff16151562000302576004805460018101620002b183826200038a565b5060009182526020808320919091018054600160a060020a031916600160a060020a038516908117909155825260118152604080832064e8d4a51000905560139091529020805460ff191660011790555b50565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200034857805160ff191683800117855562000378565b8280016001018555821562000378579182015b82811115620003785782518255916020019190600101906200035b565b5062000386929150620003b6565b5090565b815481835581811511620003b157600083815260209020620003b1918101908301620003b6565b505050565b620003d391905b80821115620003865760008155600101620003bd565b90565b611ad280620003e66000396000f3006060604052600436106101715763ffffffff60e060020a60003504166306fdde038114610286578063095ea7b3146103105780630d2946291461033457806310d86b1f1461034757806312e905b01461036657806318160ddd1461039557806323b872dd146103ba578063309593ee146103e2578063313ce567146103f557806333eeb1471461041e5780634d12b69514610445578063506353941461046457806350ffbe81146104775780635d94f108146104965780635ffbba3f146104b857806360e85674146104cb57806370a08231146104ea578063808e0ae214610509578063927bcac31461051c57806395d89b411461052f578063968ed60014610542578063a7daf6dd14610555578063a9059cbb14610574578063a9ac4c5f14610596578063be45fd62146105a9578063c0ee0b8a146105d8578063c0f70d5a1461063d578063dd62ed3e14610650578063df8de3e714610675578063f3d4b94214610694578063f851a440146106a7575b60078054349081019091557366ae070a8501e816ca95ac99c4e15c7e132fd289906000908190116101a157600080fd5b81600160a060020a031633600160a060020a0316141515156101c257600080fd5b6007546107d090670de0b6b3a76400009004106101de57600080fd5b6101e7336106ba565b5060028054600160a060020a039081166000908152600f602052604080822080546305f5e10034049081900390915533841680845292829020805482019055935491929190911690600080516020611a678339815191529084905190815260200160405180910390a3600160a060020a0382163480156108fc0290604051600060405180830381858888f19350505050151561028257600080fd5b5050005b341561029157600080fd5b61029961074f565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102d55780820151838201526020016102bd565b50505050905090810190601f1680156103025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561031b57600080fd5b610332600160a060020a03600435166024356107f8565b005b341561033f57600080fd5b61033261084a565b341561035257600080fd5b610332600160a060020a0360043516610c8e565b341561037157600080fd5b610379610cde565b604051600160a060020a03909116815260200160405180910390f35b34156103a057600080fd5b6103a8610ced565b60405190815260200160405180910390f35b34156103c557600080fd5b610332600160a060020a0360043581169060243516604435610cf3565b34156103ed57600080fd5b610332610e56565b341561040057600080fd5b610408610e7d565b60405160ff909116815260200160405180910390f35b341561042957600080fd5b610431610e86565b604051901515815260200160405180910390f35b341561045057600080fd5b610332600160a060020a0360043516610e8f565b341561046f57600080fd5b610332610ecb565b341561048257600080fd5b610431600160a060020a0360043516610fc4565b34156104a157600080fd5b610332600160a060020a0360043516602435610fe6565b34156104c357600080fd5b6103a861102e565b34156104d657600080fd5b610431600160a060020a0360043516611034565b34156104f557600080fd5b6103a8600160a060020a0360043516611053565b341561051457600080fd5b61033261106e565b341561052757600080fd5b6103326110b5565b341561053a57600080fd5b6102996110f0565b341561054d57600080fd5b6103a8611163565b341561056057600080fd5b610431600160a060020a0360043516611169565b341561057f57600080fd5b610431600160a060020a03600435166024356111f4565b34156105a157600080fd5b6103a861128c565b34156105b457600080fd5b61043160048035600160a060020a03169060248035916044359182019101356112a8565b34156105e357600080fd5b61033260048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061136995505050505050565b341561064857600080fd5b6103a861136e565b341561065b57600080fd5b6103a8600160a060020a0360043581169060243516611374565b341561068057600080fd5b610332600160a060020a03600435166113a1565b341561069f57600080fd5b6103326114dc565b34156106b257600080fd5b610379611506565b600160a060020a03811660009081526013602052604090205460ff16151561074c5760048054600181016106ee8382611a12565b506000918252602080832091909101805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038516908117909155825260118152604080832064e8d4a51000905560139091529020805460ff191660011790555b50565b610757611a36565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107ed5780601f106107c2576101008083540402835291602001916107ed565b820191906000526020600020905b8154815290600101906020018083116107d057829003601f168201915b505050505090505b90565b600160a060020a0333811660008181526016602090815260408083209487168084529490915290819020849055600080516020611a878339815191529084905190815260200160405180910390a35050565b600e5460009060ff1615156109005760065442101561086857600080fd5b6108706114f7565b600254600160a060020a03166000908152600f6020526040902054651b48eb57e000901161089d57600080fd5b62278d004201600655600254600160a060020a03166000908152600f602052604090208054600a651b48eb57dfff1990910104600702600b5560095490546108ed9066016bcc41e9000090611515565b01600a556000600c819055600d5561074c565b50600c545b60045481101561074c5764e8d4a510006011600060048481548110151561092857fe5b6000918252602080832090910154600160a060020a031683528201929092526040019020556203d0905a101561096257600c81905561074c565b61098e60048281548110151561097457fe5b600091825260209091200154600160a060020a0316611169565b15156109dc576000601060006004848154811015156109a957fe5b6000918252602080832090910154600160a060020a031683528201929092526040019020556109d781611522565b610c86565b6000601060006004848154811015156109f157fe5b6000918252602080832090910154600160a060020a039081168452838201949094526040928301822094909455600a54600b54600254909416825260169094529081206004805491929186908110610a4557fe5b6000918252602080832090910154600160a060020a03168352820192909252604001812054600480549192600f9290919087908110610a8057fe5b6000918252602080832090910154600160a060020a031683528201929092526040019020540102811515610ab057fe5b600d80549290910490910190556004805482908110610acb57fe5b6000918252602080832090910154600254600a54600b54600160a060020a03928316808752601690955260408620600480549490951696600080516020611a678339815191529593949293919290919089908110610b2557fe5b6000918252602080832090910154600160a060020a03168352820192909252604001812054600480549192600f929091908a908110610b6057fe5b6000918252602080832090910154600160a060020a031683528201929092526040019020540102811515610b9057fe5b0460405190815260200160405180910390a3600a54600b54600254600160a060020a031660009081526016602052604081206004805491929186908110610bd357fe5b6000918252602080832090910154600160a060020a03168352820192909252604001812054600480549192600f9290919087908110610c0e57fe5b6000918252602080832090910154600160a060020a031683528201929092526040019020540102811515610c3e57fe5b04600f6000600484815481101515610c5257fe5b6000918252602080832090910154600160a060020a03168352820192909252604001902080549091019055610c8681611522565b600101610905565b60035433600160a060020a03908116911614610ca957600080fd5b600160a060020a03166000908152601560209081526040808320805460ff191660011790556012909152902061070842019055565b600254600160a060020a031681565b60085490565b600e5460009060ff1615610d0657600080fd5b50600160a060020a03808416600081815260166020908152604080832087861684529091529020546002549092161415610d9857600160a060020a038316600090815260116020526040902054610d5d9083611515565b600160a060020a038416600090815260116020908152604080832093909355601290522054429010610d8e57600080fd5b6009805483900390555b600160a060020a038084166000908152600f602052604080822080548601905591861681522054610dc99083611515565b600160a060020a0385166000908152600f6020526040902055610dec8183611515565b600160a060020a03808616600090815260166020908152604080832093881683529290522055610e1b836106ba565b82600160a060020a031684600160a060020a0316600080516020611a678339815191528460405190815260200160405180910390a350505050565b60035433600160a060020a03908116911614610e7157600080fd5b600e805460ff19169055565b60055460ff1690565b600e5460ff1681565b60035433600160a060020a03908116911614610eaa57600080fd5b600160a060020a03166000908152601560205260409020805460ff19169055565b6001670de0b6b3a7640000600160a060020a033316310410158015610f095750600160a060020a03331660009081526014602052604090205460ff16155b1515610f1457600080fd5b33600160a060020a0381811660008181526014602090815260408083208054600160ff1990911617905560025490941682526016815283822092825291909152208054630bebc200908101909155600980549091019055610f74906106ba565b600254600160a060020a03908116600081815260166020908152604080832033909516808452949091529081902054600080516020611a87833981519152915190815260200160405180910390a3565b600160a060020a03811660009081526015602052604090205460ff165b919050565b60035433600160a060020a0390811691161461100157600080fd5b600160a060020a03821660009081526012602052604090206107084201905561102a8282611594565b5050565b60065481565b600160a060020a03166000908152601260205260409020546000191490565b600160a060020a03166000908152600f602052604090205490565b33600160a060020a03811660009081526015602052604090205460ff161561109557600080fd5b50600160a060020a03331660009081526012602052604090206000199055565b60035460009033600160a060020a039081169116146110d357600080fd5b50600654600019908114156110eb574260065561074c565b600655565b6110f8611a36565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107ed5780601f106107c2576101008083540402835291602001916107ed565b60075481565b600160a060020a038116600090815260106020526040812054151561119057506000610fe1565b600160a060020a0380831660008181526010602090815260408083205460025490951683526016825280832093835292815282822054600f9091529190205460149291018115156111dd57fe5b0411156111ec57506000610fe1565b506001919050565b60006111fe611a36565b600e54610100900460ff161561121357600080fd5b600e805461ff001916610100179081905560ff161561123157600080fd5b600254600160a060020a03858116911614156112575761125083611709565b915061127a565b611260846117fe565b1561127057611250848483611806565b611250848461197e565b50600e805461ff001916905592915050565b600160a060020a03331660009081526011602052604090205490565b600e54600090610100900460ff16156112c057600080fd5b600e805461ff001916610100179081905560ff16156112de57600080fd5b600254600160a060020a0386811691161415611304576112fd84611709565b9050611356565b61130d856117fe565b1561134c576112fd858585858080601f016020809104026020016040519081016040528181529291906020840183838082843750611806945050505050565b6112fd858561197e565b600e805461ff0019169055949350505050565b505050565b60095481565b600160a060020a038083166000908152601660209081526040808320938516835292905220545b92915050565b600354600090819033600160a060020a039081169116146113c157600080fd5b600254600160a060020a03848116911614156113dc57600080fd5b600254839250600160a060020a03808416916370a08231911660006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561143c57600080fd5b6102c65a03f1151561144d57600080fd5b5050506040518051600354909250600160a060020a03808516925063a9059cbb91168360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b15156114bc57600080fd5b6102c65a03f115156114cd57600080fd5b50505060405180515050505050565b60035433600160a060020a039081169116146114f757600080fd5b600e805460ff19166001179055565b600354600160a060020a031681565b8082038281111561139b57fe5b6004546000190181141561074c57611538610e71565b50600b54600f6020527f5a6c46c047a5911ee4e7d3049b59d0ad4c21fdc222c45f43d7247494d2906b40805460149092049182019055600d54600254600160a060020a0316600090815260409020805491909103919091039055565b600254600160a060020a039081166000908152601660209081526040808320938616835292905220548111156116665760028054600160a060020a039081166000908152601660208181526040808420888616808652908352818520805460098054918b03909101905554601084528286208054918a03909101905586548616855283835281852081865283528185208890559554909416808452918152838320858452905290829020549091600080516020611a8783398151915291905190815260200160405180910390a361102a565b60028054600160a060020a039081166000908152601660208181526040808420888616808652908352818520805460098054918b9003909103905554601084528286208054918a9003909101905586548616855283835281852081865283528185208890559554909416808452918152838320858452905290829020549091600080516020611a8783398151915291905190815260200160405180910390a35050565b600160a060020a0333166000908152600f602052604081205461172c9083611515565b600160a060020a033381166000818152600f6020526040808220949094556002805484168252908490208054870190555490911691600080516020611a678339815191529085905190815260200160405180910390a360028054600160a060020a03908116600090815260166020818152604080842033861680865290835281852080548a019055600980548a0190559554909416808452918152838320858452905290829020549091600080516020611a8783398151915291905190815260200160405180910390a3506001919050565b6000903b1190565b600160a060020a0333166000908152600f6020526040812054819061182b9085611515565b33600160a060020a038181166000908152600f602052604080822094909455908816808252908390208054880190558793509163c0ee0b8a919087908790518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156118d45780820151838201526020016118bc565b50505050905090810190601f1680156119015780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b151561192157600080fd5b6102c65a03f1151561193257600080fd5b50505061193e856106ba565b84600160a060020a031633600160a060020a0316600080516020611a678339815191528660405190815260200160405180910390a3506001949350505050565b600160a060020a0333166000908152600f60205260408120546119a19083611515565b600160a060020a033381166000908152600f6020526040808220939093559085168152208054830190556119d4836106ba565b82600160a060020a031633600160a060020a0316600080516020611a678339815191528460405190815260200160405180910390a350600192915050565b81548183558181151161136957600083815260209020611369918101908301611a48565b60206040519081016040526000815290565b6107f591905b80821115611a625760008155600101611a4e565b50905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a723058201c4f0e52eceaabb53c99c78cb2184cb77dd0ce211121580defee811dfd17c8100029ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x6060604052600436106101715763ffffffff60e060020a60003504166306fdde038114610286578063095ea7b3146103105780630d2946291461033457806310d86b1f1461034757806312e905b01461036657806318160ddd1461039557806323b872dd146103ba578063309593ee146103e2578063313ce567146103f557806333eeb1471461041e5780634d12b69514610445578063506353941461046457806350ffbe81146104775780635d94f108146104965780635ffbba3f146104b857806360e85674146104cb57806370a08231146104ea578063808e0ae214610509578063927bcac31461051c57806395d89b411461052f578063968ed60014610542578063a7daf6dd14610555578063a9059cbb14610574578063a9ac4c5f14610596578063be45fd62146105a9578063c0ee0b8a146105d8578063c0f70d5a1461063d578063dd62ed3e14610650578063df8de3e714610675578063f3d4b94214610694578063f851a440146106a7575b60078054349081019091557366ae070a8501e816ca95ac99c4e15c7e132fd289906000908190116101a157600080fd5b81600160a060020a031633600160a060020a0316141515156101c257600080fd5b6007546107d090670de0b6b3a76400009004106101de57600080fd5b6101e7336106ba565b5060028054600160a060020a039081166000908152600f602052604080822080546305f5e10034049081900390915533841680845292829020805482019055935491929190911690600080516020611a678339815191529084905190815260200160405180910390a3600160a060020a0382163480156108fc0290604051600060405180830381858888f19350505050151561028257600080fd5b5050005b341561029157600080fd5b61029961074f565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102d55780820151838201526020016102bd565b50505050905090810190601f1680156103025780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561031b57600080fd5b610332600160a060020a03600435166024356107f8565b005b341561033f57600080fd5b61033261084a565b341561035257600080fd5b610332600160a060020a0360043516610c8e565b341561037157600080fd5b610379610cde565b604051600160a060020a03909116815260200160405180910390f35b34156103a057600080fd5b6103a8610ced565b60405190815260200160405180910390f35b34156103c557600080fd5b610332600160a060020a0360043581169060243516604435610cf3565b34156103ed57600080fd5b610332610e56565b341561040057600080fd5b610408610e7d565b60405160ff909116815260200160405180910390f35b341561042957600080fd5b610431610e86565b604051901515815260200160405180910390f35b341561045057600080fd5b610332600160a060020a0360043516610e8f565b341561046f57600080fd5b610332610ecb565b341561048257600080fd5b610431600160a060020a0360043516610fc4565b34156104a157600080fd5b610332600160a060020a0360043516602435610fe6565b34156104c357600080fd5b6103a861102e565b34156104d657600080fd5b610431600160a060020a0360043516611034565b34156104f557600080fd5b6103a8600160a060020a0360043516611053565b341561051457600080fd5b61033261106e565b341561052757600080fd5b6103326110b5565b341561053a57600080fd5b6102996110f0565b341561054d57600080fd5b6103a8611163565b341561056057600080fd5b610431600160a060020a0360043516611169565b341561057f57600080fd5b610431600160a060020a03600435166024356111f4565b34156105a157600080fd5b6103a861128c565b34156105b457600080fd5b61043160048035600160a060020a03169060248035916044359182019101356112a8565b34156105e357600080fd5b61033260048035600160a060020a03169060248035919060649060443590810190830135806020601f8201819004810201604051908101604052818152929190602084018383808284375094965061136995505050505050565b341561064857600080fd5b6103a861136e565b341561065b57600080fd5b6103a8600160a060020a0360043581169060243516611374565b341561068057600080fd5b610332600160a060020a03600435166113a1565b341561069f57600080fd5b6103326114dc565b34156106b257600080fd5b610379611506565b600160a060020a03811660009081526013602052604090205460ff16151561074c5760048054600181016106ee8382611a12565b506000918252602080832091909101805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038516908117909155825260118152604080832064e8d4a51000905560139091529020805460ff191660011790555b50565b610757611a36565b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107ed5780601f106107c2576101008083540402835291602001916107ed565b820191906000526020600020905b8154815290600101906020018083116107d057829003601f168201915b505050505090505b90565b600160a060020a0333811660008181526016602090815260408083209487168084529490915290819020849055600080516020611a878339815191529084905190815260200160405180910390a35050565b600e5460009060ff1615156109005760065442101561086857600080fd5b6108706114f7565b600254600160a060020a03166000908152600f6020526040902054651b48eb57e000901161089d57600080fd5b62278d004201600655600254600160a060020a03166000908152600f602052604090208054600a651b48eb57dfff1990910104600702600b5560095490546108ed9066016bcc41e9000090611515565b01600a556000600c819055600d5561074c565b50600c545b60045481101561074c5764e8d4a510006011600060048481548110151561092857fe5b6000918252602080832090910154600160a060020a031683528201929092526040019020556203d0905a101561096257600c81905561074c565b61098e60048281548110151561097457fe5b600091825260209091200154600160a060020a0316611169565b15156109dc576000601060006004848154811015156109a957fe5b6000918252602080832090910154600160a060020a031683528201929092526040019020556109d781611522565b610c86565b6000601060006004848154811015156109f157fe5b6000918252602080832090910154600160a060020a039081168452838201949094526040928301822094909455600a54600b54600254909416825260169094529081206004805491929186908110610a4557fe5b6000918252602080832090910154600160a060020a03168352820192909252604001812054600480549192600f9290919087908110610a8057fe5b6000918252602080832090910154600160a060020a031683528201929092526040019020540102811515610ab057fe5b600d80549290910490910190556004805482908110610acb57fe5b6000918252602080832090910154600254600a54600b54600160a060020a03928316808752601690955260408620600480549490951696600080516020611a678339815191529593949293919290919089908110610b2557fe5b6000918252602080832090910154600160a060020a03168352820192909252604001812054600480549192600f929091908a908110610b6057fe5b6000918252602080832090910154600160a060020a031683528201929092526040019020540102811515610b9057fe5b0460405190815260200160405180910390a3600a54600b54600254600160a060020a031660009081526016602052604081206004805491929186908110610bd357fe5b6000918252602080832090910154600160a060020a03168352820192909252604001812054600480549192600f9290919087908110610c0e57fe5b6000918252602080832090910154600160a060020a031683528201929092526040019020540102811515610c3e57fe5b04600f6000600484815481101515610c5257fe5b6000918252602080832090910154600160a060020a03168352820192909252604001902080549091019055610c8681611522565b600101610905565b60035433600160a060020a03908116911614610ca957600080fd5b600160a060020a03166000908152601560209081526040808320805460ff191660011790556012909152902061070842019055565b600254600160a060020a031681565b60085490565b600e5460009060ff1615610d0657600080fd5b50600160a060020a03808416600081815260166020908152604080832087861684529091529020546002549092161415610d9857600160a060020a038316600090815260116020526040902054610d5d9083611515565b600160a060020a038416600090815260116020908152604080832093909355601290522054429010610d8e57600080fd5b6009805483900390555b600160a060020a038084166000908152600f602052604080822080548601905591861681522054610dc99083611515565b600160a060020a0385166000908152600f6020526040902055610dec8183611515565b600160a060020a03808616600090815260166020908152604080832093881683529290522055610e1b836106ba565b82600160a060020a031684600160a060020a0316600080516020611a678339815191528460405190815260200160405180910390a350505050565b60035433600160a060020a03908116911614610e7157600080fd5b600e805460ff19169055565b60055460ff1690565b600e5460ff1681565b60035433600160a060020a03908116911614610eaa57600080fd5b600160a060020a03166000908152601560205260409020805460ff19169055565b6001670de0b6b3a7640000600160a060020a033316310410158015610f095750600160a060020a03331660009081526014602052604090205460ff16155b1515610f1457600080fd5b33600160a060020a0381811660008181526014602090815260408083208054600160ff1990911617905560025490941682526016815283822092825291909152208054630bebc200908101909155600980549091019055610f74906106ba565b600254600160a060020a03908116600081815260166020908152604080832033909516808452949091529081902054600080516020611a87833981519152915190815260200160405180910390a3565b600160a060020a03811660009081526015602052604090205460ff165b919050565b60035433600160a060020a0390811691161461100157600080fd5b600160a060020a03821660009081526012602052604090206107084201905561102a8282611594565b5050565b60065481565b600160a060020a03166000908152601260205260409020546000191490565b600160a060020a03166000908152600f602052604090205490565b33600160a060020a03811660009081526015602052604090205460ff161561109557600080fd5b50600160a060020a03331660009081526012602052604090206000199055565b60035460009033600160a060020a039081169116146110d357600080fd5b50600654600019908114156110eb574260065561074c565b600655565b6110f8611a36565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107ed5780601f106107c2576101008083540402835291602001916107ed565b60075481565b600160a060020a038116600090815260106020526040812054151561119057506000610fe1565b600160a060020a0380831660008181526010602090815260408083205460025490951683526016825280832093835292815282822054600f9091529190205460149291018115156111dd57fe5b0411156111ec57506000610fe1565b506001919050565b60006111fe611a36565b600e54610100900460ff161561121357600080fd5b600e805461ff001916610100179081905560ff161561123157600080fd5b600254600160a060020a03858116911614156112575761125083611709565b915061127a565b611260846117fe565b1561127057611250848483611806565b611250848461197e565b50600e805461ff001916905592915050565b600160a060020a03331660009081526011602052604090205490565b600e54600090610100900460ff16156112c057600080fd5b600e805461ff001916610100179081905560ff16156112de57600080fd5b600254600160a060020a0386811691161415611304576112fd84611709565b9050611356565b61130d856117fe565b1561134c576112fd858585858080601f016020809104026020016040519081016040528181529291906020840183838082843750611806945050505050565b6112fd858561197e565b600e805461ff0019169055949350505050565b505050565b60095481565b600160a060020a038083166000908152601660209081526040808320938516835292905220545b92915050565b600354600090819033600160a060020a039081169116146113c157600080fd5b600254600160a060020a03848116911614156113dc57600080fd5b600254839250600160a060020a03808416916370a08231911660006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561143c57600080fd5b6102c65a03f1151561144d57600080fd5b5050506040518051600354909250600160a060020a03808516925063a9059cbb91168360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b15156114bc57600080fd5b6102c65a03f115156114cd57600080fd5b50505060405180515050505050565b60035433600160a060020a039081169116146114f757600080fd5b600e805460ff19166001179055565b600354600160a060020a031681565b8082038281111561139b57fe5b6004546000190181141561074c57611538610e71565b50600b54600f6020527f5a6c46c047a5911ee4e7d3049b59d0ad4c21fdc222c45f43d7247494d2906b40805460149092049182019055600d54600254600160a060020a0316600090815260409020805491909103919091039055565b600254600160a060020a039081166000908152601660209081526040808320938616835292905220548111156116665760028054600160a060020a039081166000908152601660208181526040808420888616808652908352818520805460098054918b03909101905554601084528286208054918a03909101905586548616855283835281852081865283528185208890559554909416808452918152838320858452905290829020549091600080516020611a8783398151915291905190815260200160405180910390a361102a565b60028054600160a060020a039081166000908152601660208181526040808420888616808652908352818520805460098054918b9003909103905554601084528286208054918a9003909101905586548616855283835281852081865283528185208890559554909416808452918152838320858452905290829020549091600080516020611a8783398151915291905190815260200160405180910390a35050565b600160a060020a0333166000908152600f602052604081205461172c9083611515565b600160a060020a033381166000818152600f6020526040808220949094556002805484168252908490208054870190555490911691600080516020611a678339815191529085905190815260200160405180910390a360028054600160a060020a03908116600090815260166020818152604080842033861680865290835281852080548a019055600980548a0190559554909416808452918152838320858452905290829020549091600080516020611a8783398151915291905190815260200160405180910390a3506001919050565b6000903b1190565b600160a060020a0333166000908152600f6020526040812054819061182b9085611515565b33600160a060020a038181166000908152600f602052604080822094909455908816808252908390208054880190558793509163c0ee0b8a919087908790518463ffffffff1660e060020a0281526004018084600160a060020a0316600160a060020a0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156118d45780820151838201526020016118bc565b50505050905090810190601f1680156119015780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b151561192157600080fd5b6102c65a03f1151561193257600080fd5b50505061193e856106ba565b84600160a060020a031633600160a060020a0316600080516020611a678339815191528660405190815260200160405180910390a3506001949350505050565b600160a060020a0333166000908152600f60205260408120546119a19083611515565b600160a060020a033381166000908152600f6020526040808220939093559085168152208054830190556119d4836106ba565b82600160a060020a031633600160a060020a0316600080516020611a678339815191528460405190815260200160405180910390a350600192915050565b81548183558181151161136957600083815260209020611369918101908301611a48565b60206040519081016040526000815290565b6107f591905b80821115611a625760008155600101611a4e565b50905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a723058201c4f0e52eceaabb53c99c78cb2184cb77dd0ce211121580defee811dfd17c8100029
Swarm Source
bzzr://1c4f0e52eceaabb53c99c78cb2184cb77dd0ce211121580defee811dfd17c810
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)