ERC-20
Overview
Max Total Supply
355,576,209,299.649824912456228115 LIFTA
Holders
103
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000965569728209 LIFTAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
LiftaToken
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-17 */ // File: @openzeppelin\contracts\token\ERC20\IERC20.sol // SPDX-License-Identifier: MIT /** -*#%%%#*+-: :@@@@@@@@@@@@%- -====+#%@@= :@@@@@@@@@@@@@@* .=*@@@@@@@@@#. .+#@@@%%*: *@@@@@@@@@@@@@@- :=#@@@@@@@@@#=:. .-*@@@@@@@@@* %@@@@@@@@@@@@@: .-+*#%@@@@@@#=---: :+%@@@@@+..:=**: #@@@@@@@@@@@@% .+%@@@@@@@@@%+. -%@@@@@@%. =@@@@@@@@@@@@: :=*#%%%@@@@@@@@@@*: *@@@@@@@@- =%@@@@@@@@@+ .-++++=+#@@@@@@@@@@@@@@#+: =@@@@@@@@@@@@#+*###+- .%@@@@@@@@*=+%@@@@@@@@@@@@@@@@@@#*=: +@@@@@@@@@@@@@@@@@@@@@*%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*- -#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+. .=%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#= .=*%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@-:. =@@@@@@@@@@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@@@@@%. =@@@@@@@@@@@@@@@@@@@@@@@. #@@@@@@@@@@@@@@@@@@@@@: .@@@@@@@@@@@@@@@@@@@@+ #@@@@@@@@@@@@@@@@@@# %@@@@@@@@@@@@@@@@@% :@@@@@@@@@@@@@@@@@@= %@@@@@@@@@@@@@@@@@@= -@@@@@@@@@@@@@@@@@@# .@@@@@@@@@@@@@@@@@@= +@@@@@@@@@@@@@@@@@@* .@@@@@@@@@@@@@@@@@@@@ *@@@@@@@@@@@@@@@@@@@@. .@@@@@@@@@@@@@@@@@@@@@* *@@@@@@@@@@@@@@@@@@@@@@+ @@@@@@@@@@@@@@@@@@@@@@@@= =@@@@@@@@@@@@@@@@@@@@@@@@@: %@@@@@@@@@@@@@@@@@@@@@@@@@% .@@@@@@@@@@@@@@@@@@@@@@@@@@@= -@@@@@@@@@@@@@@@@@@@@@@@@@@@% -@@@@@@@@@@@@@:*@@@@@@@@@@@@@: .@@@@@@@@@@@@# +@@@@@@@@@@@@= #@@@@@@@@@@@: -@@@@@@@@@@@+ :@@@@@@@@@@# .#@@@@@@@@@# *@@@@@@@@@: =@@@@@@@@@ :@@@@@@@@# #@@@@@@@@: :@@@@@@@@- %@@@@@@@+ *@@@@@@@: .#@@@@@@@. %@@@@@@@: =@@@@@@@- -@@@@@@@@: .@@@@@@@@= @@@@@@@@@: @@@@@@@@@- =@@@@@@@@@. #@@@@@@@@# %@@@@@@@@* :@@@@@@@@@ .%@@@@@@@# -@@@@@@@@: #@@@@@@# .#@@@@@@- %@@@@@# #@@@@@+ .%@@@@@. #@@@@* :@@@@@= .%@@@# =@@@@% .@@@@. .@@@@@= #@@@% :*@@@@@@@: +@@@@= .=+#@@@@@@@@@# *@@@@@%: :+**++=--==+=: .++@@@@@*- .-=+==- */ // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin\contracts\token\ERC20\extensions\IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin\contracts\utils\Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with 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; } } // File: @openzeppelin\contracts\token\ERC20\ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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 Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @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; } /** * @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 {} /** * @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 {} } // File: @openzeppelin\contracts\access\Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ 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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } } pragma solidity ^0.8.0; contract LiftaToken is ERC20, Ownable { uint256 public antisnipeEndTime; uint256 public highAntisnipe; uint256 public normalAntisnipe; constructor() ERC20("SchizoLifters", "LIFTA") { _mint(msg.sender, 420690000000 * (10 ** decimals())); // Initial supply highAntisnipe = 100; // 100% normalAntisnipe = 0; // 0% antisnipeEndTime = block.timestamp + 2 hours; // Updated duration to 2 hours } function transfer(address recipient, uint256 amount) public override returns (bool) { uint256 antisnipeAmount = 0; if (msg.sender != owner()) { if (block.timestamp <= antisnipeEndTime) { antisnipeAmount = amount * highAntisnipe / 100; } else { antisnipeAmount = amount * normalAntisnipe / 100; } } _transfer(_msgSender(), recipient, amount - antisnipeAmount); _burn(_msgSender(), antisnipeAmount); // Burn the antisnipe amount return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { uint256 antisnipeAmount = 0; if (sender != owner()) { if (block.timestamp <= antisnipeEndTime) { antisnipeAmount = amount * highAntisnipe / 100; } else { antisnipeAmount = amount * normalAntisnipe / 100; } } uint256 currentAllowance = allowance(sender, _msgSender()); require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } _transfer(sender, recipient, amount - antisnipeAmount); _burn(sender, antisnipeAmount); // Burn the antisnipe amount return true; } function setOwner(address newOwner) public onlyOwner { transferOwnership(newOwner); } }
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":"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":[{"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":[],"name":"antisnipeEndTime","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":[],"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":[],"name":"highAntisnipe","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"normalAntisnipe","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"setOwner","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f536368697a6f4c696674657273000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c494654410000000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200038e565b508060049080519060200190620000af9291906200038e565b505050620000d2620000c66200013f60201b60201c565b6200014760201b60201c565b6200011333620000e76200020d60201b60201c565b600a620000f5919062000599565b6461f313f880620001079190620006d6565b6200021660201b60201c565b60646007819055506000600881905550611c2042620001339190620004e1565b600681905550620007ef565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000289576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002809062000491565b60405180910390fd5b6200029d600083836200038460201b60201c565b8060026000828254620002b19190620004e1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003649190620004b3565b60405180910390a362000380600083836200038960201b60201c565b5050565b505050565b505050565b8280546200039c906200074e565b90600052602060002090601f016020900481019282620003c057600085556200040c565b82601f10620003db57805160ff19168380011785556200040c565b828001600101855582156200040c579182015b828111156200040b578251825591602001919060010190620003ee565b5b5090506200041b91906200041f565b5090565b5b808211156200043a57600081600090555060010162000420565b5090565b60006200044d601f83620004d0565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200048b8162000737565b82525050565b60006020820190508181036000830152620004ac816200043e565b9050919050565b6000602082019050620004ca600083018462000480565b92915050565b600082825260208201905092915050565b6000620004ee8262000737565b9150620004fb8362000737565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000533576200053262000784565b5b828201905092915050565b6000808291508390505b6001851115620005905780860481111562000568576200056762000784565b5b6001851615620005785780820291505b80810290506200058885620007e2565b945062000548565b94509492505050565b6000620005a68262000737565b9150620005b38362000741565b9250620005e27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005ea565b905092915050565b600082620005fc5760019050620006cf565b816200060c5760009050620006cf565b8160018114620006255760028114620006305762000666565b6001915050620006cf565b60ff84111562000645576200064462000784565b5b8360020a9150848211156200065f576200065e62000784565b5b50620006cf565b5060208310610133831016604e8410600b8410161715620006a05782820a9050838111156200069a576200069962000784565b5b620006cf565b620006af84848460016200053e565b92509050818404811115620006c957620006c862000784565b5b81810290505b9392505050565b6000620006e38262000737565b9150620006f08362000737565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200072c576200072b62000784565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200076757607f821691505b602082108114156200077e576200077d620007b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b611b4d80620007ff6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102e5578063c160eb3014610315578063c4e520ef14610333578063dd62ed3e14610351578063f2fde38b1461038157610116565b8063715018a61461026f5780638da5cb5b1461027957806395d89b4114610297578063a457c2d7146102b557610116565b806323a8c99c116100e957806323a8c99c146101a357806323b872dd146101c1578063313ce567146101f1578063395093511461020f57806370a082311461023f57610116565b806306fdde031461011b578063095ea7b31461013957806313af40351461016957806318160ddd14610185575b600080fd5b61012361039d565b60405161013091906116a8565b60405180910390f35b610153600480360381019061014e9190611185565b61042f565b604051610160919061168d565b60405180910390f35b610183600480360381019061017e91906110d1565b610452565b005b61018d610466565b60405161019a919061182a565b60405180910390f35b6101ab610470565b6040516101b8919061182a565b60405180910390f35b6101db60048036038101906101d69190611136565b610476565b6040516101e8919061168d565b60405180910390f35b6101f9610598565b6040516102069190611845565b60405180910390f35b61022960048036038101906102249190611185565b6105a1565b604051610236919061168d565b60405180910390f35b610259600480360381019061025491906110d1565b6105d8565b604051610266919061182a565b60405180910390f35b610277610620565b005b610281610634565b60405161028e9190611672565b60405180910390f35b61029f61065e565b6040516102ac91906116a8565b60405180910390f35b6102cf60048036038101906102ca9190611185565b6106f0565b6040516102dc919061168d565b60405180910390f35b6102ff60048036038101906102fa9190611185565b610767565b60405161030c919061168d565b60405180910390f35b61031d610829565b60405161032a919061182a565b60405180910390f35b61033b61082f565b604051610348919061182a565b60405180910390f35b61036b600480360381019061036691906110fa565b610835565b604051610378919061182a565b60405180910390f35b61039b600480360381019061039691906110d1565b6108bc565b005b6060600380546103ac90611a19565b80601f01602080910402602001604051908101604052809291908181526020018280546103d890611a19565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b60008061043a610940565b9050610447818585610948565b600191505092915050565b61045a610b13565b610463816108bc565b50565b6000600254905090565b60085481565b60008060009050610485610634565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146104ff5760065442116104e1576064600754846104d09190611903565b6104da91906118d2565b90506104fe565b6064600854846104f19190611903565b6104fb91906118d2565b90505b5b60006105128661050d610940565b610835565b905083811015610557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054e9061176a565b60405180910390fd5b61056b86610563610940565b868403610948565b6105818686848761057c919061195d565b610b91565b61058b8683610e09565b6001925050509392505050565b60006012905090565b6000806105ac610940565b90506105cd8185856105be8589610835565b6105c8919061187c565b610948565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610628610b13565b6106326000610fd7565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461066d90611a19565b80601f016020809104026020016040519081016040528092919081815260200182805461069990611a19565b80156106e65780601f106106bb576101008083540402835291602001916106e6565b820191906000526020600020905b8154815290600101906020018083116106c957829003601f168201915b5050505050905090565b6000806106fb610940565b905060006107098286610835565b90508381101561074e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107459061180a565b60405180910390fd5b61075b8286868403610948565b60019250505092915050565b60008060009050610776610634565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107f05760065442116107d2576064600754846107c19190611903565b6107cb91906118d2565b90506107ef565b6064600854846107e29190611903565b6107ec91906118d2565b90505b5b61080d6107fb610940565b858386610808919061195d565b610b91565b61081e610818610940565b82610e09565b600191505092915050565b60065481565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c4610b13565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092b9061170a565b60405180910390fd5b61093d81610fd7565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af906117ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f9061172a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b06919061182a565b60405180910390a3505050565b610b1b610940565b73ffffffffffffffffffffffffffffffffffffffff16610b39610634565b73ffffffffffffffffffffffffffffffffffffffff1614610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b869061178a565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf8906117ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c68906116ca565b60405180910390fd5b610c7c83838361109d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf99061174a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610df0919061182a565b60405180910390a3610e038484846110a2565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e70906117aa565b60405180910390fd5b610e858260008361109d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f02906116ea565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fbe919061182a565b60405180910390a3610fd2836000846110a2565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506110b681611ae9565b92915050565b6000813590506110cb81611b00565b92915050565b6000602082840312156110e357600080fd5b60006110f1848285016110a7565b91505092915050565b6000806040838503121561110d57600080fd5b600061111b858286016110a7565b925050602061112c858286016110a7565b9150509250929050565b60008060006060848603121561114b57600080fd5b6000611159868287016110a7565b935050602061116a868287016110a7565b925050604061117b868287016110bc565b9150509250925092565b6000806040838503121561119857600080fd5b60006111a6858286016110a7565b92505060206111b7858286016110bc565b9150509250929050565b6111ca81611991565b82525050565b6111d9816119a3565b82525050565b60006111ea82611860565b6111f4818561186b565b93506112048185602086016119e6565b61120d81611ad8565b840191505092915050565b600061122560238361186b565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061128b60228361186b565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112f160268361186b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061135760228361186b565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113bd60268361186b565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061142360288361186b565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b600061148960208361186b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006114c960218361186b565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061152f60258361186b565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061159560248361186b565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115fb60258361186b565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61165d816119cf565b82525050565b61166c816119d9565b82525050565b600060208201905061168760008301846111c1565b92915050565b60006020820190506116a260008301846111d0565b92915050565b600060208201905081810360008301526116c281846111df565b905092915050565b600060208201905081810360008301526116e381611218565b9050919050565b600060208201905081810360008301526117038161127e565b9050919050565b60006020820190508181036000830152611723816112e4565b9050919050565b600060208201905081810360008301526117438161134a565b9050919050565b60006020820190508181036000830152611763816113b0565b9050919050565b6000602082019050818103600083015261178381611416565b9050919050565b600060208201905081810360008301526117a38161147c565b9050919050565b600060208201905081810360008301526117c3816114bc565b9050919050565b600060208201905081810360008301526117e381611522565b9050919050565b6000602082019050818103600083015261180381611588565b9050919050565b60006020820190508181036000830152611823816115ee565b9050919050565b600060208201905061183f6000830184611654565b92915050565b600060208201905061185a6000830184611663565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611887826119cf565b9150611892836119cf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118c7576118c6611a4b565b5b828201905092915050565b60006118dd826119cf565b91506118e8836119cf565b9250826118f8576118f7611a7a565b5b828204905092915050565b600061190e826119cf565b9150611919836119cf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561195257611951611a4b565b5b828202905092915050565b6000611968826119cf565b9150611973836119cf565b92508282101561198657611985611a4b565b5b828203905092915050565b600061199c826119af565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611a045780820151818401526020810190506119e9565b83811115611a13576000848401525b50505050565b60006002820490506001821680611a3157607f821691505b60208210811415611a4557611a44611aa9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611af281611991565b8114611afd57600080fd5b50565b611b09816119cf565b8114611b1457600080fd5b5056fea264697066735822122004bc947cab46361d647596e411c503f69a16716076e8835ee24efd606bcba6bf64736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102e5578063c160eb3014610315578063c4e520ef14610333578063dd62ed3e14610351578063f2fde38b1461038157610116565b8063715018a61461026f5780638da5cb5b1461027957806395d89b4114610297578063a457c2d7146102b557610116565b806323a8c99c116100e957806323a8c99c146101a357806323b872dd146101c1578063313ce567146101f1578063395093511461020f57806370a082311461023f57610116565b806306fdde031461011b578063095ea7b31461013957806313af40351461016957806318160ddd14610185575b600080fd5b61012361039d565b60405161013091906116a8565b60405180910390f35b610153600480360381019061014e9190611185565b61042f565b604051610160919061168d565b60405180910390f35b610183600480360381019061017e91906110d1565b610452565b005b61018d610466565b60405161019a919061182a565b60405180910390f35b6101ab610470565b6040516101b8919061182a565b60405180910390f35b6101db60048036038101906101d69190611136565b610476565b6040516101e8919061168d565b60405180910390f35b6101f9610598565b6040516102069190611845565b60405180910390f35b61022960048036038101906102249190611185565b6105a1565b604051610236919061168d565b60405180910390f35b610259600480360381019061025491906110d1565b6105d8565b604051610266919061182a565b60405180910390f35b610277610620565b005b610281610634565b60405161028e9190611672565b60405180910390f35b61029f61065e565b6040516102ac91906116a8565b60405180910390f35b6102cf60048036038101906102ca9190611185565b6106f0565b6040516102dc919061168d565b60405180910390f35b6102ff60048036038101906102fa9190611185565b610767565b60405161030c919061168d565b60405180910390f35b61031d610829565b60405161032a919061182a565b60405180910390f35b61033b61082f565b604051610348919061182a565b60405180910390f35b61036b600480360381019061036691906110fa565b610835565b604051610378919061182a565b60405180910390f35b61039b600480360381019061039691906110d1565b6108bc565b005b6060600380546103ac90611a19565b80601f01602080910402602001604051908101604052809291908181526020018280546103d890611a19565b80156104255780601f106103fa57610100808354040283529160200191610425565b820191906000526020600020905b81548152906001019060200180831161040857829003601f168201915b5050505050905090565b60008061043a610940565b9050610447818585610948565b600191505092915050565b61045a610b13565b610463816108bc565b50565b6000600254905090565b60085481565b60008060009050610485610634565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146104ff5760065442116104e1576064600754846104d09190611903565b6104da91906118d2565b90506104fe565b6064600854846104f19190611903565b6104fb91906118d2565b90505b5b60006105128661050d610940565b610835565b905083811015610557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054e9061176a565b60405180910390fd5b61056b86610563610940565b868403610948565b6105818686848761057c919061195d565b610b91565b61058b8683610e09565b6001925050509392505050565b60006012905090565b6000806105ac610940565b90506105cd8185856105be8589610835565b6105c8919061187c565b610948565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610628610b13565b6106326000610fd7565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461066d90611a19565b80601f016020809104026020016040519081016040528092919081815260200182805461069990611a19565b80156106e65780601f106106bb576101008083540402835291602001916106e6565b820191906000526020600020905b8154815290600101906020018083116106c957829003601f168201915b5050505050905090565b6000806106fb610940565b905060006107098286610835565b90508381101561074e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107459061180a565b60405180910390fd5b61075b8286868403610948565b60019250505092915050565b60008060009050610776610634565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107f05760065442116107d2576064600754846107c19190611903565b6107cb91906118d2565b90506107ef565b6064600854846107e29190611903565b6107ec91906118d2565b90505b5b61080d6107fb610940565b858386610808919061195d565b610b91565b61081e610818610940565b82610e09565b600191505092915050565b60065481565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c4610b13565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092b9061170a565b60405180910390fd5b61093d81610fd7565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af906117ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f9061172a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b06919061182a565b60405180910390a3505050565b610b1b610940565b73ffffffffffffffffffffffffffffffffffffffff16610b39610634565b73ffffffffffffffffffffffffffffffffffffffff1614610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b869061178a565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf8906117ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c68906116ca565b60405180910390fd5b610c7c83838361109d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf99061174a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610df0919061182a565b60405180910390a3610e038484846110a2565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e70906117aa565b60405180910390fd5b610e858260008361109d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f02906116ea565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fbe919061182a565b60405180910390a3610fd2836000846110a2565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506110b681611ae9565b92915050565b6000813590506110cb81611b00565b92915050565b6000602082840312156110e357600080fd5b60006110f1848285016110a7565b91505092915050565b6000806040838503121561110d57600080fd5b600061111b858286016110a7565b925050602061112c858286016110a7565b9150509250929050565b60008060006060848603121561114b57600080fd5b6000611159868287016110a7565b935050602061116a868287016110a7565b925050604061117b868287016110bc565b9150509250925092565b6000806040838503121561119857600080fd5b60006111a6858286016110a7565b92505060206111b7858286016110bc565b9150509250929050565b6111ca81611991565b82525050565b6111d9816119a3565b82525050565b60006111ea82611860565b6111f4818561186b565b93506112048185602086016119e6565b61120d81611ad8565b840191505092915050565b600061122560238361186b565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061128b60228361186b565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112f160268361186b565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061135760228361186b565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113bd60268361186b565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061142360288361186b565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b600061148960208361186b565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006114c960218361186b565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061152f60258361186b565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061159560248361186b565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115fb60258361186b565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61165d816119cf565b82525050565b61166c816119d9565b82525050565b600060208201905061168760008301846111c1565b92915050565b60006020820190506116a260008301846111d0565b92915050565b600060208201905081810360008301526116c281846111df565b905092915050565b600060208201905081810360008301526116e381611218565b9050919050565b600060208201905081810360008301526117038161127e565b9050919050565b60006020820190508181036000830152611723816112e4565b9050919050565b600060208201905081810360008301526117438161134a565b9050919050565b60006020820190508181036000830152611763816113b0565b9050919050565b6000602082019050818103600083015261178381611416565b9050919050565b600060208201905081810360008301526117a38161147c565b9050919050565b600060208201905081810360008301526117c3816114bc565b9050919050565b600060208201905081810360008301526117e381611522565b9050919050565b6000602082019050818103600083015261180381611588565b9050919050565b60006020820190508181036000830152611823816115ee565b9050919050565b600060208201905061183f6000830184611654565b92915050565b600060208201905061185a6000830184611663565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611887826119cf565b9150611892836119cf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118c7576118c6611a4b565b5b828201905092915050565b60006118dd826119cf565b91506118e8836119cf565b9250826118f8576118f7611a7a565b5b828204905092915050565b600061190e826119cf565b9150611919836119cf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561195257611951611a4b565b5b828202905092915050565b6000611968826119cf565b9150611973836119cf565b92508282101561198657611985611a4b565b5b828203905092915050565b600061199c826119af565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611a045780820151818401526020810190506119e9565b83811115611a13576000848401525b50505050565b60006002820490506001821680611a3157607f821691505b60208210811415611a4557611a44611aa9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611af281611991565b8114611afd57600080fd5b50565b611b09816119cf565b8114611b1457600080fd5b5056fea264697066735822122004bc947cab46361d647596e411c503f69a16716076e8835ee24efd606bcba6bf64736f6c63430008000033
Deployed Bytecode Sourcemap
25992:2005:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12081:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14432:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27895:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13201:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26110:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27039:848;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13043:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15917:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13372:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25148:103;;;:::i;:::-;;24500:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12300:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16658:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26452:579;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26037:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26075:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13961:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25406:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12081:100;12135:13;12168:5;12161:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12081:100;:::o;14432:201::-;14515:4;14532:13;14548:12;:10;:12::i;:::-;14532:28;;14571:32;14580:5;14587:7;14596:6;14571:8;:32::i;:::-;14621:4;14614:11;;;14432:201;;;;:::o;27895:99::-;24386:13;:11;:13::i;:::-;27959:27:::1;27977:8;27959:17;:27::i;:::-;27895:99:::0;:::o;13201:108::-;13262:7;13289:12;;13282:19;;13201:108;:::o;26110:30::-;;;;:::o;27039:848::-;27137:4;27154:23;27180:1;27154:27;;27208:7;:5;:7::i;:::-;27198:17;;:6;:17;;;27194:260;;27255:16;;27236:15;:35;27232:211;;27335:3;27319:13;;27310:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;27292:46;;27232:211;;;27424:3;27406:15;;27397:6;:24;;;;:::i;:::-;:30;;;;:::i;:::-;27379:48;;27232:211;27194:260;27466:24;27493:31;27503:6;27511:12;:10;:12::i;:::-;27493:9;:31::i;:::-;27466:58;;27563:6;27543:16;:26;;27535:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;27650:57;27659:6;27667:12;:10;:12::i;:::-;27700:6;27681:16;:25;27650:8;:57::i;:::-;27731:54;27741:6;27749:9;27769:15;27760:6;:24;;;;:::i;:::-;27731:9;:54::i;:::-;27796:30;27802:6;27810:15;27796:5;:30::i;:::-;27875:4;27868:11;;;;27039:848;;;;;:::o;13043:93::-;13101:5;13126:2;13119:9;;13043:93;:::o;15917:238::-;16005:4;16022:13;16038:12;:10;:12::i;:::-;16022:28;;16061:64;16070:5;16077:7;16114:10;16086:25;16096:5;16103:7;16086:9;:25::i;:::-;:38;;;;:::i;:::-;16061:8;:64::i;:::-;16143:4;16136:11;;;15917:238;;;;:::o;13372:127::-;13446:7;13473:9;:18;13483:7;13473:18;;;;;;;;;;;;;;;;13466:25;;13372:127;;;:::o;25148:103::-;24386:13;:11;:13::i;:::-;25213:30:::1;25240:1;25213:18;:30::i;:::-;25148:103::o:0;24500:87::-;24546:7;24573:6;;;;;;;;;;;24566:13;;24500:87;:::o;12300:104::-;12356:13;12389:7;12382:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12300:104;:::o;16658:436::-;16751:4;16768:13;16784:12;:10;:12::i;:::-;16768:28;;16807:24;16834:25;16844:5;16851:7;16834:9;:25::i;:::-;16807:52;;16898:15;16878:16;:35;;16870:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16991:60;17000:5;17007:7;17035:15;17016:16;:34;16991:8;:60::i;:::-;17082:4;17075:11;;;;16658:436;;;;:::o;26452:579::-;26530:4;26547:23;26573:1;26547:27;;26605:7;:5;:7::i;:::-;26591:21;;:10;:21;;;26587:264;;26652:16;;26633:15;:35;26629:211;;26732:3;26716:13;;26707:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;26689:46;;26629:211;;;26821:3;26803:15;;26794:6;:24;;;;:::i;:::-;:30;;;;:::i;:::-;26776:48;;26629:211;26587:264;26863:60;26873:12;:10;:12::i;:::-;26887:9;26907:15;26898:6;:24;;;;:::i;:::-;26863:9;:60::i;:::-;26934:36;26940:12;:10;:12::i;:::-;26954:15;26934:5;:36::i;:::-;27019:4;27012:11;;;26452:579;;;;:::o;26037:31::-;;;;:::o;26075:28::-;;;;:::o;13961:151::-;14050:7;14077:11;:18;14089:5;14077:18;;;;;;;;;;;;;;;:27;14096:7;14077:27;;;;;;;;;;;;;;;;14070:34;;13961:151;;;;:::o;25406:201::-;24386:13;:11;:13::i;:::-;25515:1:::1;25495:22;;:8;:22;;;;25487:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25571:28;25590:8;25571:18;:28::i;:::-;25406:201:::0;:::o;9727:98::-;9780:7;9807:10;9800:17;;9727:98;:::o;20685:380::-;20838:1;20821:19;;:5;:19;;;;20813:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20919:1;20900:21;;:7;:21;;;;20892:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21003:6;20973:11;:18;20985:5;20973:18;;;;;;;;;;;;;;;:27;20992:7;20973:27;;;;;;;;;;;;;;;:36;;;;21041:7;21025:32;;21034:5;21025:32;;;21050:6;21025:32;;;;;;:::i;:::-;;;;;;;;20685:380;;;:::o;24665:132::-;24740:12;:10;:12::i;:::-;24729:23;;:7;:5;:7::i;:::-;:23;;;24721:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24665:132::o;17564:840::-;17711:1;17695:18;;:4;:18;;;;17687:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17788:1;17774:16;;:2;:16;;;;17766:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17843:38;17864:4;17870:2;17874:6;17843:20;:38::i;:::-;17894:19;17916:9;:15;17926:4;17916:15;;;;;;;;;;;;;;;;17894:37;;17965:6;17950:11;:21;;17942:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;18082:6;18068:11;:20;18050:9;:15;18060:4;18050:15;;;;;;;;;;;;;;;:38;;;;18285:6;18268:9;:13;18278:2;18268:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;18335:2;18320:26;;18329:4;18320:26;;;18339:6;18320:26;;;;;;:::i;:::-;;;;;;;;18359:37;18379:4;18385:2;18389:6;18359:19;:37::i;:::-;17564:840;;;;:::o;19572:675::-;19675:1;19656:21;;:7;:21;;;;19648:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19728:49;19749:7;19766:1;19770:6;19728:20;:49::i;:::-;19790:22;19815:9;:18;19825:7;19815:18;;;;;;;;;;;;;;;;19790:43;;19870:6;19852:14;:24;;19844:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19989:6;19972:14;:23;19951:9;:18;19961:7;19951:18;;;;;;;;;;;;;;;:44;;;;20106:6;20090:12;;:22;;;;;;;;;;;20167:1;20141:37;;20150:7;20141:37;;;20171:6;20141:37;;;;;;:::i;:::-;;;;;;;;20191:48;20211:7;20228:1;20232:6;20191:19;:48::i;:::-;19572:675;;;:::o;25767:191::-;25841:16;25860:6;;;;;;;;;;;25841:25;;25886:8;25877:6;;:17;;;;;;;;;;;;;;;;;;25941:8;25910:40;;25931:8;25910:40;;;;;;;;;;;;25767:191;;:::o;22409:125::-;;;;:::o;23138:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:367::-;;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2818:34;2814:1;2809:3;2805:11;2798:55;2884:5;2879:2;2874:3;2870:12;2863:27;2916:2;2911:3;2907:12;2900:19;;2704:221;;;:::o;2931:366::-;;3094:67;3158:2;3153:3;3094:67;:::i;:::-;3087:74;;3191:34;3187:1;3182:3;3178:11;3171:55;3257:4;3252:2;3247:3;3243:12;3236:26;3288:2;3283:3;3279:12;3272:19;;3077:220;;;:::o;3303:370::-;;3466:67;3530:2;3525:3;3466:67;:::i;:::-;3459:74;;3563:34;3559:1;3554:3;3550:11;3543:55;3629:8;3624:2;3619:3;3615:12;3608:30;3664:2;3659:3;3655:12;3648:19;;3449:224;;;:::o;3679:366::-;;3842:67;3906:2;3901:3;3842:67;:::i;:::-;3835:74;;3939:34;3935:1;3930:3;3926:11;3919:55;4005:4;4000:2;3995:3;3991:12;3984:26;4036:2;4031:3;4027:12;4020:19;;3825:220;;;:::o;4051:370::-;;4214:67;4278:2;4273:3;4214:67;:::i;:::-;4207:74;;4311:34;4307:1;4302:3;4298:11;4291:55;4377:8;4372:2;4367:3;4363:12;4356:30;4412:2;4407:3;4403:12;4396:19;;4197:224;;;:::o;4427:372::-;;4590:67;4654:2;4649:3;4590:67;:::i;:::-;4583:74;;4687:34;4683:1;4678:3;4674:11;4667:55;4753:10;4748:2;4743:3;4739:12;4732:32;4790:2;4785:3;4781:12;4774:19;;4573:226;;;:::o;4805:330::-;;4968:67;5032:2;5027:3;4968:67;:::i;:::-;4961:74;;5065:34;5061:1;5056:3;5052:11;5045:55;5126:2;5121:3;5117:12;5110:19;;4951:184;;;:::o;5141:365::-;;5304:67;5368:2;5363:3;5304:67;:::i;:::-;5297:74;;5401:34;5397:1;5392:3;5388:11;5381:55;5467:3;5462:2;5457:3;5453:12;5446:25;5497:2;5492:3;5488:12;5481:19;;5287:219;;;:::o;5512:369::-;;5675:67;5739:2;5734:3;5675:67;:::i;:::-;5668:74;;5772:34;5768:1;5763:3;5759:11;5752:55;5838:7;5833:2;5828:3;5824:12;5817:29;5872:2;5867:3;5863:12;5856:19;;5658:223;;;:::o;5887:368::-;;6050:67;6114:2;6109:3;6050:67;:::i;:::-;6043:74;;6147:34;6143:1;6138:3;6134:11;6127:55;6213:6;6208:2;6203:3;6199:12;6192:28;6246:2;6241:3;6237:12;6230:19;;6033:222;;;:::o;6261:369::-;;6424:67;6488:2;6483:3;6424:67;:::i;:::-;6417:74;;6521:34;6517:1;6512:3;6508:11;6501:55;6587:7;6582:2;6577:3;6573:12;6566:29;6621:2;6616:3;6612:12;6605:19;;6407:223;;;:::o;6636:118::-;6723:24;6741:5;6723:24;:::i;:::-;6718:3;6711:37;6701:53;;:::o;6760:112::-;6843:22;6859:5;6843:22;:::i;:::-;6838:3;6831:35;6821:51;;:::o;6878:222::-;;7009:2;6998:9;6994:18;6986:26;;7022:71;7090:1;7079:9;7075:17;7066:6;7022:71;:::i;:::-;6976:124;;;;:::o;7106:210::-;;7231:2;7220:9;7216:18;7208:26;;7244:65;7306:1;7295:9;7291:17;7282:6;7244:65;:::i;:::-;7198:118;;;;:::o;7322:313::-;;7473:2;7462:9;7458:18;7450:26;;7522:9;7516:4;7512:20;7508:1;7497:9;7493:17;7486:47;7550:78;7623:4;7614:6;7550:78;:::i;:::-;7542:86;;7440:195;;;;:::o;7641:419::-;;7845:2;7834:9;7830:18;7822:26;;7894:9;7888:4;7884:20;7880:1;7869:9;7865:17;7858:47;7922:131;8048:4;7922:131;:::i;:::-;7914:139;;7812:248;;;:::o;8066:419::-;;8270:2;8259:9;8255:18;8247:26;;8319:9;8313:4;8309:20;8305:1;8294:9;8290:17;8283:47;8347:131;8473:4;8347:131;:::i;:::-;8339:139;;8237:248;;;:::o;8491:419::-;;8695:2;8684:9;8680:18;8672:26;;8744:9;8738:4;8734:20;8730:1;8719:9;8715:17;8708:47;8772:131;8898:4;8772:131;:::i;:::-;8764:139;;8662:248;;;:::o;8916:419::-;;9120:2;9109:9;9105:18;9097:26;;9169:9;9163:4;9159:20;9155:1;9144:9;9140:17;9133:47;9197:131;9323:4;9197:131;:::i;:::-;9189:139;;9087:248;;;:::o;9341:419::-;;9545:2;9534:9;9530:18;9522:26;;9594:9;9588:4;9584:20;9580:1;9569:9;9565:17;9558:47;9622:131;9748:4;9622:131;:::i;:::-;9614:139;;9512:248;;;:::o;9766:419::-;;9970:2;9959:9;9955:18;9947:26;;10019:9;10013:4;10009:20;10005:1;9994:9;9990:17;9983:47;10047:131;10173:4;10047:131;:::i;:::-;10039:139;;9937:248;;;:::o;10191:419::-;;10395:2;10384:9;10380:18;10372:26;;10444:9;10438:4;10434:20;10430:1;10419:9;10415:17;10408:47;10472:131;10598:4;10472:131;:::i;:::-;10464:139;;10362:248;;;:::o;10616:419::-;;10820:2;10809:9;10805:18;10797:26;;10869:9;10863:4;10859:20;10855:1;10844:9;10840:17;10833:47;10897:131;11023:4;10897:131;:::i;:::-;10889:139;;10787:248;;;:::o;11041:419::-;;11245:2;11234:9;11230:18;11222:26;;11294:9;11288:4;11284:20;11280:1;11269:9;11265:17;11258:47;11322:131;11448:4;11322:131;:::i;:::-;11314:139;;11212:248;;;:::o;11466:419::-;;11670:2;11659:9;11655:18;11647:26;;11719:9;11713:4;11709:20;11705:1;11694:9;11690:17;11683:47;11747:131;11873:4;11747:131;:::i;:::-;11739:139;;11637:248;;;:::o;11891:419::-;;12095:2;12084:9;12080:18;12072:26;;12144:9;12138:4;12134:20;12130:1;12119:9;12115:17;12108:47;12172:131;12298:4;12172:131;:::i;:::-;12164:139;;12062:248;;;:::o;12316:222::-;;12447:2;12436:9;12432:18;12424:26;;12460:71;12528:1;12517:9;12513:17;12504:6;12460:71;:::i;:::-;12414:124;;;;:::o;12544:214::-;;12671:2;12660:9;12656:18;12648:26;;12684:67;12748:1;12737:9;12733:17;12724:6;12684:67;:::i;:::-;12638:120;;;;:::o;12764:99::-;;12850:5;12844:12;12834:22;;12823:40;;;:::o;12869:169::-;;12987:6;12982:3;12975:19;13027:4;13022:3;13018:14;13003:29;;12965:73;;;;:::o;13044:305::-;;13103:20;13121:1;13103:20;:::i;:::-;13098:25;;13137:20;13155:1;13137:20;:::i;:::-;13132:25;;13291:1;13223:66;13219:74;13216:1;13213:81;13210:2;;;13297:18;;:::i;:::-;13210:2;13341:1;13338;13334:9;13327:16;;13088:261;;;;:::o;13355:185::-;;13412:20;13430:1;13412:20;:::i;:::-;13407:25;;13446:20;13464:1;13446:20;:::i;:::-;13441:25;;13485:1;13475:2;;13490:18;;:::i;:::-;13475:2;13532:1;13529;13525:9;13520:14;;13397:143;;;;:::o;13546:348::-;;13609:20;13627:1;13609:20;:::i;:::-;13604:25;;13643:20;13661:1;13643:20;:::i;:::-;13638:25;;13831:1;13763:66;13759:74;13756:1;13753:81;13748:1;13741:9;13734:17;13730:105;13727:2;;;13838:18;;:::i;:::-;13727:2;13886:1;13883;13879:9;13868:20;;13594:300;;;;:::o;13900:191::-;;13960:20;13978:1;13960:20;:::i;:::-;13955:25;;13994:20;14012:1;13994:20;:::i;:::-;13989:25;;14033:1;14030;14027:8;14024:2;;;14038:18;;:::i;:::-;14024:2;14083:1;14080;14076:9;14068:17;;13945:146;;;;:::o;14097:96::-;;14163:24;14181:5;14163:24;:::i;:::-;14152:35;;14142:51;;;:::o;14199:90::-;;14276:5;14269:13;14262:21;14251:32;;14241:48;;;:::o;14295:126::-;;14372:42;14365:5;14361:54;14350:65;;14340:81;;;:::o;14427:77::-;;14493:5;14482:16;;14472:32;;;:::o;14510:86::-;;14585:4;14578:5;14574:16;14563:27;;14553:43;;;:::o;14602:307::-;14670:1;14680:113;14694:6;14691:1;14688:13;14680:113;;;14779:1;14774:3;14770:11;14764:18;14760:1;14755:3;14751:11;14744:39;14716:2;14713:1;14709:10;14704:15;;14680:113;;;14811:6;14808:1;14805:13;14802:2;;;14891:1;14882:6;14877:3;14873:16;14866:27;14802:2;14651:258;;;;:::o;14915:320::-;;14996:1;14990:4;14986:12;14976:22;;15043:1;15037:4;15033:12;15064:18;15054:2;;15120:4;15112:6;15108:17;15098:27;;15054:2;15182;15174:6;15171:14;15151:18;15148:38;15145:2;;;15201:18;;:::i;:::-;15145:2;14966:269;;;;:::o;15241:180::-;15289:77;15286:1;15279:88;15386:4;15383:1;15376:15;15410:4;15407:1;15400:15;15427:180;15475:77;15472:1;15465:88;15572:4;15569:1;15562:15;15596:4;15593:1;15586:15;15613:180;15661:77;15658:1;15651:88;15758:4;15755:1;15748:15;15782:4;15779:1;15772:15;15799:102;;15891:2;15887:7;15882:2;15875:5;15871:14;15867:28;15857:38;;15847:54;;;:::o;15907:122::-;15980:24;15998:5;15980:24;:::i;:::-;15973:5;15970:35;15960:2;;16019:1;16016;16009:12;15960:2;15950:79;:::o;16035:122::-;16108:24;16126:5;16108:24;:::i;:::-;16101:5;16098:35;16088:2;;16147:1;16144;16137:12;16088:2;16078:79;:::o
Swarm Source
ipfs://04bc947cab46361d647596e411c503f69a16716076e8835ee24efd606bcba6bf
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.