ERC-20
Overview
Max Total Supply
100,000,000 KOKO
Holders
712
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.38016076 KOKOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
Token
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
Yes with 1 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.9.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return payable(msg.sender); } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } pragma solidity >=0.6.0 <0.9.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } pragma solidity >=0.6.0 <0.9.0; /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. */ contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private initializing; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; initialized = true; } _; if (isTopLevelCall) { initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializing() { require(initializing, "Initializable: contract is not initializing"); _; } /// @dev Returns true if and only if the function is running in the constructor function isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; } pragma solidity >=0.6.0 <0.9.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: 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 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } pragma solidity >=0.6.0 <0.9.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Initializable, Context, Ownable, IERC20 { using SafeMath for uint256; //using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name2, string memory symbol2) { _name = name2; _symbol = symbol2; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual view { } } pragma solidity >=0.6.0; // helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false library SafeERC20 { function _safeApprove(IERC20 token, address to, uint value) internal { // bytes4(keccak256(bytes('approve(address,uint256)'))); (bool success, bytes memory data) = address(token).call(abi.encodeWithSelector(0x095ea7b3, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), '!APPROVE_FAILED'); } function safeApprove(IERC20 token, address to, uint value) internal { if (value > 0 && token.allowance(msg.sender, to) > 0) _safeApprove(token, to, 0); return _safeApprove(token, to, value); } function safeTransfer(IERC20 token, address to, uint value) internal { // bytes4(keccak256(bytes('transfer(address,uint256)'))); (bool success, bytes memory data) = address(token).call(abi.encodeWithSelector(0xa9059cbb, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), '!TRANSFER_FAILED'); } function safeTransferFrom(IERC20 token, address from, address to, uint value) internal { // bytes4(keccak256(bytes('transferFrom(address,address,uint256)'))); (bool success, bytes memory data) = address(token).call(abi.encodeWithSelector(0x23b872dd, from, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), '!TRANSFER_FROM_FAILED'); } function safeTransferETH(address to, uint value) internal { (bool success,) = to.call{value:value}(new bytes(0)); require(success, '!ETH_TRANSFER_FAILED'); } } pragma solidity ^0.8.0; /** * @title TokenVesting * @dev A token holder contract that can release its token balance gradually like a * typical vesting scheme, with a cliff and vesting period. Optionally revocable by the * owner. */ contract TokenVesting { using SafeMath for uint256; using SafeERC20 for IERC20; event Released(uint256 amount); address public beneficiary; uint256 public cliff; uint256 public start; uint256 public duration; mapping(address => uint256) public released; /* * @dev Creates a vesting contract that vests its balance of any ERC20 token to the * _beneficiary, gradually in a linear fashion until _start + _duration. By then all * of the balance will have vested. * @param _beneficiary * @param _cliff duration in seconds of the cliff in which tokens will begin to vest * @param _duration */ constructor( address _beneficiary, uint256 _start, uint256 _cliff, uint256 _duration ) { require(_beneficiary != address(0)); require(_cliff <= _duration); beneficiary = _beneficiary; duration = _duration; cliff = _start.add(_cliff); start = _start; } /** * @notice Transfers vested tokens to beneficiary. * @param token ERC20 token which is being vested */ function release(address token) external { uint256 unreleased = releasableAmount(token); require(unreleased > 0); released[token] = released[token].add(unreleased); IERC20(token).safeTransfer(beneficiary, unreleased); emit Released(unreleased); } /** * @dev Calculates the amount that has already vested but hasn't been released yet. * @param token ERC20 token which is being vested */ function releasableAmount(address token) public view returns (uint256) { return vestedAmount(token).sub(released[token]); } /** * @dev Calculates the amount that has already vested. * @param token ERC20 token which is being vested */ function vestedAmount(address token) public view returns (uint256) { uint256 currentBalance = IERC20(token).balanceOf(address(this)); uint256 totalBalance = currentBalance.add(released[token]); if (block.timestamp < cliff) { return 0; } else if (block.timestamp >= start.add(duration)) { return totalBalance; } else { return totalBalance.mul(block.timestamp.sub(start)).div(duration); } } } pragma solidity ^0.8.0; contract Token is Ownable, ERC20{ TokenVesting public teamLockToken ; TokenVesting public communityToken; TokenVesting public seedRoundLockToken; TokenVesting public teamVaultToken; bool doOnce; uint256 public constant MAX_SUPPLY = 100 * 1e6 * 1e18; constructor(string memory name_, string memory symbol_) Ownable() ERC20(name_,symbol_){ teamLockToken = new TokenVesting(msg.sender, block.timestamp + 360 days, 0 days, 300 days); communityToken = new TokenVesting(msg.sender, block.timestamp, 0 days, 0 days); seedRoundLockToken = new TokenVesting(msg.sender, block.timestamp + 180 days, 0 days, 150 days); teamVaultToken = new TokenVesting(msg.sender, block.timestamp, 0 days, 0 days); __mint(msg.sender, 10 * 1e6 * 1e18); __mint(address(teamLockToken), 10 * 1e6 * 1e18); __mint(address(communityToken), 5 * 1e6 * 1e18); __mint(address(seedRoundLockToken), 20 * 1e6 * 1e18); __mint(address(teamVaultToken), 10 * 1e6 * 1e18); } function mintToFarm(address _farm) external onlyOwner { require(!doOnce, "only can mint once"); doOnce = true; __mint(_farm, 45 * 1e6 * 1e18); } function __mint(address _to, uint256 _amount) internal { _mint(_to, _amount); _moveDelegates(address(0), _to, _amount); } function _transfer(address sender, address recipient, uint256 amount) internal override { ERC20._transfer(sender, recipient, amount); _moveDelegates(sender, recipient, amount); } // Copied and modified from YAM code: // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol // Which is copied and modified from COMPOUND: // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol // notice A record of each accounts delegate mapping (address => address) internal _delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } /// @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice A record of states for signing / validating signatures mapping (address => uint) public nonces; /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegator The address to get delegatee for */ function delegates(address delegator) external view returns (address) { return _delegates[delegator]; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig( address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s ) external { bytes32 domainSeparator = keccak256( abi.encode( DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this) ) ); bytes32 structHash = keccak256( abi.encode( DELEGATION_TYPEHASH, delegatee, nonce, expiry ) ); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", domainSeparator, structHash ) ); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "FarmToken::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "FarmToken::delegateBySig: invalid nonce"); require(block.timestamp <= expiry, "FarmToken::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint256) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint blockNumber) external view returns (uint256) { require(blockNumber < block.number, "FarmToken::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates[delegator]; uint256 delegatorBalance = balanceOf(delegator); // balance of underlying FarmTokens (not scaled); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { // decrease old representative uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld - amount; _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld + amount; _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32(block.number, "FarmToken::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function getChainId() internal view returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 1 }, "evmVersion": "berlin", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityToken","outputs":[{"internalType":"contract TokenVesting","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_farm","type":"address"}],"name":"mintToFarm","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seedRoundLockToken","outputs":[{"internalType":"contract TokenVesting","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamLockToken","outputs":[{"internalType":"contract TokenVesting","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamVaultToken","outputs":[{"internalType":"contract TokenVesting","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002bf738038062002bf78339810160408190526200003491620008f6565b603380546001600160a01b031916339081179091556040518391839181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350815162000090906037906020850190620007b1565b508051620000a6906038906020840190620007b1565b50506039805460ff191660121790555033620000c7426301da9c00620009bb565b600063018b8200604051620000dc9062000840565b620000eb949392919062000960565b604051809103906000f08015801562000108573d6000803e3d6000fd5b50603960016101000a8154816001600160a01b0302191690836001600160a01b031602179055503342600080604051620001429062000840565b62000151949392919062000960565b604051809103906000f0801580156200016e573d6000803e3d6000fd5b50603a80546001600160a01b0319166001600160a01b0392909216919091179055336200019f4262ed4e00620009bb565b600062c5c100604051620001b39062000840565b620001c2949392919062000960565b604051809103906000f080158015620001df573d6000803e3d6000fd5b50603b60006101000a8154816001600160a01b0302191690836001600160a01b031602179055503342600080604051620002199062000840565b62000228949392919062000960565b604051809103906000f08015801562000245573d6000803e3d6000fd5b50603c80546001600160a01b0319166001600160a01b03929092169190911790556200027d336a084595161401484a00000062000316565b603954620002a59061010090046001600160a01b03166a084595161401484a00000062000316565b603a54620002c8906001600160a01b03166a0422ca8b0a00a42500000062000316565b603b54620002eb906001600160a01b03166a108b2a2c2802909400000062000316565b603c546200030e906001600160a01b03166a084595161401484a00000062000316565b505062000adf565b62000322828262000334565b62000330600083836200043f565b5050565b6001600160a01b038216620003905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620003ac81603654620005bb60201b62000dbb1790919060201c565b6036556001600160a01b038216600090815260346020908152604090912054620003e191839062000dbb620005bb821b17901c565b6001600160a01b0383166000818152603460205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620004339085815260200190565b60405180910390a35050565b816001600160a01b0316836001600160a01b031614158015620004625750600081115b15620005b6576001600160a01b038316156200050f576001600160a01b0383166000908152603f602052604081205463ffffffff169081620004a6576000620004eb565b6001600160a01b0385166000908152603e6020526040812090620004cc60018562000a1b565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000620004fb848362000a01565b90506200050b86848484620005d0565b5050505b6001600160a01b03821615620005b6576001600160a01b0382166000908152603f602052604081205463ffffffff1690816200054d57600062000592565b6001600160a01b0384166000908152603e60205260408120906200057360018562000a1b565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000620005a28483620009bb565b9050620005b285848484620005d0565b5050505b505050565b6000620005c98284620009bb565b9392505050565b6000620005f74360405180606001604052806039815260200162002bbe603991396200077e565b905060008463ffffffff161180156200065457506001600160a01b0385166000908152603e6020526040812063ffffffff8316916200063860018862000a1b565b63ffffffff908116825260208201929092526040016000205416145b15620006a1576001600160a01b0385166000908152603e6020526040812083916200068160018862000a1b565b63ffffffff16815260208101919091526040016000206001015562000733565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152603e83528581208a851682529092529390209151825463ffffffff19169116178155905160019182015562000702908590620009d6565b6001600160a01b0386166000908152603f60205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b6000816401000000008410620007a95760405162461bcd60e51b815260040162000387919062000986565b509192915050565b828054620007bf9062000a76565b90600052602060002090601f016020900481019282620007e357600085556200082e565b82601f10620007fe57805160ff19168380011785556200082e565b828001600101855582156200082e579182015b828111156200082e57825182559160200191906001019062000811565b506200083c9291506200084e565b5090565b6106e080620024de83390190565b5b808211156200083c57600081556001016200084f565b600082601f8301126200087757600080fd5b81516001600160401b038082111562000894576200089462000ac9565b604051601f8301601f19908116603f01168101908282118183101715620008bf57620008bf62000ac9565b81604052838152866020858801011115620008d957600080fd5b620008ec84602083016020890162000a43565b9695505050505050565b600080604083850312156200090a57600080fd5b82516001600160401b03808211156200092257600080fd5b620009308683870162000865565b935060208501519150808211156200094757600080fd5b50620009568582860162000865565b9150509250929050565b6001600160a01b0394909416845260208401929092526040830152606082015260800190565b6020815260008251806020840152620009a781604085016020870162000a43565b601f01601f19169190910160400192915050565b60008219821115620009d157620009d162000ab3565b500190565b600063ffffffff808316818516808303821115620009f857620009f862000ab3565b01949350505050565b60008282101562000a165762000a1662000ab3565b500390565b600063ffffffff8381169083168181101562000a3b5762000a3b62000ab3565b039392505050565b60005b8381101562000a6057818101518382015260200162000a46565b8381111562000a70576000848401525b50505050565b600181811c9082168062000a8b57607f821691505b6020821081141562000aad57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6119ef8062000aef6000396000f3fe608060405234801561001057600080fd5b506004361061016a5760003560e01c806306fdde031461016f578063095ea7b31461018d57806318160ddd146101b05780631f84135a146101c257806320606b70146101ed57806323b872dd1461020257806329aa161714610215578063313ce5671461022857806332cb6b0c1461023d578063395093511461024f578063587cde1e146102625780635c19a95c1461028e5780636331e9ae146102a35780636fcfff45146102b657806370a08231146102f1578063715018a614610304578063782d6fe11461030c5780637ecebe001461031f57806387e7f47c1461033f5780638da5cb5b1461035257806395d89b4114610363578063964bca5f1461036b578063a457c2d714610383578063a9059cbb14610396578063b4b5ea57146103a9578063c3cda520146103bc578063dd62ed3e146103cf578063e7a324dc14610408578063f1127ed81461041d578063f2fde38b14610474575b600080fd5b610177610487565b60405161018491906116ca565b60405180910390f35b6101a061019b366004611600565b610519565b6040519015158152602001610184565b6036545b604051908152602001610184565b603b546101d5906001600160a01b031681565b6040516001600160a01b039091168152602001610184565b6101b460008051602061186e83398151915281565b6101a06102103660046115c4565b610530565b603a546101d5906001600160a01b031681565b60395460405160ff9091168152602001610184565b6101b46a52b7d2dcc80cd2e400000081565b6101a061025d366004611600565b610599565b6101d5610270366004611576565b6001600160a01b039081166000908152603d60205260409020541690565b6102a161029c366004611576565b6105cf565b005b6102a16102b1366004611576565b6105dc565b6102dc6102c4366004611576565b603f6020526000908152604090205463ffffffff1681565b60405163ffffffff9091168152602001610184565b6101b46102ff366004611576565b610686565b6102a16106a1565b6101b461031a366004611600565b610703565b6101b461032d366004611576565b60406020819052600091825290205481565b603c546101d5906001600160a01b031681565b6033546001600160a01b03166101d5565b61017761096d565b6039546101d59061010090046001600160a01b031681565b6101a0610391366004611600565b61097c565b6101a06103a4366004611600565b6109cb565b6101b46103b7366004611576565b6109d8565b6102a16103ca36600461162a565b610a4d565b6101b46103dd366004611591565b6001600160a01b03918216600090815260356020908152604080832093909416825291909152205490565b6101b46000805160206118ae83398151915281565b61045861042b36600461168a565b603e6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff9093168352602083019190915201610184565b6102a1610482366004611576565b610ce2565b60606037805461049690611801565b80601f01602080910402602001604051908101604052809291908181526020018280546104c290611801565b801561050f5780601f106104e45761010080835404028352916020019161050f565b820191906000526020600020905b8154815290600101906020018083116104f257829003601f168201915b5050505050905090565b6000610526338484610dc7565b5060015b92915050565b600061053d848484610eec565b61058f843361058a856040518060600160405280602881526020016118f4602891396001600160a01b038a1660009081526035602090815260408083203384529091529020549190610f07565b610dc7565b5060019392505050565b3360008181526035602090815260408083206001600160a01b0387168452909152812054909161052691859061058a9086610dbb565b6105d93382610f33565b50565b6033546001600160a01b0316331461060f5760405162461bcd60e51b81526004016106069061171f565b60405180910390fd5b603c54600160a01b900460ff161561065e5760405162461bcd60e51b81526020600482015260126024820152716f6e6c792063616e206d696e74206f6e636560701b6044820152606401610606565b603c805460ff60a01b1916600160a01b1790556105d9816a25391ee35a05c54d000000610fc8565b6001600160a01b031660009081526034602052604090205490565b6033546001600160a01b031633146106cb5760405162461bcd60e51b81526004016106069061171f565b6033546040516000916001600160a01b031690600080516020611955833981519152908390a3603380546001600160a01b0319169055565b60004382106107695760405162461bcd60e51b815260206004820152602c60248201527f4661726d546f6b656e3a3a6765745072696f72566f7465733a206e6f7420796560448201526b1d0819195d195c9b5a5b995960a21b6064820152608401610606565b6001600160a01b0383166000908152603f602052604090205463ffffffff168061079757600091505061052a565b6001600160a01b0384166000908152603e6020526040812084916107bc6001856117dc565b63ffffffff90811682526020820192909252604001600020541611610825576001600160a01b0384166000908152603e60205260408120906107ff6001846117dc565b63ffffffff1663ffffffff1681526020019081526020016000206001015491505061052a565b6001600160a01b0384166000908152603e6020908152604080832083805290915290205463ffffffff1683101561086057600091505061052a565b60008061086e6001846117dc565b90505b8163ffffffff168163ffffffff161115610936576000600261089384846117dc565b61089d9190611794565b6108a790836117dc565b6001600160a01b0388166000908152603e6020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915291925087141561090a5760200151945061052a9350505050565b805163ffffffff168711156109215781935061092f565b61092c6001836117dc565b92505b5050610871565b506001600160a01b0385166000908152603e6020908152604080832063ffffffff9094168352929052206001015491505092915050565b60606038805461049690611801565b6000610526338461058a85604051806060016040528060258152602001611995602591393360009081526035602090815260408083206001600160a01b038d1684529091529020549190610f07565b6000610526338484610eec565b6001600160a01b0381166000908152603f602052604081205463ffffffff1680610a03576000610a46565b6001600160a01b0383166000908152603e6020526040812090610a276001846117dc565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9392505050565b600060008051602061186e833981519152610a66610487565b80519060200120610a744690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401206000805160206118ae83398151915260c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015610b8e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610bf35760405162461bcd60e51b815260206004820152602b602482015260008051602061188e83398151915260448201526a64207369676e617475726560a81b6064820152608401610606565b6001600160a01b0381166000908152604060208190528120805491610c178361183c565b919050558914610c675760405162461bcd60e51b8152602060048201526027602482015260008051602061188e83398151915260448201526664206e6f6e636560c81b6064820152608401610606565b87421115610ccb5760405162461bcd60e51b815260206004820152602b60248201527f4661726d546f6b656e3a3a64656c656761746542795369673a207369676e617460448201526a1d5c9948195e1c1a5c995960aa1b6064820152608401610606565b610cd5818b610f33565b505050505b505050505050565b6033546001600160a01b03163314610d0c5760405162461bcd60e51b81526004016106069061171f565b6001600160a01b038116610d715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610606565b6033546040516001600160a01b0380841692169060008051602061195583398151915290600090a3603380546001600160a01b0319166001600160a01b0392909216919091179055565b6000610a468284611754565b6001600160a01b038316610e295760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610606565b6001600160a01b038216610e8a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610606565b6001600160a01b0383811660008181526035602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b610ef7838383610fe2565b610f02838383611156565b505050565b60008184841115610f2b5760405162461bcd60e51b815260040161060691906116ca565b505050900390565b6001600160a01b038083166000908152603d602052604081205490911690610f5a84610686565b6001600160a01b038581166000818152603d602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4610fc2828483611156565b50505050565b610fd282826112b5565b610fde60008383611156565b5050565b6001600160a01b0383166110465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610606565b6001600160a01b0382166110a85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610606565b6110e5816040518060600160405280602681526020016118ce602691396001600160a01b0386166000908152603460205260409020549190610f07565b6001600160a01b0380851660009081526034602052604080822093909355908416815220546111149082610dbb565b6001600160a01b03808416600081815260346020526040908190209390935591519085169060008051602061197583398151915290610edf9085815260200190565b816001600160a01b0316836001600160a01b0316141580156111785750600081115b15610f02576001600160a01b0383161561121b576001600160a01b0383166000908152603f602052604081205463ffffffff1690816111b85760006111fb565b6001600160a01b0385166000908152603e60205260408120906111dc6001856117dc565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9050600061120984836117c5565b905061121786848484611389565b5050505b6001600160a01b03821615610f02576001600160a01b0382166000908152603f602052604081205463ffffffff169081611256576000611299565b6001600160a01b0384166000908152603e602052604081209061127a6001856117dc565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006112a78483611754565b9050610cda85848484611389565b6001600160a01b03821661130b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610606565b6036546113189082610dbb565b6036556001600160a01b03821660009081526034602052604090205461133e9082610dbb565b6001600160a01b0383166000818152603460205260408082209390935591519091906000805160206119758339815191529061137d9085815260200190565b60405180910390a35050565b60006113ad4360405180606001604052806039815260200161191c6039913961152b565b905060008463ffffffff1611801561140757506001600160a01b0385166000908152603e6020526040812063ffffffff8316916113eb6001886117dc565b63ffffffff908116825260208201929092526040016000205416145b15611450576001600160a01b0385166000908152603e6020526040812083916114316001886117dc565b63ffffffff1681526020810191909152604001600020600101556114e0565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152603e83528581208a851682529092529390209151825463ffffffff1916911617815590516001918201556114af90859061176c565b6001600160a01b0386166000908152603f60205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b600081600160201b84106115525760405162461bcd60e51b815260040161060691906116ca565b509192915050565b80356001600160a01b038116811461157157600080fd5b919050565b60006020828403121561158857600080fd5b610a468261155a565b600080604083850312156115a457600080fd5b6115ad8361155a565b91506115bb6020840161155a565b90509250929050565b6000806000606084860312156115d957600080fd5b6115e28461155a565b92506115f06020850161155a565b9150604084013590509250925092565b6000806040838503121561161357600080fd5b61161c8361155a565b946020939093013593505050565b60008060008060008060c0878903121561164357600080fd5b61164c8761155a565b95506020870135945060408701359350606087013560ff8116811461167057600080fd5b9598949750929560808101359460a0909101359350915050565b6000806040838503121561169d57600080fd5b6116a68361155a565b9150602083013563ffffffff811681146116bf57600080fd5b809150509250929050565b600060208083528351808285015260005b818110156116f7578581018301518582016040015282016116db565b81811115611709576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561176757611767611857565b500190565b600063ffffffff80831681851680830382111561178b5761178b611857565b01949350505050565b600063ffffffff808416806117b957634e487b7160e01b600052601260045260246000fd5b92169190910492915050565b6000828210156117d7576117d7611857565b500390565b600063ffffffff838116908316818110156117f9576117f9611857565b039392505050565b600181811c9082168061181557607f821691505b6020821081141561183657634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561185057611850611857565b5060010190565b634e487b7160e01b600052601160045260246000fdfe8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8664661726d546f6b656e3a3a64656c656761746542795369673a20696e76616c69e48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654661726d546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974738be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122060772dfd12787e9e4e9f34ef4bde66ecf41a23b9b59767f84d402fef47f3f0f664736f6c63430008060033608060405234801561001057600080fd5b506040516106e03803806106e083398101604081905261002f916100a5565b6001600160a01b03841661004257600080fd5b8082111561004f57600080fd5b600080546001600160a01b0319166001600160a01b03861617905560038190556100848383610092602090811b61030317901c565b600155505060025550610116565b600061009e82846100f0565b9392505050565b600080600080608085870312156100bb57600080fd5b84516001600160a01b03811681146100d257600080fd5b60208601516040870151606090970151919890975090945092505050565b6000821982111561011157634e487b7160e01b600052601160045260246000fd5b500190565b6105bb806101256000396000f3fe608060405234801561001057600080fd5b50600436106100785760003560e01c80630fb5a6b41461007d57806313d033c0146100995780631726cbc8146100a257806319165587146100b5578063384711cc146100ca57806338af3eed146100dd5780639852595c146100fd578063be9a65551461011d575b600080fd5b61008660035481565b6040519081526020015b60405180910390f35b61008660015481565b6100866100b036600461044c565b610126565b6100c86100c336600461044c565b610158565b005b6100866100d836600461044c565b6101f7565b6000546100f0906001600160a01b031681565b60405161009091906104eb565b61008661010b36600461044c565b60046020526000908152604090205481565b61008660025481565b6001600160a01b0381166000908152600460205260408120546101529061014c846101f7565b90610316565b92915050565b600061016382610126565b90506000811161017257600080fd5b6001600160a01b0382166000908152600460205260409020546101959082610303565b6001600160a01b0380841660008181526004602052604081209390935591546101c092911683610322565b6040518181527ffb81f9b30d73d830c3544b34d827c08142579ee75710b490bab0b3995468c5659060200160405180910390a15050565b600080826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161022691906104eb565b60206040518083038186803b15801561023e57600080fd5b505afa158015610252573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102769190610497565b6001600160a01b0384166000908152600460205260408120549192509061029e908390610303565b90506001544210156102b4575060009392505050565b6003546002546102c391610303565b42106102d0579392505050565b6102fb6003546102f56102ee6002544261031690919063ffffffff16565b8490610434565b90610440565b949350505050565b600061030f82846104ff565b9392505050565b600061030f8284610558565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b179052915160009283929087169161037e91906104b0565b6000604051808303816000865af19150503d80600081146103bb576040519150601f19603f3d011682016040523d82523d6000602084013e6103c0565b606091505b50915091508180156103ea5750805115806103ea5750808060200190518101906103ea9190610475565b61042d5760405162461bcd60e51b815260206004820152601060248201526f085514905394d1915497d1905253115160821b604482015260640160405180910390fd5b5050505050565b600061030f8284610539565b600061030f8284610517565b60006020828403121561045e57600080fd5b81356001600160a01b038116811461030f57600080fd5b60006020828403121561048757600080fd5b8151801515811461030f57600080fd5b6000602082840312156104a957600080fd5b5051919050565b6000825160005b818110156104d157602081860181015185830152016104b7565b818111156104e0576000828501525b509190910192915050565b6001600160a01b0391909116815260200190565b600082198211156105125761051261056f565b500190565b60008261053457634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156105535761055361056f565b500290565b60008282101561056a5761056a61056f565b500390565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220359caeedce73c0e9d59aa74b0067cb97157d75ed8ba8d3fe728aac8525e4018864736f6c634300080600334661726d546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e4b6f6b6f6d6f2046696e616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044b4f4b4f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061016a5760003560e01c806306fdde031461016f578063095ea7b31461018d57806318160ddd146101b05780631f84135a146101c257806320606b70146101ed57806323b872dd1461020257806329aa161714610215578063313ce5671461022857806332cb6b0c1461023d578063395093511461024f578063587cde1e146102625780635c19a95c1461028e5780636331e9ae146102a35780636fcfff45146102b657806370a08231146102f1578063715018a614610304578063782d6fe11461030c5780637ecebe001461031f57806387e7f47c1461033f5780638da5cb5b1461035257806395d89b4114610363578063964bca5f1461036b578063a457c2d714610383578063a9059cbb14610396578063b4b5ea57146103a9578063c3cda520146103bc578063dd62ed3e146103cf578063e7a324dc14610408578063f1127ed81461041d578063f2fde38b14610474575b600080fd5b610177610487565b60405161018491906116ca565b60405180910390f35b6101a061019b366004611600565b610519565b6040519015158152602001610184565b6036545b604051908152602001610184565b603b546101d5906001600160a01b031681565b6040516001600160a01b039091168152602001610184565b6101b460008051602061186e83398151915281565b6101a06102103660046115c4565b610530565b603a546101d5906001600160a01b031681565b60395460405160ff9091168152602001610184565b6101b46a52b7d2dcc80cd2e400000081565b6101a061025d366004611600565b610599565b6101d5610270366004611576565b6001600160a01b039081166000908152603d60205260409020541690565b6102a161029c366004611576565b6105cf565b005b6102a16102b1366004611576565b6105dc565b6102dc6102c4366004611576565b603f6020526000908152604090205463ffffffff1681565b60405163ffffffff9091168152602001610184565b6101b46102ff366004611576565b610686565b6102a16106a1565b6101b461031a366004611600565b610703565b6101b461032d366004611576565b60406020819052600091825290205481565b603c546101d5906001600160a01b031681565b6033546001600160a01b03166101d5565b61017761096d565b6039546101d59061010090046001600160a01b031681565b6101a0610391366004611600565b61097c565b6101a06103a4366004611600565b6109cb565b6101b46103b7366004611576565b6109d8565b6102a16103ca36600461162a565b610a4d565b6101b46103dd366004611591565b6001600160a01b03918216600090815260356020908152604080832093909416825291909152205490565b6101b46000805160206118ae83398151915281565b61045861042b36600461168a565b603e6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff9093168352602083019190915201610184565b6102a1610482366004611576565b610ce2565b60606037805461049690611801565b80601f01602080910402602001604051908101604052809291908181526020018280546104c290611801565b801561050f5780601f106104e45761010080835404028352916020019161050f565b820191906000526020600020905b8154815290600101906020018083116104f257829003601f168201915b5050505050905090565b6000610526338484610dc7565b5060015b92915050565b600061053d848484610eec565b61058f843361058a856040518060600160405280602881526020016118f4602891396001600160a01b038a1660009081526035602090815260408083203384529091529020549190610f07565b610dc7565b5060019392505050565b3360008181526035602090815260408083206001600160a01b0387168452909152812054909161052691859061058a9086610dbb565b6105d93382610f33565b50565b6033546001600160a01b0316331461060f5760405162461bcd60e51b81526004016106069061171f565b60405180910390fd5b603c54600160a01b900460ff161561065e5760405162461bcd60e51b81526020600482015260126024820152716f6e6c792063616e206d696e74206f6e636560701b6044820152606401610606565b603c805460ff60a01b1916600160a01b1790556105d9816a25391ee35a05c54d000000610fc8565b6001600160a01b031660009081526034602052604090205490565b6033546001600160a01b031633146106cb5760405162461bcd60e51b81526004016106069061171f565b6033546040516000916001600160a01b031690600080516020611955833981519152908390a3603380546001600160a01b0319169055565b60004382106107695760405162461bcd60e51b815260206004820152602c60248201527f4661726d546f6b656e3a3a6765745072696f72566f7465733a206e6f7420796560448201526b1d0819195d195c9b5a5b995960a21b6064820152608401610606565b6001600160a01b0383166000908152603f602052604090205463ffffffff168061079757600091505061052a565b6001600160a01b0384166000908152603e6020526040812084916107bc6001856117dc565b63ffffffff90811682526020820192909252604001600020541611610825576001600160a01b0384166000908152603e60205260408120906107ff6001846117dc565b63ffffffff1663ffffffff1681526020019081526020016000206001015491505061052a565b6001600160a01b0384166000908152603e6020908152604080832083805290915290205463ffffffff1683101561086057600091505061052a565b60008061086e6001846117dc565b90505b8163ffffffff168163ffffffff161115610936576000600261089384846117dc565b61089d9190611794565b6108a790836117dc565b6001600160a01b0388166000908152603e6020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915291925087141561090a5760200151945061052a9350505050565b805163ffffffff168711156109215781935061092f565b61092c6001836117dc565b92505b5050610871565b506001600160a01b0385166000908152603e6020908152604080832063ffffffff9094168352929052206001015491505092915050565b60606038805461049690611801565b6000610526338461058a85604051806060016040528060258152602001611995602591393360009081526035602090815260408083206001600160a01b038d1684529091529020549190610f07565b6000610526338484610eec565b6001600160a01b0381166000908152603f602052604081205463ffffffff1680610a03576000610a46565b6001600160a01b0383166000908152603e6020526040812090610a276001846117dc565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9392505050565b600060008051602061186e833981519152610a66610487565b80519060200120610a744690565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401206000805160206118ae83398151915260c08401526001600160a01b038b1660e084015261010083018a90526101208084018a90528251808503909101815261014084019092528151919093012061190160f01b610160830152610162820183905261018282018190529192506000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa158015610b8e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610bf35760405162461bcd60e51b815260206004820152602b602482015260008051602061188e83398151915260448201526a64207369676e617475726560a81b6064820152608401610606565b6001600160a01b0381166000908152604060208190528120805491610c178361183c565b919050558914610c675760405162461bcd60e51b8152602060048201526027602482015260008051602061188e83398151915260448201526664206e6f6e636560c81b6064820152608401610606565b87421115610ccb5760405162461bcd60e51b815260206004820152602b60248201527f4661726d546f6b656e3a3a64656c656761746542795369673a207369676e617460448201526a1d5c9948195e1c1a5c995960aa1b6064820152608401610606565b610cd5818b610f33565b505050505b505050505050565b6033546001600160a01b03163314610d0c5760405162461bcd60e51b81526004016106069061171f565b6001600160a01b038116610d715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610606565b6033546040516001600160a01b0380841692169060008051602061195583398151915290600090a3603380546001600160a01b0319166001600160a01b0392909216919091179055565b6000610a468284611754565b6001600160a01b038316610e295760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610606565b6001600160a01b038216610e8a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610606565b6001600160a01b0383811660008181526035602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b610ef7838383610fe2565b610f02838383611156565b505050565b60008184841115610f2b5760405162461bcd60e51b815260040161060691906116ca565b505050900390565b6001600160a01b038083166000908152603d602052604081205490911690610f5a84610686565b6001600160a01b038581166000818152603d602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4610fc2828483611156565b50505050565b610fd282826112b5565b610fde60008383611156565b5050565b6001600160a01b0383166110465760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610606565b6001600160a01b0382166110a85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610606565b6110e5816040518060600160405280602681526020016118ce602691396001600160a01b0386166000908152603460205260409020549190610f07565b6001600160a01b0380851660009081526034602052604080822093909355908416815220546111149082610dbb565b6001600160a01b03808416600081815260346020526040908190209390935591519085169060008051602061197583398151915290610edf9085815260200190565b816001600160a01b0316836001600160a01b0316141580156111785750600081115b15610f02576001600160a01b0383161561121b576001600160a01b0383166000908152603f602052604081205463ffffffff1690816111b85760006111fb565b6001600160a01b0385166000908152603e60205260408120906111dc6001856117dc565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9050600061120984836117c5565b905061121786848484611389565b5050505b6001600160a01b03821615610f02576001600160a01b0382166000908152603f602052604081205463ffffffff169081611256576000611299565b6001600160a01b0384166000908152603e602052604081209061127a6001856117dc565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060006112a78483611754565b9050610cda85848484611389565b6001600160a01b03821661130b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610606565b6036546113189082610dbb565b6036556001600160a01b03821660009081526034602052604090205461133e9082610dbb565b6001600160a01b0383166000818152603460205260408082209390935591519091906000805160206119758339815191529061137d9085815260200190565b60405180910390a35050565b60006113ad4360405180606001604052806039815260200161191c6039913961152b565b905060008463ffffffff1611801561140757506001600160a01b0385166000908152603e6020526040812063ffffffff8316916113eb6001886117dc565b63ffffffff908116825260208201929092526040016000205416145b15611450576001600160a01b0385166000908152603e6020526040812083916114316001886117dc565b63ffffffff1681526020810191909152604001600020600101556114e0565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152603e83528581208a851682529092529390209151825463ffffffff1916911617815590516001918201556114af90859061176c565b6001600160a01b0386166000908152603f60205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b600081600160201b84106115525760405162461bcd60e51b815260040161060691906116ca565b509192915050565b80356001600160a01b038116811461157157600080fd5b919050565b60006020828403121561158857600080fd5b610a468261155a565b600080604083850312156115a457600080fd5b6115ad8361155a565b91506115bb6020840161155a565b90509250929050565b6000806000606084860312156115d957600080fd5b6115e28461155a565b92506115f06020850161155a565b9150604084013590509250925092565b6000806040838503121561161357600080fd5b61161c8361155a565b946020939093013593505050565b60008060008060008060c0878903121561164357600080fd5b61164c8761155a565b95506020870135945060408701359350606087013560ff8116811461167057600080fd5b9598949750929560808101359460a0909101359350915050565b6000806040838503121561169d57600080fd5b6116a68361155a565b9150602083013563ffffffff811681146116bf57600080fd5b809150509250929050565b600060208083528351808285015260005b818110156116f7578581018301518582016040015282016116db565b81811115611709576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561176757611767611857565b500190565b600063ffffffff80831681851680830382111561178b5761178b611857565b01949350505050565b600063ffffffff808416806117b957634e487b7160e01b600052601260045260246000fd5b92169190910492915050565b6000828210156117d7576117d7611857565b500390565b600063ffffffff838116908316818110156117f9576117f9611857565b039392505050565b600181811c9082168061181557607f821691505b6020821081141561183657634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561185057611850611857565b5060010190565b634e487b7160e01b600052601160045260246000fdfe8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8664661726d546f6b656e3a3a64656c656761746542795369673a20696e76616c69e48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654661726d546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974738be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122060772dfd12787e9e4e9f34ef4bde66ecf41a23b9b59767f84d402fef47f3f0f664736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e4b6f6b6f6d6f2046696e616e636500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044b4f4b4f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Kokomo Finance
Arg [1] : symbol_ (string): KOKO
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 4b6f6b6f6d6f2046696e616e6365000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4b4f4b4f00000000000000000000000000000000000000000000000000000000
[ 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.