Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
52,669,276.662574853048734633 TKA
Holders
4,443 ( 0.068%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
109.846153846153846153 TKAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TokiaToken
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-12-28 */ 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) { uint256 c = a * b; require(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) { require(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(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) public 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 SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { function safeTransfer(ERC20Basic token, address to, uint256 value) internal { assert(token.transfer(to, value)); } function safeTransferFrom(ERC20 token, address from, address to, uint256 value) internal { assert(token.transferFrom(from, to, value)); } function safeApprove(ERC20 token, address spender, uint256 value) internal { assert(token.approve(spender, value)); } } /** * @title TokenTimelock * @dev TokenTimelock is a token holder contract that will allow a * beneficiary to extract the tokens after a given release time */ contract TokenTimelock { using SafeERC20 for ERC20Basic; // ERC20 basic token contract being held ERC20Basic public token; // beneficiary of tokens after they are released address public beneficiary; // timestamp when token release is enabled uint64 public releaseTime; function TokenTimelock(ERC20Basic _token, address _beneficiary, uint64 _releaseTime) public { require(_releaseTime > uint64(block.timestamp)); token = _token; beneficiary = _beneficiary; releaseTime = _releaseTime; } /** * @notice Transfers tokens held by timelock to beneficiary. */ function release() public { require(uint64(block.timestamp) >= releaseTime); uint256 amount = token.balanceOf(this); require(amount > 0); token.safeTransfer(beneficiary, amount); } } /** * @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 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; } } contract Owned { address public owner; function Owned() public { owner = msg.sender; } modifier onlyOwner { require(msg.sender == owner); _; } } contract TokiaToken is StandardToken, Owned { string public constant name = "TokiaToken"; string public constant symbol = "TKA"; uint8 public constant decimals = 18; /// Maximum tokens to be allocated. uint256 public constant HARD_CAP = 62500000 * 10**uint256(decimals); /// Maximum tokens to be allocated on the sale (75% of the hard cap) uint256 public constant TOKENS_SALE_HARD_CAP = 50000000 * 10**uint256(decimals); /// Base exchange rate is set to 1 ETH = 714 TKA. uint256 public constant BASE_RATE = 714; /// seconds since 01.01.1970 to 04.12.2017 (both 00:00:00 o'clock UTC) /// presale start time uint64 private constant date04Dec2017 = 1512345600; /// presale end time; round 1 start time uint64 private constant date01Jan2018 = 1514764800; /// round 1 end time; round 2 start time uint64 private constant date01Feb2018 = 1517443200; /// round 2 end time; round 3 start time uint64 private constant date15Feb2018 = 1518652800; /// round 3 end time; round 4 start time uint64 private constant date01Mar2018 = 1519862400; /// round 4 end time; closing token sale uint64 private constant date15Mar2018 = 1521072000; /// team tokens are locked until this date (01.01.2019) uint64 private constant date01Jan2019 = 1546300800; /// token trading opening time (01.05.2018) uint64 private constant date01May2018 = 1525219199; /// no tokens can be ever issued when this is set to "true" bool public tokenSaleClosed = false; /// contract to be called to release the Tokia team tokens address public timelockContractAddress; /// Issue event index starting from 0. uint64 public issueIndex = 0; /// Emitted for each sucuessful token purchase. event Issue(uint64 issueIndex, address addr, uint256 tokenAmount); modifier inProgress { require(totalSupply < TOKENS_SALE_HARD_CAP && !tokenSaleClosed); _; } /// Allow the closing to happen only once modifier beforeEnd { require(!tokenSaleClosed); _; } /// Require that the end of the sale has passed (time is 01 May 2018 or later) modifier tradingOpen { require(uint64(block.timestamp) > date01May2018); _; } function TokiaToken() public { } /// @dev This default function allows token to be purchased by directly /// sending ether to this smart contract. function () public payable { purchaseTokens(msg.sender); } /// @dev Issue token based on Ether received. /// @param _beneficiary Address that newly issued token will be sent to. function purchaseTokens(address _beneficiary) public payable inProgress { // only accept a minimum amount of ETH? require(msg.value >= 0.01 ether); uint256 tokens = computeTokenAmount(msg.value); doIssueTokens(_beneficiary, tokens); /// forward the raised funds to the contract creator owner.transfer(this.balance); } /// @dev Batch issue tokens on the presale /// @param _addresses addresses that the presale tokens will be sent to. /// @param _addresses the amounts of tokens, with decimals expanded (full). function issueTokensMulti(address[] _addresses, uint256[] _tokens) public onlyOwner inProgress { require(_addresses.length == _tokens.length); require(_addresses.length <= 100); for (uint256 i = 0; i < _tokens.length; i = i.add(1)) { doIssueTokens(_addresses[i], _tokens[i].mul(10**uint256(decimals))); } } /// @dev Issue tokens for a single buyer on the presale /// @param _beneficiary addresses that the presale tokens will be sent to. /// @param _tokens the amount of tokens, with decimals expanded (full). function issueTokens(address _beneficiary, uint256 _tokens) public onlyOwner inProgress { doIssueTokens(_beneficiary, _tokens.mul(10**uint256(decimals))); } /// @dev issue tokens for a single buyer /// @param _beneficiary addresses that the tokens will be sent to. /// @param _tokens the amount of tokens, with decimals expanded (full). function doIssueTokens(address _beneficiary, uint256 _tokens) internal { require(_beneficiary != address(0)); // compute without actually increasing it uint256 increasedTotalSupply = totalSupply.add(_tokens); // roll back if hard cap reached require(increasedTotalSupply <= TOKENS_SALE_HARD_CAP); // increase token total supply totalSupply = increasedTotalSupply; // update the beneficiary balance to number of tokens sent balances[_beneficiary] = balances[_beneficiary].add(_tokens); // event is fired when tokens issued Issue( issueIndex++, _beneficiary, _tokens ); } /// @dev Returns the current price. function price() public view returns (uint256 tokens) { return computeTokenAmount(1 ether); } /// @dev Compute the amount of TKA token that can be purchased. /// @param ethAmount Amount of Ether to purchase TKA. /// @return Amount of TKA token to purchase function computeTokenAmount(uint256 ethAmount) internal view returns (uint256 tokens) { uint256 tokenBase = ethAmount.mul(BASE_RATE); uint8[5] memory roundDiscountPercentages = [47, 35, 25, 15, 5]; uint8 roundDiscountPercentage = roundDiscountPercentages[currentRoundIndex()]; uint8 amountDiscountPercentage = getAmountDiscountPercentage(tokenBase); tokens = tokenBase.mul(100).div(100 - (roundDiscountPercentage + amountDiscountPercentage)); } /// @dev Compute the additional discount for the purchaed amount of TKA /// @param tokenBase the base tokens amount computed only against the base rate /// @return integer representing the percentage discount function getAmountDiscountPercentage(uint256 tokenBase) internal pure returns (uint8) { if(tokenBase >= 1500 * 10**uint256(decimals)) return 9; if(tokenBase >= 1000 * 10**uint256(decimals)) return 5; if(tokenBase >= 500 * 10**uint256(decimals)) return 3; return 0; } /// @dev Determine the current sale round /// @return integer representing the index of the current sale round function currentRoundIndex() internal view returns (uint8 roundNum) { roundNum = currentRoundIndexByDate(); /// token caps for each round uint256[5] memory roundCaps = [ 10000000 * 10**uint256(decimals), 22500000 * 10**uint256(decimals), // + round 1 35000000 * 10**uint256(decimals), // + round 2 40000000 * 10**uint256(decimals), // + round 3 50000000 * 10**uint256(decimals) // + round 4 ]; /// round determined by conjunction of both time and total sold tokens while(roundNum < 4 && totalSupply > roundCaps[roundNum]) { roundNum++; } } /// @dev Determine the current sale tier. /// @return the index of the current sale tier by date. function currentRoundIndexByDate() internal view returns (uint8 roundNum) { uint64 _now = uint64(block.timestamp); require(_now <= date15Mar2018); roundNum = 0; if(_now > date01Mar2018) roundNum = 4; if(_now > date15Feb2018) roundNum = 3; if(_now > date01Feb2018) roundNum = 2; if(_now > date01Jan2018) roundNum = 1; return roundNum; } /// @dev Closes the sale, issues the team tokens and burns the unsold function close() public onlyOwner beforeEnd { /// team tokens are equal to 25% of the sold tokens uint256 teamTokens = totalSupply.mul(25).div(100); /// check for rounding errors when cap is reached if(totalSupply.add(teamTokens) > HARD_CAP) { teamTokens = HARD_CAP.sub(totalSupply); } /// team tokens are locked until this date (01.01.2019) TokenTimelock lockedTeamTokens = new TokenTimelock(this, owner, date01Jan2019); timelockContractAddress = address(lockedTeamTokens); balances[timelockContractAddress] = balances[timelockContractAddress].add(teamTokens); /// increase token total supply totalSupply = totalSupply.add(teamTokens); /// fire event when tokens issued Issue( issueIndex++, timelockContractAddress, teamTokens ); /// burn the unallocated tokens - no more tokens can be issued after this line tokenSaleClosed = true; /// forward the raised funds to the contract creator owner.transfer(this.balance); } /// Transfer limited by the tradingOpen modifier (time is 01 May 2018 or later) function transferFrom(address _from, address _to, uint256 _value) public tradingOpen returns (bool) { return super.transferFrom(_from, _to, _value); } /// Transfer limited by the tradingOpen modifier (time is 01 May 2018 or later) function transfer(address _to, uint256 _value) public tradingOpen returns (bool) { return super.transfer(_to, _value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"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":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"HARD_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BASE_RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"close","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"},{"name":"_tokens","type":"uint256"}],"name":"issueTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[],"name":"issueIndex","outputs":[{"name":"","type":"uint64"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"timelockContractAddress","outputs":[{"name":"","type":"address"}],"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":"_addresses","type":"address[]"},{"name":"_tokens","type":"uint256[]"}],"name":"issueTokensMulti","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"price","outputs":[{"name":"tokens","type":"uint256"}],"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":"_beneficiary","type":"address"}],"name":"purchaseTokens","outputs":[],"payable":true,"stateMutability":"payable","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":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenSaleClosed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_SALE_HARD_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"issueIndex","type":"uint64"},{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"tokenAmount","type":"uint256"}],"name":"Issue","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
60606040526003805460a060020a60ff02191690556004805460a060020a60e060020a0319169055341561003257600080fd5b60038054600160a060020a03191633600160a060020a03161790556117708061005c6000396000f30060606040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610148578063095ea7b3146101d257806318160ddd1461020857806323b872dd1461022d57806327e235e314610255578063313ce567146102745780633a03171c1461029d57806341910f90146102b057806343d726d6146102c3578063475a9fa9146102d657806366188463146102f85780636a28f8281461031a57806370a082311461034a5780637fc88fe2146103695780638da5cb5b1461039857806392e8438c146103ab57806395d89b411461043a578063a035b1fe1461044d578063a9059cbb14610460578063ce55703114610482578063d73dd62314610496578063dd62ed3e146104b8578063e55a07c2146104dd578063f946372c146104f0575b61014633610503565b005b341561015357600080fd5b61015b61059c565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019757808201518382015260200161017f565b50505050905090810190601f1680156101c45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101dd57600080fd5b6101f4600160a060020a03600435166024356105d3565b604051901515815260200160405180910390f35b341561021357600080fd5b61021b61063f565b60405190815260200160405180910390f35b341561023857600080fd5b6101f4600160a060020a0360043581169060243516604435610645565b341561026057600080fd5b61021b600160a060020a0360043516610674565b341561027f57600080fd5b610287610686565b60405160ff909116815260200160405180910390f35b34156102a857600080fd5b61021b61068b565b34156102bb57600080fd5b61021b61069a565b34156102ce57600080fd5b6101466106a0565b34156102e157600080fd5b610146600160a060020a036004351660243561092c565b341561030357600080fd5b6101f4600160a060020a036004351660243561099a565b341561032557600080fd5b61032d610a94565b60405167ffffffffffffffff909116815260200160405180910390f35b341561035557600080fd5b61021b600160a060020a0360043516610aab565b341561037457600080fd5b61037c610aca565b604051600160a060020a03909116815260200160405180910390f35b34156103a357600080fd5b61037c610ad9565b34156103b657600080fd5b610146600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610ae895505050505050565b341561044557600080fd5b61015b610bc6565b341561045857600080fd5b61021b610bfd565b341561046b57600080fd5b6101f4600160a060020a0360043516602435610c15565b610146600160a060020a0360043516610503565b34156104a157600080fd5b6101f4600160a060020a0360043516602435610c42565b34156104c357600080fd5b61021b600160a060020a0360043581169060243516610ce6565b34156104e857600080fd5b6101f4610d11565b34156104fb57600080fd5b61021b610d21565b600080546a295be96e640669720000009010801561052b575060035460a060020a900460ff16155b151561053657600080fd5b662386f26fc1000034101561054a57600080fd5b61055334610d30565b905061055f8282610dd2565b600354600160a060020a039081169030163180156108fc0290604051600060405180830381858888f19350505050151561059857600080fd5b5050565b60408051908101604052600a81527f546f6b6961546f6b656e00000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b6000635ae8ff7f4267ffffffffffffffff161161066157600080fd5b61066c848484610f03565b949350505050565b60016020526000908152604090205481565b601281565b6a33b2e3c9fd0803ce80000081565b6102ca81565b600354600090819033600160a060020a039081169116146106c057600080fd5b60035460a060020a900460ff16156106d757600080fd5b6106fe60646106f2601960005461108590919063ffffffff16565b9063ffffffff6110ac16565b6000549092506a33b2e3c9fd0803ce80000090610721908463ffffffff6110c316565b111561074957600054610746906a33b2e3c9fd0803ce8000009063ffffffff6110d516565b91505b6003543090600160a060020a0316635c2aad80610764611378565b600160a060020a03938416815291909216602082015267ffffffffffffffff90911660408083019190915260609091019051809103906000f08015156107a957600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038381169190911791829055166000908152600160205260409020549091506107f490836110c3565b600454600160a060020a031660009081526001602052604081209190915554610823908363ffffffff6110c316565b600055600480547bffffffffffffffff000000000000000000000000000000000000000019811660a060020a9182900467ffffffffffffffff9081166001810190911690920217918290557fbb01fb1f9c41fc73b0707aa26ec16885d88ac330b3c93d1f20c7f876669bf10391600160a060020a03168460405167ffffffffffffffff9093168352600160a060020a0390911660208301526040808301919091526060909101905180910390a16003805474ff0000000000000000000000000000000000000000191660a060020a1790819055600160a060020a039081169030163180156108fc0290604051600060405180830381858888f19350505050151561059857600080fd5b60035433600160a060020a0390811691161461094757600080fd5b6000546a295be96e640669720000009010801561096e575060035460a060020a900460ff16155b151561097957600080fd5b6105988261099583670de0b6b3a764000063ffffffff61108516565b610dd2565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156109f757600160a060020a033381166000908152600260209081526040808320938816835292905290812055610a2e565b610a07818463ffffffff6110d516565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b60045460a060020a900467ffffffffffffffff1681565b600160a060020a0381166000908152600160205260409020545b919050565b600454600160a060020a031681565b600354600160a060020a031681565b60035460009033600160a060020a03908116911614610b0657600080fd5b6000546a295be96e6406697200000090108015610b2d575060035460a060020a900460ff16155b1515610b3857600080fd5b8151835114610b4657600080fd5b606483511115610b5557600080fd5b5060005b8151811015610bc157610ba9838281518110610b7157fe5b90602001906020020151610995670de0b6b3a7640000858581518110610b9357fe5b906020019060200201519063ffffffff61108516565b610bba81600163ffffffff6110c316565b9050610b59565b505050565b60408051908101604052600381527f544b410000000000000000000000000000000000000000000000000000000000602082015281565b6000610c10670de0b6b3a7640000610d30565b905090565b6000635ae8ff7f4267ffffffffffffffff1611610c3157600080fd5b610c3b83836110ea565b9392505050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610c7a908363ffffffff6110c316565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035460a060020a900460ff1681565b6a295be96e6406697200000081565b600080610d3b611388565b600080610d50866102ca63ffffffff61108516565b935060a06040519081016040908152602f825260236020830152601990820152600f606082015260056080820152925082610d896111e5565b60ff1660058110610d9657fe5b60200201519150610da684611295565b9050610dc881830160640360ff166106f260648761108590919063ffffffff16565b9695505050505050565b6000600160a060020a0383161515610de957600080fd5b600054610dfc908363ffffffff6110c316565b90506a295be96e64066972000000811115610e1657600080fd5b6000818155600160a060020a038416815260016020526040902054610e41908363ffffffff6110c316565b600160a060020a038416600090815260016020819052604091829020929092556004805467ffffffffffffffff60a060020a8083048216958601909116027bffffffffffffffff0000000000000000000000000000000000000000199091161790557fbb01fb1f9c41fc73b0707aa26ec16885d88ac330b3c93d1f20c7f876669bf1039190859085905167ffffffffffffffff9093168352600160a060020a0390911660208301526040808301919091526060909101905180910390a1505050565b6000600160a060020a0383161515610f1a57600080fd5b600160a060020a038416600090815260016020526040902054821115610f3f57600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610f7257600080fd5b600160a060020a038416600090815260016020526040902054610f9b908363ffffffff6110d516565b600160a060020a038086166000908152600160205260408082209390935590851681522054610fd0908363ffffffff6110c316565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054611018908363ffffffff6110d516565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60008282028315806110a1575082848281151561109e57fe5b04145b1515610c3b57600080fd5b60008082848115156110ba57fe5b04949350505050565b600082820183811015610c3b57600080fd5b6000828211156110e457600080fd5b50900390565b6000600160a060020a038316151561110157600080fd5b600160a060020a03331660009081526001602052604090205482111561112657600080fd5b600160a060020a03331660009081526001602052604090205461114f908363ffffffff6110d516565b600160a060020a033381166000908152600160205260408082209390935590851681522054611184908363ffffffff6110c316565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60006111ef6113b0565b6111f76112e7565b915060a060405190810160409081526a084595161401484a00000082526a129c8f71ad02e2a680000060208301526a1cf389cd46047d03000000908201526a211654585005212800000060608201526a295be96e64066972000000608082015290505b60048260ff1610801561128157508060ff83166005811061127757fe5b6020020151600054115b156112915760019091019061125a565b5090565b6000685150ae84a8cdf0000082106112af57506009610ac5565b683635c9adc5dea0000082106112c757506005610ac5565b681b1ae4d6e2ef50000082106112df57506003610ac5565b506000919050565b600042635aa9b78067ffffffffffffffff8216111561130557600080fd5b60009150635a97428067ffffffffffffffff8216111561132457600491505b635a84cd8067ffffffffffffffff8216111561133f57600391505b635a72588067ffffffffffffffff8216111561135a57600291505b635a497a0067ffffffffffffffff8216111561129157600191505090565b60405161036d806113d883390190565b60a06040519081016040526005815b6000815260001990910190602001816113975790505090565b60a06040519081016040526005815b60008152602001906001900390816113bf579050509056006060604052341561000f57600080fd5b60405160608061036d8339810160405280805191906020018051919060200180519150506001604060020a034281169082161161004b57600080fd5b60008054600160a060020a0319908116600160a060020a0395861617825560018054909116939094169290921760a060020a60e060020a031916740100000000000000000000000000000000000000006001604060020a039290921691909102179091556102ae9081906100bf90396000f3006060604052600436106100485763ffffffff60e060020a60003504166338af3eed811461004d57806386d1a69f1461007c578063b91d400114610091578063fc0c546a146100c1575b600080fd5b341561005857600080fd5b6100606100d4565b604051600160a060020a03909116815260200160405180910390f35b341561008757600080fd5b61008f6100e3565b005b341561009c57600080fd5b6100a46101c6565b60405167ffffffffffffffff909116815260200160405180910390f35b34156100cc57600080fd5b6100606101ee565b600154600160a060020a031681565b60015460009067ffffffffffffffff74010000000000000000000000000000000000000000909104811642909116101561011c57600080fd5b60008054600160a060020a0316906370a082319030906040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561017757600080fd5b6102c65a03f1151561018857600080fd5b5050506040518051915050600081116101a057600080fd5b6001546000546101c391600160a060020a0391821691168363ffffffff6101fd16565b50565b60015474010000000000000000000000000000000000000000900467ffffffffffffffff1681565b600054600160a060020a031681565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561025a57600080fd5b6102c65a03f1151561026b57600080fd5b50505060405180519050151561027d57fe5b5050505600a165627a7a72305820008c60ae04896e6e500c0d8b6cd5e916e5d28189c6791dd5441785c29a8eb8370029a165627a7a72305820a42cb227fe2cf3fe040328d82cfca2da20681ad9fed247c16317302466dffd1c0029
Deployed Bytecode
0x60606040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610148578063095ea7b3146101d257806318160ddd1461020857806323b872dd1461022d57806327e235e314610255578063313ce567146102745780633a03171c1461029d57806341910f90146102b057806343d726d6146102c3578063475a9fa9146102d657806366188463146102f85780636a28f8281461031a57806370a082311461034a5780637fc88fe2146103695780638da5cb5b1461039857806392e8438c146103ab57806395d89b411461043a578063a035b1fe1461044d578063a9059cbb14610460578063ce55703114610482578063d73dd62314610496578063dd62ed3e146104b8578063e55a07c2146104dd578063f946372c146104f0575b61014633610503565b005b341561015357600080fd5b61015b61059c565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561019757808201518382015260200161017f565b50505050905090810190601f1680156101c45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156101dd57600080fd5b6101f4600160a060020a03600435166024356105d3565b604051901515815260200160405180910390f35b341561021357600080fd5b61021b61063f565b60405190815260200160405180910390f35b341561023857600080fd5b6101f4600160a060020a0360043581169060243516604435610645565b341561026057600080fd5b61021b600160a060020a0360043516610674565b341561027f57600080fd5b610287610686565b60405160ff909116815260200160405180910390f35b34156102a857600080fd5b61021b61068b565b34156102bb57600080fd5b61021b61069a565b34156102ce57600080fd5b6101466106a0565b34156102e157600080fd5b610146600160a060020a036004351660243561092c565b341561030357600080fd5b6101f4600160a060020a036004351660243561099a565b341561032557600080fd5b61032d610a94565b60405167ffffffffffffffff909116815260200160405180910390f35b341561035557600080fd5b61021b600160a060020a0360043516610aab565b341561037457600080fd5b61037c610aca565b604051600160a060020a03909116815260200160405180910390f35b34156103a357600080fd5b61037c610ad9565b34156103b657600080fd5b610146600460248135818101908301358060208181020160405190810160405280939291908181526020018383602002808284378201915050505050509190803590602001908201803590602001908080602002602001604051908101604052809392919081815260200183836020028082843750949650610ae895505050505050565b341561044557600080fd5b61015b610bc6565b341561045857600080fd5b61021b610bfd565b341561046b57600080fd5b6101f4600160a060020a0360043516602435610c15565b610146600160a060020a0360043516610503565b34156104a157600080fd5b6101f4600160a060020a0360043516602435610c42565b34156104c357600080fd5b61021b600160a060020a0360043581169060243516610ce6565b34156104e857600080fd5b6101f4610d11565b34156104fb57600080fd5b61021b610d21565b600080546a295be96e640669720000009010801561052b575060035460a060020a900460ff16155b151561053657600080fd5b662386f26fc1000034101561054a57600080fd5b61055334610d30565b905061055f8282610dd2565b600354600160a060020a039081169030163180156108fc0290604051600060405180830381858888f19350505050151561059857600080fd5b5050565b60408051908101604052600a81527f546f6b6961546f6b656e00000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60005481565b6000635ae8ff7f4267ffffffffffffffff161161066157600080fd5b61066c848484610f03565b949350505050565b60016020526000908152604090205481565b601281565b6a33b2e3c9fd0803ce80000081565b6102ca81565b600354600090819033600160a060020a039081169116146106c057600080fd5b60035460a060020a900460ff16156106d757600080fd5b6106fe60646106f2601960005461108590919063ffffffff16565b9063ffffffff6110ac16565b6000549092506a33b2e3c9fd0803ce80000090610721908463ffffffff6110c316565b111561074957600054610746906a33b2e3c9fd0803ce8000009063ffffffff6110d516565b91505b6003543090600160a060020a0316635c2aad80610764611378565b600160a060020a03938416815291909216602082015267ffffffffffffffff90911660408083019190915260609091019051809103906000f08015156107a957600080fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038381169190911791829055166000908152600160205260409020549091506107f490836110c3565b600454600160a060020a031660009081526001602052604081209190915554610823908363ffffffff6110c316565b600055600480547bffffffffffffffff000000000000000000000000000000000000000019811660a060020a9182900467ffffffffffffffff9081166001810190911690920217918290557fbb01fb1f9c41fc73b0707aa26ec16885d88ac330b3c93d1f20c7f876669bf10391600160a060020a03168460405167ffffffffffffffff9093168352600160a060020a0390911660208301526040808301919091526060909101905180910390a16003805474ff0000000000000000000000000000000000000000191660a060020a1790819055600160a060020a039081169030163180156108fc0290604051600060405180830381858888f19350505050151561059857600080fd5b60035433600160a060020a0390811691161461094757600080fd5b6000546a295be96e640669720000009010801561096e575060035460a060020a900460ff16155b151561097957600080fd5b6105988261099583670de0b6b3a764000063ffffffff61108516565b610dd2565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156109f757600160a060020a033381166000908152600260209081526040808320938816835292905290812055610a2e565b610a07818463ffffffff6110d516565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b60045460a060020a900467ffffffffffffffff1681565b600160a060020a0381166000908152600160205260409020545b919050565b600454600160a060020a031681565b600354600160a060020a031681565b60035460009033600160a060020a03908116911614610b0657600080fd5b6000546a295be96e6406697200000090108015610b2d575060035460a060020a900460ff16155b1515610b3857600080fd5b8151835114610b4657600080fd5b606483511115610b5557600080fd5b5060005b8151811015610bc157610ba9838281518110610b7157fe5b90602001906020020151610995670de0b6b3a7640000858581518110610b9357fe5b906020019060200201519063ffffffff61108516565b610bba81600163ffffffff6110c316565b9050610b59565b505050565b60408051908101604052600381527f544b410000000000000000000000000000000000000000000000000000000000602082015281565b6000610c10670de0b6b3a7640000610d30565b905090565b6000635ae8ff7f4267ffffffffffffffff1611610c3157600080fd5b610c3b83836110ea565b9392505050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610c7a908363ffffffff6110c316565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60035460a060020a900460ff1681565b6a295be96e6406697200000081565b600080610d3b611388565b600080610d50866102ca63ffffffff61108516565b935060a06040519081016040908152602f825260236020830152601990820152600f606082015260056080820152925082610d896111e5565b60ff1660058110610d9657fe5b60200201519150610da684611295565b9050610dc881830160640360ff166106f260648761108590919063ffffffff16565b9695505050505050565b6000600160a060020a0383161515610de957600080fd5b600054610dfc908363ffffffff6110c316565b90506a295be96e64066972000000811115610e1657600080fd5b6000818155600160a060020a038416815260016020526040902054610e41908363ffffffff6110c316565b600160a060020a038416600090815260016020819052604091829020929092556004805467ffffffffffffffff60a060020a8083048216958601909116027bffffffffffffffff0000000000000000000000000000000000000000199091161790557fbb01fb1f9c41fc73b0707aa26ec16885d88ac330b3c93d1f20c7f876669bf1039190859085905167ffffffffffffffff9093168352600160a060020a0390911660208301526040808301919091526060909101905180910390a1505050565b6000600160a060020a0383161515610f1a57600080fd5b600160a060020a038416600090815260016020526040902054821115610f3f57600080fd5b600160a060020a0380851660009081526002602090815260408083203390941683529290522054821115610f7257600080fd5b600160a060020a038416600090815260016020526040902054610f9b908363ffffffff6110d516565b600160a060020a038086166000908152600160205260408082209390935590851681522054610fd0908363ffffffff6110c316565b600160a060020a03808516600090815260016020908152604080832094909455878316825260028152838220339093168252919091522054611018908363ffffffff6110d516565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b60008282028315806110a1575082848281151561109e57fe5b04145b1515610c3b57600080fd5b60008082848115156110ba57fe5b04949350505050565b600082820183811015610c3b57600080fd5b6000828211156110e457600080fd5b50900390565b6000600160a060020a038316151561110157600080fd5b600160a060020a03331660009081526001602052604090205482111561112657600080fd5b600160a060020a03331660009081526001602052604090205461114f908363ffffffff6110d516565b600160a060020a033381166000908152600160205260408082209390935590851681522054611184908363ffffffff6110c316565b600160a060020a0380851660008181526001602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60006111ef6113b0565b6111f76112e7565b915060a060405190810160409081526a084595161401484a00000082526a129c8f71ad02e2a680000060208301526a1cf389cd46047d03000000908201526a211654585005212800000060608201526a295be96e64066972000000608082015290505b60048260ff1610801561128157508060ff83166005811061127757fe5b6020020151600054115b156112915760019091019061125a565b5090565b6000685150ae84a8cdf0000082106112af57506009610ac5565b683635c9adc5dea0000082106112c757506005610ac5565b681b1ae4d6e2ef50000082106112df57506003610ac5565b506000919050565b600042635aa9b78067ffffffffffffffff8216111561130557600080fd5b60009150635a97428067ffffffffffffffff8216111561132457600491505b635a84cd8067ffffffffffffffff8216111561133f57600391505b635a72588067ffffffffffffffff8216111561135a57600291505b635a497a0067ffffffffffffffff8216111561129157600191505090565b60405161036d806113d883390190565b60a06040519081016040526005815b6000815260001990910190602001816113975790505090565b60a06040519081016040526005815b60008152602001906001900390816113bf579050509056006060604052341561000f57600080fd5b60405160608061036d8339810160405280805191906020018051919060200180519150506001604060020a034281169082161161004b57600080fd5b60008054600160a060020a0319908116600160a060020a0395861617825560018054909116939094169290921760a060020a60e060020a031916740100000000000000000000000000000000000000006001604060020a039290921691909102179091556102ae9081906100bf90396000f3006060604052600436106100485763ffffffff60e060020a60003504166338af3eed811461004d57806386d1a69f1461007c578063b91d400114610091578063fc0c546a146100c1575b600080fd5b341561005857600080fd5b6100606100d4565b604051600160a060020a03909116815260200160405180910390f35b341561008757600080fd5b61008f6100e3565b005b341561009c57600080fd5b6100a46101c6565b60405167ffffffffffffffff909116815260200160405180910390f35b34156100cc57600080fd5b6100606101ee565b600154600160a060020a031681565b60015460009067ffffffffffffffff74010000000000000000000000000000000000000000909104811642909116101561011c57600080fd5b60008054600160a060020a0316906370a082319030906040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561017757600080fd5b6102c65a03f1151561018857600080fd5b5050506040518051915050600081116101a057600080fd5b6001546000546101c391600160a060020a0391821691168363ffffffff6101fd16565b50565b60015474010000000000000000000000000000000000000000900467ffffffffffffffff1681565b600054600160a060020a031681565b82600160a060020a031663a9059cbb838360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561025a57600080fd5b6102c65a03f1151561026b57600080fd5b50505060405180519050151561027d57fe5b5050505600a165627a7a72305820008c60ae04896e6e500c0d8b6cd5e916e5d28189c6791dd5441785c29a8eb8370029a165627a7a72305820a42cb227fe2cf3fe040328d82cfca2da20681ad9fed247c16317302466dffd1c0029
Swarm Source
bzzr://a42cb227fe2cf3fe040328d82cfca2da20681ad9fed247c16317302466dffd1c
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.