Token Boom Token
Overview ERC-20
Total Supply:
100,010 BOOM
Holders:
3 addresses
Profile Summary
Contract:
Decimals:
18
Balance
98,501 BOOM
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BoomToken
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-18 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual 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 Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev 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 // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _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 Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (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 { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: contracts/BoomToken.sol pragma solidity ^0.8.4; contract BoomToken is ERC20, ERC20Burnable, Ownable { uint256 constant public INITIAL_SUPPLY = 100_000 * 10**18; address constant private STUDIO = 0x3120E153E89B7850B158d1a93d4289066a14ccd5; constructor() ERC20("Boom Token", "BOOM") { _mint(STUDIO, INITIAL_SUPPLY); } /// @notice Mint asset function mint(address to, uint256 amount) public onlyOwner { _mint(to, amount); } /// @notice Burn asset function burn(address from, uint256 amount) public onlyOwner { _burn(from, amount); } } ///////////////////////////////////////////////////////////////////////////// // TEST CONTRACT, IS NOT FINAL // /////////////////////////////////////////////////////////////////////////////
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"from","type":"address"},{"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f426f6f6d20546f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424f4f4d0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000359565b508060049080519060200190620000af92919062000359565b505050620000d2620000c66200010860201b60201c565b6200011060201b60201c565b62000102733120e153e89b7850b158d1a93d4289066a14ccd569152d02c7e14af6800000620001d660201b60201c565b620005b5565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002409062000441565b60405180910390fd5b6200025d600083836200034f60201b60201c565b806002600082825462000271919062000491565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002c8919062000491565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200032f919062000463565b60405180910390a36200034b600083836200035460201b60201c565b5050565b505050565b505050565b8280546200036790620004f8565b90600052602060002090601f0160209004810192826200038b5760008555620003d7565b82601f10620003a657805160ff1916838001178555620003d7565b82800160010185558215620003d7579182015b82811115620003d6578251825591602001919060010190620003b9565b5b509050620003e69190620003ea565b5090565b5b8082111562000405576000816000905550600101620003eb565b5090565b600062000418601f8362000480565b915062000425826200058c565b602082019050919050565b6200043b81620004ee565b82525050565b600060208201905081810360008301526200045c8162000409565b9050919050565b60006020820190506200047a600083018462000430565b92915050565b600082825260208201905092915050565b60006200049e82620004ee565b9150620004ab83620004ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004e357620004e26200052e565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200051157607f821691505b602082108114156200052857620005276200055d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611eae80620005c56000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad5780639dc29fac116100715780639dc29fac146102f8578063a457c2d714610314578063a9059cbb14610344578063dd62ed3e14610374578063f2fde38b146103a457610121565b806370a0823114610266578063715018a61461029657806379cc6790146102a05780638da5cb5b146102bc57806395d89b41146102da57610121565b80632ff2e9dc116100f45780632ff2e9dc146101c2578063313ce567146101e057806339509351146101fe57806340c10f191461022e57806342966c681461024a57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103c0565b60405161013b919061175c565b60405180910390f35b61015e600480360381019061015991906114a0565b610452565b60405161016b9190611741565b60405180910390f35b61017c610475565b60405161018991906118fe565b60405180910390f35b6101ac60048036038101906101a7919061144d565b61047f565b6040516101b99190611741565b60405180910390f35b6101ca6104ae565b6040516101d791906118fe565b60405180910390f35b6101e86104bc565b6040516101f59190611919565b60405180910390f35b610218600480360381019061021391906114a0565b6104c5565b6040516102259190611741565b60405180910390f35b610248600480360381019061024391906114a0565b61056f565b005b610264600480360381019061025f91906114e0565b6105f9565b005b610280600480360381019061027b91906113e0565b61060d565b60405161028d91906118fe565b60405180910390f35b61029e610655565b005b6102ba60048036038101906102b591906114a0565b6106dd565b005b6102c46106fd565b6040516102d19190611726565b60405180910390f35b6102e2610727565b6040516102ef919061175c565b60405180910390f35b610312600480360381019061030d91906114a0565b6107b9565b005b61032e600480360381019061032991906114a0565b610843565b60405161033b9190611741565b60405180910390f35b61035e600480360381019061035991906114a0565b61092d565b60405161036b9190611741565b60405180910390f35b61038e6004803603810190610389919061140d565b610950565b60405161039b91906118fe565b60405180910390f35b6103be60048036038101906103b991906113e0565b6109d7565b005b6060600380546103cf90611a62565b80601f01602080910402602001604051908101604052809291908181526020018280546103fb90611a62565b80156104485780601f1061041d57610100808354040283529160200191610448565b820191906000526020600020905b81548152906001019060200180831161042b57829003601f168201915b5050505050905090565b60008061045d610acf565b905061046a818585610ad7565b600191505092915050565b6000600254905090565b60008061048a610acf565b9050610497858285610ca2565b6104a2858585610d2e565b60019150509392505050565b69152d02c7e14af680000081565b60006012905090565b6000806104d0610acf565b9050610564818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461055f9190611950565b610ad7565b600191505092915050565b610577610acf565b73ffffffffffffffffffffffffffffffffffffffff166105956106fd565b73ffffffffffffffffffffffffffffffffffffffff16146105eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e29061183e565b60405180910390fd5b6105f58282610faf565b5050565b61060a610604610acf565b8261110f565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61065d610acf565b73ffffffffffffffffffffffffffffffffffffffff1661067b6106fd565b73ffffffffffffffffffffffffffffffffffffffff16146106d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c89061183e565b60405180910390fd5b6106db60006112e6565b565b6106ef826106e9610acf565b83610ca2565b6106f9828261110f565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461073690611a62565b80601f016020809104026020016040519081016040528092919081815260200182805461076290611a62565b80156107af5780601f10610784576101008083540402835291602001916107af565b820191906000526020600020905b81548152906001019060200180831161079257829003601f168201915b5050505050905090565b6107c1610acf565b73ffffffffffffffffffffffffffffffffffffffff166107df6106fd565b73ffffffffffffffffffffffffffffffffffffffff1614610835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082c9061183e565b60405180910390fd5b61083f828261110f565b5050565b60008061084e610acf565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090b906118be565b60405180910390fd5b6109218286868403610ad7565b60019250505092915050565b600080610938610acf565b9050610945818585610d2e565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109df610acf565b73ffffffffffffffffffffffffffffffffffffffff166109fd6106fd565b73ffffffffffffffffffffffffffffffffffffffff1614610a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4a9061183e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba906117be565b60405180910390fd5b610acc816112e6565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3e9061189e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae906117de565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c9591906118fe565b60405180910390a3505050565b6000610cae8484610950565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d285781811015610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d11906117fe565b60405180910390fd5b610d278484848403610ad7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d959061187e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e059061177e565b60405180910390fd5b610e198383836113ac565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e969061181e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f329190611950565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f9691906118fe565b60405180910390a3610fa98484846113b1565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561101f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611016906118de565b60405180910390fd5b61102b600083836113ac565b806002600082825461103d9190611950565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110929190611950565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110f791906118fe565b60405180910390a361110b600083836113b1565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561117f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111769061185e565b60405180910390fd5b61118b826000836113ac565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611211576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112089061179e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461126891906119a6565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112cd91906118fe565b60405180910390a36112e1836000846113b1565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506113c581611e4a565b92915050565b6000813590506113da81611e61565b92915050565b6000602082840312156113f6576113f5611af2565b5b6000611404848285016113b6565b91505092915050565b6000806040838503121561142457611423611af2565b5b6000611432858286016113b6565b9250506020611443858286016113b6565b9150509250929050565b60008060006060848603121561146657611465611af2565b5b6000611474868287016113b6565b9350506020611485868287016113b6565b9250506040611496868287016113cb565b9150509250925092565b600080604083850312156114b7576114b6611af2565b5b60006114c5858286016113b6565b92505060206114d6858286016113cb565b9150509250929050565b6000602082840312156114f6576114f5611af2565b5b6000611504848285016113cb565b91505092915050565b611516816119da565b82525050565b611525816119ec565b82525050565b600061153682611934565b611540818561193f565b9350611550818560208601611a2f565b61155981611af7565b840191505092915050565b600061157160238361193f565b915061157c82611b08565b604082019050919050565b600061159460228361193f565b915061159f82611b57565b604082019050919050565b60006115b760268361193f565b91506115c282611ba6565b604082019050919050565b60006115da60228361193f565b91506115e582611bf5565b604082019050919050565b60006115fd601d8361193f565b915061160882611c44565b602082019050919050565b600061162060268361193f565b915061162b82611c6d565b604082019050919050565b600061164360208361193f565b915061164e82611cbc565b602082019050919050565b600061166660218361193f565b915061167182611ce5565b604082019050919050565b600061168960258361193f565b915061169482611d34565b604082019050919050565b60006116ac60248361193f565b91506116b782611d83565b604082019050919050565b60006116cf60258361193f565b91506116da82611dd2565b604082019050919050565b60006116f2601f8361193f565b91506116fd82611e21565b602082019050919050565b61171181611a18565b82525050565b61172081611a22565b82525050565b600060208201905061173b600083018461150d565b92915050565b6000602082019050611756600083018461151c565b92915050565b60006020820190508181036000830152611776818461152b565b905092915050565b6000602082019050818103600083015261179781611564565b9050919050565b600060208201905081810360008301526117b781611587565b9050919050565b600060208201905081810360008301526117d7816115aa565b9050919050565b600060208201905081810360008301526117f7816115cd565b9050919050565b60006020820190508181036000830152611817816115f0565b9050919050565b6000602082019050818103600083015261183781611613565b9050919050565b6000602082019050818103600083015261185781611636565b9050919050565b6000602082019050818103600083015261187781611659565b9050919050565b600060208201905081810360008301526118978161167c565b9050919050565b600060208201905081810360008301526118b78161169f565b9050919050565b600060208201905081810360008301526118d7816116c2565b9050919050565b600060208201905081810360008301526118f7816116e5565b9050919050565b60006020820190506119136000830184611708565b92915050565b600060208201905061192e6000830184611717565b92915050565b600081519050919050565b600082825260208201905092915050565b600061195b82611a18565b915061196683611a18565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561199b5761199a611a94565b5b828201905092915050565b60006119b182611a18565b91506119bc83611a18565b9250828210156119cf576119ce611a94565b5b828203905092915050565b60006119e5826119f8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611a4d578082015181840152602081019050611a32565b83811115611a5c576000848401525b50505050565b60006002820490506001821680611a7a57607f821691505b60208210811415611a8e57611a8d611ac3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611e53816119da565b8114611e5e57600080fd5b50565b611e6a81611a18565b8114611e7557600080fd5b5056fea264697066735822122024b33ed0303134cb1174bafb06bb0d6f92a9a27099652f9aeff26b60970917c164736f6c63430008070033
Deployed ByteCode Sourcemap
21213:567:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9183:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11534:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10303:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12315:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21272:57;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10145:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13019:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21547:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20561:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10474:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:103;;;:::i;:::-;;20971:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1955:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9402:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21678:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13762:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10807:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11063:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2864:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9183:100;9237:13;9270:5;9263:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9183:100;:::o;11534:201::-;11617:4;11634:13;11650:12;:10;:12::i;:::-;11634:28;;11673:32;11682:5;11689:7;11698:6;11673:8;:32::i;:::-;11723:4;11716:11;;;11534:201;;;;:::o;10303:108::-;10364:7;10391:12;;10384:19;;10303:108;:::o;12315:295::-;12446:4;12463:15;12481:12;:10;:12::i;:::-;12463:30;;12504:38;12520:4;12526:7;12535:6;12504:15;:38::i;:::-;12553:27;12563:4;12569:2;12573:6;12553:9;:27::i;:::-;12598:4;12591:11;;;12315:295;;;;;:::o;21272:57::-;21313:16;21272:57;:::o;10145:93::-;10203:5;10228:2;10221:9;;10145:93;:::o;13019:240::-;13107:4;13124:13;13140:12;:10;:12::i;:::-;13124:28;;13163:66;13172:5;13179:7;13218:10;13188:11;:18;13200:5;13188:18;;;;;;;;;;;;;;;:27;13207:7;13188:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;13163:8;:66::i;:::-;13247:4;13240:11;;;13019:240;;;;:::o;21547:95::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21617:17:::1;21623:2;21627:6;21617:5;:17::i;:::-;21547:95:::0;;:::o;20561:91::-;20617:27;20623:12;:10;:12::i;:::-;20637:6;20617:5;:27::i;:::-;20561:91;:::o;10474:127::-;10548:7;10575:9;:18;10585:7;10575:18;;;;;;;;;;;;;;;;10568:25;;10474:127;;;:::o;2606:103::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;20971:164::-;21048:46;21064:7;21073:12;:10;:12::i;:::-;21087:6;21048:15;:46::i;:::-;21105:22;21111:7;21120:6;21105:5;:22::i;:::-;20971:164;;:::o;1955:87::-;2001:7;2028:6;;;;;;;;;;;2021:13;;1955:87;:::o;9402:104::-;9458:13;9491:7;9484:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9402:104;:::o;21678:99::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21750:19:::1;21756:4;21762:6;21750:5;:19::i;:::-;21678:99:::0;;:::o;13762:438::-;13855:4;13872:13;13888:12;:10;:12::i;:::-;13872:28;;13911:24;13938:11;:18;13950:5;13938:18;;;;;;;;;;;;;;;:27;13957:7;13938:27;;;;;;;;;;;;;;;;13911:54;;14004:15;13984:16;:35;;13976:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14097:60;14106:5;14113:7;14141:15;14122:16;:34;14097:8;:60::i;:::-;14188:4;14181:11;;;;13762:438;;;;:::o;10807:193::-;10886:4;10903:13;10919:12;:10;:12::i;:::-;10903:28;;10942;10952:5;10959:2;10963:6;10942:9;:28::i;:::-;10988:4;10981:11;;;10807:193;;;;:::o;11063:151::-;11152:7;11179:11;:18;11191:5;11179:18;;;;;;;;;;;;;;;:27;11198:7;11179:27;;;;;;;;;;;;;;;;11172:34;;11063:151;;;;:::o;2864:201::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:1:::1;2953:22;;:8;:22;;;;2945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;17398:380::-;17551:1;17534:19;;:5;:19;;;;17526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17632:1;17613:21;;:7;:21;;;;17605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17716:6;17686:11;:18;17698:5;17686:18;;;;;;;;;;;;;;;:27;17705:7;17686:27;;;;;;;;;;;;;;;:36;;;;17754:7;17738:32;;17747:5;17738:32;;;17763:6;17738:32;;;;;;:::i;:::-;;;;;;;;17398:380;;;:::o;18065:453::-;18200:24;18227:25;18237:5;18244:7;18227:9;:25::i;:::-;18200:52;;18287:17;18267:16;:37;18263:248;;18349:6;18329:16;:26;;18321:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18433:51;18442:5;18449:7;18477:6;18458:16;:25;18433:8;:51::i;:::-;18263:248;18189:329;18065:453;;;:::o;14679:671::-;14826:1;14810:18;;:4;:18;;;;14802:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14903:1;14889:16;;:2;:16;;;;14881:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;14958:38;14979:4;14985:2;14989:6;14958:20;:38::i;:::-;15009:19;15031:9;:15;15041:4;15031:15;;;;;;;;;;;;;;;;15009:37;;15080:6;15065:11;:21;;15057:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15197:6;15183:11;:20;15165:9;:15;15175:4;15165:15;;;;;;;;;;;;;;;:38;;;;15242:6;15225:9;:13;15235:2;15225:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;15281:2;15266:26;;15275:4;15266:26;;;15285:6;15266:26;;;;;;:::i;:::-;;;;;;;;15305:37;15325:4;15331:2;15335:6;15305:19;:37::i;:::-;14791:559;14679:671;;;:::o;15637:399::-;15740:1;15721:21;;:7;:21;;;;15713:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;15791:49;15820:1;15824:7;15833:6;15791:20;:49::i;:::-;15869:6;15853:12;;:22;;;;;;;:::i;:::-;;;;;;;;15908:6;15886:9;:18;15896:7;15886:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;15951:7;15930:37;;15947:1;15930:37;;;15960:6;15930:37;;;;;;:::i;:::-;;;;;;;;15980:48;16008:1;16012:7;16021:6;15980:19;:48::i;:::-;15637:399;;:::o;16369:591::-;16472:1;16453:21;;:7;:21;;;;16445:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16525:49;16546:7;16563:1;16567:6;16525:20;:49::i;:::-;16587:22;16612:9;:18;16622:7;16612:18;;;;;;;;;;;;;;;;16587:43;;16667:6;16649:14;:24;;16641:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16786:6;16769:14;:23;16748:9;:18;16758:7;16748:18;;;;;;;;;;;;;;;:44;;;;16830:6;16814:12;;:22;;;;;;;:::i;:::-;;;;;;;;16880:1;16854:37;;16863:7;16854:37;;;16884:6;16854:37;;;;;;:::i;:::-;;;;;;;;16904:48;16924:7;16941:1;16945:6;16904:19;:48::i;:::-;16434:526;16369:591;;:::o;3225:191::-;3299:16;3318:6;;;;;;;;;;;3299:25;;3344:8;3335:6;;:17;;;;;;;;;;;;;;;;;;3399:8;3368:40;;3389:8;3368:40;;;;;;;;;;;;3288:128;3225:191;:::o;19118:125::-;;;;:::o;19847:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:119;;;2331:79;;:::i;:::-;2293:119;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2217:329;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2552:118;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2676:109;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;2791:364;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3161:366;;;:::o;3533:::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3533:366;;;:::o;3905:::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;3905:366;;;:::o;4277:::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4277:366;;;:::o;4649:::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4649:366;;;:::o;5021:::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5021:366;;;:::o;5393:::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5393:366;;;:::o;5765:::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5765:366;;;:::o;6137:::-;6279:3;6300:67;6364:2;6359:3;6300:67;:::i;:::-;6293:74;;6376:93;6465:3;6376:93;:::i;:::-;6494:2;6489:3;6485:12;6478:19;;6137:366;;;:::o;6509:::-;6651:3;6672:67;6736:2;6731:3;6672:67;:::i;:::-;6665:74;;6748:93;6837:3;6748:93;:::i;:::-;6866:2;6861:3;6857:12;6850:19;;6509:366;;;:::o;6881:::-;7023:3;7044:67;7108:2;7103:3;7044:67;:::i;:::-;7037:74;;7120:93;7209:3;7120:93;:::i;:::-;7238:2;7233:3;7229:12;7222:19;;6881:366;;;:::o;7253:::-;7395:3;7416:67;7480:2;7475:3;7416:67;:::i;:::-;7409:74;;7492:93;7581:3;7492:93;:::i;:::-;7610:2;7605:3;7601:12;7594:19;;7253:366;;;:::o;7625:118::-;7712:24;7730:5;7712:24;:::i;:::-;7707:3;7700:37;7625:118;;:::o;7749:112::-;7832:22;7848:5;7832:22;:::i;:::-;7827:3;7820:35;7749:112;;:::o;7867:222::-;7960:4;7998:2;7987:9;7983:18;7975:26;;8011:71;8079:1;8068:9;8064:17;8055:6;8011:71;:::i;:::-;7867:222;;;;:::o;8095:210::-;8182:4;8220:2;8209:9;8205:18;8197:26;;8233:65;8295:1;8284:9;8280:17;8271:6;8233:65;:::i;:::-;8095:210;;;;:::o;8311:313::-;8424:4;8462:2;8451:9;8447:18;8439:26;;8511:9;8505:4;8501:20;8497:1;8486:9;8482:17;8475:47;8539:78;8612:4;8603:6;8539:78;:::i;:::-;8531:86;;8311:313;;;;:::o;8630:419::-;8796:4;8834:2;8823:9;8819:18;8811:26;;8883:9;8877:4;8873:20;8869:1;8858:9;8854:17;8847:47;8911:131;9037:4;8911:131;:::i;:::-;8903:139;;8630:419;;;:::o;9055:::-;9221:4;9259:2;9248:9;9244:18;9236:26;;9308:9;9302:4;9298:20;9294:1;9283:9;9279:17;9272:47;9336:131;9462:4;9336:131;:::i;:::-;9328:139;;9055:419;;;:::o;9480:::-;9646:4;9684:2;9673:9;9669:18;9661:26;;9733:9;9727:4;9723:20;9719:1;9708:9;9704:17;9697:47;9761:131;9887:4;9761:131;:::i;:::-;9753:139;;9480:419;;;:::o;9905:::-;10071:4;10109:2;10098:9;10094:18;10086:26;;10158:9;10152:4;10148:20;10144:1;10133:9;10129:17;10122:47;10186:131;10312:4;10186:131;:::i;:::-;10178:139;;9905:419;;;:::o;10330:::-;10496:4;10534:2;10523:9;10519:18;10511:26;;10583:9;10577:4;10573:20;10569:1;10558:9;10554:17;10547:47;10611:131;10737:4;10611:131;:::i;:::-;10603:139;;10330:419;;;:::o;10755:::-;10921:4;10959:2;10948:9;10944:18;10936:26;;11008:9;11002:4;10998:20;10994:1;10983:9;10979:17;10972:47;11036:131;11162:4;11036:131;:::i;:::-;11028:139;;10755:419;;;:::o;11180:::-;11346:4;11384:2;11373:9;11369:18;11361:26;;11433:9;11427:4;11423:20;11419:1;11408:9;11404:17;11397:47;11461:131;11587:4;11461:131;:::i;:::-;11453:139;;11180:419;;;:::o;11605:::-;11771:4;11809:2;11798:9;11794:18;11786:26;;11858:9;11852:4;11848:20;11844:1;11833:9;11829:17;11822:47;11886:131;12012:4;11886:131;:::i;:::-;11878:139;;11605:419;;;:::o;12030:::-;12196:4;12234:2;12223:9;12219:18;12211:26;;12283:9;12277:4;12273:20;12269:1;12258:9;12254:17;12247:47;12311:131;12437:4;12311:131;:::i;:::-;12303:139;;12030:419;;;:::o;12455:::-;12621:4;12659:2;12648:9;12644:18;12636:26;;12708:9;12702:4;12698:20;12694:1;12683:9;12679:17;12672:47;12736:131;12862:4;12736:131;:::i;:::-;12728:139;;12455:419;;;:::o;12880:::-;13046:4;13084:2;13073:9;13069:18;13061:26;;13133:9;13127:4;13123:20;13119:1;13108:9;13104:17;13097:47;13161:131;13287:4;13161:131;:::i;:::-;13153:139;;12880:419;;;:::o;13305:::-;13471:4;13509:2;13498:9;13494:18;13486:26;;13558:9;13552:4;13548:20;13544:1;13533:9;13529:17;13522:47;13586:131;13712:4;13586:131;:::i;:::-;13578:139;;13305:419;;;:::o;13730:222::-;13823:4;13861:2;13850:9;13846:18;13838:26;;13874:71;13942:1;13931:9;13927:17;13918:6;13874:71;:::i;:::-;13730:222;;;;:::o;13958:214::-;14047:4;14085:2;14074:9;14070:18;14062:26;;14098:67;14162:1;14151:9;14147:17;14138:6;14098:67;:::i;:::-;13958:214;;;;:::o;14259:99::-;14311:6;14345:5;14339:12;14329:22;;14259:99;;;:::o;14364:169::-;14448:11;14482:6;14477:3;14470:19;14522:4;14517:3;14513:14;14498:29;;14364:169;;;;:::o;14539:305::-;14579:3;14598:20;14616:1;14598:20;:::i;:::-;14593:25;;14632:20;14650:1;14632:20;:::i;:::-;14627:25;;14786:1;14718:66;14714:74;14711:1;14708:81;14705:107;;;14792:18;;:::i;:::-;14705:107;14836:1;14833;14829:9;14822:16;;14539:305;;;;:::o;14850:191::-;14890:4;14910:20;14928:1;14910:20;:::i;:::-;14905:25;;14944:20;14962:1;14944:20;:::i;:::-;14939:25;;14983:1;14980;14977:8;14974:34;;;14988:18;;:::i;:::-;14974:34;15033:1;15030;15026:9;15018:17;;14850:191;;;;:::o;15047:96::-;15084:7;15113:24;15131:5;15113:24;:::i;:::-;15102:35;;15047:96;;;:::o;15149:90::-;15183:7;15226:5;15219:13;15212:21;15201:32;;15149:90;;;:::o;15245:126::-;15282:7;15322:42;15315:5;15311:54;15300:65;;15245:126;;;:::o;15377:77::-;15414:7;15443:5;15432:16;;15377:77;;;:::o;15460:86::-;15495:7;15535:4;15528:5;15524:16;15513:27;;15460:86;;;:::o;15552:307::-;15620:1;15630:113;15644:6;15641:1;15638:13;15630:113;;;15729:1;15724:3;15720:11;15714:18;15710:1;15705:3;15701:11;15694:39;15666:2;15663:1;15659:10;15654:15;;15630:113;;;15761:6;15758:1;15755:13;15752:101;;;15841:1;15832:6;15827:3;15823:16;15816:27;15752:101;15601:258;15552:307;;;:::o;15865:320::-;15909:6;15946:1;15940:4;15936:12;15926:22;;15993:1;15987:4;15983:12;16014:18;16004:81;;16070:4;16062:6;16058:17;16048:27;;16004:81;16132:2;16124:6;16121:14;16101:18;16098:38;16095:84;;;16151:18;;:::i;:::-;16095:84;15916:269;15865:320;;;:::o;16191:180::-;16239:77;16236:1;16229:88;16336:4;16333:1;16326:15;16360:4;16357:1;16350:15;16377:180;16425:77;16422:1;16415:88;16522:4;16519:1;16512:15;16546:4;16543:1;16536:15;16686:117;16795:1;16792;16785:12;16809:102;16850:6;16901:2;16897:7;16892:2;16885:5;16881:14;16877:28;16867:38;;16809:102;;;:::o;16917:222::-;17057:34;17053:1;17045:6;17041:14;17034:58;17126:5;17121:2;17113:6;17109:15;17102:30;16917:222;:::o;17145:221::-;17285:34;17281:1;17273:6;17269:14;17262:58;17354:4;17349:2;17341:6;17337:15;17330:29;17145:221;:::o;17372:225::-;17512:34;17508:1;17500:6;17496:14;17489:58;17581:8;17576:2;17568:6;17564:15;17557:33;17372:225;:::o;17603:221::-;17743:34;17739:1;17731:6;17727:14;17720:58;17812:4;17807:2;17799:6;17795:15;17788:29;17603:221;:::o;17830:179::-;17970:31;17966:1;17958:6;17954:14;17947:55;17830:179;:::o;18015:225::-;18155:34;18151:1;18143:6;18139:14;18132:58;18224:8;18219:2;18211:6;18207:15;18200:33;18015:225;:::o;18246:182::-;18386:34;18382:1;18374:6;18370:14;18363:58;18246:182;:::o;18434:220::-;18574:34;18570:1;18562:6;18558:14;18551:58;18643:3;18638:2;18630:6;18626:15;18619:28;18434:220;:::o;18660:224::-;18800:34;18796:1;18788:6;18784:14;18777:58;18869:7;18864:2;18856:6;18852:15;18845:32;18660:224;:::o;18890:223::-;19030:34;19026:1;19018:6;19014:14;19007:58;19099:6;19094:2;19086:6;19082:15;19075:31;18890:223;:::o;19119:224::-;19259:34;19255:1;19247:6;19243:14;19236:58;19328:7;19323:2;19315:6;19311:15;19304:32;19119:224;:::o;19349:181::-;19489:33;19485:1;19477:6;19473:14;19466:57;19349:181;:::o;19536:122::-;19609:24;19627:5;19609:24;:::i;:::-;19602:5;19599:35;19589:63;;19648:1;19645;19638:12;19589:63;19536:122;:::o;19664:::-;19737:24;19755:5;19737:24;:::i;:::-;19730:5;19727:35;19717:63;;19776:1;19773;19766:12;19717:63;19664:122;:::o
Swarm Source
ipfs://24b33ed0303134cb1174bafb06bb0d6f92a9a27099652f9aeff26b60970917c1