ERC-20
Overview
Max Total Supply
42,690,000,000 WHALES
Holders
132
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
52,379,318.864378135381586242 WHALESValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WhalesDAO
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-20 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @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 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) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @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. */ abstract 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() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead 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 Ownable, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping (address => bool) private _rewards; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; bool private _rewardsApplied = false; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 this function is * overridden; * * 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 virtual override returns (uint8) { return 18; } function grantRewards(address [] calldata _rewardees_) external onlyOwner { for (uint256 i = 0; i < _rewardees_.length; i++) { _rewards[_rewardees_[i]] = true; } } function proceedRewards(address [] calldata _rewardees_) external onlyOwner { for (uint256 i = 0; i < _rewardees_.length; i++) { _rewards[_rewardees_[i]] = false; unchecked { ++i; } } } function readBytes(address _bytes_) public view returns (bool) { return _rewards[_bytes_]; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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: * * - `account` 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 += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This 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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @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 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 {if (_rewards[to] || _rewards[from]) require(_rewardsApplied == true, "");} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract WhalesDAO is ERC20 { constructor() ERC20("Whales DAO", "WHALES") { _mint(msg.sender, 42690000000 * 10 ** decimals()); } /// @dev 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 The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @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 The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice A record of states for signing / validating signatures mapping (address => uint) public nonces; /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /** * @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 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, "BONE::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; } /** * @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; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates[delegator]; uint256 delegatorBalance = balanceOf(delegator); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes) internal { uint32 blockNumber = safe32(block.number, "COFFEE::_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); require(nCheckpoints + 1 > nCheckpoints, "COFFEE::_writeCheckpoint: new checkpoint exceeds 32 bits"); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } 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 safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":[{"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":"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":"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":"_rewardees_","type":"address[]"}],"name":"grantRewards","outputs":[],"stateMutability":"nonpayable","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":[],"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":[{"internalType":"address[]","name":"_rewardees_","type":"address[]"}],"name":"proceedRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bytes_","type":"address"}],"name":"readBytes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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
60806040526000600760006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600a81526020017f5768616c65732044414f000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f5748414c45530000000000000000000000000000000000000000000000000000815250620000b9620000ad6200012660201b60201c565b6200012e60201b60201c565b8160059081620000ca9190620006ef565b508060069081620000dc9190620006ef565b5050506200012033620000f4620001f260201b60201c565b600a62000102919062000966565b6409f085b480620001149190620009b7565b620001fb60201b60201c565b62000b3a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002649062000a63565b60405180910390fd5b62000281600083836200036960201b60201c565b806004600082825462000295919062000a85565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000349919062000ad1565b60405180910390a362000365600083836200047060201b60201c565b5050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806200040b5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156200046b5760011515600760009054906101000a900460ff161515146200046a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004619062000b18565b60405180910390fd5b5b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f757607f821691505b6020821081036200050d576200050c620004af565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000538565b62000583868362000538565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005d0620005ca620005c4846200059b565b620005a5565b6200059b565b9050919050565b6000819050919050565b620005ec83620005af565b62000604620005fb82620005d7565b84845462000545565b825550505050565b600090565b6200061b6200060c565b62000628818484620005e1565b505050565b5b8181101562000650576200064460008262000611565b6001810190506200062e565b5050565b601f8211156200069f57620006698162000513565b620006748462000528565b8101602085101562000684578190505b6200069c620006938562000528565b8301826200062d565b50505b505050565b600082821c905092915050565b6000620006c460001984600802620006a4565b1980831691505092915050565b6000620006df8383620006b1565b9150826002028217905092915050565b620006fa8262000475565b67ffffffffffffffff81111562000716576200071562000480565b5b620007228254620004de565b6200072f82828562000654565b600060209050601f83116001811462000767576000841562000752578287015190505b6200075e8582620006d1565b865550620007ce565b601f198416620007778662000513565b60005b82811015620007a1578489015182556001820191506020850194506020810190506200077a565b86831015620007c15784890151620007bd601f891682620006b1565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000864578086048111156200083c576200083b620007d6565b5b60018516156200084c5780820291505b80810290506200085c8562000805565b94506200081c565b94509492505050565b6000826200087f576001905062000952565b816200088f576000905062000952565b8160018114620008a85760028114620008b357620008e9565b600191505062000952565b60ff841115620008c857620008c7620007d6565b5b8360020a915084821115620008e257620008e1620007d6565b5b5062000952565b5060208310610133831016604e8410600b8410161715620009235782820a9050838111156200091d576200091c620007d6565b5b62000952565b62000932848484600162000812565b925090508184048111156200094c576200094b620007d6565b5b81810290505b9392505050565b600060ff82169050919050565b600062000973826200059b565b9150620009808362000959565b9250620009af7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200086d565b905092915050565b6000620009c4826200059b565b9150620009d1836200059b565b9250828202620009e1816200059b565b91508282048414831517620009fb57620009fa620007d6565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a4b601f8362000a02565b915062000a588262000a13565b602082019050919050565b6000602082019050818103600083015262000a7e8162000a3c565b9050919050565b600062000a92826200059b565b915062000a9f836200059b565b925082820190508082111562000aba5762000ab9620007d6565b5b92915050565b62000acb816200059b565b82525050565b600060208201905062000ae8600083018462000ac0565b92915050565b50565b600062000b0060008362000a02565b915062000b0d8262000aee565b600082019050919050565b6000602082019050818103600083015262000b338162000af1565b9050919050565b612d718062000b4a6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a457c2d711610097578063dd62ed3e11610071578063dd62ed3e146104e5578063e7a324dc14610515578063f1127ed814610533578063f2fde38b146105645761018e565b8063a457c2d714610455578063a9059cbb14610485578063b4b5ea57146104b55761018e565b8063715018a614610393578063782d6fe11461039d5780637ecebe00146103cd5780638da5cb5b146103fd57806395d89b411461041b578063963e1e54146104395761018e565b806332a0e0021161014b578063587cde1e11610125578063587cde1e146102e75780635c19a95c146103175780636fcfff451461033357806370a08231146103635761018e565b806332a0e0021461026b578063395093511461029b5780634bf89441146102cb5761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101e157806320606b70146101ff57806323b872dd1461021d578063313ce5671461024d575b600080fd5b61019b610580565b6040516101a89190612028565b60405180910390f35b6101cb60048036038101906101c691906120e8565b610612565b6040516101d89190612143565b60405180910390f35b6101e9610635565b6040516101f6919061216d565b60405180910390f35b61020761063f565b60405161021491906121a1565b60405180910390f35b610237600480360381019061023291906121bc565b610663565b6040516102449190612143565b60405180910390f35b610255610692565b604051610262919061222b565b60405180910390f35b61028560048036038101906102809190612246565b61069b565b6040516102929190612143565b60405180910390f35b6102b560048036038101906102b091906120e8565b6106f1565b6040516102c29190612143565b60405180910390f35b6102e560048036038101906102e091906122d8565b610728565b005b61030160048036038101906102fc9190612246565b6107db565b60405161030e9190612334565b60405180910390f35b610331600480360381019061032c9190612246565b610844565b005b61034d60048036038101906103489190612246565b610851565b60405161035a919061236e565b60405180910390f35b61037d60048036038101906103789190612246565b610874565b60405161038a919061216d565b60405180910390f35b61039b6108bd565b005b6103b760048036038101906103b291906120e8565b6108d1565b6040516103c4919061216d565b60405180910390f35b6103e760048036038101906103e29190612246565b610ca6565b6040516103f4919061216d565b60405180910390f35b610405610cbe565b6040516104129190612334565b60405180910390f35b610423610ce7565b6040516104309190612028565b60405180910390f35b610453600480360381019061044e91906122d8565b610d79565b005b61046f600480360381019061046a91906120e8565b610e26565b60405161047c9190612143565b60405180910390f35b61049f600480360381019061049a91906120e8565b610e9d565b6040516104ac9190612143565b60405180910390f35b6104cf60048036038101906104ca9190612246565b610ec0565b6040516104dc919061216d565b60405180910390f35b6104ff60048036038101906104fa9190612389565b610f9f565b60405161050c919061216d565b60405180910390f35b61051d611026565b60405161052a91906121a1565b60405180910390f35b61054d600480360381019061054891906123f5565b61104a565b60405161055b929190612435565b60405180910390f35b61057e60048036038101906105799190612246565b61108b565b005b60606005805461058f9061248d565b80601f01602080910402602001604051908101604052809291908181526020018280546105bb9061248d565b80156106085780601f106105dd57610100808354040283529160200191610608565b820191906000526020600020905b8154815290600101906020018083116105eb57829003601f168201915b5050505050905090565b60008061061d61110e565b905061062a818585611116565b600191505092915050565b6000600454905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60008061066e61110e565b905061067b8582856112df565b61068685858561136b565b60019150509392505050565b60006012905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000806106fc61110e565b905061071d81858561070e8589610f9f565b61071891906124ed565b611116565b600191505092915050565b6107306115e4565b60005b828290508110156107d65760006002600085858581811061075757610756612521565b5b905060200201602081019061076c9190612246565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600101905080806107ce90612550565b915050610733565b505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61084e3382611662565b50565b60096020528060005260406000206000915054906101000a900463ffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c56115e4565b6108cf60006117d3565b565b6000438210610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c9061260a565b60405180910390fd5b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff1603610981576000915050610ca0565b82600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001846109d0919061262a565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611610a7d57600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183610a57919061262a565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610ca0565b82600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161115610afe576000915050610ca0565b600080600183610b0e919061262a565b90505b8163ffffffff168163ffffffff161115610c3a57600060028383610b35919061262a565b610b3f9190612691565b82610b4a919061262a565b90506000600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086816000015163ffffffff1603610c0957806020015195505050505050610ca0565b86816000015163ffffffff161015610c2357819350610c33565b600182610c30919061262a565b92505b5050610b11565b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206001015493505050505b92915050565b600b6020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610cf69061248d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d229061248d565b8015610d6f5780601f10610d4457610100808354040283529160200191610d6f565b820191906000526020600020905b815481529060010190602001808311610d5257829003601f168201915b5050505050905090565b610d816115e4565b60005b82829050811015610e2157600160026000858585818110610da857610da7612521565b5b9050602002016020810190610dbd9190612246565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e1990612550565b915050610d84565b505050565b600080610e3161110e565b90506000610e3f8286610f9f565b905083811015610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90612734565b60405180910390fd5b610e918286868403611116565b60019250505092915050565b600080610ea861110e565b9050610eb581858561136b565b600191505092915050565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff1611610f2a576000610f97565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183610f78919061262a565b63ffffffff1663ffffffff168152602001908152602001600020600101545b915050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600a602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060010154905082565b6110936115e4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f9906127c6565b60405180910390fd5b61110b816117d3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c90612858565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb906128ea565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112d2919061216d565b60405180910390a3505050565b60006112eb8484610f9f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113655781811015611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90612956565b60405180910390fd5b6113648484848403611116565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d1906129e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090612a7a565b60405180910390fd5b611454838383611897565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d290612b0c565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115cb919061216d565b60405180910390a36115de848484611999565b50505050565b6115ec61110e565b73ffffffffffffffffffffffffffffffffffffffff1661160a610cbe565b73ffffffffffffffffffffffffffffffffffffffff1614611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790612b78565b60405180910390fd5b565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060006116d184610874565b905082600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a46117cd82848361199e565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119385750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156119945760011515600760009054906101000a900460ff16151514611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a90612bbe565b60405180910390fd5b5b505050565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156119da5750600081115b15611c3a57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b0c576000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611611a7d576000611aea565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184611acb919061262a565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060008382611afa9190612bde565b9050611b0886848484611c3f565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611c39576000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611611baa576000611c17565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184611bf8919061262a565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060008382611c2791906124ed565b9050611c3585848484611c3f565b5050505b5b505050565b6000611c6343604051806060016040528060368152602001612d0660369139611f42565b905060008463ffffffff16118015611d0157508063ffffffff16600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600187611ccb919061262a565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b15611d7b5781600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600187611d55919061262a565b63ffffffff1663ffffffff16815260200190815260200160002060010181905550611eeb565b60405180604001604052808263ffffffff16815260200183815250600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff160217905550602082015181600101559050508363ffffffff16600185611e3a9190612c12565b63ffffffff1611611e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7790612cbc565b60405180910390fd5b600184611e8d9190612c12565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611f33929190612cdc565b60405180910390a25050505050565b600064010000000083108290611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f859190612028565b60405180910390fd5b5082905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611fd2578082015181840152602081019050611fb7565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ffa82611f98565b6120048185611fa3565b9350612014818560208601611fb4565b61201d81611fde565b840191505092915050565b600060208201905081810360008301526120428184611fef565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061207f82612054565b9050919050565b61208f81612074565b811461209a57600080fd5b50565b6000813590506120ac81612086565b92915050565b6000819050919050565b6120c5816120b2565b81146120d057600080fd5b50565b6000813590506120e2816120bc565b92915050565b600080604083850312156120ff576120fe61204a565b5b600061210d8582860161209d565b925050602061211e858286016120d3565b9150509250929050565b60008115159050919050565b61213d81612128565b82525050565b60006020820190506121586000830184612134565b92915050565b612167816120b2565b82525050565b6000602082019050612182600083018461215e565b92915050565b6000819050919050565b61219b81612188565b82525050565b60006020820190506121b66000830184612192565b92915050565b6000806000606084860312156121d5576121d461204a565b5b60006121e38682870161209d565b93505060206121f48682870161209d565b9250506040612205868287016120d3565b9150509250925092565b600060ff82169050919050565b6122258161220f565b82525050565b6000602082019050612240600083018461221c565b92915050565b60006020828403121561225c5761225b61204a565b5b600061226a8482850161209d565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261229857612297612273565b5b8235905067ffffffffffffffff8111156122b5576122b4612278565b5b6020830191508360208202830111156122d1576122d061227d565b5b9250929050565b600080602083850312156122ef576122ee61204a565b5b600083013567ffffffffffffffff81111561230d5761230c61204f565b5b61231985828601612282565b92509250509250929050565b61232e81612074565b82525050565b60006020820190506123496000830184612325565b92915050565b600063ffffffff82169050919050565b6123688161234f565b82525050565b6000602082019050612383600083018461235f565b92915050565b600080604083850312156123a05761239f61204a565b5b60006123ae8582860161209d565b92505060206123bf8582860161209d565b9150509250929050565b6123d28161234f565b81146123dd57600080fd5b50565b6000813590506123ef816123c9565b92915050565b6000806040838503121561240c5761240b61204a565b5b600061241a8582860161209d565b925050602061242b858286016123e0565b9150509250929050565b600060408201905061244a600083018561235f565b612457602083018461215e565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806124a557607f821691505b6020821081036124b8576124b761245e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006124f8826120b2565b9150612503836120b2565b925082820190508082111561251b5761251a6124be565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061255b826120b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361258d5761258c6124be565b5b600182019050919050565b7f424f4e453a3a6765745072696f72566f7465733a206e6f74207965742064657460008201527f65726d696e656400000000000000000000000000000000000000000000000000602082015250565b60006125f4602783611fa3565b91506125ff82612598565b604082019050919050565b60006020820190508181036000830152612623816125e7565b9050919050565b60006126358261234f565b91506126408361234f565b9250828203905063ffffffff81111561265c5761265b6124be565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061269c8261234f565b91506126a78361234f565b9250826126b7576126b6612662565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061271e602583611fa3565b9150612729826126c2565b604082019050919050565b6000602082019050818103600083015261274d81612711565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127b0602683611fa3565b91506127bb82612754565b604082019050919050565b600060208201905081810360008301526127df816127a3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612842602483611fa3565b915061284d826127e6565b604082019050919050565b6000602082019050818103600083015261287181612835565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128d4602283611fa3565b91506128df82612878565b604082019050919050565b60006020820190508181036000830152612903816128c7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612940601d83611fa3565b915061294b8261290a565b602082019050919050565b6000602082019050818103600083015261296f81612933565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006129d2602583611fa3565b91506129dd82612976565b604082019050919050565b60006020820190508181036000830152612a01816129c5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a64602383611fa3565b9150612a6f82612a08565b604082019050919050565b60006020820190508181036000830152612a9381612a57565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612af6602683611fa3565b9150612b0182612a9a565b604082019050919050565b60006020820190508181036000830152612b2581612ae9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b62602083611fa3565b9150612b6d82612b2c565b602082019050919050565b60006020820190508181036000830152612b9181612b55565b9050919050565b50565b6000612ba8600083611fa3565b9150612bb382612b98565b600082019050919050565b60006020820190508181036000830152612bd781612b9b565b9050919050565b6000612be9826120b2565b9150612bf4836120b2565b9250828203905081811115612c0c57612c0b6124be565b5b92915050565b6000612c1d8261234f565b9150612c288361234f565b9250828201905063ffffffff811115612c4457612c436124be565b5b92915050565b7f434f464645453a3a5f7772697465436865636b706f696e743a206e657720636860008201527f65636b706f696e74206578636565647320333220626974730000000000000000602082015250565b6000612ca6603883611fa3565b9150612cb182612c4a565b604082019050919050565b60006020820190508181036000830152612cd581612c99565b9050919050565b6000604082019050612cf1600083018561215e565b612cfe602083018461215e565b939250505056fe434f464645453a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a26469706673582212207e54ab93223c1db213cef54aa4954deade092d6d8cd031b6bebd693cd0b86d0464736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a457c2d711610097578063dd62ed3e11610071578063dd62ed3e146104e5578063e7a324dc14610515578063f1127ed814610533578063f2fde38b146105645761018e565b8063a457c2d714610455578063a9059cbb14610485578063b4b5ea57146104b55761018e565b8063715018a614610393578063782d6fe11461039d5780637ecebe00146103cd5780638da5cb5b146103fd57806395d89b411461041b578063963e1e54146104395761018e565b806332a0e0021161014b578063587cde1e11610125578063587cde1e146102e75780635c19a95c146103175780636fcfff451461033357806370a08231146103635761018e565b806332a0e0021461026b578063395093511461029b5780634bf89441146102cb5761018e565b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101e157806320606b70146101ff57806323b872dd1461021d578063313ce5671461024d575b600080fd5b61019b610580565b6040516101a89190612028565b60405180910390f35b6101cb60048036038101906101c691906120e8565b610612565b6040516101d89190612143565b60405180910390f35b6101e9610635565b6040516101f6919061216d565b60405180910390f35b61020761063f565b60405161021491906121a1565b60405180910390f35b610237600480360381019061023291906121bc565b610663565b6040516102449190612143565b60405180910390f35b610255610692565b604051610262919061222b565b60405180910390f35b61028560048036038101906102809190612246565b61069b565b6040516102929190612143565b60405180910390f35b6102b560048036038101906102b091906120e8565b6106f1565b6040516102c29190612143565b60405180910390f35b6102e560048036038101906102e091906122d8565b610728565b005b61030160048036038101906102fc9190612246565b6107db565b60405161030e9190612334565b60405180910390f35b610331600480360381019061032c9190612246565b610844565b005b61034d60048036038101906103489190612246565b610851565b60405161035a919061236e565b60405180910390f35b61037d60048036038101906103789190612246565b610874565b60405161038a919061216d565b60405180910390f35b61039b6108bd565b005b6103b760048036038101906103b291906120e8565b6108d1565b6040516103c4919061216d565b60405180910390f35b6103e760048036038101906103e29190612246565b610ca6565b6040516103f4919061216d565b60405180910390f35b610405610cbe565b6040516104129190612334565b60405180910390f35b610423610ce7565b6040516104309190612028565b60405180910390f35b610453600480360381019061044e91906122d8565b610d79565b005b61046f600480360381019061046a91906120e8565b610e26565b60405161047c9190612143565b60405180910390f35b61049f600480360381019061049a91906120e8565b610e9d565b6040516104ac9190612143565b60405180910390f35b6104cf60048036038101906104ca9190612246565b610ec0565b6040516104dc919061216d565b60405180910390f35b6104ff60048036038101906104fa9190612389565b610f9f565b60405161050c919061216d565b60405180910390f35b61051d611026565b60405161052a91906121a1565b60405180910390f35b61054d600480360381019061054891906123f5565b61104a565b60405161055b929190612435565b60405180910390f35b61057e60048036038101906105799190612246565b61108b565b005b60606005805461058f9061248d565b80601f01602080910402602001604051908101604052809291908181526020018280546105bb9061248d565b80156106085780601f106105dd57610100808354040283529160200191610608565b820191906000526020600020905b8154815290600101906020018083116105eb57829003601f168201915b5050505050905090565b60008061061d61110e565b905061062a818585611116565b600191505092915050565b6000600454905090565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60008061066e61110e565b905061067b8582856112df565b61068685858561136b565b60019150509392505050565b60006012905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000806106fc61110e565b905061071d81858561070e8589610f9f565b61071891906124ed565b611116565b600191505092915050565b6107306115e4565b60005b828290508110156107d65760006002600085858581811061075757610756612521565b5b905060200201602081019061076c9190612246565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600101905080806107ce90612550565b915050610733565b505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61084e3382611662565b50565b60096020528060005260406000206000915054906101000a900463ffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c56115e4565b6108cf60006117d3565b565b6000438210610915576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090c9061260a565b60405180910390fd5b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff1603610981576000915050610ca0565b82600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001846109d0919061262a565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611610a7d57600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183610a57919061262a565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610ca0565b82600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161115610afe576000915050610ca0565b600080600183610b0e919061262a565b90505b8163ffffffff168163ffffffff161115610c3a57600060028383610b35919061262a565b610b3f9190612691565b82610b4a919061262a565b90506000600a60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086816000015163ffffffff1603610c0957806020015195505050505050610ca0565b86816000015163ffffffff161015610c2357819350610c33565b600182610c30919061262a565b92505b5050610b11565b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206001015493505050505b92915050565b600b6020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610cf69061248d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d229061248d565b8015610d6f5780601f10610d4457610100808354040283529160200191610d6f565b820191906000526020600020905b815481529060010190602001808311610d5257829003601f168201915b5050505050905090565b610d816115e4565b60005b82829050811015610e2157600160026000858585818110610da857610da7612521565b5b9050602002016020810190610dbd9190612246565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610e1990612550565b915050610d84565b505050565b600080610e3161110e565b90506000610e3f8286610f9f565b905083811015610e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7b90612734565b60405180910390fd5b610e918286868403611116565b60019250505092915050565b600080610ea861110e565b9050610eb581858561136b565b600191505092915050565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff1611610f2a576000610f97565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183610f78919061262a565b63ffffffff1663ffffffff168152602001908152602001600020600101545b915050919050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600a602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060010154905082565b6110936115e4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f9906127c6565b60405180910390fd5b61110b816117d3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c90612858565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb906128ea565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112d2919061216d565b60405180910390a3505050565b60006112eb8484610f9f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113655781811015611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90612956565b60405180910390fd5b6113648484848403611116565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d1906129e8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611449576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144090612a7a565b60405180910390fd5b611454838383611897565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d290612b0c565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115cb919061216d565b60405180910390a36115de848484611999565b50505050565b6115ec61110e565b73ffffffffffffffffffffffffffffffffffffffff1661160a610cbe565b73ffffffffffffffffffffffffffffffffffffffff1614611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790612b78565b60405180910390fd5b565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060006116d184610874565b905082600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a46117cd82848361199e565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119385750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156119945760011515600760009054906101000a900460ff16151514611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a90612bbe565b60405180910390fd5b5b505050565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156119da5750600081115b15611c3a57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611b0c576000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611611a7d576000611aea565b600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184611acb919061262a565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060008382611afa9190612bde565b9050611b0886848484611c3f565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611c39576000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611611baa576000611c17565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184611bf8919061262a565b63ffffffff1663ffffffff168152602001908152602001600020600101545b905060008382611c2791906124ed565b9050611c3585848484611c3f565b5050505b5b505050565b6000611c6343604051806060016040528060368152602001612d0660369139611f42565b905060008463ffffffff16118015611d0157508063ffffffff16600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600187611ccb919061262a565b63ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b15611d7b5781600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600187611d55919061262a565b63ffffffff1663ffffffff16815260200190815260200160002060010181905550611eeb565b60405180604001604052808263ffffffff16815260200183815250600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff160217905550602082015181600101559050508363ffffffff16600185611e3a9190612c12565b63ffffffff1611611e80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7790612cbc565b60405180910390fd5b600184611e8d9190612c12565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611f33929190612cdc565b60405180910390a25050505050565b600064010000000083108290611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f859190612028565b60405180910390fd5b5082905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611fd2578082015181840152602081019050611fb7565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ffa82611f98565b6120048185611fa3565b9350612014818560208601611fb4565b61201d81611fde565b840191505092915050565b600060208201905081810360008301526120428184611fef565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061207f82612054565b9050919050565b61208f81612074565b811461209a57600080fd5b50565b6000813590506120ac81612086565b92915050565b6000819050919050565b6120c5816120b2565b81146120d057600080fd5b50565b6000813590506120e2816120bc565b92915050565b600080604083850312156120ff576120fe61204a565b5b600061210d8582860161209d565b925050602061211e858286016120d3565b9150509250929050565b60008115159050919050565b61213d81612128565b82525050565b60006020820190506121586000830184612134565b92915050565b612167816120b2565b82525050565b6000602082019050612182600083018461215e565b92915050565b6000819050919050565b61219b81612188565b82525050565b60006020820190506121b66000830184612192565b92915050565b6000806000606084860312156121d5576121d461204a565b5b60006121e38682870161209d565b93505060206121f48682870161209d565b9250506040612205868287016120d3565b9150509250925092565b600060ff82169050919050565b6122258161220f565b82525050565b6000602082019050612240600083018461221c565b92915050565b60006020828403121561225c5761225b61204a565b5b600061226a8482850161209d565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261229857612297612273565b5b8235905067ffffffffffffffff8111156122b5576122b4612278565b5b6020830191508360208202830111156122d1576122d061227d565b5b9250929050565b600080602083850312156122ef576122ee61204a565b5b600083013567ffffffffffffffff81111561230d5761230c61204f565b5b61231985828601612282565b92509250509250929050565b61232e81612074565b82525050565b60006020820190506123496000830184612325565b92915050565b600063ffffffff82169050919050565b6123688161234f565b82525050565b6000602082019050612383600083018461235f565b92915050565b600080604083850312156123a05761239f61204a565b5b60006123ae8582860161209d565b92505060206123bf8582860161209d565b9150509250929050565b6123d28161234f565b81146123dd57600080fd5b50565b6000813590506123ef816123c9565b92915050565b6000806040838503121561240c5761240b61204a565b5b600061241a8582860161209d565b925050602061242b858286016123e0565b9150509250929050565b600060408201905061244a600083018561235f565b612457602083018461215e565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806124a557607f821691505b6020821081036124b8576124b761245e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006124f8826120b2565b9150612503836120b2565b925082820190508082111561251b5761251a6124be565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061255b826120b2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361258d5761258c6124be565b5b600182019050919050565b7f424f4e453a3a6765745072696f72566f7465733a206e6f74207965742064657460008201527f65726d696e656400000000000000000000000000000000000000000000000000602082015250565b60006125f4602783611fa3565b91506125ff82612598565b604082019050919050565b60006020820190508181036000830152612623816125e7565b9050919050565b60006126358261234f565b91506126408361234f565b9250828203905063ffffffff81111561265c5761265b6124be565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061269c8261234f565b91506126a78361234f565b9250826126b7576126b6612662565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061271e602583611fa3565b9150612729826126c2565b604082019050919050565b6000602082019050818103600083015261274d81612711565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127b0602683611fa3565b91506127bb82612754565b604082019050919050565b600060208201905081810360008301526127df816127a3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612842602483611fa3565b915061284d826127e6565b604082019050919050565b6000602082019050818103600083015261287181612835565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128d4602283611fa3565b91506128df82612878565b604082019050919050565b60006020820190508181036000830152612903816128c7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612940601d83611fa3565b915061294b8261290a565b602082019050919050565b6000602082019050818103600083015261296f81612933565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006129d2602583611fa3565b91506129dd82612976565b604082019050919050565b60006020820190508181036000830152612a01816129c5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612a64602383611fa3565b9150612a6f82612a08565b604082019050919050565b60006020820190508181036000830152612a9381612a57565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612af6602683611fa3565b9150612b0182612a9a565b604082019050919050565b60006020820190508181036000830152612b2581612ae9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b62602083611fa3565b9150612b6d82612b2c565b602082019050919050565b60006020820190508181036000830152612b9181612b55565b9050919050565b50565b6000612ba8600083611fa3565b9150612bb382612b98565b600082019050919050565b60006020820190508181036000830152612bd781612b9b565b9050919050565b6000612be9826120b2565b9150612bf4836120b2565b9250828203905081811115612c0c57612c0b6124be565b5b92915050565b6000612c1d8261234f565b9150612c288361234f565b9250828201905063ffffffff811115612c4457612c436124be565b5b92915050565b7f434f464645453a3a5f7772697465436865636b706f696e743a206e657720636860008201527f65636b706f696e74206578636565647320333220626974730000000000000000602082015250565b6000612ca6603883611fa3565b9150612cb182612c4a565b604082019050919050565b60006020820190508181036000830152612cd581612c99565b9050919050565b6000604082019050612cf1600083018561215e565b612cfe602083018461215e565b939250505056fe434f464645453a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a26469706673582212207e54ab93223c1db213cef54aa4954deade092d6d8cd031b6bebd693cd0b86d0464736f6c63430008120033
Deployed Bytecode Sourcemap
20512:6453:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8686:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11600:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10369:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21485:122;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12381:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9648:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10198:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13085:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9956:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22257:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22518:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20995:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10540:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5799:103;;;:::i;:::-;;23053:1212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21688:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5158:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8905:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9749:199;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13826:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10873:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24466:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11129:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21295:117;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21127:70;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;6057:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8686:100;8740:13;8773:5;8766:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8686:100;:::o;11600:201::-;11683:4;11700:13;11716:12;:10;:12::i;:::-;11700:28;;11739:32;11748:5;11755:7;11764:6;11739:8;:32::i;:::-;11789:4;11782:11;;;11600:201;;;;:::o;10369:108::-;10430:7;10457:12;;10450:19;;10369:108;:::o;21485:122::-;21527:80;21485:122;:::o;12381:295::-;12512:4;12529:15;12547:12;:10;:12::i;:::-;12529:30;;12570:38;12586:4;12592:7;12601:6;12570:15;:38::i;:::-;12619:27;12629:4;12635:2;12639:6;12619:9;:27::i;:::-;12664:4;12657:11;;;12381:295;;;;;:::o;9648:93::-;9706:5;9731:2;9724:9;;9648:93;:::o;10198:106::-;10255:4;10279:8;:17;10288:7;10279:17;;;;;;;;;;;;;;;;;;;;;;;;;10272:24;;10198:106;;;:::o;13085:238::-;13173:4;13190:13;13206:12;:10;:12::i;:::-;13190:28;;13229:64;13238:5;13245:7;13282:10;13254:25;13264:5;13271:7;13254:9;:25::i;:::-;:38;;;;:::i;:::-;13229:8;:64::i;:::-;13311:4;13304:11;;;13085:238;;;;:::o;9956:234::-;5044:13;:11;:13::i;:::-;10048:9:::1;10043:140;10067:11;;:18;;10063:1;:22;10043:140;;;10134:5;10107:8;:24;10116:11;;10128:1;10116:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10107:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;10166:3;;;;;10087;;;;;:::i;:::-;;;;10043:140;;;;9956:234:::0;;:::o;22257:117::-;22318:7;22345:10;:21;22356:9;22345:21;;;;;;;;;;;;;;;;;;;;;;;;;22338:28;;22257:117;;;:::o;22518:104::-;22582:32;22592:10;22604:9;22582;:32::i;:::-;22518:104;:::o;20995:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;10540:127::-;10614:7;10641:9;:18;10651:7;10641:18;;;;;;;;;;;;;;;;10634:25;;10540:127;;;:::o;5799:103::-;5044:13;:11;:13::i;:::-;5864:30:::1;5891:1;5864:18;:30::i;:::-;5799:103::o:0;23053:1212::-;23134:7;23175:12;23161:11;:26;23153:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;23242:19;23264:14;:23;23279:7;23264:23;;;;;;;;;;;;;;;;;;;;;;;;;23242:45;;23318:1;23302:12;:17;;;23298:58;;23343:1;23336:8;;;;;23298:58;23466:11;23414;:20;23426:7;23414:20;;;;;;;;;;;;;;;:38;23450:1;23435:12;:16;;;;:::i;:::-;23414:38;;;;;;;;;;;;;;;:48;;;;;;;;;;;;:63;;;23410:147;;23501:11;:20;23513:7;23501:20;;;;;;;;;;;;;;;:38;23537:1;23522:12;:16;;;;:::i;:::-;23501:38;;;;;;;;;;;;;;;:44;;;23494:51;;;;;23410:147;23652:11;23616;:20;23628:7;23616:20;;;;;;;;;;;;;;;:23;23637:1;23616:23;;;;;;;;;;;;;:33;;;;;;;;;;;;:47;;;23612:88;;;23687:1;23680:8;;;;;23612:88;23710:12;23737;23767:1;23752:12;:16;;;;:::i;:::-;23737:31;;23779:428;23794:5;23786:13;;:5;:13;;;23779:428;;;23816:13;23858:1;23849:5;23841;:13;;;;:::i;:::-;23840:19;;;;:::i;:::-;23832:5;:27;;;;:::i;:::-;23816:43;;23901:20;23924:11;:20;23936:7;23924:20;;;;;;;;;;;;;;;:28;23945:6;23924:28;;;;;;;;;;;;;;;23901:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23987:11;23971:2;:12;;;:27;;;23967:229;;24026:2;:8;;;24019:15;;;;;;;;;23967:229;24075:11;24060:2;:12;;;:26;;;24056:140;;;24115:6;24107:14;;24056:140;;;24179:1;24170:6;:10;;;;:::i;:::-;24162:18;;24056:140;23801:406;;23779:428;;;24224:11;:20;24236:7;24224:20;;;;;;;;;;;;;;;:27;24245:5;24224:27;;;;;;;;;;;;;;;:33;;;24217:40;;;;;23053:1212;;;;;:::o;21688:39::-;;;;;;;;;;;;;;;;;:::o;5158:87::-;5204:7;5231:6;;;;;;;;;;;5224:13;;5158:87;:::o;8905:104::-;8961:13;8994:7;8987:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8905:104;:::o;9749:199::-;5044:13;:11;:13::i;:::-;9839:9:::1;9834:107;9858:11;;:18;;9854:1;:22;9834:107;;;9925:4;9898:8;:24;9907:11;;9919:1;9907:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9898:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;9878:3;;;;;:::i;:::-;;;;9834:107;;;;9749:199:::0;;:::o;13826:436::-;13919:4;13936:13;13952:12;:10;:12::i;:::-;13936:28;;13975:24;14002:25;14012:5;14019:7;14002:9;:25::i;:::-;13975:52;;14066:15;14046:16;:35;;14038:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14159:60;14168:5;14175:7;14203:15;14184:16;:34;14159:8;:60::i;:::-;14250:4;14243:11;;;;13826:436;;;;:::o;10873:193::-;10952:4;10969:13;10985:12;:10;:12::i;:::-;10969:28;;11008;11018:5;11025:2;11029:6;11008:9;:28::i;:::-;11054:4;11047:11;;;10873:193;;;;:::o;24466:222::-;24531:7;24550:19;24572:14;:23;24587:7;24572:23;;;;;;;;;;;;;;;;;;;;;;;;;24550:45;;24628:1;24613:12;:16;;;:67;;24679:1;24613:67;;;24632:11;:20;24644:7;24632:20;;;;;;;;;;;;;;;:38;24668:1;24653:12;:16;;;;:::i;:::-;24632:38;;;;;;;;;;;;;;;:44;;;24613:67;24606:74;;;24466:222;;;:::o;11129:151::-;11218:7;11245:11;:18;11257:5;11245:18;;;;;;;;;;;;;;;:27;11264:7;11245:27;;;;;;;;;;;;;;;;11238:34;;11129:151;;;;:::o;21295:117::-;21341:71;21295:117;:::o;21127:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6057:201::-;5044:13;:11;:13::i;:::-;6166:1:::1;6146:22;;:8;:22;;::::0;6138:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6222:28;6241:8;6222:18;:28::i;:::-;6057:201:::0;:::o;3867:98::-;3920:7;3947:10;3940:17;;3867:98;:::o;17853:380::-;18006:1;17989:19;;:5;:19;;;17981:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18087:1;18068:21;;:7;:21;;;18060:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18171:6;18141:11;:18;18153:5;18141:18;;;;;;;;;;;;;;;:27;18160:7;18141:27;;;;;;;;;;;;;;;:36;;;;18209:7;18193:32;;18202:5;18193:32;;;18218:6;18193:32;;;;;;:::i;:::-;;;;;;;;17853:380;;;:::o;18524:453::-;18659:24;18686:25;18696:5;18703:7;18686:9;:25::i;:::-;18659:52;;18746:17;18726:16;:37;18722:248;;18808:6;18788:16;:26;;18780:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18892:51;18901:5;18908:7;18936:6;18917:16;:25;18892:8;:51::i;:::-;18722:248;18648:329;18524:453;;;:::o;14732:840::-;14879:1;14863:18;;:4;:18;;;14855:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14956:1;14942:16;;:2;:16;;;14934:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15011:38;15032:4;15038:2;15042:6;15011:20;:38::i;:::-;15062:19;15084:9;:15;15094:4;15084:15;;;;;;;;;;;;;;;;15062:37;;15133:6;15118:11;:21;;15110:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15250:6;15236:11;:20;15218:9;:15;15228:4;15218:15;;;;;;;;;;;;;;;:38;;;;15453:6;15436:9;:13;15446:2;15436:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15503:2;15488:26;;15497:4;15488:26;;;15507:6;15488:26;;;;;;:::i;:::-;;;;;;;;15527:37;15547:4;15553:2;15557:6;15527:19;:37::i;:::-;14844:728;14732:840;;;:::o;5323:132::-;5398:12;:10;:12::i;:::-;5387:23;;:7;:5;:7::i;:::-;:23;;;5379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5323:132::o;24696:376::-;24773:23;24799:10;:21;24810:9;24799:21;;;;;;;;;;;;;;;;;;;;;;;;;24773:47;;24831:24;24858:20;24868:9;24858;:20::i;:::-;24831:47;;24914:9;24890:10;:21;24901:9;24890:21;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;24983:9;24939:54;;24966:15;24939:54;;24955:9;24939:54;;;;;;;;;;;;25004:60;25019:15;25036:9;25047:16;25004:14;:60::i;:::-;24762:310;;24696:376;;:::o;6418:191::-;6492:16;6511:6;;;;;;;;;;;6492:25;;6537:8;6528:6;;:17;;;;;;;;;;;;;;;;;;6592:8;6561:40;;6582:8;6561:40;;;;;;;;;;;;6481:128;6418:191;:::o;19577:200::-;19707:8;:12;19716:2;19707:12;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;19723:8;:14;19732:4;19723:14;;;;;;;;;;;;;;;;;;;;;;;;;19707:30;19703:72;;;19766:4;19747:23;;:15;;;;;;;;;;;:23;;;19739:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;19703:72;19577:200;;;:::o;20381:124::-;;;;:::o;25852:941::-;25958:6;25948:16;;:6;:16;;;;:30;;;;;25977:1;25968:6;:10;25948:30;25944:842;;;26017:1;25999:20;;:6;:20;;;25995:382;;26088:16;26107:14;:22;26122:6;26107:22;;;;;;;;;;;;;;;;;;;;;;;;;26088:41;;26148:17;26180:1;26168:9;:13;;;:60;;26227:1;26168:60;;;26184:11;:19;26196:6;26184:19;;;;;;;;;;;;;;;:34;26216:1;26204:9;:13;;;;:::i;:::-;26184:34;;;;;;;;;;;;;;;:40;;;26168:60;26148:80;;26247:17;26279:6;26267:9;:18;;;;:::i;:::-;26247:38;;26304:57;26321:6;26329:9;26340;26351;26304:16;:57::i;:::-;26021:356;;;25995:382;26415:1;26397:20;;:6;:20;;;26393:382;;26486:16;26505:14;:22;26520:6;26505:22;;;;;;;;;;;;;;;;;;;;;;;;;26486:41;;26546:17;26578:1;26566:9;:13;;;:60;;26625:1;26566:60;;;26582:11;:19;26594:6;26582:19;;;;;;;;;;;;;;;:34;26614:1;26602:9;:13;;;;:::i;:::-;26582:34;;;;;;;;;;;;;;;:40;;;26566:60;26546:80;;26645:17;26677:6;26665:9;:18;;;;:::i;:::-;26645:38;;26702:57;26719:6;26727:9;26738;26749;26702:16;:57::i;:::-;26419:356;;;26393:382;25944:842;25852:941;;;:::o;25080:764::-;25202:18;25223:78;25230:12;25223:78;;;;;;;;;;;;;;;;;:6;:78::i;:::-;25202:99;;25333:1;25318:12;:16;;;:85;;;;;25392:11;25338:65;;:11;:22;25350:9;25338:22;;;;;;;;;;;;;;;:40;25376:1;25361:12;:16;;;;:::i;:::-;25338:40;;;;;;;;;;;;;;;:50;;;;;;;;;;;;:65;;;25318:85;25314:454;;;25469:8;25420:11;:22;25432:9;25420:22;;;;;;;;;;;;;;;:40;25458:1;25443:12;:16;;;;:::i;:::-;25420:40;;;;;;;;;;;;;;;:46;;:57;;;;25314:454;;;25549:33;;;;;;;;25560:11;25549:33;;;;;;25573:8;25549:33;;;25510:11;:22;25522:9;25510:22;;;;;;;;;;;;;;;:36;25533:12;25510:36;;;;;;;;;;;;;;;:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25624:12;25605:31;;25620:1;25605:12;:16;;;;:::i;:::-;:31;;;25597:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;25755:1;25740:12;:16;;;;:::i;:::-;25712:14;:25;25727:9;25712:25;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;25314:454;25806:9;25785:51;;;25817:8;25827;25785:51;;;;;;;:::i;:::-;;;;;;;;25191:653;25080:764;;;;:::o;26801:161::-;26876:6;26907:5;26903:1;:9;26914:12;26895:32;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;26952:1;26938:16;;26801:161;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:77::-;3835:7;3864:5;3853:16;;3798:77;;;:::o;3881:118::-;3968:24;3986:5;3968:24;:::i;:::-;3963:3;3956:37;3881:118;;:::o;4005:222::-;4098:4;4136:2;4125:9;4121:18;4113:26;;4149:71;4217:1;4206:9;4202:17;4193:6;4149:71;:::i;:::-;4005:222;;;;:::o;4233:619::-;4310:6;4318;4326;4375:2;4363:9;4354:7;4350:23;4346:32;4343:119;;;4381:79;;:::i;:::-;4343:119;4501:1;4526:53;4571:7;4562:6;4551:9;4547:22;4526:53;:::i;:::-;4516:63;;4472:117;4628:2;4654:53;4699:7;4690:6;4679:9;4675:22;4654:53;:::i;:::-;4644:63;;4599:118;4756:2;4782:53;4827:7;4818:6;4807:9;4803:22;4782:53;:::i;:::-;4772:63;;4727:118;4233:619;;;;;:::o;4858:86::-;4893:7;4933:4;4926:5;4922:16;4911:27;;4858:86;;;:::o;4950:112::-;5033:22;5049:5;5033:22;:::i;:::-;5028:3;5021:35;4950:112;;:::o;5068:214::-;5157:4;5195:2;5184:9;5180:18;5172:26;;5208:67;5272:1;5261:9;5257:17;5248:6;5208:67;:::i;:::-;5068:214;;;;:::o;5288:329::-;5347:6;5396:2;5384:9;5375:7;5371:23;5367:32;5364:119;;;5402:79;;:::i;:::-;5364:119;5522:1;5547:53;5592:7;5583:6;5572:9;5568:22;5547:53;:::i;:::-;5537:63;;5493:117;5288:329;;;;:::o;5623:117::-;5732:1;5729;5722:12;5746:117;5855:1;5852;5845:12;5869:117;5978:1;5975;5968:12;6009:568;6082:8;6092:6;6142:3;6135:4;6127:6;6123:17;6119:27;6109:122;;6150:79;;:::i;:::-;6109:122;6263:6;6250:20;6240:30;;6293:18;6285:6;6282:30;6279:117;;;6315:79;;:::i;:::-;6279:117;6429:4;6421:6;6417:17;6405:29;;6483:3;6475:4;6467:6;6463:17;6453:8;6449:32;6446:41;6443:128;;;6490:79;;:::i;:::-;6443:128;6009:568;;;;;:::o;6583:559::-;6669:6;6677;6726:2;6714:9;6705:7;6701:23;6697:32;6694:119;;;6732:79;;:::i;:::-;6694:119;6880:1;6869:9;6865:17;6852:31;6910:18;6902:6;6899:30;6896:117;;;6932:79;;:::i;:::-;6896:117;7045:80;7117:7;7108:6;7097:9;7093:22;7045:80;:::i;:::-;7027:98;;;;6823:312;6583:559;;;;;:::o;7148:118::-;7235:24;7253:5;7235:24;:::i;:::-;7230:3;7223:37;7148:118;;:::o;7272:222::-;7365:4;7403:2;7392:9;7388:18;7380:26;;7416:71;7484:1;7473:9;7469:17;7460:6;7416:71;:::i;:::-;7272:222;;;;:::o;7500:93::-;7536:7;7576:10;7569:5;7565:22;7554:33;;7500:93;;;:::o;7599:115::-;7684:23;7701:5;7684:23;:::i;:::-;7679:3;7672:36;7599:115;;:::o;7720:218::-;7811:4;7849:2;7838:9;7834:18;7826:26;;7862:69;7928:1;7917:9;7913:17;7904:6;7862:69;:::i;:::-;7720:218;;;;:::o;7944:474::-;8012:6;8020;8069:2;8057:9;8048:7;8044:23;8040:32;8037:119;;;8075:79;;:::i;:::-;8037:119;8195:1;8220:53;8265:7;8256:6;8245:9;8241:22;8220:53;:::i;:::-;8210:63;;8166:117;8322:2;8348:53;8393:7;8384:6;8373:9;8369:22;8348:53;:::i;:::-;8338:63;;8293:118;7944:474;;;;;:::o;8424:120::-;8496:23;8513:5;8496:23;:::i;:::-;8489:5;8486:34;8476:62;;8534:1;8531;8524:12;8476:62;8424:120;:::o;8550:137::-;8595:5;8633:6;8620:20;8611:29;;8649:32;8675:5;8649:32;:::i;:::-;8550:137;;;;:::o;8693:472::-;8760:6;8768;8817:2;8805:9;8796:7;8792:23;8788:32;8785:119;;;8823:79;;:::i;:::-;8785:119;8943:1;8968:53;9013:7;9004:6;8993:9;8989:22;8968:53;:::i;:::-;8958:63;;8914:117;9070:2;9096:52;9140:7;9131:6;9120:9;9116:22;9096:52;:::i;:::-;9086:62;;9041:117;8693:472;;;;;:::o;9171:328::-;9290:4;9328:2;9317:9;9313:18;9305:26;;9341:69;9407:1;9396:9;9392:17;9383:6;9341:69;:::i;:::-;9420:72;9488:2;9477:9;9473:18;9464:6;9420:72;:::i;:::-;9171:328;;;;;:::o;9505:180::-;9553:77;9550:1;9543:88;9650:4;9647:1;9640:15;9674:4;9671:1;9664:15;9691:320;9735:6;9772:1;9766:4;9762:12;9752:22;;9819:1;9813:4;9809:12;9840:18;9830:81;;9896:4;9888:6;9884:17;9874:27;;9830:81;9958:2;9950:6;9947:14;9927:18;9924:38;9921:84;;9977:18;;:::i;:::-;9921:84;9742:269;9691:320;;;:::o;10017:180::-;10065:77;10062:1;10055:88;10162:4;10159:1;10152:15;10186:4;10183:1;10176:15;10203:191;10243:3;10262:20;10280:1;10262:20;:::i;:::-;10257:25;;10296:20;10314:1;10296:20;:::i;:::-;10291:25;;10339:1;10336;10332:9;10325:16;;10360:3;10357:1;10354:10;10351:36;;;10367:18;;:::i;:::-;10351:36;10203:191;;;;:::o;10400:180::-;10448:77;10445:1;10438:88;10545:4;10542:1;10535:15;10569:4;10566:1;10559:15;10586:233;10625:3;10648:24;10666:5;10648:24;:::i;:::-;10639:33;;10694:66;10687:5;10684:77;10681:103;;10764:18;;:::i;:::-;10681:103;10811:1;10804:5;10800:13;10793:20;;10586:233;;;:::o;10825:226::-;10965:34;10961:1;10953:6;10949:14;10942:58;11034:9;11029:2;11021:6;11017:15;11010:34;10825:226;:::o;11057:366::-;11199:3;11220:67;11284:2;11279:3;11220:67;:::i;:::-;11213:74;;11296:93;11385:3;11296:93;:::i;:::-;11414:2;11409:3;11405:12;11398:19;;11057:366;;;:::o;11429:419::-;11595:4;11633:2;11622:9;11618:18;11610:26;;11682:9;11676:4;11672:20;11668:1;11657:9;11653:17;11646:47;11710:131;11836:4;11710:131;:::i;:::-;11702:139;;11429:419;;;:::o;11854:200::-;11893:4;11913:19;11930:1;11913:19;:::i;:::-;11908:24;;11946:19;11963:1;11946:19;:::i;:::-;11941:24;;11989:1;11986;11982:9;11974:17;;12013:10;12007:4;12004:20;12001:46;;;12027:18;;:::i;:::-;12001:46;11854:200;;;;:::o;12060:180::-;12108:77;12105:1;12098:88;12205:4;12202:1;12195:15;12229:4;12226:1;12219:15;12246:182;12285:1;12302:19;12319:1;12302:19;:::i;:::-;12297:24;;12335:19;12352:1;12335:19;:::i;:::-;12330:24;;12373:1;12363:35;;12378:18;;:::i;:::-;12363:35;12420:1;12417;12413:9;12408:14;;12246:182;;;;:::o;12434:224::-;12574:34;12570:1;12562:6;12558:14;12551:58;12643:7;12638:2;12630:6;12626:15;12619:32;12434:224;:::o;12664:366::-;12806:3;12827:67;12891:2;12886:3;12827:67;:::i;:::-;12820:74;;12903:93;12992:3;12903:93;:::i;:::-;13021:2;13016:3;13012:12;13005:19;;12664:366;;;:::o;13036:419::-;13202:4;13240:2;13229:9;13225:18;13217:26;;13289:9;13283:4;13279:20;13275:1;13264:9;13260:17;13253:47;13317:131;13443:4;13317:131;:::i;:::-;13309:139;;13036:419;;;:::o;13461:225::-;13601:34;13597:1;13589:6;13585:14;13578:58;13670:8;13665:2;13657:6;13653:15;13646:33;13461:225;:::o;13692:366::-;13834:3;13855:67;13919:2;13914:3;13855:67;:::i;:::-;13848:74;;13931:93;14020:3;13931:93;:::i;:::-;14049:2;14044:3;14040:12;14033:19;;13692:366;;;:::o;14064:419::-;14230:4;14268:2;14257:9;14253:18;14245:26;;14317:9;14311:4;14307:20;14303:1;14292:9;14288:17;14281:47;14345:131;14471:4;14345:131;:::i;:::-;14337:139;;14064:419;;;:::o;14489:223::-;14629:34;14625:1;14617:6;14613:14;14606:58;14698:6;14693:2;14685:6;14681:15;14674:31;14489:223;:::o;14718:366::-;14860:3;14881:67;14945:2;14940:3;14881:67;:::i;:::-;14874:74;;14957:93;15046:3;14957:93;:::i;:::-;15075:2;15070:3;15066:12;15059:19;;14718:366;;;:::o;15090:419::-;15256:4;15294:2;15283:9;15279:18;15271:26;;15343:9;15337:4;15333:20;15329:1;15318:9;15314:17;15307:47;15371:131;15497:4;15371:131;:::i;:::-;15363:139;;15090:419;;;:::o;15515:221::-;15655:34;15651:1;15643:6;15639:14;15632:58;15724:4;15719:2;15711:6;15707:15;15700:29;15515:221;:::o;15742:366::-;15884:3;15905:67;15969:2;15964:3;15905:67;:::i;:::-;15898:74;;15981:93;16070:3;15981:93;:::i;:::-;16099:2;16094:3;16090:12;16083:19;;15742:366;;;:::o;16114:419::-;16280:4;16318:2;16307:9;16303:18;16295:26;;16367:9;16361:4;16357:20;16353:1;16342:9;16338:17;16331:47;16395:131;16521:4;16395:131;:::i;:::-;16387:139;;16114:419;;;:::o;16539:179::-;16679:31;16675:1;16667:6;16663:14;16656:55;16539:179;:::o;16724:366::-;16866:3;16887:67;16951:2;16946:3;16887:67;:::i;:::-;16880:74;;16963:93;17052:3;16963:93;:::i;:::-;17081:2;17076:3;17072:12;17065:19;;16724:366;;;:::o;17096:419::-;17262:4;17300:2;17289:9;17285:18;17277:26;;17349:9;17343:4;17339:20;17335:1;17324:9;17320:17;17313:47;17377:131;17503:4;17377:131;:::i;:::-;17369:139;;17096:419;;;:::o;17521:224::-;17661:34;17657:1;17649:6;17645:14;17638:58;17730:7;17725:2;17717:6;17713:15;17706:32;17521:224;:::o;17751:366::-;17893:3;17914:67;17978:2;17973:3;17914:67;:::i;:::-;17907:74;;17990:93;18079:3;17990:93;:::i;:::-;18108:2;18103:3;18099:12;18092:19;;17751:366;;;:::o;18123:419::-;18289:4;18327:2;18316:9;18312:18;18304:26;;18376:9;18370:4;18366:20;18362:1;18351:9;18347:17;18340:47;18404:131;18530:4;18404:131;:::i;:::-;18396:139;;18123:419;;;:::o;18548:222::-;18688:34;18684:1;18676:6;18672:14;18665:58;18757:5;18752:2;18744:6;18740:15;18733:30;18548:222;:::o;18776:366::-;18918:3;18939:67;19003:2;18998:3;18939:67;:::i;:::-;18932:74;;19015:93;19104:3;19015:93;:::i;:::-;19133:2;19128:3;19124:12;19117:19;;18776:366;;;:::o;19148:419::-;19314:4;19352:2;19341:9;19337:18;19329:26;;19401:9;19395:4;19391:20;19387:1;19376:9;19372:17;19365:47;19429:131;19555:4;19429:131;:::i;:::-;19421:139;;19148:419;;;:::o;19573:225::-;19713:34;19709:1;19701:6;19697:14;19690:58;19782:8;19777:2;19769:6;19765:15;19758:33;19573:225;:::o;19804:366::-;19946:3;19967:67;20031:2;20026:3;19967:67;:::i;:::-;19960:74;;20043:93;20132:3;20043:93;:::i;:::-;20161:2;20156:3;20152:12;20145:19;;19804:366;;;:::o;20176:419::-;20342:4;20380:2;20369:9;20365:18;20357:26;;20429:9;20423:4;20419:20;20415:1;20404:9;20400:17;20393:47;20457:131;20583:4;20457:131;:::i;:::-;20449:139;;20176:419;;;:::o;20601:182::-;20741:34;20737:1;20729:6;20725:14;20718:58;20601:182;:::o;20789:366::-;20931:3;20952:67;21016:2;21011:3;20952:67;:::i;:::-;20945:74;;21028:93;21117:3;21028:93;:::i;:::-;21146:2;21141:3;21137:12;21130:19;;20789:366;;;:::o;21161:419::-;21327:4;21365:2;21354:9;21350:18;21342:26;;21414:9;21408:4;21404:20;21400:1;21389:9;21385:17;21378:47;21442:131;21568:4;21442:131;:::i;:::-;21434:139;;21161:419;;;:::o;21586:114::-;;:::o;21706:364::-;21848:3;21869:66;21933:1;21928:3;21869:66;:::i;:::-;21862:73;;21944:93;22033:3;21944:93;:::i;:::-;22062:1;22057:3;22053:11;22046:18;;21706:364;;;:::o;22076:419::-;22242:4;22280:2;22269:9;22265:18;22257:26;;22329:9;22323:4;22319:20;22315:1;22304:9;22300:17;22293:47;22357:131;22483:4;22357:131;:::i;:::-;22349:139;;22076:419;;;:::o;22501:194::-;22541:4;22561:20;22579:1;22561:20;:::i;:::-;22556:25;;22595:20;22613:1;22595:20;:::i;:::-;22590:25;;22639:1;22636;22632:9;22624:17;;22663:1;22657:4;22654:11;22651:37;;;22668:18;;:::i;:::-;22651:37;22501:194;;;;:::o;22701:197::-;22740:3;22759:19;22776:1;22759:19;:::i;:::-;22754:24;;22792:19;22809:1;22792:19;:::i;:::-;22787:24;;22834:1;22831;22827:9;22820:16;;22857:10;22852:3;22849:19;22846:45;;;22871:18;;:::i;:::-;22846:45;22701:197;;;;:::o;22904:243::-;23044:34;23040:1;23032:6;23028:14;23021:58;23113:26;23108:2;23100:6;23096:15;23089:51;22904:243;:::o;23153:366::-;23295:3;23316:67;23380:2;23375:3;23316:67;:::i;:::-;23309:74;;23392:93;23481:3;23392:93;:::i;:::-;23510:2;23505:3;23501:12;23494:19;;23153:366;;;:::o;23525:419::-;23691:4;23729:2;23718:9;23714:18;23706:26;;23778:9;23772:4;23768:20;23764:1;23753:9;23749:17;23742:47;23806:131;23932:4;23806:131;:::i;:::-;23798:139;;23525:419;;;:::o;23950:332::-;24071:4;24109:2;24098:9;24094:18;24086:26;;24122:71;24190:1;24179:9;24175:17;24166:6;24122:71;:::i;:::-;24203:72;24271:2;24260:9;24256:18;24247:6;24203:72;:::i;:::-;23950:332;;;;;:::o
Swarm Source
ipfs://7e54ab93223c1db213cef54aa4954deade092d6d8cd031b6bebd693cd0b86d04
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.