Contract Overview
Balance:
0 MATIC
MATIC Value:
$0.00
[ Download CSV Export ]
Contract Name:
SupernovaRewards
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-05-17 */ // File: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/[email protected]/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/[email protected]/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/[email protected]/token/ERC1155/IERC1155Receiver.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/[email protected]/token/ERC1155/IERC1155.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; } // File: @openzeppelin/[email protected]/token/ERC1155/extensions/IERC1155MetadataURI.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); } // File: @openzeppelin/[email protected]/token/ERC1155/ERC1155.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } } // File: @openzeppelin/[email protected]/token/ERC1155/extensions/ERC1155Supply.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol) pragma solidity ^0.8.0; /** * @dev Extension of ERC1155 that adds tracking of total supply per id. * * Useful for scenarios where Fungible and Non-fungible tokens have to be * clearly identified. Note: While a totalSupply of 1 might mean the * corresponding is an NFT, there is no guarantees that no other token with the * same id are not going to be minted. */ abstract contract ERC1155Supply is ERC1155 { mapping(uint256 => uint256) private _totalSupply; /** * @dev Total amount of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Indicates whether any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return ERC1155Supply.totalSupply(id) > 0; } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] -= amounts[i]; } } } } // File: @openzeppelin/[email protected]/token/ERC1155/extensions/ERC1155Burnable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } } // File: SupernovaRewards.sol pragma solidity ^0.8.4; /// @custom:security-contact [email protected] contract SupernovaRewards is ERC1155, Ownable, ERC1155Burnable, ERC1155Supply { constructor() ERC1155("https://sunday.games/nft/supernova/rewards/{id}.json") {} function setURI(string memory newuri) public onlyOwner { _setURI(newuri); } function mint(address account, uint256 id, uint256 amount, bytes memory data) public onlyOwner { _mint(account, id, amount, data); } function mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) public onlyOwner { _mintBatch(to, ids, amounts, data); } // The following functions are overrides required by Solidity. function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal override(ERC1155, ERC1155Supply) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051806060016040528060348152602001620041fb603491396200003d816200006460201b60201c565b506200005e620000526200008060201b60201c565b6200008860201b60201c565b62000263565b80600290805190602001906200007c9291906200014e565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200015c90620001fe565b90600052602060002090601f016020900481019282620001805760008555620001cc565b82601f106200019b57805160ff1916838001178555620001cc565b82800160010185558215620001cc579182015b82811115620001cb578251825591602001919060010190620001ae565b5b509050620001db9190620001df565b5090565b5b80821115620001fa576000816000905550600101620001e0565b5090565b600060028204905060018216806200021757607f821691505b602082108114156200022e576200022d62000234565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613f8880620002736000396000f3fe608060405234801561001057600080fd5b50600436106101155760003560e01c8063715018a6116100a2578063bd85b03911610071578063bd85b039146102da578063e985e9c51461030a578063f242432a1461033a578063f2fde38b14610356578063f5298aca1461037257610115565b8063715018a61461027a578063731133e9146102845780638da5cb5b146102a0578063a22cb465146102be57610115565b80631f7fdffa116100e95780631f7fdffa146101c65780632eb2c2d6146101e25780634e1273f4146101fe5780634f558e791461022e5780636b20c4541461025e57610115565b8062fdd58e1461011a57806301ffc9a71461014a57806302fe53051461017a5780630e89341c14610196575b600080fd5b610134600480360381019061012f9190612ce6565b61038e565b6040516101419190613598565b60405180910390f35b610164600480360381019061015f9190612e58565b610457565b604051610171919061337b565b60405180910390f35b610194600480360381019061018f9190612eaa565b610539565b005b6101b060048036038101906101ab9190612eeb565b6105c1565b6040516101bd9190613396565b60405180910390f35b6101e060048036038101906101db9190612bff565b610655565b005b6101fc60048036038101906101f79190612a32565b6106e3565b005b61021860048036038101906102139190612dec565b610784565b6040516102259190613322565b60405180910390f35b61024860048036038101906102439190612eeb565b610935565b604051610255919061337b565b60405180910390f35b61027860048036038101906102739190612b80565b610949565b005b6102826109e6565b005b61029e60048036038101906102999190612d71565b610a6e565b005b6102a8610afc565b6040516102b59190613245565b60405180910390f35b6102d860048036038101906102d39190612caa565b610b26565b005b6102f460048036038101906102ef9190612eeb565b610b3c565b6040516103019190613598565b60405180910390f35b610324600480360381019061031f91906129f6565b610b59565b604051610331919061337b565b60405180910390f35b610354600480360381019061034f9190612af1565b610bed565b005b610370600480360381019061036b91906129cd565b610c8e565b005b61038c60048036038101906103879190612d22565b610d86565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156103ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f6906133f8565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061052257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610532575061053182610e23565b5b9050919050565b610541610e8d565b73ffffffffffffffffffffffffffffffffffffffff1661055f610afc565b73ffffffffffffffffffffffffffffffffffffffff16146105b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ac906134f8565b60405180910390fd5b6105be81610e95565b50565b6060600280546105d09061386c565b80601f01602080910402602001604051908101604052809291908181526020018280546105fc9061386c565b80156106495780601f1061061e57610100808354040283529160200191610649565b820191906000526020600020905b81548152906001019060200180831161062c57829003601f168201915b50505050509050919050565b61065d610e8d565b73ffffffffffffffffffffffffffffffffffffffff1661067b610afc565b73ffffffffffffffffffffffffffffffffffffffff16146106d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c8906134f8565b60405180910390fd5b6106dd84848484610eaf565b50505050565b6106eb610e8d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061073157506107308561072b610e8d565b610b59565b5b610770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076790613498565b60405180910390fd5b61077d8585858585611119565b5050505050565b606081518351146107ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c190613538565b60405180910390fd5b6000835167ffffffffffffffff81111561080d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561083b5781602001602082028036833780820191505090505b50905060005b845181101561092a576108d4858281518110610886577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518583815181106108c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161038e565b82828151811061090d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610923906138cf565b9050610841565b508091505092915050565b60008061094183610b3c565b119050919050565b610951610e8d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610997575061099683610991610e8d565b610b59565b5b6109d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cd90613458565b60405180910390fd5b6109e1838383611479565b505050565b6109ee610e8d565b73ffffffffffffffffffffffffffffffffffffffff16610a0c610afc565b73ffffffffffffffffffffffffffffffffffffffff1614610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a59906134f8565b60405180910390fd5b610a6c6000611776565b565b610a76610e8d565b73ffffffffffffffffffffffffffffffffffffffff16610a94610afc565b73ffffffffffffffffffffffffffffffffffffffff1614610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae1906134f8565b60405180910390fd5b610af68484848461183c565b50505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610b38610b31610e8d565b83836119d2565b5050565b600060046000838152602001908152602001600020549050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610bf5610e8d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c3b5750610c3a85610c35610e8d565b610b59565b5b610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7190613458565b60405180910390fd5b610c878585858585611b3f565b5050505050565b610c96610e8d565b73ffffffffffffffffffffffffffffffffffffffff16610cb4610afc565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d01906134f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190613418565b60405180910390fd5b610d8381611776565b50565b610d8e610e8d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610dd45750610dd383610dce610e8d565b610b59565b5b610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90613458565b60405180910390fd5b610e1e838383611dc1565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8060029080519060200190610eab9291906126c5565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690613578565b60405180910390fd5b8151835114610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90613558565b60405180910390fd5b6000610f6d610e8d565b9050610f7e81600087878787611fde565b60005b845181101561108357838181518110610fc3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080878481518110611007577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611069919061372c565b92505081905550808061107b906138cf565b915050610f81565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516110fb929190613344565b60405180910390a461111281600087878787611ff4565b5050505050565b815183511461115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115490613558565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156111cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c490613478565b60405180910390fd5b60006111d7610e8d565b90506111e7818787878787611fde565b60005b84518110156113e457600085828151811061122e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611273577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b906134d8565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113c9919061372c565b92505081905550505050806113dd906138cf565b90506111ea565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161145b929190613344565b60405180910390a4611471818787878787611ff4565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e0906134b8565b60405180910390fd5b805182511461152d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152490613558565b60405180910390fd5b6000611537610e8d565b905061155781856000868660405180602001604052806000815250611fde565b60005b83518110156116f057600084828151811061159e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106115e3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90613438565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806116e8906138cf565b91505061155a565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611768929190613344565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390613578565b60405180910390fd5b60006118b6610e8d565b90506118d7816000876118c8886121db565b6118d1886121db565b87611fde565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611936919061372c565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516119b49291906135b3565b60405180910390a46119cb816000878787876122a1565b5050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3890613518565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b32919061337b565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba690613478565b60405180910390fd5b6000611bb9610e8d565b9050611bd9818787611bca886121db565b611bd3886121db565b87611fde565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611c70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c67906134d8565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d25919061372c565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611da29291906135b3565b60405180910390a4611db88288888888886122a1565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e28906134b8565b60405180910390fd5b6000611e3b610e8d565b9050611e6b81856000611e4d876121db565b611e56876121db565b60405180602001604052806000815250611fde565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990613438565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611fcf9291906135b3565b60405180910390a45050505050565b611fec868686868686612488565b505050505050565b6120138473ffffffffffffffffffffffffffffffffffffffff1661269a565b156121d3578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612059959493929190613260565b602060405180830381600087803b15801561207357600080fd5b505af19250505080156120a457506040513d601f19601f820116820180604052508101906120a19190612e81565b60015b61214a576120b06139a5565b806308c379a0141561210d57506120c5613e60565b806120d0575061210f565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121049190613396565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612141906133b8565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146121d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c8906133d8565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612220577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561224e5781602001602082028036833780820191505090505b509050828160008151811061228c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6122c08473ffffffffffffffffffffffffffffffffffffffff1661269a565b15612480578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016123069594939291906132c8565b602060405180830381600087803b15801561232057600080fd5b505af192505050801561235157506040513d601f19601f8201168201806040525081019061234e9190612e81565b60015b6123f75761235d6139a5565b806308c379a014156123ba5750612372613e60565b8061237d57506123bc565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b19190613396565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ee906133b8565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461247e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612475906133d8565b60405180910390fd5b505b505050505050565b6124968686868686866126bd565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156125945760005b835181101561259257828181518110612510577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160046000868481518110612555577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518152602001908152602001600020600082825461257a919061372c565b925050819055508061258b906138cf565b90506124ce565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126925760005b83518110156126905782818151811061260e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160046000868481518110612653577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008282546126789190613782565b9250508190555080612689906138cf565b90506125cc565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b8280546126d19061386c565b90600052602060002090601f0160209004810192826126f3576000855561273a565b82601f1061270c57805160ff191683800117855561273a565b8280016001018555821561273a579182015b8281111561273957825182559160200191906001019061271e565b5b509050612747919061274b565b5090565b5b8082111561276457600081600090555060010161274c565b5090565b600061277b61277684613601565b6135dc565b9050808382526020820190508285602086028201111561279a57600080fd5b60005b858110156127ca57816127b088826128bc565b84526020840193506020830192505060018101905061279d565b5050509392505050565b60006127e76127e28461362d565b6135dc565b9050808382526020820190508285602086028201111561280657600080fd5b60005b85811015612836578161281c88826129b8565b845260208401935060208301925050600181019050612809565b5050509392505050565b600061285361284e84613659565b6135dc565b90508281526020810184848401111561286b57600080fd5b61287684828561382a565b509392505050565b600061289161288c8461368a565b6135dc565b9050828152602081018484840111156128a957600080fd5b6128b484828561382a565b509392505050565b6000813590506128cb81613ef6565b92915050565b600082601f8301126128e257600080fd5b81356128f2848260208601612768565b91505092915050565b600082601f83011261290c57600080fd5b813561291c8482602086016127d4565b91505092915050565b60008135905061293481613f0d565b92915050565b60008135905061294981613f24565b92915050565b60008151905061295e81613f24565b92915050565b600082601f83011261297557600080fd5b8135612985848260208601612840565b91505092915050565b600082601f83011261299f57600080fd5b81356129af84826020860161287e565b91505092915050565b6000813590506129c781613f3b565b92915050565b6000602082840312156129df57600080fd5b60006129ed848285016128bc565b91505092915050565b60008060408385031215612a0957600080fd5b6000612a17858286016128bc565b9250506020612a28858286016128bc565b9150509250929050565b600080600080600060a08688031215612a4a57600080fd5b6000612a58888289016128bc565b9550506020612a69888289016128bc565b945050604086013567ffffffffffffffff811115612a8657600080fd5b612a92888289016128fb565b935050606086013567ffffffffffffffff811115612aaf57600080fd5b612abb888289016128fb565b925050608086013567ffffffffffffffff811115612ad857600080fd5b612ae488828901612964565b9150509295509295909350565b600080600080600060a08688031215612b0957600080fd5b6000612b17888289016128bc565b9550506020612b28888289016128bc565b9450506040612b39888289016129b8565b9350506060612b4a888289016129b8565b925050608086013567ffffffffffffffff811115612b6757600080fd5b612b7388828901612964565b9150509295509295909350565b600080600060608486031215612b9557600080fd5b6000612ba3868287016128bc565b935050602084013567ffffffffffffffff811115612bc057600080fd5b612bcc868287016128fb565b925050604084013567ffffffffffffffff811115612be957600080fd5b612bf5868287016128fb565b9150509250925092565b60008060008060808587031215612c1557600080fd5b6000612c23878288016128bc565b945050602085013567ffffffffffffffff811115612c4057600080fd5b612c4c878288016128fb565b935050604085013567ffffffffffffffff811115612c6957600080fd5b612c75878288016128fb565b925050606085013567ffffffffffffffff811115612c9257600080fd5b612c9e87828801612964565b91505092959194509250565b60008060408385031215612cbd57600080fd5b6000612ccb858286016128bc565b9250506020612cdc85828601612925565b9150509250929050565b60008060408385031215612cf957600080fd5b6000612d07858286016128bc565b9250506020612d18858286016129b8565b9150509250929050565b600080600060608486031215612d3757600080fd5b6000612d45868287016128bc565b9350506020612d56868287016129b8565b9250506040612d67868287016129b8565b9150509250925092565b60008060008060808587031215612d8757600080fd5b6000612d95878288016128bc565b9450506020612da6878288016129b8565b9350506040612db7878288016129b8565b925050606085013567ffffffffffffffff811115612dd457600080fd5b612de087828801612964565b91505092959194509250565b60008060408385031215612dff57600080fd5b600083013567ffffffffffffffff811115612e1957600080fd5b612e25858286016128d1565b925050602083013567ffffffffffffffff811115612e4257600080fd5b612e4e858286016128fb565b9150509250929050565b600060208284031215612e6a57600080fd5b6000612e788482850161293a565b91505092915050565b600060208284031215612e9357600080fd5b6000612ea18482850161294f565b91505092915050565b600060208284031215612ebc57600080fd5b600082013567ffffffffffffffff811115612ed657600080fd5b612ee28482850161298e565b91505092915050565b600060208284031215612efd57600080fd5b6000612f0b848285016129b8565b91505092915050565b6000612f208383613227565b60208301905092915050565b612f35816137b6565b82525050565b6000612f46826136cb565b612f5081856136f9565b9350612f5b836136bb565b8060005b83811015612f8c578151612f738882612f14565b9750612f7e836136ec565b925050600181019050612f5f565b5085935050505092915050565b612fa2816137c8565b82525050565b6000612fb3826136d6565b612fbd818561370a565b9350612fcd818560208601613839565b612fd6816139c7565b840191505092915050565b6000612fec826136e1565b612ff6818561371b565b9350613006818560208601613839565b61300f816139c7565b840191505092915050565b600061302760348361371b565b9150613032826139e5565b604082019050919050565b600061304a60288361371b565b915061305582613a34565b604082019050919050565b600061306d602b8361371b565b915061307882613a83565b604082019050919050565b600061309060268361371b565b915061309b82613ad2565b604082019050919050565b60006130b360248361371b565b91506130be82613b21565b604082019050919050565b60006130d660298361371b565b91506130e182613b70565b604082019050919050565b60006130f960258361371b565b915061310482613bbf565b604082019050919050565b600061311c60328361371b565b915061312782613c0e565b604082019050919050565b600061313f60238361371b565b915061314a82613c5d565b604082019050919050565b6000613162602a8361371b565b915061316d82613cac565b604082019050919050565b600061318560208361371b565b915061319082613cfb565b602082019050919050565b60006131a860298361371b565b91506131b382613d24565b604082019050919050565b60006131cb60298361371b565b91506131d682613d73565b604082019050919050565b60006131ee60288361371b565b91506131f982613dc2565b604082019050919050565b600061321160218361371b565b915061321c82613e11565b604082019050919050565b61323081613820565b82525050565b61323f81613820565b82525050565b600060208201905061325a6000830184612f2c565b92915050565b600060a0820190506132756000830188612f2c565b6132826020830187612f2c565b81810360408301526132948186612f3b565b905081810360608301526132a88185612f3b565b905081810360808301526132bc8184612fa8565b90509695505050505050565b600060a0820190506132dd6000830188612f2c565b6132ea6020830187612f2c565b6132f76040830186613236565b6133046060830185613236565b81810360808301526133168184612fa8565b90509695505050505050565b6000602082019050818103600083015261333c8184612f3b565b905092915050565b6000604082019050818103600083015261335e8185612f3b565b905081810360208301526133728184612f3b565b90509392505050565b60006020820190506133906000830184612f99565b92915050565b600060208201905081810360008301526133b08184612fe1565b905092915050565b600060208201905081810360008301526133d18161301a565b9050919050565b600060208201905081810360008301526133f18161303d565b9050919050565b6000602082019050818103600083015261341181613060565b9050919050565b6000602082019050818103600083015261343181613083565b9050919050565b60006020820190508181036000830152613451816130a6565b9050919050565b60006020820190508181036000830152613471816130c9565b9050919050565b60006020820190508181036000830152613491816130ec565b9050919050565b600060208201905081810360008301526134b18161310f565b9050919050565b600060208201905081810360008301526134d181613132565b9050919050565b600060208201905081810360008301526134f181613155565b9050919050565b6000602082019050818103600083015261351181613178565b9050919050565b600060208201905081810360008301526135318161319b565b9050919050565b60006020820190508181036000830152613551816131be565b9050919050565b60006020820190508181036000830152613571816131e1565b9050919050565b6000602082019050818103600083015261359181613204565b9050919050565b60006020820190506135ad6000830184613236565b92915050565b60006040820190506135c86000830185613236565b6135d56020830184613236565b9392505050565b60006135e66135f7565b90506135f2828261389e565b919050565b6000604051905090565b600067ffffffffffffffff82111561361c5761361b613976565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561364857613647613976565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561367457613673613976565b5b61367d826139c7565b9050602081019050919050565b600067ffffffffffffffff8211156136a5576136a4613976565b5b6136ae826139c7565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061373782613820565b915061374283613820565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561377757613776613918565b5b828201905092915050565b600061378d82613820565b915061379883613820565b9250828210156137ab576137aa613918565b5b828203905092915050565b60006137c182613800565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561385757808201518184015260208101905061383c565b83811115613866576000848401525b50505050565b6000600282049050600182168061388457607f821691505b6020821081141561389857613897613947565b5b50919050565b6138a7826139c7565b810181811067ffffffffffffffff821117156138c6576138c5613976565b5b80604052505050565b60006138da82613820565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561390d5761390c613918565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156139c45760046000803e6139c16000516139d8565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015613e7057613ef3565b613e786135f7565b60043d036004823e80513d602482011167ffffffffffffffff82111715613ea0575050613ef3565b808201805167ffffffffffffffff811115613ebe5750505050613ef3565b80602083010160043d038501811115613edb575050505050613ef3565b613eea8260200185018661389e565b82955050505050505b90565b613eff816137b6565b8114613f0a57600080fd5b50565b613f16816137c8565b8114613f2157600080fd5b50565b613f2d816137d4565b8114613f3857600080fd5b50565b613f4481613820565b8114613f4f57600080fd5b5056fea26469706673582212202eb99a5a59bd3333c2ee080cfb81044edd497816ddfaf9df86083c31047ce99664736f6c6343000804003368747470733a2f2f73756e6461792e67616d65732f6e66742f73757065726e6f76612f726577617264732f7b69647d2e6a736f6e
Deployed ByteCode Sourcemap
39983:1010:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23431:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22454:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40156:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23175:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40430:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25370:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23828:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37876:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39501:353;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2618:103;;;:::i;:::-;;40253:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1967:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24425:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37665:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24652:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24892:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2876:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39172:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23431:231;23517:7;23564:1;23545:21;;:7;:21;;;;23537:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;23632:9;:13;23642:2;23632:13;;;;;;;;;;;:22;23646:7;23632:22;;;;;;;;;;;;;;;;23625:29;;23431:231;;;;:::o;22454:310::-;22556:4;22608:26;22593:41;;;:11;:41;;;;:110;;;;22666:37;22651:52;;;:11;:52;;;;22593:110;:163;;;;22720:36;22744:11;22720:23;:36::i;:::-;22593:163;22573:183;;22454:310;;;:::o;40156:89::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40222:15:::1;40230:6;40222:7;:15::i;:::-;40156:89:::0;:::o;23175:105::-;23235:13;23268:4;23261:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23175:105;;;:::o;40430:191::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40579:34:::1;40590:2;40594:3;40599:7;40608:4;40579:10;:34::i;:::-;40430:191:::0;;;;:::o;25370:442::-;25611:12;:10;:12::i;:::-;25603:20;;:4;:20;;;:60;;;;25627:36;25644:4;25650:12;:10;:12::i;:::-;25627:16;:36::i;:::-;25603:60;25581:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;25752:52;25775:4;25781:2;25785:3;25790:7;25799:4;25752:22;:52::i;:::-;25370:442;;;;;:::o;23828:524::-;23984:16;24045:3;:10;24026:8;:15;:29;24018:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;24114:30;24161:8;:15;24147:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24114:63;;24195:9;24190:122;24214:8;:15;24210:1;:19;24190:122;;;24270:30;24280:8;24289:1;24280:11;;;;;;;;;;;;;;;;;;;;;;24293:3;24297:1;24293:6;;;;;;;;;;;;;;;;;;;;;;24270:9;:30::i;:::-;24251:13;24265:1;24251:16;;;;;;;;;;;;;;;;;;;;;:49;;;;;24231:3;;;;:::i;:::-;;;24190:122;;;;24331:13;24324:20;;;23828:524;;;;:::o;37876:122::-;37933:4;37989:1;37957:29;37983:2;37957:25;:29::i;:::-;:33;37950:40;;37876:122;;;:::o;39501:353::-;39677:12;:10;:12::i;:::-;39666:23;;:7;:23;;;:66;;;;39693:39;39710:7;39719:12;:10;:12::i;:::-;39693:16;:39::i;:::-;39666:66;39644:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;39814:32;39825:7;39834:3;39839:6;39814:10;:32::i;:::-;39501:353;;;:::o;2618:103::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2683:30:::1;2710:1;2683:18;:30::i;:::-;2618:103::o:0;40253:169::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40382:32:::1;40388:7;40397:2;40401:6;40409:4;40382:5;:32::i;:::-;40253:169:::0;;;;:::o;1967:87::-;2013:7;2040:6;;;;;;;;;;;2033:13;;1967:87;:::o;24425:155::-;24520:52;24539:12;:10;:12::i;:::-;24553:8;24563;24520:18;:52::i;:::-;24425:155;;:::o;37665:113::-;37727:7;37754:12;:16;37767:2;37754:16;;;;;;;;;;;;37747:23;;37665:113;;;:::o;24652:168::-;24751:4;24775:18;:27;24794:7;24775:27;;;;;;;;;;;;;;;:37;24803:8;24775:37;;;;;;;;;;;;;;;;;;;;;;;;;24768:44;;24652:168;;;;:::o;24892:401::-;25108:12;:10;:12::i;:::-;25100:20;;:4;:20;;;:60;;;;25124:36;25141:4;25147:12;:10;:12::i;:::-;25124:16;:36::i;:::-;25100:60;25078:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;25240:45;25258:4;25264:2;25268;25272:6;25280:4;25240:17;:45::i;:::-;24892:401;;;;;:::o;2876:201::-;2198:12;:10;:12::i;:::-;2187:23;;:7;:5;:7::i;:::-;:23;;;2179:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2985:1:::1;2965:22;;:8;:22;;;;2957:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3041:28;3060:8;3041:18;:28::i;:::-;2876:201:::0;:::o;39172:321::-;39323:12;:10;:12::i;:::-;39312:23;;:7;:23;;;:66;;;;39339:39;39356:7;39365:12;:10;:12::i;:::-;39339:16;:39::i;:::-;39312:66;39290:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;39460:25;39466:7;39475:2;39479:5;39460;:25::i;:::-;39172:321;;;:::o;13738:157::-;13823:4;13862:25;13847:40;;;:11;:40;;;;13840:47;;13738:157;;;:::o;685:98::-;738:7;765:10;758:17;;685:98;:::o;29372:88::-;29446:6;29439:4;:13;;;;;;;;;;;;:::i;:::-;;29372:88;:::o;30771:735::-;30963:1;30949:16;;:2;:16;;;;30941:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31036:7;:14;31022:3;:10;:28;31014:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;31108:16;31127:12;:10;:12::i;:::-;31108:31;;31152:66;31173:8;31191:1;31195:2;31199:3;31204:7;31213:4;31152:20;:66::i;:::-;31236:9;31231:103;31255:3;:10;31251:1;:14;31231:103;;;31312:7;31320:1;31312:10;;;;;;;;;;;;;;;;;;;;;;31287:9;:17;31297:3;31301:1;31297:6;;;;;;;;;;;;;;;;;;;;;;31287:17;;;;;;;;;;;:21;31305:2;31287:21;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;31267:3;;;;;:::i;:::-;;;;31231:103;;;;31387:2;31351:53;;31383:1;31351:53;;31365:8;31351:53;;;31391:3;31396:7;31351:53;;;;;;;:::i;:::-;;;;;;;;31417:81;31453:8;31471:1;31475:2;31479:3;31484:7;31493:4;31417:35;:81::i;:::-;30771:735;;;;;:::o;27454:1074::-;27681:7;:14;27667:3;:10;:28;27659:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;27773:1;27759:16;;:2;:16;;;;27751:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;27830:16;27849:12;:10;:12::i;:::-;27830:31;;27874:60;27895:8;27905:4;27911:2;27915:3;27920:7;27929:4;27874:20;:60::i;:::-;27952:9;27947:421;27971:3;:10;27967:1;:14;27947:421;;;28003:10;28016:3;28020:1;28016:6;;;;;;;;;;;;;;;;;;;;;;28003:19;;28037:14;28054:7;28062:1;28054:10;;;;;;;;;;;;;;;;;;;;;;28037:27;;28081:19;28103:9;:13;28113:2;28103:13;;;;;;;;;;;:19;28117:4;28103:19;;;;;;;;;;;;;;;;28081:41;;28160:6;28145:11;:21;;28137:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;28293:6;28279:11;:20;28257:9;:13;28267:2;28257:13;;;;;;;;;;;:19;28271:4;28257:19;;;;;;;;;;;;;;;:42;;;;28350:6;28329:9;:13;28339:2;28329:13;;;;;;;;;;;:17;28343:2;28329:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;27947:421;;;27983:3;;;;:::i;:::-;;;27947:421;;;;28415:2;28385:47;;28409:4;28385:47;;28399:8;28385:47;;;28419:3;28424:7;28385:47;;;;;;;:::i;:::-;;;;;;;;28445:75;28481:8;28491:4;28497:2;28501:3;28506:7;28515:4;28445:35;:75::i;:::-;27454:1074;;;;;;:::o;32607:891::-;32775:1;32759:18;;:4;:18;;;;32751:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32850:7;:14;32836:3;:10;:28;32828:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;32922:16;32941:12;:10;:12::i;:::-;32922:31;;32966:66;32987:8;32997:4;33011:1;33015:3;33020:7;32966:66;;;;;;;;;;;;:20;:66::i;:::-;33050:9;33045:373;33069:3;:10;33065:1;:14;33045:373;;;33101:10;33114:3;33118:1;33114:6;;;;;;;;;;;;;;;;;;;;;;33101:19;;33135:14;33152:7;33160:1;33152:10;;;;;;;;;;;;;;;;;;;;;;33135:27;;33179:19;33201:9;:13;33211:2;33201:13;;;;;;;;;;;:19;33215:4;33201:19;;;;;;;;;;;;;;;;33179:41;;33258:6;33243:11;:21;;33235:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;33385:6;33371:11;:20;33349:9;:13;33359:2;33349:13;;;;;;;;;;;:19;33363:4;33349:19;;;;;;;;;;;;;;;:42;;;;33045:373;;;33081:3;;;;;:::i;:::-;;;;33045:373;;;;33473:1;33435:55;;33459:4;33435:55;;33449:8;33435:55;;;33477:3;33482:7;33435:55;;;;;;;:::i;:::-;;;;;;;;32607:891;;;;:::o;3237:191::-;3311:16;3330:6;;;;;;;;;;;3311:25;;3356:8;3347:6;;:17;;;;;;;;;;;;;;;;;;3411:8;3380:40;;3401:8;3380:40;;;;;;;;;;;;3237:191;;:::o;29846:569::-;30013:1;29999:16;;:2;:16;;;;29991:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30066:16;30085:12;:10;:12::i;:::-;30066:31;;30110:102;30131:8;30149:1;30153:2;30157:21;30175:2;30157:17;:21::i;:::-;30180:25;30198:6;30180:17;:25::i;:::-;30207:4;30110:20;:102::i;:::-;30246:6;30225:9;:13;30235:2;30225:13;;;;;;;;;;;:17;30239:2;30225:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;30305:2;30268:52;;30301:1;30268:52;;30283:8;30268:52;;;30309:2;30313:6;30268:52;;;;;;;:::i;:::-;;;;;;;;30333:74;30364:8;30382:1;30386:2;30390;30394:6;30402:4;30333:30;:74::i;:::-;29846:569;;;;;:::o;33640:331::-;33795:8;33786:17;;:5;:17;;;;33778:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33898:8;33860:18;:25;33879:5;33860:25;;;;;;;;;;;;;;;:35;33886:8;33860:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33944:8;33922:41;;33937:5;33922:41;;;33954:8;33922:41;;;;;;:::i;:::-;;;;;;;;33640:331;;;:::o;26276:820::-;26478:1;26464:16;;:2;:16;;;;26456:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;26535:16;26554:12;:10;:12::i;:::-;26535:31;;26579:96;26600:8;26610:4;26616:2;26620:21;26638:2;26620:17;:21::i;:::-;26643:25;26661:6;26643:17;:25::i;:::-;26670:4;26579:20;:96::i;:::-;26688:19;26710:9;:13;26720:2;26710:13;;;;;;;;;;;:19;26724:4;26710:19;;;;;;;;;;;;;;;;26688:41;;26763:6;26748:11;:21;;26740:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26888:6;26874:11;:20;26852:9;:13;26862:2;26852:13;;;;;;;;;;;:19;26866:4;26852:19;;;;;;;;;;;;;;;:42;;;;26937:6;26916:9;:13;26926:2;26916:13;;;;;;;;;;;:17;26930:2;26916:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;26992:2;26961:46;;26986:4;26961:46;;26976:8;26961:46;;;26996:2;27000:6;26961:46;;;;;;;:::i;:::-;;;;;;;;27020:68;27051:8;27061:4;27067:2;27071;27075:6;27083:4;27020:30;:68::i;:::-;26276:820;;;;;;;:::o;31756:648::-;31899:1;31883:18;;:4;:18;;;;31875:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31954:16;31973:12;:10;:12::i;:::-;31954:31;;31998:102;32019:8;32029:4;32043:1;32047:21;32065:2;32047:17;:21::i;:::-;32070:25;32088:6;32070:17;:25::i;:::-;31998:102;;;;;;;;;;;;:20;:102::i;:::-;32113:19;32135:9;:13;32145:2;32135:13;;;;;;;;;;;:19;32149:4;32135:19;;;;;;;;;;;;;;;;32113:41;;32188:6;32173:11;:21;;32165:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;32307:6;32293:11;:20;32271:9;:13;32281:2;32271:13;;;;;;;;;;;:19;32285:4;32271:19;;;;;;;;;;;;;;;:42;;;;32381:1;32342:54;;32367:4;32342:54;;32357:8;32342:54;;;32385:2;32389:6;32342:54;;;;;;;:::i;:::-;;;;;;;;31756:648;;;;;:::o;40699:291::-;40916:66;40943:8;40953:4;40959:2;40963:3;40968:7;40977:4;40916:26;:66::i;:::-;40699:291;;;;;;:::o;35908:813::-;36148:15;:2;:13;;;:15::i;:::-;36144:570;;;36201:2;36184:43;;;36228:8;36238:4;36244:3;36249:7;36258:4;36184:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36180:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;36576:6;36569:14;;;;;;;;;;;:::i;:::-;;;;;;;;36180:523;;;36625:62;;;;;;;;;;:::i;:::-;;;;;;;;36180:523;36357:48;;;36345:60;;;:8;:60;;;;36341:159;;36430:50;;;;;;;;;;:::i;:::-;;;;;;;;36341:159;36264:251;36144:570;35908:813;;;;;;:::o;36729:198::-;36795:16;36824:22;36863:1;36849:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36824:41;;36887:7;36876:5;36882:1;36876:8;;;;;;;;;;;;;;;;;;;;;:18;;;;;36914:5;36907:12;;;36729:198;;;:::o;35156:744::-;35371:15;:2;:13;;;:15::i;:::-;35367:526;;;35424:2;35407:38;;;35446:8;35456:4;35462:2;35466:6;35474:4;35407:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35403:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;35755:6;35748:14;;;;;;;;;;;:::i;:::-;;;;;;;;35403:479;;;35804:62;;;;;;;;;;:::i;:::-;;;;;;;;35403:479;35541:43;;;35529:55;;;:8;:55;;;;35525:154;;35609:50;;;;;;;;;;:::i;:::-;;;;;;;;35525:154;35480:214;35367:526;35156:744;;;;;;:::o;38073:655::-;38312:66;38339:8;38349:4;38355:2;38359:3;38364:7;38373:4;38312:26;:66::i;:::-;38411:1;38395:18;;:4;:18;;;38391:160;;;38435:9;38430:110;38454:3;:10;38450:1;:14;38430:110;;;38514:7;38522:1;38514:10;;;;;;;;;;;;;;;;;;;;;;38490:12;:20;38503:3;38507:1;38503:6;;;;;;;;;;;;;;;;;;;;;;38490:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;38466:3;;;;:::i;:::-;;;38430:110;;;;38391:160;38581:1;38567:16;;:2;:16;;;38563:158;;;38605:9;38600:110;38624:3;:10;38620:1;:14;38600:110;;;38684:7;38692:1;38684:10;;;;;;;;;;;;;;;;;;;;;;38660:12;:20;38673:3;38677:1;38673:6;;;;;;;;;;;;;;;;;;;;;;38660:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;38636:3;;;;:::i;:::-;;;38600:110;;;;38563:158;38073:655;;;;;;:::o;4674:326::-;4734:4;4991:1;4969:7;:19;;;:23;4962:30;;4674:326;;;:::o;34927:221::-;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;702:655::-;798:5;823:81;839:64;896:6;839:64;:::i;:::-;823:81;:::i;:::-;814:90;;924:5;953:6;946:5;939:21;987:4;980:5;976:16;969:23;;1013:6;1063:3;1055:4;1047:6;1043:17;1038:3;1034:27;1031:36;1028:2;;;1092:1;1089;1082:12;1028:2;1128:1;1113:238;1138:6;1135:1;1132:13;1113:238;;;1206:3;1235:37;1268:3;1256:10;1235:37;:::i;:::-;1230:3;1223:50;1302:4;1297:3;1293:14;1286:21;;1336:4;1331:3;1327:14;1320:21;;1173:178;1160:1;1157;1153:9;1148:14;;1113:238;;;1117:14;804:553;;;;;;;:::o;1363:343::-;1440:5;1465:65;1481:48;1522:6;1481:48;:::i;:::-;1465:65;:::i;:::-;1456:74;;1553:6;1546:5;1539:21;1591:4;1584:5;1580:16;1629:3;1620:6;1615:3;1611:16;1608:25;1605:2;;;1646:1;1643;1636:12;1605:2;1659:41;1693:6;1688:3;1683;1659:41;:::i;:::-;1446:260;;;;;;:::o;1712:345::-;1790:5;1815:66;1831:49;1873:6;1831:49;:::i;:::-;1815:66;:::i;:::-;1806:75;;1904:6;1897:5;1890:21;1942:4;1935:5;1931:16;1980:3;1971:6;1966:3;1962:16;1959:25;1956:2;;;1997:1;1994;1987:12;1956:2;2010:41;2044:6;2039:3;2034;2010:41;:::i;:::-;1796:261;;;;;;:::o;2063:139::-;2109:5;2147:6;2134:20;2125:29;;2163:33;2190:5;2163:33;:::i;:::-;2115:87;;;;:::o;2225:303::-;2296:5;2345:3;2338:4;2330:6;2326:17;2322:27;2312:2;;2363:1;2360;2353:12;2312:2;2403:6;2390:20;2428:94;2518:3;2510:6;2503:4;2495:6;2491:17;2428:94;:::i;:::-;2419:103;;2302:226;;;;;:::o;2551:303::-;2622:5;2671:3;2664:4;2656:6;2652:17;2648:27;2638:2;;2689:1;2686;2679:12;2638:2;2729:6;2716:20;2754:94;2844:3;2836:6;2829:4;2821:6;2817:17;2754:94;:::i;:::-;2745:103;;2628:226;;;;;:::o;2860:133::-;2903:5;2941:6;2928:20;2919:29;;2957:30;2981:5;2957:30;:::i;:::-;2909:84;;;;:::o;2999:137::-;3044:5;3082:6;3069:20;3060:29;;3098:32;3124:5;3098:32;:::i;:::-;3050:86;;;;:::o;3142:141::-;3198:5;3229:6;3223:13;3214:22;;3245:32;3271:5;3245:32;:::i;:::-;3204:79;;;;:::o;3302:271::-;3357:5;3406:3;3399:4;3391:6;3387:17;3383:27;3373:2;;3424:1;3421;3414:12;3373:2;3464:6;3451:20;3489:78;3563:3;3555:6;3548:4;3540:6;3536:17;3489:78;:::i;:::-;3480:87;;3363:210;;;;;:::o;3593:273::-;3649:5;3698:3;3691:4;3683:6;3679:17;3675:27;3665:2;;3716:1;3713;3706:12;3665:2;3756:6;3743:20;3781:79;3856:3;3848:6;3841:4;3833:6;3829:17;3781:79;:::i;:::-;3772:88;;3655:211;;;;;:::o;3872:139::-;3918:5;3956:6;3943:20;3934:29;;3972:33;3999:5;3972:33;:::i;:::-;3924:87;;;;:::o;4017:262::-;4076:6;4125:2;4113:9;4104:7;4100:23;4096:32;4093:2;;;4141:1;4138;4131:12;4093:2;4184:1;4209:53;4254:7;4245:6;4234:9;4230:22;4209:53;:::i;:::-;4199:63;;4155:117;4083:196;;;;:::o;4285:407::-;4353:6;4361;4410:2;4398:9;4389:7;4385:23;4381:32;4378:2;;;4426:1;4423;4416:12;4378:2;4469:1;4494:53;4539:7;4530:6;4519:9;4515:22;4494:53;:::i;:::-;4484:63;;4440:117;4596:2;4622:53;4667:7;4658:6;4647:9;4643:22;4622:53;:::i;:::-;4612:63;;4567:118;4368:324;;;;;:::o;4698:1241::-;4852:6;4860;4868;4876;4884;4933:3;4921:9;4912:7;4908:23;4904:33;4901:2;;;4950:1;4947;4940:12;4901:2;4993:1;5018:53;5063:7;5054:6;5043:9;5039:22;5018:53;:::i;:::-;5008:63;;4964:117;5120:2;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5091:118;5276:2;5265:9;5261:18;5248:32;5307:18;5299:6;5296:30;5293:2;;;5339:1;5336;5329:12;5293:2;5367:78;5437:7;5428:6;5417:9;5413:22;5367:78;:::i;:::-;5357:88;;5219:236;5522:2;5511:9;5507:18;5494:32;5553:18;5545:6;5542:30;5539:2;;;5585:1;5582;5575:12;5539:2;5613:78;5683:7;5674:6;5663:9;5659:22;5613:78;:::i;:::-;5603:88;;5465:236;5768:3;5757:9;5753:19;5740:33;5800:18;5792:6;5789:30;5786:2;;;5832:1;5829;5822:12;5786:2;5860:62;5914:7;5905:6;5894:9;5890:22;5860:62;:::i;:::-;5850:72;;5711:221;4891:1048;;;;;;;;:::o;5945:955::-;6049:6;6057;6065;6073;6081;6130:3;6118:9;6109:7;6105:23;6101:33;6098:2;;;6147:1;6144;6137:12;6098:2;6190:1;6215:53;6260:7;6251:6;6240:9;6236:22;6215:53;:::i;:::-;6205:63;;6161:117;6317:2;6343:53;6388:7;6379:6;6368:9;6364:22;6343:53;:::i;:::-;6333:63;;6288:118;6445:2;6471:53;6516:7;6507:6;6496:9;6492:22;6471:53;:::i;:::-;6461:63;;6416:118;6573:2;6599:53;6644:7;6635:6;6624:9;6620:22;6599:53;:::i;:::-;6589:63;;6544:118;6729:3;6718:9;6714:19;6701:33;6761:18;6753:6;6750:30;6747:2;;;6793:1;6790;6783:12;6747:2;6821:62;6875:7;6866:6;6855:9;6851:22;6821:62;:::i;:::-;6811:72;;6672:221;6088:812;;;;;;;;:::o;6906:838::-;7033:6;7041;7049;7098:2;7086:9;7077:7;7073:23;7069:32;7066:2;;;7114:1;7111;7104:12;7066:2;7157:1;7182:53;7227:7;7218:6;7207:9;7203:22;7182:53;:::i;:::-;7172:63;;7128:117;7312:2;7301:9;7297:18;7284:32;7343:18;7335:6;7332:30;7329:2;;;7375:1;7372;7365:12;7329:2;7403:78;7473:7;7464:6;7453:9;7449:22;7403:78;:::i;:::-;7393:88;;7255:236;7558:2;7547:9;7543:18;7530:32;7589:18;7581:6;7578:30;7575:2;;;7621:1;7618;7611:12;7575:2;7649:78;7719:7;7710:6;7699:9;7695:22;7649:78;:::i;:::-;7639:88;;7501:236;7056:688;;;;;:::o;7750:1095::-;7895:6;7903;7911;7919;7968:3;7956:9;7947:7;7943:23;7939:33;7936:2;;;7985:1;7982;7975:12;7936:2;8028:1;8053:53;8098:7;8089:6;8078:9;8074:22;8053:53;:::i;:::-;8043:63;;7999:117;8183:2;8172:9;8168:18;8155:32;8214:18;8206:6;8203:30;8200:2;;;8246:1;8243;8236:12;8200:2;8274:78;8344:7;8335:6;8324:9;8320:22;8274:78;:::i;:::-;8264:88;;8126:236;8429:2;8418:9;8414:18;8401:32;8460:18;8452:6;8449:30;8446:2;;;8492:1;8489;8482:12;8446:2;8520:78;8590:7;8581:6;8570:9;8566:22;8520:78;:::i;:::-;8510:88;;8372:236;8675:2;8664:9;8660:18;8647:32;8706:18;8698:6;8695:30;8692:2;;;8738:1;8735;8728:12;8692:2;8766:62;8820:7;8811:6;8800:9;8796:22;8766:62;:::i;:::-;8756:72;;8618:220;7926:919;;;;;;;:::o;8851:401::-;8916:6;8924;8973:2;8961:9;8952:7;8948:23;8944:32;8941:2;;;8989:1;8986;8979:12;8941:2;9032:1;9057:53;9102:7;9093:6;9082:9;9078:22;9057:53;:::i;:::-;9047:63;;9003:117;9159:2;9185:50;9227:7;9218:6;9207:9;9203:22;9185:50;:::i;:::-;9175:60;;9130:115;8931:321;;;;;:::o;9258:407::-;9326:6;9334;9383:2;9371:9;9362:7;9358:23;9354:32;9351:2;;;9399:1;9396;9389:12;9351:2;9442:1;9467:53;9512:7;9503:6;9492:9;9488:22;9467:53;:::i;:::-;9457:63;;9413:117;9569:2;9595:53;9640:7;9631:6;9620:9;9616:22;9595:53;:::i;:::-;9585:63;;9540:118;9341:324;;;;;:::o;9671:552::-;9748:6;9756;9764;9813:2;9801:9;9792:7;9788:23;9784:32;9781:2;;;9829:1;9826;9819:12;9781:2;9872:1;9897:53;9942:7;9933:6;9922:9;9918:22;9897:53;:::i;:::-;9887:63;;9843:117;9999:2;10025:53;10070:7;10061:6;10050:9;10046:22;10025:53;:::i;:::-;10015:63;;9970:118;10127:2;10153:53;10198:7;10189:6;10178:9;10174:22;10153:53;:::i;:::-;10143:63;;10098:118;9771:452;;;;;:::o;10229:809::-;10324:6;10332;10340;10348;10397:3;10385:9;10376:7;10372:23;10368:33;10365:2;;;10414:1;10411;10404:12;10365:2;10457:1;10482:53;10527:7;10518:6;10507:9;10503:22;10482:53;:::i;:::-;10472:63;;10428:117;10584:2;10610:53;10655:7;10646:6;10635:9;10631:22;10610:53;:::i;:::-;10600:63;;10555:118;10712:2;10738:53;10783:7;10774:6;10763:9;10759:22;10738:53;:::i;:::-;10728:63;;10683:118;10868:2;10857:9;10853:18;10840:32;10899:18;10891:6;10888:30;10885:2;;;10931:1;10928;10921:12;10885:2;10959:62;11013:7;11004:6;10993:9;10989:22;10959:62;:::i;:::-;10949:72;;10811:220;10355:683;;;;;;;:::o;11044:693::-;11162:6;11170;11219:2;11207:9;11198:7;11194:23;11190:32;11187:2;;;11235:1;11232;11225:12;11187:2;11306:1;11295:9;11291:17;11278:31;11336:18;11328:6;11325:30;11322:2;;;11368:1;11365;11358:12;11322:2;11396:78;11466:7;11457:6;11446:9;11442:22;11396:78;:::i;:::-;11386:88;;11249:235;11551:2;11540:9;11536:18;11523:32;11582:18;11574:6;11571:30;11568:2;;;11614:1;11611;11604:12;11568:2;11642:78;11712:7;11703:6;11692:9;11688:22;11642:78;:::i;:::-;11632:88;;11494:236;11177:560;;;;;:::o;11743:260::-;11801:6;11850:2;11838:9;11829:7;11825:23;11821:32;11818:2;;;11866:1;11863;11856:12;11818:2;11909:1;11934:52;11978:7;11969:6;11958:9;11954:22;11934:52;:::i;:::-;11924:62;;11880:116;11808:195;;;;:::o;12009:282::-;12078:6;12127:2;12115:9;12106:7;12102:23;12098:32;12095:2;;;12143:1;12140;12133:12;12095:2;12186:1;12211:63;12266:7;12257:6;12246:9;12242:22;12211:63;:::i;:::-;12201:73;;12157:127;12085:206;;;;:::o;12297:375::-;12366:6;12415:2;12403:9;12394:7;12390:23;12386:32;12383:2;;;12431:1;12428;12421:12;12383:2;12502:1;12491:9;12487:17;12474:31;12532:18;12524:6;12521:30;12518:2;;;12564:1;12561;12554:12;12518:2;12592:63;12647:7;12638:6;12627:9;12623:22;12592:63;:::i;:::-;12582:73;;12445:220;12373:299;;;;:::o;12678:262::-;12737:6;12786:2;12774:9;12765:7;12761:23;12757:32;12754:2;;;12802:1;12799;12792:12;12754:2;12845:1;12870:53;12915:7;12906:6;12895:9;12891:22;12870:53;:::i;:::-;12860:63;;12816:117;12744:196;;;;:::o;12946:179::-;13015:10;13036:46;13078:3;13070:6;13036:46;:::i;:::-;13114:4;13109:3;13105:14;13091:28;;13026:99;;;;:::o;13131:118::-;13218:24;13236:5;13218:24;:::i;:::-;13213:3;13206:37;13196:53;;:::o;13285:732::-;13404:3;13433:54;13481:5;13433:54;:::i;:::-;13503:86;13582:6;13577:3;13503:86;:::i;:::-;13496:93;;13613:56;13663:5;13613:56;:::i;:::-;13692:7;13723:1;13708:284;13733:6;13730:1;13727:13;13708:284;;;13809:6;13803:13;13836:63;13895:3;13880:13;13836:63;:::i;:::-;13829:70;;13922:60;13975:6;13922:60;:::i;:::-;13912:70;;13768:224;13755:1;13752;13748:9;13743:14;;13708:284;;;13712:14;14008:3;14001:10;;13409:608;;;;;;;:::o;14023:109::-;14104:21;14119:5;14104:21;:::i;:::-;14099:3;14092:34;14082:50;;:::o;14138:360::-;14224:3;14252:38;14284:5;14252:38;:::i;:::-;14306:70;14369:6;14364:3;14306:70;:::i;:::-;14299:77;;14385:52;14430:6;14425:3;14418:4;14411:5;14407:16;14385:52;:::i;:::-;14462:29;14484:6;14462:29;:::i;:::-;14457:3;14453:39;14446:46;;14228:270;;;;;:::o;14504:364::-;14592:3;14620:39;14653:5;14620:39;:::i;:::-;14675:71;14739:6;14734:3;14675:71;:::i;:::-;14668:78;;14755:52;14800:6;14795:3;14788:4;14781:5;14777:16;14755:52;:::i;:::-;14832:29;14854:6;14832:29;:::i;:::-;14827:3;14823:39;14816:46;;14596:272;;;;;:::o;14874:366::-;15016:3;15037:67;15101:2;15096:3;15037:67;:::i;:::-;15030:74;;15113:93;15202:3;15113:93;:::i;:::-;15231:2;15226:3;15222:12;15215:19;;15020:220;;;:::o;15246:366::-;15388:3;15409:67;15473:2;15468:3;15409:67;:::i;:::-;15402:74;;15485:93;15574:3;15485:93;:::i;:::-;15603:2;15598:3;15594:12;15587:19;;15392:220;;;:::o;15618:366::-;15760:3;15781:67;15845:2;15840:3;15781:67;:::i;:::-;15774:74;;15857:93;15946:3;15857:93;:::i;:::-;15975:2;15970:3;15966:12;15959:19;;15764:220;;;:::o;15990:366::-;16132:3;16153:67;16217:2;16212:3;16153:67;:::i;:::-;16146:74;;16229:93;16318:3;16229:93;:::i;:::-;16347:2;16342:3;16338:12;16331:19;;16136:220;;;:::o;16362:366::-;16504:3;16525:67;16589:2;16584:3;16525:67;:::i;:::-;16518:74;;16601:93;16690:3;16601:93;:::i;:::-;16719:2;16714:3;16710:12;16703:19;;16508:220;;;:::o;16734:366::-;16876:3;16897:67;16961:2;16956:3;16897:67;:::i;:::-;16890:74;;16973:93;17062:3;16973:93;:::i;:::-;17091:2;17086:3;17082:12;17075:19;;16880:220;;;:::o;17106:366::-;17248:3;17269:67;17333:2;17328:3;17269:67;:::i;:::-;17262:74;;17345:93;17434:3;17345:93;:::i;:::-;17463:2;17458:3;17454:12;17447:19;;17252:220;;;:::o;17478:366::-;17620:3;17641:67;17705:2;17700:3;17641:67;:::i;:::-;17634:74;;17717:93;17806:3;17717:93;:::i;:::-;17835:2;17830:3;17826:12;17819:19;;17624:220;;;:::o;17850:366::-;17992:3;18013:67;18077:2;18072:3;18013:67;:::i;:::-;18006:74;;18089:93;18178:3;18089:93;:::i;:::-;18207:2;18202:3;18198:12;18191:19;;17996:220;;;:::o;18222:366::-;18364:3;18385:67;18449:2;18444:3;18385:67;:::i;:::-;18378:74;;18461:93;18550:3;18461:93;:::i;:::-;18579:2;18574:3;18570:12;18563:19;;18368:220;;;:::o;18594:366::-;18736:3;18757:67;18821:2;18816:3;18757:67;:::i;:::-;18750:74;;18833:93;18922:3;18833:93;:::i;:::-;18951:2;18946:3;18942:12;18935:19;;18740:220;;;:::o;18966:366::-;19108:3;19129:67;19193:2;19188:3;19129:67;:::i;:::-;19122:74;;19205:93;19294:3;19205:93;:::i;:::-;19323:2;19318:3;19314:12;19307:19;;19112:220;;;:::o;19338:366::-;19480:3;19501:67;19565:2;19560:3;19501:67;:::i;:::-;19494:74;;19577:93;19666:3;19577:93;:::i;:::-;19695:2;19690:3;19686:12;19679:19;;19484:220;;;:::o;19710:366::-;19852:3;19873:67;19937:2;19932:3;19873:67;:::i;:::-;19866:74;;19949:93;20038:3;19949:93;:::i;:::-;20067:2;20062:3;20058:12;20051:19;;19856:220;;;:::o;20082:366::-;20224:3;20245:67;20309:2;20304:3;20245:67;:::i;:::-;20238:74;;20321:93;20410:3;20321:93;:::i;:::-;20439:2;20434:3;20430:12;20423:19;;20228:220;;;:::o;20454:108::-;20531:24;20549:5;20531:24;:::i;:::-;20526:3;20519:37;20509:53;;:::o;20568:118::-;20655:24;20673:5;20655:24;:::i;:::-;20650:3;20643:37;20633:53;;:::o;20692:222::-;20785:4;20823:2;20812:9;20808:18;20800:26;;20836:71;20904:1;20893:9;20889:17;20880:6;20836:71;:::i;:::-;20790:124;;;;:::o;20920:1053::-;21243:4;21281:3;21270:9;21266:19;21258:27;;21295:71;21363:1;21352:9;21348:17;21339:6;21295:71;:::i;:::-;21376:72;21444:2;21433:9;21429:18;21420:6;21376:72;:::i;:::-;21495:9;21489:4;21485:20;21480:2;21469:9;21465:18;21458:48;21523:108;21626:4;21617:6;21523:108;:::i;:::-;21515:116;;21678:9;21672:4;21668:20;21663:2;21652:9;21648:18;21641:48;21706:108;21809:4;21800:6;21706:108;:::i;:::-;21698:116;;21862:9;21856:4;21852:20;21846:3;21835:9;21831:19;21824:49;21890:76;21961:4;21952:6;21890:76;:::i;:::-;21882:84;;21248:725;;;;;;;;:::o;21979:751::-;22202:4;22240:3;22229:9;22225:19;22217:27;;22254:71;22322:1;22311:9;22307:17;22298:6;22254:71;:::i;:::-;22335:72;22403:2;22392:9;22388:18;22379:6;22335:72;:::i;:::-;22417;22485:2;22474:9;22470:18;22461:6;22417:72;:::i;:::-;22499;22567:2;22556:9;22552:18;22543:6;22499:72;:::i;:::-;22619:9;22613:4;22609:20;22603:3;22592:9;22588:19;22581:49;22647:76;22718:4;22709:6;22647:76;:::i;:::-;22639:84;;22207:523;;;;;;;;:::o;22736:373::-;22879:4;22917:2;22906:9;22902:18;22894:26;;22966:9;22960:4;22956:20;22952:1;22941:9;22937:17;22930:47;22994:108;23097:4;23088:6;22994:108;:::i;:::-;22986:116;;22884:225;;;;:::o;23115:634::-;23336:4;23374:2;23363:9;23359:18;23351:26;;23423:9;23417:4;23413:20;23409:1;23398:9;23394:17;23387:47;23451:108;23554:4;23545:6;23451:108;:::i;:::-;23443:116;;23606:9;23600:4;23596:20;23591:2;23580:9;23576:18;23569:48;23634:108;23737:4;23728:6;23634:108;:::i;:::-;23626:116;;23341:408;;;;;:::o;23755:210::-;23842:4;23880:2;23869:9;23865:18;23857:26;;23893:65;23955:1;23944:9;23940:17;23931:6;23893:65;:::i;:::-;23847:118;;;;:::o;23971:313::-;24084:4;24122:2;24111:9;24107:18;24099:26;;24171:9;24165:4;24161:20;24157:1;24146:9;24142:17;24135:47;24199:78;24272:4;24263:6;24199:78;:::i;:::-;24191:86;;24089:195;;;;:::o;24290:419::-;24456:4;24494:2;24483:9;24479:18;24471:26;;24543:9;24537:4;24533:20;24529:1;24518:9;24514:17;24507:47;24571:131;24697:4;24571:131;:::i;:::-;24563:139;;24461:248;;;:::o;24715:419::-;24881:4;24919:2;24908:9;24904:18;24896:26;;24968:9;24962:4;24958:20;24954:1;24943:9;24939:17;24932:47;24996:131;25122:4;24996:131;:::i;:::-;24988:139;;24886:248;;;:::o;25140:419::-;25306:4;25344:2;25333:9;25329:18;25321:26;;25393:9;25387:4;25383:20;25379:1;25368:9;25364:17;25357:47;25421:131;25547:4;25421:131;:::i;:::-;25413:139;;25311:248;;;:::o;25565:419::-;25731:4;25769:2;25758:9;25754:18;25746:26;;25818:9;25812:4;25808:20;25804:1;25793:9;25789:17;25782:47;25846:131;25972:4;25846:131;:::i;:::-;25838:139;;25736:248;;;:::o;25990:419::-;26156:4;26194:2;26183:9;26179:18;26171:26;;26243:9;26237:4;26233:20;26229:1;26218:9;26214:17;26207:47;26271:131;26397:4;26271:131;:::i;:::-;26263:139;;26161:248;;;:::o;26415:419::-;26581:4;26619:2;26608:9;26604:18;26596:26;;26668:9;26662:4;26658:20;26654:1;26643:9;26639:17;26632:47;26696:131;26822:4;26696:131;:::i;:::-;26688:139;;26586:248;;;:::o;26840:419::-;27006:4;27044:2;27033:9;27029:18;27021:26;;27093:9;27087:4;27083:20;27079:1;27068:9;27064:17;27057:47;27121:131;27247:4;27121:131;:::i;:::-;27113:139;;27011:248;;;:::o;27265:419::-;27431:4;27469:2;27458:9;27454:18;27446:26;;27518:9;27512:4;27508:20;27504:1;27493:9;27489:17;27482:47;27546:131;27672:4;27546:131;:::i;:::-;27538:139;;27436:248;;;:::o;27690:419::-;27856:4;27894:2;27883:9;27879:18;27871:26;;27943:9;27937:4;27933:20;27929:1;27918:9;27914:17;27907:47;27971:131;28097:4;27971:131;:::i;:::-;27963:139;;27861:248;;;:::o;28115:419::-;28281:4;28319:2;28308:9;28304:18;28296:26;;28368:9;28362:4;28358:20;28354:1;28343:9;28339:17;28332:47;28396:131;28522:4;28396:131;:::i;:::-;28388:139;;28286:248;;;:::o;28540:419::-;28706:4;28744:2;28733:9;28729:18;28721:26;;28793:9;28787:4;28783:20;28779:1;28768:9;28764:17;28757:47;28821:131;28947:4;28821:131;:::i;:::-;28813:139;;28711:248;;;:::o;28965:419::-;29131:4;29169:2;29158:9;29154:18;29146:26;;29218:9;29212:4;29208:20;29204:1;29193:9;29189:17;29182:47;29246:131;29372:4;29246:131;:::i;:::-;29238:139;;29136:248;;;:::o;29390:419::-;29556:4;29594:2;29583:9;29579:18;29571:26;;29643:9;29637:4;29633:20;29629:1;29618:9;29614:17;29607:47;29671:131;29797:4;29671:131;:::i;:::-;29663:139;;29561:248;;;:::o;29815:419::-;29981:4;30019:2;30008:9;30004:18;29996:26;;30068:9;30062:4;30058:20;30054:1;30043:9;30039:17;30032:47;30096:131;30222:4;30096:131;:::i;:::-;30088:139;;29986:248;;;:::o;30240:419::-;30406:4;30444:2;30433:9;30429:18;30421:26;;30493:9;30487:4;30483:20;30479:1;30468:9;30464:17;30457:47;30521:131;30647:4;30521:131;:::i;:::-;30513:139;;30411:248;;;:::o;30665:222::-;30758:4;30796:2;30785:9;30781:18;30773:26;;30809:71;30877:1;30866:9;30862:17;30853:6;30809:71;:::i;:::-;30763:124;;;;:::o;30893:332::-;31014:4;31052:2;31041:9;31037:18;31029:26;;31065:71;31133:1;31122:9;31118:17;31109:6;31065:71;:::i;:::-;31146:72;31214:2;31203:9;31199:18;31190:6;31146:72;:::i;:::-;31019:206;;;;;:::o;31231:129::-;31265:6;31292:20;;:::i;:::-;31282:30;;31321:33;31349:4;31341:6;31321:33;:::i;:::-;31272:88;;;:::o;31366:75::-;31399:6;31432:2;31426:9;31416:19;;31406:35;:::o;31447:311::-;31524:4;31614:18;31606:6;31603:30;31600:2;;;31636:18;;:::i;:::-;31600:2;31686:4;31678:6;31674:17;31666:25;;31746:4;31740;31736:15;31728:23;;31529:229;;;:::o;31764:311::-;31841:4;31931:18;31923:6;31920:30;31917:2;;;31953:18;;:::i;:::-;31917:2;32003:4;31995:6;31991:17;31983:25;;32063:4;32057;32053:15;32045:23;;31846:229;;;:::o;32081:307::-;32142:4;32232:18;32224:6;32221:30;32218:2;;;32254:18;;:::i;:::-;32218:2;32292:29;32314:6;32292:29;:::i;:::-;32284:37;;32376:4;32370;32366:15;32358:23;;32147:241;;;:::o;32394:308::-;32456:4;32546:18;32538:6;32535:30;32532:2;;;32568:18;;:::i;:::-;32532:2;32606:29;32628:6;32606:29;:::i;:::-;32598:37;;32690:4;32684;32680:15;32672:23;;32461:241;;;:::o;32708:132::-;32775:4;32798:3;32790:11;;32828:4;32823:3;32819:14;32811:22;;32780:60;;;:::o;32846:114::-;32913:6;32947:5;32941:12;32931:22;;32920:40;;;:::o;32966:98::-;33017:6;33051:5;33045:12;33035:22;;33024:40;;;:::o;33070:99::-;33122:6;33156:5;33150:12;33140:22;;33129:40;;;:::o;33175:113::-;33245:4;33277;33272:3;33268:14;33260:22;;33250:38;;;:::o;33294:184::-;33393:11;33427:6;33422:3;33415:19;33467:4;33462:3;33458:14;33443:29;;33405:73;;;;:::o;33484:168::-;33567:11;33601:6;33596:3;33589:19;33641:4;33636:3;33632:14;33617:29;;33579:73;;;;:::o;33658:169::-;33742:11;33776:6;33771:3;33764:19;33816:4;33811:3;33807:14;33792:29;;33754:73;;;;:::o;33833:305::-;33873:3;33892:20;33910:1;33892:20;:::i;:::-;33887:25;;33926:20;33944:1;33926:20;:::i;:::-;33921:25;;34080:1;34012:66;34008:74;34005:1;34002:81;33999:2;;;34086:18;;:::i;:::-;33999:2;34130:1;34127;34123:9;34116:16;;33877:261;;;;:::o;34144:191::-;34184:4;34204:20;34222:1;34204:20;:::i;:::-;34199:25;;34238:20;34256:1;34238:20;:::i;:::-;34233:25;;34277:1;34274;34271:8;34268:2;;;34282:18;;:::i;:::-;34268:2;34327:1;34324;34320:9;34312:17;;34189:146;;;;:::o;34341:96::-;34378:7;34407:24;34425:5;34407:24;:::i;:::-;34396:35;;34386:51;;;:::o;34443:90::-;34477:7;34520:5;34513:13;34506:21;34495:32;;34485:48;;;:::o;34539:149::-;34575:7;34615:66;34608:5;34604:78;34593:89;;34583:105;;;:::o;34694:126::-;34731:7;34771:42;34764:5;34760:54;34749:65;;34739:81;;;:::o;34826:77::-;34863:7;34892:5;34881:16;;34871:32;;;:::o;34909:154::-;34993:6;34988:3;34983;34970:30;35055:1;35046:6;35041:3;35037:16;35030:27;34960:103;;;:::o;35069:307::-;35137:1;35147:113;35161:6;35158:1;35155:13;35147:113;;;35246:1;35241:3;35237:11;35231:18;35227:1;35222:3;35218:11;35211:39;35183:2;35180:1;35176:10;35171:15;;35147:113;;;35278:6;35275:1;35272:13;35269:2;;;35358:1;35349:6;35344:3;35340:16;35333:27;35269:2;35118:258;;;;:::o;35382:320::-;35426:6;35463:1;35457:4;35453:12;35443:22;;35510:1;35504:4;35500:12;35531:18;35521:2;;35587:4;35579:6;35575:17;35565:27;;35521:2;35649;35641:6;35638:14;35618:18;35615:38;35612:2;;;35668:18;;:::i;:::-;35612:2;35433:269;;;;:::o;35708:281::-;35791:27;35813:4;35791:27;:::i;:::-;35783:6;35779:40;35921:6;35909:10;35906:22;35885:18;35873:10;35870:34;35867:62;35864:2;;;35932:18;;:::i;:::-;35864:2;35972:10;35968:2;35961:22;35751:238;;;:::o;35995:233::-;36034:3;36057:24;36075:5;36057:24;:::i;:::-;36048:33;;36103:66;36096:5;36093:77;36090:2;;;36173:18;;:::i;:::-;36090:2;36220:1;36213:5;36209:13;36202:20;;36038:190;;;:::o;36234:180::-;36282:77;36279:1;36272:88;36379:4;36376:1;36369:15;36403:4;36400:1;36393:15;36420:180;36468:77;36465:1;36458:88;36565:4;36562:1;36555:15;36589:4;36586:1;36579:15;36606:180;36654:77;36651:1;36644:88;36751:4;36748:1;36741:15;36775:4;36772:1;36765:15;36792:183;36827:3;36865:1;36847:16;36844:23;36841:2;;;36903:1;36900;36897;36882:23;36925:34;36956:1;36950:8;36925:34;:::i;:::-;36918:41;;36841:2;36831:144;:::o;36981:102::-;37022:6;37073:2;37069:7;37064:2;37057:5;37053:14;37049:28;37039:38;;37029:54;;;:::o;37089:106::-;37133:8;37182:5;37177:3;37173:15;37152:36;;37142:53;;;:::o;37201:239::-;37341:34;37337:1;37329:6;37325:14;37318:58;37410:22;37405:2;37397:6;37393:15;37386:47;37307:133;:::o;37446:227::-;37586:34;37582:1;37574:6;37570:14;37563:58;37655:10;37650:2;37642:6;37638:15;37631:35;37552:121;:::o;37679:230::-;37819:34;37815:1;37807:6;37803:14;37796:58;37888:13;37883:2;37875:6;37871:15;37864:38;37785:124;:::o;37915:225::-;38055:34;38051:1;38043:6;38039:14;38032:58;38124:8;38119:2;38111:6;38107:15;38100:33;38021:119;:::o;38146:223::-;38286:34;38282:1;38274:6;38270:14;38263:58;38355:6;38350:2;38342:6;38338:15;38331:31;38252:117;:::o;38375:228::-;38515:34;38511:1;38503:6;38499:14;38492:58;38584:11;38579:2;38571:6;38567:15;38560:36;38481:122;:::o;38609:224::-;38749:34;38745:1;38737:6;38733:14;38726:58;38818:7;38813:2;38805:6;38801:15;38794:32;38715:118;:::o;38839:237::-;38979:34;38975:1;38967:6;38963:14;38956:58;39048:20;39043:2;39035:6;39031:15;39024:45;38945:131;:::o;39082:222::-;39222:34;39218:1;39210:6;39206:14;39199:58;39291:5;39286:2;39278:6;39274:15;39267:30;39188:116;:::o;39310:229::-;39450:34;39446:1;39438:6;39434:14;39427:58;39519:12;39514:2;39506:6;39502:15;39495:37;39416:123;:::o;39545:182::-;39685:34;39681:1;39673:6;39669:14;39662:58;39651:76;:::o;39733:228::-;39873:34;39869:1;39861:6;39857:14;39850:58;39942:11;39937:2;39929:6;39925:15;39918:36;39839:122;:::o;39967:228::-;40107:34;40103:1;40095:6;40091:14;40084:58;40176:11;40171:2;40163:6;40159:15;40152:36;40073:122;:::o;40201:227::-;40341:34;40337:1;40329:6;40325:14;40318:58;40410:10;40405:2;40397:6;40393:15;40386:35;40307:121;:::o;40434:220::-;40574:34;40570:1;40562:6;40558:14;40551:58;40643:3;40638:2;40630:6;40626:15;40619:28;40540:114;:::o;40660:711::-;40699:3;40737:4;40719:16;40716:26;40713:2;;;40745:5;;40713:2;40774:20;;:::i;:::-;40849:1;40831:16;40827:24;40824:1;40818:4;40803:49;40882:4;40876:11;40981:16;40974:4;40966:6;40962:17;40959:39;40926:18;40918:6;40915:30;40899:113;40896:2;;;41027:5;;;;40896:2;41073:6;41067:4;41063:17;41109:3;41103:10;41136:18;41128:6;41125:30;41122:2;;;41158:5;;;;;;41122:2;41206:6;41199:4;41194:3;41190:14;41186:27;41265:1;41247:16;41243:24;41237:4;41233:35;41228:3;41225:44;41222:2;;;41272:5;;;;;;;41222:2;41289:57;41337:6;41331:4;41327:17;41319:6;41315:30;41309:4;41289:57;:::i;:::-;41362:3;41355:10;;40703:668;;;;;;;:::o;41377:122::-;41450:24;41468:5;41450:24;:::i;:::-;41443:5;41440:35;41430:2;;41489:1;41486;41479:12;41430:2;41420:79;:::o;41505:116::-;41575:21;41590:5;41575:21;:::i;:::-;41568:5;41565:32;41555:2;;41611:1;41608;41601:12;41555:2;41545:76;:::o;41627:120::-;41699:23;41716:5;41699:23;:::i;:::-;41692:5;41689:34;41679:2;;41737:1;41734;41727:12;41679:2;41669:78;:::o;41753:122::-;41826:24;41844:5;41826:24;:::i;:::-;41819:5;41816:35;41806:2;;41865:1;41862;41855:12;41806:2;41796:79;:::o
Swarm Source
ipfs://2eb99a5a59bd3333c2ee080cfb81044edd497816ddfaf9df86083c31047ce996
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.