Token Uncle
Overview ERC20
Price
$0.00 @ 0.000000 AVAX
Fully Diluted Market Cap
Total Supply:
1,000,000 UNCLE
Holders:
250 addresses
Transfers:
-
Contract:
Decimals:
18
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
UncleToken
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at snowtrace.io on 2021-12-01 */ // File: @openzeppelin/contracts/utils/Context.sol // SPDX-License-Identifier: MIT 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/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 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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, 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 defaut 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(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 Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } } // File: contracts/UncleToken.sol // Uncle token pragma solidity ^0.8.0; contract UncleToken is ERC20 { address public admin; uint256 private immutable _cap; constructor() ERC20('Uncle', 'UNCLE') { _mint(msg.sender, 1000000 * 10 ** 18); admin = msg.sender; _cap = 1000000 * 10 ** 18; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } function mint(address account, uint amount) external { require(msg.sender == admin, 'sorry, you got uncled !'); require(ERC20.totalSupply() + amount <= cap(), 'UNCLE is capped: only 1M can ever exist, you got uncled !'); _mint(account, amount); } function burn(uint amount) external { _burn(msg.sender, amount); } function burnFrom(address account, uint amount) external { require(msg.sender == admin, 'sorry, you got uncled !'); _burn(account, amount); } }
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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506040518060400160405280600581526020017f556e636c650000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f554e434c4500000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000291565b508060049080519060200190620000af92919062000291565b505050620000ce3369d3c21bcecceda10000006200012760201b60201c565b33600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555069d3c21bcecceda100000060808181525050620004df565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200019a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001919062000394565b60405180910390fd5b620001ae600083836200028c60201b60201c565b8060026000828254620001c29190620003e4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002199190620003e4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002809190620003b6565b60405180910390a35050565b505050565b8280546200029f906200044b565b90600052602060002090601f016020900481019282620002c357600085556200030f565b82601f10620002de57805160ff19168380011785556200030f565b828001600101855582156200030f579182015b828111156200030e578251825591602001919060010190620002f1565b5b5090506200031e919062000322565b5090565b5b808211156200033d57600081600090555060010162000323565b5090565b600062000350601f83620003d3565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200038e8162000441565b82525050565b60006020820190508181036000830152620003af8162000341565b9050919050565b6000602082019050620003cd600083018462000383565b92915050565b600082825260208201905092915050565b6000620003f18262000441565b9150620003fe8362000441565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000436576200043562000481565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200046457607f821691505b602082108114156200047b576200047a620004b0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b608051611c27620004fb60003960006105250152611c276000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806342966c6811610097578063a457c2d711610066578063a457c2d7146102af578063a9059cbb146102df578063dd62ed3e1461030f578063f851a4401461033f57610100565b806342966c681461022957806370a082311461024557806379cc67901461027557806395d89b411461029157610100565b8063313ce567116100d3578063313ce567146101a1578063355274ea146101bf57806339509351146101dd57806340c10f191461020d57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d61035d565b60405161011a919061181c565b60405180910390f35b61013d60048036038101906101389190611290565b6103ef565b60405161014a9190611801565b60405180910390f35b61015b61040d565b60405161016891906119be565b60405180910390f35b61018b60048036038101906101869190611241565b610417565b6040516101989190611801565b60405180910390f35b6101a9610518565b6040516101b691906119d9565b60405180910390f35b6101c7610521565b6040516101d491906119be565b60405180910390f35b6101f760048036038101906101f29190611290565b610549565b6040516102049190611801565b60405180910390f35b61022760048036038101906102229190611290565b6105f5565b005b610243600480360381019061023e91906112cc565b6106ef565b005b61025f600480360381019061025a91906111dc565b6106fc565b60405161026c91906119be565b60405180910390f35b61028f600480360381019061028a9190611290565b610744565b005b6102996107e2565b6040516102a6919061181c565b60405180910390f35b6102c960048036038101906102c49190611290565b610874565b6040516102d69190611801565b60405180910390f35b6102f960048036038101906102f49190611290565b610968565b6040516103069190611801565b60405180910390f35b61032960048036038101906103249190611205565b610986565b60405161033691906119be565b60405180910390f35b610347610a0d565b60405161035491906117e6565b60405180910390f35b60606003805461036c90611b22565b80601f016020809104026020016040519081016040528092919081815260200182805461039890611b22565b80156103e55780601f106103ba576101008083540402835291602001916103e5565b820191906000526020600020905b8154815290600101906020018083116103c857829003601f168201915b5050505050905090565b60006104036103fc610a33565b8484610a3b565b6001905092915050565b6000600254905090565b6000610424848484610c06565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061046f610a33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e6906118de565b60405180910390fd5b61050c856104fb610a33565b85846105079190611a66565b610a3b565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60006105eb610556610a33565b848460016000610564610a33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105e69190611a10565b610a3b565b6001905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067c906118be565b60405180910390fd5b61068d610521565b8161069661040d565b6106a09190611a10565b11156106e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d89061191e565b60405180910390fd5b6106eb8282610e85565b5050565b6106f93382610fd9565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cb906118be565b60405180910390fd5b6107de8282610fd9565b5050565b6060600480546107f190611b22565b80601f016020809104026020016040519081016040528092919081815260200182805461081d90611b22565b801561086a5780601f1061083f5761010080835404028352916020019161086a565b820191906000526020600020905b81548152906001019060200180831161084d57829003601f168201915b5050505050905090565b60008060016000610883610a33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610940576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109379061197e565b60405180910390fd5b61095d61094b610a33565b8585846109589190611a66565b610a3b565b600191505092915050565b600061097c610975610a33565b8484610c06565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa29061195e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b129061187e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bf991906119be565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d9061193e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd9061183e565b60405180910390fd5b610cf18383836111ad565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6e9061189e565b60405180910390fd5b8181610d839190611a66565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e139190611a10565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e7791906119be565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec9061199e565b60405180910390fd5b610f01600083836111ad565b8060026000828254610f139190611a10565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f689190611a10565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fcd91906119be565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611049576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611040906118fe565b60405180910390fd5b611055826000836111ad565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d29061185e565b60405180910390fd5b81816110e79190611a66565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461113b9190611a66565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111a091906119be565b60405180910390a3505050565b505050565b6000813590506111c181611bc3565b92915050565b6000813590506111d681611bda565b92915050565b6000602082840312156111ee57600080fd5b60006111fc848285016111b2565b91505092915050565b6000806040838503121561121857600080fd5b6000611226858286016111b2565b9250506020611237858286016111b2565b9150509250929050565b60008060006060848603121561125657600080fd5b6000611264868287016111b2565b9350506020611275868287016111b2565b9250506040611286868287016111c7565b9150509250925092565b600080604083850312156112a357600080fd5b60006112b1858286016111b2565b92505060206112c2858286016111c7565b9150509250929050565b6000602082840312156112de57600080fd5b60006112ec848285016111c7565b91505092915050565b6112fe81611a9a565b82525050565b61130d81611aac565b82525050565b600061131e826119f4565b61132881856119ff565b9350611338818560208601611aef565b61134181611bb2565b840191505092915050565b60006113596023836119ff565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113bf6022836119ff565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114256022836119ff565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061148b6026836119ff565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114f16017836119ff565b91507f736f7272792c20796f7520676f7420756e636c656420210000000000000000006000830152602082019050919050565b60006115316028836119ff565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115976021836119ff565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115fd6039836119ff565b91507f554e434c45206973206361707065643a206f6e6c7920314d2063616e2065766560008301527f722065786973742c20796f7520676f7420756e636c65642021000000000000006020830152604082019050919050565b60006116636025836119ff565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116c96024836119ff565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061172f6025836119ff565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611795601f836119ff565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6117d181611ad8565b82525050565b6117e081611ae2565b82525050565b60006020820190506117fb60008301846112f5565b92915050565b60006020820190506118166000830184611304565b92915050565b600060208201905081810360008301526118368184611313565b905092915050565b600060208201905081810360008301526118578161134c565b9050919050565b60006020820190508181036000830152611877816113b2565b9050919050565b6000602082019050818103600083015261189781611418565b9050919050565b600060208201905081810360008301526118b78161147e565b9050919050565b600060208201905081810360008301526118d7816114e4565b9050919050565b600060208201905081810360008301526118f781611524565b9050919050565b600060208201905081810360008301526119178161158a565b9050919050565b60006020820190508181036000830152611937816115f0565b9050919050565b6000602082019050818103600083015261195781611656565b9050919050565b60006020820190508181036000830152611977816116bc565b9050919050565b6000602082019050818103600083015261199781611722565b9050919050565b600060208201905081810360008301526119b781611788565b9050919050565b60006020820190506119d360008301846117c8565b92915050565b60006020820190506119ee60008301846117d7565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611a1b82611ad8565b9150611a2683611ad8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a5b57611a5a611b54565b5b828201905092915050565b6000611a7182611ad8565b9150611a7c83611ad8565b925082821015611a8f57611a8e611b54565b5b828203905092915050565b6000611aa582611ab8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b0d578082015181840152602081019050611af2565b83811115611b1c576000848401525b50505050565b60006002820490506001821680611b3a57607f821691505b60208210811415611b4e57611b4d611b83565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611bcc81611a9a565b8114611bd757600080fd5b50565b611be381611ad8565b8114611bee57600080fd5b5056fea264697066735822122017c0bedb6aac6335292b98e407fc8bfbdced6d51b780afbdfc8a4cbc5b602a3064736f6c63430008000033
Deployed ByteCode Sourcemap
16607:976:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6518:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8685:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7638:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9336:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7480:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16950:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10167:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17041:278;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17327:80;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7809:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17415:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6737:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10885:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8149:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8387:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16643:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6518:100;6572:13;6605:5;6598:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6518:100;:::o;8685:169::-;8768:4;8785:39;8794:12;:10;:12::i;:::-;8808:7;8817:6;8785:8;:39::i;:::-;8842:4;8835:11;;8685:169;;;;:::o;7638:108::-;7699:7;7726:12;;7719:19;;7638:108;:::o;9336:422::-;9442:4;9459:36;9469:6;9477:9;9488:6;9459:9;:36::i;:::-;9508:24;9535:11;:19;9547:6;9535:19;;;;;;;;;;;;;;;:33;9555:12;:10;:12::i;:::-;9535:33;;;;;;;;;;;;;;;;9508:60;;9607:6;9587:16;:26;;9579:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9669:57;9678:6;9686:12;:10;:12::i;:::-;9719:6;9700:16;:25;;;;:::i;:::-;9669:8;:57::i;:::-;9746:4;9739:11;;;9336:422;;;;;:::o;7480:93::-;7538:5;7563:2;7556:9;;7480:93;:::o;16950:83::-;16994:7;17021:4;17014:11;;16950:83;:::o;10167:215::-;10255:4;10272:80;10281:12;:10;:12::i;:::-;10295:7;10341:10;10304:11;:25;10316:12;:10;:12::i;:::-;10304:25;;;;;;;;;;;;;;;:34;10330:7;10304:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10272:8;:80::i;:::-;10370:4;10363:11;;10167:215;;;;:::o;17041:278::-;17127:5;;;;;;;;;;;17113:19;;:10;:19;;;17105:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;17211:5;:3;:5::i;:::-;17201:6;17179:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;17171:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;17289:22;17295:7;17304:6;17289:5;:22::i;:::-;17041:278;;:::o;17327:80::-;17374:25;17380:10;17392:6;17374:5;:25::i;:::-;17327:80;:::o;7809:127::-;7883:7;7910:9;:18;7920:7;7910:18;;;;;;;;;;;;;;;;7903:25;;7809:127;;;:::o;17415:164::-;17505:5;;;;;;;;;;;17491:19;;:10;:19;;;17483:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;17549:22;17555:7;17564:6;17549:5;:22::i;:::-;17415:164;;:::o;6737:104::-;6793:13;6826:7;6819:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6737:104;:::o;10885:377::-;10978:4;10995:24;11022:11;:25;11034:12;:10;:12::i;:::-;11022:25;;;;;;;;;;;;;;;:34;11048:7;11022:34;;;;;;;;;;;;;;;;10995:61;;11095:15;11075:16;:35;;11067:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11163:67;11172:12;:10;:12::i;:::-;11186:7;11214:15;11195:16;:34;;;;:::i;:::-;11163:8;:67::i;:::-;11250:4;11243:11;;;10885:377;;;;:::o;8149:175::-;8235:4;8252:42;8262:12;:10;:12::i;:::-;8276:9;8287:6;8252:9;:42::i;:::-;8312:4;8305:11;;8149:175;;;;:::o;8387:151::-;8476:7;8503:11;:18;8515:5;8503:18;;;;;;;;;;;;;;;:27;8522:7;8503:27;;;;;;;;;;;;;;;;8496:34;;8387:151;;;;:::o;16643:20::-;;;;;;;;;;;;;:::o;655:98::-;708:7;735:10;728:17;;655:98;:::o;14241:346::-;14360:1;14343:19;;:5;:19;;;;14335:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14441:1;14422:21;;:7;:21;;;;14414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14525:6;14495:11;:18;14507:5;14495:18;;;;;;;;;;;;;;;:27;14514:7;14495:27;;;;;;;;;;;;;;;:36;;;;14563:7;14547:32;;14556:5;14547:32;;;14572:6;14547:32;;;;;;:::i;:::-;;;;;;;;14241:346;;;:::o;11752:604::-;11876:1;11858:20;;:6;:20;;;;11850:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11960:1;11939:23;;:9;:23;;;;11931:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12015:47;12036:6;12044:9;12055:6;12015:20;:47::i;:::-;12075:21;12099:9;:17;12109:6;12099:17;;;;;;;;;;;;;;;;12075:41;;12152:6;12135:13;:23;;12127:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12248:6;12232:13;:22;;;;:::i;:::-;12212:9;:17;12222:6;12212:17;;;;;;;;;;;;;;;:42;;;;12289:6;12265:9;:20;12275:9;12265:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12330:9;12313:35;;12322:6;12313:35;;;12341:6;12313:35;;;;;;:::i;:::-;;;;;;;;11752:604;;;;:::o;12638:338::-;12741:1;12722:21;;:7;:21;;;;12714:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12792:49;12821:1;12825:7;12834:6;12792:20;:49::i;:::-;12870:6;12854:12;;:22;;;;;;;:::i;:::-;;;;;;;;12909:6;12887:9;:18;12897:7;12887:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;12952:7;12931:37;;12948:1;12931:37;;;12961:6;12931:37;;;;;;:::i;:::-;;;;;;;;12638:338;;:::o;13309:494::-;13412:1;13393:21;;:7;:21;;;;13385:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13465:49;13486:7;13503:1;13507:6;13465:20;:49::i;:::-;13527:22;13552:9;:18;13562:7;13552:18;;;;;;;;;;;;;;;;13527:43;;13607:6;13589:14;:24;;13581:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13701:6;13684:14;:23;;;;:::i;:::-;13663:9;:18;13673:7;13663:18;;;;;;;;;;;;;;;:44;;;;13734:6;13718:12;;:22;;;;;;;:::i;:::-;;;;;;;;13784:1;13758:37;;13767:7;13758:37;;;13788:6;13758:37;;;;;;:::i;:::-;;;;;;;;13309:494;;;:::o;15190:92::-;;;;:::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:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:366::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:4;3892:2;3887:3;3883:12;3876:26;3928:2;3923:3;3919:12;3912:19;;3717:220;;;:::o;3943:370::-;;4106:67;4170:2;4165:3;4106:67;:::i;:::-;4099:74;;4203:34;4199:1;4194:3;4190:11;4183:55;4269:8;4264:2;4259:3;4255:12;4248:30;4304:2;4299:3;4295:12;4288:19;;4089:224;;;:::o;4319:321::-;;4482:67;4546:2;4541:3;4482:67;:::i;:::-;4475:74;;4579:25;4575:1;4570:3;4566:11;4559:46;4631:2;4626:3;4622:12;4615:19;;4465:175;;;:::o;4646:372::-;;4809:67;4873:2;4868:3;4809:67;:::i;:::-;4802:74;;4906:34;4902:1;4897:3;4893:11;4886:55;4972:10;4967:2;4962:3;4958:12;4951:32;5009:2;5004:3;5000:12;4993:19;;4792:226;;;:::o;5024:365::-;;5187:67;5251:2;5246:3;5187:67;:::i;:::-;5180:74;;5284:34;5280:1;5275:3;5271:11;5264:55;5350:3;5345:2;5340:3;5336:12;5329:25;5380:2;5375:3;5371:12;5364:19;;5170:219;;;:::o;5395:389::-;;5558:67;5622:2;5617:3;5558:67;:::i;:::-;5551:74;;5655:34;5651:1;5646:3;5642:11;5635:55;5721:27;5716:2;5711:3;5707:12;5700:49;5775:2;5770:3;5766:12;5759:19;;5541:243;;;:::o;5790:369::-;;5953:67;6017:2;6012:3;5953:67;:::i;:::-;5946:74;;6050:34;6046:1;6041:3;6037:11;6030:55;6116:7;6111:2;6106:3;6102:12;6095:29;6150:2;6145:3;6141:12;6134:19;;5936:223;;;:::o;6165:368::-;;6328:67;6392:2;6387:3;6328:67;:::i;:::-;6321:74;;6425:34;6421:1;6416:3;6412:11;6405:55;6491:6;6486:2;6481:3;6477:12;6470:28;6524:2;6519:3;6515:12;6508:19;;6311:222;;;:::o;6539:369::-;;6702:67;6766:2;6761:3;6702:67;:::i;:::-;6695:74;;6799:34;6795:1;6790:3;6786:11;6779:55;6865:7;6860:2;6855:3;6851:12;6844:29;6899:2;6894:3;6890:12;6883:19;;6685:223;;;:::o;6914:329::-;;7077:67;7141:2;7136:3;7077:67;:::i;:::-;7070:74;;7174:33;7170:1;7165:3;7161:11;7154:54;7234:2;7229:3;7225:12;7218:19;;7060:183;;;:::o;7249:118::-;7336:24;7354:5;7336:24;:::i;:::-;7331:3;7324:37;7314:53;;:::o;7373:112::-;7456:22;7472:5;7456:22;:::i;:::-;7451:3;7444:35;7434:51;;:::o;7491:222::-;;7622:2;7611:9;7607:18;7599:26;;7635:71;7703:1;7692:9;7688:17;7679:6;7635:71;:::i;:::-;7589:124;;;;:::o;7719:210::-;;7844:2;7833:9;7829:18;7821:26;;7857:65;7919:1;7908:9;7904:17;7895:6;7857:65;:::i;:::-;7811:118;;;;:::o;7935:313::-;;8086:2;8075:9;8071:18;8063:26;;8135:9;8129:4;8125:20;8121:1;8110:9;8106:17;8099:47;8163:78;8236:4;8227:6;8163:78;:::i;:::-;8155:86;;8053:195;;;;:::o;8254:419::-;;8458:2;8447:9;8443:18;8435:26;;8507:9;8501:4;8497:20;8493:1;8482:9;8478:17;8471:47;8535:131;8661:4;8535:131;:::i;:::-;8527:139;;8425:248;;;:::o;8679:419::-;;8883:2;8872:9;8868:18;8860:26;;8932:9;8926:4;8922:20;8918:1;8907:9;8903:17;8896:47;8960:131;9086:4;8960:131;:::i;:::-;8952:139;;8850:248;;;:::o;9104:419::-;;9308:2;9297:9;9293:18;9285:26;;9357:9;9351:4;9347:20;9343:1;9332:9;9328:17;9321:47;9385:131;9511:4;9385:131;:::i;:::-;9377:139;;9275:248;;;:::o;9529:419::-;;9733:2;9722:9;9718:18;9710:26;;9782:9;9776:4;9772:20;9768:1;9757:9;9753:17;9746:47;9810:131;9936:4;9810:131;:::i;:::-;9802:139;;9700:248;;;:::o;9954:419::-;;10158:2;10147:9;10143:18;10135:26;;10207:9;10201:4;10197:20;10193:1;10182:9;10178:17;10171:47;10235:131;10361:4;10235:131;:::i;:::-;10227:139;;10125:248;;;:::o;10379:419::-;;10583:2;10572:9;10568:18;10560:26;;10632:9;10626:4;10622:20;10618:1;10607:9;10603:17;10596:47;10660:131;10786:4;10660:131;:::i;:::-;10652:139;;10550:248;;;:::o;10804:419::-;;11008:2;10997:9;10993:18;10985:26;;11057:9;11051:4;11047:20;11043:1;11032:9;11028:17;11021:47;11085:131;11211:4;11085:131;:::i;:::-;11077:139;;10975:248;;;:::o;11229:419::-;;11433:2;11422:9;11418:18;11410:26;;11482:9;11476:4;11472:20;11468:1;11457:9;11453:17;11446:47;11510:131;11636:4;11510:131;:::i;:::-;11502:139;;11400:248;;;:::o;11654:419::-;;11858:2;11847:9;11843:18;11835:26;;11907:9;11901:4;11897:20;11893:1;11882:9;11878:17;11871:47;11935:131;12061:4;11935:131;:::i;:::-;11927:139;;11825:248;;;:::o;12079:419::-;;12283:2;12272:9;12268:18;12260:26;;12332:9;12326:4;12322:20;12318:1;12307:9;12303:17;12296:47;12360:131;12486:4;12360:131;:::i;:::-;12352:139;;12250:248;;;:::o;12504:419::-;;12708:2;12697:9;12693:18;12685:26;;12757:9;12751:4;12747:20;12743:1;12732:9;12728:17;12721:47;12785:131;12911:4;12785:131;:::i;:::-;12777:139;;12675:248;;;:::o;12929:419::-;;13133:2;13122:9;13118:18;13110:26;;13182:9;13176:4;13172:20;13168:1;13157:9;13153:17;13146:47;13210:131;13336:4;13210:131;:::i;:::-;13202:139;;13100:248;;;:::o;13354:222::-;;13485:2;13474:9;13470:18;13462:26;;13498:71;13566:1;13555:9;13551:17;13542:6;13498:71;:::i;:::-;13452:124;;;;:::o;13582:214::-;;13709:2;13698:9;13694:18;13686:26;;13722:67;13786:1;13775:9;13771:17;13762:6;13722:67;:::i;:::-;13676:120;;;;:::o;13802:99::-;;13888:5;13882:12;13872:22;;13861:40;;;:::o;13907:169::-;;14025:6;14020:3;14013:19;14065:4;14060:3;14056:14;14041:29;;14003:73;;;;:::o;14082:305::-;;14141:20;14159:1;14141:20;:::i;:::-;14136:25;;14175:20;14193:1;14175:20;:::i;:::-;14170:25;;14329:1;14261:66;14257:74;14254:1;14251:81;14248:2;;;14335:18;;:::i;:::-;14248:2;14379:1;14376;14372:9;14365:16;;14126:261;;;;:::o;14393:191::-;;14453:20;14471:1;14453:20;:::i;:::-;14448:25;;14487:20;14505:1;14487:20;:::i;:::-;14482:25;;14526:1;14523;14520:8;14517:2;;;14531:18;;:::i;:::-;14517:2;14576:1;14573;14569:9;14561:17;;14438:146;;;;:::o;14590:96::-;;14656:24;14674:5;14656:24;:::i;:::-;14645:35;;14635:51;;;:::o;14692:90::-;;14769:5;14762:13;14755:21;14744:32;;14734:48;;;:::o;14788:126::-;;14865:42;14858:5;14854:54;14843:65;;14833:81;;;:::o;14920:77::-;;14986:5;14975:16;;14965:32;;;:::o;15003:86::-;;15078:4;15071:5;15067:16;15056:27;;15046:43;;;:::o;15095:307::-;15163:1;15173:113;15187:6;15184:1;15181:13;15173:113;;;15272:1;15267:3;15263:11;15257:18;15253:1;15248:3;15244:11;15237:39;15209:2;15206:1;15202:10;15197:15;;15173:113;;;15304:6;15301:1;15298:13;15295:2;;;15384:1;15375:6;15370:3;15366:16;15359:27;15295:2;15144:258;;;;:::o;15408:320::-;;15489:1;15483:4;15479:12;15469:22;;15536:1;15530:4;15526:12;15557:18;15547:2;;15613:4;15605:6;15601:17;15591:27;;15547:2;15675;15667:6;15664:14;15644:18;15641:38;15638:2;;;15694:18;;:::i;:::-;15638:2;15459:269;;;;:::o;15734:180::-;15782:77;15779:1;15772:88;15879:4;15876:1;15869:15;15903:4;15900:1;15893:15;15920:180;15968:77;15965:1;15958:88;16065:4;16062:1;16055:15;16089:4;16086:1;16079:15;16106:102;;16198:2;16194:7;16189:2;16182:5;16178:14;16174:28;16164:38;;16154:54;;;:::o;16214:122::-;16287:24;16305:5;16287:24;:::i;:::-;16280:5;16277:35;16267:2;;16326:1;16323;16316:12;16267:2;16257:79;:::o;16342:122::-;16415:24;16433:5;16415:24;:::i;:::-;16408:5;16405:35;16395:2;;16454:1;16451;16444:12;16395:2;16385:79;:::o
Swarm Source
ipfs://17c0bedb6aac6335292b98e407fc8bfbdced6d51b780afbdfc8a4cbc5b602a30