More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 5,253 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Finish Ico | 5236159 | 2456 days ago | IN | 0 ETH | 0.00869248 | ||||
Credit Jackpot T... | 5235562 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235562 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235562 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235562 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235562 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235561 | 2456 days ago | IN | 0 ETH | 0.00088376 | ||||
Credit Jackpot T... | 5235561 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235560 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235560 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235560 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235560 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235560 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235560 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235560 | 2456 days ago | IN | 0 ETH | 0.00088242 | ||||
Credit Jackpot T... | 5235560 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235560 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235560 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235560 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235560 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235560 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235560 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235560 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235560 | 2456 days ago | IN | 0 ETH | 0.0008851 | ||||
Credit Jackpot T... | 5235560 | 2456 days ago | IN | 0 ETH | 0.0008851 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
5041897 | 2489 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
SpadeIco
Compiler Version
v0.4.19+commit.c4cbbb05
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-02-06 */ pragma solidity ^0.4.18; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(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 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 view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, 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)); require(_value <= balances[msg.sender]); // 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 view returns (uint256 balance) { return balances[_owner]; } } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view 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 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)) internal 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)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].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 view returns (uint256) { 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) { 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) { 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; } } // Migration Agent interface contract MigrationAgent { function migrateFrom(address _from, uint _value) public; } /** * @title Spade Token */ contract SPXToken is StandardToken { string public constant name = "SP8DE Token"; string public constant symbol = "SPX"; uint8 public constant decimals = 18; address public ico; bool public isFrozen = true; uint public constant TOKEN_LIMIT = 8888888888 * (1e18); // Token migration variables address public migrationMaster; address public migrationAgent; uint public totalMigrated; event Migrate(address indexed _from, address indexed _to, uint _value); // Constructor function SPXToken(address _ico, address _migrationMaster) public { require(_ico != 0); ico = _ico; migrationMaster = _migrationMaster; } // Create tokens function mint(address holder, uint value) public { require(msg.sender == ico); require(value > 0); require(totalSupply + value <= TOKEN_LIMIT); balances[holder] += value; totalSupply += value; Transfer(0x0, holder, value); } // Allow token transfer. function unfreeze() public { require(msg.sender == ico); isFrozen = false; } // ERC20 functions // ========================= function transfer(address _to, uint _value) public returns (bool) { require(_to != address(0)); require(!isFrozen); return super.transfer(_to, _value); } function transferFrom(address _from, address _to, uint _value) public returns (bool) { require(!isFrozen); return super.transferFrom(_from, _to, _value); } function approve(address _spender, uint _value) public returns (bool) { require(!isFrozen); return super.approve(_spender, _value); } // Token migration function migrate(uint value) external { require(migrationAgent != 0); require(value > 0); require(value <= balances[msg.sender]); balances[msg.sender] -= value; totalSupply -= value; totalMigrated += value; MigrationAgent(migrationAgent).migrateFrom(msg.sender, value); Migrate(msg.sender, migrationAgent, value); } // Set address of migration contract function setMigrationAgent(address _agent) external { require(migrationAgent == 0); require(msg.sender == migrationMaster); migrationAgent = _agent; } function setMigrationMaster(address _master) external { require(msg.sender == migrationMaster); require(_master != 0); migrationMaster = _master; } } /** * @title Spade SpadeIco */ contract SpadeIco { uint public constant TOKENS_FOR_SALE = 3655555558 * 1e18; uint public constant TOKENS_FOUNDATION = 1777777778 * 1e18; uint tokensSold = 0; // Ico token SPXToken public token; address public team; address public icoAgent; address public migrationMaster; // Modifiers modifier teamOnly {require(msg.sender == team); _;} modifier icoAgentOnly {require(msg.sender == icoAgent); _;} bool public isPaused = false; enum IcoState { Created, IcoStarted, IcoFinished } IcoState public icoState = IcoState.Created; event IcoStarted(); event IcoFinished(); event IcoPaused(); event IcoResumed(); event TokenBuy(address indexed buyer, uint256 tokens, uint256 factor, string tx); event TokenBuyPresale(address indexed buyer, uint256 tokens, uint256 factor, string tx); event TokenWin(address indexed buyer, uint256 tokens, uint256 jackpot); function SpadeIco(address _team, address _icoAgent, address _migrationMaster) public { require(_team != address(0) && _icoAgent != address(0) && _migrationMaster != address(0)); migrationMaster = _migrationMaster; team = _team; icoAgent = _icoAgent; token = new SPXToken(this, migrationMaster); } function startIco() external teamOnly { require(icoState == IcoState.Created); icoState = IcoState.IcoStarted; IcoStarted(); } function finishIco(address foundation, address other) external teamOnly { require(foundation != address(0)); require(other != address(0)); require(icoState == IcoState.IcoStarted); icoState = IcoState.IcoFinished; uint256 amountWithFoundation = SafeMath.add(token.totalSupply(), TOKENS_FOUNDATION); if (amountWithFoundation > token.TOKEN_LIMIT()) { uint256 foundationToMint = token.TOKEN_LIMIT() - token.totalSupply(); if (foundationToMint > 0) { token.mint(foundation, foundationToMint); } } else { token.mint(foundation, TOKENS_FOUNDATION); uint mintedTokens = token.totalSupply(); uint remaining = token.TOKEN_LIMIT() - mintedTokens; if (remaining > 0) { token.mint(other, remaining); } } token.unfreeze(); IcoFinished(); } function pauseIco() external teamOnly { require(!isPaused); require(icoState == IcoState.IcoStarted); isPaused = true; IcoPaused(); } function resumeIco() external teamOnly { require(isPaused); require(icoState == IcoState.IcoStarted); isPaused = false; IcoResumed(); } function convertPresaleTokens(address buyer, uint256 tokens, uint256 factor, string txHash) external icoAgentOnly returns (uint) { require(buyer != address(0)); require(tokens > 0); require(validState()); uint256 tokensToSell = SafeMath.add(tokensSold, tokens); require(tokensToSell <= TOKENS_FOR_SALE); tokensSold = tokensToSell; token.mint(buyer, tokens); TokenBuyPresale(buyer, tokens, factor, txHash); } function creditJackpotTokens(address buyer, uint256 tokens, uint256 jackpot) external icoAgentOnly returns (uint) { require(buyer != address(0)); require(tokens > 0); require(validState()); token.mint(buyer, tokens); TokenWin(buyer, tokens, jackpot); } function buyTokens(address buyer, uint256 tokens, uint256 factor, string txHash) external icoAgentOnly returns (uint) { require(buyer != address(0)); require(tokens > 0); require(validState()); uint256 tokensToSell = SafeMath.add(tokensSold, tokens); require(tokensToSell <= TOKENS_FOR_SALE); tokensSold = tokensToSell; token.mint(buyer, tokens); TokenBuy(buyer, tokens, factor, txHash); } function validState() internal view returns (bool) { return icoState == IcoState.IcoStarted && !isPaused; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":false,"inputs":[{"name":"foundation","type":"address"},{"name":"other","type":"address"}],"name":"finishIco","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"buyer","type":"address"},{"name":"tokens","type":"uint256"},{"name":"jackpot","type":"uint256"}],"name":"creditJackpotTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"icoState","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"migrationMaster","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"resumeIco","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"icoAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"team","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"startIco","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_FOUNDATION","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isPaused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pauseIco","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_FOR_SALE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"buyer","type":"address"},{"name":"tokens","type":"uint256"},{"name":"factor","type":"uint256"},{"name":"txHash","type":"string"}],"name":"buyTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"buyer","type":"address"},{"name":"tokens","type":"uint256"},{"name":"factor","type":"uint256"},{"name":"txHash","type":"string"}],"name":"convertPresaleTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_team","type":"address"},{"name":"_icoAgent","type":"address"},{"name":"_migrationMaster","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"IcoStarted","type":"event"},{"anonymous":false,"inputs":[],"name":"IcoFinished","type":"event"},{"anonymous":false,"inputs":[],"name":"IcoPaused","type":"event"},{"anonymous":false,"inputs":[],"name":"IcoResumed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"},{"indexed":false,"name":"factor","type":"uint256"},{"indexed":false,"name":"tx","type":"string"}],"name":"TokenBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"},{"indexed":false,"name":"factor","type":"uint256"},{"indexed":false,"name":"tx","type":"string"}],"name":"TokenBuyPresale","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"},{"indexed":false,"name":"jackpot","type":"uint256"}],"name":"TokenWin","type":"event"}]
Contract Creation Code
6060604052600080556004805460a060020a61ffff0219169055341561002457600080fd5b604051606080611dc8833981016040528080519190602001805191906020018051915050600160a060020a038316158015906100685750600160a060020a03821615155b801561007c5750600160a060020a03811615155b151561008757600080fd5b60048054600160a060020a03808416600160a060020a0319928316179283905560028054878316908416179055600380548683169316929092179091553091166100cf610126565b600160a060020a0392831681529116602082015260409081019051809103906000f08015156100fd57600080fd5b60018054600160a060020a031916600160a060020a039290921691909117905550610136915050565b604051610e2c80610f9c83390190565b610e57806101456000396000f3006060604052600436106100c15763ffffffff60e060020a6000350416630657f3a181146100c65780631a0a8fae146100ed57806344f3875614610124578063676d2e621461015b5780637f5f0d6a1461018a578063830f29351461019d57806385f2aef2146101b057806389311e6f146101c35780638f5d23f6146101d6578063b187bd26146101e9578063c4fdc6b814610210578063c8612b2f14610223578063f296c1f214610236578063fc0c546a14610269578063fc7e061f1461027c575b600080fd5b34156100d157600080fd5b6100eb600160a060020a03600435811690602435166102af565b005b34156100f857600080fd5b610112600160a060020a03600435166024356044356107c0565b60405190815260200160405180910390f35b341561012f57600080fd5b6101376108c8565b6040518082600281111561014757fe5b60ff16815260200191505060405180910390f35b341561016657600080fd5b61016e6108d8565b604051600160a060020a03909116815260200160405180910390f35b341561019557600080fd5b6100eb6108e7565b34156101a857600080fd5b61016e61098a565b34156101bb57600080fd5b61016e610999565b34156101ce57600080fd5b6100eb6109a8565b34156101e157600080fd5b610112610a3a565b34156101f457600080fd5b6101fc610a4a565b604051901515815260200160405180910390f35b341561021b57600080fd5b6100eb610a5a565b341561022e57600080fd5b610112610b02565b341561024157600080fd5b61011260048035600160a060020a031690602480359160443591606435908101910135610b12565b341561027457600080fd5b61016e610c70565b341561028757600080fd5b61011260048035600160a060020a031690602480359160443591606435908101910135610c7f565b60025460009081908190819033600160a060020a039081169116146102d357600080fd5b600160a060020a03861615156102e857600080fd5b600160a060020a03851615156102fd57600080fd5b600160045460a860020a900460ff16600281111561031757fe5b1461032157600080fd5b6004805475ff000000000000000000000000000000000000000000191675020000000000000000000000000000000000000000001790556001546103d190600160a060020a03166318160ddd6000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b15156103a457600080fd5b6102c65a03f115156103b557600080fd5b505050604051805190506b05be8b1674882905fa880000610ddd565b600154909450600160a060020a031663031bd4c46000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b151561041c57600080fd5b6102c65a03f1151561042d57600080fd5b5050506040518051905084111561058157600154600160a060020a03166318160ddd6000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b151561048657600080fd5b6102c65a03f1151561049757600080fd5b5050506040518051600154909150600160a060020a031663031bd4c46000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b15156104ea57600080fd5b6102c65a03f115156104fb57600080fd5b50505060405180519050039250600083111561057c57600154600160a060020a03166340c10f19878560405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b151561056757600080fd5b6102c65a03f1151561057857600080fd5b5050505b610739565b600154600160a060020a03166340c10f19876b05be8b1674882905fa88000060405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b15156105e357600080fd5b6102c65a03f115156105f457600080fd5b5050600154600160a060020a031690506318160ddd6000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b151561064057600080fd5b6102c65a03f1151561065157600080fd5b5050506040518051600154909350839150600160a060020a031663031bd4c46000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b15156106a757600080fd5b6102c65a03f115156106b857600080fd5b50505060405180519050039050600081111561073957600154600160a060020a03166340c10f19868360405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b151561072457600080fd5b6102c65a03f1151561073557600080fd5b5050505b600154600160a060020a0316636a28f0006040518163ffffffff1660e060020a028152600401600060405180830381600087803b151561077857600080fd5b6102c65a03f1151561078957600080fd5b5050507fd26bc13d5a30cb67cbea6d0927234e897dd66eb4cab3db0d63181509fea7802660405160405180910390a1505050505050565b60035460009033600160a060020a039081169116146107de57600080fd5b600160a060020a03841615156107f357600080fd5b6000831161080057600080fd5b610808610df3565b151561081357600080fd5b600154600160a060020a03166340c10f19858560405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b151561086957600080fd5b6102c65a03f1151561087a57600080fd5b50505083600160a060020a03167fb412d627f5bf38ffc09d2337ba9c420690c14421460f4c3abfd6cd3ee750d0d0848460405191825260208201526040908101905180910390a29392505050565b60045460a860020a900460ff1681565b600454600160a060020a031681565b60025433600160a060020a0390811691161461090257600080fd5b60045460a060020a900460ff16151561091a57600080fd5b600160045460a860020a900460ff16600281111561093457fe5b1461093e57600080fd5b6004805474ff0000000000000000000000000000000000000000191690557f8e4a943d8cb0ae3aeb93e78326a59e6502d76bc1faeb9a2cbb6204492dbb7a1a60405160405180910390a1565b600354600160a060020a031681565b600254600160a060020a031681565b60025433600160a060020a039081169116146109c357600080fd5b600060045460a860020a900460ff1660028111156109dd57fe5b146109e757600080fd5b6004805475ff000000000000000000000000000000000000000000191660a860020a1790557f7a737593954a3016da0718e58083d34b1f8c0d1f0d404534abc4d4af33fa2ed360405160405180910390a1565b6b05be8b1674882905fa88000081565b60045460a060020a900460ff1681565b60025433600160a060020a03908116911614610a7557600080fd5b60045460a060020a900460ff1615610a8c57600080fd5b600160045460a860020a900460ff166002811115610aa657fe5b14610ab057600080fd5b6004805474ff0000000000000000000000000000000000000000191660a060020a1790557f75ee731553f63397b683c48301221bb5719aa3f6e55e73767d993f87fff4980460405160405180910390a1565b6b0bcfcdffe199cc4627d8000081565b600354600090819033600160a060020a03908116911614610b3257600080fd5b600160a060020a0387161515610b4757600080fd5b60008611610b5457600080fd5b610b5c610df3565b1515610b6757600080fd5b610b7360005487610ddd565b90506b0bcfcdffe199cc4627d80000811115610b8e57600080fd5b6000819055600154600160a060020a03166340c10f19888860405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b1515610be957600080fd5b6102c65a03f11515610bfa57600080fd5b50505086600160a060020a03167f879cffdfd3662dd3aac4614872902349c1fd027fa4b810d073a5aac0b4a6994c87878787604051848152602081018490526060604082018181529082018390526080820184848082843782019150509550505050505060405180910390a25095945050505050565b600154600160a060020a031681565b600354600090819033600160a060020a03908116911614610c9f57600080fd5b600160a060020a0387161515610cb457600080fd5b60008611610cc157600080fd5b610cc9610df3565b1515610cd457600080fd5b610ce060005487610ddd565b90506b0bcfcdffe199cc4627d80000811115610cfb57600080fd5b6000819055600154600160a060020a03166340c10f19888860405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b1515610d5657600080fd5b6102c65a03f11515610d6757600080fd5b50505086600160a060020a03167fb0dd2858bd0f955d8bd8341ec3b91ab76ee18b3f15203dbefcec939703f982cf87878787604051848152602081018490526060604082018181529082018390526080820184848082843782019150509550505050505060405180910390a25095945050505050565b600082820183811015610dec57fe5b9392505050565b6000600160045460a860020a900460ff166002811115610e0f57fe5b148015610e26575060045460a060020a900460ff16155b9050905600a165627a7a72305820e67fa1c2067032e65b998e1ad8f7a696d830e756e05cd32522e4d16209bbe45d002960606040526003805460a060020a60ff02191674010000000000000000000000000000000000000000179055341561003657600080fd5b604051604080610e2c8339810160405280805191906020018051915050600160a060020a038216151561006857600080fd5b60038054600160a060020a03938416600160a060020a03199182161790915560048054929093169116179055610d89806100a36000396000f3006060604052600436106101275763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663031bd4c4811461012c57806306fdde0314610151578063095ea7b3146101db57806318160ddd1461021157806323b872dd1461022457806326316e581461024c578063313ce5671461026d57806333eeb1471461029657806340c10f19146102a9578063454b0608146102cb5780635d452201146102e15780636618846314610310578063676d2e62146103325780636a28f0001461034557806370a082311461035857806375e2ff65146103775780638328dbcd1461039657806395a0f5eb146103a957806395d89b41146103bc578063a9059cbb146103cf578063d73dd623146103f1578063dd62ed3e14610413575b600080fd5b341561013757600080fd5b61013f610438565b60405190815260200160405180910390f35b341561015c57600080fd5b610164610448565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101a0578082015183820152602001610188565b50505050905090810190601f1680156101cd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101e657600080fd5b6101fd600160a060020a036004351660243561047f565b604051901515815260200160405180910390f35b341561021c57600080fd5b61013f6104aa565b341561022f57600080fd5b6101fd600160a060020a03600435811690602435166044356104b0565b341561025757600080fd5b61026b600160a060020a03600435166104dd565b005b341561027857600080fd5b61028061053c565b60405160ff909116815260200160405180910390f35b34156102a157600080fd5b6101fd610541565b34156102b457600080fd5b61026b600160a060020a0360043516602435610551565b34156102d657600080fd5b61026b6004356105f3565b34156102ec57600080fd5b6102f4610732565b604051600160a060020a03909116815260200160405180910390f35b341561031b57600080fd5b6101fd600160a060020a0360043516602435610741565b341561033d57600080fd5b6102f461083b565b341561035057600080fd5b61026b61084a565b341561036357600080fd5b61013f600160a060020a0360043516610885565b341561038257600080fd5b61026b600160a060020a03600435166108a0565b34156103a157600080fd5b6102f4610900565b34156103b457600080fd5b61013f61090f565b34156103c757600080fd5b610164610915565b34156103da57600080fd5b6101fd600160a060020a036004351660243561094c565b34156103fc57600080fd5b6101fd600160a060020a0360043516602435610984565b341561041e57600080fd5b61013f600160a060020a0360043581169060243516610a28565b6b1cb8b7702ae75fb695e0000081565b60408051908101604052600b81527f535038444520546f6b656e000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561049957600080fd5b6104a38383610a53565b9392505050565b60005481565b60035460009060a060020a900460ff16156104ca57600080fd5b6104d5848484610abf565b949350505050565b60045433600160a060020a039081169116146104f857600080fd5b600160a060020a038116151561050d57600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b601281565b60035460a060020a900460ff1681565b60035433600160a060020a0390811691161461056c57600080fd5b6000811161057957600080fd5b6000546b1cb8b7702ae75fb695e00000908201111561059757600080fd5b600160a060020a0382166000818152600160205260408082208054850190558154840182557fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9084905190815260200160405180910390a35050565b600554600160a060020a0316151561060a57600080fd5b6000811161061757600080fd5b600160a060020a03331660009081526001602052604090205481111561063c57600080fd5b33600160a060020a03818116600090815260016020526040808220805486900390558154859003909155600680548501905560055490911691637a3130e3918490517c010000000000000000000000000000000000000000000000000000000063ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b15156106d757600080fd5b6102c65a03f115156106e857600080fd5b5050600554600160a060020a03908116915033167f18df02dcc52b9c494f391df09661519c0069bd8540141946280399408205ca1a8360405190815260200160405180910390a350565b600354600160a060020a031681565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120548083111561079e57600160a060020a0333811660009081526002602090815260408083209388168352929052908120556107d5565b6107ae818463ffffffff610c4116565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600454600160a060020a031681565b60035433600160a060020a0390811691161461086557600080fd5b6003805474ff000000000000000000000000000000000000000019169055565b600160a060020a031660009081526001602052604090205490565b600554600160a060020a0316156108b657600080fd5b60045433600160a060020a039081169116146108d157600080fd5b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600554600160a060020a031681565b60065481565b60408051908101604052600381527f5350580000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a038316151561096357600080fd5b60035460a060020a900460ff161561097a57600080fd5b6104a38383610c53565b600160a060020a0333811660009081526002602090815260408083209386168352929052908120546109bc908363ffffffff610d4e16565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000600160a060020a0383161515610ad657600080fd5b600160a060020a038416600090815260016020526040902054821115610afb57600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610b2e57600080fd5b600160a060020a038416600090815260016020526040902054610b57908363ffffffff610c4116565b600160a060020a038086166000908152600160205260408082209390935590851681522054610b8c908363ffffffff610d4e16565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610bd4908363ffffffff610c4116565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b600082821115610c4d57fe5b50900390565b6000600160a060020a0383161515610c6a57600080fd5b600160a060020a033316600090815260016020526040902054821115610c8f57600080fd5b600160a060020a033316600090815260016020526040902054610cb8908363ffffffff610c4116565b600160a060020a033381166000908152600160205260408082209390935590851681522054610ced908363ffffffff610d4e16565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b6000828201838110156104a357fe00a165627a7a72305820bcab5807b194002f04c419000c8c60b4b0cd3c77c8f9978314b38570603ca2b10029000000000000000000000000b4c512558b951001f7fb636b966768fb0cd8ab4100000000000000000000000030647acc7ce2a1b20dacd05c5a27fd67ff4f469d000000000000000000000000b4c512558b951001f7fb636b966768fb0cd8ab41
Deployed Bytecode
0x6060604052600436106100c15763ffffffff60e060020a6000350416630657f3a181146100c65780631a0a8fae146100ed57806344f3875614610124578063676d2e621461015b5780637f5f0d6a1461018a578063830f29351461019d57806385f2aef2146101b057806389311e6f146101c35780638f5d23f6146101d6578063b187bd26146101e9578063c4fdc6b814610210578063c8612b2f14610223578063f296c1f214610236578063fc0c546a14610269578063fc7e061f1461027c575b600080fd5b34156100d157600080fd5b6100eb600160a060020a03600435811690602435166102af565b005b34156100f857600080fd5b610112600160a060020a03600435166024356044356107c0565b60405190815260200160405180910390f35b341561012f57600080fd5b6101376108c8565b6040518082600281111561014757fe5b60ff16815260200191505060405180910390f35b341561016657600080fd5b61016e6108d8565b604051600160a060020a03909116815260200160405180910390f35b341561019557600080fd5b6100eb6108e7565b34156101a857600080fd5b61016e61098a565b34156101bb57600080fd5b61016e610999565b34156101ce57600080fd5b6100eb6109a8565b34156101e157600080fd5b610112610a3a565b34156101f457600080fd5b6101fc610a4a565b604051901515815260200160405180910390f35b341561021b57600080fd5b6100eb610a5a565b341561022e57600080fd5b610112610b02565b341561024157600080fd5b61011260048035600160a060020a031690602480359160443591606435908101910135610b12565b341561027457600080fd5b61016e610c70565b341561028757600080fd5b61011260048035600160a060020a031690602480359160443591606435908101910135610c7f565b60025460009081908190819033600160a060020a039081169116146102d357600080fd5b600160a060020a03861615156102e857600080fd5b600160a060020a03851615156102fd57600080fd5b600160045460a860020a900460ff16600281111561031757fe5b1461032157600080fd5b6004805475ff000000000000000000000000000000000000000000191675020000000000000000000000000000000000000000001790556001546103d190600160a060020a03166318160ddd6000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b15156103a457600080fd5b6102c65a03f115156103b557600080fd5b505050604051805190506b05be8b1674882905fa880000610ddd565b600154909450600160a060020a031663031bd4c46000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b151561041c57600080fd5b6102c65a03f1151561042d57600080fd5b5050506040518051905084111561058157600154600160a060020a03166318160ddd6000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b151561048657600080fd5b6102c65a03f1151561049757600080fd5b5050506040518051600154909150600160a060020a031663031bd4c46000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b15156104ea57600080fd5b6102c65a03f115156104fb57600080fd5b50505060405180519050039250600083111561057c57600154600160a060020a03166340c10f19878560405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b151561056757600080fd5b6102c65a03f1151561057857600080fd5b5050505b610739565b600154600160a060020a03166340c10f19876b05be8b1674882905fa88000060405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b15156105e357600080fd5b6102c65a03f115156105f457600080fd5b5050600154600160a060020a031690506318160ddd6000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b151561064057600080fd5b6102c65a03f1151561065157600080fd5b5050506040518051600154909350839150600160a060020a031663031bd4c46000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b15156106a757600080fd5b6102c65a03f115156106b857600080fd5b50505060405180519050039050600081111561073957600154600160a060020a03166340c10f19868360405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b151561072457600080fd5b6102c65a03f1151561073557600080fd5b5050505b600154600160a060020a0316636a28f0006040518163ffffffff1660e060020a028152600401600060405180830381600087803b151561077857600080fd5b6102c65a03f1151561078957600080fd5b5050507fd26bc13d5a30cb67cbea6d0927234e897dd66eb4cab3db0d63181509fea7802660405160405180910390a1505050505050565b60035460009033600160a060020a039081169116146107de57600080fd5b600160a060020a03841615156107f357600080fd5b6000831161080057600080fd5b610808610df3565b151561081357600080fd5b600154600160a060020a03166340c10f19858560405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b151561086957600080fd5b6102c65a03f1151561087a57600080fd5b50505083600160a060020a03167fb412d627f5bf38ffc09d2337ba9c420690c14421460f4c3abfd6cd3ee750d0d0848460405191825260208201526040908101905180910390a29392505050565b60045460a860020a900460ff1681565b600454600160a060020a031681565b60025433600160a060020a0390811691161461090257600080fd5b60045460a060020a900460ff16151561091a57600080fd5b600160045460a860020a900460ff16600281111561093457fe5b1461093e57600080fd5b6004805474ff0000000000000000000000000000000000000000191690557f8e4a943d8cb0ae3aeb93e78326a59e6502d76bc1faeb9a2cbb6204492dbb7a1a60405160405180910390a1565b600354600160a060020a031681565b600254600160a060020a031681565b60025433600160a060020a039081169116146109c357600080fd5b600060045460a860020a900460ff1660028111156109dd57fe5b146109e757600080fd5b6004805475ff000000000000000000000000000000000000000000191660a860020a1790557f7a737593954a3016da0718e58083d34b1f8c0d1f0d404534abc4d4af33fa2ed360405160405180910390a1565b6b05be8b1674882905fa88000081565b60045460a060020a900460ff1681565b60025433600160a060020a03908116911614610a7557600080fd5b60045460a060020a900460ff1615610a8c57600080fd5b600160045460a860020a900460ff166002811115610aa657fe5b14610ab057600080fd5b6004805474ff0000000000000000000000000000000000000000191660a060020a1790557f75ee731553f63397b683c48301221bb5719aa3f6e55e73767d993f87fff4980460405160405180910390a1565b6b0bcfcdffe199cc4627d8000081565b600354600090819033600160a060020a03908116911614610b3257600080fd5b600160a060020a0387161515610b4757600080fd5b60008611610b5457600080fd5b610b5c610df3565b1515610b6757600080fd5b610b7360005487610ddd565b90506b0bcfcdffe199cc4627d80000811115610b8e57600080fd5b6000819055600154600160a060020a03166340c10f19888860405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b1515610be957600080fd5b6102c65a03f11515610bfa57600080fd5b50505086600160a060020a03167f879cffdfd3662dd3aac4614872902349c1fd027fa4b810d073a5aac0b4a6994c87878787604051848152602081018490526060604082018181529082018390526080820184848082843782019150509550505050505060405180910390a25095945050505050565b600154600160a060020a031681565b600354600090819033600160a060020a03908116911614610c9f57600080fd5b600160a060020a0387161515610cb457600080fd5b60008611610cc157600080fd5b610cc9610df3565b1515610cd457600080fd5b610ce060005487610ddd565b90506b0bcfcdffe199cc4627d80000811115610cfb57600080fd5b6000819055600154600160a060020a03166340c10f19888860405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401600060405180830381600087803b1515610d5657600080fd5b6102c65a03f11515610d6757600080fd5b50505086600160a060020a03167fb0dd2858bd0f955d8bd8341ec3b91ab76ee18b3f15203dbefcec939703f982cf87878787604051848152602081018490526060604082018181529082018390526080820184848082843782019150509550505050505060405180910390a25095945050505050565b600082820183811015610dec57fe5b9392505050565b6000600160045460a860020a900460ff166002811115610e0f57fe5b148015610e26575060045460a060020a900460ff16155b9050905600a165627a7a72305820e67fa1c2067032e65b998e1ad8f7a696d830e756e05cd32522e4d16209bbe45d0029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b4C512558B951001F7fB636b966768FB0Cd8Ab4100000000000000000000000030647acC7cE2a1b20DacD05C5a27FD67FF4f469d000000000000000000000000b4C512558B951001F7fB636b966768FB0Cd8Ab41
-----Decoded View---------------
Arg [0] : _team (address): 0xb4C512558B951001F7fB636b966768FB0Cd8Ab41
Arg [1] : _icoAgent (address): 0x30647acC7cE2a1b20DacD05C5a27FD67FF4f469d
Arg [2] : _migrationMaster (address): 0xb4C512558B951001F7fB636b966768FB0Cd8Ab41
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000b4C512558B951001F7fB636b966768FB0Cd8Ab41
Arg [1] : 00000000000000000000000030647acC7cE2a1b20DacD05C5a27FD67FF4f469d
Arg [2] : 000000000000000000000000b4C512558B951001F7fB636b966768FB0Cd8Ab41
Swarm Source
bzzr://bcab5807b194002f04c419000c8c60b4b0cd3c77c8f9978314b38570603ca2b1
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.