Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 FTV
Holders
77
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Balance
90.3846 FTVValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x53B53B47...1594fC36b The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
FTV
Compiler Version
v0.4.25+commit.59dbf8f1
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2018-10-18 */ pragma solidity ^0.4.25; /** * @title AccessControl * @notice This contract defines organizational roles and permissions. */ contract AccessControl { /** * @notice ContractUpgrade is the event that will be emitted if we set a new contract address */ event ContractUpgrade(address newContract); event Paused(); event Unpaused(); /** * @notice CEO's address FOOBAR */ address public ceoAddress; /** * @notice CFO's address */ address public cfoAddress; /** * @notice COO's address */ address public cooAddress; /** * @notice withdrawal address */ address public withdrawalAddress; bool public paused = false; /** * @dev Modifier to make a function only callable by the CEO */ modifier onlyCEO() { require(msg.sender == ceoAddress); _; } /** * @dev Modifier to make a function only callable by the CFO */ modifier onlyCFO() { require(msg.sender == cfoAddress); _; } /** * @dev Modifier to make a function only callable by the COO */ modifier onlyCOO() { require(msg.sender == cooAddress); _; } /** * @dev Modifier to make a function only callable by C-level execs */ modifier onlyCLevel() { require( msg.sender == cooAddress || msg.sender == ceoAddress || msg.sender == cfoAddress ); _; } /** * @dev Modifier to make a function only callable by CEO or CFO */ modifier onlyCEOOrCFO() { require( msg.sender == cfoAddress || msg.sender == ceoAddress ); _; } /** * @dev Modifier to make a function only callable by CEO or COO */ modifier onlyCEOOrCOO() { require( msg.sender == cooAddress || msg.sender == ceoAddress ); _; } /** * @notice Sets a new CEO * @param _newCEO - the address of the new CEO */ function setCEO(address _newCEO) external onlyCEO { require(_newCEO != address(0)); ceoAddress = _newCEO; } /** * @notice Sets a new CFO * @param _newCFO - the address of the new CFO */ function setCFO(address _newCFO) external onlyCEO { require(_newCFO != address(0)); cfoAddress = _newCFO; } /** * @notice Sets a new COO * @param _newCOO - the address of the new COO */ function setCOO(address _newCOO) external onlyCEO { require(_newCOO != address(0)); cooAddress = _newCOO; } /** * @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); _; } /** * @notice called by any C-level to pause, triggers stopped state */ function pause() public onlyCLevel whenNotPaused { paused = true; emit Paused(); } /** * @notice called by the CEO to unpause, returns to normal state */ function unpause() public onlyCEO whenPaused { paused = false; emit Unpaused(); } } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); event Transfer( address indexed from, address indexed to, uint256 value ); event Approval( address indexed owner, address indexed spender, uint256 value ); } /** * @title SafeMath * @dev Math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two numbers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two numbers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0); // Solidity only automatically asserts 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; } /** * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two numbers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two numbers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } contract LockToken is AccessControl { mapping (address => uint256) private lockTokenNum; mapping (address => uint256) private lockTokenTime; event SetLockTokenNum(address from,uint256 num); event SetLockTokenTime(address from,uint256 time); event SetLockTokenInfo(address from,uint256 num,uint256 time); function setLockTokenNum (address from,uint256 num) public whenNotPaused onlyCEO { require(from != address(0)); lockTokenNum[from] = num; emit SetLockTokenNum(from,num); } function setLockTokenTime(address from,uint256 time) public whenNotPaused onlyCEO { require(from != address(0)); lockTokenTime[from] = time; emit SetLockTokenTime(from,time); } function setLockTokenInfo(address from,uint256 num,uint256 time) public whenNotPaused onlyCEO { require(from != address(0)); lockTokenNum[from] = num; lockTokenTime[from] = time; emit SetLockTokenInfo(from,num,time); } function setLockTokenInfoList (address[] froms,uint256[] nums, uint256[] times) public whenNotPaused onlyCEO { for(uint256 i =0;i<froms.length ;i++ ){ require(froms[i] != address(0)); lockTokenNum[froms[i]] = nums[i]; lockTokenTime[froms[i]] = times[i]; } } function getLockTokenNum (address from) public view returns (uint256) { require(from != address(0)); return lockTokenNum[from]; } function getLockTokenTime(address from) public view returns (uint256) { require(from != address(0)); return lockTokenTime[from]; } function getBlockTime() public view returns(uint256){ return block.timestamp; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md * Originally based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract ERC20 is IERC20,LockToken{ using SafeMath for uint256; mapping (address => uint256) public _balances; mapping (address => mapping (address => uint256)) public _allowed; uint256 public _totalSupply; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev Gets the balance of the specified address. * @param owner The address to query the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address owner) public view returns (uint256) { return _balances[owner]; } /** * @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 whenNotPaused returns (uint256) { return _allowed[owner][spender]; } /** * @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 whenNotPaused returns (bool) { require(value <= _balances[msg.sender]); require(to != address(0)); uint256 time = getLockTokenTime(msg.sender); uint256 blockTime = block.timestamp; require(blockTime >time); _balances[msg.sender] = _balances[msg.sender].sub(value); _balances[to] = _balances[to].add(value); emit Transfer(msg.sender, 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 whenNotPaused returns (bool) { require(spender != address(0)); uint256 time = getLockTokenTime(msg.sender); uint256 blockTime = block.timestamp; require(blockTime >time); _allowed[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } /** * @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 whenNotPaused returns (bool) { require(value <= _balances[from]); require(value <= _allowed[from][msg.sender]); require(to != address(0)); uint256 time = getLockTokenTime(from); uint256 blockTime = block.timestamp; require(blockTime >time); _balances[from] = _balances[from].sub(value); _balances[to] = _balances[to].add(value); _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value); emit Transfer(from, to, value); return true; } /** * @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 increaseAllowance( address spender, uint256 addedValue ) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = ( _allowed[msg.sender][spender].add(addedValue)); emit 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 decreaseAllowance( address spender, uint256 subtractedValue ) public returns (bool) { require(spender != address(0)); _allowed[msg.sender][spender] = ( _allowed[msg.sender][spender].sub(subtractedValue)); emit Approval(msg.sender, spender, _allowed[msg.sender][spender]); return true; } /** * @dev Internal function that mints an amount of the token and assigns it to * an account. This encapsulates the modification of balances such that the * proper events are emitted. * @param account The account that will receive the created tokens. * @param amount The amount that will be created. */ function _mint(address account, uint256 amount) internal { require(account != 0); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Internal function that burns an amount of the token of a given * account. * @param account The account whose tokens will be burnt. * @param amount The amount that will be burnt. */ function _burn(address account, uint256 amount) internal { require(account != 0); require(amount <= _balances[account]); _totalSupply = _totalSupply.sub(amount); _balances[account] = _balances[account].sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Internal function that burns an amount of the token of a given * account, deducting from the sender's allowance for said account. Uses the * internal burn function. * @param account The account whose tokens will be burnt. * @param amount The amount that will be burnt. */ function _burnFrom(address account, uint256 amount) internal { require(amount <= _allowed[account][msg.sender]); // Should https://github.com/OpenZeppelin/zeppelin-solidity/issues/707 be accepted, // this function needs to emit an event with the updated approval. _allowed[account][msg.sender] = _allowed[account][msg.sender].sub( amount); _burn(account, amount); } } /** * @title FTV * @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator. * Note they can later distribute these tokens as they wish using `transfer` and other * `ERC20` functions. */ contract FTV is ERC20 { string public constant name = "fashion tv"; string public constant symbol = "FTV"; uint8 public constant decimals = 8; uint256 public constant INITIAL_SUPPLY = 100000000 * (10 ** uint256(decimals)); /** * @dev Constructor that gives msg.sender all of existing tokens. */ constructor() public { paused =false; ceoAddress = msg.sender; cooAddress = msg.sender; cfoAddress = msg.sender; _mint(msg.sender, INITIAL_SUPPLY); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[{"name":"from","type":"address"}],"name":"getLockTokenNum","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cfoAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"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":"ceoAddress","outputs":[{"name":"","type":"address"}],"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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newCEO","type":"address"}],"name":"setCEO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newCOO","type":"address"}],"name":"setCOO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","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":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","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":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"froms","type":"address[]"},{"name":"nums","type":"uint256[]"},{"name":"times","type":"uint256[]"}],"name":"setLockTokenInfoList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newCFO","type":"address"}],"name":"setCFO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"_balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"time","type":"uint256"}],"name":"setLockTokenTime","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getBlockTime","outputs":[{"name":"","type":"uint256"}],"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":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","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":"cooAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"_allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"num","type":"uint256"}],"name":"setLockTokenNum","outputs":[],"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":true,"inputs":[{"name":"from","type":"address"}],"name":"getLockTokenTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"withdrawalAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"num","type":"uint256"},{"name":"time","type":"uint256"}],"name":"setLockTokenInfo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"num","type":"uint256"}],"name":"SetLockTokenNum","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"time","type":"uint256"}],"name":"SetLockTokenTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"num","type":"uint256"},{"indexed":false,"name":"time","type":"uint256"}],"name":"SetLockTokenInfo","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newContract","type":"address"}],"name":"ContractUpgrade","type":"event"},{"anonymous":false,"inputs":[],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpaused","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
60806040526003805460a060020a60ff021916905534801561002057600080fd5b506003805460a060020a60ff02191690556000805433600160a060020a0319918216811790925560028054821683179055600180549091168217905561007690662386f26fc1000064010000000061007b810204565b61014e565b600160a060020a038216151561009057600080fd5b6008546100aa908264010000000061124261013582021704565b600855600160a060020a0382166000908152600660205260409020546100dd908264010000000061124261013582021704565b600160a060020a03831660008181526006602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008282018381101561014757600080fd5b9392505050565b611287806200015e6000396000f3006080604052600436106101945763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166223f2ac81146101995780630519ce79146101cc57806306fdde03146101fd578063095ea7b3146102875780630a0f8168146102bf57806318160ddd146102d457806323b872dd146102e957806327d7874c146103135780632ba73c15146103365780632ff2e9dc14610357578063313ce5671461036c57806339509351146103975780633eaaf86b146103bb5780633f4ba83a146103d057806343f8ab56146103e55780634e0a3379146104ac5780635c975abb146104cd5780636ebcf607146104e257806370a08231146105035780637d4a8a32146105245780638456cb591461054857806387ceff091461055d57806395d89b4114610572578063a457c2d714610587578063a9059cbb146105ab578063b047fb50146105cf578063ba0fb861146105e4578063c0d99fcf1461060b578063dd62ed3e1461062f578063e003830514610656578063f2bcd02214610677578063fb45985c1461068c575b600080fd5b3480156101a557600080fd5b506101ba600160a060020a03600435166106b3565b60408051918252519081900360200190f35b3480156101d857600080fd5b506101e16106e6565b60408051600160a060020a039092168252519081900360200190f35b34801561020957600080fd5b506102126106f5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024c578181015183820152602001610234565b50505050905090810190601f1680156102795780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561029357600080fd5b506102ab600160a060020a036004351660243561072c565b604080519115158252519081900360200190f35b3480156102cb57600080fd5b506101e16107e2565b3480156102e057600080fd5b506101ba6107f1565b3480156102f557600080fd5b506102ab600160a060020a03600435811690602435166044356107f7565b34801561031f57600080fd5b50610334600160a060020a03600435166109a8565b005b34801561034257600080fd5b50610334600160a060020a0360043516610a03565b34801561036357600080fd5b506101ba610a5e565b34801561037857600080fd5b50610381610a69565b6040805160ff9092168252519081900360200190f35b3480156103a357600080fd5b506102ab600160a060020a0360043516602435610a6e565b3480156103c757600080fd5b506101ba610b1e565b3480156103dc57600080fd5b50610334610b24565b3480156103f157600080fd5b506040805160206004803580820135838102808601850190965280855261033495369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750949750610b9c9650505050505050565b3480156104b857600080fd5b50610334600160a060020a0360043516610cb1565b3480156104d957600080fd5b506102ab610d0c565b3480156104ee57600080fd5b506101ba600160a060020a0360043516610d1c565b34801561050f57600080fd5b506101ba600160a060020a0360043516610d2e565b34801561053057600080fd5b50610334600160a060020a0360043516602435610d49565b34801561055457600080fd5b50610334610de5565b34801561056957600080fd5b506101ba610e8e565b34801561057e57600080fd5b50610212610e92565b34801561059357600080fd5b506102ab600160a060020a0360043516602435610ec9565b3480156105b757600080fd5b506102ab600160a060020a0360043516602435610f14565b3480156105db57600080fd5b506101e161102f565b3480156105f057600080fd5b506101ba600160a060020a036004358116906024351661103e565b34801561061757600080fd5b50610334600160a060020a036004351660243561105b565b34801561063b57600080fd5b506101ba600160a060020a03600435811690602435166110f7565b34801561066257600080fd5b506101ba600160a060020a036004351661113d565b34801561068357600080fd5b506101e1611170565b34801561069857600080fd5b50610334600160a060020a036004351660243560443561117f565b6000600160a060020a03821615156106ca57600080fd5b50600160a060020a031660009081526004602052604090205490565b600154600160a060020a031681565b60408051808201909152600a81527f66617368696f6e20747600000000000000000000000000000000000000000000602082015281565b6003546000908190819060a060020a900460ff161561074a57600080fd5b600160a060020a038516151561075f57600080fd5b6107683361113d565b915042905081811161077957600080fd5b336000818152600760209081526040808320600160a060020a038a1680855290835292819020889055805188815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3506001949350505050565b600054600160a060020a031681565b60085490565b6003546000908190819060a060020a900460ff161561081557600080fd5b600160a060020a03861660009081526006602052604090205484111561083a57600080fd5b600160a060020a038616600090815260076020908152604080832033845290915290205484111561086a57600080fd5b600160a060020a038516151561087f57600080fd5b6108888661113d565b915042905081811161089957600080fd5b600160a060020a0386166000908152600660205260409020546108c2908563ffffffff61122b16565b600160a060020a0380881660009081526006602052604080822093909355908716815220546108f7908563ffffffff61124216565b600160a060020a03808716600090815260066020908152604080832094909455918916815260078252828120338252909152205461093b908563ffffffff61122b16565b600160a060020a03808816600081815260076020908152604080832033845282529182902094909455805188815290519289169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600195945050505050565b600054600160a060020a031633146109bf57600080fd5b600160a060020a03811615156109d457600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600054600160a060020a03163314610a1a57600080fd5b600160a060020a0381161515610a2f57600080fd5b6002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b662386f26fc1000081565b600881565b6000600160a060020a0383161515610a8557600080fd5b336000908152600760209081526040808320600160a060020a0387168452909152902054610ab9908363ffffffff61124216565b336000818152600760209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60085481565b600054600160a060020a03163314610b3b57600080fd5b60035460a060020a900460ff161515610b5357600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b60035460009060a060020a900460ff1615610bb657600080fd5b600054600160a060020a03163314610bcd57600080fd5b5060005b8351811015610cab578351600090859083908110610beb57fe5b60209081029091010151600160a060020a03161415610c0957600080fd5b8281815181101515610c1757fe5b90602001906020020151600460008684815181101515610c3357fe5b6020908102909101810151600160a060020a03168252810191909152604001600020558151829082908110610c6457fe5b90602001906020020151600560008684815181101515610c8057fe5b6020908102909101810151600160a060020a0316825281019190915260400160002055600101610bd1565b50505050565b600054600160a060020a03163314610cc857600080fd5b600160a060020a0381161515610cdd57600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60035460a060020a900460ff1681565b60066020526000908152604090205481565b600160a060020a031660009081526006602052604090205490565b60035460a060020a900460ff1615610d6057600080fd5b600054600160a060020a03163314610d7757600080fd5b600160a060020a0382161515610d8c57600080fd5b600160a060020a0382166000818152600560209081526040918290208490558151928352820183905280517ff00f909191b2a1cd886bd66d0aba7e71119478a9d4107fe6efeaeec34f57a08c9281900390910190a15050565b600254600160a060020a0316331480610e085750600054600160a060020a031633145b80610e1d5750600154600160a060020a031633145b1515610e2857600080fd5b60035460a060020a900460ff1615610e3f57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b4290565b60408051808201909152600381527f4654560000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a0383161515610ee057600080fd5b336000908152600760209081526040808320600160a060020a0387168452909152902054610ab9908363ffffffff61122b16565b6003546000908190819060a060020a900460ff1615610f3257600080fd5b33600090815260066020526040902054841115610f4e57600080fd5b600160a060020a0385161515610f6357600080fd5b610f6c3361113d565b9150429050818111610f7d57600080fd5b33600090815260066020526040902054610f9d908563ffffffff61122b16565b3360009081526006602052604080822092909255600160a060020a03871681522054610fcf908563ffffffff61124216565b600160a060020a0386166000818152600660209081526040918290209390935580518781529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001949350505050565b600254600160a060020a031681565b600760209081526000928352604080842090915290825290205481565b60035460a060020a900460ff161561107257600080fd5b600054600160a060020a0316331461108957600080fd5b600160a060020a038216151561109e57600080fd5b600160a060020a0382166000818152600460209081526040918290208490558151928352820183905280517f9eefaca734dec60cb956bfd193fc1451c35590caf98d22f1ce459e202f139aae9281900390910190a15050565b60035460009060a060020a900460ff161561111157600080fd5b50600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b6000600160a060020a038216151561115457600080fd5b50600160a060020a031660009081526005602052604090205490565b600354600160a060020a031681565b60035460a060020a900460ff161561119657600080fd5b600054600160a060020a031633146111ad57600080fd5b600160a060020a03831615156111c257600080fd5b600160a060020a0383166000818152600460209081526040808320869055600582529182902084905581519283528201849052818101839052517f993ec066d1be74499d3d3a69037ed358c07b2a88a3ddb1c6ea49715a11bbf5849181900360600190a1505050565b6000808383111561123b57600080fd5b5050900390565b60008282018381101561125457600080fd5b93925050505600a165627a7a72305820ffbf3053be8a1c11e65525b6e4737f318d5ce3f023575354da05a1e4d51cf2ac0029
Deployed Bytecode
0x6080604052600436106101945763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166223f2ac81146101995780630519ce79146101cc57806306fdde03146101fd578063095ea7b3146102875780630a0f8168146102bf57806318160ddd146102d457806323b872dd146102e957806327d7874c146103135780632ba73c15146103365780632ff2e9dc14610357578063313ce5671461036c57806339509351146103975780633eaaf86b146103bb5780633f4ba83a146103d057806343f8ab56146103e55780634e0a3379146104ac5780635c975abb146104cd5780636ebcf607146104e257806370a08231146105035780637d4a8a32146105245780638456cb591461054857806387ceff091461055d57806395d89b4114610572578063a457c2d714610587578063a9059cbb146105ab578063b047fb50146105cf578063ba0fb861146105e4578063c0d99fcf1461060b578063dd62ed3e1461062f578063e003830514610656578063f2bcd02214610677578063fb45985c1461068c575b600080fd5b3480156101a557600080fd5b506101ba600160a060020a03600435166106b3565b60408051918252519081900360200190f35b3480156101d857600080fd5b506101e16106e6565b60408051600160a060020a039092168252519081900360200190f35b34801561020957600080fd5b506102126106f5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024c578181015183820152602001610234565b50505050905090810190601f1680156102795780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561029357600080fd5b506102ab600160a060020a036004351660243561072c565b604080519115158252519081900360200190f35b3480156102cb57600080fd5b506101e16107e2565b3480156102e057600080fd5b506101ba6107f1565b3480156102f557600080fd5b506102ab600160a060020a03600435811690602435166044356107f7565b34801561031f57600080fd5b50610334600160a060020a03600435166109a8565b005b34801561034257600080fd5b50610334600160a060020a0360043516610a03565b34801561036357600080fd5b506101ba610a5e565b34801561037857600080fd5b50610381610a69565b6040805160ff9092168252519081900360200190f35b3480156103a357600080fd5b506102ab600160a060020a0360043516602435610a6e565b3480156103c757600080fd5b506101ba610b1e565b3480156103dc57600080fd5b50610334610b24565b3480156103f157600080fd5b506040805160206004803580820135838102808601850190965280855261033495369593946024949385019291829185019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750506040805187358901803560208181028481018201909552818452989b9a998901989297509082019550935083925085019084908082843750949750610b9c9650505050505050565b3480156104b857600080fd5b50610334600160a060020a0360043516610cb1565b3480156104d957600080fd5b506102ab610d0c565b3480156104ee57600080fd5b506101ba600160a060020a0360043516610d1c565b34801561050f57600080fd5b506101ba600160a060020a0360043516610d2e565b34801561053057600080fd5b50610334600160a060020a0360043516602435610d49565b34801561055457600080fd5b50610334610de5565b34801561056957600080fd5b506101ba610e8e565b34801561057e57600080fd5b50610212610e92565b34801561059357600080fd5b506102ab600160a060020a0360043516602435610ec9565b3480156105b757600080fd5b506102ab600160a060020a0360043516602435610f14565b3480156105db57600080fd5b506101e161102f565b3480156105f057600080fd5b506101ba600160a060020a036004358116906024351661103e565b34801561061757600080fd5b50610334600160a060020a036004351660243561105b565b34801561063b57600080fd5b506101ba600160a060020a03600435811690602435166110f7565b34801561066257600080fd5b506101ba600160a060020a036004351661113d565b34801561068357600080fd5b506101e1611170565b34801561069857600080fd5b50610334600160a060020a036004351660243560443561117f565b6000600160a060020a03821615156106ca57600080fd5b50600160a060020a031660009081526004602052604090205490565b600154600160a060020a031681565b60408051808201909152600a81527f66617368696f6e20747600000000000000000000000000000000000000000000602082015281565b6003546000908190819060a060020a900460ff161561074a57600080fd5b600160a060020a038516151561075f57600080fd5b6107683361113d565b915042905081811161077957600080fd5b336000818152600760209081526040808320600160a060020a038a1680855290835292819020889055805188815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3506001949350505050565b600054600160a060020a031681565b60085490565b6003546000908190819060a060020a900460ff161561081557600080fd5b600160a060020a03861660009081526006602052604090205484111561083a57600080fd5b600160a060020a038616600090815260076020908152604080832033845290915290205484111561086a57600080fd5b600160a060020a038516151561087f57600080fd5b6108888661113d565b915042905081811161089957600080fd5b600160a060020a0386166000908152600660205260409020546108c2908563ffffffff61122b16565b600160a060020a0380881660009081526006602052604080822093909355908716815220546108f7908563ffffffff61124216565b600160a060020a03808716600090815260066020908152604080832094909455918916815260078252828120338252909152205461093b908563ffffffff61122b16565b600160a060020a03808816600081815260076020908152604080832033845282529182902094909455805188815290519289169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a350600195945050505050565b600054600160a060020a031633146109bf57600080fd5b600160a060020a03811615156109d457600080fd5b6000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600054600160a060020a03163314610a1a57600080fd5b600160a060020a0381161515610a2f57600080fd5b6002805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b662386f26fc1000081565b600881565b6000600160a060020a0383161515610a8557600080fd5b336000908152600760209081526040808320600160a060020a0387168452909152902054610ab9908363ffffffff61124216565b336000818152600760209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b60085481565b600054600160a060020a03163314610b3b57600080fd5b60035460a060020a900460ff161515610b5357600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b60035460009060a060020a900460ff1615610bb657600080fd5b600054600160a060020a03163314610bcd57600080fd5b5060005b8351811015610cab578351600090859083908110610beb57fe5b60209081029091010151600160a060020a03161415610c0957600080fd5b8281815181101515610c1757fe5b90602001906020020151600460008684815181101515610c3357fe5b6020908102909101810151600160a060020a03168252810191909152604001600020558151829082908110610c6457fe5b90602001906020020151600560008684815181101515610c8057fe5b6020908102909101810151600160a060020a0316825281019190915260400160002055600101610bd1565b50505050565b600054600160a060020a03163314610cc857600080fd5b600160a060020a0381161515610cdd57600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60035460a060020a900460ff1681565b60066020526000908152604090205481565b600160a060020a031660009081526006602052604090205490565b60035460a060020a900460ff1615610d6057600080fd5b600054600160a060020a03163314610d7757600080fd5b600160a060020a0382161515610d8c57600080fd5b600160a060020a0382166000818152600560209081526040918290208490558151928352820183905280517ff00f909191b2a1cd886bd66d0aba7e71119478a9d4107fe6efeaeec34f57a08c9281900390910190a15050565b600254600160a060020a0316331480610e085750600054600160a060020a031633145b80610e1d5750600154600160a060020a031633145b1515610e2857600080fd5b60035460a060020a900460ff1615610e3f57600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b4290565b60408051808201909152600381527f4654560000000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a0383161515610ee057600080fd5b336000908152600760209081526040808320600160a060020a0387168452909152902054610ab9908363ffffffff61122b16565b6003546000908190819060a060020a900460ff1615610f3257600080fd5b33600090815260066020526040902054841115610f4e57600080fd5b600160a060020a0385161515610f6357600080fd5b610f6c3361113d565b9150429050818111610f7d57600080fd5b33600090815260066020526040902054610f9d908563ffffffff61122b16565b3360009081526006602052604080822092909255600160a060020a03871681522054610fcf908563ffffffff61124216565b600160a060020a0386166000818152600660209081526040918290209390935580518781529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506001949350505050565b600254600160a060020a031681565b600760209081526000928352604080842090915290825290205481565b60035460a060020a900460ff161561107257600080fd5b600054600160a060020a0316331461108957600080fd5b600160a060020a038216151561109e57600080fd5b600160a060020a0382166000818152600460209081526040918290208490558151928352820183905280517f9eefaca734dec60cb956bfd193fc1451c35590caf98d22f1ce459e202f139aae9281900390910190a15050565b60035460009060a060020a900460ff161561111157600080fd5b50600160a060020a03918216600090815260076020908152604080832093909416825291909152205490565b6000600160a060020a038216151561115457600080fd5b50600160a060020a031660009081526005602052604090205490565b600354600160a060020a031681565b60035460a060020a900460ff161561119657600080fd5b600054600160a060020a031633146111ad57600080fd5b600160a060020a03831615156111c257600080fd5b600160a060020a0383166000818152600460209081526040808320869055600582529182902084905581519283528201849052818101839052517f993ec066d1be74499d3d3a69037ed358c07b2a88a3ddb1c6ea49715a11bbf5849181900360600190a1505050565b6000808383111561123b57600080fd5b5050900390565b60008282018381101561125457600080fd5b93925050505600a165627a7a72305820ffbf3053be8a1c11e65525b6e4737f318d5ce3f023575354da05a1e4d51cf2ac0029
Swarm Source
bzzr://ffbf3053be8a1c11e65525b6e4737f318d5ce3f023575354da05a1e4d51cf2ac
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.