Token Movr Pad
Overview ERC20
Price
$0.00 @ 0.000000 MOVR
Fully Diluted Market Cap
Total Supply:
86,699,010,615.505985 PAD
Holders:
855 addresses
Contract:
Decimals:
18
Balance
39,145,188.012586760034994881 PADValue
$0.00
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MovrPad
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-11-01 */ // 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/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol 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 Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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"); unchecked { _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"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `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"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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: * * - `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; _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; } _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 Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/contracts/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"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } } // File: Pad.sol pragma solidity ^0.8.0; contract Ownable is Context { address private _owner; constructor () { _owner = address(0xcf32831C53b73f38D024a95649f765E62C114Bbf); //minter contract address } /** * @dev Returns the address of the owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } } /** * @dev {ERC20} token, including: * * - ability for holders to burn (destroy) their tokens * - a owner role that allows for token minting (creation) * */ contract MovrPad is ERC20Burnable, Ownable { /** * @dev Mints the initial supply of 20 bilion $PAD (10% of max supply) */ constructor() ERC20("Movr Pad", "PAD") { _mint(msg.sender, 20*1e9*1e18); } /** * @dev Creates `amount` new tokens for `to`. * * See {ERC20-_mint}. * * Requirements: * * - the caller must be the owner. */ function mint(address to, uint256 amount) onlyOwner external { _mint(to, 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":[{"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":"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":"to","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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
60806040523480156200001157600080fd5b506040518060400160405280600881526020017f4d6f7672205061640000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5041440000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620002ae565b508060049080519060200190620000af929190620002ae565b50505073cf32831c53b73f38d024a95649f765e62c114bbf600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000125336b409f9cbc7c4a04c2200000006200012b60201b60201c565b620004fc565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200019e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019590620003b1565b60405180910390fd5b620001b260008383620002a460201b60201c565b8060026000828254620001c6919062000401565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200021d919062000401565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002849190620003d3565b60405180910390a3620002a060008383620002a960201b60201c565b5050565b505050565b505050565b828054620002bc9062000468565b90600052602060002090601f016020900481019282620002e057600085556200032c565b82601f10620002fb57805160ff19168380011785556200032c565b828001600101855582156200032c579182015b828111156200032b5782518255916020019190600101906200030e565b5b5090506200033b91906200033f565b5090565b5b808211156200035a57600081600090555060010162000340565b5090565b60006200036d601f83620003f0565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620003ab816200045e565b82525050565b60006020820190508181036000830152620003cc816200035e565b9050919050565b6000602082019050620003ea6000830184620003a0565b92915050565b600082825260208201905092915050565b60006200040e826200045e565b91506200041b836200045e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200045357620004526200049e565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200048157607f821691505b60208210811415620004985762000497620004cd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611b6d806200050c6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806342966c681161009757806395d89b411161006657806395d89b4114610286578063a457c2d7146102a4578063a9059cbb146102d4578063dd62ed3e14610304576100f5565b806342966c681461020057806370a082311461021c57806379cc67901461024c5780638da5cb5b14610268576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806340c10f19146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610334565b60405161010f9190611762565b60405180910390f35b610132600480360381019061012d91906111d6565b6103c6565b60405161013f9190611747565b60405180910390f35b6101506103e4565b60405161015d9190611904565b60405180910390f35b610180600480360381019061017b9190611187565b6103ee565b60405161018d9190611747565b60405180910390f35b61019e6104e6565b6040516101ab919061191f565b60405180910390f35b6101ce60048036038101906101c991906111d6565b6104ef565b6040516101db9190611747565b60405180910390f35b6101fe60048036038101906101f991906111d6565b61059b565b005b61021a60048036038101906102159190611212565b610640565b005b61023660048036038101906102319190611122565b610654565b6040516102439190611904565b60405180910390f35b610266600480360381019061026191906111d6565b61069c565b005b610270610717565b60405161027d919061172c565b60405180910390f35b61028e610741565b60405161029b9190611762565b60405180910390f35b6102be60048036038101906102b991906111d6565b6107d3565b6040516102cb9190611747565b60405180910390f35b6102ee60048036038101906102e991906111d6565b6108be565b6040516102fb9190611747565b60405180910390f35b61031e6004803603810190610319919061114b565b6108dc565b60405161032b9190611904565b60405180910390f35b60606003805461034390611a68565b80601f016020809104026020016040519081016040528092919081815260200182805461036f90611a68565b80156103bc5780601f10610391576101008083540402835291602001916103bc565b820191906000526020600020905b81548152906001019060200180831161039f57829003601f168201915b5050505050905090565b60006103da6103d3610963565b848461096b565b6001905092915050565b6000600254905090565b60006103fb848484610b36565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610446610963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104bd90611804565b60405180910390fd5b6104da856104d2610963565b85840361096b565b60019150509392505050565b60006012905090565b60006105916104fc610963565b84846001600061050a610963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461058c9190611956565b61096b565b6001905092915050565b6105a3610963565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062990611824565b60405180910390fd5b61063c8282610db7565b5050565b61065161064b610963565b82610f17565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006106af836106aa610963565b6108dc565b9050818110156106f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106eb90611844565b60405180910390fd5b61070883610700610963565b84840361096b565b6107128383610f17565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461075090611a68565b80601f016020809104026020016040519081016040528092919081815260200182805461077c90611a68565b80156107c95780601f1061079e576101008083540402835291602001916107c9565b820191906000526020600020905b8154815290600101906020018083116107ac57829003601f168201915b5050505050905090565b600080600160006107e2610963565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561089f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610896906118c4565b60405180910390fd5b6108b36108aa610963565b8585840361096b565b600191505092915050565b60006108d26108cb610963565b8484610b36565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d2906118a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a42906117c4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b299190611904565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d90611884565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d90611784565b60405180910390fd5b610c218383836110ee565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e906117e4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d3a9190611956565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d9e9190611904565b60405180910390a3610db18484846110f3565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e906118e4565b60405180910390fd5b610e33600083836110ee565b8060026000828254610e459190611956565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e9a9190611956565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610eff9190611904565b60405180910390a3610f13600083836110f3565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90611864565b60405180910390fd5b610f93826000836110ee565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611019576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611010906117a4565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461107091906119ac565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110d59190611904565b60405180910390a36110e9836000846110f3565b505050565b505050565b505050565b60008135905061110781611b09565b92915050565b60008135905061111c81611b20565b92915050565b60006020828403121561113457600080fd5b6000611142848285016110f8565b91505092915050565b6000806040838503121561115e57600080fd5b600061116c858286016110f8565b925050602061117d858286016110f8565b9150509250929050565b60008060006060848603121561119c57600080fd5b60006111aa868287016110f8565b93505060206111bb868287016110f8565b92505060406111cc8682870161110d565b9150509250925092565b600080604083850312156111e957600080fd5b60006111f7858286016110f8565b92505060206112088582860161110d565b9150509250929050565b60006020828403121561122457600080fd5b60006112328482850161110d565b91505092915050565b611244816119e0565b82525050565b611253816119f2565b82525050565b60006112648261193a565b61126e8185611945565b935061127e818560208601611a35565b61128781611af8565b840191505092915050565b600061129f602383611945565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611305602283611945565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061136b602283611945565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113d1602683611945565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611437602883611945565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b600061149d602083611945565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006114dd602483611945565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611543602183611945565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115a9602583611945565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061160f602483611945565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611675602583611945565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116db601f83611945565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b61171781611a1e565b82525050565b61172681611a28565b82525050565b6000602082019050611741600083018461123b565b92915050565b600060208201905061175c600083018461124a565b92915050565b6000602082019050818103600083015261177c8184611259565b905092915050565b6000602082019050818103600083015261179d81611292565b9050919050565b600060208201905081810360008301526117bd816112f8565b9050919050565b600060208201905081810360008301526117dd8161135e565b9050919050565b600060208201905081810360008301526117fd816113c4565b9050919050565b6000602082019050818103600083015261181d8161142a565b9050919050565b6000602082019050818103600083015261183d81611490565b9050919050565b6000602082019050818103600083015261185d816114d0565b9050919050565b6000602082019050818103600083015261187d81611536565b9050919050565b6000602082019050818103600083015261189d8161159c565b9050919050565b600060208201905081810360008301526118bd81611602565b9050919050565b600060208201905081810360008301526118dd81611668565b9050919050565b600060208201905081810360008301526118fd816116ce565b9050919050565b6000602082019050611919600083018461170e565b92915050565b6000602082019050611934600083018461171d565b92915050565b600081519050919050565b600082825260208201905092915050565b600061196182611a1e565b915061196c83611a1e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119a1576119a0611a9a565b5b828201905092915050565b60006119b782611a1e565b91506119c283611a1e565b9250828210156119d5576119d4611a9a565b5b828203905092915050565b60006119eb826119fe565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611a53578082015181840152602081019050611a38565b83811115611a62576000848401525b50505050565b60006002820490506001821680611a8057607f821691505b60208210811415611a9457611a93611ac9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611b12816119e0565b8114611b1d57600080fd5b50565b611b2981611a1e565b8114611b3457600080fd5b5056fea2646970667358221220edbe59e1a9fc55a11180a65dbafd0848a0c56bfba6e085e874f353882e58afb464736f6c63430008000033
Deployed ByteCode Sourcemap
18430:526:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6406:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8573:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7526:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9224:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7368:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10125:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18854:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16858:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7697:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17268:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17958:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6625:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10843:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8037:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8275:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6406:100;6460:13;6493:5;6486:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6406:100;:::o;8573:169::-;8656:4;8673:39;8682:12;:10;:12::i;:::-;8696:7;8705:6;8673:8;:39::i;:::-;8730:4;8723:11;;8573:169;;;;:::o;7526:108::-;7587:7;7614:12;;7607:19;;7526:108;:::o;9224:492::-;9364:4;9381:36;9391:6;9399:9;9410:6;9381:9;:36::i;:::-;9430:24;9457:11;:19;9469:6;9457:19;;;;;;;;;;;;;;;:33;9477:12;:10;:12::i;:::-;9457:33;;;;;;;;;;;;;;;;9430:60;;9529:6;9509:16;:26;;9501:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9616:57;9625:6;9633:12;:10;:12::i;:::-;9666:6;9647:16;:25;9616:8;:57::i;:::-;9704:4;9697:11;;;9224:492;;;;;:::o;7368:93::-;7426:5;7451:2;7444:9;;7368:93;:::o;10125:215::-;10213:4;10230:80;10239:12;:10;:12::i;:::-;10253:7;10299:10;10262:11;:25;10274:12;:10;:12::i;:::-;10262:25;;;;;;;;;;;;;;;:34;10288:7;10262:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10230:8;:80::i;:::-;10328:4;10321:11;;10125:215;;;;:::o;18854:97::-;18180:12;:10;:12::i;:::-;18170:22;;:6;;;;;;;;;;;:22;;;18162:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18926:17:::1;18932:2;18936:6;18926:5;:17::i;:::-;18854:97:::0;;:::o;16858:91::-;16914:27;16920:12;:10;:12::i;:::-;16934:6;16914:5;:27::i;:::-;16858:91;:::o;7697:127::-;7771:7;7798:9;:18;7808:7;7798:18;;;;;;;;;;;;;;;;7791:25;;7697:127;;;:::o;17268:368::-;17345:24;17372:32;17382:7;17391:12;:10;:12::i;:::-;17372:9;:32::i;:::-;17345:59;;17443:6;17423:16;:26;;17415:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;17526:58;17535:7;17544:12;:10;:12::i;:::-;17577:6;17558:16;:25;17526:8;:58::i;:::-;17606:22;17612:7;17621:6;17606:5;:22::i;:::-;17268:368;;;:::o;17958:79::-;17996:7;18023:6;;;;;;;;;;;18016:13;;17958:79;:::o;6625:104::-;6681:13;6714:7;6707:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6625:104;:::o;10843:413::-;10936:4;10953:24;10980:11;:25;10992:12;:10;:12::i;:::-;10980:25;;;;;;;;;;;;;;;:34;11006:7;10980:34;;;;;;;;;;;;;;;;10953:61;;11053:15;11033:16;:35;;11025:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11146:67;11155:12;:10;:12::i;:::-;11169:7;11197:15;11178:16;:34;11146:8;:67::i;:::-;11244:4;11237:11;;;10843:413;;;;:::o;8037:175::-;8123:4;8140:42;8150:12;:10;:12::i;:::-;8164:9;8175:6;8140:9;:42::i;:::-;8200:4;8193:11;;8037:175;;;;:::o;8275:151::-;8364:7;8391:11;:18;8403:5;8391:18;;;;;;;;;;;;;;;:27;8410:7;8391:27;;;;;;;;;;;;;;;;8384:34;;8275:151;;;;:::o;4119:98::-;4172:7;4199:10;4192:17;;4119:98;:::o;14527:380::-;14680:1;14663:19;;:5;:19;;;;14655:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14761:1;14742:21;;:7;:21;;;;14734:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14845:6;14815:11;:18;14827:5;14815:18;;;;;;;;;;;;;;;:27;14834:7;14815:27;;;;;;;;;;;;;;;:36;;;;14883:7;14867:32;;14876:5;14867:32;;;14892:6;14867:32;;;;;;:::i;:::-;;;;;;;;14527:380;;;:::o;11746:733::-;11904:1;11886:20;;:6;:20;;;;11878:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11988:1;11967:23;;:9;:23;;;;11959:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12043:47;12064:6;12072:9;12083:6;12043:20;:47::i;:::-;12103:21;12127:9;:17;12137:6;12127:17;;;;;;;;;;;;;;;;12103:41;;12180:6;12163:13;:23;;12155:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12301:6;12285:13;:22;12265:9;:17;12275:6;12265:17;;;;;;;;;;;;;;;:42;;;;12353:6;12329:9;:20;12339:9;12329:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12394:9;12377:35;;12386:6;12377:35;;;12405:6;12377:35;;;;;;:::i;:::-;;;;;;;;12425:46;12445:6;12453:9;12464:6;12425:19;:46::i;:::-;11746:733;;;;:::o;12766:399::-;12869:1;12850:21;;:7;:21;;;;12842:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12920:49;12949:1;12953:7;12962:6;12920:20;:49::i;:::-;12998:6;12982:12;;:22;;;;;;;:::i;:::-;;;;;;;;13037:6;13015:9;:18;13025:7;13015:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;13080:7;13059:37;;13076:1;13059:37;;;13089:6;13059:37;;;;;;:::i;:::-;;;;;;;;13109:48;13137:1;13141:7;13150:6;13109:19;:48::i;:::-;12766:399;;:::o;13498:591::-;13601:1;13582:21;;:7;:21;;;;13574:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13654:49;13675:7;13692:1;13696:6;13654:20;:49::i;:::-;13716:22;13741:9;:18;13751:7;13741:18;;;;;;;;;;;;;;;;13716:43;;13796:6;13778:14;:24;;13770:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13915:6;13898:14;:23;13877:9;:18;13887:7;13877:18;;;;;;;;;;;;;;;:44;;;;13959:6;13943:12;;:22;;;;;;;:::i;:::-;;;;;;;;14009:1;13983:37;;13992:7;13983:37;;;14013:6;13983:37;;;;;;:::i;:::-;;;;;;;;14033:48;14053:7;14070:1;14074:6;14033:19;:48::i;:::-;13498:591;;;:::o;15507:125::-;;;;:::o;16236:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949: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:372::-;;4482:67;4546:2;4541:3;4482:67;:::i;:::-;4475:74;;4579:34;4575:1;4570:3;4566:11;4559:55;4645:10;4640:2;4635:3;4631:12;4624:32;4682:2;4677:3;4673:12;4666:19;;4465:226;;;:::o;4697:330::-;;4860:67;4924:2;4919:3;4860:67;:::i;:::-;4853:74;;4957:34;4953:1;4948:3;4944:11;4937:55;5018:2;5013:3;5009:12;5002:19;;4843:184;;;:::o;5033:368::-;;5196:67;5260:2;5255:3;5196:67;:::i;:::-;5189:74;;5293:34;5289:1;5284:3;5280:11;5273:55;5359:6;5354:2;5349:3;5345:12;5338:28;5392:2;5387:3;5383:12;5376:19;;5179:222;;;:::o;5407:365::-;;5570:67;5634:2;5629:3;5570:67;:::i;:::-;5563:74;;5667:34;5663:1;5658:3;5654:11;5647:55;5733:3;5728:2;5723:3;5719:12;5712:25;5763:2;5758:3;5754:12;5747:19;;5553:219;;;:::o;5778:369::-;;5941:67;6005:2;6000:3;5941:67;:::i;:::-;5934:74;;6038:34;6034:1;6029:3;6025:11;6018:55;6104:7;6099:2;6094:3;6090:12;6083:29;6138:2;6133:3;6129:12;6122:19;;5924:223;;;:::o;6153:368::-;;6316:67;6380:2;6375:3;6316:67;:::i;:::-;6309:74;;6413:34;6409:1;6404:3;6400:11;6393:55;6479:6;6474:2;6469:3;6465:12;6458:28;6512:2;6507:3;6503:12;6496:19;;6299:222;;;:::o;6527:369::-;;6690:67;6754:2;6749:3;6690:67;:::i;:::-;6683:74;;6787:34;6783:1;6778:3;6774:11;6767:55;6853:7;6848:2;6843:3;6839:12;6832:29;6887:2;6882:3;6878:12;6871:19;;6673:223;;;:::o;6902:329::-;;7065:67;7129:2;7124:3;7065:67;:::i;:::-;7058:74;;7162:33;7158:1;7153:3;7149:11;7142:54;7222:2;7217:3;7213:12;7206:19;;7048:183;;;:::o;7237:118::-;7324:24;7342:5;7324:24;:::i;:::-;7319:3;7312:37;7302:53;;:::o;7361:112::-;7444:22;7460:5;7444:22;:::i;:::-;7439:3;7432:35;7422:51;;:::o;7479:222::-;;7610:2;7599:9;7595:18;7587:26;;7623:71;7691:1;7680:9;7676:17;7667:6;7623:71;:::i;:::-;7577:124;;;;:::o;7707:210::-;;7832:2;7821:9;7817:18;7809:26;;7845:65;7907:1;7896:9;7892:17;7883:6;7845:65;:::i;:::-;7799:118;;;;:::o;7923:313::-;;8074:2;8063:9;8059:18;8051:26;;8123:9;8117:4;8113:20;8109:1;8098:9;8094:17;8087:47;8151:78;8224:4;8215:6;8151:78;:::i;:::-;8143:86;;8041:195;;;;:::o;8242:419::-;;8446:2;8435:9;8431:18;8423:26;;8495:9;8489:4;8485:20;8481:1;8470:9;8466:17;8459:47;8523:131;8649:4;8523:131;:::i;:::-;8515:139;;8413:248;;;:::o;8667:419::-;;8871:2;8860:9;8856:18;8848:26;;8920:9;8914:4;8910:20;8906:1;8895:9;8891:17;8884:47;8948:131;9074:4;8948:131;:::i;:::-;8940:139;;8838:248;;;:::o;9092:419::-;;9296:2;9285:9;9281:18;9273:26;;9345:9;9339:4;9335:20;9331:1;9320:9;9316:17;9309:47;9373:131;9499:4;9373:131;:::i;:::-;9365:139;;9263:248;;;:::o;9517:419::-;;9721:2;9710:9;9706:18;9698:26;;9770:9;9764:4;9760:20;9756:1;9745:9;9741:17;9734:47;9798:131;9924:4;9798:131;:::i;:::-;9790:139;;9688:248;;;:::o;9942:419::-;;10146:2;10135:9;10131:18;10123:26;;10195:9;10189:4;10185:20;10181:1;10170:9;10166:17;10159:47;10223:131;10349:4;10223:131;:::i;:::-;10215:139;;10113:248;;;:::o;10367:419::-;;10571:2;10560:9;10556:18;10548:26;;10620:9;10614:4;10610:20;10606:1;10595:9;10591:17;10584:47;10648:131;10774:4;10648:131;:::i;:::-;10640:139;;10538:248;;;:::o;10792:419::-;;10996:2;10985:9;10981:18;10973:26;;11045:9;11039:4;11035:20;11031:1;11020:9;11016:17;11009:47;11073:131;11199:4;11073:131;:::i;:::-;11065:139;;10963:248;;;:::o;11217:419::-;;11421:2;11410:9;11406:18;11398:26;;11470:9;11464:4;11460:20;11456:1;11445:9;11441:17;11434:47;11498:131;11624:4;11498:131;:::i;:::-;11490:139;;11388:248;;;:::o;11642:419::-;;11846:2;11835:9;11831:18;11823:26;;11895:9;11889:4;11885:20;11881:1;11870:9;11866:17;11859:47;11923:131;12049:4;11923:131;:::i;:::-;11915:139;;11813:248;;;:::o;12067:419::-;;12271:2;12260:9;12256:18;12248:26;;12320:9;12314:4;12310:20;12306:1;12295:9;12291:17;12284:47;12348:131;12474:4;12348:131;:::i;:::-;12340:139;;12238:248;;;:::o;12492:419::-;;12696:2;12685:9;12681:18;12673:26;;12745:9;12739:4;12735:20;12731:1;12720:9;12716:17;12709:47;12773:131;12899:4;12773:131;:::i;:::-;12765:139;;12663:248;;;:::o;12917:419::-;;13121:2;13110:9;13106:18;13098:26;;13170:9;13164:4;13160:20;13156:1;13145:9;13141:17;13134:47;13198:131;13324:4;13198:131;:::i;:::-;13190:139;;13088:248;;;:::o;13342:222::-;;13473:2;13462:9;13458:18;13450:26;;13486:71;13554:1;13543:9;13539:17;13530:6;13486:71;:::i;:::-;13440:124;;;;:::o;13570:214::-;;13697:2;13686:9;13682:18;13674:26;;13710:67;13774:1;13763:9;13759:17;13750:6;13710:67;:::i;:::-;13664:120;;;;:::o;13790:99::-;;13876:5;13870:12;13860:22;;13849:40;;;:::o;13895:169::-;;14013:6;14008:3;14001:19;14053:4;14048:3;14044:14;14029:29;;13991:73;;;;:::o;14070:305::-;;14129:20;14147:1;14129:20;:::i;:::-;14124:25;;14163:20;14181:1;14163:20;:::i;:::-;14158:25;;14317:1;14249:66;14245:74;14242:1;14239:81;14236:2;;;14323:18;;:::i;:::-;14236:2;14367:1;14364;14360:9;14353:16;;14114:261;;;;:::o;14381:191::-;;14441:20;14459:1;14441:20;:::i;:::-;14436:25;;14475:20;14493:1;14475:20;:::i;:::-;14470:25;;14514:1;14511;14508:8;14505:2;;;14519:18;;:::i;:::-;14505:2;14564:1;14561;14557:9;14549:17;;14426:146;;;;:::o;14578:96::-;;14644:24;14662:5;14644:24;:::i;:::-;14633:35;;14623:51;;;:::o;14680:90::-;;14757:5;14750:13;14743:21;14732:32;;14722:48;;;:::o;14776:126::-;;14853:42;14846:5;14842:54;14831:65;;14821:81;;;:::o;14908:77::-;;14974:5;14963:16;;14953:32;;;:::o;14991:86::-;;15066:4;15059:5;15055:16;15044:27;;15034:43;;;:::o;15083:307::-;15151:1;15161:113;15175:6;15172:1;15169:13;15161:113;;;15260:1;15255:3;15251:11;15245:18;15241:1;15236:3;15232:11;15225:39;15197:2;15194:1;15190:10;15185:15;;15161:113;;;15292:6;15289:1;15286:13;15283:2;;;15372:1;15363:6;15358:3;15354:16;15347:27;15283:2;15132:258;;;;:::o;15396:320::-;;15477:1;15471:4;15467:12;15457:22;;15524:1;15518:4;15514:12;15545:18;15535:2;;15601:4;15593:6;15589:17;15579:27;;15535:2;15663;15655:6;15652:14;15632:18;15629:38;15626:2;;;15682:18;;:::i;:::-;15626:2;15447:269;;;;:::o;15722:180::-;15770:77;15767:1;15760:88;15867:4;15864:1;15857:15;15891:4;15888:1;15881:15;15908:180;15956:77;15953:1;15946:88;16053:4;16050:1;16043:15;16077:4;16074:1;16067:15;16094:102;;16186:2;16182:7;16177:2;16170:5;16166:14;16162:28;16152:38;;16142:54;;;:::o;16202:122::-;16275:24;16293:5;16275:24;:::i;:::-;16268:5;16265:35;16255:2;;16314:1;16311;16304:12;16255:2;16245:79;:::o;16330:122::-;16403:24;16421:5;16403:24;:::i;:::-;16396:5;16393:35;16383:2;;16442:1;16439;16432:12;16383:2;16373:79;:::o
Swarm Source
ipfs://edbe59e1a9fc55a11180a65dbafd0848a0c56bfba6e085e874f353882e58afb4