Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 152 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 5193804 | 2447 days ago | IN | 0.0000001 ETH | 0.0001068 | ||||
Transfer | 5193804 | 2447 days ago | IN | 0.0000001 ETH | 0.0001068 | ||||
Transfer | 5186081 | 2448 days ago | IN | 0 ETH | 0.00002136 | ||||
Transfer | 5168866 | 2451 days ago | IN | 0 ETH | 0.00004272 | ||||
Transfer | 5097352 | 2463 days ago | IN | 0 ETH | 0.00002136 | ||||
Finalize | 4814502 | 2512 days ago | IN | 0 ETH | 0.00059822 | ||||
Set Total Usd Am... | 4814498 | 2512 days ago | IN | 0 ETH | 0.00132306 | ||||
Transfer | 4784767 | 2517 days ago | IN | 0 ETH | 0.0001031 | ||||
Transfer | 4768050 | 2520 days ago | IN | 0 ETH | 0.00068739 | ||||
Transfer | 4767209 | 2520 days ago | IN | 0.0000001 ETH | 0.00213642 | ||||
Transfer | 4763812 | 2521 days ago | IN | 0 ETH | 0.00144351 | ||||
Transfer | 4754136 | 2523 days ago | IN | 0 ETH | 0.00103108 | ||||
Transfer | 4753886 | 2523 days ago | IN | 0.0000001 ETH | 0.00003815 | ||||
Transfer | 4753766 | 2523 days ago | IN | 0 ETH | 0.00068739 | ||||
Transfer | 4752175 | 2523 days ago | IN | 0 ETH | 0.00068739 | ||||
Transfer | 4748610 | 2524 days ago | IN | 0 ETH | 0.00006873 | ||||
Transfer | 4748182 | 2524 days ago | IN | 0.0000001 ETH | 0.00160232 | ||||
Transfer | 4748176 | 2524 days ago | IN | 0 ETH | 0.00183876 | ||||
Transfer | 4748141 | 2524 days ago | IN | 0 ETH | 0.00030932 | ||||
Transfer | 4748062 | 2524 days ago | IN | 0 ETH | 0.000441 | ||||
Transfer | 4748054 | 2524 days ago | IN | 0 ETH | 0.00137478 | ||||
Transfer | 4747353 | 2524 days ago | IN | 0 ETH | 0.00006873 | ||||
Transfer | 4742733 | 2525 days ago | IN | 0 ETH | 0.00027495 | ||||
Transfer | 4742715 | 2525 days ago | IN | 0 ETH | 0.00274956 | ||||
Transfer | 4742233 | 2525 days ago | IN | 0.00001 ETH | 0.00190752 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
4767209 | 2520 days ago | 0.0000001 ETH | ||||
4753886 | 2523 days ago | 0.0000001 ETH | ||||
4748182 | 2524 days ago | 0.0000001 ETH | ||||
4742233 | 2525 days ago | 0.00001 ETH | ||||
4742097 | 2525 days ago | 0.0000001 ETH | ||||
4737648 | 2526 days ago | 0.0000001 ETH | ||||
4737624 | 2526 days ago | 0.0000001 ETH | ||||
4736921 | 2526 days ago | 0.0000001 ETH | ||||
4736491 | 2526 days ago | 0.0000001 ETH | ||||
4736166 | 2526 days ago | 0.0000001 ETH | ||||
4736108 | 2526 days ago | 0.0000001 ETH | ||||
4735253 | 2526 days ago | 0.0000001 ETH | ||||
4731179 | 2527 days ago | 0.000001 ETH | ||||
4664636 | 2538 days ago | 0.000001 ETH | ||||
4637955 | 2543 days ago | 0.0000001 ETH | ||||
4637662 | 2543 days ago | 0.0000001 ETH | ||||
4637178 | 2543 days ago | 0.0000001 ETH | ||||
4636934 | 2543 days ago | 0.0000001 ETH | ||||
4634516 | 2543 days ago | 0.00000001 ETH | ||||
4633399 | 2543 days ago | 0.01 ETH | ||||
4628114 | 2544 days ago | 0.000001 ETH | ||||
4628010 | 2544 days ago | 0.1 ETH | ||||
4627517 | 2544 days ago | 0.01 ETH | ||||
4623204 | 2545 days ago | 0.000001 ETH | ||||
4620568 | 2546 days ago | 0.000001 ETH |
Loading...
Loading
Contract Name:
VanityCrowdsale
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-22 */ pragma solidity ^0.4.11; // // SafeMath // // Ownable // Destructible // Pausable // // ERC20Basic // ERC20 : ERC20Basic // BasicToken : ERC20Basic // StandardToken : ERC20, BasicToken // MintableToken : StandardToken, Ownable // PausableToken : StandardToken, Pausable // // VanityToken : MintableToken, PausableToken // // VanityCrowdsale : Ownable // /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address public owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) onlyOwner public { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } /** * @title Destructible * @dev Base contract that can be destroyed by owner. All funds in contract will be sent to the owner. */ contract Destructible is Ownable { function Destructible() public payable { } /** * @dev Transfers the current balance to the owner and terminates the contract. */ function destroy() onlyOwner public { selfdestruct(owner); } function destroyAndSend(address _recipient) onlyOwner public { selfdestruct(_recipient); } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; Unpause(); } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { uint256 public totalSupply; function balanceOf(address who) public constant returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public constant returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; /** * @dev transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); // SafeMath.sub will throw if there is not enough balance. balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public constant returns (uint256 balance) { return balances[_owner]; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint256 _value) public returns (bool) { require(_to != address(0)); uint256 _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // require (_value <= _allowance); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = _allowance.sub(_value); Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public constant returns (uint256 remaining) { return allowed[_owner][_spender]; } /** * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol */ function increaseApproval (address _spender, uint _addedValue) public returns (bool success) { allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue); Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } function decreaseApproval (address _spender, uint _subtractedValue) public returns (bool success) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * @title Mintable token * @dev Simple ERC20 Token example, with mintable token creation * @dev Issue: * https://github.com/OpenZeppelin/zeppelin-solidity/issues/120 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol */ contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) { totalSupply = totalSupply.add(_amount); balances[_to] = balances[_to].add(_amount); Mint(_to, _amount); Transfer(0x0, _to, _amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() onlyOwner public returns (bool) { mintingFinished = true; MintFinished(); return true; } } /** * @title Pausable token * * @dev StandardToken modified with pausable transfers. **/ contract PausableToken is StandardToken, Pausable { function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) { return super.transfer(_to, _value); } function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) { return super.transferFrom(_from, _to, _value); } function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) { return super.approve(_spender, _value); } function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) { return super.increaseApproval(_spender, _addedValue); } function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) { return super.decreaseApproval(_spender, _subtractedValue); } } contract VanityToken is MintableToken, PausableToken { // Metadata string public constant symbol = "VIP"; string public constant name = "VipCoin"; uint8 public constant decimals = 18; string public constant version = "1.0"; } contract VanityCrowdsale is Ownable { using SafeMath for uint256; // Constants uint256 public constant TOKEN_RATE = 1000; // 1 ETH = 1000 VPL uint256 public constant OWNER_TOKENS_PERCENT = 100; // 1:1 // Variables uint256 public startTime; uint256 public endTime; address public ownerWallet; mapping(address => uint) public registeredInDay; address[] public participants; uint256 public totalUsdAmount; uint256 public bonusMultiplier; VanityToken public token; bool public finalized; bool public distributed; uint256 public distributedCount; uint256 public distributedTokens; // Events event Finalized(); event Distributed(); // Constructor and accessors function VanityCrowdsale(uint256 _startTime, uint256 _endTime, address _ownerWallet) public { startTime = _startTime; endTime = _endTime; ownerWallet = _ownerWallet; token = new VanityToken(); token.pause(); } function registered(address wallet) public constant returns(bool) { return registeredInDay[wallet] > 0; } function participantsCount() public constant returns(uint) { return participants.length; } function setOwnerWallet(address _ownerWallet) public onlyOwner { require(_ownerWallet != address(0)); ownerWallet = _ownerWallet; } function computeTotalEthAmount() public constant returns(uint256) { uint256 total = 0; for (uint i = 0; i < participants.length; i++) { address participant = participants[distributedCount + i]; total += participant.balance; } return total; } function setTotalUsdAmount(uint256 _totalUsdAmount) public onlyOwner { totalUsdAmount = _totalUsdAmount; if (totalUsdAmount > 10000000) { bonusMultiplier = 20; } else if (totalUsdAmount > 5000000) { bonusMultiplier = 15; } else if (totalUsdAmount > 1000000) { bonusMultiplier = 10; } else if (totalUsdAmount > 100000) { bonusMultiplier = 5; } else if (totalUsdAmount > 10000) { bonusMultiplier = 2; } else if (totalUsdAmount == 0) { bonusMultiplier = 1; } } // Participants methods function () public payable { registerParticipant(); } function registerParticipant() public payable { require(!finalized); require(startTime <= now && now <= endTime); require(registeredInDay[msg.sender] == 0); registeredInDay[msg.sender] = 1 + now.sub(startTime).div(24*60*60); participants.push(msg.sender); if (msg.value > 0) { // No money => No need to handle recirsive calls msg.sender.transfer(msg.value); } } // Owner methods function finalize() public onlyOwner { require(!finalized); require(now > endTime); finalized = true; Finalized(); } function participantBonus(address participant) public constant returns(uint) { uint day = registeredInDay[participant]; require(day > 0); uint bonus = 0; if (day <= 1) { bonus = 6; } else if (day <= 3) { bonus = 5; } else if (day <= 7) { bonus = 4; } else if (day <= 10) { bonus = 3; } else if (day <= 14) { bonus = 2; } else if (day <= 21) { bonus = 1; } return bonus.mul(bonusMultiplier); } function distribute(uint count) public onlyOwner { require(finalized && !distributed); require(count > 0 && distributedCount + count <= participants.length); for (uint i = 0; i < count; i++) { address participant = participants[distributedCount + i]; uint256 bonus = participantBonus(participant); uint256 tokens = participant.balance.mul(TOKEN_RATE).mul(100 + bonus).div(100); token.mint(participant, tokens); distributedTokens += tokens; } distributedCount += count; if (distributedCount == participants.length) { uint256 ownerTokens = distributedTokens.mul(OWNER_TOKENS_PERCENT).div(100); token.mint(ownerWallet, ownerTokens); token.finishMinting(); token.unpause(); distributed = true; Distributed(); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"name":"participant","type":"address"}],"name":"participantBonus","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalUsdAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"participants","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"distributedCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"distributedTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_totalUsdAmount","type":"uint256"}],"name":"setTotalUsdAmount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"OWNER_TOKENS_PERCENT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"registeredInDay","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"count","type":"uint256"}],"name":"distribute","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ownerWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"computeTotalEthAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bonusMultiplier","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"wallet","type":"address"}],"name":"registered","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"finalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_ownerWallet","type":"address"}],"name":"setOwnerWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"registerParticipant","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"participantsCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"distributed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"},{"name":"_ownerWallet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[],"name":"Finalized","type":"event"},{"anonymous":false,"inputs":[],"name":"Distributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Contract Creation Code
6060604052341561000f57600080fd5b604051606080611bbc83398101604052808051919060200180519190602001805160008054600160a060020a03338116600160a060020a03199283161790925560018790556002869055600380549284169290911691909117905591506100769050610113565b604051809103906000f080151561008c57600080fd5b60088054600160a060020a031916600160a060020a03928316179081905516638456cb596040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401600060405180830381600087803b15156100f757600080fd5b6102c65a03f1151561010857600080fd5b505050505050610123565b604051610daf80610e0d83390190565b610cdb806101326000396000f30060606040526004361061012f5763ffffffff60e060020a600035041663085d933581146101395780630c4dd1d91461016a5780633197cbb61461017d57806335c1d349146101905780634174f1a5146101c257806345ec26ac146101d55780634bb278f3146101e8578063586360ce146101fb5780635e3cb7b01461020e5780636b63d1451461022457806378e97925146102375780637e97ca291461024a5780638da5cb5b1461026957806391c05b0b1461027c5780639335dcb7146102925780639daf9ce3146102a5578063a8b973a1146102b8578063b2dd5c07146102cb578063b3f05b97146102fe578063bb542ef014610311578063ccfc811b1461012f578063dd60c89814610330578063f2fde38b14610343578063f84b903e14610362578063fc0c546a14610375575b610137610388565b005b341561014457600080fd5b610158600160a060020a03600435166104a6565b60405190815260200160405180910390f35b341561017557600080fd5b610158610547565b341561018857600080fd5b61015861054d565b341561019b57600080fd5b6101a6600435610553565b604051600160a060020a03909116815260200160405180910390f35b34156101cd57600080fd5b61015861057b565b34156101e057600080fd5b610158610581565b34156101f357600080fd5b610137610587565b341561020657600080fd5b610158610619565b341561021957600080fd5b61013760043561061f565b341561022f57600080fd5b6101586106c1565b341561024257600080fd5b6101586106c6565b341561025557600080fd5b610158600160a060020a03600435166106cc565b341561027457600080fd5b6101a66106de565b341561028757600080fd5b6101376004356106ed565b341561029d57600080fd5b6101a6610a4c565b34156102b057600080fd5b610158610a5b565b34156102c357600080fd5b610158610ab0565b34156102d657600080fd5b6102ea600160a060020a0360043516610ab6565b604051901515815260200160405180910390f35b341561030957600080fd5b6102ea610ad2565b341561031c57600080fd5b610137600160a060020a0360043516610ae2565b341561033b57600080fd5b610158610b41565b341561034e57600080fd5b610137600160a060020a0360043516610b48565b341561036d57600080fd5b6102ea610be3565b341561038057600080fd5b6101a6610c05565b60085460a060020a900460ff161561039f57600080fd5b42600154111580156103b357506002544211155b15156103be57600080fd5b600160a060020a033316600090815260046020526040902054156103e157600080fd5b610409620151806103fd60015442610c1490919063ffffffff16565b9063ffffffff610c2616565b600160a060020a033316600090815260046020526040902060019182019055600580549091810161043a8382610c68565b5060009182526020822001805473ffffffffffffffffffffffffffffffffffffffff191633600160a060020a03161790553411156104a457600160a060020a0333163480156108fc0290604051600060405180830381858888f1935050505015156104a457600080fd5b565b600160a060020a038116600090815260046020526040812054818082116104cc57600080fd5b506000600182116104df5750600661052b565b600382116104ef5750600561052b565b600782116104ff5750600461052b565b600a821161050f5750600361052b565b600e821161051f5750600261052b565b6015821161052b575060015b60075461053f90829063ffffffff610c3d16565b949350505050565b60065481565b60025481565b600580548290811061056157fe5b600091825260209091200154600160a060020a0316905081565b6103e881565b60095481565b60005433600160a060020a039081169116146105a257600080fd5b60085460a060020a900460ff16156105b957600080fd5b60025442116105c757600080fd5b6008805474ff0000000000000000000000000000000000000000191660a060020a1790557f6823b073d48d6e3a7d385eeb601452d680e74bb46afe3255a7d778f3a9b1768160405160405180910390a1565b600a5481565b60005433600160a060020a0390811691161461063a57600080fd5b6006819055629896808111156106545760146007556106be565b624c4b40600654111561066b57600f6007556106be565b620f4240600654111561068257600a6007556106be565b620186a060065411156106995760056007556106be565b61271060065411156106af5760026007556106be565b60065415156106be5760016007555b50565b606481565b60015481565b60046020526000908152604090205481565b600054600160a060020a031681565b60008054819081908190819033600160a060020a0390811691161461071157600080fd5b60085460a060020a900460ff16801561074657506008547501000000000000000000000000000000000000000000900460ff16155b151561075157600080fd5b6000861180156107675750600554600954870111155b151561077257600080fd5b600094505b85851015610878576005856009540181548110151561079257fe5b600091825260209091200154600160a060020a031693506107b2846104a6565b92506107e760646103fd8186016107db600160a060020a038916316103e863ffffffff610c3d16565b9063ffffffff610c3d16565b600854909250600160a060020a03166340c10f19858460006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561084957600080fd5b6102c65a03f1151561085a57600080fd5b50505060405180515050600a80548301905560019490940193610777565b600980548701908190556005541415610a44576108a660646103fd6064600a54610c3d90919063ffffffff16565b600854600354919250600160a060020a03908116916340c10f1991168360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561090f57600080fd5b6102c65a03f1151561092057600080fd5b50505060405180515050600854600160a060020a0316637d64bcb46000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b151561097257600080fd5b6102c65a03f1151561098357600080fd5b50505060405180515050600854600160a060020a0316633f4ba83a6040518163ffffffff1660e060020a028152600401600060405180830381600087803b15156109cc57600080fd5b6102c65a03f115156109dd57600080fd5b50506008805475ff00000000000000000000000000000000000000000019167501000000000000000000000000000000000000000000179055507fb8b570f14eb44ed11fb6b2ac2ff61ceb5b29da5ae60d33184ae20b08f3a47c8960405160405180910390a15b505050505050565b600354600160a060020a031681565b60008080805b600554821015610aa85760058260095401815481101515610a7e57fe5b600091825260209091200154600160a060020a031680319390930192600192909201919050610a61565b509092915050565b60075481565b600160a060020a03166000908152600460205260408120541190565b60085460a060020a900460ff1681565b60005433600160a060020a03908116911614610afd57600080fd5b600160a060020a0381161515610b1257600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6005545b90565b60005433600160a060020a03908116911614610b6357600080fd5b600160a060020a0381161515610b7857600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6008547501000000000000000000000000000000000000000000900460ff1681565b600854600160a060020a031681565b600082821115610c2057fe5b50900390565b6000808284811515610c3457fe5b04949350505050565b6000828202831580610c595750828482811515610c5657fe5b04145b1515610c6157fe5b9392505050565b815481835581811511610c8c57600083815260209020610c8c918101908301610c91565b505050565b610b4591905b80821115610cab5760008155600101610c97565b50905600a165627a7a72305820b06e3adf59dd492e9bd5ef5faeb45144b6a7c2e253aaecd7518d735b678c5ef80029606060405260038054600160b060020a03191633600160a060020a0316179055610d818061002e6000396000f3006060604052600436106101115763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461011657806306fdde031461013d578063095ea7b3146101c757806318160ddd146101e957806323b872dd1461020e578063313ce567146102365780633f4ba83a1461025f57806340c10f191461027457806354fd4d50146102965780635c975abb146102a957806366188463146102bc57806370a08231146102de5780637d64bcb4146102fd5780638456cb59146103105780638da5cb5b1461032357806395d89b4114610352578063a9059cbb14610365578063d73dd62314610387578063dd62ed3e146103a9578063f2fde38b146103ce575b600080fd5b341561012157600080fd5b6101296103ed565b604051901515815260200160405180910390f35b341561014857600080fd5b61015061040e565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561018c578082015183820152602001610174565b50505050905090810190601f1680156101b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101d257600080fd5b610129600160a060020a0360043516602435610445565b34156101f457600080fd5b6101fc610470565b60405190815260200160405180910390f35b341561021957600080fd5b610129600160a060020a0360043581169060243516604435610476565b341561024157600080fd5b6102496104a3565b60405160ff909116815260200160405180910390f35b341561026a57600080fd5b6102726104a8565b005b341561027f57600080fd5b610129600160a060020a0360043516602435610528565b34156102a157600080fd5b610150610646565b34156102b457600080fd5b61012961067d565b34156102c757600080fd5b610129600160a060020a036004351660243561068d565b34156102e957600080fd5b6101fc600160a060020a03600435166106b1565b341561030857600080fd5b6101296106cc565b341561031b57600080fd5b610272610751565b341561032e57600080fd5b6103366107d6565b604051600160a060020a03909116815260200160405180910390f35b341561035d57600080fd5b6101506107e5565b341561037057600080fd5b610129600160a060020a036004351660243561081c565b341561039257600080fd5b610129600160a060020a0360043516602435610840565b34156103b457600080fd5b6101fc600160a060020a0360043581169060243516610864565b34156103d957600080fd5b610272600160a060020a036004351661088f565b60035474010000000000000000000000000000000000000000900460ff1681565b60408051908101604052600781527f566970436f696e00000000000000000000000000000000000000000000000000602082015281565b60035460009060a860020a900460ff161561045f57600080fd5b610469838361092a565b9392505050565b60005481565b60035460009060a860020a900460ff161561049057600080fd5b61049b848484610996565b949350505050565b601281565b60035433600160a060020a039081169116146104c357600080fd5b60035460a860020a900460ff1615156104db57600080fd5b6003805475ff000000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b60035460009033600160a060020a0390811691161461054657600080fd5b60035474010000000000000000000000000000000000000000900460ff161561056e57600080fd5b600054610581908363ffffffff610ac016565b6000908155600160a060020a0384168152600160205260409020546105ac908363ffffffff610ac016565b600160a060020a0384166000818152600160205260409081902092909255907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859084905190815260200160405180910390a282600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b60408051908101604052600381527f312e300000000000000000000000000000000000000000000000000000000000602082015281565b60035460a860020a900460ff1681565b60035460009060a860020a900460ff16156106a757600080fd5b6104698383610acf565b600160a060020a031660009081526001602052604090205490565b60035460009033600160a060020a039081169116146106ea57600080fd5b6003805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790557fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a150600190565b60035433600160a060020a0390811691161461076c57600080fd5b60035460a860020a900460ff161561078357600080fd5b6003805475ff000000000000000000000000000000000000000000191660a860020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600354600160a060020a031681565b60408051908101604052600381527f5649500000000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a860020a900460ff161561083657600080fd5b6104698383610bc9565b60035460009060a860020a900460ff161561085a57600080fd5b6104698383610c9f565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035433600160a060020a039081169116146108aa57600080fd5b600160a060020a03811615156108bf57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b600080600160a060020a03841615156109ae57600080fd5b50600160a060020a038085166000818152600260209081526040808320339095168352938152838220549282526001905291909120546109f4908463ffffffff610d4316565b600160a060020a038087166000908152600160205260408082209390935590861681522054610a29908463ffffffff610ac016565b600160a060020a038516600090815260016020526040902055610a52818463ffffffff610d4316565b600160a060020a03808716600081815260026020908152604080832033861684529091529081902093909355908616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9086905190815260200160405180910390a3506001949350505050565b60008282018381101561046957fe5b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610b2c57600160a060020a033381166000908152600260209081526040808320938816835292905290812055610b63565b610b3c818463ffffffff610d4316565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b6000600160a060020a0383161515610be057600080fd5b600160a060020a033316600090815260016020526040902054610c09908363ffffffff610d4316565b600160a060020a033381166000908152600160205260408082209390935590851681522054610c3e908363ffffffff610ac016565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610cd7908363ffffffff610ac016565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600082821115610d4f57fe5b509003905600a165627a7a723058206388837d9214232e82c288cbecc362802c91fdc44ccf725a4bd02ddd6fcccfc20029000000000000000000000000000000000000000000000000000000005a1809c0000000000000000000000000000000000000000000000000000000005a3f96c00000000000000000000000008f39518be2202282ec2738e715c78524ef2bccb4
Deployed Bytecode
0x60606040526004361061012f5763ffffffff60e060020a600035041663085d933581146101395780630c4dd1d91461016a5780633197cbb61461017d57806335c1d349146101905780634174f1a5146101c257806345ec26ac146101d55780634bb278f3146101e8578063586360ce146101fb5780635e3cb7b01461020e5780636b63d1451461022457806378e97925146102375780637e97ca291461024a5780638da5cb5b1461026957806391c05b0b1461027c5780639335dcb7146102925780639daf9ce3146102a5578063a8b973a1146102b8578063b2dd5c07146102cb578063b3f05b97146102fe578063bb542ef014610311578063ccfc811b1461012f578063dd60c89814610330578063f2fde38b14610343578063f84b903e14610362578063fc0c546a14610375575b610137610388565b005b341561014457600080fd5b610158600160a060020a03600435166104a6565b60405190815260200160405180910390f35b341561017557600080fd5b610158610547565b341561018857600080fd5b61015861054d565b341561019b57600080fd5b6101a6600435610553565b604051600160a060020a03909116815260200160405180910390f35b34156101cd57600080fd5b61015861057b565b34156101e057600080fd5b610158610581565b34156101f357600080fd5b610137610587565b341561020657600080fd5b610158610619565b341561021957600080fd5b61013760043561061f565b341561022f57600080fd5b6101586106c1565b341561024257600080fd5b6101586106c6565b341561025557600080fd5b610158600160a060020a03600435166106cc565b341561027457600080fd5b6101a66106de565b341561028757600080fd5b6101376004356106ed565b341561029d57600080fd5b6101a6610a4c565b34156102b057600080fd5b610158610a5b565b34156102c357600080fd5b610158610ab0565b34156102d657600080fd5b6102ea600160a060020a0360043516610ab6565b604051901515815260200160405180910390f35b341561030957600080fd5b6102ea610ad2565b341561031c57600080fd5b610137600160a060020a0360043516610ae2565b341561033b57600080fd5b610158610b41565b341561034e57600080fd5b610137600160a060020a0360043516610b48565b341561036d57600080fd5b6102ea610be3565b341561038057600080fd5b6101a6610c05565b60085460a060020a900460ff161561039f57600080fd5b42600154111580156103b357506002544211155b15156103be57600080fd5b600160a060020a033316600090815260046020526040902054156103e157600080fd5b610409620151806103fd60015442610c1490919063ffffffff16565b9063ffffffff610c2616565b600160a060020a033316600090815260046020526040902060019182019055600580549091810161043a8382610c68565b5060009182526020822001805473ffffffffffffffffffffffffffffffffffffffff191633600160a060020a03161790553411156104a457600160a060020a0333163480156108fc0290604051600060405180830381858888f1935050505015156104a457600080fd5b565b600160a060020a038116600090815260046020526040812054818082116104cc57600080fd5b506000600182116104df5750600661052b565b600382116104ef5750600561052b565b600782116104ff5750600461052b565b600a821161050f5750600361052b565b600e821161051f5750600261052b565b6015821161052b575060015b60075461053f90829063ffffffff610c3d16565b949350505050565b60065481565b60025481565b600580548290811061056157fe5b600091825260209091200154600160a060020a0316905081565b6103e881565b60095481565b60005433600160a060020a039081169116146105a257600080fd5b60085460a060020a900460ff16156105b957600080fd5b60025442116105c757600080fd5b6008805474ff0000000000000000000000000000000000000000191660a060020a1790557f6823b073d48d6e3a7d385eeb601452d680e74bb46afe3255a7d778f3a9b1768160405160405180910390a1565b600a5481565b60005433600160a060020a0390811691161461063a57600080fd5b6006819055629896808111156106545760146007556106be565b624c4b40600654111561066b57600f6007556106be565b620f4240600654111561068257600a6007556106be565b620186a060065411156106995760056007556106be565b61271060065411156106af5760026007556106be565b60065415156106be5760016007555b50565b606481565b60015481565b60046020526000908152604090205481565b600054600160a060020a031681565b60008054819081908190819033600160a060020a0390811691161461071157600080fd5b60085460a060020a900460ff16801561074657506008547501000000000000000000000000000000000000000000900460ff16155b151561075157600080fd5b6000861180156107675750600554600954870111155b151561077257600080fd5b600094505b85851015610878576005856009540181548110151561079257fe5b600091825260209091200154600160a060020a031693506107b2846104a6565b92506107e760646103fd8186016107db600160a060020a038916316103e863ffffffff610c3d16565b9063ffffffff610c3d16565b600854909250600160a060020a03166340c10f19858460006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561084957600080fd5b6102c65a03f1151561085a57600080fd5b50505060405180515050600a80548301905560019490940193610777565b600980548701908190556005541415610a44576108a660646103fd6064600a54610c3d90919063ffffffff16565b600854600354919250600160a060020a03908116916340c10f1991168360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561090f57600080fd5b6102c65a03f1151561092057600080fd5b50505060405180515050600854600160a060020a0316637d64bcb46000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b151561097257600080fd5b6102c65a03f1151561098357600080fd5b50505060405180515050600854600160a060020a0316633f4ba83a6040518163ffffffff1660e060020a028152600401600060405180830381600087803b15156109cc57600080fd5b6102c65a03f115156109dd57600080fd5b50506008805475ff00000000000000000000000000000000000000000019167501000000000000000000000000000000000000000000179055507fb8b570f14eb44ed11fb6b2ac2ff61ceb5b29da5ae60d33184ae20b08f3a47c8960405160405180910390a15b505050505050565b600354600160a060020a031681565b60008080805b600554821015610aa85760058260095401815481101515610a7e57fe5b600091825260209091200154600160a060020a031680319390930192600192909201919050610a61565b509092915050565b60075481565b600160a060020a03166000908152600460205260408120541190565b60085460a060020a900460ff1681565b60005433600160a060020a03908116911614610afd57600080fd5b600160a060020a0381161515610b1257600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6005545b90565b60005433600160a060020a03908116911614610b6357600080fd5b600160a060020a0381161515610b7857600080fd5b600054600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6008547501000000000000000000000000000000000000000000900460ff1681565b600854600160a060020a031681565b600082821115610c2057fe5b50900390565b6000808284811515610c3457fe5b04949350505050565b6000828202831580610c595750828482811515610c5657fe5b04145b1515610c6157fe5b9392505050565b815481835581811511610c8c57600083815260209020610c8c918101908301610c91565b505050565b610b4591905b80821115610cab5760008155600101610c97565b50905600a165627a7a72305820b06e3adf59dd492e9bd5ef5faeb45144b6a7c2e253aaecd7518d735b678c5ef80029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000005A1809C0000000000000000000000000000000000000000000000000000000005A3F96C00000000000000000000000008f39518bE2202282ec2738e715C78524EF2BcCb4
-----Decoded View---------------
Arg [0] : _startTime (uint256): 1511524800
Arg [1] : _endTime (uint256): 1514116800
Arg [2] : _ownerWallet (address): 0x8f39518bE2202282ec2738e715C78524EF2BcCb4
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000005A1809C0
Arg [1] : 000000000000000000000000000000000000000000000000000000005A3F96C0
Arg [2] : 0000000000000000000000008f39518bE2202282ec2738e715C78524EF2BcCb4
Swarm Source
bzzr://6388837d9214232e82c288cbecc362802c91fdc44ccf725a4bd02ddd6fcccfc2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.