Polygon Sponsored slots available. Book your slot here!
Contract Overview
Balance:
0 MATIC
MATIC Value:
$0.00
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x13572ff51a408776d602869269a278552aee8daba1efdd12b2914e1d28b8ee9d | 0x60806040 | 23732597 | 166 days 7 hrs ago | 0xc090446b126438fe1da63ef43ad4ad7aad4391db | IN | Create: NOVAERA | 0 MATIC | 0.06374784 |
[ Download CSV Export ]
Contract Name:
NOVAERA
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-01-15 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/[email protected]/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.7; /** * @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/[email protected]/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @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/[email protected]/security/Pausable.sol // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) /** * @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/[email protected]/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) /** * @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/[email protected]/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) /** * @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/[email protected]/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Burnable.sol) /** * @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: contract-52305bf9ff.sol contract NOVAERA is ERC20, ERC20Burnable, Pausable, Ownable { constructor() ERC20("NOVAERA", "NVE") { _mint(msg.sender, 1000000 * 10 ** decimals()); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function mint(address to, uint256 amount) public onlyOwner { _mint(to, amount); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPaused override { super._beforeTokenTransfer(from, 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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600781526020017f4e4f5641455241000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4e5645000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000413565b508060049080519060200190620000af92919062000413565b5050506000600560006101000a81548160ff021916908315150217905550620000ed620000e16200013260201b60201c565b6200013a60201b60201c565b6200012c33620001026200020060201b60201c565b600a6200011091906200064c565b620f424062000120919062000789565b6200020960201b60201c565b620008f4565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200027c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002739062000544565b60405180910390fd5b62000290600083836200038260201b60201c565b8060026000828254620002a4919062000594565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002fb919062000594565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000362919062000566565b60405180910390a36200037e60008383620003f260201b60201c565b5050565b62000392620003f760201b60201c565b15620003d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003cc9062000522565b60405180910390fd5b620003ed8383836200040e60201b62000c7a1760201c565b505050565b505050565b6000600560009054906101000a900460ff16905090565b505050565b828054620004219062000801565b90600052602060002090601f01602090048101928262000445576000855562000491565b82601f106200046057805160ff191683800117855562000491565b8280016001018555821562000491579182015b828111156200049057825182559160200191906001019062000473565b5b509050620004a09190620004a4565b5090565b5b80821115620004bf576000816000905550600101620004a5565b5090565b6000620004d260108362000583565b9150620004df82620008a2565b602082019050919050565b6000620004f9601f8362000583565b91506200050682620008cb565b602082019050919050565b6200051c81620007ea565b82525050565b600060208201905081810360008301526200053d81620004c3565b9050919050565b600060208201905081810360008301526200055f81620004ea565b9050919050565b60006020820190506200057d600083018462000511565b92915050565b600082825260208201905092915050565b6000620005a182620007ea565b9150620005ae83620007ea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005e657620005e562000837565b5b828201905092915050565b6000808291508390505b600185111562000643578086048111156200061b576200061a62000837565b5b60018516156200062b5780820291505b80810290506200063b8562000895565b9450620005fb565b94509492505050565b60006200065982620007ea565b91506200066683620007f4565b9250620006957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200069d565b905092915050565b600082620006af576001905062000782565b81620006bf576000905062000782565b8160018114620006d85760028114620006e35762000719565b600191505062000782565b60ff841115620006f857620006f762000837565b5b8360020a91508482111562000712576200071162000837565b5b5062000782565b5060208310610133831016604e8410600b8410161715620007535782820a9050838111156200074d576200074c62000837565b5b62000782565b620007628484846001620005f1565b925090508184048111156200077c576200077b62000837565b5b81810290505b9392505050565b60006200079682620007ea565b9150620007a383620007ea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007df57620007de62000837565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200081a57607f821691505b6020821081141562000831576200083062000866565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6122fa80620009046000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102f9578063a457c2d714610317578063a9059cbb14610347578063dd62ed3e14610377578063f2fde38b146103a75761012c565b806370a082311461027b578063715018a6146102ab57806379cc6790146102b55780638456cb59146102d15780638da5cb5b146102db5761012c565b806339509351116100f457806339509351146101eb5780633f4ba83a1461021b57806340c10f191461022557806342966c68146102415780635c975abb1461025d5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103c3565b6040516101469190611a81565b60405180910390f35b6101696004803603810190610164919061175c565b610455565b6040516101769190611a66565b60405180910390f35b610187610473565b6040516101949190611c83565b60405180910390f35b6101b760048036038101906101b29190611709565b61047d565b6040516101c49190611a66565b60405180910390f35b6101d5610575565b6040516101e29190611c9e565b60405180910390f35b6102056004803603810190610200919061175c565b61057e565b6040516102129190611a66565b60405180910390f35b61022361062a565b005b61023f600480360381019061023a919061175c565b6106b0565b005b61025b6004803603810190610256919061179c565b61073a565b005b61026561074e565b6040516102729190611a66565b60405180910390f35b6102956004803603810190610290919061169c565b610765565b6040516102a29190611c83565b60405180910390f35b6102b36107ad565b005b6102cf60048036038101906102ca919061175c565b610835565b005b6102d96108b0565b005b6102e3610936565b6040516102f09190611a4b565b60405180910390f35b610301610960565b60405161030e9190611a81565b60405180910390f35b610331600480360381019061032c919061175c565b6109f2565b60405161033e9190611a66565b60405180910390f35b610361600480360381019061035c919061175c565b610add565b60405161036e9190611a66565b60405180910390f35b610391600480360381019061038c91906116c9565b610afb565b60405161039e9190611c83565b60405180910390f35b6103c160048036038101906103bc919061169c565b610b82565b005b6060600380546103d290611de7565b80601f01602080910402602001604051908101604052809291908181526020018280546103fe90611de7565b801561044b5780601f106104205761010080835404028352916020019161044b565b820191906000526020600020905b81548152906001019060200180831161042e57829003601f168201915b5050505050905090565b6000610469610462610c7f565b8484610c87565b6001905092915050565b6000600254905090565b600061048a848484610e52565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d5610c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054c90611b83565b60405180910390fd5b61056985610561610c7f565b858403610c87565b60019150509392505050565b60006012905090565b600061062061058b610c7f565b848460016000610599610c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461061b9190611cd5565b610c87565b6001905092915050565b610632610c7f565b73ffffffffffffffffffffffffffffffffffffffff16610650610936565b73ffffffffffffffffffffffffffffffffffffffff16146106a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069d90611ba3565b60405180910390fd5b6106ae6110d3565b565b6106b8610c7f565b73ffffffffffffffffffffffffffffffffffffffff166106d6610936565b73ffffffffffffffffffffffffffffffffffffffff161461072c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072390611ba3565b60405180910390fd5b6107368282611175565b5050565b61074b610745610c7f565b826112d5565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107b5610c7f565b73ffffffffffffffffffffffffffffffffffffffff166107d3610936565b73ffffffffffffffffffffffffffffffffffffffff1614610829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082090611ba3565b60405180910390fd5b61083360006114ac565b565b600061084883610843610c7f565b610afb565b90508181101561088d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088490611bc3565b60405180910390fd5b6108a183610899610c7f565b848403610c87565b6108ab83836112d5565b505050565b6108b8610c7f565b73ffffffffffffffffffffffffffffffffffffffff166108d6610936565b73ffffffffffffffffffffffffffffffffffffffff161461092c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092390611ba3565b60405180910390fd5b610934611572565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461096f90611de7565b80601f016020809104026020016040519081016040528092919081815260200182805461099b90611de7565b80156109e85780601f106109bd576101008083540402835291602001916109e8565b820191906000526020600020905b8154815290600101906020018083116109cb57829003601f168201915b5050505050905090565b60008060016000610a01610c7f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610abe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab590611c43565b60405180910390fd5b610ad2610ac9610c7f565b85858403610c87565b600191505092915050565b6000610af1610aea610c7f565b8484610e52565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b8a610c7f565b73ffffffffffffffffffffffffffffffffffffffff16610ba8610936565b73ffffffffffffffffffffffffffffffffffffffff1614610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf590611ba3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590611b03565b60405180910390fd5b610c77816114ac565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cee90611c23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e90611b23565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e459190611c83565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb990611c03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990611aa3565b60405180910390fd5b610f3d838383611615565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fba90611b43565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110569190611cd5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110ba9190611c83565b60405180910390a36110cd84848461166d565b50505050565b6110db61074e565b61111a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111190611ac3565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61115e610c7f565b60405161116b9190611a4b565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dc90611c63565b60405180910390fd5b6111f160008383611615565b80600260008282546112039190611cd5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112589190611cd5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112bd9190611c83565b60405180910390a36112d16000838361166d565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c90611be3565b60405180910390fd5b61135182600083611615565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90611ae3565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461142e9190611d2b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114939190611c83565b60405180910390a36114a78360008461166d565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61157a61074e565b156115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b190611b63565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115fe610c7f565b60405161160b9190611a4b565b60405180910390a1565b61161d61074e565b1561165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490611b63565b60405180910390fd5b611668838383610c7a565b505050565b505050565b60008135905061168181612296565b92915050565b600081359050611696816122ad565b92915050565b6000602082840312156116b2576116b1611e77565b5b60006116c084828501611672565b91505092915050565b600080604083850312156116e0576116df611e77565b5b60006116ee85828601611672565b92505060206116ff85828601611672565b9150509250929050565b60008060006060848603121561172257611721611e77565b5b600061173086828701611672565b935050602061174186828701611672565b925050604061175286828701611687565b9150509250925092565b6000806040838503121561177357611772611e77565b5b600061178185828601611672565b925050602061179285828601611687565b9150509250929050565b6000602082840312156117b2576117b1611e77565b5b60006117c084828501611687565b91505092915050565b6117d281611d5f565b82525050565b6117e181611d71565b82525050565b60006117f282611cb9565b6117fc8185611cc4565b935061180c818560208601611db4565b61181581611e7c565b840191505092915050565b600061182d602383611cc4565b915061183882611e8d565b604082019050919050565b6000611850601483611cc4565b915061185b82611edc565b602082019050919050565b6000611873602283611cc4565b915061187e82611f05565b604082019050919050565b6000611896602683611cc4565b91506118a182611f54565b604082019050919050565b60006118b9602283611cc4565b91506118c482611fa3565b604082019050919050565b60006118dc602683611cc4565b91506118e782611ff2565b604082019050919050565b60006118ff601083611cc4565b915061190a82612041565b602082019050919050565b6000611922602883611cc4565b915061192d8261206a565b604082019050919050565b6000611945602083611cc4565b9150611950826120b9565b602082019050919050565b6000611968602483611cc4565b9150611973826120e2565b604082019050919050565b600061198b602183611cc4565b915061199682612131565b604082019050919050565b60006119ae602583611cc4565b91506119b982612180565b604082019050919050565b60006119d1602483611cc4565b91506119dc826121cf565b604082019050919050565b60006119f4602583611cc4565b91506119ff8261221e565b604082019050919050565b6000611a17601f83611cc4565b9150611a228261226d565b602082019050919050565b611a3681611d9d565b82525050565b611a4581611da7565b82525050565b6000602082019050611a6060008301846117c9565b92915050565b6000602082019050611a7b60008301846117d8565b92915050565b60006020820190508181036000830152611a9b81846117e7565b905092915050565b60006020820190508181036000830152611abc81611820565b9050919050565b60006020820190508181036000830152611adc81611843565b9050919050565b60006020820190508181036000830152611afc81611866565b9050919050565b60006020820190508181036000830152611b1c81611889565b9050919050565b60006020820190508181036000830152611b3c816118ac565b9050919050565b60006020820190508181036000830152611b5c816118cf565b9050919050565b60006020820190508181036000830152611b7c816118f2565b9050919050565b60006020820190508181036000830152611b9c81611915565b9050919050565b60006020820190508181036000830152611bbc81611938565b9050919050565b60006020820190508181036000830152611bdc8161195b565b9050919050565b60006020820190508181036000830152611bfc8161197e565b9050919050565b60006020820190508181036000830152611c1c816119a1565b9050919050565b60006020820190508181036000830152611c3c816119c4565b9050919050565b60006020820190508181036000830152611c5c816119e7565b9050919050565b60006020820190508181036000830152611c7c81611a0a565b9050919050565b6000602082019050611c986000830184611a2d565b92915050565b6000602082019050611cb36000830184611a3c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611ce082611d9d565b9150611ceb83611d9d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d2057611d1f611e19565b5b828201905092915050565b6000611d3682611d9d565b9150611d4183611d9d565b925082821015611d5457611d53611e19565b5b828203905092915050565b6000611d6a82611d7d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611dd2578082015181840152602081019050611db7565b83811115611de1576000848401525b50505050565b60006002820490506001821680611dff57607f821691505b60208210811415611e1357611e12611e48565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61229f81611d5f565b81146122aa57600080fd5b50565b6122b681611d9d565b81146122c157600080fd5b5056fea2646970667358221220fb449e2104f7c3b0d10c937ac47cd3c04dfe531e76d80220655bfadbdcd4cef264736f6c63430008070033
Deployed ByteCode Sourcemap
22804:624:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11457:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13624:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12577:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14275:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12419:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15176:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23050:65;;;:::i;:::-;;23123:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21969:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4560:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12748:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2628:103;;;:::i;:::-;;22379:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22981:61;;;:::i;:::-;;1977:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11676:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15894:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13088:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13326:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2886:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11457:100;11511:13;11544:5;11537:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11457:100;:::o;13624:169::-;13707:4;13724:39;13733:12;:10;:12::i;:::-;13747:7;13756:6;13724:8;:39::i;:::-;13781:4;13774:11;;13624:169;;;;:::o;12577:108::-;12638:7;12665:12;;12658:19;;12577:108;:::o;14275:492::-;14415:4;14432:36;14442:6;14450:9;14461:6;14432:9;:36::i;:::-;14481:24;14508:11;:19;14520:6;14508:19;;;;;;;;;;;;;;;:33;14528:12;:10;:12::i;:::-;14508:33;;;;;;;;;;;;;;;;14481:60;;14580:6;14560:16;:26;;14552:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;14667:57;14676:6;14684:12;:10;:12::i;:::-;14717:6;14698:16;:25;14667:8;:57::i;:::-;14755:4;14748:11;;;14275:492;;;;;:::o;12419:93::-;12477:5;12502:2;12495:9;;12419:93;:::o;15176:215::-;15264:4;15281:80;15290:12;:10;:12::i;:::-;15304:7;15350:10;15313:11;:25;15325:12;:10;:12::i;:::-;15313:25;;;;;;;;;;;;;;;:34;15339:7;15313:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;15281:8;:80::i;:::-;15379:4;15372:11;;15176:215;;;;:::o;23050:65::-;2208:12;:10;:12::i;:::-;2197:23;;:7;:5;:7::i;:::-;:23;;;2189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23097:10:::1;:8;:10::i;:::-;23050:65::o:0;23123:95::-;2208:12;:10;:12::i;:::-;2197:23;;:7;:5;:7::i;:::-;:23;;;2189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23193:17:::1;23199:2;23203:6;23193:5;:17::i;:::-;23123:95:::0;;:::o;21969:91::-;22025:27;22031:12;:10;:12::i;:::-;22045:6;22025:5;:27::i;:::-;21969:91;:::o;4560:86::-;4607:4;4631:7;;;;;;;;;;;4624:14;;4560:86;:::o;12748:127::-;12822:7;12849:9;:18;12859:7;12849:18;;;;;;;;;;;;;;;;12842:25;;12748:127;;;:::o;2628:103::-;2208:12;:10;:12::i;:::-;2197:23;;:7;:5;:7::i;:::-;:23;;;2189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2693:30:::1;2720:1;2693:18;:30::i;:::-;2628:103::o:0;22379:368::-;22456:24;22483:32;22493:7;22502:12;:10;:12::i;:::-;22483:9;:32::i;:::-;22456:59;;22554:6;22534:16;:26;;22526:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;22637:58;22646:7;22655:12;:10;:12::i;:::-;22688:6;22669:16;:25;22637:8;:58::i;:::-;22717:22;22723:7;22732:6;22717:5;:22::i;:::-;22445:302;22379:368;;:::o;22981:61::-;2208:12;:10;:12::i;:::-;2197:23;;:7;:5;:7::i;:::-;:23;;;2189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23026:8:::1;:6;:8::i;:::-;22981:61::o:0;1977:87::-;2023:7;2050:6;;;;;;;;;;;2043:13;;1977:87;:::o;11676:104::-;11732:13;11765:7;11758:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11676:104;:::o;15894:413::-;15987:4;16004:24;16031:11;:25;16043:12;:10;:12::i;:::-;16031:25;;;;;;;;;;;;;;;:34;16057:7;16031:34;;;;;;;;;;;;;;;;16004:61;;16104:15;16084:16;:35;;16076:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16197:67;16206:12;:10;:12::i;:::-;16220:7;16248:15;16229:16;:34;16197:8;:67::i;:::-;16295:4;16288:11;;;15894:413;;;;:::o;13088:175::-;13174:4;13191:42;13201:12;:10;:12::i;:::-;13215:9;13226:6;13191:9;:42::i;:::-;13251:4;13244:11;;13088:175;;;;:::o;13326:151::-;13415:7;13442:11;:18;13454:5;13442:18;;;;;;;;;;;;;;;:27;13461:7;13442:27;;;;;;;;;;;;;;;;13435:34;;13326:151;;;;:::o;2886:201::-;2208:12;:10;:12::i;:::-;2197:23;;:7;:5;:7::i;:::-;:23;;;2189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2995:1:::1;2975:22;;:8;:22;;;;2967:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3051:28;3070:8;3051:18;:28::i;:::-;2886:201:::0;:::o;20558:125::-;;;;:::o;718:98::-;771:7;798:10;791:17;;718:98;:::o;19578:380::-;19731:1;19714:19;;:5;:19;;;;19706:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19812:1;19793:21;;:7;:21;;;;19785:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19896:6;19866:11;:18;19878:5;19866:18;;;;;;;;;;;;;;;:27;19885:7;19866:27;;;;;;;;;;;;;;;:36;;;;19934:7;19918:32;;19927:5;19918:32;;;19943:6;19918:32;;;;;;:::i;:::-;;;;;;;;19578:380;;;:::o;16797:733::-;16955:1;16937:20;;:6;:20;;;;16929:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;17039:1;17018:23;;:9;:23;;;;17010:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17094:47;17115:6;17123:9;17134:6;17094:20;:47::i;:::-;17154:21;17178:9;:17;17188:6;17178:17;;;;;;;;;;;;;;;;17154:41;;17231:6;17214:13;:23;;17206:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;17352:6;17336:13;:22;17316:9;:17;17326:6;17316:17;;;;;;;;;;;;;;;:42;;;;17404:6;17380:9;:20;17390:9;17380:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17445:9;17428:35;;17437:6;17428:35;;;17456:6;17428:35;;;;;;:::i;:::-;;;;;;;;17476:46;17496:6;17504:9;17515:6;17476:19;:46::i;:::-;16918:612;16797:733;;;:::o;5619:120::-;5163:8;:6;:8::i;:::-;5155:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;5688:5:::1;5678:7;;:15;;;;;;;;;;;;;;;;;;5709:22;5718:12;:10;:12::i;:::-;5709:22;;;;;;:::i;:::-;;;;;;;;5619:120::o:0;17817:399::-;17920:1;17901:21;;:7;:21;;;;17893:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;17971:49;18000:1;18004:7;18013:6;17971:20;:49::i;:::-;18049:6;18033:12;;:22;;;;;;;:::i;:::-;;;;;;;;18088:6;18066:9;:18;18076:7;18066:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;18131:7;18110:37;;18127:1;18110:37;;;18140:6;18110:37;;;;;;:::i;:::-;;;;;;;;18160:48;18188:1;18192:7;18201:6;18160:19;:48::i;:::-;17817:399;;:::o;18549:591::-;18652:1;18633:21;;:7;:21;;;;18625:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18705:49;18726:7;18743:1;18747:6;18705:20;:49::i;:::-;18767:22;18792:9;:18;18802:7;18792:18;;;;;;;;;;;;;;;;18767:43;;18847:6;18829:14;:24;;18821:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;18966:6;18949:14;:23;18928:9;:18;18938:7;18928:18;;;;;;;;;;;;;;;:44;;;;19010:6;18994:12;;:22;;;;;;;:::i;:::-;;;;;;;;19060:1;19034:37;;19043:7;19034:37;;;19064:6;19034:37;;;;;;:::i;:::-;;;;;;;;19084:48;19104:7;19121:1;19125:6;19084:19;:48::i;:::-;18614:526;18549:591;;:::o;3247:191::-;3321:16;3340:6;;;;;;;;;;;3321:25;;3366:8;3357:6;;:17;;;;;;;;;;;;;;;;;;3421:8;3390:40;;3411:8;3390:40;;;;;;;;;;;;3310:128;3247:191;:::o;5360:118::-;4886:8;:6;:8::i;:::-;4885:9;4877:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;5430:4:::1;5420:7;;:14;;;;;;;;;;;;;;;;;;5450:20;5457:12;:10;:12::i;:::-;5450:20;;;;;;:::i;:::-;;;;;;;;5360:118::o:0;23226:199::-;4886:8;:6;:8::i;:::-;4885:9;4877:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;23373:44:::1;23400:4;23406:2;23410:6;23373:26;:44::i;:::-;23226:199:::0;;;:::o;21287: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:::-;7767:3;7788:67;7852:2;7847:3;7788:67;:::i;:::-;7781:74;;7864:93;7953:3;7864:93;:::i;:::-;7982:2;7977:3;7973:12;7966:19;;7625:366;;;:::o;7997:::-;8139:3;8160:67;8224:2;8219:3;8160:67;:::i;:::-;8153:74;;8236:93;8325:3;8236:93;:::i;:::-;8354:2;8349:3;8345:12;8338:19;;7997:366;;;:::o;8369:::-;8511:3;8532:67;8596:2;8591:3;8532:67;:::i;:::-;8525:74;;8608:93;8697:3;8608:93;:::i;:::-;8726:2;8721:3;8717:12;8710:19;;8369:366;;;:::o;8741:118::-;8828:24;8846:5;8828:24;:::i;:::-;8823:3;8816:37;8741:118;;:::o;8865:112::-;8948:22;8964:5;8948:22;:::i;:::-;8943:3;8936:35;8865:112;;:::o;8983:222::-;9076:4;9114:2;9103:9;9099:18;9091:26;;9127:71;9195:1;9184:9;9180:17;9171:6;9127:71;:::i;:::-;8983:222;;;;:::o;9211:210::-;9298:4;9336:2;9325:9;9321:18;9313:26;;9349:65;9411:1;9400:9;9396:17;9387:6;9349:65;:::i;:::-;9211:210;;;;:::o;9427:313::-;9540:4;9578:2;9567:9;9563:18;9555:26;;9627:9;9621:4;9617:20;9613:1;9602:9;9598:17;9591:47;9655:78;9728:4;9719:6;9655:78;:::i;:::-;9647:86;;9427:313;;;;:::o;9746:419::-;9912:4;9950:2;9939:9;9935:18;9927:26;;9999:9;9993:4;9989:20;9985:1;9974:9;9970:17;9963:47;10027:131;10153:4;10027:131;:::i;:::-;10019:139;;9746:419;;;:::o;10171:::-;10337:4;10375:2;10364:9;10360:18;10352:26;;10424:9;10418:4;10414:20;10410:1;10399:9;10395:17;10388:47;10452:131;10578:4;10452:131;:::i;:::-;10444:139;;10171:419;;;:::o;10596:::-;10762:4;10800:2;10789:9;10785:18;10777:26;;10849:9;10843:4;10839:20;10835:1;10824:9;10820:17;10813:47;10877:131;11003:4;10877:131;:::i;:::-;10869:139;;10596:419;;;:::o;11021:::-;11187:4;11225:2;11214:9;11210:18;11202:26;;11274:9;11268:4;11264:20;11260:1;11249:9;11245:17;11238:47;11302:131;11428:4;11302:131;:::i;:::-;11294:139;;11021:419;;;:::o;11446:::-;11612:4;11650:2;11639:9;11635:18;11627:26;;11699:9;11693:4;11689:20;11685:1;11674:9;11670:17;11663:47;11727:131;11853:4;11727:131;:::i;:::-;11719:139;;11446:419;;;:::o;11871:::-;12037:4;12075:2;12064:9;12060:18;12052:26;;12124:9;12118:4;12114:20;12110:1;12099:9;12095:17;12088:47;12152:131;12278:4;12152:131;:::i;:::-;12144:139;;11871:419;;;:::o;12296:::-;12462:4;12500:2;12489:9;12485:18;12477:26;;12549:9;12543:4;12539:20;12535:1;12524:9;12520:17;12513:47;12577:131;12703:4;12577:131;:::i;:::-;12569:139;;12296:419;;;:::o;12721:::-;12887:4;12925:2;12914:9;12910:18;12902:26;;12974:9;12968:4;12964:20;12960:1;12949:9;12945:17;12938:47;13002:131;13128:4;13002:131;:::i;:::-;12994:139;;12721:419;;;:::o;13146:::-;13312:4;13350:2;13339:9;13335:18;13327:26;;13399:9;13393:4;13389:20;13385:1;13374:9;13370:17;13363:47;13427:131;13553:4;13427:131;:::i;:::-;13419:139;;13146:419;;;:::o;13571:::-;13737:4;13775:2;13764:9;13760:18;13752:26;;13824:9;13818:4;13814:20;13810:1;13799:9;13795:17;13788:47;13852:131;13978:4;13852:131;:::i;:::-;13844:139;;13571:419;;;:::o;13996:::-;14162:4;14200:2;14189:9;14185:18;14177:26;;14249:9;14243:4;14239:20;14235:1;14224:9;14220:17;14213:47;14277:131;14403:4;14277:131;:::i;:::-;14269:139;;13996:419;;;:::o;14421:::-;14587:4;14625:2;14614:9;14610:18;14602:26;;14674:9;14668:4;14664:20;14660:1;14649:9;14645:17;14638:47;14702:131;14828:4;14702:131;:::i;:::-;14694:139;;14421:419;;;:::o;14846:::-;15012:4;15050:2;15039:9;15035:18;15027:26;;15099:9;15093:4;15089:20;15085:1;15074:9;15070:17;15063:47;15127:131;15253:4;15127:131;:::i;:::-;15119:139;;14846:419;;;:::o;15271:::-;15437:4;15475:2;15464:9;15460:18;15452:26;;15524:9;15518:4;15514:20;15510:1;15499:9;15495:17;15488:47;15552:131;15678:4;15552:131;:::i;:::-;15544:139;;15271:419;;;:::o;15696:::-;15862:4;15900:2;15889:9;15885:18;15877:26;;15949:9;15943:4;15939:20;15935:1;15924:9;15920:17;15913:47;15977:131;16103:4;15977:131;:::i;:::-;15969:139;;15696:419;;;:::o;16121:222::-;16214:4;16252:2;16241:9;16237:18;16229:26;;16265:71;16333:1;16322:9;16318:17;16309:6;16265:71;:::i;:::-;16121:222;;;;:::o;16349:214::-;16438:4;16476:2;16465:9;16461:18;16453:26;;16489:67;16553:1;16542:9;16538:17;16529:6;16489:67;:::i;:::-;16349:214;;;;:::o;16650:99::-;16702:6;16736:5;16730:12;16720:22;;16650:99;;;:::o;16755:169::-;16839:11;16873:6;16868:3;16861:19;16913:4;16908:3;16904:14;16889:29;;16755:169;;;;:::o;16930:305::-;16970:3;16989:20;17007:1;16989:20;:::i;:::-;16984:25;;17023:20;17041:1;17023:20;:::i;:::-;17018:25;;17177:1;17109:66;17105:74;17102:1;17099:81;17096:107;;;17183:18;;:::i;:::-;17096:107;17227:1;17224;17220:9;17213:16;;16930:305;;;;:::o;17241:191::-;17281:4;17301:20;17319:1;17301:20;:::i;:::-;17296:25;;17335:20;17353:1;17335:20;:::i;:::-;17330:25;;17374:1;17371;17368:8;17365:34;;;17379:18;;:::i;:::-;17365:34;17424:1;17421;17417:9;17409:17;;17241:191;;;;:::o;17438:96::-;17475:7;17504:24;17522:5;17504:24;:::i;:::-;17493:35;;17438:96;;;:::o;17540:90::-;17574:7;17617:5;17610:13;17603:21;17592:32;;17540:90;;;:::o;17636:126::-;17673:7;17713:42;17706:5;17702:54;17691:65;;17636:126;;;:::o;17768:77::-;17805:7;17834:5;17823:16;;17768:77;;;:::o;17851:86::-;17886:7;17926:4;17919:5;17915:16;17904:27;;17851:86;;;:::o;17943:307::-;18011:1;18021:113;18035:6;18032:1;18029:13;18021:113;;;18120:1;18115:3;18111:11;18105:18;18101:1;18096:3;18092:11;18085:39;18057:2;18054:1;18050:10;18045:15;;18021:113;;;18152:6;18149:1;18146:13;18143:101;;;18232:1;18223:6;18218:3;18214:16;18207:27;18143:101;17992:258;17943:307;;;:::o;18256:320::-;18300:6;18337:1;18331:4;18327:12;18317:22;;18384:1;18378:4;18374:12;18405:18;18395:81;;18461:4;18453:6;18449:17;18439:27;;18395:81;18523:2;18515:6;18512:14;18492:18;18489:38;18486:84;;;18542:18;;:::i;:::-;18486:84;18307:269;18256:320;;;:::o;18582:180::-;18630:77;18627:1;18620:88;18727:4;18724:1;18717:15;18751:4;18748:1;18741:15;18768:180;18816:77;18813:1;18806:88;18913:4;18910:1;18903:15;18937:4;18934:1;18927:15;19077:117;19186:1;19183;19176:12;19200:102;19241:6;19292:2;19288:7;19283:2;19276:5;19272:14;19268:28;19258:38;;19200:102;;;:::o;19308:222::-;19448:34;19444:1;19436:6;19432:14;19425:58;19517:5;19512:2;19504:6;19500:15;19493:30;19308:222;:::o;19536:170::-;19676:22;19672:1;19664:6;19660:14;19653:46;19536:170;:::o;19712:221::-;19852:34;19848:1;19840:6;19836:14;19829:58;19921:4;19916:2;19908:6;19904:15;19897:29;19712:221;:::o;19939:225::-;20079:34;20075:1;20067:6;20063:14;20056:58;20148:8;20143:2;20135:6;20131:15;20124:33;19939:225;:::o;20170:221::-;20310:34;20306:1;20298:6;20294:14;20287:58;20379:4;20374:2;20366:6;20362:15;20355:29;20170:221;:::o;20397:225::-;20537:34;20533:1;20525:6;20521:14;20514:58;20606:8;20601:2;20593:6;20589:15;20582:33;20397:225;:::o;20628:166::-;20768:18;20764:1;20756:6;20752:14;20745:42;20628:166;:::o;20800:227::-;20940:34;20936:1;20928:6;20924:14;20917:58;21009:10;21004:2;20996:6;20992:15;20985:35;20800:227;:::o;21033:182::-;21173:34;21169:1;21161:6;21157:14;21150:58;21033:182;:::o;21221:223::-;21361:34;21357:1;21349:6;21345:14;21338:58;21430:6;21425:2;21417:6;21413:15;21406:31;21221:223;:::o;21450:220::-;21590:34;21586:1;21578:6;21574:14;21567:58;21659:3;21654:2;21646:6;21642:15;21635:28;21450:220;:::o;21676:224::-;21816:34;21812:1;21804:6;21800:14;21793:58;21885:7;21880:2;21872:6;21868:15;21861:32;21676:224;:::o;21906:223::-;22046:34;22042:1;22034:6;22030:14;22023:58;22115:6;22110:2;22102:6;22098:15;22091:31;21906:223;:::o;22135:224::-;22275:34;22271:1;22263:6;22259:14;22252:58;22344:7;22339:2;22331:6;22327:15;22320:32;22135:224;:::o;22365:181::-;22505:33;22501:1;22493:6;22489:14;22482:57;22365:181;:::o;22552:122::-;22625:24;22643:5;22625:24;:::i;:::-;22618:5;22615:35;22605:63;;22664:1;22661;22654:12;22605:63;22552:122;:::o;22680:::-;22753:24;22771:5;22753:24;:::i;:::-;22746:5;22743:35;22733:63;;22792:1;22789;22782:12;22733:63;22680:122;:::o
Swarm Source
ipfs://fb449e2104f7c3b0d10c937ac47cd3c04dfe531e76d80220655bfadbdcd4cef2
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.