Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
10,000,000,000 BEAUTY
Holders
187
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Token
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-01-30 */ pragma solidity ^0.4.15; library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a * b; assert(a == 0 || c / a == b); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; assert(c >= a); return c; } } contract ApproveAndCallReceiver { function receiveApproval( address _from, uint256 _amount, address _token, bytes _data ) public; } //normal contract. already compiled as bin contract Controlled { /// @notice The address of the controller is the only address that can call /// a function with this modifier modifier onlyController { require(msg.sender == controller); _; } //block for check//bool private initialed = false; address public controller; function Controlled() public { //block for check//require(!initialed); controller = msg.sender; //block for check//initialed = true; } /// @notice Changes the controller of the contract /// @param _newController The new controller of the contract function changeController(address _newController) onlyController public { controller = _newController; } } contract ERC20Token { /* This is a slight change to the ERC20 base standard. function totalSupply() constant returns (uint256 supply); is replaced with: uint256 public totalSupply; This automatically creates a getter function for the totalSupply. This is moved to the base contract since public getter functions are not currently recognised as an implementation of the matching abstract function by the compiler. */ /// total amount of tokens uint256 public totalSupply; //function totalSupply() public constant returns (uint256 balance); /// @param _owner The address from which the balance will be retrieved /// @return The balance mapping (address => uint256) public balanceOf; //function balanceOf(address _owner) public constant returns (uint256 balance); /// @notice send `_value` token to `_to` from `msg.sender` /// @param _to The address of the recipient /// @param _value The amount of token to be transferred /// @return Whether the transfer was successful or not function transfer(address _to, uint256 _value) public returns (bool success); /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from` /// @param _from The address of the sender /// @param _to The address of the recipient /// @param _value The amount of token to be transferred /// @return Whether the transfer was successful or not function transferFrom(address _from, address _to, uint256 _value) public returns (bool success); /// @notice `msg.sender` approves `_spender` to spend `_value` tokens /// @param _spender The address of the account able to transfer the tokens /// @param _value The amount of tokens to be approved for transfer /// @return Whether the approval was successful or not function approve(address _spender, uint256 _value) public returns (bool success); /// @param _owner The address of the account owning tokens /// @param _spender The address of the account able to transfer the tokens /// @return Amount of remaining tokens allowed to spent mapping (address => mapping (address => uint256)) public allowance; //function allowance(address _owner, address _spender) public constant returns (uint256 remaining); event Transfer(address indexed _from, address indexed _to, uint256 _value); event Approval(address indexed _owner, address indexed _spender, uint256 _value); } //abstract contract. used for interface contract TokenController { /// @notice Called when `_owner` sends ether to the MiniMe Token contract /// @param _owner The address that sent the ether to create tokens /// @return True if the ether is accepted, false if it throws function proxyPayment(address _owner) payable public returns(bool); /// @notice Notifies the controller about a token transfer allowing the /// controller to react if desired /// @param _from The origin of the transfer /// @param _to The destination of the transfer /// @param _amount The amount of the transfer /// @return False if the controller does not authorize the transfer function onTransfer(address _from, address _to, uint _amount) public returns(bool); /// @notice Notifies the controller about an approval allowing the /// controller to react if desired /// @param _owner The address that calls `approve()` /// @param _spender The spender in the `approve()` call /// @param _amount The amount in the `approve()` call /// @return False if the controller does not authorize the approval function onApprove(address _owner, address _spender, uint _amount) public returns(bool); } contract TokenI is ERC20Token, Controlled { string public name; //The Token's name: e.g. DigixDAO Tokens uint8 public decimals; //Number of decimals of the smallest unit string public symbol; //An identifier: e.g. REP /////////////////// // ERC20 Methods /////////////////// /// @notice `msg.sender` approves `_spender` to send `_amount` tokens on /// its behalf, and then a function is triggered in the contract that is /// being approved, `_spender`. This allows users to use their tokens to /// interact with contracts in one function call instead of two /// @param _spender The address of the contract able to transfer the tokens /// @param _amount The amount of tokens to be approved for transfer /// @return True if the function call was successful function approveAndCall( address _spender, uint256 _amount, bytes _extraData ) public returns (bool success); //////////////// // Generate and destroy tokens //////////////// /// @notice Generates `_amount` tokens that are assigned to `_owner` /// @param _owner The address that will be assigned the new tokens /// @param _amount The quantity of tokens generated /// @return True if the tokens are generated correctly function generateTokens(address _owner, uint _amount) public returns (bool); /// @notice Burns `_amount` tokens from `_owner` /// @param _owner The address that will lose the tokens /// @param _amount The quantity of tokens to burn /// @return True if the tokens are burned correctly function destroyTokens(address _owner, uint _amount) public returns (bool); //////////////// // Enable tokens transfers //////////////// /// @notice Enables token holders to transfer their tokens freely if true /// @param _transfersEnabled True if transfers are allowed in the clone function enableTransfers(bool _transfersEnabled) public; ////////// // Safety Methods ////////// /// @notice This method can be used by the controller to extract mistakenly /// sent tokens to this contract. /// @param _token The address of the token contract that you want to recover /// set to 0 in case you want to extract ether. function claimTokens(address _token) public; //////////////// // Events //////////////// event ClaimedTokens(address indexed _token, address indexed _controller, uint _amount); } contract Token is TokenI { using SafeMath for uint256; address public owner; struct FreezeInfo { address user; uint256 amount; } //Key1: step(募资阶段); Key2: user sequence(用户序列) mapping (uint8 => mapping (uint8 => FreezeInfo)) public freezeOf; //所有锁仓,key 使用序号向上增加,方便程序查询。 mapping (uint8 => uint8) public lastFreezeSeq; //最后的 freezeOf 键值。key: step; value: sequence mapping (uint8 => uint8) internal unlockTime; bool public transfersEnabled; /* This generates a public event on the blockchain that will notify clients */ //event Transfer(address indexed from, address indexed to, uint256 value); /* This notifies clients about the amount burnt */ event Burn(address indexed from, uint256 value); /* This notifies clients about the amount frozen */ event Freeze(address indexed from, uint256 value); /* This notifies clients about the amount unfrozen */ event Unfreeze(address indexed from, uint256 value); /* Initializes contract with initial supply tokens to the creator of the contract */ function Token( uint256 initialSupply, string tokenName, uint8 decimalUnits, string tokenSymbol, bool transfersEnable ) public { balanceOf[msg.sender] = initialSupply; totalSupply = initialSupply; name = tokenName; symbol = tokenSymbol; decimals = decimalUnits; transfersEnabled = transfersEnable; owner = msg.sender; } modifier onlyOwner() { require(msg.sender == owner); _; } modifier ownerOrUser(address user){ require(msg.sender == owner || msg.sender == user); _; } modifier realUser(address user){ if(user == 0x0){ revert(); } _; } modifier moreThanZero(uint256 _value){ if (_value <= 0){ revert(); } _; } modifier moreOrEqualZero(uint256 _value){ if(_value < 0){ revert(); } _; } /// @dev Internal function to determine if an address is a contract /// @param _addr The address being queried /// @return True if `_addr` is a contract function isContract(address _addr) constant internal returns(bool) { uint size; if (_addr == 0) { return false; } assembly { size := extcodesize(_addr) } return size>0; } /* Send coins */ function transfer(address _to, uint256 _value) realUser(_to) moreThanZero(_value) public returns (bool) { require(balanceOf[msg.sender] > _value); // Check if the sender has enough require(balanceOf[_to] + _value > balanceOf[_to]); // Check for overflows balanceOf[msg.sender] = balanceOf[msg.sender] - _value; // Subtract from the sender balanceOf[_to] = balanceOf[_to] + _value; // Add the same to the recipient Transfer(msg.sender, _to, _value); // Notify anyone listening that this transfer took place return true; } /* Allow another contract to spend some tokens in your behalf */ function approve(address _spender, uint256 _value) moreThanZero(_value) public returns (bool success) { allowance[msg.sender][_spender] = _value; return true; } /** * @notice `msg.sender` approves `_spender` to send `_amount` tokens on * its behalf, and then a function is triggered in the contract that is * being approved, `_spender`. This allows users to use their tokens to * interact with contracts in one function call instead of two * @param _spender The address of the contract able to transfer the tokens * @param _amount The amount of tokens to be approved for transfer * @return True if the function call was successful */ function approveAndCall(address _spender, uint256 _amount, bytes _extraData) public returns (bool success) { require(approve(_spender, _amount)); ApproveAndCallReceiver(_spender).receiveApproval( msg.sender, _amount, this, _extraData ); return true; } /* A contract attempts to get the coins */ function transferFrom(address _from, address _to, uint256 _value) realUser(_from) realUser(_to) moreThanZero(_value) public returns (bool success) { require(balanceOf[_from] > _value); // Check if the sender has enough require(balanceOf[_to] + _value > balanceOf[_to]); // Check for overflows require(_value < allowance[_from][msg.sender]); // Check allowance balanceOf[_from] = balanceOf[_from] - _value; // Subtract from the sender balanceOf[_to] = balanceOf[_to] + _value; // Add the same to the recipient allowance[_from][msg.sender] = allowance[_from][msg.sender] + _value; Transfer(_from, _to, _value); return true; } //只能自己或者 owner 才能冻结账户 function freeze(address _user, uint256 _value, uint8 _step) moreThanZero(_value) onlyController public returns (bool success) { //info256("balanceOf[_user]", balanceOf[_user]); require(balanceOf[_user] >= _value); balanceOf[_user] = balanceOf[_user] - _value; freezeOf[_step][lastFreezeSeq[_step]] = FreezeInfo({user:_user, amount:_value}); lastFreezeSeq[_step]++; Freeze(_user, _value); return true; } event info(string name, uint8 value); event info256(string name, uint256 value); //为用户解锁账户资金 function unFreeze(uint8 _step) onlyController public returns (bool unlockOver) { //_end = length of freezeOf[_step] uint8 _end = lastFreezeSeq[_step]; require(_end > 0); //info("_end", _end); unlockOver = (_end <= 49); uint8 _start = (_end > 49) ? _end-50 : 0; //info("_start", _start); for(; _end>_start; _end--){ FreezeInfo storage fInfo = freezeOf[_step][_end-1]; uint256 _amount = fInfo.amount; balanceOf[fInfo.user] += _amount; delete freezeOf[_step][_end-1]; lastFreezeSeq[_step]--; Unfreeze(fInfo.user, _amount); } } //accept ether function() payable public { //屏蔽控制方的合约类型检查,以兼容发行方无控制合约的情况。 require(isContract(controller)); bool proxyPayment = TokenController(controller).proxyPayment.value(msg.value)(msg.sender); require(proxyPayment); } //////////////// // Generate and destroy tokens //////////////// /// @notice Generates `_amount` tokens that are assigned to `_owner` /// @param _user The address that will be assigned the new tokens /// @param _amount The quantity of tokens generated /// @return True if the tokens are generated correctly function generateTokens(address _user, uint _amount) onlyController public returns (bool) { require(balanceOf[owner] >= _amount); balanceOf[_user] += _amount; balanceOf[owner] -= _amount; Transfer(0, _user, _amount); return true; } /// @notice Burns `_amount` tokens from `_owner` /// @param _user The address that will lose the tokens /// @param _amount The quantity of tokens to burn /// @return True if the tokens are burned correctly function destroyTokens(address _user, uint _amount) onlyController public returns (bool) { balanceOf[owner] += _amount; balanceOf[_user] -= _amount; Transfer(_user, 0, _amount); return true; } function changeOwner(address newOwner) onlyOwner public returns (bool) { balanceOf[newOwner] = balanceOf[owner]; balanceOf[owner] = 0; owner = newOwner; return true; } //////////////// // Enable tokens transfers //////////////// /// @notice Enables token holders to transfer their tokens freely if true /// @param _transfersEnabled True if transfers are allowed in the clone function enableTransfers(bool _transfersEnabled) onlyController public { transfersEnabled = _transfersEnabled; } ////////// // Safety Methods ////////// /// @notice This method can be used by the controller to extract mistakenly /// sent tokens to this contract. /// set to 0 in case you want to extract ether. function claimTokens(address _token) onlyController public { if (_token == 0x0) { controller.transfer(this.balance); return; } Token token = Token(_token); uint balance = token.balanceOf(this); token.transfer(controller, balance); ClaimedTokens(_token, controller, balance); } }
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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint8"},{"name":"","type":"uint8"}],"name":"freezeOf","outputs":[{"name":"user","type":"address"},{"name":"amount","type":"uint256"}],"payable":false,"stateMutability":"view","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":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_step","type":"uint8"}],"name":"unFreeze","outputs":[{"name":"unlockOver","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"},{"name":"_amount","type":"uint256"}],"name":"generateTokens","outputs":[{"name":"","type":"bool"}],"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":"newOwner","type":"address"}],"name":"changeOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"},{"name":"_amount","type":"uint256"}],"name":"destroyTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"},{"name":"_value","type":"uint256"},{"name":"_step","type":"uint8"}],"name":"freeze","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint8"}],"name":"lastFreezeSeq","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"decimalUnits","type":"uint8"},{"name":"tokenSymbol","type":"string"},{"name":"transfersEnable","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Freeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Unfreeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint8"}],"name":"info","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"}],"name":"info256","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_controller","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","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"},{"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"}]
Contract Creation Code
606060405234156200001057600080fd5b6040516200131a3803806200131a83398101604052808051919060200180518201919060200180519190602001805182019190602001805160038054600160a060020a03191633600160a060020a0316908117909155600090815260016020526040812088905587905591506004905084805162000093929160200190620000f1565b506006828051620000a9929160200190620000f1565b506005805460ff90941660ff19948516179055600b80549115159190931617909155505060078054600160a060020a033316600160a060020a03199091161790555062000196565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200013457805160ff191683800117855562000164565b8280016001018555821562000164579182015b828111156200016457825182559160200191906001019062000147565b506200017292915062000176565b5090565b6200019391905b808211156200017257600081556001016200017d565b90565b61117480620001a66000396000f3006060604052600436106101195763ffffffff60e060020a60003504166306fdde0381146101c1578063095ea7b31461024b578063159807951461028157806318160ddd146102c257806323b872dd146102e7578063313ce5671461030f5780633cebb82314610338578063492d06cf1461035957806370a0823114610372578063827f32c0146103915780638da5cb5b146103b357806395d89b41146103e2578063a6f9dae1146103f5578063a9059cbb14610414578063bef97c8714610436578063cae9ca5114610449578063d3ce77fe146104ae578063dd62ed3e146104d0578063df8de3e7146104f5578063f41e60c514610514578063f524613f1461052c578063f77c479114610554578063f99ec32c14610567575b60035460009061013190600160a060020a0316610580565b151561013c57600080fd5b600354600160a060020a031663f48c3054343360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390911660048201526024016020604051808303818588803b151561019557600080fd5b6125ee5a03f115156101a657600080fd5b5050505060405180519150508015156101be57600080fd5b50005b34156101cc57600080fd5b6101d46105ad565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102105780820151838201526020016101f8565b50505050905090810190601f16801561023d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561025657600080fd5b61026d600160a060020a036004351660243561064b565b604051901515815260200160405180910390f35b341561028c57600080fd5b6102a060ff6004358116906024351661068b565b604051600160a060020a03909216825260208201526040908101905180910390f35b34156102cd57600080fd5b6102d56106bb565b60405190815260200160405180910390f35b34156102f257600080fd5b61026d600160a060020a03600435811690602435166044356106c1565b341561031a57600080fd5b6103226107f8565b60405160ff909116815260200160405180910390f35b341561034357600080fd5b610357600160a060020a0360043516610801565b005b341561036457600080fd5b61026d60ff6004351661084b565b341561037d57600080fd5b6102d5600160a060020a0360043516610999565b341561039c57600080fd5b61026d600160a060020a03600435166024356109ab565b34156103be57600080fd5b6103c6610a4f565b604051600160a060020a03909116815260200160405180910390f35b34156103ed57600080fd5b6101d4610a5e565b341561040057600080fd5b61026d600160a060020a0360043516610ac9565b341561041f57600080fd5b61026d600160a060020a0360043516602435610b42565b341561044157600080fd5b61026d610c11565b341561045457600080fd5b61026d60048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610c1a95505050505050565b34156104b957600080fd5b61026d600160a060020a0360043516602435610d35565b34156104db57600080fd5b6102d5600160a060020a0360043581169060243516610db2565b341561050057600080fd5b610357600160a060020a0360043516610dcf565b341561051f57600080fd5b6103576004351515610f7c565b341561053757600080fd5b61026d600160a060020a036004351660243560ff60443516610faa565b341561055f57600080fd5b6103c6611104565b341561057257600080fd5b61032260ff60043516611113565b600080600160a060020a038316151561059c57600091506105a7565b823b90506000811191505b50919050565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106435780601f1061061857610100808354040283529160200191610643565b820191906000526020600020905b81548152906001019060200180831161062657829003601f168201915b505050505081565b60008181811161065a57600080fd5b5050600160a060020a0333811660009081526002602090815260408083209590931682529390935290912055600190565b600860209081526000928352604080842090915290825290208054600190910154600160a060020a039091169082565b60005481565b600083600160a060020a03811615156106d957600080fd5b83600160a060020a03811615156106ef57600080fd5b83600081116106fd57600080fd5b600160a060020a03871660009081526001602052604090205485901161072257600080fd5b600160a060020a0386166000908152600160205260409020548581011161074857600080fd5b600160a060020a0380881660009081526002602090815260408083203390941683529290522054851061077a57600080fd5b600160a060020a03878116600081815260016020908152604080832080548b900390558a851680845281842080548c0190558484526002835281842033909616845294909152908190208054890190556000805160206111298339815191529088905190815260200160405180910390a35060019695505050505050565b60055460ff1681565b60035433600160a060020a0390811691161461081c57600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600354600090819081908190819033600160a060020a0390811691161461087157600080fd5b60ff8087166000908152600960205260408120549091169450841161089557600080fd5b603160ff851611801595506108ab5760006108b0565b603284035b92505b8260ff168460ff16111561099057505060ff848116600081815260086020908152604080832060001988810187168552908352818420600180820180548354600160a060020a039081168952928752858820805482019055835473ffffffffffffffffffffffffffffffffffffffff1916845590879055968652600990945293829020805460ff19811690881690920190961617909455815491939116907f2cfce4af01bcb9d6cf6c84ee1b7c491100b8695368264146a94d71e10a63083f9083905190815260200160405180910390a2600019909301926108b3565b50505050919050565b60016020526000908152604090205481565b60035460009033600160a060020a039081169116146109c957600080fd5b600754600160a060020a0316600090815260016020526040902054829010156109f157600080fd5b600160a060020a0380841660008181526001602052604080822080548701905560075490931681528281208054869003905590916000805160206111298339815191529085905190815260200160405180910390a350600192915050565b600754600160a060020a031681565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106435780601f1061061857610100808354040283529160200191610643565b60075460009033600160a060020a03908116911614610ae757600080fd5b5060078054600160a060020a03908116600090815260016020819052604080832054958416808452818420969096558454909316825291812055815473ffffffffffffffffffffffffffffffffffffffff1916909217905590565b600082600160a060020a0381161515610b5a57600080fd5b8260008111610b6857600080fd5b600160a060020a033316600090815260016020526040902054849011610b8d57600080fd5b600160a060020a03851660009081526001602052604090205484810111610bb357600080fd5b600160a060020a033381166000818152600160205260408082208054899003905592881680825290839020805488019055916000805160206111298339815191529087905190815260200160405180910390a3506001949350505050565b600b5460ff1681565b6000610c26848461064b565b1515610c3157600080fd5b83600160a060020a0316638f4ffcb1338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610cc9578082015183820152602001610cb1565b50505050905090810190601f168015610cf65780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610d1757600080fd5b6102c65a03f11515610d2857600080fd5b5060019695505050505050565b60035460009033600160a060020a03908116911614610d5357600080fd5b600754600160a060020a039081166000908152600160205260408082208054860190559185168082528282208054869003905590916000805160206111298339815191529085905190815260200160405180910390a350600192915050565b600260209081526000928352604080842090915290825290205481565b600354600090819033600160a060020a03908116911614610def57600080fd5b600160a060020a0383161515610e3d57600354600160a060020a039081169030163180156108fc0290604051600060405180830381858888f193505050501515610e3857600080fd5b610f77565b82915081600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610e9757600080fd5b6102c65a03f11515610ea857600080fd5b5050506040518051600354909250600160a060020a03808516925063a9059cbb91168360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610f1757600080fd5b6102c65a03f11515610f2857600080fd5b50505060405180515050600354600160a060020a039081169084167ff931edb47c50b4b4104c187b5814a9aef5f709e17e2ecf9617e860cacade929c8360405190815260200160405180910390a35b505050565b60035433600160a060020a03908116911614610f9757600080fd5b600b805460ff1916911515919091179055565b600082818111610fb957600080fd5b60035433600160a060020a03908116911614610fd457600080fd5b600160a060020a03851660009081526001602052604090205484901015610ffa57600080fd5b600160a060020a038516600090815260016020526040908190208054869003905580519081016040908152600160a060020a0387168252602080830187905260ff808716600090815260088352838120600984528482205490921681529152208151815473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0391909116178155602082015160019182015560ff85811660009081526009602052604090819020805460ff198116908416909401909216929092179055600160a060020a03871691507ff97a274face0b5517365ad396b1fdba6f68bd3135ef603e44272adba3af5a1e09086905190815260200160405180910390a2506001949350505050565b600354600160a060020a031681565b60096020526000908152604090205460ff16815600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058200b2f94025cbdaad6cc969f9fd9953fee4fc5062630a89e12756a7b3c35ffff5900290000000000000000000000000000000000000000204fce5e3e2502611000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000b42656175747920436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064245415554590000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6060604052600436106101195763ffffffff60e060020a60003504166306fdde0381146101c1578063095ea7b31461024b578063159807951461028157806318160ddd146102c257806323b872dd146102e7578063313ce5671461030f5780633cebb82314610338578063492d06cf1461035957806370a0823114610372578063827f32c0146103915780638da5cb5b146103b357806395d89b41146103e2578063a6f9dae1146103f5578063a9059cbb14610414578063bef97c8714610436578063cae9ca5114610449578063d3ce77fe146104ae578063dd62ed3e146104d0578063df8de3e7146104f5578063f41e60c514610514578063f524613f1461052c578063f77c479114610554578063f99ec32c14610567575b60035460009061013190600160a060020a0316610580565b151561013c57600080fd5b600354600160a060020a031663f48c3054343360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390911660048201526024016020604051808303818588803b151561019557600080fd5b6125ee5a03f115156101a657600080fd5b5050505060405180519150508015156101be57600080fd5b50005b34156101cc57600080fd5b6101d46105ad565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156102105780820151838201526020016101f8565b50505050905090810190601f16801561023d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561025657600080fd5b61026d600160a060020a036004351660243561064b565b604051901515815260200160405180910390f35b341561028c57600080fd5b6102a060ff6004358116906024351661068b565b604051600160a060020a03909216825260208201526040908101905180910390f35b34156102cd57600080fd5b6102d56106bb565b60405190815260200160405180910390f35b34156102f257600080fd5b61026d600160a060020a03600435811690602435166044356106c1565b341561031a57600080fd5b6103226107f8565b60405160ff909116815260200160405180910390f35b341561034357600080fd5b610357600160a060020a0360043516610801565b005b341561036457600080fd5b61026d60ff6004351661084b565b341561037d57600080fd5b6102d5600160a060020a0360043516610999565b341561039c57600080fd5b61026d600160a060020a03600435166024356109ab565b34156103be57600080fd5b6103c6610a4f565b604051600160a060020a03909116815260200160405180910390f35b34156103ed57600080fd5b6101d4610a5e565b341561040057600080fd5b61026d600160a060020a0360043516610ac9565b341561041f57600080fd5b61026d600160a060020a0360043516602435610b42565b341561044157600080fd5b61026d610c11565b341561045457600080fd5b61026d60048035600160a060020a03169060248035919060649060443590810190830135806020601f82018190048102016040519081016040528181529291906020840183838082843750949650610c1a95505050505050565b34156104b957600080fd5b61026d600160a060020a0360043516602435610d35565b34156104db57600080fd5b6102d5600160a060020a0360043581169060243516610db2565b341561050057600080fd5b610357600160a060020a0360043516610dcf565b341561051f57600080fd5b6103576004351515610f7c565b341561053757600080fd5b61026d600160a060020a036004351660243560ff60443516610faa565b341561055f57600080fd5b6103c6611104565b341561057257600080fd5b61032260ff60043516611113565b600080600160a060020a038316151561059c57600091506105a7565b823b90506000811191505b50919050565b60048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106435780601f1061061857610100808354040283529160200191610643565b820191906000526020600020905b81548152906001019060200180831161062657829003601f168201915b505050505081565b60008181811161065a57600080fd5b5050600160a060020a0333811660009081526002602090815260408083209590931682529390935290912055600190565b600860209081526000928352604080842090915290825290208054600190910154600160a060020a039091169082565b60005481565b600083600160a060020a03811615156106d957600080fd5b83600160a060020a03811615156106ef57600080fd5b83600081116106fd57600080fd5b600160a060020a03871660009081526001602052604090205485901161072257600080fd5b600160a060020a0386166000908152600160205260409020548581011161074857600080fd5b600160a060020a0380881660009081526002602090815260408083203390941683529290522054851061077a57600080fd5b600160a060020a03878116600081815260016020908152604080832080548b900390558a851680845281842080548c0190558484526002835281842033909616845294909152908190208054890190556000805160206111298339815191529088905190815260200160405180910390a35060019695505050505050565b60055460ff1681565b60035433600160a060020a0390811691161461081c57600080fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600354600090819081908190819033600160a060020a0390811691161461087157600080fd5b60ff8087166000908152600960205260408120549091169450841161089557600080fd5b603160ff851611801595506108ab5760006108b0565b603284035b92505b8260ff168460ff16111561099057505060ff848116600081815260086020908152604080832060001988810187168552908352818420600180820180548354600160a060020a039081168952928752858820805482019055835473ffffffffffffffffffffffffffffffffffffffff1916845590879055968652600990945293829020805460ff19811690881690920190961617909455815491939116907f2cfce4af01bcb9d6cf6c84ee1b7c491100b8695368264146a94d71e10a63083f9083905190815260200160405180910390a2600019909301926108b3565b50505050919050565b60016020526000908152604090205481565b60035460009033600160a060020a039081169116146109c957600080fd5b600754600160a060020a0316600090815260016020526040902054829010156109f157600080fd5b600160a060020a0380841660008181526001602052604080822080548701905560075490931681528281208054869003905590916000805160206111298339815191529085905190815260200160405180910390a350600192915050565b600754600160a060020a031681565b60068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106435780601f1061061857610100808354040283529160200191610643565b60075460009033600160a060020a03908116911614610ae757600080fd5b5060078054600160a060020a03908116600090815260016020819052604080832054958416808452818420969096558454909316825291812055815473ffffffffffffffffffffffffffffffffffffffff1916909217905590565b600082600160a060020a0381161515610b5a57600080fd5b8260008111610b6857600080fd5b600160a060020a033316600090815260016020526040902054849011610b8d57600080fd5b600160a060020a03851660009081526001602052604090205484810111610bb357600080fd5b600160a060020a033381166000818152600160205260408082208054899003905592881680825290839020805488019055916000805160206111298339815191529087905190815260200160405180910390a3506001949350505050565b600b5460ff1681565b6000610c26848461064b565b1515610c3157600080fd5b83600160a060020a0316638f4ffcb1338530866040518563ffffffff1660e060020a0281526004018085600160a060020a0316600160a060020a0316815260200184815260200183600160a060020a0316600160a060020a0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610cc9578082015183820152602001610cb1565b50505050905090810190601f168015610cf65780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1515610d1757600080fd5b6102c65a03f11515610d2857600080fd5b5060019695505050505050565b60035460009033600160a060020a03908116911614610d5357600080fd5b600754600160a060020a039081166000908152600160205260408082208054860190559185168082528282208054869003905590916000805160206111298339815191529085905190815260200160405180910390a350600192915050565b600260209081526000928352604080842090915290825290205481565b600354600090819033600160a060020a03908116911614610def57600080fd5b600160a060020a0383161515610e3d57600354600160a060020a039081169030163180156108fc0290604051600060405180830381858888f193505050501515610e3857600080fd5b610f77565b82915081600160a060020a03166370a082313060006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610e9757600080fd5b6102c65a03f11515610ea857600080fd5b5050506040518051600354909250600160a060020a03808516925063a9059cbb91168360006040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b1515610f1757600080fd5b6102c65a03f11515610f2857600080fd5b50505060405180515050600354600160a060020a039081169084167ff931edb47c50b4b4104c187b5814a9aef5f709e17e2ecf9617e860cacade929c8360405190815260200160405180910390a35b505050565b60035433600160a060020a03908116911614610f9757600080fd5b600b805460ff1916911515919091179055565b600082818111610fb957600080fd5b60035433600160a060020a03908116911614610fd457600080fd5b600160a060020a03851660009081526001602052604090205484901015610ffa57600080fd5b600160a060020a038516600090815260016020526040908190208054869003905580519081016040908152600160a060020a0387168252602080830187905260ff808716600090815260088352838120600984528482205490921681529152208151815473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0391909116178155602082015160019182015560ff85811660009081526009602052604090819020805460ff198116908416909401909216929092179055600160a060020a03871691507ff97a274face0b5517365ad396b1fdba6f68bd3135ef603e44272adba3af5a1e09086905190815260200160405180910390a2506001949350505050565b600354600160a060020a031681565b60096020526000908152604090205460ff16815600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058200b2f94025cbdaad6cc969f9fd9953fee4fc5062630a89e12756a7b3c35ffff590029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000204fce5e3e2502611000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000b42656175747920436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064245415554590000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 10000000000000000000000000000
Arg [1] : tokenName (string): Beauty Coin
Arg [2] : decimalUnits (uint8): 18
Arg [3] : tokenSymbol (string): BEAUTY
Arg [4] : transfersEnable (bool): True
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000204fce5e3e25026110000000
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 42656175747920436f696e000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 4245415554590000000000000000000000000000000000000000000000000000
Swarm Source
bzzr://0b2f94025cbdaad6cc969f9fd9953fee4fc5062630a89e12756a7b3c35ffff59
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.