ERC-20
Blockchain
Overview
Max Total Supply
1,000,000,000 Seele
Holders
3,856 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
776.52 SeeleValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SeeleToken
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-04-04 */ pragma solidity ^0.4.18; // File: zeppelin-solidity/contracts/ownership/Ownable.sol /** * @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) public onlyOwner { require(newOwner != address(0)); OwnershipTransferred(owner, newOwner); owner = newOwner; } } // File: zeppelin-solidity/contracts/lifecycle/Pausable.sol /** * @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(); } } // File: zeppelin-solidity/contracts/math/SafeMath.sol /** * @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; } } // File: zeppelin-solidity/contracts/token/ERC20Basic.sol /** * @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); } // File: zeppelin-solidity/contracts/token/BasicToken.sol /** * @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]; } } // File: zeppelin-solidity/contracts/token/ERC20.sol /** * @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); } // File: zeppelin-solidity/contracts/token/StandardToken.sol /** * @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]; } /** * @dev Increase the amount of tokens that an owner allowed to a 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 * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ 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; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ 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; } } // File: zeppelin-solidity/contracts/token/PausableToken.sol /** * @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); } } // File: contracts/SeeleToken.sol /// @title SeeleToken Contract /// For more information about this token sale, please visit https://seele.pro /// @author reedhong contract SeeleToken is PausableToken { using SafeMath for uint; /// Constant token specific fields string public constant name = "SeeleToken"; string public constant symbol = "Seele"; uint public constant decimals = 18; /// seele total tokens supply uint public currentSupply; /// Fields that are only changed in constructor /// seele sale contract address public minter; /// Fields that can be changed by functions mapping (address => uint) public lockedBalances; /// claim flag bool public claimedFlag; /* * MODIFIERS */ modifier onlyMinter { require(msg.sender == minter); _; } modifier canClaimed { require(claimedFlag == true); _; } modifier maxTokenAmountNotReached (uint amount){ require(currentSupply.add(amount) <= totalSupply); _; } modifier validAddress( address addr ) { require(addr != address(0x0)); require(addr != address(this)); _; } /** * CONSTRUCTOR * * @dev Initialize the Seele Token * @param _minter The SeeleCrowdSale Contract * @param _maxTotalSupply total supply token */ function SeeleToken(address _minter, address _admin, uint _maxTotalSupply) public validAddress(_admin) validAddress(_minter) { minter = _minter; totalSupply = _maxTotalSupply; claimedFlag = false; paused = true; transferOwnership(_admin); } /** * EXTERNAL FUNCTION * * @dev SeeleCrowdSale contract instance mint token * @param receipent The destination account owned mint tokens * @param amount The amount of mint token * @param isLock Lock token flag * be sent to this address. */ function mint(address receipent, uint amount, bool isLock) external onlyMinter maxTokenAmountNotReached(amount) returns (bool) { if (isLock ) { lockedBalances[receipent] = lockedBalances[receipent].add(amount); } else { balances[receipent] = balances[receipent].add(amount); } currentSupply = currentSupply.add(amount); return true; } function setClaimedFlag(bool flag) public onlyOwner { claimedFlag = flag; } /* * PUBLIC FUNCTIONS */ /// @dev Locking period has passed - Locked tokens have turned into tradeable function claimTokens(address[] receipents) external onlyOwner canClaimed { for (uint i = 0; i < receipents.length; i++) { address receipent = receipents[i]; balances[receipent] = balances[receipent].add(lockedBalances[receipent]); lockedBalances[receipent] = 0; } } function airdrop(address[] receipents, uint[] tokens) external { for (uint i = 0; i < receipents.length; i++) { address receipent = receipents[i]; uint token = tokens[i]; if(balances[msg.sender] >= token ){ balances[msg.sender] = balances[msg.sender].sub(token); balances[receipent] = balances[receipent].add(token); } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"lockedBalances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minter","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"flag","type":"bool"}],"name":"setClaimedFlag","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"claimedFlag","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"receipents","type":"address[]"},{"name":"tokens","type":"uint256[]"}],"name":"airdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"receipent","type":"address"},{"name":"amount","type":"uint256"},{"name":"isLock","type":"bool"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"receipents","type":"address[]"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_minter","type":"address"},{"name":"_admin","type":"address"},{"name":"_maxTotalSupply","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]
Contract Creation Code
60606040526003805460a060020a60ff0219169055341561001f57600080fd5b60405160608061117783398101604052808051919060200180519190602001805160038054600160a060020a03191633600160a060020a03908116919091179091559092508391508116151561007457600080fd5b30600160a060020a031681600160a060020a03161415151561009557600080fd5b83600160a060020a03811615156100ab57600080fd5b30600160a060020a031681600160a060020a0316141515156100cc57600080fd5b60058054600160a060020a038716600160a060020a031990911617905560008390556007805460ff191690556003805460a060020a60ff0219167401000000000000000000000000000000000000000017905561013584640100000000610a2c61013f82021704565b50505050506101cd565b60035433600160a060020a0390811691161461015a57600080fd5b600160a060020a038116151561016f57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360038054600160a060020a031916600160a060020a0392909216919091179055565b610f9b806101dc6000396000f30060606040526004361061013d5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630483a7f6811461014257806306fdde031461017357806307546172146101fd578063095ea7b31461022c57806318160ddd1461026257806323b872dd14610275578063313ce5671461029d5780633f4ba83a146102b057806343b6c7d0146102c557806344e2adeb146102dd5780635c975abb146102f05780636618846314610303578063672434821461032557806370a082311461034f578063771282f61461036e5780638456cb59146103815780638da5cb5b1461039457806395d89b41146103a7578063a9059cbb146103ba578063d1a1beb4146103dc578063d73dd62314610403578063dd62ed3e14610425578063eef72a3c1461044a578063f2fde38b14610468575b600080fd5b341561014d57600080fd5b610161600160a060020a0360043516610487565b60405190815260200160405180910390f35b341561017e57600080fd5b610186610499565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c25780820151838201526020016101aa565b50505050905090810190601f1680156101ef5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020857600080fd5b6102106104d0565b604051600160a060020a03909116815260200160405180910390f35b341561023757600080fd5b61024e600160a060020a03600435166024356104df565b604051901515815260200160405180910390f35b341561026d57600080fd5b61016161050a565b341561028057600080fd5b61024e600160a060020a0360043581169060243516604435610510565b34156102a857600080fd5b61016161053d565b34156102bb57600080fd5b6102c3610542565b005b34156102d057600080fd5b6102c360043515156105c1565b34156102e857600080fd5b61024e6105ef565b34156102fb57600080fd5b61024e6105f8565b341561030e57600080fd5b61024e600160a060020a0360043516602435610608565b341561033057600080fd5b6102c3602460048035828101929082013591813591820191013561062c565b341561035a57600080fd5b610161600160a060020a036004351661071e565b341561037957600080fd5b610161610739565b341561038c57600080fd5b6102c361073f565b341561039f57600080fd5b6102106107c3565b34156103b257600080fd5b6101866107d2565b34156103c557600080fd5b61024e600160a060020a0360043516602435610809565b34156103e757600080fd5b61024e600160a060020a0360043516602435604435151561082d565b341561040e57600080fd5b61024e600160a060020a0360043516602435610920565b341561043057600080fd5b610161600160a060020a0360043581169060243516610944565b341561045557600080fd5b6102c3600480356024810191013561096f565b341561047357600080fd5b6102c3600160a060020a0360043516610a2c565b60066020526000908152604090205481565b60408051908101604052600a81527f5365656c65546f6b656e00000000000000000000000000000000000000000000602082015281565b600554600160a060020a031681565b60035460009060a060020a900460ff16156104f957600080fd5b6105038383610ac7565b9392505050565b60005481565b60035460009060a060020a900460ff161561052a57600080fd5b610535848484610b33565b949350505050565b601281565b60035433600160a060020a0390811691161461055d57600080fd5b60035460a060020a900460ff16151561057557600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b60035433600160a060020a039081169116146105dc57600080fd5b6007805460ff1916911515919091179055565b60075460ff1681565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161561062257600080fd5b6105038383610cb5565b600080805b858310156107155786868481811061064557fe5b90506020020135600160a060020a03169150848484818110151561066557fe5b600160a060020a0333166000908152600160209081526040909120549102929092013592505081901061070a57600160a060020a0333166000908152600160205260409020546106bb908263ffffffff610daf16565b600160a060020a0333811660009081526001602052604080822093909355908416815220546106f0908263ffffffff610dc116565b600160a060020a0383166000908152600160205260409020555b600190920191610631565b50505050505050565b600160a060020a031660009081526001602052604090205490565b60045481565b60035433600160a060020a0390811691161461075a57600080fd5b60035460a060020a900460ff161561077157600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600354600160a060020a031681565b60408051908101604052600581527f5365656c65000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561082357600080fd5b6105038383610dd0565b60055460009033600160a060020a0390811691161461084b57600080fd5b8260005461086482600454610dc190919063ffffffff16565b111561086f57600080fd5b82156108bc57600160a060020a03851660009081526006602052604090205461089e908563ffffffff610dc116565b600160a060020a0386166000908152600660205260409020556108ff565b600160a060020a0385166000908152600160205260409020546108e5908563ffffffff610dc116565b600160a060020a0386166000908152600160205260409020555b600454610912908563ffffffff610dc116565b600455506001949350505050565b60035460009060a060020a900460ff161561093a57600080fd5b6105038383610ecb565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600090819033600160a060020a0390811691161461098f57600080fd5b60075460ff1615156001146109a357600080fd5b600091505b82821015610a26578383838181106109bc57fe5b60209081029290920135600160a060020a031660008181526006845260408082205460019095529020549093506109f592909150610dc1565b600160a060020a038216600090815260016020818152604080842094909455600690529181205591909101906109a8565b50505050565b60035433600160a060020a03908116911614610a4757600080fd5b600160a060020a0381161515610a5c57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000600160a060020a0383161515610b4a57600080fd5b600160a060020a038416600090815260016020526040902054821115610b6f57600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610ba257600080fd5b600160a060020a038416600090815260016020526040902054610bcb908363ffffffff610daf16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610c00908363ffffffff610dc116565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610c48908363ffffffff610daf16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610d1257600160a060020a033381166000908152600260209081526040808320938816835292905290812055610d49565b610d22818463ffffffff610daf16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600082821115610dbb57fe5b50900390565b60008282018381101561050357fe5b6000600160a060020a0383161515610de757600080fd5b600160a060020a033316600090815260016020526040902054821115610e0c57600080fd5b600160a060020a033316600090815260016020526040902054610e35908363ffffffff610daf16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610e6a908363ffffffff610dc116565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610f03908363ffffffff610dc116565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a3506001929150505600a165627a7a723058201bd4ee035a9dd41f82083fe269e57575efc8dced1aa2ff778823c83158544c43002900000000000000000000000038e03c0750dae1671f69067e8565de2d1009ae0a00000000000000000000000000a15056034ceffe6b0f3b8ac9c5d75fd20a70460000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Deployed Bytecode
0x60606040526004361061013d5763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630483a7f6811461014257806306fdde031461017357806307546172146101fd578063095ea7b31461022c57806318160ddd1461026257806323b872dd14610275578063313ce5671461029d5780633f4ba83a146102b057806343b6c7d0146102c557806344e2adeb146102dd5780635c975abb146102f05780636618846314610303578063672434821461032557806370a082311461034f578063771282f61461036e5780638456cb59146103815780638da5cb5b1461039457806395d89b41146103a7578063a9059cbb146103ba578063d1a1beb4146103dc578063d73dd62314610403578063dd62ed3e14610425578063eef72a3c1461044a578063f2fde38b14610468575b600080fd5b341561014d57600080fd5b610161600160a060020a0360043516610487565b60405190815260200160405180910390f35b341561017e57600080fd5b610186610499565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c25780820151838201526020016101aa565b50505050905090810190601f1680156101ef5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020857600080fd5b6102106104d0565b604051600160a060020a03909116815260200160405180910390f35b341561023757600080fd5b61024e600160a060020a03600435166024356104df565b604051901515815260200160405180910390f35b341561026d57600080fd5b61016161050a565b341561028057600080fd5b61024e600160a060020a0360043581169060243516604435610510565b34156102a857600080fd5b61016161053d565b34156102bb57600080fd5b6102c3610542565b005b34156102d057600080fd5b6102c360043515156105c1565b34156102e857600080fd5b61024e6105ef565b34156102fb57600080fd5b61024e6105f8565b341561030e57600080fd5b61024e600160a060020a0360043516602435610608565b341561033057600080fd5b6102c3602460048035828101929082013591813591820191013561062c565b341561035a57600080fd5b610161600160a060020a036004351661071e565b341561037957600080fd5b610161610739565b341561038c57600080fd5b6102c361073f565b341561039f57600080fd5b6102106107c3565b34156103b257600080fd5b6101866107d2565b34156103c557600080fd5b61024e600160a060020a0360043516602435610809565b34156103e757600080fd5b61024e600160a060020a0360043516602435604435151561082d565b341561040e57600080fd5b61024e600160a060020a0360043516602435610920565b341561043057600080fd5b610161600160a060020a0360043581169060243516610944565b341561045557600080fd5b6102c3600480356024810191013561096f565b341561047357600080fd5b6102c3600160a060020a0360043516610a2c565b60066020526000908152604090205481565b60408051908101604052600a81527f5365656c65546f6b656e00000000000000000000000000000000000000000000602082015281565b600554600160a060020a031681565b60035460009060a060020a900460ff16156104f957600080fd5b6105038383610ac7565b9392505050565b60005481565b60035460009060a060020a900460ff161561052a57600080fd5b610535848484610b33565b949350505050565b601281565b60035433600160a060020a0390811691161461055d57600080fd5b60035460a060020a900460ff16151561057557600080fd5b6003805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b60035433600160a060020a039081169116146105dc57600080fd5b6007805460ff1916911515919091179055565b60075460ff1681565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161561062257600080fd5b6105038383610cb5565b600080805b858310156107155786868481811061064557fe5b90506020020135600160a060020a03169150848484818110151561066557fe5b600160a060020a0333166000908152600160209081526040909120549102929092013592505081901061070a57600160a060020a0333166000908152600160205260409020546106bb908263ffffffff610daf16565b600160a060020a0333811660009081526001602052604080822093909355908416815220546106f0908263ffffffff610dc116565b600160a060020a0383166000908152600160205260409020555b600190920191610631565b50505050505050565b600160a060020a031660009081526001602052604090205490565b60045481565b60035433600160a060020a0390811691161461075a57600080fd5b60035460a060020a900460ff161561077157600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600354600160a060020a031681565b60408051908101604052600581527f5365656c65000000000000000000000000000000000000000000000000000000602082015281565b60035460009060a060020a900460ff161561082357600080fd5b6105038383610dd0565b60055460009033600160a060020a0390811691161461084b57600080fd5b8260005461086482600454610dc190919063ffffffff16565b111561086f57600080fd5b82156108bc57600160a060020a03851660009081526006602052604090205461089e908563ffffffff610dc116565b600160a060020a0386166000908152600660205260409020556108ff565b600160a060020a0385166000908152600160205260409020546108e5908563ffffffff610dc116565b600160a060020a0386166000908152600160205260409020555b600454610912908563ffffffff610dc116565b600455506001949350505050565b60035460009060a060020a900460ff161561093a57600080fd5b6105038383610ecb565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600090819033600160a060020a0390811691161461098f57600080fd5b60075460ff1615156001146109a357600080fd5b600091505b82821015610a26578383838181106109bc57fe5b60209081029290920135600160a060020a031660008181526006845260408082205460019095529020549093506109f592909150610dc1565b600160a060020a038216600090815260016020818152604080842094909455600690529181205591909101906109a8565b50505050565b60035433600160a060020a03908116911614610a4757600080fd5b600160a060020a0381161515610a5c57600080fd5b600354600160a060020a0380831691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000600160a060020a0383161515610b4a57600080fd5b600160a060020a038416600090815260016020526040902054821115610b6f57600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610ba257600080fd5b600160a060020a038416600090815260016020526040902054610bcb908363ffffffff610daf16565b600160a060020a038086166000908152600160205260408082209390935590851681522054610c00908363ffffffff610dc116565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054610c48908363ffffffff610daf16565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b600160a060020a03338116600090815260026020908152604080832093861683529290529081205480831115610d1257600160a060020a033381166000908152600260209081526040808320938816835292905290812055610d49565b610d22818463ffffffff610daf16565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600082821115610dbb57fe5b50900390565b60008282018381101561050357fe5b6000600160a060020a0383161515610de757600080fd5b600160a060020a033316600090815260016020526040902054821115610e0c57600080fd5b600160a060020a033316600090815260016020526040902054610e35908363ffffffff610daf16565b600160a060020a033381166000908152600160205260408082209390935590851681522054610e6a908363ffffffff610dc116565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610f03908363ffffffff610dc116565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a3506001929150505600a165627a7a723058201bd4ee035a9dd41f82083fe269e57575efc8dced1aa2ff778823c83158544c430029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000038e03C0750daE1671f69067E8565De2D1009aE0a00000000000000000000000000a15056034ceffe6b0f3b8ac9c5d75fd20a70460000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
-----Decoded View---------------
Arg [0] : _minter (address): 0x38e03C0750daE1671f69067E8565De2D1009aE0a
Arg [1] : _admin (address): 0x00a15056034cEFFe6b0f3B8aC9C5d75Fd20A7046
Arg [2] : _maxTotalSupply (uint256): 1000000000000000000000000000
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000038e03C0750daE1671f69067E8565De2D1009aE0a
Arg [1] : 00000000000000000000000000a15056034ceffe6b0f3b8ac9c5d75fd20a7046
Arg [2] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Swarm Source
bzzr://1bd4ee035a9dd41f82083fe269e57575efc8dced1aa2ff778823c83158544c43
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.