ERC-721
Overview
Max Total Supply
1,098 PTC1
Holders
402
Market
Fully Diluted Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
0 PTC1Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
PepeTarotCards
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at ftmscan.com on 2021-10-05 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // Sources flattened with hardhat v2.3.0 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] /** * @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/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 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'); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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'); // solhint-disable-next-line avoid-low-level-calls (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'); // solhint-disable-next-line avoid-low-level-calls (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'); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = '0123456789abcdef'; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return '0'; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return '0x00'; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = '0'; buffer[1] = 'x'; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, 'Strings: hex length insufficient'); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] 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/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), 'ERC721: balance query for the zero address'); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), 'ERC721: owner query for nonexistent token'); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden * in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, 'ERC721: approval to current owner'); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721: approve caller is not owner nor approved for all'); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), 'ERC721: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), 'ERC721: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved'); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721: transfer caller is not owner nor approved'); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), 'ERC721: transfer to non ERC721Receiver implementer'); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), 'ERC721: operator query for nonexistent token'); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ''); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), 'ERC721: transfer to non ERC721Receiver implementer'); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), 'ERC721: mint to the zero address'); require(!_exists(tokenId), 'ERC721: token already minted'); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, 'ERC721: transfer of token that is not own'); require(to != address(0), 'ERC721: transfer to the zero address'); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721: transfer to non ERC721Receiver implementer'); } else { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), 'ERC721Enumerable: owner index out of bounds'); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), 'ERC721Enumerable: global index out of bounds'); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721URIStorage: URI query for nonexistent token'); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), 'ERC721URIStorage: URI set of nonexistent token'); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File @openzeppelin/contracts/security/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), 'Pausable: paused'); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), 'Pausable: not paused'); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File @openzeppelin/contracts/access/[email protected] 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() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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'); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), 'ERC721Burnable: caller is not owner nor approved'); _burn(tokenId); } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, 'Counter: decrement overflow'); unchecked { counter._value = value - 1; } } } pragma solidity ^0.8.0; contract PepeTarotCards is ERC721, ERC721Enumerable, ERC721URIStorage, Pausable, Ownable, ERC721Burnable { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; uint256 public maxSupply = 1111; uint256 public price = 250000000000000000000; bool public preSaleOpen = false; bool public saleOpen = false; string public baseURI; receive() external payable {} constructor() ERC721('PepeTarot Cards: Edition 1', 'PTC1') {} function reserveMints(address to) public onlyOwner { for (uint256 i = 0; i < 25; i++) { internalMint(to); } } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(0x4A7642aa9B2FAf4467b76346FBcb0C7135aFBf0c).transfer(balance * 20 / 100); payable(0x23E0eec25afeF80871E19e847dF0D3354D7e4098).transfer(balance * 35 / 100); payable(0x81eAe876F52e9fcE868976b26C742a83Ea7Ede20).transfer(balance * 45 / 100); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function toggleSale() public onlyOwner { saleOpen = !saleOpen; } function togglePreSale() public onlyOwner { preSaleOpen = !preSaleOpen; } function setMaxSupply(uint256 newMaxSupply) public onlyOwner { maxSupply = newMaxSupply; } function setBaseURI(string memory newBaseURI) public onlyOwner { baseURI = newBaseURI; } function setPrice(uint256 newPrice) public onlyOwner { price = newPrice; } function _baseURI() internal view override returns (string memory) { return baseURI; } function internalMint(address to) internal { require(totalSupply() < maxSupply, 'supply depleted'); _safeMint(to, _tokenIdCounter.current()); _tokenIdCounter.increment(); } function safeMint(address to) public onlyOwner { internalMint(to); } function mint() public payable { require(msg.value >= price, 'not enough was paid'); if (!saleOpen) { require(preSaleOpen == true, 'presale is not open'); ERC721 GantomStones = ERC721(0x3d7071E5647251035271Aeb780d832B381Fa730F); ERC721 PepeTarotEditionZero = ERC721(0x17b28274f8C1d64B683aD097988fa5707b228f80); uint256 gantomBalance = GantomStones.balanceOf(msg.sender); uint256 pepeBalance = PepeTarotEditionZero.balanceOf(msg.sender); require(gantomBalance > 0 || pepeBalance > 0, 'you must hold a Gantom Stone or PepeTarot: Edition 0 to participate in the presale'); internalMint(msg.sender); return; } internalMint(msg.sender); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721, ERC721Enumerable) whenNotPaused { super._beforeTokenTransfer(from, to, tokenId); } // The following functions are overrides required by Solidity. function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"reserveMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052610457600d55680d8d726b7177a80000600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055503480156200005a57600080fd5b506040518060400160405280601a81526020017f506570655461726f742043617264733a2045646974696f6e20310000000000008152506040518060400160405280600481526020017f50544331000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000df929190620001d5565b508060019080519060200190620000f8929190620001d5565b5050506000600b60006101000a81548160ff021916908315150217905550600062000128620001cd60201b60201c565b905080600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002ea565b600033905090565b828054620001e39062000285565b90600052602060002090601f01602090048101928262000207576000855562000253565b82601f106200022257805160ff191683800117855562000253565b8280016001018555821562000253579182015b828111156200025257825182559160200191906001019062000235565b5b50905062000262919062000266565b5090565b5b808211156200028157600081600090555060010162000267565b5090565b600060028204905060018216806200029e57607f821691505b60208210811415620002b557620002b4620002bb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614e1d80620002fa6000396000f3fe60806040526004361061021e5760003560e01c80636f8b44b011610123578063a035b1fe116100ab578063ca3cb5221161006f578063ca3cb5221461076f578063d5abeb0114610786578063da5f6843146107b1578063e985e9c5146107da578063f2fde38b1461081757610225565b8063a035b1fe1461068a578063a22cb465146106b5578063b88d4fde146106de578063ba11ecde14610707578063c87b56dd1461073257610225565b80638456cb59116100f25780638456cb59146105c95780638da5cb5b146105e057806391b7f5ed1461060b57806395d89b411461063457806399288dbb1461065f57610225565b80636f8b44b01461053557806370a082311461055e578063715018a61461059b5780637d8966e4146105b257610225565b80633f4ba83a116101a65780634f6ccce7116101755780634f6ccce71461043c57806355f804b3146104795780635c975abb146104a25780636352211e146104cd5780636c0360eb1461050a57610225565b80633f4ba83a146103aa57806340d097c3146103c157806342842e0e146103ea57806342966c681461041357610225565b80631249c58b116101ed5780631249c58b146102f857806318160ddd1461030257806323b872dd1461032d5780632f745c59146103565780633ccfd60b1461039357610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613886565b610840565b60405161025e9190613e6c565b60405180910390f35b34801561027357600080fd5b5061027c610852565b6040516102899190613e87565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613929565b6108e4565b6040516102c69190613e05565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613846565b610969565b005b610300610a81565b005b34801561030e57600080fd5b50610317610ce8565b60405161032491906141e9565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190613730565b610cf5565b005b34801561036257600080fd5b5061037d60048036038101906103789190613846565b610d55565b60405161038a91906141e9565b60405180910390f35b34801561039f57600080fd5b506103a8610dfa565b005b3480156103b657600080fd5b506103bf610fd7565b005b3480156103cd57600080fd5b506103e860048036038101906103e391906136c3565b61105d565b005b3480156103f657600080fd5b50610411600480360381019061040c9190613730565b6110e5565b005b34801561041f57600080fd5b5061043a60048036038101906104359190613929565b611105565b005b34801561044857600080fd5b50610463600480360381019061045e9190613929565b611161565b60405161047091906141e9565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b91906138e0565b6111d2565b005b3480156104ae57600080fd5b506104b7611268565b6040516104c49190613e6c565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190613929565b61127f565b6040516105019190613e05565b60405180910390f35b34801561051657600080fd5b5061051f611331565b60405161052c9190613e87565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613929565b6113bf565b005b34801561056a57600080fd5b50610585600480360381019061058091906136c3565b611445565b60405161059291906141e9565b60405180910390f35b3480156105a757600080fd5b506105b06114fd565b005b3480156105be57600080fd5b506105c761163a565b005b3480156105d557600080fd5b506105de6116e2565b005b3480156105ec57600080fd5b506105f5611768565b6040516106029190613e05565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d9190613929565b611792565b005b34801561064057600080fd5b50610649611818565b6040516106569190613e87565b60405180910390f35b34801561066b57600080fd5b506106746118aa565b6040516106819190613e6c565b60405180910390f35b34801561069657600080fd5b5061069f6118bd565b6040516106ac91906141e9565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190613806565b6118c3565b005b3480156106ea57600080fd5b5061070560048036038101906107009190613783565b611a44565b005b34801561071357600080fd5b5061071c611aa6565b6040516107299190613e6c565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613929565b611ab9565b6040516107669190613e87565b60405180910390f35b34801561077b57600080fd5b50610784611acb565b005b34801561079257600080fd5b5061079b611b73565b6040516107a891906141e9565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d391906136c3565b611b79565b005b3480156107e657600080fd5b5061080160048036038101906107fc91906136f0565b611c21565b60405161080e9190613e6c565b60405180910390f35b34801561082357600080fd5b5061083e600480360381019061083991906136c3565b611cb5565b005b600061084b82611e61565b9050919050565b60606000805461086190614499565b80601f016020809104026020016040519081016040528092919081815260200182805461088d90614499565b80156108da5780601f106108af576101008083540402835291602001916108da565b820191906000526020600020905b8154815290600101906020018083116108bd57829003601f168201915b5050505050905090565b60006108ef82611edb565b61092e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092590614089565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109748261127f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc90614109565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a04611f47565b73ffffffffffffffffffffffffffffffffffffffff161480610a335750610a3281610a2d611f47565b611c21565b5b610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6990613fe9565b60405180910390fd5b610a7c8383611f4f565b505050565b600e54341015610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd90614129565b60405180910390fd5b600f60019054906101000a900460ff16610cdc5760011515600f60009054906101000a900460ff16151514610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790614169565b60405180910390fd5b6000733d7071e5647251035271aeb780d832b381fa730f905060007317b28274f8c1d64b683ad097988fa5707b228f80905060008273ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610b9d9190613e05565b60206040518083038186803b158015610bb557600080fd5b505afa158015610bc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bed9190613956565b905060008273ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610c2a9190613e05565b60206040518083038186803b158015610c4257600080fd5b505afa158015610c56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7a9190613956565b90506000821180610c8b5750600081115b610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc1906141c9565b60405180910390fd5b610cd333612008565b50505050610ce6565b610ce533612008565b5b565b6000600880549050905090565b610d06610d00611f47565b82612073565b610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90614149565b60405180910390fd5b610d50838383612151565b505050565b6000610d6083611445565b8210610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890613ee9565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e02611f47565b73ffffffffffffffffffffffffffffffffffffffff16610e20611768565b73ffffffffffffffffffffffffffffffffffffffff1614610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d906140a9565b60405180910390fd5b6000479050734a7642aa9b2faf4467b76346fbcb0c7135afbf0c73ffffffffffffffffffffffffffffffffffffffff166108fc6064601484610eb89190614355565b610ec29190614324565b9081150290604051600060405180830381858888f19350505050158015610eed573d6000803e3d6000fd5b507323e0eec25afef80871e19e847df0d3354d7e409873ffffffffffffffffffffffffffffffffffffffff166108fc6064602384610f2b9190614355565b610f359190614324565b9081150290604051600060405180830381858888f19350505050158015610f60573d6000803e3d6000fd5b507381eae876f52e9fce868976b26c742a83ea7ede2073ffffffffffffffffffffffffffffffffffffffff166108fc6064602d84610f9e9190614355565b610fa89190614324565b9081150290604051600060405180830381858888f19350505050158015610fd3573d6000803e3d6000fd5b5050565b610fdf611f47565b73ffffffffffffffffffffffffffffffffffffffff16610ffd611768565b73ffffffffffffffffffffffffffffffffffffffff1614611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a906140a9565b60405180910390fd5b61105b6123ad565b565b611065611f47565b73ffffffffffffffffffffffffffffffffffffffff16611083611768565b73ffffffffffffffffffffffffffffffffffffffff16146110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d0906140a9565b60405180910390fd5b6110e281612008565b50565b61110083838360405180602001604052806000815250611a44565b505050565b611116611110611f47565b82612073565b611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c906141a9565b60405180910390fd5b61115e8161244f565b50565b600061116b610ce8565b82106111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390614189565b60405180910390fd5b600882815481106111c0576111bf614632565b5b90600052602060002001549050919050565b6111da611f47565b73ffffffffffffffffffffffffffffffffffffffff166111f8611768565b73ffffffffffffffffffffffffffffffffffffffff161461124e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611245906140a9565b60405180910390fd5b8060109080519060200190611264929190613482565b5050565b6000600b60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f90614029565b60405180910390fd5b80915050919050565b6010805461133e90614499565b80601f016020809104026020016040519081016040528092919081815260200182805461136a90614499565b80156113b75780601f1061138c576101008083540402835291602001916113b7565b820191906000526020600020905b81548152906001019060200180831161139a57829003601f168201915b505050505081565b6113c7611f47565b73ffffffffffffffffffffffffffffffffffffffff166113e5611768565b73ffffffffffffffffffffffffffffffffffffffff161461143b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611432906140a9565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90614009565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611505611f47565b73ffffffffffffffffffffffffffffffffffffffff16611523611768565b73ffffffffffffffffffffffffffffffffffffffff1614611579576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611570906140a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611642611f47565b73ffffffffffffffffffffffffffffffffffffffff16611660611768565b73ffffffffffffffffffffffffffffffffffffffff16146116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad906140a9565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b6116ea611f47565b73ffffffffffffffffffffffffffffffffffffffff16611708611768565b73ffffffffffffffffffffffffffffffffffffffff161461175e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611755906140a9565b60405180910390fd5b61176661245b565b565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61179a611f47565b73ffffffffffffffffffffffffffffffffffffffff166117b8611768565b73ffffffffffffffffffffffffffffffffffffffff161461180e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611805906140a9565b60405180910390fd5b80600e8190555050565b60606001805461182790614499565b80601f016020809104026020016040519081016040528092919081815260200182805461185390614499565b80156118a05780601f10611875576101008083540402835291602001916118a0565b820191906000526020600020905b81548152906001019060200180831161188357829003601f168201915b5050505050905090565b600f60019054906101000a900460ff1681565b600e5481565b6118cb611f47565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090613f89565b60405180910390fd5b8060056000611946611f47565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119f3611f47565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a389190613e6c565b60405180910390a35050565b611a55611a4f611f47565b83612073565b611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b90614149565b60405180910390fd5b611aa0848484846124fe565b50505050565b600f60009054906101000a900460ff1681565b6060611ac48261255a565b9050919050565b611ad3611f47565b73ffffffffffffffffffffffffffffffffffffffff16611af1611768565b73ffffffffffffffffffffffffffffffffffffffff1614611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e906140a9565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600d5481565b611b81611f47565b73ffffffffffffffffffffffffffffffffffffffff16611b9f611768565b73ffffffffffffffffffffffffffffffffffffffff1614611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec906140a9565b60405180910390fd5b60005b6019811015611c1d57611c0a82612008565b8080611c15906144fc565b915050611bf8565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cbd611f47565b73ffffffffffffffffffffffffffffffffffffffff16611cdb611768565b73ffffffffffffffffffffffffffffffffffffffff1614611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d28906140a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9890613f29565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ed45750611ed3826126ac565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fc28361127f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600d54612013610ce8565b10612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90613ec9565b60405180910390fd5b61206681612061600c61278e565b61279c565b612070600c6127ba565b50565b600061207e82611edb565b6120bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b490613fa9565b60405180910390fd5b60006120c88361127f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061213757508373ffffffffffffffffffffffffffffffffffffffff1661211f846108e4565b73ffffffffffffffffffffffffffffffffffffffff16145b8061214857506121478185611c21565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121718261127f565b73ffffffffffffffffffffffffffffffffffffffff16146121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be906140c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222e90613f69565b60405180910390fd5b6122428383836127d0565b61224d600082611f4f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461229d91906143af565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122f491906142ce565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6123b5611268565b6123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb90613ea9565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612438611f47565b6040516124459190613e05565b60405180910390a1565b61245881612828565b50565b612463611268565b156124a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249a90613fc9565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124e7611f47565b6040516124f49190613e05565b60405180910390a1565b612509848484612151565b6125158484848461287b565b612554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254b90613f09565b60405180910390fd5b50505050565b606061256582611edb565b6125a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259b90614069565b60405180910390fd5b6000600a600084815260200190815260200160002080546125c490614499565b80601f01602080910402602001604051908101604052809291908181526020018280546125f090614499565b801561263d5780601f106126125761010080835404028352916020019161263d565b820191906000526020600020905b81548152906001019060200180831161262057829003601f168201915b50505050509050600061264e612a12565b90506000815114156126645781925050506126a7565b600082511115612699578082604051602001612681929190613de1565b604051602081830303815290604052925050506126a7565b6126a284612aa4565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061277757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612787575061278682612b4b565b5b9050919050565b600081600001549050919050565b6127b6828260405180602001604052806000815250612bb5565b5050565b6001816000016000828254019250508190555050565b6127d8611268565b15612818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280f90613fc9565b60405180910390fd5b612823838383612c10565b505050565b61283181612d24565b6000600a6000838152602001908152602001600020805461285190614499565b90501461287857600a600082815260200190815260200160002060006128779190613508565b5b50565b600061289c8473ffffffffffffffffffffffffffffffffffffffff16612e35565b15612a05578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128c5611f47565b8786866040518563ffffffff1660e01b81526004016128e79493929190613e20565b602060405180830381600087803b15801561290157600080fd5b505af192505050801561293257506040513d601f19601f8201168201806040525081019061292f91906138b3565b60015b6129b5573d8060008114612962576040519150601f19603f3d011682016040523d82523d6000602084013e612967565b606091505b506000815114156129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a490613f09565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a0a565b600190505b949350505050565b606060108054612a2190614499565b80601f0160208091040260200160405190810160405280929190818152602001828054612a4d90614499565b8015612a9a5780601f10612a6f57610100808354040283529160200191612a9a565b820191906000526020600020905b815481529060010190602001808311612a7d57829003601f168201915b5050505050905090565b6060612aaf82611edb565b612aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae5906140e9565b60405180910390fd5b6000612af8612a12565b90506000815111612b185760405180602001604052806000815250612b43565b80612b2284612e48565b604051602001612b33929190613de1565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612bbf8383612fa9565b612bcc600084848461287b565b612c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0290613f09565b60405180910390fd5b505050565b612c1b838383613177565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c5e57612c598161317c565b612c9d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c9c57612c9b83826131c5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ce057612cdb81613332565b612d1f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d1e57612d1d8282613403565b5b5b505050565b6000612d2f8261127f565b9050612d3d816000846127d0565b612d48600083611f4f565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d9891906143af565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606000821415612e90576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fa4565b600082905060005b60008214612ec2578080612eab906144fc565b915050600a82612ebb9190614324565b9150612e98565b60008167ffffffffffffffff811115612ede57612edd614661565b5b6040519080825280601f01601f191660200182016040528015612f105781602001600182028036833780820191505090505b5090505b60008514612f9d57600182612f2991906143af565b9150600a85612f389190614545565b6030612f4491906142ce565b60f81b818381518110612f5a57612f59614632565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f969190614324565b9450612f14565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301090614049565b60405180910390fd5b61302281611edb565b15613062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305990613f49565b60405180910390fd5b61306e600083836127d0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130be91906142ce565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131d284611445565b6131dc91906143af565b90506000600760008481526020019081526020016000205490508181146132c1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061334691906143af565b905060006009600084815260200190815260200160002054905060006008838154811061337657613375614632565b5b90600052602060002001549050806008838154811061339857613397614632565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133e7576133e6614603565b5b6001900381819060005260206000200160009055905550505050565b600061340e83611445565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461348e90614499565b90600052602060002090601f0160209004810192826134b057600085556134f7565b82601f106134c957805160ff19168380011785556134f7565b828001600101855582156134f7579182015b828111156134f65782518255916020019190600101906134db565b5b5090506135049190613548565b5090565b50805461351490614499565b6000825580601f106135265750613545565b601f0160209004906000526020600020908101906135449190613548565b5b50565b5b80821115613561576000816000905550600101613549565b5090565b600061357861357384614229565b614204565b90508281526020810184848401111561359457613593614695565b5b61359f848285614457565b509392505050565b60006135ba6135b58461425a565b614204565b9050828152602081018484840111156135d6576135d5614695565b5b6135e1848285614457565b509392505050565b6000813590506135f881614d8b565b92915050565b60008135905061360d81614da2565b92915050565b60008135905061362281614db9565b92915050565b60008151905061363781614db9565b92915050565b600082601f83011261365257613651614690565b5b8135613662848260208601613565565b91505092915050565b600082601f8301126136805761367f614690565b5b81356136908482602086016135a7565b91505092915050565b6000813590506136a881614dd0565b92915050565b6000815190506136bd81614dd0565b92915050565b6000602082840312156136d9576136d861469f565b5b60006136e7848285016135e9565b91505092915050565b600080604083850312156137075761370661469f565b5b6000613715858286016135e9565b9250506020613726858286016135e9565b9150509250929050565b6000806000606084860312156137495761374861469f565b5b6000613757868287016135e9565b9350506020613768868287016135e9565b925050604061377986828701613699565b9150509250925092565b6000806000806080858703121561379d5761379c61469f565b5b60006137ab878288016135e9565b94505060206137bc878288016135e9565b93505060406137cd87828801613699565b925050606085013567ffffffffffffffff8111156137ee576137ed61469a565b5b6137fa8782880161363d565b91505092959194509250565b6000806040838503121561381d5761381c61469f565b5b600061382b858286016135e9565b925050602061383c858286016135fe565b9150509250929050565b6000806040838503121561385d5761385c61469f565b5b600061386b858286016135e9565b925050602061387c85828601613699565b9150509250929050565b60006020828403121561389c5761389b61469f565b5b60006138aa84828501613613565b91505092915050565b6000602082840312156138c9576138c861469f565b5b60006138d784828501613628565b91505092915050565b6000602082840312156138f6576138f561469f565b5b600082013567ffffffffffffffff8111156139145761391361469a565b5b6139208482850161366b565b91505092915050565b60006020828403121561393f5761393e61469f565b5b600061394d84828501613699565b91505092915050565b60006020828403121561396c5761396b61469f565b5b600061397a848285016136ae565b91505092915050565b61398c816143e3565b82525050565b61399b816143f5565b82525050565b60006139ac8261428b565b6139b681856142a1565b93506139c6818560208601614466565b6139cf816146a4565b840191505092915050565b60006139e582614296565b6139ef81856142b2565b93506139ff818560208601614466565b613a08816146a4565b840191505092915050565b6000613a1e82614296565b613a2881856142c3565b9350613a38818560208601614466565b80840191505092915050565b6000613a516014836142b2565b9150613a5c826146b5565b602082019050919050565b6000613a74600f836142b2565b9150613a7f826146de565b602082019050919050565b6000613a97602b836142b2565b9150613aa282614707565b604082019050919050565b6000613aba6032836142b2565b9150613ac582614756565b604082019050919050565b6000613add6026836142b2565b9150613ae8826147a5565b604082019050919050565b6000613b00601c836142b2565b9150613b0b826147f4565b602082019050919050565b6000613b236024836142b2565b9150613b2e8261481d565b604082019050919050565b6000613b466019836142b2565b9150613b518261486c565b602082019050919050565b6000613b69602c836142b2565b9150613b7482614895565b604082019050919050565b6000613b8c6010836142b2565b9150613b97826148e4565b602082019050919050565b6000613baf6038836142b2565b9150613bba8261490d565b604082019050919050565b6000613bd2602a836142b2565b9150613bdd8261495c565b604082019050919050565b6000613bf56029836142b2565b9150613c00826149ab565b604082019050919050565b6000613c186020836142b2565b9150613c23826149fa565b602082019050919050565b6000613c3b6031836142b2565b9150613c4682614a23565b604082019050919050565b6000613c5e602c836142b2565b9150613c6982614a72565b604082019050919050565b6000613c816020836142b2565b9150613c8c82614ac1565b602082019050919050565b6000613ca46029836142b2565b9150613caf82614aea565b604082019050919050565b6000613cc7602f836142b2565b9150613cd282614b39565b604082019050919050565b6000613cea6021836142b2565b9150613cf582614b88565b604082019050919050565b6000613d0d6013836142b2565b9150613d1882614bd7565b602082019050919050565b6000613d306031836142b2565b9150613d3b82614c00565b604082019050919050565b6000613d536013836142b2565b9150613d5e82614c4f565b602082019050919050565b6000613d76602c836142b2565b9150613d8182614c78565b604082019050919050565b6000613d996030836142b2565b9150613da482614cc7565b604082019050919050565b6000613dbc6052836142b2565b9150613dc782614d16565b606082019050919050565b613ddb8161444d565b82525050565b6000613ded8285613a13565b9150613df98284613a13565b91508190509392505050565b6000602082019050613e1a6000830184613983565b92915050565b6000608082019050613e356000830187613983565b613e426020830186613983565b613e4f6040830185613dd2565b8181036060830152613e6181846139a1565b905095945050505050565b6000602082019050613e816000830184613992565b92915050565b60006020820190508181036000830152613ea181846139da565b905092915050565b60006020820190508181036000830152613ec281613a44565b9050919050565b60006020820190508181036000830152613ee281613a67565b9050919050565b60006020820190508181036000830152613f0281613a8a565b9050919050565b60006020820190508181036000830152613f2281613aad565b9050919050565b60006020820190508181036000830152613f4281613ad0565b9050919050565b60006020820190508181036000830152613f6281613af3565b9050919050565b60006020820190508181036000830152613f8281613b16565b9050919050565b60006020820190508181036000830152613fa281613b39565b9050919050565b60006020820190508181036000830152613fc281613b5c565b9050919050565b60006020820190508181036000830152613fe281613b7f565b9050919050565b6000602082019050818103600083015261400281613ba2565b9050919050565b6000602082019050818103600083015261402281613bc5565b9050919050565b6000602082019050818103600083015261404281613be8565b9050919050565b6000602082019050818103600083015261406281613c0b565b9050919050565b6000602082019050818103600083015261408281613c2e565b9050919050565b600060208201905081810360008301526140a281613c51565b9050919050565b600060208201905081810360008301526140c281613c74565b9050919050565b600060208201905081810360008301526140e281613c97565b9050919050565b6000602082019050818103600083015261410281613cba565b9050919050565b6000602082019050818103600083015261412281613cdd565b9050919050565b6000602082019050818103600083015261414281613d00565b9050919050565b6000602082019050818103600083015261416281613d23565b9050919050565b6000602082019050818103600083015261418281613d46565b9050919050565b600060208201905081810360008301526141a281613d69565b9050919050565b600060208201905081810360008301526141c281613d8c565b9050919050565b600060208201905081810360008301526141e281613daf565b9050919050565b60006020820190506141fe6000830184613dd2565b92915050565b600061420e61421f565b905061421a82826144cb565b919050565b6000604051905090565b600067ffffffffffffffff82111561424457614243614661565b5b61424d826146a4565b9050602081019050919050565b600067ffffffffffffffff82111561427557614274614661565b5b61427e826146a4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142d98261444d565b91506142e48361444d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561431957614318614576565b5b828201905092915050565b600061432f8261444d565b915061433a8361444d565b92508261434a576143496145a5565b5b828204905092915050565b60006143608261444d565b915061436b8361444d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143a4576143a3614576565b5b828202905092915050565b60006143ba8261444d565b91506143c58361444d565b9250828210156143d8576143d7614576565b5b828203905092915050565b60006143ee8261442d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614484578082015181840152602081019050614469565b83811115614493576000848401525b50505050565b600060028204905060018216806144b157607f821691505b602082108114156144c5576144c46145d4565b5b50919050565b6144d4826146a4565b810181811067ffffffffffffffff821117156144f3576144f2614661565b5b80604052505050565b60006145078261444d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561453a57614539614576565b5b600182019050919050565b60006145508261444d565b915061455b8361444d565b92508261456b5761456a6145a5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f737570706c79206465706c657465640000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f75676820776173207061696400000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f70726573616c65206973206e6f74206f70656e00000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f796f75206d75737420686f6c6420612047616e746f6d2053746f6e65206f722060008201527f506570655461726f743a2045646974696f6e203020746f20706172746963697060208201527f61746520696e207468652070726573616c650000000000000000000000000000604082015250565b614d94816143e3565b8114614d9f57600080fd5b50565b614dab816143f5565b8114614db657600080fd5b50565b614dc281614401565b8114614dcd57600080fd5b50565b614dd98161444d565b8114614de457600080fd5b5056fea26469706673582212207ae47683116279a599b17a07cdec82ee7079df57adf26b7e92ed0d4a3a4ce68f64736f6c63430008070033
Deployed Bytecode
0x60806040526004361061021e5760003560e01c80636f8b44b011610123578063a035b1fe116100ab578063ca3cb5221161006f578063ca3cb5221461076f578063d5abeb0114610786578063da5f6843146107b1578063e985e9c5146107da578063f2fde38b1461081757610225565b8063a035b1fe1461068a578063a22cb465146106b5578063b88d4fde146106de578063ba11ecde14610707578063c87b56dd1461073257610225565b80638456cb59116100f25780638456cb59146105c95780638da5cb5b146105e057806391b7f5ed1461060b57806395d89b411461063457806399288dbb1461065f57610225565b80636f8b44b01461053557806370a082311461055e578063715018a61461059b5780637d8966e4146105b257610225565b80633f4ba83a116101a65780634f6ccce7116101755780634f6ccce71461043c57806355f804b3146104795780635c975abb146104a25780636352211e146104cd5780636c0360eb1461050a57610225565b80633f4ba83a146103aa57806340d097c3146103c157806342842e0e146103ea57806342966c681461041357610225565b80631249c58b116101ed5780631249c58b146102f857806318160ddd1461030257806323b872dd1461032d5780632f745c59146103565780633ccfd60b1461039357610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613886565b610840565b60405161025e9190613e6c565b60405180910390f35b34801561027357600080fd5b5061027c610852565b6040516102899190613e87565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613929565b6108e4565b6040516102c69190613e05565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613846565b610969565b005b610300610a81565b005b34801561030e57600080fd5b50610317610ce8565b60405161032491906141e9565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f9190613730565b610cf5565b005b34801561036257600080fd5b5061037d60048036038101906103789190613846565b610d55565b60405161038a91906141e9565b60405180910390f35b34801561039f57600080fd5b506103a8610dfa565b005b3480156103b657600080fd5b506103bf610fd7565b005b3480156103cd57600080fd5b506103e860048036038101906103e391906136c3565b61105d565b005b3480156103f657600080fd5b50610411600480360381019061040c9190613730565b6110e5565b005b34801561041f57600080fd5b5061043a60048036038101906104359190613929565b611105565b005b34801561044857600080fd5b50610463600480360381019061045e9190613929565b611161565b60405161047091906141e9565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b91906138e0565b6111d2565b005b3480156104ae57600080fd5b506104b7611268565b6040516104c49190613e6c565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190613929565b61127f565b6040516105019190613e05565b60405180910390f35b34801561051657600080fd5b5061051f611331565b60405161052c9190613e87565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613929565b6113bf565b005b34801561056a57600080fd5b50610585600480360381019061058091906136c3565b611445565b60405161059291906141e9565b60405180910390f35b3480156105a757600080fd5b506105b06114fd565b005b3480156105be57600080fd5b506105c761163a565b005b3480156105d557600080fd5b506105de6116e2565b005b3480156105ec57600080fd5b506105f5611768565b6040516106029190613e05565b60405180910390f35b34801561061757600080fd5b50610632600480360381019061062d9190613929565b611792565b005b34801561064057600080fd5b50610649611818565b6040516106569190613e87565b60405180910390f35b34801561066b57600080fd5b506106746118aa565b6040516106819190613e6c565b60405180910390f35b34801561069657600080fd5b5061069f6118bd565b6040516106ac91906141e9565b60405180910390f35b3480156106c157600080fd5b506106dc60048036038101906106d79190613806565b6118c3565b005b3480156106ea57600080fd5b5061070560048036038101906107009190613783565b611a44565b005b34801561071357600080fd5b5061071c611aa6565b6040516107299190613e6c565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613929565b611ab9565b6040516107669190613e87565b60405180910390f35b34801561077b57600080fd5b50610784611acb565b005b34801561079257600080fd5b5061079b611b73565b6040516107a891906141e9565b60405180910390f35b3480156107bd57600080fd5b506107d860048036038101906107d391906136c3565b611b79565b005b3480156107e657600080fd5b5061080160048036038101906107fc91906136f0565b611c21565b60405161080e9190613e6c565b60405180910390f35b34801561082357600080fd5b5061083e600480360381019061083991906136c3565b611cb5565b005b600061084b82611e61565b9050919050565b60606000805461086190614499565b80601f016020809104026020016040519081016040528092919081815260200182805461088d90614499565b80156108da5780601f106108af576101008083540402835291602001916108da565b820191906000526020600020905b8154815290600101906020018083116108bd57829003601f168201915b5050505050905090565b60006108ef82611edb565b61092e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092590614089565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109748261127f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dc90614109565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a04611f47565b73ffffffffffffffffffffffffffffffffffffffff161480610a335750610a3281610a2d611f47565b611c21565b5b610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6990613fe9565b60405180910390fd5b610a7c8383611f4f565b505050565b600e54341015610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd90614129565b60405180910390fd5b600f60019054906101000a900460ff16610cdc5760011515600f60009054906101000a900460ff16151514610b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2790614169565b60405180910390fd5b6000733d7071e5647251035271aeb780d832b381fa730f905060007317b28274f8c1d64b683ad097988fa5707b228f80905060008273ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610b9d9190613e05565b60206040518083038186803b158015610bb557600080fd5b505afa158015610bc9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bed9190613956565b905060008273ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610c2a9190613e05565b60206040518083038186803b158015610c4257600080fd5b505afa158015610c56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7a9190613956565b90506000821180610c8b5750600081115b610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc1906141c9565b60405180910390fd5b610cd333612008565b50505050610ce6565b610ce533612008565b5b565b6000600880549050905090565b610d06610d00611f47565b82612073565b610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90614149565b60405180910390fd5b610d50838383612151565b505050565b6000610d6083611445565b8210610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890613ee9565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e02611f47565b73ffffffffffffffffffffffffffffffffffffffff16610e20611768565b73ffffffffffffffffffffffffffffffffffffffff1614610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d906140a9565b60405180910390fd5b6000479050734a7642aa9b2faf4467b76346fbcb0c7135afbf0c73ffffffffffffffffffffffffffffffffffffffff166108fc6064601484610eb89190614355565b610ec29190614324565b9081150290604051600060405180830381858888f19350505050158015610eed573d6000803e3d6000fd5b507323e0eec25afef80871e19e847df0d3354d7e409873ffffffffffffffffffffffffffffffffffffffff166108fc6064602384610f2b9190614355565b610f359190614324565b9081150290604051600060405180830381858888f19350505050158015610f60573d6000803e3d6000fd5b507381eae876f52e9fce868976b26c742a83ea7ede2073ffffffffffffffffffffffffffffffffffffffff166108fc6064602d84610f9e9190614355565b610fa89190614324565b9081150290604051600060405180830381858888f19350505050158015610fd3573d6000803e3d6000fd5b5050565b610fdf611f47565b73ffffffffffffffffffffffffffffffffffffffff16610ffd611768565b73ffffffffffffffffffffffffffffffffffffffff1614611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a906140a9565b60405180910390fd5b61105b6123ad565b565b611065611f47565b73ffffffffffffffffffffffffffffffffffffffff16611083611768565b73ffffffffffffffffffffffffffffffffffffffff16146110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d0906140a9565b60405180910390fd5b6110e281612008565b50565b61110083838360405180602001604052806000815250611a44565b505050565b611116611110611f47565b82612073565b611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c906141a9565b60405180910390fd5b61115e8161244f565b50565b600061116b610ce8565b82106111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a390614189565b60405180910390fd5b600882815481106111c0576111bf614632565b5b90600052602060002001549050919050565b6111da611f47565b73ffffffffffffffffffffffffffffffffffffffff166111f8611768565b73ffffffffffffffffffffffffffffffffffffffff161461124e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611245906140a9565b60405180910390fd5b8060109080519060200190611264929190613482565b5050565b6000600b60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f90614029565b60405180910390fd5b80915050919050565b6010805461133e90614499565b80601f016020809104026020016040519081016040528092919081815260200182805461136a90614499565b80156113b75780601f1061138c576101008083540402835291602001916113b7565b820191906000526020600020905b81548152906001019060200180831161139a57829003601f168201915b505050505081565b6113c7611f47565b73ffffffffffffffffffffffffffffffffffffffff166113e5611768565b73ffffffffffffffffffffffffffffffffffffffff161461143b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611432906140a9565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90614009565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611505611f47565b73ffffffffffffffffffffffffffffffffffffffff16611523611768565b73ffffffffffffffffffffffffffffffffffffffff1614611579576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611570906140a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611642611f47565b73ffffffffffffffffffffffffffffffffffffffff16611660611768565b73ffffffffffffffffffffffffffffffffffffffff16146116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad906140a9565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b6116ea611f47565b73ffffffffffffffffffffffffffffffffffffffff16611708611768565b73ffffffffffffffffffffffffffffffffffffffff161461175e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611755906140a9565b60405180910390fd5b61176661245b565b565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61179a611f47565b73ffffffffffffffffffffffffffffffffffffffff166117b8611768565b73ffffffffffffffffffffffffffffffffffffffff161461180e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611805906140a9565b60405180910390fd5b80600e8190555050565b60606001805461182790614499565b80601f016020809104026020016040519081016040528092919081815260200182805461185390614499565b80156118a05780601f10611875576101008083540402835291602001916118a0565b820191906000526020600020905b81548152906001019060200180831161188357829003601f168201915b5050505050905090565b600f60019054906101000a900460ff1681565b600e5481565b6118cb611f47565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090613f89565b60405180910390fd5b8060056000611946611f47565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119f3611f47565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a389190613e6c565b60405180910390a35050565b611a55611a4f611f47565b83612073565b611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b90614149565b60405180910390fd5b611aa0848484846124fe565b50505050565b600f60009054906101000a900460ff1681565b6060611ac48261255a565b9050919050565b611ad3611f47565b73ffffffffffffffffffffffffffffffffffffffff16611af1611768565b73ffffffffffffffffffffffffffffffffffffffff1614611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e906140a9565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600d5481565b611b81611f47565b73ffffffffffffffffffffffffffffffffffffffff16611b9f611768565b73ffffffffffffffffffffffffffffffffffffffff1614611bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bec906140a9565b60405180910390fd5b60005b6019811015611c1d57611c0a82612008565b8080611c15906144fc565b915050611bf8565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cbd611f47565b73ffffffffffffffffffffffffffffffffffffffff16611cdb611768565b73ffffffffffffffffffffffffffffffffffffffff1614611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d28906140a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9890613f29565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ed45750611ed3826126ac565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fc28361127f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600d54612013610ce8565b10612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90613ec9565b60405180910390fd5b61206681612061600c61278e565b61279c565b612070600c6127ba565b50565b600061207e82611edb565b6120bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b490613fa9565b60405180910390fd5b60006120c88361127f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061213757508373ffffffffffffffffffffffffffffffffffffffff1661211f846108e4565b73ffffffffffffffffffffffffffffffffffffffff16145b8061214857506121478185611c21565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121718261127f565b73ffffffffffffffffffffffffffffffffffffffff16146121c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121be906140c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222e90613f69565b60405180910390fd5b6122428383836127d0565b61224d600082611f4f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461229d91906143af565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122f491906142ce565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6123b5611268565b6123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb90613ea9565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612438611f47565b6040516124459190613e05565b60405180910390a1565b61245881612828565b50565b612463611268565b156124a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249a90613fc9565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124e7611f47565b6040516124f49190613e05565b60405180910390a1565b612509848484612151565b6125158484848461287b565b612554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254b90613f09565b60405180910390fd5b50505050565b606061256582611edb565b6125a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259b90614069565b60405180910390fd5b6000600a600084815260200190815260200160002080546125c490614499565b80601f01602080910402602001604051908101604052809291908181526020018280546125f090614499565b801561263d5780601f106126125761010080835404028352916020019161263d565b820191906000526020600020905b81548152906001019060200180831161262057829003601f168201915b50505050509050600061264e612a12565b90506000815114156126645781925050506126a7565b600082511115612699578082604051602001612681929190613de1565b604051602081830303815290604052925050506126a7565b6126a284612aa4565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061277757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612787575061278682612b4b565b5b9050919050565b600081600001549050919050565b6127b6828260405180602001604052806000815250612bb5565b5050565b6001816000016000828254019250508190555050565b6127d8611268565b15612818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280f90613fc9565b60405180910390fd5b612823838383612c10565b505050565b61283181612d24565b6000600a6000838152602001908152602001600020805461285190614499565b90501461287857600a600082815260200190815260200160002060006128779190613508565b5b50565b600061289c8473ffffffffffffffffffffffffffffffffffffffff16612e35565b15612a05578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128c5611f47565b8786866040518563ffffffff1660e01b81526004016128e79493929190613e20565b602060405180830381600087803b15801561290157600080fd5b505af192505050801561293257506040513d601f19601f8201168201806040525081019061292f91906138b3565b60015b6129b5573d8060008114612962576040519150601f19603f3d011682016040523d82523d6000602084013e612967565b606091505b506000815114156129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a490613f09565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a0a565b600190505b949350505050565b606060108054612a2190614499565b80601f0160208091040260200160405190810160405280929190818152602001828054612a4d90614499565b8015612a9a5780601f10612a6f57610100808354040283529160200191612a9a565b820191906000526020600020905b815481529060010190602001808311612a7d57829003601f168201915b5050505050905090565b6060612aaf82611edb565b612aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae5906140e9565b60405180910390fd5b6000612af8612a12565b90506000815111612b185760405180602001604052806000815250612b43565b80612b2284612e48565b604051602001612b33929190613de1565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612bbf8383612fa9565b612bcc600084848461287b565b612c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0290613f09565b60405180910390fd5b505050565b612c1b838383613177565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c5e57612c598161317c565b612c9d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c9c57612c9b83826131c5565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ce057612cdb81613332565b612d1f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d1e57612d1d8282613403565b5b5b505050565b6000612d2f8261127f565b9050612d3d816000846127d0565b612d48600083611f4f565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d9891906143af565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606000821415612e90576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fa4565b600082905060005b60008214612ec2578080612eab906144fc565b915050600a82612ebb9190614324565b9150612e98565b60008167ffffffffffffffff811115612ede57612edd614661565b5b6040519080825280601f01601f191660200182016040528015612f105781602001600182028036833780820191505090505b5090505b60008514612f9d57600182612f2991906143af565b9150600a85612f389190614545565b6030612f4491906142ce565b60f81b818381518110612f5a57612f59614632565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f969190614324565b9450612f14565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301090614049565b60405180910390fd5b61302281611edb565b15613062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305990613f49565b60405180910390fd5b61306e600083836127d0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130be91906142ce565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131d284611445565b6131dc91906143af565b90506000600760008481526020019081526020016000205490508181146132c1576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061334691906143af565b905060006009600084815260200190815260200160002054905060006008838154811061337657613375614632565b5b90600052602060002001549050806008838154811061339857613397614632565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806133e7576133e6614603565b5b6001900381819060005260206000200160009055905550505050565b600061340e83611445565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461348e90614499565b90600052602060002090601f0160209004810192826134b057600085556134f7565b82601f106134c957805160ff19168380011785556134f7565b828001600101855582156134f7579182015b828111156134f65782518255916020019190600101906134db565b5b5090506135049190613548565b5090565b50805461351490614499565b6000825580601f106135265750613545565b601f0160209004906000526020600020908101906135449190613548565b5b50565b5b80821115613561576000816000905550600101613549565b5090565b600061357861357384614229565b614204565b90508281526020810184848401111561359457613593614695565b5b61359f848285614457565b509392505050565b60006135ba6135b58461425a565b614204565b9050828152602081018484840111156135d6576135d5614695565b5b6135e1848285614457565b509392505050565b6000813590506135f881614d8b565b92915050565b60008135905061360d81614da2565b92915050565b60008135905061362281614db9565b92915050565b60008151905061363781614db9565b92915050565b600082601f83011261365257613651614690565b5b8135613662848260208601613565565b91505092915050565b600082601f8301126136805761367f614690565b5b81356136908482602086016135a7565b91505092915050565b6000813590506136a881614dd0565b92915050565b6000815190506136bd81614dd0565b92915050565b6000602082840312156136d9576136d861469f565b5b60006136e7848285016135e9565b91505092915050565b600080604083850312156137075761370661469f565b5b6000613715858286016135e9565b9250506020613726858286016135e9565b9150509250929050565b6000806000606084860312156137495761374861469f565b5b6000613757868287016135e9565b9350506020613768868287016135e9565b925050604061377986828701613699565b9150509250925092565b6000806000806080858703121561379d5761379c61469f565b5b60006137ab878288016135e9565b94505060206137bc878288016135e9565b93505060406137cd87828801613699565b925050606085013567ffffffffffffffff8111156137ee576137ed61469a565b5b6137fa8782880161363d565b91505092959194509250565b6000806040838503121561381d5761381c61469f565b5b600061382b858286016135e9565b925050602061383c858286016135fe565b9150509250929050565b6000806040838503121561385d5761385c61469f565b5b600061386b858286016135e9565b925050602061387c85828601613699565b9150509250929050565b60006020828403121561389c5761389b61469f565b5b60006138aa84828501613613565b91505092915050565b6000602082840312156138c9576138c861469f565b5b60006138d784828501613628565b91505092915050565b6000602082840312156138f6576138f561469f565b5b600082013567ffffffffffffffff8111156139145761391361469a565b5b6139208482850161366b565b91505092915050565b60006020828403121561393f5761393e61469f565b5b600061394d84828501613699565b91505092915050565b60006020828403121561396c5761396b61469f565b5b600061397a848285016136ae565b91505092915050565b61398c816143e3565b82525050565b61399b816143f5565b82525050565b60006139ac8261428b565b6139b681856142a1565b93506139c6818560208601614466565b6139cf816146a4565b840191505092915050565b60006139e582614296565b6139ef81856142b2565b93506139ff818560208601614466565b613a08816146a4565b840191505092915050565b6000613a1e82614296565b613a2881856142c3565b9350613a38818560208601614466565b80840191505092915050565b6000613a516014836142b2565b9150613a5c826146b5565b602082019050919050565b6000613a74600f836142b2565b9150613a7f826146de565b602082019050919050565b6000613a97602b836142b2565b9150613aa282614707565b604082019050919050565b6000613aba6032836142b2565b9150613ac582614756565b604082019050919050565b6000613add6026836142b2565b9150613ae8826147a5565b604082019050919050565b6000613b00601c836142b2565b9150613b0b826147f4565b602082019050919050565b6000613b236024836142b2565b9150613b2e8261481d565b604082019050919050565b6000613b466019836142b2565b9150613b518261486c565b602082019050919050565b6000613b69602c836142b2565b9150613b7482614895565b604082019050919050565b6000613b8c6010836142b2565b9150613b97826148e4565b602082019050919050565b6000613baf6038836142b2565b9150613bba8261490d565b604082019050919050565b6000613bd2602a836142b2565b9150613bdd8261495c565b604082019050919050565b6000613bf56029836142b2565b9150613c00826149ab565b604082019050919050565b6000613c186020836142b2565b9150613c23826149fa565b602082019050919050565b6000613c3b6031836142b2565b9150613c4682614a23565b604082019050919050565b6000613c5e602c836142b2565b9150613c6982614a72565b604082019050919050565b6000613c816020836142b2565b9150613c8c82614ac1565b602082019050919050565b6000613ca46029836142b2565b9150613caf82614aea565b604082019050919050565b6000613cc7602f836142b2565b9150613cd282614b39565b604082019050919050565b6000613cea6021836142b2565b9150613cf582614b88565b604082019050919050565b6000613d0d6013836142b2565b9150613d1882614bd7565b602082019050919050565b6000613d306031836142b2565b9150613d3b82614c00565b604082019050919050565b6000613d536013836142b2565b9150613d5e82614c4f565b602082019050919050565b6000613d76602c836142b2565b9150613d8182614c78565b604082019050919050565b6000613d996030836142b2565b9150613da482614cc7565b604082019050919050565b6000613dbc6052836142b2565b9150613dc782614d16565b606082019050919050565b613ddb8161444d565b82525050565b6000613ded8285613a13565b9150613df98284613a13565b91508190509392505050565b6000602082019050613e1a6000830184613983565b92915050565b6000608082019050613e356000830187613983565b613e426020830186613983565b613e4f6040830185613dd2565b8181036060830152613e6181846139a1565b905095945050505050565b6000602082019050613e816000830184613992565b92915050565b60006020820190508181036000830152613ea181846139da565b905092915050565b60006020820190508181036000830152613ec281613a44565b9050919050565b60006020820190508181036000830152613ee281613a67565b9050919050565b60006020820190508181036000830152613f0281613a8a565b9050919050565b60006020820190508181036000830152613f2281613aad565b9050919050565b60006020820190508181036000830152613f4281613ad0565b9050919050565b60006020820190508181036000830152613f6281613af3565b9050919050565b60006020820190508181036000830152613f8281613b16565b9050919050565b60006020820190508181036000830152613fa281613b39565b9050919050565b60006020820190508181036000830152613fc281613b5c565b9050919050565b60006020820190508181036000830152613fe281613b7f565b9050919050565b6000602082019050818103600083015261400281613ba2565b9050919050565b6000602082019050818103600083015261402281613bc5565b9050919050565b6000602082019050818103600083015261404281613be8565b9050919050565b6000602082019050818103600083015261406281613c0b565b9050919050565b6000602082019050818103600083015261408281613c2e565b9050919050565b600060208201905081810360008301526140a281613c51565b9050919050565b600060208201905081810360008301526140c281613c74565b9050919050565b600060208201905081810360008301526140e281613c97565b9050919050565b6000602082019050818103600083015261410281613cba565b9050919050565b6000602082019050818103600083015261412281613cdd565b9050919050565b6000602082019050818103600083015261414281613d00565b9050919050565b6000602082019050818103600083015261416281613d23565b9050919050565b6000602082019050818103600083015261418281613d46565b9050919050565b600060208201905081810360008301526141a281613d69565b9050919050565b600060208201905081810360008301526141c281613d8c565b9050919050565b600060208201905081810360008301526141e281613daf565b9050919050565b60006020820190506141fe6000830184613dd2565b92915050565b600061420e61421f565b905061421a82826144cb565b919050565b6000604051905090565b600067ffffffffffffffff82111561424457614243614661565b5b61424d826146a4565b9050602081019050919050565b600067ffffffffffffffff82111561427557614274614661565b5b61427e826146a4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142d98261444d565b91506142e48361444d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561431957614318614576565b5b828201905092915050565b600061432f8261444d565b915061433a8361444d565b92508261434a576143496145a5565b5b828204905092915050565b60006143608261444d565b915061436b8361444d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143a4576143a3614576565b5b828202905092915050565b60006143ba8261444d565b91506143c58361444d565b9250828210156143d8576143d7614576565b5b828203905092915050565b60006143ee8261442d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614484578082015181840152602081019050614469565b83811115614493576000848401525b50505050565b600060028204905060018216806144b157607f821691505b602082108114156144c5576144c46145d4565b5b50919050565b6144d4826146a4565b810181811067ffffffffffffffff821117156144f3576144f2614661565b5b80604052505050565b60006145078261444d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561453a57614539614576565b5b600182019050919050565b60006145508261444d565b915061455b8361444d565b92508261456b5761456a6145a5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f737570706c79206465706c657465640000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f75676820776173207061696400000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f70726573616c65206973206e6f74206f70656e00000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f796f75206d75737420686f6c6420612047616e746f6d2053746f6e65206f722060008201527f506570655461726f743a2045646974696f6e203020746f20706172746963697060208201527f61746520696e207468652070726573616c650000000000000000000000000000604082015250565b614d94816143e3565b8114614d9f57600080fd5b50565b614dab816143f5565b8114614db657600080fd5b50565b614dc281614401565b8114614dcd57600080fd5b50565b614dd98161444d565b8114614de457600080fd5b5056fea26469706673582212207ae47683116279a599b17a07cdec82ee7079df57adf26b7e92ed0d4a3a4ce68f64736f6c63430008070033
Deployed Bytecode Sourcemap
49645:3638:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53109:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21935:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23346:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22906:374;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51726:782;;;:::i;:::-;;35601:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24236:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35269:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50299:368;;;;;;;;;;;;;:::i;:::-;;50744:65;;;;;;;;;;;;;:::i;:::-;;51636:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24646:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48048:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35791:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51110:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44107:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21629:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50010:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50998:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21359:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47039:148;;;;;;;;;;;;;:::i;:::-;;50817:78;;;;;;;;;;;;;:::i;:::-;;50675:61;;;;;;;;;;;;;:::i;:::-;;46388:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51220:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22104:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49975:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49886:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23639:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24902:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49937:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52946:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50903:87;;;;;;;;;;;;;:::i;:::-;;49848:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50146:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24005:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47342:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53109:171;53212:4;53236:36;53260:11;53236:23;:36::i;:::-;53229:43;;53109:171;;;:::o;21935:100::-;21989:13;22022:5;22015:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21935:100;:::o;23346:221::-;23422:7;23450:16;23458:7;23450;:16::i;:::-;23442:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23535:15;:24;23551:7;23535:24;;;;;;;;;;;;;;;;;;;;;23528:31;;23346:221;;;:::o;22906:374::-;22987:13;23003:23;23018:7;23003:14;:23::i;:::-;22987:39;;23051:5;23045:11;;:2;:11;;;;23037:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23131:5;23115:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23140:37;23157:5;23164:12;:10;:12::i;:::-;23140:16;:37::i;:::-;23115:62;23107:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;23251:21;23260:2;23264:7;23251:8;:21::i;:::-;22976:304;22906:374;;:::o;51726:782::-;51789:5;;51776:9;:18;;51768:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;51836:8;;;;;;;;;;;51831:633;;51884:4;51869:19;;:11;;;;;;;;;;;:19;;;51861:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;51927:19;51956:42;51927:72;;52014:27;52051:42;52014:80;;52109:21;52133:12;:22;;;52156:10;52133:34;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52109:58;;52182:19;52204:20;:30;;;52235:10;52204:42;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52182:64;;52285:1;52269:13;:17;:36;;;;52304:1;52290:11;:15;52269:36;52261:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;52407:24;52420:10;52407:12;:24::i;:::-;52446:7;;;;;;51831:633;52476:24;52489:10;52476:12;:24::i;:::-;51726:782;:::o;35601:113::-;35662:7;35689:10;:17;;;;35682:24;;35601:113;:::o;24236:339::-;24431:41;24450:12;:10;:12::i;:::-;24464:7;24431:18;:41::i;:::-;24423:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24539:28;24549:4;24555:2;24559:7;24539:9;:28::i;:::-;24236:339;;;:::o;35269:256::-;35366:7;35402:23;35419:5;35402:16;:23::i;:::-;35394:5;:31;35386:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35491:12;:19;35504:5;35491:19;;;;;;;;;;;;;;;:26;35511:5;35491:26;;;;;;;;;;;;35484:33;;35269:256;;;;:::o;50299:368::-;46619:12;:10;:12::i;:::-;46608:23;;:7;:5;:7::i;:::-;:23;;;46600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50347:15:::1;50365:21;50347:39;;50405:42;50397:60;;:80;50473:3;50468:2;50458:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;50397:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;50496:42;50488:60;;:80;50564:3;50559:2;50549:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;50488:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;50587:42;50579:60;;:80;50655:3;50650:2;50640:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;50579:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;50336:331;50299:368::o:0;50744:65::-;46619:12;:10;:12::i;:::-;46608:23;;:7;:5;:7::i;:::-;:23;;;46600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50791:10:::1;:8;:10::i;:::-;50744:65::o:0;51636:82::-;46619:12;:10;:12::i;:::-;46608:23;;:7;:5;:7::i;:::-;:23;;;46600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51694:16:::1;51707:2;51694:12;:16::i;:::-;51636:82:::0;:::o;24646:185::-;24784:39;24801:4;24807:2;24811:7;24784:39;;;;;;;;;;;;:16;:39::i;:::-;24646:185;;;:::o;48048:245::-;48166:41;48185:12;:10;:12::i;:::-;48199:7;48166:18;:41::i;:::-;48158:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;48271:14;48277:7;48271:5;:14::i;:::-;48048:245;:::o;35791:233::-;35866:7;35902:30;:28;:30::i;:::-;35894:5;:38;35886:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35999:10;36010:5;35999:17;;;;;;;;:::i;:::-;;;;;;;;;;35992:24;;35791:233;;;:::o;51110:102::-;46619:12;:10;:12::i;:::-;46608:23;;:7;:5;:7::i;:::-;:23;;;46600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51194:10:::1;51184:7;:20;;;;;;;;;;;;:::i;:::-;;51110:102:::0;:::o;44107:86::-;44154:4;44178:7;;;;;;;;;;;44171:14;;44107:86;:::o;21629:239::-;21701:7;21721:13;21737:7;:16;21745:7;21737:16;;;;;;;;;;;;;;;;;;;;;21721:32;;21789:1;21772:19;;:5;:19;;;;21764:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21855:5;21848:12;;;21629:239;;;:::o;50010:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50998:104::-;46619:12;:10;:12::i;:::-;46608:23;;:7;:5;:7::i;:::-;:23;;;46600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51082:12:::1;51070:9;:24;;;;50998:104:::0;:::o;21359:208::-;21431:7;21476:1;21459:19;;:5;:19;;;;21451:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21543:9;:16;21553:5;21543:16;;;;;;;;;;;;;;;;21536:23;;21359:208;;;:::o;47039:148::-;46619:12;:10;:12::i;:::-;46608:23;;:7;:5;:7::i;:::-;:23;;;46600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47146:1:::1;47109:40;;47130:6;;;;;;;;;;;47109:40;;;;;;;;;;;;47177:1;47160:6;;:19;;;;;;;;;;;;;;;;;;47039:148::o:0;50817:78::-;46619:12;:10;:12::i;:::-;46608:23;;:7;:5;:7::i;:::-;:23;;;46600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50879:8:::1;;;;;;;;;;;50878:9;50867:8;;:20;;;;;;;;;;;;;;;;;;50817:78::o:0;50675:61::-;46619:12;:10;:12::i;:::-;46608:23;;:7;:5;:7::i;:::-;:23;;;46600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50720:8:::1;:6;:8::i;:::-;50675:61::o:0;46388:87::-;46434:7;46461:6;;;;;;;;;;;46454:13;;46388:87;:::o;51220:88::-;46619:12;:10;:12::i;:::-;46608:23;;:7;:5;:7::i;:::-;:23;;;46600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51292:8:::1;51284:5;:16;;;;51220:88:::0;:::o;22104:104::-;22160:13;22193:7;22186:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22104:104;:::o;49975:28::-;;;;;;;;;;;;;:::o;49886:44::-;;;;:::o;23639:295::-;23754:12;:10;:12::i;:::-;23742:24;;:8;:24;;;;23734:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23854:8;23809:18;:32;23828:12;:10;:12::i;:::-;23809:32;;;;;;;;;;;;;;;:42;23842:8;23809:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23907:8;23878:48;;23893:12;:10;:12::i;:::-;23878:48;;;23917:8;23878:48;;;;;;:::i;:::-;;;;;;;;23639:295;;:::o;24902:328::-;25077:41;25096:12;:10;:12::i;:::-;25110:7;25077:18;:41::i;:::-;25069:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25183:39;25197:4;25203:2;25207:7;25216:5;25183:13;:39::i;:::-;24902:328;;;;:::o;49937:31::-;;;;;;;;;;;;;:::o;52946:155::-;53037:13;53070:23;53085:7;53070:14;:23::i;:::-;53063:30;;52946:155;;;:::o;50903:87::-;46619:12;:10;:12::i;:::-;46608:23;;:7;:5;:7::i;:::-;:23;;;46600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50971:11:::1;;;;;;;;;;;50970:12;50956:11;;:26;;;;;;;;;;;;;;;;;;50903:87::o:0;49848:31::-;;;;:::o;50146:145::-;46619:12;:10;:12::i;:::-;46608:23;;:7;:5;:7::i;:::-;:23;;;46600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50213:9:::1;50208:76;50232:2;50228:1;:6;50208:76;;;50256:16;50269:2;50256:12;:16::i;:::-;50236:3;;;;;:::i;:::-;;;;50208:76;;;;50146:145:::0;:::o;24005:164::-;24102:4;24126:18;:25;24145:5;24126:25;;;;;;;;;;;;;;;:35;24152:8;24126:35;;;;;;;;;;;;;;;;;;;;;;;;;24119:42;;24005:164;;;;:::o;47342:244::-;46619:12;:10;:12::i;:::-;46608:23;;:7;:5;:7::i;:::-;:23;;;46600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47451:1:::1;47431:22;;:8;:22;;;;47423:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47541:8;47512:38;;47533:6;;;;;;;;;;;47512:38;;;;;;;;;;;;47570:8;47561:6;;:17;;;;;;;;;;;;;;;;;;47342:244:::0;:::o;34961:224::-;35063:4;35102:35;35087:50;;;:11;:50;;;;:90;;;;35141:36;35165:11;35141:23;:36::i;:::-;35087:90;35080:97;;34961:224;;;:::o;26740:127::-;26805:4;26857:1;26829:30;;:7;:16;26837:7;26829:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26822:37;;26740:127;;;:::o;16335:98::-;16388:7;16415:10;16408:17;;16335:98;:::o;30685:174::-;30787:2;30760:15;:24;30776:7;30760:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30843:7;30839:2;30805:46;;30814:23;30829:7;30814:14;:23::i;:::-;30805:46;;;;;;;;;;;;30685:174;;:::o;51424:204::-;51502:9;;51486:13;:11;:13::i;:::-;:25;51478:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;51542:40;51552:2;51556:25;:15;:23;:25::i;:::-;51542:9;:40::i;:::-;51593:27;:15;:25;:27::i;:::-;51424:204;:::o;27034:348::-;27127:4;27152:16;27160:7;27152;:16::i;:::-;27144:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27228:13;27244:23;27259:7;27244:14;:23::i;:::-;27228:39;;27297:5;27286:16;;:7;:16;;;:51;;;;27330:7;27306:31;;:20;27318:7;27306:11;:20::i;:::-;:31;;;27286:51;:87;;;;27341:32;27358:5;27365:7;27341:16;:32::i;:::-;27286:87;27278:96;;;27034:348;;;;:::o;29989:578::-;30148:4;30121:31;;:23;30136:7;30121:14;:23::i;:::-;:31;;;30113:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30231:1;30217:16;;:2;:16;;;;30209:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30287:39;30308:4;30314:2;30318:7;30287:20;:39::i;:::-;30391:29;30408:1;30412:7;30391:8;:29::i;:::-;30452:1;30433:9;:15;30443:4;30433:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30481:1;30464:9;:13;30474:2;30464:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30512:2;30493:7;:16;30501:7;30493:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30551:7;30547:2;30532:27;;30541:4;30532:27;;;;;;;;;;;;29989:578;;;:::o;45166:120::-;44710:8;:6;:8::i;:::-;44702:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;45235:5:::1;45225:7;;:15;;;;;;;;;;;;;;;;;;45256:22;45265:12;:10;:12::i;:::-;45256:22;;;;;;:::i;:::-;;;;;;;;45166:120::o:0;52823:115::-;52910:20;52922:7;52910:11;:20::i;:::-;52823:115;:::o;44907:118::-;44433:8;:6;:8::i;:::-;44432:9;44424:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;44977:4:::1;44967:7;;:14;;;;;;;;;;;;;;;;;;44997:20;45004:12;:10;:12::i;:::-;44997:20;;;;;;:::i;:::-;;;;;;;;44907:118::o:0;26112:315::-;26269:28;26279:4;26285:2;26289:7;26269:9;:28::i;:::-;26316:48;26339:4;26345:2;26349:7;26358:5;26316:22;:48::i;:::-;26308:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26112:315;;;;:::o;41539:679::-;41612:13;41646:16;41654:7;41646;:16::i;:::-;41638:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;41729:23;41755:10;:19;41766:7;41755:19;;;;;;;;;;;41729:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41785:18;41806:10;:8;:10::i;:::-;41785:31;;41914:1;41898:4;41892:18;:23;41888:72;;;41939:9;41932:16;;;;;;41888:72;42090:1;42070:9;42064:23;:27;42060:108;;;42139:4;42145:9;42122:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42108:48;;;;;;42060:108;42187:23;42202:7;42187:14;:23::i;:::-;42180:30;;;;41539:679;;;;:::o;21029:266::-;21131:4;21170:25;21155:40;;;:11;:40;;;;:92;;;;21214:33;21199:48;;;:11;:48;;;;21155:92;:132;;;;21251:36;21275:11;21251:23;:36::i;:::-;21155:132;21148:139;;21029:266;;;:::o;49119:114::-;49184:7;49211;:14;;;49204:21;;49119:114;;;:::o;27724:110::-;27800:26;27810:2;27814:7;27800:26;;;;;;;;;;;;:9;:26::i;:::-;27724:110;;:::o;49241:127::-;49348:1;49330:7;:14;;;:19;;;;;;;;;;;49241:127;:::o;52516:229::-;44433:8;:6;:8::i;:::-;44432:9;44424:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;52692:45:::1;52719:4;52725:2;52729:7;52692:26;:45::i;:::-;52516:229:::0;;;:::o;42820:206::-;42889:20;42901:7;42889:11;:20::i;:::-;42963:1;42932:10;:19;42943:7;42932:19;;;;;;;;;;;42926:33;;;;;:::i;:::-;;;:38;42922:97;;42988:10;:19;42999:7;42988:19;;;;;;;;;;;;42981:26;;;;:::i;:::-;42922:97;42820:206;:::o;31424:872::-;31579:4;31600:15;:2;:13;;;:15::i;:::-;31596:693;;;31652:2;31636:36;;;31673:12;:10;:12::i;:::-;31687:4;31693:7;31702:5;31636:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31632:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31899:1;31882:6;:13;:18;31878:341;;;31925:60;;;;;;;;;;:::i;:::-;;;;;;;;31878:341;32169:6;32163:13;32154:6;32150:2;32146:15;32139:38;31632:602;31769:45;;;31759:55;;;:6;:55;;;;31752:62;;;;;31596:693;32273:4;32266:11;;31424:872;;;;;;;:::o;51316:100::-;51368:13;51401:7;51394:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51316:100;:::o;22279:334::-;22352:13;22386:16;22394:7;22386;:16::i;:::-;22378:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22467:21;22491:10;:8;:10::i;:::-;22467:34;;22543:1;22525:7;22519:21;:25;:86;;;;;;;;;;;;;;;;;22571:7;22580:18;:7;:16;:18::i;:::-;22554:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22519:86;22512:93;;;22279:334;;;:::o;19545:157::-;19630:4;19669:25;19654:40;;;:11;:40;;;;19647:47;;19545:157;;;:::o;28061:284::-;28191:18;28197:2;28201:7;28191:5;:18::i;:::-;28228:54;28259:1;28263:2;28267:7;28276:5;28228:22;:54::i;:::-;28220:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;28061:284;;;:::o;36637:589::-;36781:45;36808:4;36814:2;36818:7;36781:26;:45::i;:::-;36859:1;36843:18;;:4;:18;;;36839:187;;;36878:40;36910:7;36878:31;:40::i;:::-;36839:187;;;36948:2;36940:10;;:4;:10;;;36936:90;;36967:47;37000:4;37006:7;36967:32;:47::i;:::-;36936:90;36839:187;37054:1;37040:16;;:2;:16;;;37036:183;;;37073:45;37110:7;37073:36;:45::i;:::-;37036:183;;;37146:4;37140:10;;:2;:10;;;37136:83;;37167:40;37195:2;37199:7;37167:27;:40::i;:::-;37136:83;37036:183;36637:589;;;:::o;29292:360::-;29352:13;29368:23;29383:7;29368:14;:23::i;:::-;29352:39;;29404:48;29425:5;29440:1;29444:7;29404:20;:48::i;:::-;29493:29;29510:1;29514:7;29493:8;:29::i;:::-;29555:1;29535:9;:16;29545:5;29535:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;29574:7;:16;29582:7;29574:16;;;;;;;;;;;;29567:23;;;;;;;;;;;29636:7;29632:1;29608:36;;29617:5;29608:36;;;;;;;;;;;;29341:311;29292:360;:::o;8216:444::-;8276:4;8484:12;8608:7;8596:20;8588:28;;8651:1;8644:4;:8;8637:15;;;8216:444;;;:::o;16992:723::-;17048:13;17278:1;17269:5;:10;17265:53;;;17296:10;;;;;;;;;;;;;;;;;;;;;17265:53;17328:12;17343:5;17328:20;;17359:14;17384:78;17399:1;17391:4;:9;17384:78;;17417:8;;;;;:::i;:::-;;;;17448:2;17440:10;;;;;:::i;:::-;;;17384:78;;;17472:19;17504:6;17494:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17472:39;;17522:154;17538:1;17529:5;:10;17522:154;;17566:1;17556:11;;;;;:::i;:::-;;;17633:2;17625:5;:10;;;;:::i;:::-;17612:2;:24;;;;:::i;:::-;17599:39;;17582:6;17589;17582:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;17662:2;17653:11;;;;;:::i;:::-;;;17522:154;;;17700:6;17686:21;;;;;16992:723;;;;:::o;28681:382::-;28775:1;28761:16;;:2;:16;;;;28753:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28834:16;28842:7;28834;:16::i;:::-;28833:17;28825:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28896:45;28925:1;28929:2;28933:7;28896:20;:45::i;:::-;28971:1;28954:9;:13;28964:2;28954:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29002:2;28983:7;:16;28991:7;28983:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29047:7;29043:2;29022:33;;29039:1;29022:33;;;;;;;;;;;;28681:382;;:::o;32909:126::-;;;;:::o;37949:164::-;38053:10;:17;;;;38026:15;:24;38042:7;38026:24;;;;;;;;;;;:44;;;;38081:10;38097:7;38081:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37949:164;:::o;38740:988::-;39006:22;39056:1;39031:22;39048:4;39031:16;:22::i;:::-;:26;;;;:::i;:::-;39006:51;;39068:18;39089:17;:26;39107:7;39089:26;;;;;;;;;;;;39068:47;;39236:14;39222:10;:28;39218:328;;39267:19;39289:12;:18;39302:4;39289:18;;;;;;;;;;;;;;;:34;39308:14;39289:34;;;;;;;;;;;;39267:56;;39373:11;39340:12;:18;39353:4;39340:18;;;;;;;;;;;;;;;:30;39359:10;39340:30;;;;;;;;;;;:44;;;;39490:10;39457:17;:30;39475:11;39457:30;;;;;;;;;;;:43;;;;39252:294;39218:328;39642:17;:26;39660:7;39642:26;;;;;;;;;;;39635:33;;;39686:12;:18;39699:4;39686:18;;;;;;;;;;;;;;;:34;39705:14;39686:34;;;;;;;;;;;39679:41;;;38821:907;;38740:988;;:::o;40023:1079::-;40276:22;40321:1;40301:10;:17;;;;:21;;;;:::i;:::-;40276:46;;40333:18;40354:15;:24;40370:7;40354:24;;;;;;;;;;;;40333:45;;40705:19;40727:10;40738:14;40727:26;;;;;;;;:::i;:::-;;;;;;;;;;40705:48;;40791:11;40766:10;40777;40766:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40902:10;40871:15;:28;40887:11;40871:28;;;;;;;;;;;:41;;;;41043:15;:24;41059:7;41043:24;;;;;;;;;;;41036:31;;;41078:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40094:1008;;;40023:1079;:::o;37527:221::-;37612:14;37629:20;37646:2;37629:16;:20::i;:::-;37612:37;;37687:7;37660:12;:16;37673:2;37660:16;;;;;;;;;;;;;;;:24;37677:6;37660:24;;;;;;;;;;;:34;;;;37734:6;37705:17;:26;37723:7;37705:26;;;;;;;;;;;:35;;;;37601:147;37527:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:143::-;2334:5;2365:6;2359:13;2350:22;;2381:33;2408:5;2381:33;:::i;:::-;2277:143;;;;:::o;2426:329::-;2485:6;2534:2;2522:9;2513:7;2509:23;2505:32;2502:119;;;2540:79;;:::i;:::-;2502:119;2660:1;2685:53;2730:7;2721:6;2710:9;2706:22;2685:53;:::i;:::-;2675:63;;2631:117;2426:329;;;;:::o;2761:474::-;2829:6;2837;2886:2;2874:9;2865:7;2861:23;2857:32;2854:119;;;2892:79;;:::i;:::-;2854:119;3012:1;3037:53;3082:7;3073:6;3062:9;3058:22;3037:53;:::i;:::-;3027:63;;2983:117;3139:2;3165:53;3210:7;3201:6;3190:9;3186:22;3165:53;:::i;:::-;3155:63;;3110:118;2761:474;;;;;:::o;3241:619::-;3318:6;3326;3334;3383:2;3371:9;3362:7;3358:23;3354:32;3351:119;;;3389:79;;:::i;:::-;3351:119;3509:1;3534:53;3579:7;3570:6;3559:9;3555:22;3534:53;:::i;:::-;3524:63;;3480:117;3636:2;3662:53;3707:7;3698:6;3687:9;3683:22;3662:53;:::i;:::-;3652:63;;3607:118;3764:2;3790:53;3835:7;3826:6;3815:9;3811:22;3790:53;:::i;:::-;3780:63;;3735:118;3241:619;;;;;:::o;3866:943::-;3961:6;3969;3977;3985;4034:3;4022:9;4013:7;4009:23;4005:33;4002:120;;;4041:79;;:::i;:::-;4002:120;4161:1;4186:53;4231:7;4222:6;4211:9;4207:22;4186:53;:::i;:::-;4176:63;;4132:117;4288:2;4314:53;4359:7;4350:6;4339:9;4335:22;4314:53;:::i;:::-;4304:63;;4259:118;4416:2;4442:53;4487:7;4478:6;4467:9;4463:22;4442:53;:::i;:::-;4432:63;;4387:118;4572:2;4561:9;4557:18;4544:32;4603:18;4595:6;4592:30;4589:117;;;4625:79;;:::i;:::-;4589:117;4730:62;4784:7;4775:6;4764:9;4760:22;4730:62;:::i;:::-;4720:72;;4515:287;3866:943;;;;;;;:::o;4815:468::-;4880:6;4888;4937:2;4925:9;4916:7;4912:23;4908:32;4905:119;;;4943:79;;:::i;:::-;4905:119;5063:1;5088:53;5133:7;5124:6;5113:9;5109:22;5088:53;:::i;:::-;5078:63;;5034:117;5190:2;5216:50;5258:7;5249:6;5238:9;5234:22;5216:50;:::i;:::-;5206:60;;5161:115;4815:468;;;;;:::o;5289:474::-;5357:6;5365;5414:2;5402:9;5393:7;5389:23;5385:32;5382:119;;;5420:79;;:::i;:::-;5382:119;5540:1;5565:53;5610:7;5601:6;5590:9;5586:22;5565:53;:::i;:::-;5555:63;;5511:117;5667:2;5693:53;5738:7;5729:6;5718:9;5714:22;5693:53;:::i;:::-;5683:63;;5638:118;5289:474;;;;;:::o;5769:327::-;5827:6;5876:2;5864:9;5855:7;5851:23;5847:32;5844:119;;;5882:79;;:::i;:::-;5844:119;6002:1;6027:52;6071:7;6062:6;6051:9;6047:22;6027:52;:::i;:::-;6017:62;;5973:116;5769:327;;;;:::o;6102:349::-;6171:6;6220:2;6208:9;6199:7;6195:23;6191:32;6188:119;;;6226:79;;:::i;:::-;6188:119;6346:1;6371:63;6426:7;6417:6;6406:9;6402:22;6371:63;:::i;:::-;6361:73;;6317:127;6102:349;;;;:::o;6457:509::-;6526:6;6575:2;6563:9;6554:7;6550:23;6546:32;6543:119;;;6581:79;;:::i;:::-;6543:119;6729:1;6718:9;6714:17;6701:31;6759:18;6751:6;6748:30;6745:117;;;6781:79;;:::i;:::-;6745:117;6886:63;6941:7;6932:6;6921:9;6917:22;6886:63;:::i;:::-;6876:73;;6672:287;6457:509;;;;:::o;6972:329::-;7031:6;7080:2;7068:9;7059:7;7055:23;7051:32;7048:119;;;7086:79;;:::i;:::-;7048:119;7206:1;7231:53;7276:7;7267:6;7256:9;7252:22;7231:53;:::i;:::-;7221:63;;7177:117;6972:329;;;;:::o;7307:351::-;7377:6;7426:2;7414:9;7405:7;7401:23;7397:32;7394:119;;;7432:79;;:::i;:::-;7394:119;7552:1;7577:64;7633:7;7624:6;7613:9;7609:22;7577:64;:::i;:::-;7567:74;;7523:128;7307:351;;;;:::o;7664:118::-;7751:24;7769:5;7751:24;:::i;:::-;7746:3;7739:37;7664:118;;:::o;7788:109::-;7869:21;7884:5;7869:21;:::i;:::-;7864:3;7857:34;7788:109;;:::o;7903:360::-;7989:3;8017:38;8049:5;8017:38;:::i;:::-;8071:70;8134:6;8129:3;8071:70;:::i;:::-;8064:77;;8150:52;8195:6;8190:3;8183:4;8176:5;8172:16;8150:52;:::i;:::-;8227:29;8249:6;8227:29;:::i;:::-;8222:3;8218:39;8211:46;;7993:270;7903:360;;;;:::o;8269:364::-;8357:3;8385:39;8418:5;8385:39;:::i;:::-;8440:71;8504:6;8499:3;8440:71;:::i;:::-;8433:78;;8520:52;8565:6;8560:3;8553:4;8546:5;8542:16;8520:52;:::i;:::-;8597:29;8619:6;8597:29;:::i;:::-;8592:3;8588:39;8581:46;;8361:272;8269:364;;;;:::o;8639:377::-;8745:3;8773:39;8806:5;8773:39;:::i;:::-;8828:89;8910:6;8905:3;8828:89;:::i;:::-;8821:96;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:6;8998:3;8994:16;8987:23;;8749:267;8639:377;;;;:::o;9022:366::-;9164:3;9185:67;9249:2;9244:3;9185:67;:::i;:::-;9178:74;;9261:93;9350:3;9261:93;:::i;:::-;9379:2;9374:3;9370:12;9363:19;;9022:366;;;:::o;9394:::-;9536:3;9557:67;9621:2;9616:3;9557:67;:::i;:::-;9550:74;;9633:93;9722:3;9633:93;:::i;:::-;9751:2;9746:3;9742:12;9735:19;;9394:366;;;:::o;9766:::-;9908:3;9929:67;9993:2;9988:3;9929:67;:::i;:::-;9922:74;;10005:93;10094:3;10005:93;:::i;:::-;10123:2;10118:3;10114:12;10107:19;;9766:366;;;:::o;10138:::-;10280:3;10301:67;10365:2;10360:3;10301:67;:::i;:::-;10294:74;;10377:93;10466:3;10377:93;:::i;:::-;10495:2;10490:3;10486:12;10479:19;;10138:366;;;:::o;10510:::-;10652:3;10673:67;10737:2;10732:3;10673:67;:::i;:::-;10666:74;;10749:93;10838:3;10749:93;:::i;:::-;10867:2;10862:3;10858:12;10851:19;;10510:366;;;:::o;10882:::-;11024:3;11045:67;11109:2;11104:3;11045:67;:::i;:::-;11038:74;;11121:93;11210:3;11121:93;:::i;:::-;11239:2;11234:3;11230:12;11223:19;;10882:366;;;:::o;11254:::-;11396:3;11417:67;11481:2;11476:3;11417:67;:::i;:::-;11410:74;;11493:93;11582:3;11493:93;:::i;:::-;11611:2;11606:3;11602:12;11595:19;;11254:366;;;:::o;11626:::-;11768:3;11789:67;11853:2;11848:3;11789:67;:::i;:::-;11782:74;;11865:93;11954:3;11865:93;:::i;:::-;11983:2;11978:3;11974:12;11967:19;;11626:366;;;:::o;11998:::-;12140:3;12161:67;12225:2;12220:3;12161:67;:::i;:::-;12154:74;;12237:93;12326:3;12237:93;:::i;:::-;12355:2;12350:3;12346:12;12339:19;;11998:366;;;:::o;12370:::-;12512:3;12533:67;12597:2;12592:3;12533:67;:::i;:::-;12526:74;;12609:93;12698:3;12609:93;:::i;:::-;12727:2;12722:3;12718:12;12711:19;;12370:366;;;:::o;12742:::-;12884:3;12905:67;12969:2;12964:3;12905:67;:::i;:::-;12898:74;;12981:93;13070:3;12981:93;:::i;:::-;13099:2;13094:3;13090:12;13083:19;;12742:366;;;:::o;13114:::-;13256:3;13277:67;13341:2;13336:3;13277:67;:::i;:::-;13270:74;;13353:93;13442:3;13353:93;:::i;:::-;13471:2;13466:3;13462:12;13455:19;;13114:366;;;:::o;13486:::-;13628:3;13649:67;13713:2;13708:3;13649:67;:::i;:::-;13642:74;;13725:93;13814:3;13725:93;:::i;:::-;13843:2;13838:3;13834:12;13827:19;;13486:366;;;:::o;13858:::-;14000:3;14021:67;14085:2;14080:3;14021:67;:::i;:::-;14014:74;;14097:93;14186:3;14097:93;:::i;:::-;14215:2;14210:3;14206:12;14199:19;;13858:366;;;:::o;14230:::-;14372:3;14393:67;14457:2;14452:3;14393:67;:::i;:::-;14386:74;;14469:93;14558:3;14469:93;:::i;:::-;14587:2;14582:3;14578:12;14571:19;;14230:366;;;:::o;14602:::-;14744:3;14765:67;14829:2;14824:3;14765:67;:::i;:::-;14758:74;;14841:93;14930:3;14841:93;:::i;:::-;14959:2;14954:3;14950:12;14943:19;;14602:366;;;:::o;14974:::-;15116:3;15137:67;15201:2;15196:3;15137:67;:::i;:::-;15130:74;;15213:93;15302:3;15213:93;:::i;:::-;15331:2;15326:3;15322:12;15315:19;;14974:366;;;:::o;15346:::-;15488:3;15509:67;15573:2;15568:3;15509:67;:::i;:::-;15502:74;;15585:93;15674:3;15585:93;:::i;:::-;15703:2;15698:3;15694:12;15687:19;;15346:366;;;:::o;15718:::-;15860:3;15881:67;15945:2;15940:3;15881:67;:::i;:::-;15874:74;;15957:93;16046:3;15957:93;:::i;:::-;16075:2;16070:3;16066:12;16059:19;;15718:366;;;:::o;16090:::-;16232:3;16253:67;16317:2;16312:3;16253:67;:::i;:::-;16246:74;;16329:93;16418:3;16329:93;:::i;:::-;16447:2;16442:3;16438:12;16431:19;;16090:366;;;:::o;16462:::-;16604:3;16625:67;16689:2;16684:3;16625:67;:::i;:::-;16618:74;;16701:93;16790:3;16701:93;:::i;:::-;16819:2;16814:3;16810:12;16803:19;;16462:366;;;:::o;16834:::-;16976:3;16997:67;17061:2;17056:3;16997:67;:::i;:::-;16990:74;;17073:93;17162:3;17073:93;:::i;:::-;17191:2;17186:3;17182:12;17175:19;;16834:366;;;:::o;17206:::-;17348:3;17369:67;17433:2;17428:3;17369:67;:::i;:::-;17362:74;;17445:93;17534:3;17445:93;:::i;:::-;17563:2;17558:3;17554:12;17547:19;;17206:366;;;:::o;17578:::-;17720:3;17741:67;17805:2;17800:3;17741:67;:::i;:::-;17734:74;;17817:93;17906:3;17817:93;:::i;:::-;17935:2;17930:3;17926:12;17919:19;;17578:366;;;:::o;17950:::-;18092:3;18113:67;18177:2;18172:3;18113:67;:::i;:::-;18106:74;;18189:93;18278:3;18189:93;:::i;:::-;18307:2;18302:3;18298:12;18291:19;;17950:366;;;:::o;18322:::-;18464:3;18485:67;18549:2;18544:3;18485:67;:::i;:::-;18478:74;;18561:93;18650:3;18561:93;:::i;:::-;18679:2;18674:3;18670:12;18663:19;;18322:366;;;:::o;18694:118::-;18781:24;18799:5;18781:24;:::i;:::-;18776:3;18769:37;18694:118;;:::o;18818:435::-;18998:3;19020:95;19111:3;19102:6;19020:95;:::i;:::-;19013:102;;19132:95;19223:3;19214:6;19132:95;:::i;:::-;19125:102;;19244:3;19237:10;;18818:435;;;;;:::o;19259:222::-;19352:4;19390:2;19379:9;19375:18;19367:26;;19403:71;19471:1;19460:9;19456:17;19447:6;19403:71;:::i;:::-;19259:222;;;;:::o;19487:640::-;19682:4;19720:3;19709:9;19705:19;19697:27;;19734:71;19802:1;19791:9;19787:17;19778:6;19734:71;:::i;:::-;19815:72;19883:2;19872:9;19868:18;19859:6;19815:72;:::i;:::-;19897;19965:2;19954:9;19950:18;19941:6;19897:72;:::i;:::-;20016:9;20010:4;20006:20;20001:2;19990:9;19986:18;19979:48;20044:76;20115:4;20106:6;20044:76;:::i;:::-;20036:84;;19487:640;;;;;;;:::o;20133:210::-;20220:4;20258:2;20247:9;20243:18;20235:26;;20271:65;20333:1;20322:9;20318:17;20309:6;20271:65;:::i;:::-;20133:210;;;;:::o;20349:313::-;20462:4;20500:2;20489:9;20485:18;20477:26;;20549:9;20543:4;20539:20;20535:1;20524:9;20520:17;20513:47;20577:78;20650:4;20641:6;20577:78;:::i;:::-;20569:86;;20349:313;;;;:::o;20668:419::-;20834:4;20872:2;20861:9;20857:18;20849:26;;20921:9;20915:4;20911:20;20907:1;20896:9;20892:17;20885:47;20949:131;21075:4;20949:131;:::i;:::-;20941:139;;20668:419;;;:::o;21093:::-;21259:4;21297:2;21286:9;21282:18;21274:26;;21346:9;21340:4;21336:20;21332:1;21321:9;21317:17;21310:47;21374:131;21500:4;21374:131;:::i;:::-;21366:139;;21093:419;;;:::o;21518:::-;21684:4;21722:2;21711:9;21707:18;21699:26;;21771:9;21765:4;21761:20;21757:1;21746:9;21742:17;21735:47;21799:131;21925:4;21799:131;:::i;:::-;21791:139;;21518:419;;;:::o;21943:::-;22109:4;22147:2;22136:9;22132:18;22124:26;;22196:9;22190:4;22186:20;22182:1;22171:9;22167:17;22160:47;22224:131;22350:4;22224:131;:::i;:::-;22216:139;;21943:419;;;:::o;22368:::-;22534:4;22572:2;22561:9;22557:18;22549:26;;22621:9;22615:4;22611:20;22607:1;22596:9;22592:17;22585:47;22649:131;22775:4;22649:131;:::i;:::-;22641:139;;22368:419;;;:::o;22793:::-;22959:4;22997:2;22986:9;22982:18;22974:26;;23046:9;23040:4;23036:20;23032:1;23021:9;23017:17;23010:47;23074:131;23200:4;23074:131;:::i;:::-;23066:139;;22793:419;;;:::o;23218:::-;23384:4;23422:2;23411:9;23407:18;23399:26;;23471:9;23465:4;23461:20;23457:1;23446:9;23442:17;23435:47;23499:131;23625:4;23499:131;:::i;:::-;23491:139;;23218:419;;;:::o;23643:::-;23809:4;23847:2;23836:9;23832:18;23824:26;;23896:9;23890:4;23886:20;23882:1;23871:9;23867:17;23860:47;23924:131;24050:4;23924:131;:::i;:::-;23916:139;;23643:419;;;:::o;24068:::-;24234:4;24272:2;24261:9;24257:18;24249:26;;24321:9;24315:4;24311:20;24307:1;24296:9;24292:17;24285:47;24349:131;24475:4;24349:131;:::i;:::-;24341:139;;24068:419;;;:::o;24493:::-;24659:4;24697:2;24686:9;24682:18;24674:26;;24746:9;24740:4;24736:20;24732:1;24721:9;24717:17;24710:47;24774:131;24900:4;24774:131;:::i;:::-;24766:139;;24493:419;;;:::o;24918:::-;25084:4;25122:2;25111:9;25107:18;25099:26;;25171:9;25165:4;25161:20;25157:1;25146:9;25142:17;25135:47;25199:131;25325:4;25199:131;:::i;:::-;25191:139;;24918:419;;;:::o;25343:::-;25509:4;25547:2;25536:9;25532:18;25524:26;;25596:9;25590:4;25586:20;25582:1;25571:9;25567:17;25560:47;25624:131;25750:4;25624:131;:::i;:::-;25616:139;;25343:419;;;:::o;25768:::-;25934:4;25972:2;25961:9;25957:18;25949:26;;26021:9;26015:4;26011:20;26007:1;25996:9;25992:17;25985:47;26049:131;26175:4;26049:131;:::i;:::-;26041:139;;25768:419;;;:::o;26193:::-;26359:4;26397:2;26386:9;26382:18;26374:26;;26446:9;26440:4;26436:20;26432:1;26421:9;26417:17;26410:47;26474:131;26600:4;26474:131;:::i;:::-;26466:139;;26193:419;;;:::o;26618:::-;26784:4;26822:2;26811:9;26807:18;26799:26;;26871:9;26865:4;26861:20;26857:1;26846:9;26842:17;26835:47;26899:131;27025:4;26899:131;:::i;:::-;26891:139;;26618:419;;;:::o;27043:::-;27209:4;27247:2;27236:9;27232:18;27224:26;;27296:9;27290:4;27286:20;27282:1;27271:9;27267:17;27260:47;27324:131;27450:4;27324:131;:::i;:::-;27316:139;;27043:419;;;:::o;27468:::-;27634:4;27672:2;27661:9;27657:18;27649:26;;27721:9;27715:4;27711:20;27707:1;27696:9;27692:17;27685:47;27749:131;27875:4;27749:131;:::i;:::-;27741:139;;27468:419;;;:::o;27893:::-;28059:4;28097:2;28086:9;28082:18;28074:26;;28146:9;28140:4;28136:20;28132:1;28121:9;28117:17;28110:47;28174:131;28300:4;28174:131;:::i;:::-;28166:139;;27893:419;;;:::o;28318:::-;28484:4;28522:2;28511:9;28507:18;28499:26;;28571:9;28565:4;28561:20;28557:1;28546:9;28542:17;28535:47;28599:131;28725:4;28599:131;:::i;:::-;28591:139;;28318:419;;;:::o;28743:::-;28909:4;28947:2;28936:9;28932:18;28924:26;;28996:9;28990:4;28986:20;28982:1;28971:9;28967:17;28960:47;29024:131;29150:4;29024:131;:::i;:::-;29016:139;;28743:419;;;:::o;29168:::-;29334:4;29372:2;29361:9;29357:18;29349:26;;29421:9;29415:4;29411:20;29407:1;29396:9;29392:17;29385:47;29449:131;29575:4;29449:131;:::i;:::-;29441:139;;29168:419;;;:::o;29593:::-;29759:4;29797:2;29786:9;29782:18;29774:26;;29846:9;29840:4;29836:20;29832:1;29821:9;29817:17;29810:47;29874:131;30000:4;29874:131;:::i;:::-;29866:139;;29593:419;;;:::o;30018:::-;30184:4;30222:2;30211:9;30207:18;30199:26;;30271:9;30265:4;30261:20;30257:1;30246:9;30242:17;30235:47;30299:131;30425:4;30299:131;:::i;:::-;30291:139;;30018:419;;;:::o;30443:::-;30609:4;30647:2;30636:9;30632:18;30624:26;;30696:9;30690:4;30686:20;30682:1;30671:9;30667:17;30660:47;30724:131;30850:4;30724:131;:::i;:::-;30716:139;;30443:419;;;:::o;30868:::-;31034:4;31072:2;31061:9;31057:18;31049:26;;31121:9;31115:4;31111:20;31107:1;31096:9;31092:17;31085:47;31149:131;31275:4;31149:131;:::i;:::-;31141:139;;30868:419;;;:::o;31293:::-;31459:4;31497:2;31486:9;31482:18;31474:26;;31546:9;31540:4;31536:20;31532:1;31521:9;31517:17;31510:47;31574:131;31700:4;31574:131;:::i;:::-;31566:139;;31293:419;;;:::o;31718:222::-;31811:4;31849:2;31838:9;31834:18;31826:26;;31862:71;31930:1;31919:9;31915:17;31906:6;31862:71;:::i;:::-;31718:222;;;;:::o;31946:129::-;31980:6;32007:20;;:::i;:::-;31997:30;;32036:33;32064:4;32056:6;32036:33;:::i;:::-;31946:129;;;:::o;32081:75::-;32114:6;32147:2;32141:9;32131:19;;32081:75;:::o;32162:307::-;32223:4;32313:18;32305:6;32302:30;32299:56;;;32335:18;;:::i;:::-;32299:56;32373:29;32395:6;32373:29;:::i;:::-;32365:37;;32457:4;32451;32447:15;32439:23;;32162:307;;;:::o;32475:308::-;32537:4;32627:18;32619:6;32616:30;32613:56;;;32649:18;;:::i;:::-;32613:56;32687:29;32709:6;32687:29;:::i;:::-;32679:37;;32771:4;32765;32761:15;32753:23;;32475:308;;;:::o;32789:98::-;32840:6;32874:5;32868:12;32858:22;;32789:98;;;:::o;32893:99::-;32945:6;32979:5;32973:12;32963:22;;32893:99;;;:::o;32998:168::-;33081:11;33115:6;33110:3;33103:19;33155:4;33150:3;33146:14;33131:29;;32998:168;;;;:::o;33172:169::-;33256:11;33290:6;33285:3;33278:19;33330:4;33325:3;33321:14;33306:29;;33172:169;;;;:::o;33347:148::-;33449:11;33486:3;33471:18;;33347:148;;;;:::o;33501:305::-;33541:3;33560:20;33578:1;33560:20;:::i;:::-;33555:25;;33594:20;33612:1;33594:20;:::i;:::-;33589:25;;33748:1;33680:66;33676:74;33673:1;33670:81;33667:107;;;33754:18;;:::i;:::-;33667:107;33798:1;33795;33791:9;33784:16;;33501:305;;;;:::o;33812:185::-;33852:1;33869:20;33887:1;33869:20;:::i;:::-;33864:25;;33903:20;33921:1;33903:20;:::i;:::-;33898:25;;33942:1;33932:35;;33947:18;;:::i;:::-;33932:35;33989:1;33986;33982:9;33977:14;;33812:185;;;;:::o;34003:348::-;34043:7;34066:20;34084:1;34066:20;:::i;:::-;34061:25;;34100:20;34118:1;34100:20;:::i;:::-;34095:25;;34288:1;34220:66;34216:74;34213:1;34210:81;34205:1;34198:9;34191:17;34187:105;34184:131;;;34295:18;;:::i;:::-;34184:131;34343:1;34340;34336:9;34325:20;;34003:348;;;;:::o;34357:191::-;34397:4;34417:20;34435:1;34417:20;:::i;:::-;34412:25;;34451:20;34469:1;34451:20;:::i;:::-;34446:25;;34490:1;34487;34484:8;34481:34;;;34495:18;;:::i;:::-;34481:34;34540:1;34537;34533:9;34525:17;;34357:191;;;;:::o;34554:96::-;34591:7;34620:24;34638:5;34620:24;:::i;:::-;34609:35;;34554:96;;;:::o;34656:90::-;34690:7;34733:5;34726:13;34719:21;34708:32;;34656:90;;;:::o;34752:149::-;34788:7;34828:66;34821:5;34817:78;34806:89;;34752:149;;;:::o;34907:126::-;34944:7;34984:42;34977:5;34973:54;34962:65;;34907:126;;;:::o;35039:77::-;35076:7;35105:5;35094:16;;35039:77;;;:::o;35122:154::-;35206:6;35201:3;35196;35183:30;35268:1;35259:6;35254:3;35250:16;35243:27;35122:154;;;:::o;35282:307::-;35350:1;35360:113;35374:6;35371:1;35368:13;35360:113;;;35459:1;35454:3;35450:11;35444:18;35440:1;35435:3;35431:11;35424:39;35396:2;35393:1;35389:10;35384:15;;35360:113;;;35491:6;35488:1;35485:13;35482:101;;;35571:1;35562:6;35557:3;35553:16;35546:27;35482:101;35331:258;35282:307;;;:::o;35595:320::-;35639:6;35676:1;35670:4;35666:12;35656:22;;35723:1;35717:4;35713:12;35744:18;35734:81;;35800:4;35792:6;35788:17;35778:27;;35734:81;35862:2;35854:6;35851:14;35831:18;35828:38;35825:84;;;35881:18;;:::i;:::-;35825:84;35646:269;35595:320;;;:::o;35921:281::-;36004:27;36026:4;36004:27;:::i;:::-;35996:6;35992:40;36134:6;36122:10;36119:22;36098:18;36086:10;36083:34;36080:62;36077:88;;;36145:18;;:::i;:::-;36077:88;36185:10;36181:2;36174:22;35964:238;35921:281;;:::o;36208:233::-;36247:3;36270:24;36288:5;36270:24;:::i;:::-;36261:33;;36316:66;36309:5;36306:77;36303:103;;;36386:18;;:::i;:::-;36303:103;36433:1;36426:5;36422:13;36415:20;;36208:233;;;:::o;36447:176::-;36479:1;36496:20;36514:1;36496:20;:::i;:::-;36491:25;;36530:20;36548:1;36530:20;:::i;:::-;36525:25;;36569:1;36559:35;;36574:18;;:::i;:::-;36559:35;36615:1;36612;36608:9;36603:14;;36447:176;;;;:::o;36629:180::-;36677:77;36674:1;36667:88;36774:4;36771:1;36764:15;36798:4;36795:1;36788:15;36815:180;36863:77;36860:1;36853:88;36960:4;36957:1;36950:15;36984:4;36981:1;36974:15;37001:180;37049:77;37046:1;37039:88;37146:4;37143:1;37136:15;37170:4;37167:1;37160:15;37187:180;37235:77;37232:1;37225:88;37332:4;37329:1;37322:15;37356:4;37353:1;37346:15;37373:180;37421:77;37418:1;37411:88;37518:4;37515:1;37508:15;37542:4;37539:1;37532:15;37559:180;37607:77;37604:1;37597:88;37704:4;37701:1;37694:15;37728:4;37725:1;37718:15;37745:117;37854:1;37851;37844:12;37868:117;37977:1;37974;37967:12;37991:117;38100:1;38097;38090:12;38114:117;38223:1;38220;38213:12;38237:102;38278:6;38329:2;38325:7;38320:2;38313:5;38309:14;38305:28;38295:38;;38237:102;;;:::o;38345:170::-;38485:22;38481:1;38473:6;38469:14;38462:46;38345:170;:::o;38521:165::-;38661:17;38657:1;38649:6;38645:14;38638:41;38521:165;:::o;38692:230::-;38832:34;38828:1;38820:6;38816:14;38809:58;38901:13;38896:2;38888:6;38884:15;38877:38;38692:230;:::o;38928:237::-;39068:34;39064:1;39056:6;39052:14;39045:58;39137:20;39132:2;39124:6;39120:15;39113:45;38928:237;:::o;39171:225::-;39311:34;39307:1;39299:6;39295:14;39288:58;39380:8;39375:2;39367:6;39363:15;39356:33;39171:225;:::o;39402:178::-;39542:30;39538:1;39530:6;39526:14;39519:54;39402:178;:::o;39586:223::-;39726:34;39722:1;39714:6;39710:14;39703:58;39795:6;39790:2;39782:6;39778:15;39771:31;39586:223;:::o;39815:175::-;39955:27;39951:1;39943:6;39939:14;39932:51;39815:175;:::o;39996:231::-;40136:34;40132:1;40124:6;40120:14;40113:58;40205:14;40200:2;40192:6;40188:15;40181:39;39996:231;:::o;40233:166::-;40373:18;40369:1;40361:6;40357:14;40350:42;40233:166;:::o;40405:243::-;40545:34;40541:1;40533:6;40529:14;40522:58;40614:26;40609:2;40601:6;40597:15;40590:51;40405:243;:::o;40654:229::-;40794:34;40790:1;40782:6;40778:14;40771:58;40863:12;40858:2;40850:6;40846:15;40839:37;40654:229;:::o;40889:228::-;41029:34;41025:1;41017:6;41013:14;41006:58;41098:11;41093:2;41085:6;41081:15;41074:36;40889:228;:::o;41123:182::-;41263:34;41259:1;41251:6;41247:14;41240:58;41123:182;:::o;41311:236::-;41451:34;41447:1;41439:6;41435:14;41428:58;41520:19;41515:2;41507:6;41503:15;41496:44;41311:236;:::o;41553:231::-;41693:34;41689:1;41681:6;41677:14;41670:58;41762:14;41757:2;41749:6;41745:15;41738:39;41553:231;:::o;41790:182::-;41930:34;41926:1;41918:6;41914:14;41907:58;41790:182;:::o;41978:228::-;42118:34;42114:1;42106:6;42102:14;42095:58;42187:11;42182:2;42174:6;42170:15;42163:36;41978:228;:::o;42212:234::-;42352:34;42348:1;42340:6;42336:14;42329:58;42421:17;42416:2;42408:6;42404:15;42397:42;42212:234;:::o;42452:220::-;42592:34;42588:1;42580:6;42576:14;42569:58;42661:3;42656:2;42648:6;42644:15;42637:28;42452:220;:::o;42678:169::-;42818:21;42814:1;42806:6;42802:14;42795:45;42678:169;:::o;42853:236::-;42993:34;42989:1;42981:6;42977:14;42970:58;43062:19;43057:2;43049:6;43045:15;43038:44;42853:236;:::o;43095:169::-;43235:21;43231:1;43223:6;43219:14;43212:45;43095:169;:::o;43270:231::-;43410:34;43406:1;43398:6;43394:14;43387:58;43479:14;43474:2;43466:6;43462:15;43455:39;43270:231;:::o;43507:235::-;43647:34;43643:1;43635:6;43631:14;43624:58;43716:18;43711:2;43703:6;43699:15;43692:43;43507:235;:::o;43748:306::-;43888:34;43884:1;43876:6;43872:14;43865:58;43957:34;43952:2;43944:6;43940:15;43933:59;44026:20;44021:2;44013:6;44009:15;44002:45;43748:306;:::o;44060:122::-;44133:24;44151:5;44133:24;:::i;:::-;44126:5;44123:35;44113:63;;44172:1;44169;44162:12;44113:63;44060:122;:::o;44188:116::-;44258:21;44273:5;44258:21;:::i;:::-;44251:5;44248:32;44238:60;;44294:1;44291;44284:12;44238:60;44188:116;:::o;44310:120::-;44382:23;44399:5;44382:23;:::i;:::-;44375:5;44372:34;44362:62;;44420:1;44417;44410:12;44362:62;44310:120;:::o;44436:122::-;44509:24;44527:5;44509:24;:::i;:::-;44502:5;44499:35;44489:63;;44548:1;44545;44538:12;44489:63;44436:122;:::o
Swarm Source
ipfs://7ae47683116279a599b17a07cdec82ee7079df57adf26b7e92ed0d4a3a4ce68f
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.