ERC-20
Overview
Max Total Supply
100,000,000 BMT
Holders
34
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
12,042.705098272695750211 BMTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BminingToken
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-02-03 */ // Dependency file: @openzeppelin/contracts/math/SafeMath.sol // pragma solidity ^0.5.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // Dependency file: @openzeppelin/contracts/GSN/Context.sol // pragma solidity ^0.5.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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ 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); } // Dependency file: @openzeppelin/contracts/token/ERC20/ERC20.sol // pragma solidity ^0.5.0; // import "@openzeppelin/contracts/GSN/Context.sol"; // import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // import "@openzeppelin/contracts/math/SafeMath.sol"; /** * @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 {ERC20Mintable}. * * 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 Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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 returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public 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 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 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 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 { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _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 { require(account != address(0), "ERC20: mint to the zero address"); _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 { require(account != address(0), "ERC20: burn from the zero address"); _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 { 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 Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } } // Dependency file: @openzeppelin/contracts/token/ERC20/ERC20Detailed.sol // pragma solidity ^0.5.0; // import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @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. * * 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; } } // Dependency file: @openzeppelin/contracts/ownership/Ownable.sol // pragma solidity ^0.5.0; // import "@openzeppelin/contracts/GSN/Context.sol"; /** * @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. * * 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 () internal { 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(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _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 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // Root file: contracts/BminingToken.sol pragma solidity >=0.5.0; // import "@openzeppelin/contracts/math/SafeMath.sol"; // import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; // import "@openzeppelin/contracts/token/ERC20/ERC20Detailed.sol"; // import "@openzeppelin/contracts/ownership/Ownable.sol"; contract BminingToken is ERC20, ERC20Detailed("BMiningToken", "BMT", 18), Ownable { function initialize(address _communityTreasury, address _teamTreasury, address _investorTreasury) external onlyOwner { require(totalSupply() == 0, "token distributed"); uint256 supply = 100_000_000e18; _mint(_communityTreasury, supply.mul(75).div(100)); _mint(_teamTreasury, supply.mul(20).div(100)); _mint(_investorTreasury, supply.mul(5).div(100)); require(supply == totalSupply(), "total number error"); } // 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), "BminingToken::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "BminingToken::delegateBySig: invalid nonce"); require(now <= expiry, "BminingToken::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, "BminingToken::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 (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.sub(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.add(amount); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32(block.number, "BminingToken::_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 pure returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } function burn(uint256 amount) external { _burn(msg.sender, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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"},{"constant":true,"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"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"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_communityTreasury","type":"address"},{"internalType":"address","name":"_teamTreasury","type":"address"},{"internalType":"address","name":"_investorTreasury","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600c60808181526b2126b4b734b733aa37b5b2b760a11b60a0908152610100604052600360c08181526210935560ea1b60e0529293601292620000439291620000de565b50815162000059906004906020850190620000de565b506005805460ff191660ff9290921691909117905550600090506200007d620000d9565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000180565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200012157805160ff191683800117855562000151565b8280016001018555821562000151579182015b828111156200015157825182559160200191906001019062000134565b506200015f92915062000163565b5090565b620000db91905b808211156200015f57600081556001016200016a565b611f3980620001906000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063782d6fe1116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e14610568578063e7a324dc14610596578063f1127ed81461059e578063f2fde38b146105f0576101a9565b8063b4b5ea57146104c3578063c0c53b8b146104e9578063c3cda52014610521576101a9565b80638f32d59b116100d35780638f32d59b1461045b57806395d89b4114610463578063a457c2d71461046b578063a9059cbb14610497576101a9565b8063782d6fe1146104015780637ecebe001461042d5780638da5cb5b14610453576101a9565b806339509351116101665780635c19a95c116101405780635c19a95c1461036e5780636fcfff451461039457806370a08231146103d3578063715018a6146103f9576101a9565b806339509351146102e157806342966c681461030d578063587cde1e1461032c576101a9565b806306fdde03146101ae578063095ea7b31461022b57806318160ddd1461026b57806320606b701461028557806323b872dd1461028d578063313ce567146102c3575b600080fd5b6101b6610616565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f05781810151838201526020016101d8565b50505050905090810190601f16801561021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102576004803603604081101561024157600080fd5b506001600160a01b0381351690602001356106ac565b604080519115158252519081900360200190f35b6102736106ca565b60408051918252519081900360200190f35b6102736106d0565b610257600480360360608110156102a357600080fd5b506001600160a01b038135811691602081013590911690604001356106eb565b6102cb610778565b6040805160ff9092168252519081900360200190f35b610257600480360360408110156102f757600080fd5b506001600160a01b038135169060200135610781565b61032a6004803603602081101561032357600080fd5b50356107d5565b005b6103526004803603602081101561034257600080fd5b50356001600160a01b03166107e2565b604080516001600160a01b039092168252519081900360200190f35b61032a6004803603602081101561038457600080fd5b50356001600160a01b0316610800565b6103ba600480360360208110156103aa57600080fd5b50356001600160a01b031661080a565b6040805163ffffffff9092168252519081900360200190f35b610273600480360360208110156103e957600080fd5b50356001600160a01b0316610822565b61032a61083d565b6102736004803603604081101561041757600080fd5b506001600160a01b0381351690602001356108e6565b6102736004803603602081101561044357600080fd5b50356001600160a01b0316610aee565b610352610b00565b610257610b14565b6101b6610b3f565b6102576004803603604081101561048157600080fd5b506001600160a01b038135169060200135610ba0565b610257600480360360408110156104ad57600080fd5b506001600160a01b038135169060200135610c0e565b610273600480360360208110156104d957600080fd5b50356001600160a01b0316610c22565b61032a600480360360608110156104ff57600080fd5b506001600160a01b038135811691602081013582169160409091013516610c86565b61032a600480360360c081101561053757600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135610dee565b6102736004803603604081101561057e57600080fd5b506001600160a01b0381358116916020013516611064565b61027361108f565b6105d0600480360360408110156105b457600080fd5b5080356001600160a01b0316906020013563ffffffff166110aa565b6040805163ffffffff909316835260208301919091528051918290030190f35b61032a6004803603602081101561060657600080fd5b50356001600160a01b03166110d7565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106a25780601f10610677576101008083540402835291602001916106a2565b820191906000526020600020905b81548152906001019060200180831161068557829003601f168201915b5050505050905090565b60006106c06106b9611139565b848461113d565b5060015b92915050565b60025490565b604051806043611d4682396043019050604051809103902081565b60006106f8848484611229565b61076e84610704611139565b61076985604051806060016040528060288152602001611daa602891396001600160a01b038a16600090815260016020526040812090610742611139565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61138516565b61113d565b5060019392505050565b60055460ff1690565b60006106c061078e611139565b84610769856001600061079f611139565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61141c16565b6107df3382611476565b50565b6001600160a01b039081166000908152600660205260409020541690565b6107df3382611572565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b610845610b14565b610896576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60004382106109265760405162461bcd60e51b815260040180806020018281038252602f815260200180611c2f602f913960400191505060405180910390fd5b6001600160a01b03831660009081526008602052604090205463ffffffff16806109545760009150506106c4565b6001600160a01b038416600090815260076020908152604080832063ffffffff6000198601811685529252909120541683106109c3576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff168352929052206001015490506106c4565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff168310156109fe5760009150506106c4565b600060001982015b8163ffffffff168163ffffffff161115610ab757600282820363ffffffff16048103610a30611bf4565b506001600160a01b038716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610a92576020015194506106c49350505050565b805163ffffffff16871115610aa957819350610ab0565b6001820392505b5050610a06565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b60096020526000908152604090205481565b60055461010090046001600160a01b031690565b60055460009061010090046001600160a01b0316610b30611139565b6001600160a01b031614905090565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106a25780601f10610677576101008083540402835291602001916106a2565b60006106c0610bad611139565b8461076985604051806060016040528060258152602001611ea46025913960016000610bd7611139565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61138516565b60006106c0610c1b611139565b8484611229565b6001600160a01b03811660009081526008602052604081205463ffffffff1680610c4d576000610c7f565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b610c8e610b14565b610cdf576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610ce76106ca565b15610d2d576040805162461bcd60e51b81526020600482015260116024820152701d1bdad95b88191a5cdd1c9a589d5d1959607a1b604482015290519081900360640190fd5b6a52b7d2dcc80cd2e4000000610d6484610d5f6064610d5385604b63ffffffff61160116565b9063ffffffff61165a16565b61169c565b610d7e83610d5f6064610d5385601463ffffffff61160116565b610d9882610d5f6064610d5385600563ffffffff61160116565b610da06106ca565b8114610de8576040805162461bcd60e51b81526020600482015260126024820152713a37ba30b610373ab6b132b91032b93937b960711b604482015290519081900360640190fd5b50505050565b60006040518080611d466043913960430190506040518091039020610e11610616565b80519060200120610e2061178c565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b0316815260200194505050505060405160208183030381529060405280519060200120905060006040518080611e3c603a91396040805191829003603a0182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a08401835280519082012061190160f01b60c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a28083019392601f198301929081900390910190855afa158015610f5e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610fb05760405162461bcd60e51b815260040180806020018281038252602e815260200180611e76602e913960400191505060405180910390fd5b6001600160a01b0381166000908152600960205260409020805460018101909155891461100e5760405162461bcd60e51b815260040180806020018281038252602a815260200180611cc8602a913960400191505060405180910390fd5b8742111561104d5760405162461bcd60e51b815260040180806020018281038252602e815260200180611d18602e913960400191505060405180910390fd5b611057818b611572565b505050505b505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60405180603a611e3c8239603a019050604051809103902081565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6110df610b14565b611130576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6107df81611790565b3390565b6001600160a01b0383166111825760405162461bcd60e51b8152600401808060200182810382526024815260200180611e186024913960400191505060405180910390fd5b6001600160a01b0382166111c75760405162461bcd60e51b8152600401808060200182810382526022815260200180611ca66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661126e5760405162461bcd60e51b8152600401808060200182810382526025815260200180611df36025913960400191505060405180910390fd5b6001600160a01b0382166112b35760405162461bcd60e51b8152600401808060200182810382526023815260200180611c0c6023913960400191505060405180910390fd5b6112f681604051806060016040528060268152602001611cf2602691396001600160a01b038616600090815260208190526040902054919063ffffffff61138516565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461132b908263ffffffff61141c16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156114145760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113d95781810151838201526020016113c1565b50505050905090810190601f1680156114065780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c7f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166114bb5760405162461bcd60e51b8152600401808060200182810382526021815260200180611dd26021913960400191505060405180910390fd5b6114fe81604051806060016040528060228152602001611c5e602291396001600160a01b038516600090815260208190526040902054919063ffffffff61138516565b6001600160a01b03831660009081526020819052604090205560025461152a908263ffffffff61183c16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038083166000908152600660205260408120549091169061159984610822565b6001600160a01b0385811660008181526006602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4610de882848361187e565b600082611610575060006106c4565b8282028284828161161d57fe5b0414610c7f5760405162461bcd60e51b8152600401808060200182810382526021815260200180611d896021913960400191505060405180910390fd5b6000610c7f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119cc565b6001600160a01b0382166116f7576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60025461170a908263ffffffff61141c16565b6002556001600160a01b038216600090815260208190526040902054611736908263ffffffff61141c16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b4690565b6001600160a01b0381166117d55760405162461bcd60e51b8152600401808060200182810382526026815260200180611c806026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000610c7f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611385565b816001600160a01b0316836001600160a01b0316141580156118a05750600081115b156119c7576001600160a01b03831615611938576001600160a01b03831660009081526008602052604081205463ffffffff1690816118e0576000611912565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b90506000611926828563ffffffff61183c16565b905061193486848484611a31565b5050505b6001600160a01b038216156119c7576001600160a01b03821660009081526008602052604081205463ffffffff1690816119735760006119a5565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006119b9828563ffffffff61141c16565b905061105c85848484611a31565b505050565b60008183611a1b5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113d95781810151838201526020016113c1565b506000838581611a2757fe5b0495945050505050565b6000611a55436040518060600160405280603c8152602001611ec9603c9139611b96565b905060008463ffffffff16118015611a9e57506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611adb576001600160a01b038516600090815260076020908152604080832063ffffffff60001989011684529091529020600101829055611b4c565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b6000816401000000008410611bec5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113d95781810151838201526020016113c1565b509192915050565b60408051808201909152600080825260208201529056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373426d696e696e67546f6b656e3a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373426d696e696e67546f6b656e3a3a64656c656761746542795369673a20696e76616c6964206e6f6e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365426d696e696e67546f6b656e3a3a64656c656761746542795369673a207369676e61747572652065787069726564454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737344656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e743235362065787069727929426d696e696e67546f6b656e3a3a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f426d696e696e67546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a265627a7a723158204bc29e99a47310e8fe1c4e6b54ee00965126ef6da8364059eea0e0edfc54f32d64736f6c63430005100032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063782d6fe1116100f9578063b4b5ea5711610097578063dd62ed3e11610071578063dd62ed3e14610568578063e7a324dc14610596578063f1127ed81461059e578063f2fde38b146105f0576101a9565b8063b4b5ea57146104c3578063c0c53b8b146104e9578063c3cda52014610521576101a9565b80638f32d59b116100d35780638f32d59b1461045b57806395d89b4114610463578063a457c2d71461046b578063a9059cbb14610497576101a9565b8063782d6fe1146104015780637ecebe001461042d5780638da5cb5b14610453576101a9565b806339509351116101665780635c19a95c116101405780635c19a95c1461036e5780636fcfff451461039457806370a08231146103d3578063715018a6146103f9576101a9565b806339509351146102e157806342966c681461030d578063587cde1e1461032c576101a9565b806306fdde03146101ae578063095ea7b31461022b57806318160ddd1461026b57806320606b701461028557806323b872dd1461028d578063313ce567146102c3575b600080fd5b6101b6610616565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f05781810151838201526020016101d8565b50505050905090810190601f16801561021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102576004803603604081101561024157600080fd5b506001600160a01b0381351690602001356106ac565b604080519115158252519081900360200190f35b6102736106ca565b60408051918252519081900360200190f35b6102736106d0565b610257600480360360608110156102a357600080fd5b506001600160a01b038135811691602081013590911690604001356106eb565b6102cb610778565b6040805160ff9092168252519081900360200190f35b610257600480360360408110156102f757600080fd5b506001600160a01b038135169060200135610781565b61032a6004803603602081101561032357600080fd5b50356107d5565b005b6103526004803603602081101561034257600080fd5b50356001600160a01b03166107e2565b604080516001600160a01b039092168252519081900360200190f35b61032a6004803603602081101561038457600080fd5b50356001600160a01b0316610800565b6103ba600480360360208110156103aa57600080fd5b50356001600160a01b031661080a565b6040805163ffffffff9092168252519081900360200190f35b610273600480360360208110156103e957600080fd5b50356001600160a01b0316610822565b61032a61083d565b6102736004803603604081101561041757600080fd5b506001600160a01b0381351690602001356108e6565b6102736004803603602081101561044357600080fd5b50356001600160a01b0316610aee565b610352610b00565b610257610b14565b6101b6610b3f565b6102576004803603604081101561048157600080fd5b506001600160a01b038135169060200135610ba0565b610257600480360360408110156104ad57600080fd5b506001600160a01b038135169060200135610c0e565b610273600480360360208110156104d957600080fd5b50356001600160a01b0316610c22565b61032a600480360360608110156104ff57600080fd5b506001600160a01b038135811691602081013582169160409091013516610c86565b61032a600480360360c081101561053757600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135610dee565b6102736004803603604081101561057e57600080fd5b506001600160a01b0381358116916020013516611064565b61027361108f565b6105d0600480360360408110156105b457600080fd5b5080356001600160a01b0316906020013563ffffffff166110aa565b6040805163ffffffff909316835260208301919091528051918290030190f35b61032a6004803603602081101561060657600080fd5b50356001600160a01b03166110d7565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106a25780601f10610677576101008083540402835291602001916106a2565b820191906000526020600020905b81548152906001019060200180831161068557829003601f168201915b5050505050905090565b60006106c06106b9611139565b848461113d565b5060015b92915050565b60025490565b604051806043611d4682396043019050604051809103902081565b60006106f8848484611229565b61076e84610704611139565b61076985604051806060016040528060288152602001611daa602891396001600160a01b038a16600090815260016020526040812090610742611139565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61138516565b61113d565b5060019392505050565b60055460ff1690565b60006106c061078e611139565b84610769856001600061079f611139565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61141c16565b6107df3382611476565b50565b6001600160a01b039081166000908152600660205260409020541690565b6107df3382611572565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b610845610b14565b610896576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60004382106109265760405162461bcd60e51b815260040180806020018281038252602f815260200180611c2f602f913960400191505060405180910390fd5b6001600160a01b03831660009081526008602052604090205463ffffffff16806109545760009150506106c4565b6001600160a01b038416600090815260076020908152604080832063ffffffff6000198601811685529252909120541683106109c3576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff168352929052206001015490506106c4565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff168310156109fe5760009150506106c4565b600060001982015b8163ffffffff168163ffffffff161115610ab757600282820363ffffffff16048103610a30611bf4565b506001600160a01b038716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610a92576020015194506106c49350505050565b805163ffffffff16871115610aa957819350610ab0565b6001820392505b5050610a06565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b60096020526000908152604090205481565b60055461010090046001600160a01b031690565b60055460009061010090046001600160a01b0316610b30611139565b6001600160a01b031614905090565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106a25780601f10610677576101008083540402835291602001916106a2565b60006106c0610bad611139565b8461076985604051806060016040528060258152602001611ea46025913960016000610bd7611139565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61138516565b60006106c0610c1b611139565b8484611229565b6001600160a01b03811660009081526008602052604081205463ffffffff1680610c4d576000610c7f565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b610c8e610b14565b610cdf576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610ce76106ca565b15610d2d576040805162461bcd60e51b81526020600482015260116024820152701d1bdad95b88191a5cdd1c9a589d5d1959607a1b604482015290519081900360640190fd5b6a52b7d2dcc80cd2e4000000610d6484610d5f6064610d5385604b63ffffffff61160116565b9063ffffffff61165a16565b61169c565b610d7e83610d5f6064610d5385601463ffffffff61160116565b610d9882610d5f6064610d5385600563ffffffff61160116565b610da06106ca565b8114610de8576040805162461bcd60e51b81526020600482015260126024820152713a37ba30b610373ab6b132b91032b93937b960711b604482015290519081900360640190fd5b50505050565b60006040518080611d466043913960430190506040518091039020610e11610616565b80519060200120610e2061178c565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b0316815260200194505050505060405160208183030381529060405280519060200120905060006040518080611e3c603a91396040805191829003603a0182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a08401835280519082012061190160f01b60c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a28083019392601f198301929081900390910190855afa158015610f5e573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610fb05760405162461bcd60e51b815260040180806020018281038252602e815260200180611e76602e913960400191505060405180910390fd5b6001600160a01b0381166000908152600960205260409020805460018101909155891461100e5760405162461bcd60e51b815260040180806020018281038252602a815260200180611cc8602a913960400191505060405180910390fd5b8742111561104d5760405162461bcd60e51b815260040180806020018281038252602e815260200180611d18602e913960400191505060405180910390fd5b611057818b611572565b505050505b505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60405180603a611e3c8239603a019050604051809103902081565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6110df610b14565b611130576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6107df81611790565b3390565b6001600160a01b0383166111825760405162461bcd60e51b8152600401808060200182810382526024815260200180611e186024913960400191505060405180910390fd5b6001600160a01b0382166111c75760405162461bcd60e51b8152600401808060200182810382526022815260200180611ca66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661126e5760405162461bcd60e51b8152600401808060200182810382526025815260200180611df36025913960400191505060405180910390fd5b6001600160a01b0382166112b35760405162461bcd60e51b8152600401808060200182810382526023815260200180611c0c6023913960400191505060405180910390fd5b6112f681604051806060016040528060268152602001611cf2602691396001600160a01b038616600090815260208190526040902054919063ffffffff61138516565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461132b908263ffffffff61141c16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156114145760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113d95781810151838201526020016113c1565b50505050905090810190601f1680156114065780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c7f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166114bb5760405162461bcd60e51b8152600401808060200182810382526021815260200180611dd26021913960400191505060405180910390fd5b6114fe81604051806060016040528060228152602001611c5e602291396001600160a01b038516600090815260208190526040902054919063ffffffff61138516565b6001600160a01b03831660009081526020819052604090205560025461152a908263ffffffff61183c16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038083166000908152600660205260408120549091169061159984610822565b6001600160a01b0385811660008181526006602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4610de882848361187e565b600082611610575060006106c4565b8282028284828161161d57fe5b0414610c7f5760405162461bcd60e51b8152600401808060200182810382526021815260200180611d896021913960400191505060405180910390fd5b6000610c7f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119cc565b6001600160a01b0382166116f7576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b60025461170a908263ffffffff61141c16565b6002556001600160a01b038216600090815260208190526040902054611736908263ffffffff61141c16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b4690565b6001600160a01b0381166117d55760405162461bcd60e51b8152600401808060200182810382526026815260200180611c806026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000610c7f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611385565b816001600160a01b0316836001600160a01b0316141580156118a05750600081115b156119c7576001600160a01b03831615611938576001600160a01b03831660009081526008602052604081205463ffffffff1690816118e0576000611912565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b90506000611926828563ffffffff61183c16565b905061193486848484611a31565b5050505b6001600160a01b038216156119c7576001600160a01b03821660009081526008602052604081205463ffffffff1690816119735760006119a5565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006119b9828563ffffffff61141c16565b905061105c85848484611a31565b505050565b60008183611a1b5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113d95781810151838201526020016113c1565b506000838581611a2757fe5b0495945050505050565b6000611a55436040518060600160405280603c8152602001611ec9603c9139611b96565b905060008463ffffffff16118015611a9e57506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611adb576001600160a01b038516600090815260076020908152604080832063ffffffff60001989011684529091529020600101829055611b4c565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b6000816401000000008410611bec5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113d95781810151838201526020016113c1565b509192915050565b60408051808201909152600080825260208201529056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373426d696e696e67546f6b656e3a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373426d696e696e67546f6b656e3a3a64656c656761746542795369673a20696e76616c6964206e6f6e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365426d696e696e67546f6b656e3a3a64656c656761746542795369673a207369676e61747572652065787069726564454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737344656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e743235362065787069727929426d696e696e67546f6b656e3a3a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f426d696e696e67546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a265627a7a723158204bc29e99a47310e8fe1c4e6b54ee00965126ef6da8364059eea0e0edfc54f32d64736f6c63430005100032
Deployed Bytecode Sourcemap
22746:9236:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22746:9236:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18901:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;18901:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12368:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12368:152:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;11389:91;;;:::i;:::-;;;;;;;;;;;;;;;;24324:122;;;:::i;12992:304::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12992:304:0;;;;;;;;;;;;;;;;;:::i;19753:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13705:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13705:210:0;;;;;;;;:::i;31896:83::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31896:83:0;;:::i;:::-;;25305:137;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25305:137:0;-1:-1:-1;;;;;25305:137:0;;:::i;:::-;;;;-1:-1:-1;;;;;25305:137:0;;;;;;;;;;;;;;25590:104;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25590:104:0;-1:-1:-1;;;;;25590:104:0;;:::i;24202:49::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24202:49:0;-1:-1:-1;;;;;24202:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;11543:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11543:110:0;-1:-1:-1;;;;;11543:110:0;;:::i;21680:140::-;;;:::i;28201:1249::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28201:1249:0;;;;;;;;:::i;24738:39::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24738:39:0;-1:-1:-1;;;;;24738:39:0;;:::i;20869:79::-;;;:::i;21235:94::-;;;:::i;19103:87::-;;;:::i;14418:261::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14418:261:0;;;;;;;;:::i;11866:158::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11866:158:0;;;;;;;;:::i;27527:243::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27527:243:0;-1:-1:-1;;;;;27527:243:0;;:::i;22835:471::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22835:471:0;;;;;;;;;;;;;;;;;;;:::i;26128:1198::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;26128:1198:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;12087:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12087:134:0;;;;;;;;;;:::i;24540:117::-;;;:::i;24063:70::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24063:70:0;;-1:-1:-1;;;;;24063:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;21975:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21975:109:0;-1:-1:-1;;;;;21975:109:0;;:::i;18901:83::-;18971:5;18964:12;;;;;;;;-1:-1:-1;;18964:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18938:13;;18964:12;;18971:5;;18964:12;;18971:5;18964:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18901:83;:::o;12368:152::-;12434:4;12451:39;12460:12;:10;:12::i;:::-;12474:7;12483:6;12451:8;:39::i;:::-;-1:-1:-1;12508:4:0;12368:152;;;;;:::o;11389:91::-;11460:12;;11389:91;:::o;24324:122::-;24366:80;;;;;;;;;;;;;;;;;;24324:122;:::o;12992:304::-;13081:4;13098:36;13108:6;13116:9;13127:6;13098:9;:36::i;:::-;13145:121;13154:6;13162:12;:10;:12::i;:::-;13176:89;13214:6;13176:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13176:19:0;;;;;;:11;:19;;;;;;13196:12;:10;:12::i;:::-;-1:-1:-1;;;;;13176:33:0;;;;;;;;;;;;-1:-1:-1;13176:33:0;;;:89;;:37;:89;:::i;:::-;13145:8;:121::i;:::-;-1:-1:-1;13284:4:0;12992:304;;;;;:::o;19753:83::-;19819:9;;;;19753:83;:::o;13705:210::-;13785:4;13802:83;13811:12;:10;:12::i;:::-;13825:7;13834:50;13873:10;13834:11;:25;13846:12;:10;:12::i;:::-;-1:-1:-1;;;;;13834:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13834:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;31896:83::-;31946:25;31952:10;31964:6;31946:5;:25::i;:::-;31896:83;:::o;25305:137::-;-1:-1:-1;;;;;25413:21:0;;;25381:7;25413:21;;;:10;:21;;;;;;;;25305:137::o;25590:104::-;25654:32;25664:10;25676:9;25654;:32::i;24202:49::-;;;;;;;;;;;;;;;:::o;11543:110::-;-1:-1:-1;;;;;11627:18:0;11600:7;11627:18;;;;;;;;;;;;11543:110::o;21680:140::-;21081:9;:7;:9::i;:::-;21073:54;;;;;-1:-1:-1;;;21073:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21763:6;;21742:40;;21779:1;;21763:6;;;-1:-1:-1;;;;;21763:6:0;;21742:40;;21779:1;;21742:40;21793:6;:19;;-1:-1:-1;;;;;;21793:19:0;;;21680:140::o;28201:1249::-;28297:7;28344:12;28330:11;:26;28322:86;;;;-1:-1:-1;;;28322:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28443:23:0;;28421:19;28443:23;;;:14;:23;;;;;;;;28481:17;28477:58;;28522:1;28515:8;;;;;28477:58;-1:-1:-1;;;;;28595:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;28616:16:0;;28595:38;;;;;;;;;:48;;:63;-1:-1:-1;28591:147:0;;-1:-1:-1;;;;;28682:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;28703:16:0;;;;28682:38;;;;;;;;28718:1;28682:44;;;-1:-1:-1;28675:51:0;;28591:147;-1:-1:-1;;;;;28799:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;28795:88:0;;;28870:1;28863:8;;;;;28795:88;28895:12;-1:-1:-1;;28937:16:0;;28964:428;28979:5;28971:13;;:5;:13;;;28964:428;;;29043:1;29026:13;;;29025:19;;;29017:27;;29086:20;;:::i;:::-;-1:-1:-1;;;;;;29109:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;29086:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29156:27;;29152:229;;;29211:8;;;;-1:-1:-1;29204:15:0;;-1:-1:-1;;;;29204:15:0;29152:229;29245:12;;:26;;;-1:-1:-1;29241:140:0;;;29300:6;29292:14;;29241:140;;;29364:1;29355:6;:10;29347:18;;29241:140;28964:428;;;;;-1:-1:-1;;;;;;29409:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;28201:1249:0;;;;:::o;24738:39::-;;;;;;;;;;;;;:::o;20869:79::-;20934:6;;;;;-1:-1:-1;;;;;20934:6:0;;20869:79::o;21235:94::-;21315:6;;21275:4;;21315:6;;;-1:-1:-1;;;;;21315:6:0;21299:12;:10;:12::i;:::-;-1:-1:-1;;;;;21299:22:0;;21292:29;;21235:94;:::o;19103:87::-;19175:7;19168:14;;;;;;;;-1:-1:-1;;19168:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19142:13;;19168:14;;19175:7;;19168:14;;19175:7;19168:14;;;;;;;;;;;;;;;;;;;;;;;;14418:261;14503:4;14520:129;14529:12;:10;:12::i;:::-;14543:7;14552:96;14591:15;14552:96;;;;;;;;;;;;;;;;;:11;:25;14564:12;:10;:12::i;:::-;-1:-1:-1;;;;;14552:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14552:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;11866:158::-;11935:4;11952:42;11962:12;:10;:12::i;:::-;11976:9;11987:6;11952:9;:42::i;27527:243::-;-1:-1:-1;;;;;27654:23:0;;27607:7;27654:23;;;:14;:23;;;;;;;;27695:16;:67;;27761:1;27695:67;;;-1:-1:-1;;;;;27714:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;27735:16:0;;27714:38;;;;;;;;27750:1;27714:44;;27695:67;27688:74;27527:243;-1:-1:-1;;;27527:243:0:o;22835:471::-;21081:9;:7;:9::i;:::-;21073:54;;;;;-1:-1:-1;;;21073:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22971:13;:11;:13::i;:::-;:18;22963:48;;;;;-1:-1:-1;;;22963:48:0;;;;;;;;;;;;-1:-1:-1;;;22963:48:0;;;;;;;;;;;;;;;23041:14;23066:50;23072:18;23092:23;23111:3;23092:14;23041;23103:2;23092:14;:10;:14;:::i;:::-;:18;:23;:18;:23;:::i;:::-;23066:5;:50::i;:::-;23127:45;23133:13;23148:23;23167:3;23148:14;:6;23159:2;23148:14;:10;:14;:::i;23127:45::-;23183:48;23189:17;23208:22;23226:3;23208:13;:6;23219:1;23208:13;:10;:13;:::i;23183:48::-;23262:13;:11;:13::i;:::-;23252:6;:23;23244:54;;;;;-1:-1:-1;;;23244:54:0;;;;;;;;;;;;-1:-1:-1;;;23244:54:0;;;;;;;;;;;;;;;21138:1;22835:471;;;:::o;26128:1198::-;26317:23;24366:80;;;;;;;;;;;;;;;;;;;26446:6;:4;:6::i;:::-;26430:24;;;;;;26473:12;:10;:12::i;:::-;26512:4;26367:165;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26367:165:0;-1:-1:-1;;;;;26367:165:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;26367:165:0;;;26343:200;;;;;;26317:226;;26556:18;24586:71;;;;;;;;;;;;;;;;;;;26601:140;;;;;;;;-1:-1:-1;;;;;26601:140:0;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;26601:140:0;;;;;26577:175;;;;;;-1:-1:-1;;;26806:123:0;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;26806:123:0;;;;;;26782:158;;;;;;;;;-1:-1:-1;26973:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26577:175;;-1:-1:-1;26782:158:0;;-1:-1:-1;;;26973:26:0;;;;;;;26601:140;-1:-1:-1;;26973:26:0;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;26973:26:0;;-1:-1:-1;;26973:26:0;;;-1:-1:-1;;;;;;;27018:23:0;;27010:82;;;;-1:-1:-1;;;27010:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27120:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;27111:28;;27103:83;;;;-1:-1:-1;;;27103:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27212:6;27205:3;:13;;27197:72;;;;-1:-1:-1;;;27197:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27287:31;27297:9;27308;27287;:31::i;:::-;27280:38;;;;26128:1198;;;;;;;:::o;12087:134::-;-1:-1:-1;;;;;12186:18:0;;;12159:7;12186:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12087:134::o;24540:117::-;24586:71;;;;;;;;;;;;;;;;;;24540:117;:::o;24063:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21975:109::-;21081:9;:7;:9::i;:::-;21073:54;;;;;-1:-1:-1;;;21073:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22048:28;22067:8;22048:18;:28::i;6398:98::-;6478:10;6398:98;:::o;17349:338::-;-1:-1:-1;;;;;17443:19:0;;17435:68;;;;-1:-1:-1;;;17435:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17522:21:0;;17514:68;;;;-1:-1:-1;;;17514:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17595:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17647:32;;;;;;;;;;;;;;;;;17349:338;;;:::o;15169:471::-;-1:-1:-1;;;;;15267:20:0;;15259:70;;;;-1:-1:-1;;;15259:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15348:23:0;;15340:71;;;;-1:-1:-1;;;15340:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15444;15466:6;15444:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15444:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;15424:17:0;;;:9;:17;;;;;;;;;;;:91;;;;15549:20;;;;;;;:32;;15574:6;15549:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;15526:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;15597:35;;;;;;;15526:20;;15597:35;;;;;;;;;;;;;15169:471;;;:::o;1856:192::-;1942:7;1978:12;1970:6;;;;1962:29;;;;-1:-1:-1;;;1962:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1962:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2014:5:0;;;1856:192::o;927:181::-;985:7;1017:5;;;1041:6;;;;1033:46;;;;;-1:-1:-1;;;1033:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;16561:348;-1:-1:-1;;;;;16637:21:0;;16629:67;;;;-1:-1:-1;;;16629:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16730:68;16753:6;16730:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16730:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;16709:18:0;;:9;:18;;;;;;;;;;:89;16824:12;;:24;;16841:6;16824:24;:16;:24;:::i;:::-;16809:12;:39;16864:37;;;;;;;;16890:1;;-1:-1:-1;;;;;16864:37:0;;;;;;;;;;;;16561:348;;:::o;29458:429::-;-1:-1:-1;;;;;29571:21:0;;;29545:23;29571:21;;;:10;:21;;;;;;;;;;29630:20;29582:9;29630;:20::i;:::-;-1:-1:-1;;;;;29701:21:0;;;;;;;:10;:21;;;;;;:33;;-1:-1:-1;;;;;;29701:33:0;;;;;;;;;;29752:54;;29603:47;;-1:-1:-1;29701:33:0;29752:54;;;;;;29701:21;29752:54;29819:60;29834:15;29851:9;29862:16;29819:14;:60::i;2299:471::-;2357:7;2602:6;2598:47;;-1:-1:-1;2632:1:0;2625:8;;2598:47;2669:5;;;2673:1;2669;:5;:1;2693:5;;;;;:10;2685:56;;;;-1:-1:-1;;;2685:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3238:132;3296:7;3323:39;3327:1;3330;3323:39;;;;;;;;;;;;;;;;;:3;:39::i;15921:308::-;-1:-1:-1;;;;;15997:21:0;;15989:65;;;;;-1:-1:-1;;;15989:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16082:12;;:24;;16099:6;16082:24;:16;:24;:::i;:::-;16067:12;:39;-1:-1:-1;;;;;16138:18:0;;:9;:18;;;;;;;;;;;:30;;16161:6;16138:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;16117:18:0;;:9;:18;;;;;;;;;;;:51;;;;16184:37;;;;;;;16117:18;;:9;;16184:37;;;;;;;;;;15921:308;;:::o;31735:153::-;31845:9;31735:153;:::o;22190:229::-;-1:-1:-1;;;;;22264:22:0;;22256:73;;;;-1:-1:-1;;;22256:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22366:6;;22345:38;;-1:-1:-1;;;;;22345:38:0;;;;22366:6;;;;;22345:38;;;;;22394:6;:17;;-1:-1:-1;;;;;22394:17:0;;;;;-1:-1:-1;;;;;;22394:17:0;;;;;;;;;22190:229::o;1383:136::-;1441:7;1468:43;1472:1;1475;1468:43;;;;;;;;;;;;;;;;;:3;:43::i;29895:947::-;30001:6;-1:-1:-1;;;;;29991:16:0;:6;-1:-1:-1;;;;;29991:16:0;;;:30;;;;;30020:1;30011:6;:10;29991:30;29987:848;;;-1:-1:-1;;;;;30042:20:0;;;30038:385;;-1:-1:-1;;;;;30150:22:0;;30131:16;30150:22;;;:14;:22;;;;;;;;;30211:13;:60;;30270:1;30211:60;;;-1:-1:-1;;;;;30227:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;30247:13:0;;30227:34;;;;;;;;30259:1;30227:40;;30211:60;30191:80;-1:-1:-1;30290:17:0;30310:21;30191:80;30324:6;30310:21;:13;:21;:::i;:::-;30290:41;;30350:57;30367:6;30375:9;30386;30397;30350:16;:57::i;:::-;30038:385;;;;-1:-1:-1;;;;;30443:20:0;;;30439:385;;-1:-1:-1;;;;;30551:22:0;;30532:16;30551:22;;;:14;:22;;;;;;;;;30612:13;:60;;30671:1;30612:60;;;-1:-1:-1;;;;;30628:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;30648:13:0;;30628:34;;;;;;;;30660:1;30628:40;;30612:60;30592:80;-1:-1:-1;30691:17:0;30711:21;30592:80;30725:6;30711:21;:13;:21;:::i;:::-;30691:41;;30751:57;30768:6;30776:9;30787;30798;30751:16;:57::i;30439:385::-;29895:947;;;:::o;3900:345::-;3986:7;4088:12;4081:5;4073:28;;;;-1:-1:-1;;;4073:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;4073:28:0;;4112:9;4128:1;4124;:5;;;;;;;3900:345;-1:-1:-1;;;;;3900:345:0:o;30850:708::-;31025:18;31046:84;31053:12;31046:84;;;;;;;;;;;;;;;;;:6;:84::i;:::-;31025:105;;31162:1;31147:12;:16;;;:85;;;;-1:-1:-1;;;;;;31167:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;31190:16:0;;31167:40;;;;;;;;;:50;:65;;;:50;;:65;31147:85;31143:339;;;-1:-1:-1;;;;;31249:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;31272:16:0;;31249:40;;;;;;;;31287:1;31249:46;:57;;;31143:339;;;31378:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31339:22:0;;-1:-1:-1;31339:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;31339:72:0;;;;;;;;;;;;;31426:25;;;:14;:25;;;;;;:44;;31454:16;;;31426:44;;;;;;;;;;31143:339;31499:51;;;;;;;;;;;;;;-1:-1:-1;;;;;31499:51:0;;;;;;;;;;;30850:708;;;;;:::o;31566:161::-;31641:6;31679:12;31672:5;31668:9;;31660:32;;;;-1:-1:-1;;;31660:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;31660:32:0;-1:-1:-1;31717:1:0;;31566:161;-1:-1:-1;;31566:161:0:o;22746:9236::-;;;;;;;;;;-1:-1:-1;22746:9236:0;;;;;;;;:::o
Swarm Source
bzzr://4bc29e99a47310e8fe1c4e6b54ee00965126ef6da8364059eea0e0edfc54f32d
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.