Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 2,171 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Purchase Tokens | 4705116 | 3009 days ago | IN | 0.001 ETH | 0.00142772 | ||||
| Purchase Tokens | 4704933 | 3009 days ago | IN | 0.001 ETH | 0.00142772 | ||||
| Transfer | 4659853 | 3016 days ago | IN | 0.03 ETH | 0.03826063 | ||||
| Withdraw Remaind... | 4633509 | 3021 days ago | IN | 0 ETH | 0.00000256 | ||||
| Purchase Tokens | 4534067 | 3037 days ago | IN | 0.02 ETH | 0.00122637 | ||||
| Purchase Tokens | 4534063 | 3037 days ago | IN | 0.09 ETH | 0.00154137 | ||||
| Purchase Tokens | 4534062 | 3037 days ago | IN | 1 ETH | 0.00154137 | ||||
| Purchase Tokens | 4534057 | 3037 days ago | IN | 0.2 ETH | 0.00154137 | ||||
| Purchase Tokens | 4534056 | 3037 days ago | IN | 0.05 ETH | 0.00007339 | ||||
| Purchase Tokens | 4534047 | 3037 days ago | IN | 0.23101064 ETH | 0.00045626 | ||||
| Purchase Tokens | 4534014 | 3037 days ago | IN | 0.95 ETH | 0.00122637 | ||||
| Purchase Tokens | 4534014 | 3037 days ago | IN | 3.333 ETH | 0.00122637 | ||||
| Purchase Tokens | 4533986 | 3037 days ago | IN | 0.00862601 ETH | 0.00058399 | ||||
| Purchase Tokens | 4533976 | 3037 days ago | IN | 1 ETH | 0.00154137 | ||||
| Purchase Tokens | 4533975 | 3037 days ago | IN | 0.1 ETH | 0.0012698 | ||||
| Purchase Tokens | 4533968 | 3037 days ago | IN | 2 ETH | 0.00146798 | ||||
| Purchase Tokens | 4533953 | 3037 days ago | IN | 0.94237061 ETH | 0.00058399 | ||||
| Purchase Tokens | 4533930 | 3037 days ago | IN | 1.88 ETH | 0.00146798 | ||||
| Transfer | 4533848 | 3037 days ago | IN | 0.02663151 ETH | 0.0015 | ||||
| Purchase Tokens | 4533834 | 3037 days ago | IN | 0.95 ETH | 0.00190837 | ||||
| Purchase Tokens | 4533827 | 3037 days ago | IN | 0.51216996 ETH | 0.00154137 | ||||
| Purchase Tokens | 4533809 | 3037 days ago | IN | 0.08 ETH | 0.00154137 | ||||
| Purchase Tokens | 4533797 | 3037 days ago | IN | 0.51307298 ETH | 0.000462 | ||||
| Transfer | 4533792 | 3037 days ago | IN | 0.1 ETH | 0.002 | ||||
| Purchase Tokens | 4533769 | 3037 days ago | IN | 5.55 ETH | 0.00138261 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 4534067 | 3037 days ago | 0.01999999 ETH | ||||
| Transfer | 4534067 | 3037 days ago | 0 ETH | ||||
| Transfer | 4534063 | 3037 days ago | 0.08999999 ETH | ||||
| Transfer | 4534063 | 3037 days ago | 0 ETH | ||||
| Transfer | 4534062 | 3037 days ago | 0.99999999 ETH | ||||
| Transfer | 4534062 | 3037 days ago | 0 ETH | ||||
| Transfer | 4534057 | 3037 days ago | 0.19999999 ETH | ||||
| Transfer | 4534057 | 3037 days ago | 200 wei | ||||
| Transfer | 4534056 | 3037 days ago | 0.04999999 ETH | ||||
| Transfer | 4534056 | 3037 days ago | 0 ETH | ||||
| Transfer | 4534014 | 3037 days ago | 0.94999999 ETH | ||||
| Transfer | 4534014 | 3037 days ago | 0 ETH | ||||
| Transfer | 4534014 | 3037 days ago | 3.33299999 ETH | ||||
| Transfer | 4534014 | 3037 days ago | 0 ETH | ||||
| Transfer | 4533986 | 3037 days ago | 0.008626 ETH | ||||
| Transfer | 4533986 | 3037 days ago | 0 ETH | ||||
| Transfer | 4533976 | 3037 days ago | 0.99999999 ETH | ||||
| Transfer | 4533976 | 3037 days ago | 0 ETH | ||||
| Transfer | 4533975 | 3037 days ago | 0.09999999 ETH | ||||
| Transfer | 4533975 | 3037 days ago | 100 wei | ||||
| Transfer | 4533968 | 3037 days ago | 1.99999999 ETH | ||||
| Transfer | 4533968 | 3037 days ago | 0 ETH | ||||
| Transfer | 4533953 | 3037 days ago | 0.94237061 ETH | ||||
| Transfer | 4533953 | 3037 days ago | 0 ETH | ||||
| Transfer | 4533930 | 3037 days ago | 1.87999999 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Sale
Compiler Version
v0.4.11+commit.68ef5810
Optimization Enabled:
Yes with 0 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2017-10-23
*/
contract Token {
/* This is a slight change to the ERC20 base standard.
function totalSupply() constant returns (uint256 supply);
is replaced with:
uint256 public totalSupply;
This automatically creates a getter function for the totalSupply.
This is moved to the base contract since public getter functions are not
currently recognised as an implementation of the matching abstract
function by the compiler.
*/
/// total amount of tokens
uint256 public totalSupply;
/// @param _owner The address from which the balance will be retrieved
/// @return The balance
function balanceOf(address _owner) constant returns (uint256 balance);
/// @notice send `_value` token to `_to` from `msg.sender`
/// @param _to The address of the recipient
/// @param _value The amount of token to be transferred
/// @return Whether the transfer was successful or not
function transfer(address _to, uint256 _value) returns (bool success);
/// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
/// @param _from The address of the sender
/// @param _to The address of the recipient
/// @param _value The amount of token to be transferred
/// @return Whether the transfer was successful or not
function transferFrom(address _from, address _to, uint256 _value) returns (bool success);
/// @notice `msg.sender` approves `_spender` to spend `_value` tokens
/// @param _spender The address of the account able to transfer the tokens
/// @param _value The amount of tokens to be approved for transfer
/// @return Whether the approval was successful or not
function approve(address _spender, uint256 _value) returns (bool success);
/// @param _owner The address of the account owning tokens
/// @param _spender The address of the account able to transfer the tokens
/// @return Amount of remaining tokens allowed to spent
function allowance(address _owner, address _spender) constant returns (uint256 remaining);
event Transfer(address indexed _from, address indexed _to, uint256 _value);
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}
contract StandardToken is Token {
function transfer(address _to, uint256 _value) returns (bool success) {
//Default assumes totalSupply can't be over max (2^256 - 1).
//If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
//Replace the if with this one instead.
//require(balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]);
require(balances[msg.sender] >= _value);
balances[msg.sender] -= _value;
balances[_to] += _value;
Transfer(msg.sender, _to, _value);
return true;
}
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {
//same as above. Replace this line with the following if you want to protect against wrapping uints.
//require(balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]);
require(balances[_from] >= _value && allowed[_from][msg.sender] >= _value);
balances[_to] += _value;
balances[_from] -= _value;
allowed[_from][msg.sender] -= _value;
Transfer(_from, _to, _value);
return true;
}
function balanceOf(address _owner) constant returns (uint256 balance) {
return balances[_owner];
}
function approve(address _spender, uint256 _value) returns (bool success) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
mapping (address => uint256) balances;
mapping (address => mapping (address => uint256)) allowed;
}
contract HumanStandardToken is StandardToken {
/* Public variables of the token */
/*
NOTE:
The following variables are OPTIONAL vanities. One does not have to include them.
They allow one to customise the token contract & in no way influences the core functionality.
Some wallets/interfaces might not even bother to look at this information.
*/
string public name; //fancy name: eg Simon Bucks
uint8 public decimals; //How many decimals to show. ie. There could 1000 base units with 3 decimals. Meaning 0.980 SBX = 980 base units. It's like comparing 1 wei to 1 ether.
string public symbol; //An identifier: eg SBX
string public version = 'H0.1'; //human 0.1 standard. Just an arbitrary versioning scheme.
function HumanStandardToken(
uint256 _initialAmount,
string _tokenName,
uint8 _decimalUnits,
string _tokenSymbol
) {
balances[msg.sender] = _initialAmount; // Give the creator all initial tokens
totalSupply = _initialAmount; // Update total supply
name = _tokenName; // Set the name for display purposes
decimals = _decimalUnits; // Amount of decimals for display purposes
symbol = _tokenSymbol; // Set the symbol for display purposes
}
/* Approves and then calls the receiving contract */
function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
//call the receiveApproval function on the contract you want to be notified. This crafts the function signature manually so one doesn't have to include a contract in here just for this.
//receiveApproval(address _from, uint256 _value, address _tokenContract, bytes _extraData)
//it is assumed that when does this that the call *should* succeed, otherwise one would use vanilla approve instead.
require(_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData));
return true;
}
}
contract Disbursement {
/*
* Storage
*/
address public owner;
address public receiver;
uint public disbursementPeriod;
uint public startDate;
uint public withdrawnTokens;
Token public token;
/*
* Modifiers
*/
modifier isOwner() {
if (msg.sender != owner)
// Only owner is allowed to proceed
revert();
_;
}
modifier isReceiver() {
if (msg.sender != receiver)
// Only receiver is allowed to proceed
revert();
_;
}
modifier isSetUp() {
if (address(token) == 0)
// Contract is not set up
revert();
_;
}
/*
* Public functions
*/
/// @dev Constructor function sets contract owner
/// @param _receiver Receiver of vested tokens
/// @param _disbursementPeriod Vesting period in seconds
/// @param _startDate Start date of disbursement period (cliff)
function Disbursement(address _receiver, uint _disbursementPeriod, uint _startDate)
public
{
if (_receiver == 0 || _disbursementPeriod == 0)
// Arguments are null
revert();
owner = msg.sender;
receiver = _receiver;
disbursementPeriod = _disbursementPeriod;
startDate = _startDate;
if (startDate == 0)
startDate = now;
}
/// @dev Setup function sets external contracts' addresses
/// @param _token Token address
function setup(Token _token)
public
isOwner
{
if (address(token) != 0 || address(_token) == 0)
// Setup was executed already or address is null
revert();
token = _token;
}
/// @dev Transfers tokens to a given address
/// @param _to Address of token receiver
/// @param _value Number of tokens to transfer
function withdraw(address _to, uint256 _value)
public
isReceiver
isSetUp
{
uint maxTokens = calcMaxWithdraw();
if (_value > maxTokens)
revert();
withdrawnTokens += _value;
token.transfer(_to, _value);
}
/// @dev Calculates the maximum amount of vested tokens
/// @return Number of vested tokens to withdraw
function calcMaxWithdraw()
public
constant
returns (uint)
{
uint maxTokens = (token.balanceOf(this) + withdrawnTokens) * (now - startDate) / disbursementPeriod;
if (withdrawnTokens >= maxTokens || startDate > now)
return 0;
return maxTokens - withdrawnTokens;
}
}
contract Sale {
/*
* Events
*/
event PurchasedTokens(address indexed purchaser, uint amount);
event TransferredPreBuyersReward(address indexed preBuyer, uint amount);
event TransferredTimelockedTokens(address beneficiary, address disburser, uint amount);
/*
* Storage
*/
address public owner;
address public wallet;
HumanStandardToken public token;
uint public price;
uint public startBlock;
uint public freezeBlock;
uint public endBlock;
uint public totalPreBuyers;
uint public preBuyersDispensedTo = 0;
uint public totalTimelockedBeneficiaries;
uint public timeLockedBeneficiariesDisbursedTo = 0;
bool public emergencyFlag = false;
bool public preSaleTokensDisbursed = false;
bool public timelockedTokensDisbursed = false;
/*
* Modifiers
*/
modifier saleStarted {
require(block.number >= startBlock);
_;
}
modifier saleEnded {
require(block.number > endBlock);
_;
}
modifier saleNotEnded {
require(block.number <= endBlock);
_;
}
modifier onlyOwner {
require(msg.sender == owner);
_;
}
modifier notFrozen {
require(block.number < freezeBlock);
_;
}
modifier setupComplete {
assert(preSaleTokensDisbursed && timelockedTokensDisbursed);
_;
}
modifier notInEmergency {
assert(emergencyFlag == false);
_;
}
/*
* Public functions
*/
/// @dev Sale(): constructor for Sale contract
/// @param _owner the address which owns the sale, can access owner-only functions
/// @param _wallet the sale's beneficiary address
/// @param _tokenSupply the total number of tokens to mint
/// @param _tokenName the token's human-readable name
/// @param _tokenDecimals the number of display decimals in token balances
/// @param _tokenSymbol the token's human-readable asset symbol
/// @param _price price of the token in Wei
/// @param _startBlock the block at which this contract will begin selling its token balance
function Sale(
address _owner,
address _wallet,
uint256 _tokenSupply,
string _tokenName,
uint8 _tokenDecimals,
string _tokenSymbol,
uint _price,
uint _startBlock,
uint _freezeBlock,
uint _totalPreBuyers,
uint _totalTimelockedBeneficiaries,
uint _endBlock
) {
owner = _owner;
wallet = _wallet;
token = new HumanStandardToken(_tokenSupply, _tokenName, _tokenDecimals, _tokenSymbol);
price = _price;
startBlock = _startBlock;
freezeBlock = _freezeBlock;
totalPreBuyers = _totalPreBuyers;
totalTimelockedBeneficiaries = _totalTimelockedBeneficiaries;
endBlock = _endBlock;
token.transfer(this, token.totalSupply());
assert(token.balanceOf(this) == token.totalSupply());
assert(token.balanceOf(this) == _tokenSupply);
}
/// @dev distributePreBuyersRewards(): private utility function called by constructor
/// @param _preBuyers an array of addresses to which awards will be distributed
/// @param _preBuyersTokens an array of integers specifying preBuyers rewards
function distributePreBuyersRewards(
address[] _preBuyers,
uint[] _preBuyersTokens
)
public
onlyOwner
{
assert(!preSaleTokensDisbursed);
for(uint i = 0; i < _preBuyers.length; i++) {
token.transfer(_preBuyers[i], _preBuyersTokens[i]);
preBuyersDispensedTo += 1;
TransferredPreBuyersReward(_preBuyers[i], _preBuyersTokens[i]);
}
if(preBuyersDispensedTo == totalPreBuyers) {
preSaleTokensDisbursed = true;
}
}
/// @dev distributeTimelockedTokens(): private utility function called by constructor
/// @param _beneficiaries an array of addresses specifying disbursement beneficiaries
/// @param _beneficiariesTokens an array of integers specifying disbursement amounts
/// @param _timelocks an array of UNIX timestamps specifying vesting dates
/// @param _periods an array of durations in seconds specifying vesting periods
function distributeTimelockedTokens(
address[] _beneficiaries,
uint[] _beneficiariesTokens,
uint[] _timelocks,
uint[] _periods
)
public
onlyOwner
{
assert(preSaleTokensDisbursed);
assert(!timelockedTokensDisbursed);
for(uint i = 0; i < _beneficiaries.length; i++) {
address beneficiary = _beneficiaries[i];
uint beneficiaryTokens = _beneficiariesTokens[i];
Disbursement disbursement = new Disbursement(
beneficiary,
_periods[i],
_timelocks[i]
);
disbursement.setup(token);
token.transfer(disbursement, beneficiaryTokens);
timeLockedBeneficiariesDisbursedTo += 1;
TransferredTimelockedTokens(beneficiary, disbursement, beneficiaryTokens);
}
if(timeLockedBeneficiariesDisbursedTo == totalTimelockedBeneficiaries) {
timelockedTokensDisbursed = true;
}
}
/// @dev purchaseToken(): function that exchanges ETH for tokens (main sale function)
/// @notice You're about to purchase the equivalent of `msg.value` Wei in tokens
function purchaseTokens()
saleStarted
saleNotEnded
payable
setupComplete
notInEmergency
{
/* Calculate whether any of the msg.value needs to be returned to
the sender. The tokenPurchase is the actual number of tokens which
will be purchased once any excessAmount included in the msg.value
is removed from the purchaseAmount. */
uint excessAmount = msg.value % price;
uint purchaseAmount = msg.value - excessAmount;
uint tokenPurchase = purchaseAmount / price;
// Cannot purchase more tokens than this contract has available to sell
require(tokenPurchase <= token.balanceOf(this));
// Return any excess msg.value
if (excessAmount > 0) {
msg.sender.transfer(excessAmount);
}
// Forward received ether minus any excessAmount to the wallet
wallet.transfer(purchaseAmount);
// Transfer the sum of tokens tokenPurchase to the msg.sender
token.transfer(msg.sender, tokenPurchase);
PurchasedTokens(msg.sender, tokenPurchase);
}
/*
* Owner-only functions
*/
function changeOwner(address _newOwner)
onlyOwner
{
require(_newOwner != 0);
owner = _newOwner;
}
function withdrawRemainder()
onlyOwner
saleEnded
{
uint remainder = token.balanceOf(this);
token.transfer(wallet, remainder);
}
function changePrice(uint _newPrice)
onlyOwner
notFrozen
{
require(_newPrice != 0);
price = _newPrice;
}
function changeWallet(address _wallet)
onlyOwner
notFrozen
{
require(_wallet != 0);
wallet = _wallet;
}
function changeStartBlock(uint _newBlock)
onlyOwner
notFrozen
{
require(_newBlock != 0);
freezeBlock = _newBlock - (startBlock - freezeBlock);
startBlock = _newBlock;
}
function changeEndBlock(uint _newBlock)
onlyOwner
notFrozen
{
require(_newBlock > startBlock);
endBlock = _newBlock;
}
function emergencyToggle()
onlyOwner
{
emergencyFlag = !emergencyFlag;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":false,"inputs":[],"name":"emergencyToggle","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"endBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"preBuyersDispensedTo","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"purchaseTokens","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"totalTimelockedBeneficiaries","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"freezeBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newBlock","type":"uint256"}],"name":"changeStartBlock","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_beneficiaries","type":"address[]"},{"name":"_beneficiariesTokens","type":"uint256[]"},{"name":"_timelocks","type":"uint256[]"},{"name":"_periods","type":"uint256[]"}],"name":"distributeTimelockedTokens","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"timeLockedBeneficiariesDisbursedTo","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalPreBuyers","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"timelockedTokensDisbursed","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newBlock","type":"uint256"}],"name":"changeEndBlock","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"withdrawRemainder","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_preBuyers","type":"address[]"},{"name":"_preBuyersTokens","type":"uint256[]"}],"name":"distributePreBuyersRewards","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_wallet","type":"address"}],"name":"changeWallet","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"emergencyFlag","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"preSaleTokensDisbursed","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[{"name":"_owner","type":"address"},{"name":"_wallet","type":"address"},{"name":"_tokenSupply","type":"uint256"},{"name":"_tokenName","type":"string"},{"name":"_tokenDecimals","type":"uint8"},{"name":"_tokenSymbol","type":"string"},{"name":"_price","type":"uint256"},{"name":"_startBlock","type":"uint256"},{"name":"_freezeBlock","type":"uint256"},{"name":"_totalPreBuyers","type":"uint256"},{"name":"_totalTimelockedBeneficiaries","type":"uint256"},{"name":"_endBlock","type":"uint256"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"PurchasedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"preBuyer","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TransferredPreBuyersReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"beneficiary","type":"address"},{"indexed":false,"name":"disburser","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TransferredTimelockedTokens","type":"event"}]Contract Creation Code
606060405260006008819055600a55600b805462ffffff1916905534156200002357fe5b6040516200241d3803806200241d83398101604090815281516020830151918301516060840151608085015160a086015160c087015160e08801516101008901516101208a01516101408b01516101608c0151999b989997890198969795909601959394929391929091905b60008054600160a060020a03808f16600160a060020a03199283161790925560018054928e169290911691909117905589898989620000cd620004d4565b84815260ff83166040820152608060208083018281528651928401929092528551606084019160a085019190880190808383821562000129575b8051825260208311156200012957601f19909201916020918201910162000107565b505050905090810190601f168015620001565780820380516001836020036101000a031916815260200191505b508381038252845181528451602091820191860190808383821562000198575b8051825260208311156200019857601f19909201916020918201910162000176565b505050905090810190601f168015620001c55780820380516001836020036101000a031916815260200191505b509650505050505050604051809103906000f0801515620001e257fe5b60028054600160a060020a031916600160a060020a039283161790819055600388905560048781556005879055600786905560098590556006849055604080516000602091820181905282517f18160ddd0000000000000000000000000000000000000000000000000000000081529251949095169463a9059cbb94309487946318160ddd94818301949093929183900390910190829087803b15156200028557fe5b6102c65a03f115156200029457fe5b505050604051805190506000604051602001526040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b15156200030f57fe5b6102c65a03f115156200031e57fe5b5050604080516002546000602092830181905283517f18160ddd0000000000000000000000000000000000000000000000000000000081529351600160a060020a0390921694506318160ddd936004808201949392918390030190829087803b15156200038757fe5b6102c65a03f115156200039657fe5b50506040805180516002546000602093840181905284517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a033081166004830152955193965094909116936370a0823193602480830194919391928390030190829087803b15156200040d57fe5b6102c65a03f115156200041c57fe5b5050604051519190911490506200042f57fe5b600254604080516000602091820181905282517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a03308116600483015293518f9594909416936370a082319360248084019491938390030190829087803b15156200049f57fe5b6102c65a03f11515620004ae57fe5b505060405151919091149050620004c157fe5b5b505050505050505050505050620004e5565b604051610b4580620018d883390190565b6113e380620004f56000396000f300606060405236156101215763ffffffff60e060020a600035041662a535988114610123578063083c63231461013557806328c6d8e3146101575780633290ce2914610179578063332b3177146101835780633a157860146101a557806348cd4cb1146101c7578063521eb273146101e95780635437f09814610215578063555c47581461022a5780635a4877c01461032757806366f3a2b8146103495780636d50ef2a1461036b578063822226741461038f5780638b9b1cbd146103a45780638da5cb5b146103b657806394b5255b146103e257806398b9a2dc1461046f578063a035b1fe1461048d578063a2b40d19146104af578063a6f9dae1146104c4578063b4007cda146104e2578063d26dbd2a14610506578063fc0c546a1461052a575bfe5b341561012b57fe5b610133610556565b005b341561013d57fe5b610145610588565b60408051918252519081900360200190f35b341561015f57fe5b61014561058e565b60408051918252519081900360200190f35b610133610594565b005b341561018b57fe5b6101456107cd565b60408051918252519081900360200190f35b34156101ad57fe5b6101456107d3565b60408051918252519081900360200190f35b34156101cf57fe5b6101456107d9565b60408051918252519081900360200190f35b34156101f157fe5b6101f96107df565b60408051600160a060020a039092168252519081900360200190f35b341561021d57fe5b6101336004356107ee565b005b341561023257fe5b610133600480803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750506040805187358901803560208181028481018201909552818452989a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989a99890198929750908201955093508392508501908490808284375094965061084295505050505050565b005b341561032f57fe5b610145610a93565b60408051918252519081900360200190f35b341561035157fe5b610145610a99565b60408051918252519081900360200190f35b341561037357fe5b61037b610a9f565b604080519115158252519081900360200190f35b341561039757fe5b610133600435610aae565b005b34156103ac57fe5b610133610af3565b005b34156103be57fe5b6101f9610c04565b60408051600160a060020a039092168252519081900360200190f35b34156103ea57fe5b610133600480803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750506040805187358901803560208181028481018201909552818452989a998901989297509082019550935083925085019084908082843750949650610c1395505050505050565b005b341561047757fe5b610133600160a060020a0360043516610da0565b005b341561049557fe5b610145610e02565b60408051918252519081900360200190f35b34156104b757fe5b610133600435610e08565b005b34156104cc57fe5b610133600160a060020a0360043516610e4b565b005b34156104ea57fe5b61037b610e9d565b604080519115158252519081900360200190f35b341561050e57fe5b61037b610ea6565b604080519115158252519081900360200190f35b341561053257fe5b6101f9610eb4565b60408051600160a060020a039092168252519081900360200190f35b60005433600160a060020a039081169116146105725760006000fd5b600b805460ff19811660ff909116151790555b5b565b60065481565b60085481565b60006000600060045443101515156105ac5760006000fd5b6006544311156105bc5760006000fd5b600b54610100900460ff1680156105db5750600b5462010000900460ff165b15156105e357fe5b600b5460ff16156105f057fe5b600354348115156105fd57fe5b06925082340391506003548281151561061257fe5b049050600260009054906101000a9004600160a060020a0316600160a060020a03166370a08231306000604051602001526040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b151561068a57fe5b6102c65a03f1151561069857fe5b50506040515182111590506106ad5760006000fd5b60008311156106e357604051600160a060020a0333169084156108fc029085906000818181858888f1935050505015156106e357fe5b5b600154604051600160a060020a039091169083156108fc029084906000818181858888f19350505050151561071557fe5b6002546040805160006020918201819052825160e060020a63a9059cbb028152600160a060020a033381166004830152602482018790529351939094169363a9059cbb936044808301949391928390030190829087803b151561077457fe5b6102c65a03f1151561078257fe5b5050604080518381529051600160a060020a03331692507ff9c447a9cff6748e98623cddf46579164dc4c2af6253de5278893e86592773649181900360200190a25b5b5b5b5b505050565b60095481565b60055481565b60045481565b600154600160a060020a031681565b60005433600160a060020a0390811691161461080a5760006000fd5b60055443106108195760006000fd5b8015156108265760006000fd5b600554600454038103600581905550806004819055505b5b5b50565b6000805481908190819033600160a060020a039081169116146108655760006000fd5b600b54610100900460ff16151561087857fe5b600b5462010000900460ff161561088b57fe5b600093505b8751841015610a695787848151811015156108a757fe5b90602001906020020151925086848151811015156108c157fe5b9060200190602002015191508285858151811015156108dc57fe5b9060200190602002015187868151811015156108f457fe5b90602001906020020151610906610ec3565b600160a060020a03909316835260208301919091526040808301919091525190819003606001906000f080151561093957fe5b6002546040805160e060020a6366d38203028152600160a060020a0392831660048201529051929350908316916366d382039160248082019260009290919082900301818387803b151561098957fe5b6102c65a03f1151561099757fe5b50506002546040805160006020918201819052825160e060020a63a9059cbb028152600160a060020a03878116600483015260248201899052935193909416945063a9059cbb9360448082019492918390030190829087803b15156109f857fe5b6102c65a03f11515610a0657fe5b505060408051600a80546001019055600160a060020a0380871682528416602082015280820185905290517f659bd17426525d271e76e8b662badf9e68de74efbdb62927843499ecec17c92492509081900360600190a15b600190930192610890565b600954600a541415610a8757600b805462ff00001916620100001790555b5b5b5050505050505050565b600a5481565b60075481565b600b5462010000900460ff1681565b60005433600160a060020a03908116911614610aca5760006000fd5b6005544310610ad95760006000fd5b6004548111610ae85760006000fd5b60068190555b5b5b50565b6000805433600160a060020a03908116911614610b105760006000fd5b6006544311610b1f5760006000fd5b6002546040805160006020918201819052825160e060020a6370a08231028152600160a060020a033081166004830152935193909416936370a08231936024808301949391928390030190829087803b1515610b7757fe5b6102c65a03f11515610b8557fe5b505060408051805160025460015460006020948501819052855160e060020a63a9059cbb028152600160a060020a0392831660048201526024810185905295519397509116945063a9059cbb936044808201949392918390030190829087803b1515610bed57fe5b6102c65a03f11515610bfb57fe5b5050505b5b5b50565b600054600160a060020a031681565b6000805433600160a060020a03908116911614610c305760006000fd5b600b54610100900460ff1615610c4257fe5b5060005b8251811015610d7d576002548351600160a060020a039091169063a9059cbb90859084908110610c7257fe5b906020019060200201518484815181101515610c8a57fe5b906020019060200201516000604051602001526040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b1515610ceb57fe5b6102c65a03f11515610cf957fe5b5050600880546001019055508251839082908110610d1357fe5b90602001906020020151600160a060020a03167fc8cd09ae0c3d03fa0d2a7fac69f32a4f2957ef01cf0c00cc96a7cb7b2d6622058383815181101515610d5557fe5b906020019060200201516040518082815260200191505060405180910390a25b600101610c46565b60075460085414156107c457600b805461ff0019166101001790555b5b5b505050565b60005433600160a060020a03908116911614610dbc5760006000fd5b6005544310610dcb5760006000fd5b600160a060020a0381161515610de15760006000fd5b60018054600160a060020a031916600160a060020a0383161790555b5b5b50565b60035481565b60005433600160a060020a03908116911614610e245760006000fd5b6005544310610e335760006000fd5b801515610e405760006000fd5b60038190555b5b5b50565b60005433600160a060020a03908116911614610e675760006000fd5b600160a060020a0381161515610e7d5760006000fd5b60008054600160a060020a031916600160a060020a0383161790555b5b50565b600b5460ff1681565b600b54610100900460ff1681565b600254600160a060020a031681565b6040516104e480610ed48339019056006060604052341561000c57fe5b6040516060806104e48339810160409081528151602083015191909201515b600160a060020a038316158061003f575081155b1561004a5760006000fd5b60008054600160a060020a03338116600160a060020a03199283161790925560018054928616929091169190911790556002829055600381905580151561009057426003555b5b5050505b610440806100a46000396000f3006060604052361561007d5763ffffffff60e060020a6000350416630905aa5c811461007f5780630b97bc86146100a15780634bc9fdc2146100c357806366d38203146100e55780638da5cb5b14610103578063e47a6a9f1461012f578063f3fef3a314610151578063f7260d3e14610172578063fc0c546a1461019e575bfe5b341561008757fe5b61008f6101ca565b60408051918252519081900360200190f35b34156100a957fe5b61008f6101d0565b60408051918252519081900360200190f35b34156100cb57fe5b61008f6101d6565b60408051918252519081900360200190f35b34156100ed57fe5b610101600160a060020a03600435166102ac565b005b341561010b57fe5b610113610313565b60408051600160a060020a039092168252519081900360200190f35b341561013757fe5b61008f610322565b60408051918252519081900360200190f35b341561015957fe5b610101600160a060020a0360043516602435610328565b005b341561017a57fe5b6101136103f6565b60408051600160a060020a039092168252519081900360200190f35b34156101a657fe5b610113610405565b60408051600160a060020a039092168252519081900360200190f35b60045481565b60035481565b600060006002546003544203600454600560009054906101000a9004600160a060020a0316600160a060020a03166370a08231306000604051602001526040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b151561025a57fe5b6102c65a03f1151561026857fe5b50505060405180519050010281151561027d57fe5b04905080600454101580610292575042600354115b156102a057600091506102a8565b600454810391505b5090565b60005433600160a060020a039081169116146102c85760006000fd5b600554600160a060020a03161515806102e85750600160a060020a038116155b156102f35760006000fd5b60058054600160a060020a031916600160a060020a0383161790555b5b50565b600054600160a060020a031681565b60025481565b60015460009033600160a060020a039081169116146103475760006000fd5b600554600160a060020a0316151561035f5760006000fd5b6103676101d6565b9050808211156103775760006000fd5b60048054830181556005546040805160006020918201819052825160e060020a63a9059cbb028152600160a060020a0389811696820196909652602481018890529251949093169363a9059cbb936044808501948390030190829087803b15156103dd57fe5b6102c65a03f115156103eb57fe5b5050505b5b5b505050565b600154600160a060020a031681565b600554600160a060020a0316815600a165627a7a7230582081615f097f91b4f40bf6d03bcaa0e66a5cd22f73aef98f712aab6a85cbef54c90029a165627a7a72305820463d814488ba4eeda124d6ad84b0351931d4e7c20cd84324a798b89d22c4c198002960a0604052600460608190527f48302e3100000000000000000000000000000000000000000000000000000000608090815261003e91600691906100d7565b50341561004757fe5b604051610b45380380610b45833981016040908152815160208301519183015160608401519193928301929091015b600160a060020a033316600090815260016020908152604082208690559085905583516100a991600391908601906100d7565b506004805460ff191660ff841617905580516100cc9060059060208401906100d7565b505b50505050610177565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061011857805160ff1916838001178555610145565b82800160010185558215610145579182015b8281111561014557825182559160200191906001019061012a565b5b50610152929150610156565b5090565b61017491905b80821115610152576000815560010161015c565b5090565b90565b6109bf806101866000396000f300606060405236156100935763ffffffff60e060020a60003504166306fdde038114610095578063095ea7b31461012557806318160ddd1461015857806323b872dd1461017a578063313ce567146101b357806354fd4d50146101d957806370a082311461026957806395d89b4114610297578063a9059cbb14610327578063cae9ca511461035a578063dd62ed3e146103d1575bfe5b341561009d57fe5b6100a5610405565b6040805160208082528351818301528351919283929083019185019080838382156100eb575b8051825260208311156100eb57601f1990920191602091820191016100cb565b505050905090810190601f1680156101175780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561012d57fe5b610144600160a060020a0360043516602435610493565b604080519115158252519081900360200190f35b341561016057fe5b6101686104ec565b60408051918252519081900360200190f35b341561018257fe5b610144600160a060020a03600435811690602435166044356104f2565b604080519115158252519081900360200190f35b34156101bb57fe5b6101c36105c8565b6040805160ff9092168252519081900360200190f35b34156101e157fe5b6100a56105d1565b6040805160208082528351818301528351919283929083019185019080838382156100eb575b8051825260208311156100eb57601f1990920191602091820191016100cb565b505050905090810190601f1680156101175780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561027157fe5b610168600160a060020a036004351661065f565b60408051918252519081900360200190f35b341561029f57fe5b6100a561067e565b6040805160208082528351818301528351919283929083019185019080838382156100eb575b8051825260208311156100eb57601f1990920191602091820191016100cb565b505050905090810190601f1680156101175780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561032f57fe5b610144600160a060020a036004351660243561070c565b604080519115158252519081900360200190f35b341561036257fe5b604080516020600460443581810135601f8101849004840285018401909552848452610144948235600160a060020a031694602480359560649492939190920191819084018382808284375094965061079295505050505050565b604080519115158252519081900360200190f35b34156103d957fe5b610168600160a060020a0360043581169060243516610926565b60408051918252519081900360200190f35b6003805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561048b5780601f106104605761010080835404028352916020019161048b565b820191906000526020600020905b81548152906001019060200180831161046e57829003601f168201915b505050505081565b600160a060020a0333811660008181526002602090815260408083209487168084529482528083208690558051868152905192949392600080516020610974833981519152929181900390910190a35060015b92915050565b60005481565b600160a060020a0383166000908152600160205260408120548290108015906105425750600160a060020a0380851660009081526002602090815260408083203390941683529290522054829010155b151561054e5760006000fd5b600160a060020a03808416600081815260016020908152604080832080548801905588851680845281842080548990039055600283528184203390961684529482529182902080548790039055815186815291519293926000805160206109548339815191529281900390910190a35060015b9392505050565b60045460ff1681565b6006805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561048b5780601f106104605761010080835404028352916020019161048b565b820191906000526020600020905b81548152906001019060200180831161046e57829003601f168201915b505050505081565b600160a060020a0381166000908152600160205260409020545b919050565b6005805460408051602060026001851615610100026000190190941693909304601f8101849004840282018401909252818152929183018282801561048b5780601f106104605761010080835404028352916020019161048b565b820191906000526020600020905b81548152906001019060200180831161046e57829003601f168201915b505050505081565b600160a060020a033316600090815260016020526040812054829010156107335760006000fd5b600160a060020a0333811660008181526001602090815260408083208054889003905593871680835291849020805487019055835186815293519193600080516020610954833981519152929081900390910190a35060015b92915050565b600160a060020a0333811660008181526002602090815260408083209488168084529482528083208790558051878152905192949392600080516020610974833981519152929181900390910190a383600160a060020a031660405180807f72656365697665417070726f76616c28616464726573732c75696e743235362c8152602001609060020a6d616464726573732c62797465732902815250602e019050604051809103902060e060020a9004338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a031681526020018280519060200190808383600083146108c6575b8051825260208311156108c657601f1990920191602091820191016108a6565b505050905090810190601f1680156108f25780820380516001836020036101000a031916815260200191505b5094505050505060006040518083038160008761646e5a03f192505050151561091b5760006000fd5b5060015b9392505050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b929150505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925a165627a7a72305820db88378a43e571bfa385023c702fe1368408e2baddf571c5548cf1df67238d62002900000000000000000000000073847780fe9605ae8efcad98275175c19b1f37800000000000000000000000001253385b0fc7e022df906aeec4a8270cdc8ea6f900000000000000000000000000000000000000000000001043561a88293000000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000d9e6577a39555000000000000000000000000000000000000000000000000000000000043f441000000000000000000000000000000000000000000000000000000000043f2880000000000000000000000000000000000000000000000000000000000000073000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000452f41000000000000000000000000000000000000000000000000000000000000000a4752494420546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044752494400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x606060405236156101215763ffffffff60e060020a600035041662a535988114610123578063083c63231461013557806328c6d8e3146101575780633290ce2914610179578063332b3177146101835780633a157860146101a557806348cd4cb1146101c7578063521eb273146101e95780635437f09814610215578063555c47581461022a5780635a4877c01461032757806366f3a2b8146103495780636d50ef2a1461036b578063822226741461038f5780638b9b1cbd146103a45780638da5cb5b146103b657806394b5255b146103e257806398b9a2dc1461046f578063a035b1fe1461048d578063a2b40d19146104af578063a6f9dae1146104c4578063b4007cda146104e2578063d26dbd2a14610506578063fc0c546a1461052a575bfe5b341561012b57fe5b610133610556565b005b341561013d57fe5b610145610588565b60408051918252519081900360200190f35b341561015f57fe5b61014561058e565b60408051918252519081900360200190f35b610133610594565b005b341561018b57fe5b6101456107cd565b60408051918252519081900360200190f35b34156101ad57fe5b6101456107d3565b60408051918252519081900360200190f35b34156101cf57fe5b6101456107d9565b60408051918252519081900360200190f35b34156101f157fe5b6101f96107df565b60408051600160a060020a039092168252519081900360200190f35b341561021d57fe5b6101336004356107ee565b005b341561023257fe5b610133600480803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750506040805187358901803560208181028481018201909552818452989a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989a99890198929750908201955093508392508501908490808284375094965061084295505050505050565b005b341561032f57fe5b610145610a93565b60408051918252519081900360200190f35b341561035157fe5b610145610a99565b60408051918252519081900360200190f35b341561037357fe5b61037b610a9f565b604080519115158252519081900360200190f35b341561039757fe5b610133600435610aae565b005b34156103ac57fe5b610133610af3565b005b34156103be57fe5b6101f9610c04565b60408051600160a060020a039092168252519081900360200190f35b34156103ea57fe5b610133600480803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750506040805187358901803560208181028481018201909552818452989a998901989297509082019550935083925085019084908082843750949650610c1395505050505050565b005b341561047757fe5b610133600160a060020a0360043516610da0565b005b341561049557fe5b610145610e02565b60408051918252519081900360200190f35b34156104b757fe5b610133600435610e08565b005b34156104cc57fe5b610133600160a060020a0360043516610e4b565b005b34156104ea57fe5b61037b610e9d565b604080519115158252519081900360200190f35b341561050e57fe5b61037b610ea6565b604080519115158252519081900360200190f35b341561053257fe5b6101f9610eb4565b60408051600160a060020a039092168252519081900360200190f35b60005433600160a060020a039081169116146105725760006000fd5b600b805460ff19811660ff909116151790555b5b565b60065481565b60085481565b60006000600060045443101515156105ac5760006000fd5b6006544311156105bc5760006000fd5b600b54610100900460ff1680156105db5750600b5462010000900460ff165b15156105e357fe5b600b5460ff16156105f057fe5b600354348115156105fd57fe5b06925082340391506003548281151561061257fe5b049050600260009054906101000a9004600160a060020a0316600160a060020a03166370a08231306000604051602001526040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b151561068a57fe5b6102c65a03f1151561069857fe5b50506040515182111590506106ad5760006000fd5b60008311156106e357604051600160a060020a0333169084156108fc029085906000818181858888f1935050505015156106e357fe5b5b600154604051600160a060020a039091169083156108fc029084906000818181858888f19350505050151561071557fe5b6002546040805160006020918201819052825160e060020a63a9059cbb028152600160a060020a033381166004830152602482018790529351939094169363a9059cbb936044808301949391928390030190829087803b151561077457fe5b6102c65a03f1151561078257fe5b5050604080518381529051600160a060020a03331692507ff9c447a9cff6748e98623cddf46579164dc4c2af6253de5278893e86592773649181900360200190a25b5b5b5b5b505050565b60095481565b60055481565b60045481565b600154600160a060020a031681565b60005433600160a060020a0390811691161461080a5760006000fd5b60055443106108195760006000fd5b8015156108265760006000fd5b600554600454038103600581905550806004819055505b5b5b50565b6000805481908190819033600160a060020a039081169116146108655760006000fd5b600b54610100900460ff16151561087857fe5b600b5462010000900460ff161561088b57fe5b600093505b8751841015610a695787848151811015156108a757fe5b90602001906020020151925086848151811015156108c157fe5b9060200190602002015191508285858151811015156108dc57fe5b9060200190602002015187868151811015156108f457fe5b90602001906020020151610906610ec3565b600160a060020a03909316835260208301919091526040808301919091525190819003606001906000f080151561093957fe5b6002546040805160e060020a6366d38203028152600160a060020a0392831660048201529051929350908316916366d382039160248082019260009290919082900301818387803b151561098957fe5b6102c65a03f1151561099757fe5b50506002546040805160006020918201819052825160e060020a63a9059cbb028152600160a060020a03878116600483015260248201899052935193909416945063a9059cbb9360448082019492918390030190829087803b15156109f857fe5b6102c65a03f11515610a0657fe5b505060408051600a80546001019055600160a060020a0380871682528416602082015280820185905290517f659bd17426525d271e76e8b662badf9e68de74efbdb62927843499ecec17c92492509081900360600190a15b600190930192610890565b600954600a541415610a8757600b805462ff00001916620100001790555b5b5b5050505050505050565b600a5481565b60075481565b600b5462010000900460ff1681565b60005433600160a060020a03908116911614610aca5760006000fd5b6005544310610ad95760006000fd5b6004548111610ae85760006000fd5b60068190555b5b5b50565b6000805433600160a060020a03908116911614610b105760006000fd5b6006544311610b1f5760006000fd5b6002546040805160006020918201819052825160e060020a6370a08231028152600160a060020a033081166004830152935193909416936370a08231936024808301949391928390030190829087803b1515610b7757fe5b6102c65a03f11515610b8557fe5b505060408051805160025460015460006020948501819052855160e060020a63a9059cbb028152600160a060020a0392831660048201526024810185905295519397509116945063a9059cbb936044808201949392918390030190829087803b1515610bed57fe5b6102c65a03f11515610bfb57fe5b5050505b5b5b50565b600054600160a060020a031681565b6000805433600160a060020a03908116911614610c305760006000fd5b600b54610100900460ff1615610c4257fe5b5060005b8251811015610d7d576002548351600160a060020a039091169063a9059cbb90859084908110610c7257fe5b906020019060200201518484815181101515610c8a57fe5b906020019060200201516000604051602001526040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b1515610ceb57fe5b6102c65a03f11515610cf957fe5b5050600880546001019055508251839082908110610d1357fe5b90602001906020020151600160a060020a03167fc8cd09ae0c3d03fa0d2a7fac69f32a4f2957ef01cf0c00cc96a7cb7b2d6622058383815181101515610d5557fe5b906020019060200201516040518082815260200191505060405180910390a25b600101610c46565b60075460085414156107c457600b805461ff0019166101001790555b5b5b505050565b60005433600160a060020a03908116911614610dbc5760006000fd5b6005544310610dcb5760006000fd5b600160a060020a0381161515610de15760006000fd5b60018054600160a060020a031916600160a060020a0383161790555b5b5b50565b60035481565b60005433600160a060020a03908116911614610e245760006000fd5b6005544310610e335760006000fd5b801515610e405760006000fd5b60038190555b5b5b50565b60005433600160a060020a03908116911614610e675760006000fd5b600160a060020a0381161515610e7d5760006000fd5b60008054600160a060020a031916600160a060020a0383161790555b5b50565b600b5460ff1681565b600b54610100900460ff1681565b600254600160a060020a031681565b6040516104e480610ed48339019056006060604052341561000c57fe5b6040516060806104e48339810160409081528151602083015191909201515b600160a060020a038316158061003f575081155b1561004a5760006000fd5b60008054600160a060020a03338116600160a060020a03199283161790925560018054928616929091169190911790556002829055600381905580151561009057426003555b5b5050505b610440806100a46000396000f3006060604052361561007d5763ffffffff60e060020a6000350416630905aa5c811461007f5780630b97bc86146100a15780634bc9fdc2146100c357806366d38203146100e55780638da5cb5b14610103578063e47a6a9f1461012f578063f3fef3a314610151578063f7260d3e14610172578063fc0c546a1461019e575bfe5b341561008757fe5b61008f6101ca565b60408051918252519081900360200190f35b34156100a957fe5b61008f6101d0565b60408051918252519081900360200190f35b34156100cb57fe5b61008f6101d6565b60408051918252519081900360200190f35b34156100ed57fe5b610101600160a060020a03600435166102ac565b005b341561010b57fe5b610113610313565b60408051600160a060020a039092168252519081900360200190f35b341561013757fe5b61008f610322565b60408051918252519081900360200190f35b341561015957fe5b610101600160a060020a0360043516602435610328565b005b341561017a57fe5b6101136103f6565b60408051600160a060020a039092168252519081900360200190f35b34156101a657fe5b610113610405565b60408051600160a060020a039092168252519081900360200190f35b60045481565b60035481565b600060006002546003544203600454600560009054906101000a9004600160a060020a0316600160a060020a03166370a08231306000604051602001526040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050602060405180830381600087803b151561025a57fe5b6102c65a03f1151561026857fe5b50505060405180519050010281151561027d57fe5b04905080600454101580610292575042600354115b156102a057600091506102a8565b600454810391505b5090565b60005433600160a060020a039081169116146102c85760006000fd5b600554600160a060020a03161515806102e85750600160a060020a038116155b156102f35760006000fd5b60058054600160a060020a031916600160a060020a0383161790555b5b50565b600054600160a060020a031681565b60025481565b60015460009033600160a060020a039081169116146103475760006000fd5b600554600160a060020a0316151561035f5760006000fd5b6103676101d6565b9050808211156103775760006000fd5b60048054830181556005546040805160006020918201819052825160e060020a63a9059cbb028152600160a060020a0389811696820196909652602481018890529251949093169363a9059cbb936044808501948390030190829087803b15156103dd57fe5b6102c65a03f115156103eb57fe5b5050505b5b5b505050565b600154600160a060020a031681565b600554600160a060020a0316815600a165627a7a7230582081615f097f91b4f40bf6d03bcaa0e66a5cd22f73aef98f712aab6a85cbef54c90029a165627a7a72305820463d814488ba4eeda124d6ad84b0351931d4e7c20cd84324a798b89d22c4c1980029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000073847780fe9605ae8efcad98275175c19b1f37800000000000000000000000001253385b0fc7e022df906aeec4a8270cdc8ea6f900000000000000000000000000000000000000000000001043561a88293000000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000d9e6577a39555000000000000000000000000000000000000000000000000000000000043f441000000000000000000000000000000000000000000000000000000000043f2880000000000000000000000000000000000000000000000000000000000000073000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000452f41000000000000000000000000000000000000000000000000000000000000000a4752494420546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044752494400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _owner (address): 0x73847780fE9605AE8eFCAD98275175c19B1F3780
Arg [1] : _wallet (address): 0x1253385B0fc7E022DF906AEEc4A8270cDc8EA6f9
Arg [2] : _tokenSupply (uint256): 300000000000000000000
Arg [3] : _tokenName (string): GRID Token
Arg [4] : _tokenDecimals (uint8): 12
Arg [5] : _tokenSymbol (string): GRID
Arg [6] : _price (uint256): 3833333333333333
Arg [7] : _startBlock (uint256): 4453441
Arg [8] : _freezeBlock (uint256): 4453000
Arg [9] : _totalPreBuyers (uint256): 115
Arg [10] : _totalTimelockedBeneficiaries (uint256): 26
Arg [11] : _endBlock (uint256): 4534081
-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 00000000000000000000000073847780fe9605ae8efcad98275175c19b1f3780
Arg [1] : 0000000000000000000000001253385b0fc7e022df906aeec4a8270cdc8ea6f9
Arg [2] : 00000000000000000000000000000000000000000000001043561a8829300000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [6] : 000000000000000000000000000000000000000000000000000d9e6577a39555
Arg [7] : 000000000000000000000000000000000000000000000000000000000043f441
Arg [8] : 000000000000000000000000000000000000000000000000000000000043f288
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000073
Arg [10] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [11] : 0000000000000000000000000000000000000000000000000000000000452f41
Arg [12] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [13] : 4752494420546f6b656e00000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [15] : 4752494400000000000000000000000000000000000000000000000000000000
Swarm Source
bzzr://db88378a43e571bfa385023c702fe1368408e2baddf571c5548cf1df67238d62
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.