Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 411 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21403397 | 33 hrs ago | IN | 0 ETH | 0.00054264 | ||||
Transfer | 20784987 | 87 days ago | IN | 0 ETH | 0.00136941 | ||||
Approve | 20566447 | 118 days ago | IN | 0 ETH | 0.00005965 | ||||
Approve | 17974233 | 481 days ago | IN | 0 ETH | 0.00089449 | ||||
Approve | 17961612 | 482 days ago | IN | 0 ETH | 0.00059817 | ||||
Approve | 17961612 | 482 days ago | IN | 0 ETH | 0.00059817 | ||||
Approve | 17961612 | 482 days ago | IN | 0 ETH | 0.00059817 | ||||
Approve | 17961612 | 482 days ago | IN | 0 ETH | 0.00059817 | ||||
Approve | 17961612 | 482 days ago | IN | 0 ETH | 0.00059817 | ||||
Approve | 17957630 | 483 days ago | IN | 0 ETH | 0.00145684 | ||||
Approve | 17928493 | 487 days ago | IN | 0 ETH | 0.00137325 | ||||
Approve | 17881023 | 494 days ago | IN | 0 ETH | 0.00083442 | ||||
Approve | 17855415 | 497 days ago | IN | 0 ETH | 0.00056172 | ||||
Approve | 17831375 | 501 days ago | IN | 0 ETH | 0.00074544 | ||||
Approve | 17828500 | 501 days ago | IN | 0 ETH | 0.0017713 | ||||
Approve | 17826087 | 501 days ago | IN | 0 ETH | 0.00089639 | ||||
Approve | 17826058 | 501 days ago | IN | 0 ETH | 0.00074118 | ||||
Approve | 17823980 | 502 days ago | IN | 0 ETH | 0.00063818 | ||||
Approve | 17823939 | 502 days ago | IN | 0 ETH | 0.00061083 | ||||
Approve | 17823699 | 502 days ago | IN | 0 ETH | 0.00127044 | ||||
Approve | 17823595 | 502 days ago | IN | 0 ETH | 0.00109754 | ||||
Approve | 17821630 | 502 days ago | IN | 0 ETH | 0.00146369 | ||||
Approve | 17821507 | 502 days ago | IN | 0 ETH | 0.0017596 | ||||
Approve | 17820096 | 502 days ago | IN | 0 ETH | 0.00083287 | ||||
Approve | 17811641 | 503 days ago | IN | 0 ETH | 0.00071102 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
StichToken
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-19 */ // SPDX-License-Identifier: MIT // 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/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.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. 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); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.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/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's 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: StichToken.sol pragma solidity ^0.8.9; contract StichToken is Ownable, ERC20 { mapping(address => bool) public blacklists; bool public limited; uint256 public maxHoldingAmount = 2_400_000_000_000 * 10 ** decimals(); // 0.6% Max Wallet limit uint256 public minHoldingAmount = 100_000_000_000 * 10 ** decimals(); // 0.05% Min Buy Limit address public uniswapV2Pair; uint256 _totalSupply = 400000000000000 * 10 ** decimals(); constructor() ERC20("Stich", "STICH") { _mint(msg.sender, _totalSupply); } function blacklist(address _address, bool _isBlacklisting) external onlyOwner { blacklists[_address] = _isBlacklisting; } function EnableAntiWhale(bool _limited, address _uniswapV2Pair) external onlyOwner { limited = _limited; uniswapV2Pair = _uniswapV2Pair; } function ChangeLimits(uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner { require(_minHoldingAmount <= 100_000_000_000 * 10 ** decimals(), "Stich::minHolding can be max 0.05% of total supply"); require(_maxHoldingAmount >= 2_000_000_000_000 * 10 ** decimals(), "Stich::maxHolding must be at least 0.5% of total supply"); maxHoldingAmount = _maxHoldingAmount * 10 ** decimals(); minHoldingAmount = _minHoldingAmount * 10 ** decimals(); } function DisableAntiWhale() external onlyOwner { limited = false; maxHoldingAmount = 400000000000000 * 10 ** decimals(); minHoldingAmount = 0; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { require(!blacklists[to] && !blacklists[from], "Blacklisted"); if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner(), "trading is not started"); return; } if (limited && from == uniswapV2Pair) { require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid"); } } }
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":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"ChangeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"DisableAntiWhale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"EnableAntiWhale","outputs":[],"stateMutability":"nonpayable","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":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052620000146200017a60201b60201c565b600a620000229190620008ea565b65022ecb25c0006200003591906200093b565b600855620000486200017a60201b60201c565b600a620000569190620008ea565b64174876e8006200006891906200093b565b6009556200007b6200017a60201b60201c565b600a620000899190620008ea565b66016bcc41e900006200009d91906200093b565b600b55348015620000ad57600080fd5b506040518060400160405280600581526020017f53746963680000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f53544943480000000000000000000000000000000000000000000000000000008152506200013a6200012e6200018360201b60201c565b6200018b60201b60201c565b81600490816200014b919062000bf6565b5080600590816200015d919062000bf6565b5050506200017433600b546200024f60201b60201c565b62000f1f565b60006012905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b89062000d3e565b60405180910390fd5b620002d560008383620003bd60201b60201c565b8060036000828254620002e9919062000d60565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200039d919062000dac565b60405180910390a3620003b960008383620006d960201b60201c565b5050565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620004625750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b620004a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049b9062000e19565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603620005c7576200050b620006de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806200057f575062000550620006de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b620005c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005b89062000e8b565b60405180910390fd5b620006d4565b600760009054906101000a900460ff168015620006315750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620006d3576008548162000651846200070760201b620006411760201c565b6200065d919062000d60565b111580156200069057506009548162000681846200070760201b620006411760201c565b6200068d919062000d60565b10155b620006d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c99062000efd565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620007de57808604811115620007b657620007b562000750565b5b6001851615620007c65780820291505b8081029050620007d6856200077f565b945062000796565b94509492505050565b600082620007f95760019050620008cc565b81620008095760009050620008cc565b81600181146200082257600281146200082d5762000863565b6001915050620008cc565b60ff84111562000842576200084162000750565b5b8360020a9150848211156200085c576200085b62000750565b5b50620008cc565b5060208310610133831016604e8410600b84101617156200089d5782820a90508381111562000897576200089662000750565b5b620008cc565b620008ac84848460016200078c565b92509050818404811115620008c657620008c562000750565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620008f782620008d3565b91506200090483620008dd565b9250620009337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007e7565b905092915050565b60006200094882620008d3565b91506200095583620008d3565b92508282026200096581620008d3565b915082820484148315176200097f576200097e62000750565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a0857607f821691505b60208210810362000a1e5762000a1d620009c0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a49565b62000a94868362000a49565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000ad762000ad162000acb84620008d3565b62000aac565b620008d3565b9050919050565b6000819050919050565b62000af38362000ab6565b62000b0b62000b028262000ade565b84845462000a56565b825550505050565b600090565b62000b2262000b13565b62000b2f81848462000ae8565b505050565b5b8181101562000b575762000b4b60008262000b18565b60018101905062000b35565b5050565b601f82111562000ba65762000b708162000a24565b62000b7b8462000a39565b8101602085101562000b8b578190505b62000ba362000b9a8562000a39565b83018262000b34565b50505b505050565b600082821c905092915050565b600062000bcb6000198460080262000bab565b1980831691505092915050565b600062000be6838362000bb8565b9150826002028217905092915050565b62000c018262000986565b67ffffffffffffffff81111562000c1d5762000c1c62000991565b5b62000c298254620009ef565b62000c3682828562000b5b565b600060209050601f83116001811462000c6e576000841562000c59578287015190505b62000c65858262000bd8565b86555062000cd5565b601f19841662000c7e8662000a24565b60005b8281101562000ca85784890151825560018201915060208501945060208101905062000c81565b8683101562000cc8578489015162000cc4601f89168262000bb8565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d26601f8362000cdd565b915062000d338262000cee565b602082019050919050565b6000602082019050818103600083015262000d598162000d17565b9050919050565b600062000d6d82620008d3565b915062000d7a83620008d3565b925082820190508082111562000d955762000d9462000750565b5b92915050565b62000da681620008d3565b82525050565b600060208201905062000dc3600083018462000d9b565b92915050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600062000e01600b8362000cdd565b915062000e0e8262000dc9565b602082019050919050565b6000602082019050818103600083015262000e348162000df2565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600062000e7360168362000cdd565b915062000e808262000e3b565b602082019050919050565b6000602082019050818103600083015262000ea68162000e64565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600062000ee560068362000cdd565b915062000ef28262000ead565b602082019050919050565b6000602082019050818103600083015262000f188162000ed6565b9050919050565b6121e38062000f2f6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c357806395d89b411161007c57806395d89b411461037e578063a457c2d71461039c578063a9059cbb146103cc578063d948e028146103fc578063dd62ed3e14610418578063f2fde38b146104485761014d565b8063715018a6146102f4578063839f0c4c146102fe578063860a32ec1461031a5780638693aba51461033857806389f9a1d3146103425780638da5cb5b146103605761014d565b806323b872dd1161011557806323b872dd1461020c578063313ce5671461023c578063395093511461025a578063404e51291461028a57806349bd5a5e146102a657806370a08231146102c45761014d565b806306fdde0314610152578063095ea7b31461017057806316c02129146101a057806318160ddd146101d05780631ab99e12146101ee575b600080fd5b61015a610464565b6040516101679190611484565b60405180910390f35b61018a6004803603810190610185919061153f565b6104f6565b604051610197919061159a565b60405180910390f35b6101ba60048036038101906101b591906115b5565b610519565b6040516101c7919061159a565b60405180910390f35b6101d8610539565b6040516101e591906115f1565b60405180910390f35b6101f6610543565b60405161020391906115f1565b60405180910390f35b6102266004803603810190610221919061160c565b610549565b604051610233919061159a565b60405180910390f35b610244610578565b604051610251919061167b565b60405180910390f35b610274600480360381019061026f919061153f565b610581565b604051610281919061159a565b60405180910390f35b6102a4600480360381019061029f91906116c2565b6105b8565b005b6102ae61061b565b6040516102bb9190611711565b60405180910390f35b6102de60048036038101906102d991906115b5565b610641565b6040516102eb91906115f1565b60405180910390f35b6102fc61068a565b005b6103186004803603810190610313919061172c565b61069e565b005b610322610705565b60405161032f919061159a565b60405180910390f35b610340610718565b005b61034a610771565b60405161035791906115f1565b60405180910390f35b610368610777565b6040516103759190611711565b60405180910390f35b6103866107a0565b6040516103939190611484565b60405180910390f35b6103b660048036038101906103b1919061153f565b610832565b6040516103c3919061159a565b60405180910390f35b6103e660048036038101906103e1919061153f565b6108a9565b6040516103f3919061159a565b60405180910390f35b6104166004803603810190610411919061176c565b6108cc565b005b610432600480360381019061042d91906117ac565b6109ef565b60405161043f91906115f1565b60405180910390f35b610462600480360381019061045d91906115b5565b610a76565b005b6060600480546104739061181b565b80601f016020809104026020016040519081016040528092919081815260200182805461049f9061181b565b80156104ec5780601f106104c1576101008083540402835291602001916104ec565b820191906000526020600020905b8154815290600101906020018083116104cf57829003601f168201915b5050505050905090565b600080610501610af9565b905061050e818585610b01565b600191505092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60095481565b600080610554610af9565b9050610561858285610cca565b61056c858585610d56565b60019150509392505050565b60006012905090565b60008061058c610af9565b90506105ad81858561059e85896109ef565b6105a8919061187b565b610b01565b600191505092915050565b6105c0610fcf565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610692610fcf565b61069c600061104d565b565b6106a6610fcf565b81600760006101000a81548160ff02191690831515021790555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600760009054906101000a900460ff1681565b610720610fcf565b6000600760006101000a81548160ff021916908315150217905550610743610578565b600a61074f91906119e2565b66016bcc41e900006107619190611a2d565b6008819055506000600981905550565b60085481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107af9061181b565b80601f01602080910402602001604051908101604052809291908181526020018280546107db9061181b565b80156108285780601f106107fd57610100808354040283529160200191610828565b820191906000526020600020905b81548152906001019060200180831161080b57829003601f168201915b5050505050905090565b60008061083d610af9565b9050600061084b82866109ef565b905083811015610890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088790611ae1565b60405180910390fd5b61089d8286868403610b01565b60019250505092915050565b6000806108b4610af9565b90506108c1818585610d56565b600191505092915050565b6108d4610fcf565b6108dc610578565b600a6108e891906119e2565b64174876e8006108f89190611a2d565b81111561093a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093190611b73565b60405180910390fd5b610942610578565b600a61094e91906119e2565b6501d1a94a200061095f9190611a2d565b8210156109a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099890611c05565b60405180910390fd5b6109a9610578565b600a6109b591906119e2565b826109c09190611a2d565b6008819055506109ce610578565b600a6109da91906119e2565b816109e59190611a2d565b6009819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a7e610fcf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae490611c97565b60405180910390fd5b610af68161104d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790611d29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690611dbb565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cbd91906115f1565b60405180910390a3505050565b6000610cd684846109ef565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d505781811015610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990611e27565b60405180910390fd5b610d4f8484848403610b01565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc90611eb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90611f4b565b60405180910390fd5b610e3f838383611111565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd90611fdd565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fb691906115f1565b60405180910390a3610fc98484846113ef565b50505050565b610fd7610af9565b73ffffffffffffffffffffffffffffffffffffffff16610ff5610777565b73ffffffffffffffffffffffffffffffffffffffff161461104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290612049565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156111b55750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb906120b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361130157611252610777565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806112bd575061128e610777565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390612121565b60405180910390fd5b6113ea565b600760009054906101000a900460ff16801561136a5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156113e9576008548161137c84610641565b611386919061187b565b111580156113a957506009548161139c84610641565b6113a6919061187b565b10155b6113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df9061218d565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561142e578082015181840152602081019050611413565b60008484015250505050565b6000601f19601f8301169050919050565b6000611456826113f4565b61146081856113ff565b9350611470818560208601611410565b6114798161143a565b840191505092915050565b6000602082019050818103600083015261149e818461144b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114d6826114ab565b9050919050565b6114e6816114cb565b81146114f157600080fd5b50565b600081359050611503816114dd565b92915050565b6000819050919050565b61151c81611509565b811461152757600080fd5b50565b60008135905061153981611513565b92915050565b60008060408385031215611556576115556114a6565b5b6000611564858286016114f4565b92505060206115758582860161152a565b9150509250929050565b60008115159050919050565b6115948161157f565b82525050565b60006020820190506115af600083018461158b565b92915050565b6000602082840312156115cb576115ca6114a6565b5b60006115d9848285016114f4565b91505092915050565b6115eb81611509565b82525050565b600060208201905061160660008301846115e2565b92915050565b600080600060608486031215611625576116246114a6565b5b6000611633868287016114f4565b9350506020611644868287016114f4565b92505060406116558682870161152a565b9150509250925092565b600060ff82169050919050565b6116758161165f565b82525050565b6000602082019050611690600083018461166c565b92915050565b61169f8161157f565b81146116aa57600080fd5b50565b6000813590506116bc81611696565b92915050565b600080604083850312156116d9576116d86114a6565b5b60006116e7858286016114f4565b92505060206116f8858286016116ad565b9150509250929050565b61170b816114cb565b82525050565b60006020820190506117266000830184611702565b92915050565b60008060408385031215611743576117426114a6565b5b6000611751858286016116ad565b9250506020611762858286016114f4565b9150509250929050565b60008060408385031215611783576117826114a6565b5b60006117918582860161152a565b92505060206117a28582860161152a565b9150509250929050565b600080604083850312156117c3576117c26114a6565b5b60006117d1858286016114f4565b92505060206117e2858286016114f4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061183357607f821691505b602082108103611846576118456117ec565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061188682611509565b915061189183611509565b92508282019050808211156118a9576118a861184c565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115611906578086048111156118e2576118e161184c565b5b60018516156118f15780820291505b80810290506118ff856118af565b94506118c6565b94509492505050565b60008261191f57600190506119db565b8161192d57600090506119db565b8160018114611943576002811461194d5761197c565b60019150506119db565b60ff84111561195f5761195e61184c565b5b8360020a9150848211156119765761197561184c565b5b506119db565b5060208310610133831016604e8410600b84101617156119b15782820a9050838111156119ac576119ab61184c565b5b6119db565b6119be84848460016118bc565b925090508184048111156119d5576119d461184c565b5b81810290505b9392505050565b60006119ed82611509565b91506119f88361165f565b9250611a257fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461190f565b905092915050565b6000611a3882611509565b9150611a4383611509565b9250828202611a5181611509565b91508282048414831517611a6857611a6761184c565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611acb6025836113ff565b9150611ad682611a6f565b604082019050919050565b60006020820190508181036000830152611afa81611abe565b9050919050565b7f53746963683a3a6d696e486f6c64696e672063616e206265206d617820302e3060008201527f3525206f6620746f74616c20737570706c790000000000000000000000000000602082015250565b6000611b5d6032836113ff565b9150611b6882611b01565b604082019050919050565b60006020820190508181036000830152611b8c81611b50565b9050919050565b7f53746963683a3a6d6178486f6c64696e67206d757374206265206174206c656160008201527f737420302e3525206f6620746f74616c20737570706c79000000000000000000602082015250565b6000611bef6037836113ff565b9150611bfa82611b93565b604082019050919050565b60006020820190508181036000830152611c1e81611be2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c816026836113ff565b9150611c8c82611c25565b604082019050919050565b60006020820190508181036000830152611cb081611c74565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d136024836113ff565b9150611d1e82611cb7565b604082019050919050565b60006020820190508181036000830152611d4281611d06565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611da56022836113ff565b9150611db082611d49565b604082019050919050565b60006020820190508181036000830152611dd481611d98565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e11601d836113ff565b9150611e1c82611ddb565b602082019050919050565b60006020820190508181036000830152611e4081611e04565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ea36025836113ff565b9150611eae82611e47565b604082019050919050565b60006020820190508181036000830152611ed281611e96565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f356023836113ff565b9150611f4082611ed9565b604082019050919050565b60006020820190508181036000830152611f6481611f28565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611fc76026836113ff565b9150611fd282611f6b565b604082019050919050565b60006020820190508181036000830152611ff681611fba565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120336020836113ff565b915061203e82611ffd565b602082019050919050565b6000602082019050818103600083015261206281612026565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600061209f600b836113ff565b91506120aa82612069565b602082019050919050565b600060208201905081810360008301526120ce81612092565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600061210b6016836113ff565b9150612116826120d5565b602082019050919050565b6000602082019050818103600083015261213a816120fe565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b60006121776006836113ff565b915061218282612141565b602082019050919050565b600060208201905081810360008301526121a68161216a565b905091905056fea26469706673582212203c25def87fd84cf5eebcf64da492a4588024f207f6f2f8df4a9e40c7ef405e6764736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063715018a6116100c357806395d89b411161007c57806395d89b411461037e578063a457c2d71461039c578063a9059cbb146103cc578063d948e028146103fc578063dd62ed3e14610418578063f2fde38b146104485761014d565b8063715018a6146102f4578063839f0c4c146102fe578063860a32ec1461031a5780638693aba51461033857806389f9a1d3146103425780638da5cb5b146103605761014d565b806323b872dd1161011557806323b872dd1461020c578063313ce5671461023c578063395093511461025a578063404e51291461028a57806349bd5a5e146102a657806370a08231146102c45761014d565b806306fdde0314610152578063095ea7b31461017057806316c02129146101a057806318160ddd146101d05780631ab99e12146101ee575b600080fd5b61015a610464565b6040516101679190611484565b60405180910390f35b61018a6004803603810190610185919061153f565b6104f6565b604051610197919061159a565b60405180910390f35b6101ba60048036038101906101b591906115b5565b610519565b6040516101c7919061159a565b60405180910390f35b6101d8610539565b6040516101e591906115f1565b60405180910390f35b6101f6610543565b60405161020391906115f1565b60405180910390f35b6102266004803603810190610221919061160c565b610549565b604051610233919061159a565b60405180910390f35b610244610578565b604051610251919061167b565b60405180910390f35b610274600480360381019061026f919061153f565b610581565b604051610281919061159a565b60405180910390f35b6102a4600480360381019061029f91906116c2565b6105b8565b005b6102ae61061b565b6040516102bb9190611711565b60405180910390f35b6102de60048036038101906102d991906115b5565b610641565b6040516102eb91906115f1565b60405180910390f35b6102fc61068a565b005b6103186004803603810190610313919061172c565b61069e565b005b610322610705565b60405161032f919061159a565b60405180910390f35b610340610718565b005b61034a610771565b60405161035791906115f1565b60405180910390f35b610368610777565b6040516103759190611711565b60405180910390f35b6103866107a0565b6040516103939190611484565b60405180910390f35b6103b660048036038101906103b1919061153f565b610832565b6040516103c3919061159a565b60405180910390f35b6103e660048036038101906103e1919061153f565b6108a9565b6040516103f3919061159a565b60405180910390f35b6104166004803603810190610411919061176c565b6108cc565b005b610432600480360381019061042d91906117ac565b6109ef565b60405161043f91906115f1565b60405180910390f35b610462600480360381019061045d91906115b5565b610a76565b005b6060600480546104739061181b565b80601f016020809104026020016040519081016040528092919081815260200182805461049f9061181b565b80156104ec5780601f106104c1576101008083540402835291602001916104ec565b820191906000526020600020905b8154815290600101906020018083116104cf57829003601f168201915b5050505050905090565b600080610501610af9565b905061050e818585610b01565b600191505092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60095481565b600080610554610af9565b9050610561858285610cca565b61056c858585610d56565b60019150509392505050565b60006012905090565b60008061058c610af9565b90506105ad81858561059e85896109ef565b6105a8919061187b565b610b01565b600191505092915050565b6105c0610fcf565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610692610fcf565b61069c600061104d565b565b6106a6610fcf565b81600760006101000a81548160ff02191690831515021790555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b600760009054906101000a900460ff1681565b610720610fcf565b6000600760006101000a81548160ff021916908315150217905550610743610578565b600a61074f91906119e2565b66016bcc41e900006107619190611a2d565b6008819055506000600981905550565b60085481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107af9061181b565b80601f01602080910402602001604051908101604052809291908181526020018280546107db9061181b565b80156108285780601f106107fd57610100808354040283529160200191610828565b820191906000526020600020905b81548152906001019060200180831161080b57829003601f168201915b5050505050905090565b60008061083d610af9565b9050600061084b82866109ef565b905083811015610890576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088790611ae1565b60405180910390fd5b61089d8286868403610b01565b60019250505092915050565b6000806108b4610af9565b90506108c1818585610d56565b600191505092915050565b6108d4610fcf565b6108dc610578565b600a6108e891906119e2565b64174876e8006108f89190611a2d565b81111561093a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093190611b73565b60405180910390fd5b610942610578565b600a61094e91906119e2565b6501d1a94a200061095f9190611a2d565b8210156109a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099890611c05565b60405180910390fd5b6109a9610578565b600a6109b591906119e2565b826109c09190611a2d565b6008819055506109ce610578565b600a6109da91906119e2565b816109e59190611a2d565b6009819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a7e610fcf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae490611c97565b60405180910390fd5b610af68161104d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790611d29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd690611dbb565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cbd91906115f1565b60405180910390a3505050565b6000610cd684846109ef565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d505781811015610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990611e27565b60405180910390fd5b610d4f8484848403610b01565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc90611eb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90611f4b565b60405180910390fd5b610e3f838383611111565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebd90611fdd565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fb691906115f1565b60405180910390a3610fc98484846113ef565b50505050565b610fd7610af9565b73ffffffffffffffffffffffffffffffffffffffff16610ff5610777565b73ffffffffffffffffffffffffffffffffffffffff161461104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290612049565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156111b55750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb906120b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361130157611252610777565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806112bd575061128e610777565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390612121565b60405180910390fd5b6113ea565b600760009054906101000a900460ff16801561136a5750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156113e9576008548161137c84610641565b611386919061187b565b111580156113a957506009548161139c84610641565b6113a6919061187b565b10155b6113e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113df9061218d565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561142e578082015181840152602081019050611413565b60008484015250505050565b6000601f19601f8301169050919050565b6000611456826113f4565b61146081856113ff565b9350611470818560208601611410565b6114798161143a565b840191505092915050565b6000602082019050818103600083015261149e818461144b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114d6826114ab565b9050919050565b6114e6816114cb565b81146114f157600080fd5b50565b600081359050611503816114dd565b92915050565b6000819050919050565b61151c81611509565b811461152757600080fd5b50565b60008135905061153981611513565b92915050565b60008060408385031215611556576115556114a6565b5b6000611564858286016114f4565b92505060206115758582860161152a565b9150509250929050565b60008115159050919050565b6115948161157f565b82525050565b60006020820190506115af600083018461158b565b92915050565b6000602082840312156115cb576115ca6114a6565b5b60006115d9848285016114f4565b91505092915050565b6115eb81611509565b82525050565b600060208201905061160660008301846115e2565b92915050565b600080600060608486031215611625576116246114a6565b5b6000611633868287016114f4565b9350506020611644868287016114f4565b92505060406116558682870161152a565b9150509250925092565b600060ff82169050919050565b6116758161165f565b82525050565b6000602082019050611690600083018461166c565b92915050565b61169f8161157f565b81146116aa57600080fd5b50565b6000813590506116bc81611696565b92915050565b600080604083850312156116d9576116d86114a6565b5b60006116e7858286016114f4565b92505060206116f8858286016116ad565b9150509250929050565b61170b816114cb565b82525050565b60006020820190506117266000830184611702565b92915050565b60008060408385031215611743576117426114a6565b5b6000611751858286016116ad565b9250506020611762858286016114f4565b9150509250929050565b60008060408385031215611783576117826114a6565b5b60006117918582860161152a565b92505060206117a28582860161152a565b9150509250929050565b600080604083850312156117c3576117c26114a6565b5b60006117d1858286016114f4565b92505060206117e2858286016114f4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061183357607f821691505b602082108103611846576118456117ec565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061188682611509565b915061189183611509565b92508282019050808211156118a9576118a861184c565b5b92915050565b60008160011c9050919050565b6000808291508390505b6001851115611906578086048111156118e2576118e161184c565b5b60018516156118f15780820291505b80810290506118ff856118af565b94506118c6565b94509492505050565b60008261191f57600190506119db565b8161192d57600090506119db565b8160018114611943576002811461194d5761197c565b60019150506119db565b60ff84111561195f5761195e61184c565b5b8360020a9150848211156119765761197561184c565b5b506119db565b5060208310610133831016604e8410600b84101617156119b15782820a9050838111156119ac576119ab61184c565b5b6119db565b6119be84848460016118bc565b925090508184048111156119d5576119d461184c565b5b81810290505b9392505050565b60006119ed82611509565b91506119f88361165f565b9250611a257fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461190f565b905092915050565b6000611a3882611509565b9150611a4383611509565b9250828202611a5181611509565b91508282048414831517611a6857611a6761184c565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611acb6025836113ff565b9150611ad682611a6f565b604082019050919050565b60006020820190508181036000830152611afa81611abe565b9050919050565b7f53746963683a3a6d696e486f6c64696e672063616e206265206d617820302e3060008201527f3525206f6620746f74616c20737570706c790000000000000000000000000000602082015250565b6000611b5d6032836113ff565b9150611b6882611b01565b604082019050919050565b60006020820190508181036000830152611b8c81611b50565b9050919050565b7f53746963683a3a6d6178486f6c64696e67206d757374206265206174206c656160008201527f737420302e3525206f6620746f74616c20737570706c79000000000000000000602082015250565b6000611bef6037836113ff565b9150611bfa82611b93565b604082019050919050565b60006020820190508181036000830152611c1e81611be2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c816026836113ff565b9150611c8c82611c25565b604082019050919050565b60006020820190508181036000830152611cb081611c74565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611d136024836113ff565b9150611d1e82611cb7565b604082019050919050565b60006020820190508181036000830152611d4281611d06565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611da56022836113ff565b9150611db082611d49565b604082019050919050565b60006020820190508181036000830152611dd481611d98565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611e11601d836113ff565b9150611e1c82611ddb565b602082019050919050565b60006020820190508181036000830152611e4081611e04565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ea36025836113ff565b9150611eae82611e47565b604082019050919050565b60006020820190508181036000830152611ed281611e96565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f356023836113ff565b9150611f4082611ed9565b604082019050919050565b60006020820190508181036000830152611f6481611f28565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611fc76026836113ff565b9150611fd282611f6b565b604082019050919050565b60006020820190508181036000830152611ff681611fba565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006120336020836113ff565b915061203e82611ffd565b602082019050919050565b6000602082019050818103600083015261206281612026565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600061209f600b836113ff565b91506120aa82612069565b602082019050919050565b600060208201905081810360008301526120ce81612092565b9050919050565b7f74726164696e67206973206e6f74207374617274656400000000000000000000600082015250565b600061210b6016836113ff565b9150612116826120d5565b602082019050919050565b6000602082019050818103600083015261213a816120fe565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b60006121776006836113ff565b915061218282612141565b602082019050919050565b600060208201905081810360008301526121a68161216a565b905091905056fea26469706673582212203c25def87fd84cf5eebcf64da492a4588024f207f6f2f8df4a9e40c7ef405e6764736f6c63430008120033
Deployed Bytecode Sourcemap
20400:2091:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9347:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11707:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20445:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10476:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20622:68;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12488:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10318:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13158:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20917:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20720:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10647:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2802:103;;;:::i;:::-;;21060:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20494:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21737:176;;;:::i;:::-;;20520:70;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2161:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9566:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13899:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10980:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21229:500;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11236:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3060:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9347:100;9401:13;9434:5;9427:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9347:100;:::o;11707:201::-;11790:4;11807:13;11823:12;:10;:12::i;:::-;11807:28;;11846:32;11855:5;11862:7;11871:6;11846:8;:32::i;:::-;11896:4;11889:11;;;11707:201;;;;:::o;20445:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10476:108::-;10537:7;10564:12;;10557:19;;10476:108;:::o;20622:68::-;;;;:::o;12488:261::-;12585:4;12602:15;12620:12;:10;:12::i;:::-;12602:30;;12643:38;12659:4;12665:7;12674:6;12643:15;:38::i;:::-;12692:27;12702:4;12708:2;12712:6;12692:9;:27::i;:::-;12737:4;12730:11;;;12488:261;;;;;:::o;10318:93::-;10376:5;10401:2;10394:9;;10318:93;:::o;13158:238::-;13246:4;13263:13;13279:12;:10;:12::i;:::-;13263:28;;13302:64;13311:5;13318:7;13355:10;13327:25;13337:5;13344:7;13327:9;:25::i;:::-;:38;;;;:::i;:::-;13302:8;:64::i;:::-;13384:4;13377:11;;;13158:238;;;;:::o;20917:135::-;2047:13;:11;:13::i;:::-;21029:15:::1;21006:10;:20;21017:8;21006:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;20917:135:::0;;:::o;20720:28::-;;;;;;;;;;;;;:::o;10647:127::-;10721:7;10748:9;:18;10758:7;10748:18;;;;;;;;;;;;;;;;10741:25;;10647:127;;;:::o;2802:103::-;2047:13;:11;:13::i;:::-;2867:30:::1;2894:1;2867:18;:30::i;:::-;2802:103::o:0;21060:161::-;2047:13;:11;:13::i;:::-;21164:8:::1;21154:7;;:18;;;;;;;;;;;;;;;;;;21199:14;21183:13;;:30;;;;;;;;;;;;;;;;;;21060:161:::0;;:::o;20494:19::-;;;;;;;;;;;;;:::o;21737:176::-;2047:13;:11;:13::i;:::-;21805:5:::1;21795:7;;:15;;;;;;;;;;;;;;;;;;21864:10;:8;:10::i;:::-;21858:2;:16;;;;:::i;:::-;21840:15;:34;;;;:::i;:::-;21821:16;:53;;;;21904:1;21885:16;:20;;;;21737:176::o:0;20520:70::-;;;;:::o;2161:87::-;2207:7;2234:6;;;;;;;;;;;2227:13;;2161:87;:::o;9566:104::-;9622:13;9655:7;9648:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9566:104;:::o;13899:436::-;13992:4;14009:13;14025:12;:10;:12::i;:::-;14009:28;;14048:24;14075:25;14085:5;14092:7;14075:9;:25::i;:::-;14048:52;;14139:15;14119:16;:35;;14111:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14232:60;14241:5;14248:7;14276:15;14257:16;:34;14232:8;:60::i;:::-;14323:4;14316:11;;;;13899:436;;;;:::o;10980:193::-;11059:4;11076:13;11092:12;:10;:12::i;:::-;11076:28;;11115;11125:5;11132:2;11136:6;11115:9;:28::i;:::-;11161:4;11154:11;;;10980:193;;;;:::o;21229:500::-;2047:13;:11;:13::i;:::-;21388:10:::1;:8;:10::i;:::-;21382:2;:16;;;;:::i;:::-;21364:15;:34;;;;:::i;:::-;21343:17;:55;;21335:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;21519:10;:8;:10::i;:::-;21513:2;:16;;;;:::i;:::-;21493:17;:36;;;;:::i;:::-;21472:17;:57;;21464:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;21645:10;:8;:10::i;:::-;21639:2;:16;;;;:::i;:::-;21619:17;:36;;;;:::i;:::-;21600:16;:55;;;;21711:10;:8;:10::i;:::-;21705:2;:16;;;;:::i;:::-;21685:17;:36;;;;:::i;:::-;21666:16;:55;;;;21229:500:::0;;:::o;11236:151::-;11325:7;11352:11;:18;11364:5;11352:18;;;;;;;;;;;;;;;:27;11371:7;11352:27;;;;;;;;;;;;;;;;11345:34;;11236:151;;;;:::o;3060:201::-;2047:13;:11;:13::i;:::-;3169:1:::1;3149:22;;:8;:22;;::::0;3141:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3225:28;3244:8;3225:18;:28::i;:::-;3060:201:::0;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;17892:346::-;18011:1;17994:19;;:5;:19;;;17986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18092:1;18073:21;;:7;:21;;;18065:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18176:6;18146:11;:18;18158:5;18146:18;;;;;;;;;;;;;;;:27;18165:7;18146:27;;;;;;;;;;;;;;;:36;;;;18214:7;18198:32;;18207:5;18198:32;;;18223:6;18198:32;;;;;;:::i;:::-;;;;;;;;17892:346;;;:::o;18529:419::-;18630:24;18657:25;18667:5;18674:7;18657:9;:25::i;:::-;18630:52;;18717:17;18697:16;:37;18693:248;;18779:6;18759:16;:26;;18751:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18863:51;18872:5;18879:7;18907:6;18888:16;:25;18863:8;:51::i;:::-;18693:248;18619:329;18529:419;;;:::o;14805:806::-;14918:1;14902:18;;:4;:18;;;14894:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14995:1;14981:16;;:2;:16;;;14973:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15050:38;15071:4;15077:2;15081:6;15050:20;:38::i;:::-;15101:19;15123:9;:15;15133:4;15123:15;;;;;;;;;;;;;;;;15101:37;;15172:6;15157:11;:21;;15149:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15289:6;15275:11;:20;15257:9;:15;15267:4;15257:15;;;;;;;;;;;;;;;:38;;;;15492:6;15475:9;:13;15485:2;15475:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15542:2;15527:26;;15536:4;15527:26;;;15546:6;15527:26;;;;;;:::i;:::-;;;;;;;;15566:37;15586:4;15592:2;15596:6;15566:19;:37::i;:::-;14883:728;14805:806;;;:::o;2326:132::-;2401:12;:10;:12::i;:::-;2390:23;;:7;:5;:7::i;:::-;:23;;;2382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2326:132::o;3421:191::-;3495:16;3514:6;;;;;;;;;;;3495:25;;3540:8;3531:6;;:17;;;;;;;;;;;;;;;;;;3595:8;3564:40;;3585:8;3564:40;;;;;;;;;;;;3484:128;3421:191;:::o;21921:567::-;22073:10;:14;22084:2;22073:14;;;;;;;;;;;;;;;;;;;;;;;;;22072:15;:36;;;;;22092:10;:16;22103:4;22092:16;;;;;;;;;;;;;;;;;;;;;;;;;22091:17;22072:36;22064:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;22166:1;22141:27;;:13;;;;;;;;;;;:27;;;22137:148;;22201:7;:5;:7::i;:::-;22193:15;;:4;:15;;;:32;;;;22218:7;:5;:7::i;:::-;22212:13;;:2;:13;;;22193:32;22185:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;22267:7;;22137:148;22301:7;;;;;;;;;;;:32;;;;;22320:13;;;;;;;;;;;22312:21;;:4;:21;;;22301:32;22297:184;;;22390:16;;22380:6;22358:19;22374:2;22358:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;22442:16;;22432:6;22410:19;22426:2;22410:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;22358:100;22350:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;22297:184;21921:567;;;;:::o;20243:90::-;;;;:::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;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:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:116::-;5258:21;5273:5;5258:21;:::i;:::-;5251:5;5248:32;5238:60;;5294:1;5291;5284:12;5238:60;5188:116;:::o;5310:133::-;5353:5;5391:6;5378:20;5369:29;;5407:30;5431:5;5407:30;:::i;:::-;5310:133;;;;:::o;5449:468::-;5514:6;5522;5571:2;5559:9;5550:7;5546:23;5542:32;5539:119;;;5577:79;;:::i;:::-;5539:119;5697:1;5722:53;5767:7;5758:6;5747:9;5743:22;5722:53;:::i;:::-;5712:63;;5668:117;5824:2;5850:50;5892:7;5883:6;5872:9;5868:22;5850:50;:::i;:::-;5840:60;;5795:115;5449:468;;;;;:::o;5923:118::-;6010:24;6028:5;6010:24;:::i;:::-;6005:3;5998:37;5923:118;;:::o;6047:222::-;6140:4;6178:2;6167:9;6163:18;6155:26;;6191:71;6259:1;6248:9;6244:17;6235:6;6191:71;:::i;:::-;6047:222;;;;:::o;6275:468::-;6340:6;6348;6397:2;6385:9;6376:7;6372:23;6368:32;6365:119;;;6403:79;;:::i;:::-;6365:119;6523:1;6548:50;6590:7;6581:6;6570:9;6566:22;6548:50;:::i;:::-;6538:60;;6494:114;6647:2;6673:53;6718:7;6709:6;6698:9;6694:22;6673:53;:::i;:::-;6663:63;;6618:118;6275:468;;;;;:::o;6749:474::-;6817:6;6825;6874:2;6862:9;6853:7;6849:23;6845:32;6842:119;;;6880:79;;:::i;:::-;6842:119;7000:1;7025:53;7070:7;7061:6;7050:9;7046:22;7025:53;:::i;:::-;7015:63;;6971:117;7127:2;7153:53;7198:7;7189:6;7178:9;7174:22;7153:53;:::i;:::-;7143:63;;7098:118;6749:474;;;;;:::o;7229:::-;7297:6;7305;7354:2;7342:9;7333:7;7329:23;7325:32;7322:119;;;7360:79;;:::i;:::-;7322:119;7480:1;7505:53;7550:7;7541:6;7530:9;7526:22;7505:53;:::i;:::-;7495:63;;7451:117;7607:2;7633:53;7678:7;7669:6;7658:9;7654:22;7633:53;:::i;:::-;7623:63;;7578:118;7229:474;;;;;:::o;7709:180::-;7757:77;7754:1;7747:88;7854:4;7851:1;7844:15;7878:4;7875:1;7868:15;7895:320;7939:6;7976:1;7970:4;7966:12;7956:22;;8023:1;8017:4;8013:12;8044:18;8034:81;;8100:4;8092:6;8088:17;8078:27;;8034:81;8162:2;8154:6;8151:14;8131:18;8128:38;8125:84;;8181:18;;:::i;:::-;8125:84;7946:269;7895:320;;;:::o;8221:180::-;8269:77;8266:1;8259:88;8366:4;8363:1;8356:15;8390:4;8387:1;8380:15;8407:191;8447:3;8466:20;8484:1;8466:20;:::i;:::-;8461:25;;8500:20;8518:1;8500:20;:::i;:::-;8495:25;;8543:1;8540;8536:9;8529:16;;8564:3;8561:1;8558:10;8555:36;;;8571:18;;:::i;:::-;8555:36;8407:191;;;;:::o;8604:102::-;8646:8;8693:5;8690:1;8686:13;8665:34;;8604:102;;;:::o;8712:848::-;8773:5;8780:4;8804:6;8795:15;;8828:5;8819:14;;8842:712;8863:1;8853:8;8850:15;8842:712;;;8958:4;8953:3;8949:14;8943:4;8940:24;8937:50;;;8967:18;;:::i;:::-;8937:50;9017:1;9007:8;9003:16;9000:451;;;9432:4;9425:5;9421:16;9412:25;;9000:451;9482:4;9476;9472:15;9464:23;;9512:32;9535:8;9512:32;:::i;:::-;9500:44;;8842:712;;;8712:848;;;;;;;:::o;9566:1073::-;9620:5;9811:8;9801:40;;9832:1;9823:10;;9834:5;;9801:40;9860:4;9850:36;;9877:1;9868:10;;9879:5;;9850:36;9946:4;9994:1;9989:27;;;;10030:1;10025:191;;;;9939:277;;9989:27;10007:1;9998:10;;10009:5;;;10025:191;10070:3;10060:8;10057:17;10054:43;;;10077:18;;:::i;:::-;10054:43;10126:8;10123:1;10119:16;10110:25;;10161:3;10154:5;10151:14;10148:40;;;10168:18;;:::i;:::-;10148:40;10201:5;;;9939:277;;10325:2;10315:8;10312:16;10306:3;10300:4;10297:13;10293:36;10275:2;10265:8;10262:16;10257:2;10251:4;10248:12;10244:35;10228:111;10225:246;;;10381:8;10375:4;10371:19;10362:28;;10416:3;10409:5;10406:14;10403:40;;;10423:18;;:::i;:::-;10403:40;10456:5;;10225:246;10496:42;10534:3;10524:8;10518:4;10515:1;10496:42;:::i;:::-;10481:57;;;;10570:4;10565:3;10561:14;10554:5;10551:25;10548:51;;;10579:18;;:::i;:::-;10548:51;10628:4;10621:5;10617:16;10608:25;;9566:1073;;;;;;:::o;10645:281::-;10703:5;10727:23;10745:4;10727:23;:::i;:::-;10719:31;;10771:25;10787:8;10771:25;:::i;:::-;10759:37;;10815:104;10852:66;10842:8;10836:4;10815:104;:::i;:::-;10806:113;;10645:281;;;;:::o;10932:410::-;10972:7;10995:20;11013:1;10995:20;:::i;:::-;10990:25;;11029:20;11047:1;11029:20;:::i;:::-;11024:25;;11084:1;11081;11077:9;11106:30;11124:11;11106:30;:::i;:::-;11095:41;;11285:1;11276:7;11272:15;11269:1;11266:22;11246:1;11239:9;11219:83;11196:139;;11315:18;;:::i;:::-;11196:139;10980:362;10932:410;;;;:::o;11348:224::-;11488:34;11484:1;11476:6;11472:14;11465:58;11557:7;11552:2;11544:6;11540:15;11533:32;11348:224;:::o;11578:366::-;11720:3;11741:67;11805:2;11800:3;11741:67;:::i;:::-;11734:74;;11817:93;11906:3;11817:93;:::i;:::-;11935:2;11930:3;11926:12;11919:19;;11578:366;;;:::o;11950:419::-;12116:4;12154:2;12143:9;12139:18;12131:26;;12203:9;12197:4;12193:20;12189:1;12178:9;12174:17;12167:47;12231:131;12357:4;12231:131;:::i;:::-;12223:139;;11950:419;;;:::o;12375:237::-;12515:34;12511:1;12503:6;12499:14;12492:58;12584:20;12579:2;12571:6;12567:15;12560:45;12375:237;:::o;12618:366::-;12760:3;12781:67;12845:2;12840:3;12781:67;:::i;:::-;12774:74;;12857:93;12946:3;12857:93;:::i;:::-;12975:2;12970:3;12966:12;12959:19;;12618:366;;;:::o;12990:419::-;13156:4;13194:2;13183:9;13179:18;13171:26;;13243:9;13237:4;13233:20;13229:1;13218:9;13214:17;13207:47;13271:131;13397:4;13271:131;:::i;:::-;13263:139;;12990:419;;;:::o;13415:242::-;13555:34;13551:1;13543:6;13539:14;13532:58;13624:25;13619:2;13611:6;13607:15;13600:50;13415:242;:::o;13663:366::-;13805:3;13826:67;13890:2;13885:3;13826:67;:::i;:::-;13819:74;;13902:93;13991:3;13902:93;:::i;:::-;14020:2;14015:3;14011:12;14004:19;;13663:366;;;:::o;14035:419::-;14201:4;14239:2;14228:9;14224:18;14216:26;;14288:9;14282:4;14278:20;14274:1;14263:9;14259:17;14252:47;14316:131;14442:4;14316:131;:::i;:::-;14308:139;;14035:419;;;:::o;14460:225::-;14600:34;14596:1;14588:6;14584:14;14577:58;14669:8;14664:2;14656:6;14652:15;14645:33;14460:225;:::o;14691:366::-;14833:3;14854:67;14918:2;14913:3;14854:67;:::i;:::-;14847:74;;14930:93;15019:3;14930:93;:::i;:::-;15048:2;15043:3;15039:12;15032:19;;14691:366;;;:::o;15063:419::-;15229:4;15267:2;15256:9;15252:18;15244:26;;15316:9;15310:4;15306:20;15302:1;15291:9;15287:17;15280:47;15344:131;15470:4;15344:131;:::i;:::-;15336:139;;15063:419;;;:::o;15488:223::-;15628:34;15624:1;15616:6;15612:14;15605:58;15697:6;15692:2;15684:6;15680:15;15673:31;15488:223;:::o;15717:366::-;15859:3;15880:67;15944:2;15939:3;15880:67;:::i;:::-;15873:74;;15956:93;16045:3;15956:93;:::i;:::-;16074:2;16069:3;16065:12;16058:19;;15717:366;;;:::o;16089:419::-;16255:4;16293:2;16282:9;16278:18;16270:26;;16342:9;16336:4;16332:20;16328:1;16317:9;16313:17;16306:47;16370:131;16496:4;16370:131;:::i;:::-;16362:139;;16089:419;;;:::o;16514:221::-;16654:34;16650:1;16642:6;16638:14;16631:58;16723:4;16718:2;16710:6;16706:15;16699:29;16514:221;:::o;16741:366::-;16883:3;16904:67;16968:2;16963:3;16904:67;:::i;:::-;16897:74;;16980:93;17069:3;16980:93;:::i;:::-;17098:2;17093:3;17089:12;17082:19;;16741:366;;;:::o;17113:419::-;17279:4;17317:2;17306:9;17302:18;17294:26;;17366:9;17360:4;17356:20;17352:1;17341:9;17337:17;17330:47;17394:131;17520:4;17394:131;:::i;:::-;17386:139;;17113:419;;;:::o;17538:179::-;17678:31;17674:1;17666:6;17662:14;17655:55;17538:179;:::o;17723:366::-;17865:3;17886:67;17950:2;17945:3;17886:67;:::i;:::-;17879:74;;17962:93;18051:3;17962:93;:::i;:::-;18080:2;18075:3;18071:12;18064:19;;17723:366;;;:::o;18095:419::-;18261:4;18299:2;18288:9;18284:18;18276:26;;18348:9;18342:4;18338:20;18334:1;18323:9;18319:17;18312:47;18376:131;18502:4;18376:131;:::i;:::-;18368:139;;18095:419;;;:::o;18520:224::-;18660:34;18656:1;18648:6;18644:14;18637:58;18729:7;18724:2;18716:6;18712:15;18705:32;18520:224;:::o;18750:366::-;18892:3;18913:67;18977:2;18972:3;18913:67;:::i;:::-;18906:74;;18989:93;19078:3;18989:93;:::i;:::-;19107:2;19102:3;19098:12;19091:19;;18750:366;;;:::o;19122:419::-;19288:4;19326:2;19315:9;19311:18;19303:26;;19375:9;19369:4;19365:20;19361:1;19350:9;19346:17;19339:47;19403:131;19529:4;19403:131;:::i;:::-;19395:139;;19122:419;;;:::o;19547:222::-;19687:34;19683:1;19675:6;19671:14;19664:58;19756:5;19751:2;19743:6;19739:15;19732:30;19547:222;:::o;19775:366::-;19917:3;19938:67;20002:2;19997:3;19938:67;:::i;:::-;19931:74;;20014:93;20103:3;20014:93;:::i;:::-;20132:2;20127:3;20123:12;20116:19;;19775:366;;;:::o;20147:419::-;20313:4;20351:2;20340:9;20336:18;20328:26;;20400:9;20394:4;20390:20;20386:1;20375:9;20371:17;20364:47;20428:131;20554:4;20428:131;:::i;:::-;20420:139;;20147:419;;;:::o;20572:225::-;20712:34;20708:1;20700:6;20696:14;20689:58;20781:8;20776:2;20768:6;20764:15;20757:33;20572:225;:::o;20803:366::-;20945:3;20966:67;21030:2;21025:3;20966:67;:::i;:::-;20959:74;;21042:93;21131:3;21042:93;:::i;:::-;21160:2;21155:3;21151:12;21144:19;;20803:366;;;:::o;21175:419::-;21341:4;21379:2;21368:9;21364:18;21356:26;;21428:9;21422:4;21418:20;21414:1;21403:9;21399:17;21392:47;21456:131;21582:4;21456:131;:::i;:::-;21448:139;;21175:419;;;:::o;21600:182::-;21740:34;21736:1;21728:6;21724:14;21717:58;21600:182;:::o;21788:366::-;21930:3;21951:67;22015:2;22010:3;21951:67;:::i;:::-;21944:74;;22027:93;22116:3;22027:93;:::i;:::-;22145:2;22140:3;22136:12;22129:19;;21788:366;;;:::o;22160:419::-;22326:4;22364:2;22353:9;22349:18;22341:26;;22413:9;22407:4;22403:20;22399:1;22388:9;22384:17;22377:47;22441:131;22567:4;22441:131;:::i;:::-;22433:139;;22160:419;;;:::o;22585:161::-;22725:13;22721:1;22713:6;22709:14;22702:37;22585:161;:::o;22752:366::-;22894:3;22915:67;22979:2;22974:3;22915:67;:::i;:::-;22908:74;;22991:93;23080:3;22991:93;:::i;:::-;23109:2;23104:3;23100:12;23093:19;;22752:366;;;:::o;23124:419::-;23290:4;23328:2;23317:9;23313:18;23305:26;;23377:9;23371:4;23367:20;23363:1;23352:9;23348:17;23341:47;23405:131;23531:4;23405:131;:::i;:::-;23397:139;;23124:419;;;:::o;23549:172::-;23689:24;23685:1;23677:6;23673:14;23666:48;23549:172;:::o;23727:366::-;23869:3;23890:67;23954:2;23949:3;23890:67;:::i;:::-;23883:74;;23966:93;24055:3;23966:93;:::i;:::-;24084:2;24079:3;24075:12;24068:19;;23727:366;;;:::o;24099:419::-;24265:4;24303:2;24292:9;24288:18;24280:26;;24352:9;24346:4;24342:20;24338:1;24327:9;24323:17;24316:47;24380:131;24506:4;24380:131;:::i;:::-;24372:139;;24099:419;;;:::o;24524:156::-;24664:8;24660:1;24652:6;24648:14;24641:32;24524:156;:::o;24686:365::-;24828:3;24849:66;24913:1;24908:3;24849:66;:::i;:::-;24842:73;;24924:93;25013:3;24924:93;:::i;:::-;25042:2;25037:3;25033:12;25026:19;;24686:365;;;:::o;25057:419::-;25223:4;25261:2;25250:9;25246:18;25238:26;;25310:9;25304:4;25300:20;25296:1;25285:9;25281:17;25274:47;25338:131;25464:4;25338:131;:::i;:::-;25330:139;;25057:419;;;:::o
Swarm Source
ipfs://3c25def87fd84cf5eebcf64da492a4588024f207f6f2f8df4a9e40c7ef405e67
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.