Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
5,500 DINOBABIES
Holders
1,908
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DINOBABIESLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DinoBabies
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-18 */ // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) 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; 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"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) 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/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) 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/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) 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/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) 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/cryptography/MerkleProof.sol // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) 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}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. 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 { _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { 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` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) 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/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/DinoBabies.sol pragma solidity ^0.8.0; contract DinoBabies is ERC721Enumerable, Ownable { string public baseTokenURI; string public provenanceHash = ""; uint256 private _price = 0.05 ether; uint256 private _reserved = 50; uint256 public _seed = 0; bool public publicMintPaused = true; bool public whitelistMintPaused = true; bytes32 private _merkleRoot; mapping(address => uint256) public walletCount; address private _verifier = 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266; constructor(string memory baseURI) ERC721("DinoBabies", "DINOBABIES") { setBaseURI(baseURI); } function _recoverWallet( address _wallet, uint256 _num, bytes memory _signature ) internal pure returns (address) { return ECDSA.recover( ECDSA.toEthSignedMessageHash( keccak256(abi.encodePacked(_wallet, _num)) ), _signature ); } function mint(uint256 _num, bytes calldata _signature) external payable { uint256 totalSupply = totalSupply(); require(!publicMintPaused, "Minting paused"); require( tx.origin == msg.sender, "Purchase cannot be called from another contract" ); require(totalSupply + _num <= 5500 - _reserved, "Exceeds maximum supply"); require(walletCount[_msgSender()] + _num < 5, "Max mint per account is 4"); require(msg.value >= _price * _num, "Ether sent is not correct"); address signer = _recoverWallet(_msgSender(), _num, _signature); require(signer == _verifier, "Unverified transaction"); walletCount[_msgSender()] += _num; for (uint256 i = 1; i <= _num; i++) { _safeMint(_msgSender(), totalSupply + i); } if (_seed == 0 && totalSupply == 5500) { _seed = uint256( keccak256(abi.encodePacked(block.difficulty, block.timestamp)) ); } } function whitelistMint(uint256 _num, bytes32[] calldata _merkleProof) external payable { uint256 totalSupply = totalSupply(); require(!whitelistMintPaused, "Minting paused"); require( tx.origin == msg.sender, "Purchase cannot be called from another contract" ); require(totalSupply + _num <= 5500 - _reserved, "Exceeds maximum supply"); require(walletCount[_msgSender()] + _num < 3, "Max mint per account is 2"); require(msg.value >= _price * _num, "Ether sent is not correct"); bytes32 leaf = keccak256(abi.encodePacked(_msgSender())); require( MerkleProof.verify(_merkleProof, _merkleRoot, leaf), "Address is not whitelisted" ); walletCount[_msgSender()] += _num; for (uint256 i = 1; i <= _num; i++) { _safeMint(_msgSender(), totalSupply + i); } if (_seed == 0 && totalSupply == 5500) { _seed = uint256( keccak256(abi.encodePacked(block.difficulty, block.timestamp)) ); } } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function giveAway(address _to, uint256 _amount) external payable onlyOwner { require(_amount <= _reserved, "Exceeds reserved supply"); require(msg.value >= _price * _amount, "Ether sent is not correct"); uint256 totalSupply = totalSupply(); for (uint256 i = 1; i <= _amount; i++) { _safeMint(_to, totalSupply + i); } _reserved -= _amount; } function walletOfOwner(address owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(owner); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(owner, i); } return tokensId; } function whitelistMintPause(bool _state) public onlyOwner { whitelistMintPaused = _state; } function publicMintPause(bool _state) public onlyOwner { publicMintPaused = _state; } function setBaseURI(string memory _baseTokenURI) public onlyOwner { baseTokenURI = _baseTokenURI; } function setMerkleRoot(bytes32 _newMerkleRoot) public onlyOwner { _merkleRoot = _newMerkleRoot; } function setVerifier(address _newVerifier) public onlyOwner { _verifier = _newVerifier; } function setPrice(uint256 _newPrice) public onlyOwner { _price = _newPrice; } function setProvenanceHash(string memory _provenanceHash) public onlyOwner { provenanceHash = _provenanceHash; } function emergencySetSeed() public onlyOwner { require(_seed == 0, "Seed is already set"); _seed = uint256( keccak256(abi.encodePacked(block.difficulty, block.timestamp)) ); } function withdraw() public onlyOwner { require( payable(owner()).send(address(this).balance), "Withdraw unsuccessful" ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":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"},{"inputs":[],"name":"_seed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetSeed","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":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"_num","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"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":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"publicMintPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newVerifier","type":"address"}],"name":"setVerifier","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":[{"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":[{"internalType":"address","name":"","type":"address"}],"name":"walletCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"whitelistMintPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600c90805190602001906200002b9291906200037a565b5066b1a2bc2ec50000600d556032600e556000600f556001601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff02191690831515021790555073f39fd6e51aad88f6f4ce6ab8827279cfffb92266601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000d957600080fd5b5060405162006308380380620063088339818101604052810190620000ff9190620004a8565b6040518060400160405280600a81526020017f44696e6f426162696573000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f44494e4f424142494553000000000000000000000000000000000000000000008152508160009080519060200190620001839291906200037a565b5080600190805190602001906200019c9291906200037a565b505050620001bf620001b3620001d760201b60201c565b620001df60201b60201c565b620001d081620002a560201b60201c565b5062000700565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002b5620001d760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002db6200035060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000334576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032b9062000520565b60405180910390fd5b80600b90805190602001906200034c9291906200037a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200038890620005e8565b90600052602060002090601f016020900481019282620003ac5760008555620003f8565b82601f10620003c757805160ff1916838001178555620003f8565b82800160010185558215620003f8579182015b82811115620003f7578251825591602001919060010190620003da565b5b5090506200040791906200040b565b5090565b5b80821115620004265760008160009055506001016200040c565b5090565b6000620004416200043b846200056b565b62000542565b90508281526020810184848401111562000460576200045f620006b7565b5b6200046d848285620005b2565b509392505050565b600082601f8301126200048d576200048c620006b2565b5b81516200049f8482602086016200042a565b91505092915050565b600060208284031215620004c157620004c0620006c1565b5b600082015167ffffffffffffffff811115620004e257620004e1620006bc565b5b620004f08482850162000475565b91505092915050565b600062000508602083620005a1565b91506200051582620006d7565b602082019050919050565b600060208201905081810360008301526200053b81620004f9565b9050919050565b60006200054e62000561565b90506200055c82826200061e565b919050565b6000604051905090565b600067ffffffffffffffff82111562000589576200058862000683565b5b6200059482620006c6565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005d2578082015181840152602081019050620005b5565b83811115620005e2576000848401525b50505050565b600060028204905060018216806200060157607f821691505b6020821081141562000618576200061762000654565b5b50919050565b6200062982620006c6565b810181811067ffffffffffffffff821117156200064b576200064a62000683565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b615bf880620007106000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063b88d4fde116100ab578063d547cfb71161006f578063d547cfb7146107f9578063db7fd40814610824578063e28ab14214610840578063e985e9c514610857578063f2fde38b1461089457610225565b8063b88d4fde14610730578063c6ab67a314610759578063c87b56dd14610784578063ca800144146107c1578063d2cab056146107dd57610225565b806391b7f5ed116100f257806391b7f5ed1461064b57806395d89b4114610674578063a22cb4651461069f578063a7e0122e146106c8578063b74e1f4d1461070557610225565b806370a08231146105a3578063715018a6146105e05780637cb64759146105f75780638da5cb5b1461062057610225565b80632f745c59116101b15780634f6ccce7116101755780634f6ccce7146104ac5780635437988d146104e957806355f804b3146105125780635a34d3561461053b5780636352211e1461056657610225565b80632f745c59146103c757806333d9d5fd146104045780633ccfd60b1461042f57806342842e0e14610446578063438b63001461046f57610225565b8063095ea7b3116101f8578063095ea7b3146102f8578063109695231461032157806318160ddd1461034a5780631afb60e01461037557806323b872dd1461039e57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc1461029257806308fd9f0b146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613fbb565b6108bd565b60405161025e919061491b565b60405180910390f35b34801561027357600080fd5b5061027c610937565b604051610289919061497b565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061405e565b6109c9565b6040516102c69190614892565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613f61565b610a4e565b005b34801561030457600080fd5b5061031f600480360381019061031a9190613f21565b610ae7565b005b34801561032d57600080fd5b5061034860048036038101906103439190614015565b610bff565b005b34801561035657600080fd5b5061035f610c95565b60405161036c9190614dbd565b60405180910390f35b34801561038157600080fd5b5061039c60048036038101906103979190613f61565b610ca2565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190613e0b565b610d3b565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190613f21565b610d9b565b6040516103fb9190614dbd565b60405180910390f35b34801561041057600080fd5b50610419610e40565b604051610426919061491b565b60405180910390f35b34801561043b57600080fd5b50610444610e53565b005b34801561045257600080fd5b5061046d60048036038101906104689190613e0b565b610f4c565b005b34801561047b57600080fd5b5061049660048036038101906104919190613d9e565b610f6c565b6040516104a391906148f9565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce919061405e565b61101a565b6040516104e09190614dbd565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190613d9e565b61108b565b005b34801561051e57600080fd5b5061053960048036038101906105349190614015565b61114b565b005b34801561054757600080fd5b506105506111e1565b60405161055d9190614dbd565b60405180910390f35b34801561057257600080fd5b5061058d6004803603810190610588919061405e565b6111e7565b60405161059a9190614892565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c59190613d9e565b611299565b6040516105d79190614dbd565b60405180910390f35b3480156105ec57600080fd5b506105f5611351565b005b34801561060357600080fd5b5061061e60048036038101906106199190613f8e565b6113d9565b005b34801561062c57600080fd5b5061063561145f565b6040516106429190614892565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d919061405e565b611489565b005b34801561068057600080fd5b5061068961150f565b604051610696919061497b565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613ee1565b6115a1565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190613d9e565b6115b7565b6040516106fc9190614dbd565b60405180910390f35b34801561071157600080fd5b5061071a6115cf565b604051610727919061491b565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190613e5e565b6115e2565b005b34801561076557600080fd5b5061076e611644565b60405161077b919061497b565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a6919061405e565b6116d2565b6040516107b8919061497b565b60405180910390f35b6107db60048036038101906107d69190613f21565b611779565b005b6107f760048036038101906107f2919061408b565b6118eb565b005b34801561080557600080fd5b5061080e611ca2565b60405161081b919061497b565b60405180910390f35b61083e600480360381019061083991906140eb565b611d30565b005b34801561084c57600080fd5b50610855612112565b005b34801561086357600080fd5b5061087e60048036038101906108799190613dcb565b612207565b60405161088b919061491b565b60405180910390f35b3480156108a057600080fd5b506108bb60048036038101906108b69190613d9e565b61229b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610930575061092f82612393565b5b9050919050565b606060008054610946906150bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610972906150bd565b80156109bf5780601f10610994576101008083540402835291602001916109bf565b820191906000526020600020905b8154815290600101906020018083116109a257829003601f168201915b5050505050905090565b60006109d482612475565b610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a90614c5d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a566124e1565b73ffffffffffffffffffffffffffffffffffffffff16610a7461145f565b73ffffffffffffffffffffffffffffffffffffffff1614610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190614c7d565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610af2826111e7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90614cdd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b826124e1565b73ffffffffffffffffffffffffffffffffffffffff161480610bb15750610bb081610bab6124e1565b612207565b5b610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790614b7d565b60405180910390fd5b610bfa83836124e9565b505050565b610c076124e1565b73ffffffffffffffffffffffffffffffffffffffff16610c2561145f565b73ffffffffffffffffffffffffffffffffffffffff1614610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290614c7d565b60405180910390fd5b80600c9080519060200190610c91929190613af1565b5050565b6000600880549050905090565b610caa6124e1565b73ffffffffffffffffffffffffffffffffffffffff16610cc861145f565b73ffffffffffffffffffffffffffffffffffffffff1614610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590614c7d565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b610d4c610d466124e1565b826125a2565b610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290614d5d565b60405180910390fd5b610d96838383612680565b505050565b6000610da683611299565b8210610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde906149fd565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601060009054906101000a900460ff1681565b610e5b6124e1565b73ffffffffffffffffffffffffffffffffffffffff16610e7961145f565b73ffffffffffffffffffffffffffffffffffffffff1614610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690614c7d565b60405180910390fd5b610ed761145f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4190614d1d565b60405180910390fd5b565b610f67838383604051806020016040528060008152506115e2565b505050565b60606000610f7983611299565b905060008167ffffffffffffffff811115610f9757610f966152ec565b5b604051908082528060200260200182016040528015610fc55781602001602082028036833780820191505090505b50905060005b8281101561100f57610fdd8582610d9b565b828281518110610ff057610fef6152bd565b5b602002602001018181525050808061100790615120565b915050610fcb565b508092505050919050565b6000611024610c95565b8210611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90614d7d565b60405180910390fd5b60088281548110611079576110786152bd565b5b90600052602060002001549050919050565b6110936124e1565b73ffffffffffffffffffffffffffffffffffffffff166110b161145f565b73ffffffffffffffffffffffffffffffffffffffff1614611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90614c7d565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111536124e1565b73ffffffffffffffffffffffffffffffffffffffff1661117161145f565b73ffffffffffffffffffffffffffffffffffffffff16146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90614c7d565b60405180910390fd5b80600b90805190602001906111dd929190613af1565b5050565b600f5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790614bbd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190614b9d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113596124e1565b73ffffffffffffffffffffffffffffffffffffffff1661137761145f565b73ffffffffffffffffffffffffffffffffffffffff16146113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490614c7d565b60405180910390fd5b6113d760006128dc565b565b6113e16124e1565b73ffffffffffffffffffffffffffffffffffffffff166113ff61145f565b73ffffffffffffffffffffffffffffffffffffffff1614611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90614c7d565b60405180910390fd5b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114916124e1565b73ffffffffffffffffffffffffffffffffffffffff166114af61145f565b73ffffffffffffffffffffffffffffffffffffffff1614611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90614c7d565b60405180910390fd5b80600d8190555050565b60606001805461151e906150bd565b80601f016020809104026020016040519081016040528092919081815260200182805461154a906150bd565b80156115975780601f1061156c57610100808354040283529160200191611597565b820191906000526020600020905b81548152906001019060200180831161157a57829003601f168201915b5050505050905090565b6115b36115ac6124e1565b83836129a2565b5050565b60126020528060005260406000206000915090505481565b601060019054906101000a900460ff1681565b6115f36115ed6124e1565b836125a2565b611632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162990614d5d565b60405180910390fd5b61163e84848484612b0f565b50505050565b600c8054611651906150bd565b80601f016020809104026020016040519081016040528092919081815260200182805461167d906150bd565b80156116ca5780601f1061169f576101008083540402835291602001916116ca565b820191906000526020600020905b8154815290600101906020018083116116ad57829003601f168201915b505050505081565b60606116dd82612475565b61171c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171390614cbd565b60405180910390fd5b6000611726612b6b565b905060008151116117465760405180602001604052806000815250611771565b8061175084612bfd565b60405160200161176192919061481c565b6040516020818303038152906040525b915050919050565b6117816124e1565b73ffffffffffffffffffffffffffffffffffffffff1661179f61145f565b73ffffffffffffffffffffffffffffffffffffffff16146117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ec90614c7d565b60405180910390fd5b600e5481111561183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190614bfd565b60405180910390fd5b80600d546118489190614f62565b34101561188a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188190614d3d565b60405180910390fd5b6000611894610c95565b90506000600190505b8281116118cc576118b98482846118b49190614edb565b612d5e565b80806118c490615120565b91505061189d565b5081600e60008282546118df9190614fbc565b92505081905550505050565b60006118f5610c95565b9050601060019054906101000a900460ff1615611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90614a3d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90614d9d565b60405180910390fd5b600e5461157c6119c59190614fbc565b84826119d19190614edb565b1115611a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0990614cfd565b60405180910390fd5b60038460126000611a216124e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a669190614edb565b10611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90614c3d565b60405180910390fd5b83600d54611ab49190614f62565b341015611af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aed90614d3d565b60405180910390fd5b6000611b006124e1565b604051602001611b1091906147a9565b604051602081830303815290604052805190602001209050611b76848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115483612d7c565b611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac90614b1d565b60405180910390fd5b8460126000611bc26124e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c0b9190614edb565b925050819055506000600190505b858111611c4f57611c3c611c2b6124e1565b8285611c379190614edb565b612d5e565b8080611c4790615120565b915050611c19565b506000600f54148015611c63575061157c82145b15611c9b574442604051602001611c7b929190614866565b6040516020818303038152906040528051906020012060001c600f819055505b5050505050565b600b8054611caf906150bd565b80601f0160208091040260200160405190810160405280929190818152602001828054611cdb906150bd565b8015611d285780601f10611cfd57610100808354040283529160200191611d28565b820191906000526020600020905b815481529060010190602001808311611d0b57829003601f168201915b505050505081565b6000611d3a610c95565b9050601060009054906101000a900460ff1615611d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8390614a3d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df190614d9d565b60405180910390fd5b600e5461157c611e0a9190614fbc565b8482611e169190614edb565b1115611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90614cfd565b60405180910390fd5b60058460126000611e666124e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eab9190614edb565b10611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee290614a9d565b60405180910390fd5b83600d54611ef99190614f62565b341015611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3290614d3d565b60405180910390fd5b6000611f93611f486124e1565b8686868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612d93565b9050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c90614abd565b60405180910390fd5b84601260006120326124e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461207b9190614edb565b925050819055506000600190505b8581116120bf576120ac61209b6124e1565b82856120a79190614edb565b612d5e565b80806120b790615120565b915050612089565b506000600f541480156120d3575061157c82145b1561210b5744426040516020016120eb929190614866565b6040516020818303038152906040528051906020012060001c600f819055505b5050505050565b61211a6124e1565b73ffffffffffffffffffffffffffffffffffffffff1661213861145f565b73ffffffffffffffffffffffffffffffffffffffff161461218e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218590614c7d565b60405180910390fd5b6000600f54146121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca906149bd565b60405180910390fd5b44426040516020016121e6929190614866565b6040516020818303038152906040528051906020012060001c600f81905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122a36124e1565b73ffffffffffffffffffffffffffffffffffffffff166122c161145f565b73ffffffffffffffffffffffffffffffffffffffff1614612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90614c7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237e90614a5d565b60405180910390fd5b612390816128dc565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061245e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061246e575061246d82612dd8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661255c836111e7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006125ad82612475565b6125ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e390614b5d565b60405180910390fd5b60006125f7836111e7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061266657508373ffffffffffffffffffffffffffffffffffffffff1661264e846109c9565b73ffffffffffffffffffffffffffffffffffffffff16145b8061267757506126768185612207565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126a0826111e7565b73ffffffffffffffffffffffffffffffffffffffff16146126f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ed90614c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275d90614add565b60405180910390fd5b612771838383612e42565b61277c6000826124e9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127cc9190614fbc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128239190614edb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0890614afd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b02919061491b565b60405180910390a3505050565b612b1a848484612680565b612b2684848484612f56565b612b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5c90614a1d565b60405180910390fd5b50505050565b6060600b8054612b7a906150bd565b80601f0160208091040260200160405190810160405280929190818152602001828054612ba6906150bd565b8015612bf35780601f10612bc857610100808354040283529160200191612bf3565b820191906000526020600020905b815481529060010190602001808311612bd657829003601f168201915b5050505050905090565b60606000821415612c45576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d59565b600082905060005b60008214612c77578080612c6090615120565b915050600a82612c709190614f31565b9150612c4d565b60008167ffffffffffffffff811115612c9357612c926152ec565b5b6040519080825280601f01601f191660200182016040528015612cc55781602001600182028036833780820191505090505b5090505b60008514612d5257600182612cde9190614fbc565b9150600a85612ced91906151a1565b6030612cf99190614edb565b60f81b818381518110612d0f57612d0e6152bd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d4b9190614f31565b9450612cc9565b8093505050505b919050565b612d788282604051806020016040528060008152506130ed565b5050565b600082612d898584613148565b1490509392505050565b6000612dcf612dc98585604051602001612dae9291906147c4565b604051602081830303815290604052805190602001206131fb565b8361322b565b90509392505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e4d838383613252565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e9057612e8b81613257565b612ecf565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ece57612ecd83826132a0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f1257612f0d8161340d565b612f51565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f5057612f4f82826134de565b5b5b505050565b6000612f778473ffffffffffffffffffffffffffffffffffffffff1661355d565b156130e0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fa06124e1565b8786866040518563ffffffff1660e01b8152600401612fc294939291906148ad565b602060405180830381600087803b158015612fdc57600080fd5b505af192505050801561300d57506040513d601f19601f8201168201806040525081019061300a9190613fe8565b60015b613090573d806000811461303d576040519150601f19603f3d011682016040523d82523d6000602084013e613042565b606091505b50600081511415613088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307f90614a1d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130e5565b600190505b949350505050565b6130f78383613570565b6131046000848484612f56565b613143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313a90614a1d565b60405180910390fd5b505050565b60008082905060005b84518110156131f057600085828151811061316f5761316e6152bd565b5b602002602001015190508083116131b05782816040516020016131939291906147f0565b6040516020818303038152906040528051906020012092506131dc565b80836040516020016131c39291906147f0565b6040516020818303038152906040528051906020012092505b5080806131e890615120565b915050613151565b508091505092915050565b60008160405160200161320e9190614840565b604051602081830303815290604052805190602001209050919050565b600080600061323a858561373e565b91509150613247816137c1565b819250505092915050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132ad84611299565b6132b79190614fbc565b905060006007600084815260200190815260200160002054905081811461339c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134219190614fbc565b9050600060096000848152602001908152602001600020549050600060088381548110613451576134506152bd565b5b906000526020600020015490508060088381548110613473576134726152bd565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806134c2576134c161528e565b5b6001900381819060005260206000200160009055905550505050565b60006134e983611299565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d790614c1d565b60405180910390fd5b6135e981612475565b15613629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362090614a7d565b60405180910390fd5b61363560008383612e42565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136859190614edb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000806041835114156137805760008060006020860151925060408601519150606086015160001a905061377487828585613996565b945094505050506137ba565b6040835114156137b15760008060208501519150604085015190506137a6868383613aa3565b9350935050506137ba565b60006002915091505b9250929050565b600060048111156137d5576137d4615230565b5b8160048111156137e8576137e7615230565b5b14156137f357613993565b6001600481111561380757613806615230565b5b81600481111561381a57613819615230565b5b141561385b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138529061499d565b60405180910390fd5b6002600481111561386f5761386e615230565b5b81600481111561388257613881615230565b5b14156138c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ba906149dd565b60405180910390fd5b600360048111156138d7576138d6615230565b5b8160048111156138ea576138e9615230565b5b141561392b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392290614b3d565b60405180910390fd5b60048081111561393e5761393d615230565b5b81600481111561395157613950615230565b5b1415613992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398990614bdd565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156139d1576000600391509150613a9a565b601b8560ff16141580156139e95750601c8560ff1614155b156139fb576000600491509150613a9a565b600060018787878760405160008152602001604052604051613a209493929190614936565b6020604051602081039080840390855afa158015613a42573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613a9157600060019250925050613a9a565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613ae387828885613996565b935093505050935093915050565b828054613afd906150bd565b90600052602060002090601f016020900481019282613b1f5760008555613b66565b82601f10613b3857805160ff1916838001178555613b66565b82800160010185558215613b66579182015b82811115613b65578251825591602001919060010190613b4a565b5b509050613b739190613b77565b5090565b5b80821115613b90576000816000905550600101613b78565b5090565b6000613ba7613ba284614dfd565b614dd8565b905082815260208101848484011115613bc357613bc261532a565b5b613bce84828561507b565b509392505050565b6000613be9613be484614e2e565b614dd8565b905082815260208101848484011115613c0557613c0461532a565b5b613c1084828561507b565b509392505050565b600081359050613c2781615b4f565b92915050565b60008083601f840112613c4357613c42615320565b5b8235905067ffffffffffffffff811115613c6057613c5f61531b565b5b602083019150836020820283011115613c7c57613c7b615325565b5b9250929050565b600081359050613c9281615b66565b92915050565b600081359050613ca781615b7d565b92915050565b600081359050613cbc81615b94565b92915050565b600081519050613cd181615b94565b92915050565b60008083601f840112613ced57613cec615320565b5b8235905067ffffffffffffffff811115613d0a57613d0961531b565b5b602083019150836001820283011115613d2657613d25615325565b5b9250929050565b600082601f830112613d4257613d41615320565b5b8135613d52848260208601613b94565b91505092915050565b600082601f830112613d7057613d6f615320565b5b8135613d80848260208601613bd6565b91505092915050565b600081359050613d9881615bab565b92915050565b600060208284031215613db457613db3615334565b5b6000613dc284828501613c18565b91505092915050565b60008060408385031215613de257613de1615334565b5b6000613df085828601613c18565b9250506020613e0185828601613c18565b9150509250929050565b600080600060608486031215613e2457613e23615334565b5b6000613e3286828701613c18565b9350506020613e4386828701613c18565b9250506040613e5486828701613d89565b9150509250925092565b60008060008060808587031215613e7857613e77615334565b5b6000613e8687828801613c18565b9450506020613e9787828801613c18565b9350506040613ea887828801613d89565b925050606085013567ffffffffffffffff811115613ec957613ec861532f565b5b613ed587828801613d2d565b91505092959194509250565b60008060408385031215613ef857613ef7615334565b5b6000613f0685828601613c18565b9250506020613f1785828601613c83565b9150509250929050565b60008060408385031215613f3857613f37615334565b5b6000613f4685828601613c18565b9250506020613f5785828601613d89565b9150509250929050565b600060208284031215613f7757613f76615334565b5b6000613f8584828501613c83565b91505092915050565b600060208284031215613fa457613fa3615334565b5b6000613fb284828501613c98565b91505092915050565b600060208284031215613fd157613fd0615334565b5b6000613fdf84828501613cad565b91505092915050565b600060208284031215613ffe57613ffd615334565b5b600061400c84828501613cc2565b91505092915050565b60006020828403121561402b5761402a615334565b5b600082013567ffffffffffffffff8111156140495761404861532f565b5b61405584828501613d5b565b91505092915050565b60006020828403121561407457614073615334565b5b600061408284828501613d89565b91505092915050565b6000806000604084860312156140a4576140a3615334565b5b60006140b286828701613d89565b935050602084013567ffffffffffffffff8111156140d3576140d261532f565b5b6140df86828701613c2d565b92509250509250925092565b60008060006040848603121561410457614103615334565b5b600061411286828701613d89565b935050602084013567ffffffffffffffff8111156141335761413261532f565b5b61413f86828701613cd7565b92509250509250925092565b60006141578383614765565b60208301905092915050565b61416c81614ff0565b82525050565b61418361417e82614ff0565b615169565b82525050565b600061419482614e6f565b61419e8185614e9d565b93506141a983614e5f565b8060005b838110156141da5781516141c1888261414b565b97506141cc83614e90565b9250506001810190506141ad565b5085935050505092915050565b6141f081615002565b82525050565b6141ff8161500e565b82525050565b6142166142118261500e565b61517b565b82525050565b600061422782614e7a565b6142318185614eae565b935061424181856020860161508a565b61424a81615339565b840191505092915050565b600061426082614e85565b61426a8185614ebf565b935061427a81856020860161508a565b61428381615339565b840191505092915050565b600061429982614e85565b6142a38185614ed0565b93506142b381856020860161508a565b80840191505092915050565b60006142cc601883614ebf565b91506142d782615357565b602082019050919050565b60006142ef601383614ebf565b91506142fa82615380565b602082019050919050565b6000614312601f83614ebf565b915061431d826153a9565b602082019050919050565b6000614335601c83614ed0565b9150614340826153d2565b601c82019050919050565b6000614358602b83614ebf565b9150614363826153fb565b604082019050919050565b600061437b603283614ebf565b91506143868261544a565b604082019050919050565b600061439e600e83614ebf565b91506143a982615499565b602082019050919050565b60006143c1602683614ebf565b91506143cc826154c2565b604082019050919050565b60006143e4601c83614ebf565b91506143ef82615511565b602082019050919050565b6000614407601983614ebf565b91506144128261553a565b602082019050919050565b600061442a601683614ebf565b915061443582615563565b602082019050919050565b600061444d602483614ebf565b91506144588261558c565b604082019050919050565b6000614470601983614ebf565b915061447b826155db565b602082019050919050565b6000614493601a83614ebf565b915061449e82615604565b602082019050919050565b60006144b6602283614ebf565b91506144c18261562d565b604082019050919050565b60006144d9602c83614ebf565b91506144e48261567c565b604082019050919050565b60006144fc603883614ebf565b9150614507826156cb565b604082019050919050565b600061451f602a83614ebf565b915061452a8261571a565b604082019050919050565b6000614542602983614ebf565b915061454d82615769565b604082019050919050565b6000614565602283614ebf565b9150614570826157b8565b604082019050919050565b6000614588601783614ebf565b915061459382615807565b602082019050919050565b60006145ab602083614ebf565b91506145b682615830565b602082019050919050565b60006145ce601983614ebf565b91506145d982615859565b602082019050919050565b60006145f1602c83614ebf565b91506145fc82615882565b604082019050919050565b6000614614602083614ebf565b915061461f826158d1565b602082019050919050565b6000614637602983614ebf565b9150614642826158fa565b604082019050919050565b600061465a602f83614ebf565b915061466582615949565b604082019050919050565b600061467d602183614ebf565b915061468882615998565b604082019050919050565b60006146a0601683614ebf565b91506146ab826159e7565b602082019050919050565b60006146c3601583614ebf565b91506146ce82615a10565b602082019050919050565b60006146e6601983614ebf565b91506146f182615a39565b602082019050919050565b6000614709603183614ebf565b915061471482615a62565b604082019050919050565b600061472c602c83614ebf565b915061473782615ab1565b604082019050919050565b600061474f602f83614ebf565b915061475a82615b00565b604082019050919050565b61476e81615064565b82525050565b61477d81615064565b82525050565b61479461478f82615064565b615197565b82525050565b6147a38161506e565b82525050565b60006147b58284614172565b60148201915081905092915050565b60006147d08285614172565b6014820191506147e08284614783565b6020820191508190509392505050565b60006147fc8285614205565b60208201915061480c8284614205565b6020820191508190509392505050565b6000614828828561428e565b9150614834828461428e565b91508190509392505050565b600061484b82614328565b91506148578284614205565b60208201915081905092915050565b60006148728285614783565b6020820191506148828284614783565b6020820191508190509392505050565b60006020820190506148a76000830184614163565b92915050565b60006080820190506148c26000830187614163565b6148cf6020830186614163565b6148dc6040830185614774565b81810360608301526148ee818461421c565b905095945050505050565b600060208201905081810360008301526149138184614189565b905092915050565b600060208201905061493060008301846141e7565b92915050565b600060808201905061494b60008301876141f6565b614958602083018661479a565b61496560408301856141f6565b61497260608301846141f6565b95945050505050565b600060208201905081810360008301526149958184614255565b905092915050565b600060208201905081810360008301526149b6816142bf565b9050919050565b600060208201905081810360008301526149d6816142e2565b9050919050565b600060208201905081810360008301526149f681614305565b9050919050565b60006020820190508181036000830152614a168161434b565b9050919050565b60006020820190508181036000830152614a368161436e565b9050919050565b60006020820190508181036000830152614a5681614391565b9050919050565b60006020820190508181036000830152614a76816143b4565b9050919050565b60006020820190508181036000830152614a96816143d7565b9050919050565b60006020820190508181036000830152614ab6816143fa565b9050919050565b60006020820190508181036000830152614ad68161441d565b9050919050565b60006020820190508181036000830152614af681614440565b9050919050565b60006020820190508181036000830152614b1681614463565b9050919050565b60006020820190508181036000830152614b3681614486565b9050919050565b60006020820190508181036000830152614b56816144a9565b9050919050565b60006020820190508181036000830152614b76816144cc565b9050919050565b60006020820190508181036000830152614b96816144ef565b9050919050565b60006020820190508181036000830152614bb681614512565b9050919050565b60006020820190508181036000830152614bd681614535565b9050919050565b60006020820190508181036000830152614bf681614558565b9050919050565b60006020820190508181036000830152614c168161457b565b9050919050565b60006020820190508181036000830152614c368161459e565b9050919050565b60006020820190508181036000830152614c56816145c1565b9050919050565b60006020820190508181036000830152614c76816145e4565b9050919050565b60006020820190508181036000830152614c9681614607565b9050919050565b60006020820190508181036000830152614cb68161462a565b9050919050565b60006020820190508181036000830152614cd68161464d565b9050919050565b60006020820190508181036000830152614cf681614670565b9050919050565b60006020820190508181036000830152614d1681614693565b9050919050565b60006020820190508181036000830152614d36816146b6565b9050919050565b60006020820190508181036000830152614d56816146d9565b9050919050565b60006020820190508181036000830152614d76816146fc565b9050919050565b60006020820190508181036000830152614d968161471f565b9050919050565b60006020820190508181036000830152614db681614742565b9050919050565b6000602082019050614dd26000830184614774565b92915050565b6000614de2614df3565b9050614dee82826150ef565b919050565b6000604051905090565b600067ffffffffffffffff821115614e1857614e176152ec565b5b614e2182615339565b9050602081019050919050565b600067ffffffffffffffff821115614e4957614e486152ec565b5b614e5282615339565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ee682615064565b9150614ef183615064565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f2657614f256151d2565b5b828201905092915050565b6000614f3c82615064565b9150614f4783615064565b925082614f5757614f56615201565b5b828204905092915050565b6000614f6d82615064565b9150614f7883615064565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614fb157614fb06151d2565b5b828202905092915050565b6000614fc782615064565b9150614fd283615064565b925082821015614fe557614fe46151d2565b5b828203905092915050565b6000614ffb82615044565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156150a857808201518184015260208101905061508d565b838111156150b7576000848401525b50505050565b600060028204905060018216806150d557607f821691505b602082108114156150e9576150e861525f565b5b50919050565b6150f882615339565b810181811067ffffffffffffffff82111715615117576151166152ec565b5b80604052505050565b600061512b82615064565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561515e5761515d6151d2565b5b600182019050919050565b600061517482615185565b9050919050565b6000819050919050565b60006151908261534a565b9050919050565b6000819050919050565b60006151ac82615064565b91506151b783615064565b9250826151c7576151c6615201565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f5365656420697320616c72656164792073657400000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d6178206d696e7420706572206163636f756e74206973203400000000000000600082015250565b7f556e7665726966696564207472616e73616374696f6e00000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f41646472657373206973206e6f742077686974656c6973746564000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565647320726573657276656420737570706c79000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d6178206d696e7420706572206163636f756e74206973203200000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f576974686472617720756e7375636365737366756c0000000000000000000000600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f50757263686173652063616e6e6f742062652063616c6c65642066726f6d206160008201527f6e6f7468657220636f6e74726163740000000000000000000000000000000000602082015250565b615b5881614ff0565b8114615b6357600080fd5b50565b615b6f81615002565b8114615b7a57600080fd5b50565b615b868161500e565b8114615b9157600080fd5b50565b615b9d81615018565b8114615ba857600080fd5b50565b615bb481615064565b8114615bbf57600080fd5b5056fea2646970667358221220f59c37d6559790e3fcdb6e47cce1f8fe6316b849868f21238adf8e65ad84537564736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001a68747470733a2f2f7777772e64696e6f6261626965732e696f2f000000000000
Deployed Bytecode
0x6080604052600436106102255760003560e01c806370a0823111610123578063b88d4fde116100ab578063d547cfb71161006f578063d547cfb7146107f9578063db7fd40814610824578063e28ab14214610840578063e985e9c514610857578063f2fde38b1461089457610225565b8063b88d4fde14610730578063c6ab67a314610759578063c87b56dd14610784578063ca800144146107c1578063d2cab056146107dd57610225565b806391b7f5ed116100f257806391b7f5ed1461064b57806395d89b4114610674578063a22cb4651461069f578063a7e0122e146106c8578063b74e1f4d1461070557610225565b806370a08231146105a3578063715018a6146105e05780637cb64759146105f75780638da5cb5b1461062057610225565b80632f745c59116101b15780634f6ccce7116101755780634f6ccce7146104ac5780635437988d146104e957806355f804b3146105125780635a34d3561461053b5780636352211e1461056657610225565b80632f745c59146103c757806333d9d5fd146104045780633ccfd60b1461042f57806342842e0e14610446578063438b63001461046f57610225565b8063095ea7b3116101f8578063095ea7b3146102f8578063109695231461032157806318160ddd1461034a5780631afb60e01461037557806323b872dd1461039e57610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc1461029257806308fd9f0b146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613fbb565b6108bd565b60405161025e919061491b565b60405180910390f35b34801561027357600080fd5b5061027c610937565b604051610289919061497b565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061405e565b6109c9565b6040516102c69190614892565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613f61565b610a4e565b005b34801561030457600080fd5b5061031f600480360381019061031a9190613f21565b610ae7565b005b34801561032d57600080fd5b5061034860048036038101906103439190614015565b610bff565b005b34801561035657600080fd5b5061035f610c95565b60405161036c9190614dbd565b60405180910390f35b34801561038157600080fd5b5061039c60048036038101906103979190613f61565b610ca2565b005b3480156103aa57600080fd5b506103c560048036038101906103c09190613e0b565b610d3b565b005b3480156103d357600080fd5b506103ee60048036038101906103e99190613f21565b610d9b565b6040516103fb9190614dbd565b60405180910390f35b34801561041057600080fd5b50610419610e40565b604051610426919061491b565b60405180910390f35b34801561043b57600080fd5b50610444610e53565b005b34801561045257600080fd5b5061046d60048036038101906104689190613e0b565b610f4c565b005b34801561047b57600080fd5b5061049660048036038101906104919190613d9e565b610f6c565b6040516104a391906148f9565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce919061405e565b61101a565b6040516104e09190614dbd565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190613d9e565b61108b565b005b34801561051e57600080fd5b5061053960048036038101906105349190614015565b61114b565b005b34801561054757600080fd5b506105506111e1565b60405161055d9190614dbd565b60405180910390f35b34801561057257600080fd5b5061058d6004803603810190610588919061405e565b6111e7565b60405161059a9190614892565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c59190613d9e565b611299565b6040516105d79190614dbd565b60405180910390f35b3480156105ec57600080fd5b506105f5611351565b005b34801561060357600080fd5b5061061e60048036038101906106199190613f8e565b6113d9565b005b34801561062c57600080fd5b5061063561145f565b6040516106429190614892565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d919061405e565b611489565b005b34801561068057600080fd5b5061068961150f565b604051610696919061497b565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190613ee1565b6115a1565b005b3480156106d457600080fd5b506106ef60048036038101906106ea9190613d9e565b6115b7565b6040516106fc9190614dbd565b60405180910390f35b34801561071157600080fd5b5061071a6115cf565b604051610727919061491b565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190613e5e565b6115e2565b005b34801561076557600080fd5b5061076e611644565b60405161077b919061497b565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a6919061405e565b6116d2565b6040516107b8919061497b565b60405180910390f35b6107db60048036038101906107d69190613f21565b611779565b005b6107f760048036038101906107f2919061408b565b6118eb565b005b34801561080557600080fd5b5061080e611ca2565b60405161081b919061497b565b60405180910390f35b61083e600480360381019061083991906140eb565b611d30565b005b34801561084c57600080fd5b50610855612112565b005b34801561086357600080fd5b5061087e60048036038101906108799190613dcb565b612207565b60405161088b919061491b565b60405180910390f35b3480156108a057600080fd5b506108bb60048036038101906108b69190613d9e565b61229b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610930575061092f82612393565b5b9050919050565b606060008054610946906150bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610972906150bd565b80156109bf5780601f10610994576101008083540402835291602001916109bf565b820191906000526020600020905b8154815290600101906020018083116109a257829003601f168201915b5050505050905090565b60006109d482612475565b610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a90614c5d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a566124e1565b73ffffffffffffffffffffffffffffffffffffffff16610a7461145f565b73ffffffffffffffffffffffffffffffffffffffff1614610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190614c7d565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610af2826111e7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90614cdd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b826124e1565b73ffffffffffffffffffffffffffffffffffffffff161480610bb15750610bb081610bab6124e1565b612207565b5b610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790614b7d565b60405180910390fd5b610bfa83836124e9565b505050565b610c076124e1565b73ffffffffffffffffffffffffffffffffffffffff16610c2561145f565b73ffffffffffffffffffffffffffffffffffffffff1614610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290614c7d565b60405180910390fd5b80600c9080519060200190610c91929190613af1565b5050565b6000600880549050905090565b610caa6124e1565b73ffffffffffffffffffffffffffffffffffffffff16610cc861145f565b73ffffffffffffffffffffffffffffffffffffffff1614610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590614c7d565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b610d4c610d466124e1565b826125a2565b610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290614d5d565b60405180910390fd5b610d96838383612680565b505050565b6000610da683611299565b8210610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde906149fd565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601060009054906101000a900460ff1681565b610e5b6124e1565b73ffffffffffffffffffffffffffffffffffffffff16610e7961145f565b73ffffffffffffffffffffffffffffffffffffffff1614610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec690614c7d565b60405180910390fd5b610ed761145f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4190614d1d565b60405180910390fd5b565b610f67838383604051806020016040528060008152506115e2565b505050565b60606000610f7983611299565b905060008167ffffffffffffffff811115610f9757610f966152ec565b5b604051908082528060200260200182016040528015610fc55781602001602082028036833780820191505090505b50905060005b8281101561100f57610fdd8582610d9b565b828281518110610ff057610fef6152bd565b5b602002602001018181525050808061100790615120565b915050610fcb565b508092505050919050565b6000611024610c95565b8210611065576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105c90614d7d565b60405180910390fd5b60088281548110611079576110786152bd565b5b90600052602060002001549050919050565b6110936124e1565b73ffffffffffffffffffffffffffffffffffffffff166110b161145f565b73ffffffffffffffffffffffffffffffffffffffff1614611107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fe90614c7d565b60405180910390fd5b80601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6111536124e1565b73ffffffffffffffffffffffffffffffffffffffff1661117161145f565b73ffffffffffffffffffffffffffffffffffffffff16146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90614c7d565b60405180910390fd5b80600b90805190602001906111dd929190613af1565b5050565b600f5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790614bbd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190614b9d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113596124e1565b73ffffffffffffffffffffffffffffffffffffffff1661137761145f565b73ffffffffffffffffffffffffffffffffffffffff16146113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490614c7d565b60405180910390fd5b6113d760006128dc565b565b6113e16124e1565b73ffffffffffffffffffffffffffffffffffffffff166113ff61145f565b73ffffffffffffffffffffffffffffffffffffffff1614611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90614c7d565b60405180910390fd5b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114916124e1565b73ffffffffffffffffffffffffffffffffffffffff166114af61145f565b73ffffffffffffffffffffffffffffffffffffffff1614611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90614c7d565b60405180910390fd5b80600d8190555050565b60606001805461151e906150bd565b80601f016020809104026020016040519081016040528092919081815260200182805461154a906150bd565b80156115975780601f1061156c57610100808354040283529160200191611597565b820191906000526020600020905b81548152906001019060200180831161157a57829003601f168201915b5050505050905090565b6115b36115ac6124e1565b83836129a2565b5050565b60126020528060005260406000206000915090505481565b601060019054906101000a900460ff1681565b6115f36115ed6124e1565b836125a2565b611632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162990614d5d565b60405180910390fd5b61163e84848484612b0f565b50505050565b600c8054611651906150bd565b80601f016020809104026020016040519081016040528092919081815260200182805461167d906150bd565b80156116ca5780601f1061169f576101008083540402835291602001916116ca565b820191906000526020600020905b8154815290600101906020018083116116ad57829003601f168201915b505050505081565b60606116dd82612475565b61171c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171390614cbd565b60405180910390fd5b6000611726612b6b565b905060008151116117465760405180602001604052806000815250611771565b8061175084612bfd565b60405160200161176192919061481c565b6040516020818303038152906040525b915050919050565b6117816124e1565b73ffffffffffffffffffffffffffffffffffffffff1661179f61145f565b73ffffffffffffffffffffffffffffffffffffffff16146117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ec90614c7d565b60405180910390fd5b600e5481111561183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190614bfd565b60405180910390fd5b80600d546118489190614f62565b34101561188a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188190614d3d565b60405180910390fd5b6000611894610c95565b90506000600190505b8281116118cc576118b98482846118b49190614edb565b612d5e565b80806118c490615120565b91505061189d565b5081600e60008282546118df9190614fbc565b92505081905550505050565b60006118f5610c95565b9050601060019054906101000a900460ff1615611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90614a3d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90614d9d565b60405180910390fd5b600e5461157c6119c59190614fbc565b84826119d19190614edb565b1115611a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0990614cfd565b60405180910390fd5b60038460126000611a216124e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a669190614edb565b10611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90614c3d565b60405180910390fd5b83600d54611ab49190614f62565b341015611af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aed90614d3d565b60405180910390fd5b6000611b006124e1565b604051602001611b1091906147a9565b604051602081830303815290604052805190602001209050611b76848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060115483612d7c565b611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac90614b1d565b60405180910390fd5b8460126000611bc26124e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c0b9190614edb565b925050819055506000600190505b858111611c4f57611c3c611c2b6124e1565b8285611c379190614edb565b612d5e565b8080611c4790615120565b915050611c19565b506000600f54148015611c63575061157c82145b15611c9b574442604051602001611c7b929190614866565b6040516020818303038152906040528051906020012060001c600f819055505b5050505050565b600b8054611caf906150bd565b80601f0160208091040260200160405190810160405280929190818152602001828054611cdb906150bd565b8015611d285780601f10611cfd57610100808354040283529160200191611d28565b820191906000526020600020905b815481529060010190602001808311611d0b57829003601f168201915b505050505081565b6000611d3a610c95565b9050601060009054906101000a900460ff1615611d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8390614a3d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df190614d9d565b60405180910390fd5b600e5461157c611e0a9190614fbc565b8482611e169190614edb565b1115611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90614cfd565b60405180910390fd5b60058460126000611e666124e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eab9190614edb565b10611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee290614a9d565b60405180910390fd5b83600d54611ef99190614f62565b341015611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3290614d3d565b60405180910390fd5b6000611f93611f486124e1565b8686868080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612d93565b9050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612025576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201c90614abd565b60405180910390fd5b84601260006120326124e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461207b9190614edb565b925050819055506000600190505b8581116120bf576120ac61209b6124e1565b82856120a79190614edb565b612d5e565b80806120b790615120565b915050612089565b506000600f541480156120d3575061157c82145b1561210b5744426040516020016120eb929190614866565b6040516020818303038152906040528051906020012060001c600f819055505b5050505050565b61211a6124e1565b73ffffffffffffffffffffffffffffffffffffffff1661213861145f565b73ffffffffffffffffffffffffffffffffffffffff161461218e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218590614c7d565b60405180910390fd5b6000600f54146121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca906149bd565b60405180910390fd5b44426040516020016121e6929190614866565b6040516020818303038152906040528051906020012060001c600f81905550565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122a36124e1565b73ffffffffffffffffffffffffffffffffffffffff166122c161145f565b73ffffffffffffffffffffffffffffffffffffffff1614612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90614c7d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237e90614a5d565b60405180910390fd5b612390816128dc565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061245e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061246e575061246d82612dd8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661255c836111e7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006125ad82612475565b6125ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e390614b5d565b60405180910390fd5b60006125f7836111e7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061266657508373ffffffffffffffffffffffffffffffffffffffff1661264e846109c9565b73ffffffffffffffffffffffffffffffffffffffff16145b8061267757506126768185612207565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126a0826111e7565b73ffffffffffffffffffffffffffffffffffffffff16146126f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ed90614c9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275d90614add565b60405180910390fd5b612771838383612e42565b61277c6000826124e9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127cc9190614fbc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128239190614edb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0890614afd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b02919061491b565b60405180910390a3505050565b612b1a848484612680565b612b2684848484612f56565b612b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5c90614a1d565b60405180910390fd5b50505050565b6060600b8054612b7a906150bd565b80601f0160208091040260200160405190810160405280929190818152602001828054612ba6906150bd565b8015612bf35780601f10612bc857610100808354040283529160200191612bf3565b820191906000526020600020905b815481529060010190602001808311612bd657829003601f168201915b5050505050905090565b60606000821415612c45576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d59565b600082905060005b60008214612c77578080612c6090615120565b915050600a82612c709190614f31565b9150612c4d565b60008167ffffffffffffffff811115612c9357612c926152ec565b5b6040519080825280601f01601f191660200182016040528015612cc55781602001600182028036833780820191505090505b5090505b60008514612d5257600182612cde9190614fbc565b9150600a85612ced91906151a1565b6030612cf99190614edb565b60f81b818381518110612d0f57612d0e6152bd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d4b9190614f31565b9450612cc9565b8093505050505b919050565b612d788282604051806020016040528060008152506130ed565b5050565b600082612d898584613148565b1490509392505050565b6000612dcf612dc98585604051602001612dae9291906147c4565b604051602081830303815290604052805190602001206131fb565b8361322b565b90509392505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612e4d838383613252565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e9057612e8b81613257565b612ecf565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ece57612ecd83826132a0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f1257612f0d8161340d565b612f51565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612f5057612f4f82826134de565b5b5b505050565b6000612f778473ffffffffffffffffffffffffffffffffffffffff1661355d565b156130e0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fa06124e1565b8786866040518563ffffffff1660e01b8152600401612fc294939291906148ad565b602060405180830381600087803b158015612fdc57600080fd5b505af192505050801561300d57506040513d601f19601f8201168201806040525081019061300a9190613fe8565b60015b613090573d806000811461303d576040519150601f19603f3d011682016040523d82523d6000602084013e613042565b606091505b50600081511415613088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307f90614a1d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130e5565b600190505b949350505050565b6130f78383613570565b6131046000848484612f56565b613143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313a90614a1d565b60405180910390fd5b505050565b60008082905060005b84518110156131f057600085828151811061316f5761316e6152bd565b5b602002602001015190508083116131b05782816040516020016131939291906147f0565b6040516020818303038152906040528051906020012092506131dc565b80836040516020016131c39291906147f0565b6040516020818303038152906040528051906020012092505b5080806131e890615120565b915050613151565b508091505092915050565b60008160405160200161320e9190614840565b604051602081830303815290604052805190602001209050919050565b600080600061323a858561373e565b91509150613247816137c1565b819250505092915050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132ad84611299565b6132b79190614fbc565b905060006007600084815260200190815260200160002054905081811461339c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134219190614fbc565b9050600060096000848152602001908152602001600020549050600060088381548110613451576134506152bd565b5b906000526020600020015490508060088381548110613473576134726152bd565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806134c2576134c161528e565b5b6001900381819060005260206000200160009055905550505050565b60006134e983611299565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d790614c1d565b60405180910390fd5b6135e981612475565b15613629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362090614a7d565b60405180910390fd5b61363560008383612e42565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136859190614edb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000806041835114156137805760008060006020860151925060408601519150606086015160001a905061377487828585613996565b945094505050506137ba565b6040835114156137b15760008060208501519150604085015190506137a6868383613aa3565b9350935050506137ba565b60006002915091505b9250929050565b600060048111156137d5576137d4615230565b5b8160048111156137e8576137e7615230565b5b14156137f357613993565b6001600481111561380757613806615230565b5b81600481111561381a57613819615230565b5b141561385b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138529061499d565b60405180910390fd5b6002600481111561386f5761386e615230565b5b81600481111561388257613881615230565b5b14156138c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ba906149dd565b60405180910390fd5b600360048111156138d7576138d6615230565b5b8160048111156138ea576138e9615230565b5b141561392b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161392290614b3d565b60405180910390fd5b60048081111561393e5761393d615230565b5b81600481111561395157613950615230565b5b1415613992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398990614bdd565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156139d1576000600391509150613a9a565b601b8560ff16141580156139e95750601c8560ff1614155b156139fb576000600491509150613a9a565b600060018787878760405160008152602001604052604051613a209493929190614936565b6020604051602081039080840390855afa158015613a42573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613a9157600060019250925050613a9a565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613ae387828885613996565b935093505050935093915050565b828054613afd906150bd565b90600052602060002090601f016020900481019282613b1f5760008555613b66565b82601f10613b3857805160ff1916838001178555613b66565b82800160010185558215613b66579182015b82811115613b65578251825591602001919060010190613b4a565b5b509050613b739190613b77565b5090565b5b80821115613b90576000816000905550600101613b78565b5090565b6000613ba7613ba284614dfd565b614dd8565b905082815260208101848484011115613bc357613bc261532a565b5b613bce84828561507b565b509392505050565b6000613be9613be484614e2e565b614dd8565b905082815260208101848484011115613c0557613c0461532a565b5b613c1084828561507b565b509392505050565b600081359050613c2781615b4f565b92915050565b60008083601f840112613c4357613c42615320565b5b8235905067ffffffffffffffff811115613c6057613c5f61531b565b5b602083019150836020820283011115613c7c57613c7b615325565b5b9250929050565b600081359050613c9281615b66565b92915050565b600081359050613ca781615b7d565b92915050565b600081359050613cbc81615b94565b92915050565b600081519050613cd181615b94565b92915050565b60008083601f840112613ced57613cec615320565b5b8235905067ffffffffffffffff811115613d0a57613d0961531b565b5b602083019150836001820283011115613d2657613d25615325565b5b9250929050565b600082601f830112613d4257613d41615320565b5b8135613d52848260208601613b94565b91505092915050565b600082601f830112613d7057613d6f615320565b5b8135613d80848260208601613bd6565b91505092915050565b600081359050613d9881615bab565b92915050565b600060208284031215613db457613db3615334565b5b6000613dc284828501613c18565b91505092915050565b60008060408385031215613de257613de1615334565b5b6000613df085828601613c18565b9250506020613e0185828601613c18565b9150509250929050565b600080600060608486031215613e2457613e23615334565b5b6000613e3286828701613c18565b9350506020613e4386828701613c18565b9250506040613e5486828701613d89565b9150509250925092565b60008060008060808587031215613e7857613e77615334565b5b6000613e8687828801613c18565b9450506020613e9787828801613c18565b9350506040613ea887828801613d89565b925050606085013567ffffffffffffffff811115613ec957613ec861532f565b5b613ed587828801613d2d565b91505092959194509250565b60008060408385031215613ef857613ef7615334565b5b6000613f0685828601613c18565b9250506020613f1785828601613c83565b9150509250929050565b60008060408385031215613f3857613f37615334565b5b6000613f4685828601613c18565b9250506020613f5785828601613d89565b9150509250929050565b600060208284031215613f7757613f76615334565b5b6000613f8584828501613c83565b91505092915050565b600060208284031215613fa457613fa3615334565b5b6000613fb284828501613c98565b91505092915050565b600060208284031215613fd157613fd0615334565b5b6000613fdf84828501613cad565b91505092915050565b600060208284031215613ffe57613ffd615334565b5b600061400c84828501613cc2565b91505092915050565b60006020828403121561402b5761402a615334565b5b600082013567ffffffffffffffff8111156140495761404861532f565b5b61405584828501613d5b565b91505092915050565b60006020828403121561407457614073615334565b5b600061408284828501613d89565b91505092915050565b6000806000604084860312156140a4576140a3615334565b5b60006140b286828701613d89565b935050602084013567ffffffffffffffff8111156140d3576140d261532f565b5b6140df86828701613c2d565b92509250509250925092565b60008060006040848603121561410457614103615334565b5b600061411286828701613d89565b935050602084013567ffffffffffffffff8111156141335761413261532f565b5b61413f86828701613cd7565b92509250509250925092565b60006141578383614765565b60208301905092915050565b61416c81614ff0565b82525050565b61418361417e82614ff0565b615169565b82525050565b600061419482614e6f565b61419e8185614e9d565b93506141a983614e5f565b8060005b838110156141da5781516141c1888261414b565b97506141cc83614e90565b9250506001810190506141ad565b5085935050505092915050565b6141f081615002565b82525050565b6141ff8161500e565b82525050565b6142166142118261500e565b61517b565b82525050565b600061422782614e7a565b6142318185614eae565b935061424181856020860161508a565b61424a81615339565b840191505092915050565b600061426082614e85565b61426a8185614ebf565b935061427a81856020860161508a565b61428381615339565b840191505092915050565b600061429982614e85565b6142a38185614ed0565b93506142b381856020860161508a565b80840191505092915050565b60006142cc601883614ebf565b91506142d782615357565b602082019050919050565b60006142ef601383614ebf565b91506142fa82615380565b602082019050919050565b6000614312601f83614ebf565b915061431d826153a9565b602082019050919050565b6000614335601c83614ed0565b9150614340826153d2565b601c82019050919050565b6000614358602b83614ebf565b9150614363826153fb565b604082019050919050565b600061437b603283614ebf565b91506143868261544a565b604082019050919050565b600061439e600e83614ebf565b91506143a982615499565b602082019050919050565b60006143c1602683614ebf565b91506143cc826154c2565b604082019050919050565b60006143e4601c83614ebf565b91506143ef82615511565b602082019050919050565b6000614407601983614ebf565b91506144128261553a565b602082019050919050565b600061442a601683614ebf565b915061443582615563565b602082019050919050565b600061444d602483614ebf565b91506144588261558c565b604082019050919050565b6000614470601983614ebf565b915061447b826155db565b602082019050919050565b6000614493601a83614ebf565b915061449e82615604565b602082019050919050565b60006144b6602283614ebf565b91506144c18261562d565b604082019050919050565b60006144d9602c83614ebf565b91506144e48261567c565b604082019050919050565b60006144fc603883614ebf565b9150614507826156cb565b604082019050919050565b600061451f602a83614ebf565b915061452a8261571a565b604082019050919050565b6000614542602983614ebf565b915061454d82615769565b604082019050919050565b6000614565602283614ebf565b9150614570826157b8565b604082019050919050565b6000614588601783614ebf565b915061459382615807565b602082019050919050565b60006145ab602083614ebf565b91506145b682615830565b602082019050919050565b60006145ce601983614ebf565b91506145d982615859565b602082019050919050565b60006145f1602c83614ebf565b91506145fc82615882565b604082019050919050565b6000614614602083614ebf565b915061461f826158d1565b602082019050919050565b6000614637602983614ebf565b9150614642826158fa565b604082019050919050565b600061465a602f83614ebf565b915061466582615949565b604082019050919050565b600061467d602183614ebf565b915061468882615998565b604082019050919050565b60006146a0601683614ebf565b91506146ab826159e7565b602082019050919050565b60006146c3601583614ebf565b91506146ce82615a10565b602082019050919050565b60006146e6601983614ebf565b91506146f182615a39565b602082019050919050565b6000614709603183614ebf565b915061471482615a62565b604082019050919050565b600061472c602c83614ebf565b915061473782615ab1565b604082019050919050565b600061474f602f83614ebf565b915061475a82615b00565b604082019050919050565b61476e81615064565b82525050565b61477d81615064565b82525050565b61479461478f82615064565b615197565b82525050565b6147a38161506e565b82525050565b60006147b58284614172565b60148201915081905092915050565b60006147d08285614172565b6014820191506147e08284614783565b6020820191508190509392505050565b60006147fc8285614205565b60208201915061480c8284614205565b6020820191508190509392505050565b6000614828828561428e565b9150614834828461428e565b91508190509392505050565b600061484b82614328565b91506148578284614205565b60208201915081905092915050565b60006148728285614783565b6020820191506148828284614783565b6020820191508190509392505050565b60006020820190506148a76000830184614163565b92915050565b60006080820190506148c26000830187614163565b6148cf6020830186614163565b6148dc6040830185614774565b81810360608301526148ee818461421c565b905095945050505050565b600060208201905081810360008301526149138184614189565b905092915050565b600060208201905061493060008301846141e7565b92915050565b600060808201905061494b60008301876141f6565b614958602083018661479a565b61496560408301856141f6565b61497260608301846141f6565b95945050505050565b600060208201905081810360008301526149958184614255565b905092915050565b600060208201905081810360008301526149b6816142bf565b9050919050565b600060208201905081810360008301526149d6816142e2565b9050919050565b600060208201905081810360008301526149f681614305565b9050919050565b60006020820190508181036000830152614a168161434b565b9050919050565b60006020820190508181036000830152614a368161436e565b9050919050565b60006020820190508181036000830152614a5681614391565b9050919050565b60006020820190508181036000830152614a76816143b4565b9050919050565b60006020820190508181036000830152614a96816143d7565b9050919050565b60006020820190508181036000830152614ab6816143fa565b9050919050565b60006020820190508181036000830152614ad68161441d565b9050919050565b60006020820190508181036000830152614af681614440565b9050919050565b60006020820190508181036000830152614b1681614463565b9050919050565b60006020820190508181036000830152614b3681614486565b9050919050565b60006020820190508181036000830152614b56816144a9565b9050919050565b60006020820190508181036000830152614b76816144cc565b9050919050565b60006020820190508181036000830152614b96816144ef565b9050919050565b60006020820190508181036000830152614bb681614512565b9050919050565b60006020820190508181036000830152614bd681614535565b9050919050565b60006020820190508181036000830152614bf681614558565b9050919050565b60006020820190508181036000830152614c168161457b565b9050919050565b60006020820190508181036000830152614c368161459e565b9050919050565b60006020820190508181036000830152614c56816145c1565b9050919050565b60006020820190508181036000830152614c76816145e4565b9050919050565b60006020820190508181036000830152614c9681614607565b9050919050565b60006020820190508181036000830152614cb68161462a565b9050919050565b60006020820190508181036000830152614cd68161464d565b9050919050565b60006020820190508181036000830152614cf681614670565b9050919050565b60006020820190508181036000830152614d1681614693565b9050919050565b60006020820190508181036000830152614d36816146b6565b9050919050565b60006020820190508181036000830152614d56816146d9565b9050919050565b60006020820190508181036000830152614d76816146fc565b9050919050565b60006020820190508181036000830152614d968161471f565b9050919050565b60006020820190508181036000830152614db681614742565b9050919050565b6000602082019050614dd26000830184614774565b92915050565b6000614de2614df3565b9050614dee82826150ef565b919050565b6000604051905090565b600067ffffffffffffffff821115614e1857614e176152ec565b5b614e2182615339565b9050602081019050919050565b600067ffffffffffffffff821115614e4957614e486152ec565b5b614e5282615339565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ee682615064565b9150614ef183615064565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f2657614f256151d2565b5b828201905092915050565b6000614f3c82615064565b9150614f4783615064565b925082614f5757614f56615201565b5b828204905092915050565b6000614f6d82615064565b9150614f7883615064565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614fb157614fb06151d2565b5b828202905092915050565b6000614fc782615064565b9150614fd283615064565b925082821015614fe557614fe46151d2565b5b828203905092915050565b6000614ffb82615044565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156150a857808201518184015260208101905061508d565b838111156150b7576000848401525b50505050565b600060028204905060018216806150d557607f821691505b602082108114156150e9576150e861525f565b5b50919050565b6150f882615339565b810181811067ffffffffffffffff82111715615117576151166152ec565b5b80604052505050565b600061512b82615064565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561515e5761515d6151d2565b5b600182019050919050565b600061517482615185565b9050919050565b6000819050919050565b60006151908261534a565b9050919050565b6000819050919050565b60006151ac82615064565b91506151b783615064565b9250826151c7576151c6615201565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f5365656420697320616c72656164792073657400000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d6178206d696e7420706572206163636f756e74206973203400000000000000600082015250565b7f556e7665726966696564207472616e73616374696f6e00000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f41646472657373206973206e6f742077686974656c6973746564000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565647320726573657276656420737570706c79000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d6178206d696e7420706572206163636f756e74206973203200000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f576974686472617720756e7375636365737366756c0000000000000000000000600082015250565b7f45746865722073656e74206973206e6f7420636f727265637400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f50757263686173652063616e6e6f742062652063616c6c65642066726f6d206160008201527f6e6f7468657220636f6e74726163740000000000000000000000000000000000602082015250565b615b5881614ff0565b8114615b6357600080fd5b50565b615b6f81615002565b8114615b7a57600080fd5b50565b615b868161500e565b8114615b9157600080fd5b50565b615b9d81615018565b8114615ba857600080fd5b50565b615bb481615064565b8114615bbf57600080fd5b5056fea2646970667358221220f59c37d6559790e3fcdb6e47cce1f8fe6316b849868f21238adf8e65ad84537564736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001a68747470733a2f2f7777772e64696e6f6261626965732e696f2f000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://www.dinobabies.io/
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001a
Arg [2] : 68747470733a2f2f7777772e64696e6f6261626965732e696f2f000000000000
Deployed Bytecode Sourcemap
56222:4859:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47470:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34964:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36523:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60078:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36046:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60595:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48110:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59973:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37273:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47778:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56453:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60929:149;;;;;;;;;;;;;:::i;:::-;;37683:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59631:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48300:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60401:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60177:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56422:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34658:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34388:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55331:103;;;;;;;;;;;;;:::i;:::-;;60290:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54680:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60504:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35133:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36816:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56572:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56493:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37939:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56307:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35308:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59239:386;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58084:1036;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56276:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57123:955;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60721:202;;;;;;;;;;;;;:::i;:::-;;37042:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55589:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47470:224;47572:4;47611:35;47596:50;;;:11;:50;;;;:90;;;;47650:36;47674:11;47650:23;:36::i;:::-;47596:90;47589:97;;47470:224;;;:::o;34964:100::-;35018:13;35051:5;35044:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34964:100;:::o;36523:221::-;36599:7;36627:16;36635:7;36627;:16::i;:::-;36619:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36712:15;:24;36728:7;36712:24;;;;;;;;;;;;;;;;;;;;;36705:31;;36523:221;;;:::o;60078:93::-;54911:12;:10;:12::i;:::-;54900:23;;:7;:5;:7::i;:::-;:23;;;54892:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60159:6:::1;60140:16;;:25;;;;;;;;;;;;;;;;;;60078:93:::0;:::o;36046:411::-;36127:13;36143:23;36158:7;36143:14;:23::i;:::-;36127:39;;36191:5;36185:11;;:2;:11;;;;36177:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;36285:5;36269:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;36294:37;36311:5;36318:12;:10;:12::i;:::-;36294:16;:37::i;:::-;36269:62;36247:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;36428:21;36437:2;36441:7;36428:8;:21::i;:::-;36116:341;36046:411;;:::o;60595:120::-;54911:12;:10;:12::i;:::-;54900:23;;:7;:5;:7::i;:::-;:23;;;54892:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60694:15:::1;60677:14;:32;;;;;;;;;;;;:::i;:::-;;60595:120:::0;:::o;48110:113::-;48171:7;48198:10;:17;;;;48191:24;;48110:113;:::o;59973:99::-;54911:12;:10;:12::i;:::-;54900:23;;:7;:5;:7::i;:::-;:23;;;54892:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60060:6:::1;60038:19;;:28;;;;;;;;;;;;;;;;;;59973:99:::0;:::o;37273:339::-;37468:41;37487:12;:10;:12::i;:::-;37501:7;37468:18;:41::i;:::-;37460:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;37576:28;37586:4;37592:2;37596:7;37576:9;:28::i;:::-;37273:339;;;:::o;47778:256::-;47875:7;47911:23;47928:5;47911:16;:23::i;:::-;47903:5;:31;47895:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;48000:12;:19;48013:5;48000:19;;;;;;;;;;;;;;;:26;48020:5;48000:26;;;;;;;;;;;;47993:33;;47778:256;;;;:::o;56453:35::-;;;;;;;;;;;;;:::o;60929:149::-;54911:12;:10;:12::i;:::-;54900:23;;:7;:5;:7::i;:::-;:23;;;54892:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60997:7:::1;:5;:7::i;:::-;60989:21;;:44;61011:21;60989:44;;;;;;;;;;;;;;;;;;;;;;;60973:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;60929:149::o:0;37683:185::-;37821:39;37838:4;37844:2;37848:7;37821:39;;;;;;;;;;;;:16;:39::i;:::-;37683:185;;;:::o;59631:336::-;59707:16;59735:18;59756:16;59766:5;59756:9;:16::i;:::-;59735:37;;59779:25;59821:10;59807:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59779:53;;59846:9;59841:97;59861:10;59857:1;:14;59841:97;;;59901:29;59921:5;59928:1;59901:19;:29::i;:::-;59887:8;59896:1;59887:11;;;;;;;;:::i;:::-;;;;;;;:43;;;;;59873:3;;;;;:::i;:::-;;;;59841:97;;;;59953:8;59946:15;;;;59631:336;;;:::o;48300:233::-;48375:7;48411:30;:28;:30::i;:::-;48403:5;:38;48395:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;48508:10;48519:5;48508:17;;;;;;;;:::i;:::-;;;;;;;;;;48501:24;;48300:233;;;:::o;60401:97::-;54911:12;:10;:12::i;:::-;54900:23;;:7;:5;:7::i;:::-;:23;;;54892:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60480:12:::1;60468:9;;:24;;;;;;;;;;;;;;;;;;60401:97:::0;:::o;60177:107::-;54911:12;:10;:12::i;:::-;54900:23;;:7;:5;:7::i;:::-;:23;;;54892:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60265:13:::1;60250:12;:28;;;;;;;;;;;;:::i;:::-;;60177:107:::0;:::o;56422:24::-;;;;:::o;34658:239::-;34730:7;34750:13;34766:7;:16;34774:7;34766:16;;;;;;;;;;;;;;;;;;;;;34750:32;;34818:1;34801:19;;:5;:19;;;;34793:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34884:5;34877:12;;;34658:239;;;:::o;34388:208::-;34460:7;34505:1;34488:19;;:5;:19;;;;34480:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;34572:9;:16;34582:5;34572:16;;;;;;;;;;;;;;;;34565:23;;34388:208;;;:::o;55331:103::-;54911:12;:10;:12::i;:::-;54900:23;;:7;:5;:7::i;:::-;:23;;;54892:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55396:30:::1;55423:1;55396:18;:30::i;:::-;55331:103::o:0;60290:105::-;54911:12;:10;:12::i;:::-;54900:23;;:7;:5;:7::i;:::-;:23;;;54892:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60375:14:::1;60361:11;:28;;;;60290:105:::0;:::o;54680:87::-;54726:7;54753:6;;;;;;;;;;;54746:13;;54680:87;:::o;60504:85::-;54911:12;:10;:12::i;:::-;54900:23;;:7;:5;:7::i;:::-;:23;;;54892:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60574:9:::1;60565:6;:18;;;;60504:85:::0;:::o;35133:104::-;35189:13;35222:7;35215:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35133:104;:::o;36816:155::-;36911:52;36930:12;:10;:12::i;:::-;36944:8;36954;36911:18;:52::i;:::-;36816:155;;:::o;56572:46::-;;;;;;;;;;;;;;;;;:::o;56493:38::-;;;;;;;;;;;;;:::o;37939:328::-;38114:41;38133:12;:10;:12::i;:::-;38147:7;38114:18;:41::i;:::-;38106:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;38220:39;38234:4;38240:2;38244:7;38253:5;38220:13;:39::i;:::-;37939:328;;;;:::o;56307:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35308:334::-;35381:13;35415:16;35423:7;35415;:16::i;:::-;35407:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;35496:21;35520:10;:8;:10::i;:::-;35496:34;;35572:1;35554:7;35548:21;:25;:86;;;;;;;;;;;;;;;;;35600:7;35609:18;:7;:16;:18::i;:::-;35583:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35548:86;35541:93;;;35308:334;;;:::o;59239:386::-;54911:12;:10;:12::i;:::-;54900:23;;:7;:5;:7::i;:::-;:23;;;54892:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59340:9:::1;;59329:7;:20;;59321:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;59414:7;59405:6;;:16;;;;:::i;:::-;59392:9;:29;;59384:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;59460:19;59482:13;:11;:13::i;:::-;59460:35;;59509:9;59521:1;59509:13;;59504:87;59529:7;59524:1;:12;59504:87;;59552:31;59562:3;59581:1;59567:11;:15;;;;:::i;:::-;59552:9;:31::i;:::-;59538:3;;;;;:::i;:::-;;;;59504:87;;;;59612:7;59599:9;;:20;;;;;;;:::i;:::-;;;;;;;;59314:311;59239:386:::0;;:::o;58084:1036::-;58191:19;58213:13;:11;:13::i;:::-;58191:35;;58244:19;;;;;;;;;;;58243:20;58235:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;58318:10;58305:23;;:9;:23;;;58289:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;58437:9;;58430:4;:16;;;;:::i;:::-;58422:4;58408:11;:18;;;;:::i;:::-;:38;;58400:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58523:1;58516:4;58488:11;:25;58500:12;:10;:12::i;:::-;58488:25;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:36;58480:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;58591:4;58582:6;;:13;;;;:::i;:::-;58569:9;:26;;58561:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;58634:12;58676;:10;:12::i;:::-;58659:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;58649:41;;;;;;58634:56;;58715:51;58734:12;;58715:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58748:11;;58761:4;58715:18;:51::i;:::-;58699:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;58848:4;58819:11;:25;58831:12;:10;:12::i;:::-;58819:25;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;58866:9;58878:1;58866:13;;58861:93;58886:4;58881:1;:9;58861:93;;58906:40;58916:12;:10;:12::i;:::-;58944:1;58930:11;:15;;;;:::i;:::-;58906:9;:40::i;:::-;58892:3;;;;;:::i;:::-;;;;58861:93;;;;58975:1;58966:5;;:10;:33;;;;;58995:4;58980:11;:19;58966:33;58962:153;;;59063:16;59081:15;59046:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59036:62;;;;;;59018:89;;59010:5;:97;;;;58962:153;58184:936;;58084:1036;;;:::o;56276:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57123:955::-;57202:19;57224:13;:11;:13::i;:::-;57202:35;;57255:16;;;;;;;;;;;57254:17;57246:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;57326:10;57313:23;;:9;:23;;;57297:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;57445:9;;57438:4;:16;;;;:::i;:::-;57430:4;57416:11;:18;;;;:::i;:::-;:38;;57408:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;57531:1;57524:4;57496:11;:25;57508:12;:10;:12::i;:::-;57496:25;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:36;57488:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;57599:4;57590:6;;:13;;;;:::i;:::-;57577:9;:26;;57569:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;57642:14;57659:46;57674:12;:10;:12::i;:::-;57688:4;57694:10;;57659:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:14;:46::i;:::-;57642:63;;57732:9;;;;;;;;;;;57722:19;;:6;:19;;;57714:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57806:4;57777:11;:25;57789:12;:10;:12::i;:::-;57777:25;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;57824:9;57836:1;57824:13;;57819:93;57844:4;57839:1;:9;57819:93;;57864:40;57874:12;:10;:12::i;:::-;57902:1;57888:11;:15;;;;:::i;:::-;57864:9;:40::i;:::-;57850:3;;;;;:::i;:::-;;;;57819:93;;;;57933:1;57924:5;;:10;:33;;;;;57953:4;57938:11;:19;57924:33;57920:153;;;58021:16;58039:15;58004:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57994:62;;;;;;57976:89;;57968:5;:97;;;;57920:153;57195:883;;57123:955;;;:::o;60721:202::-;54911:12;:10;:12::i;:::-;54900:23;;:7;:5;:7::i;:::-;:23;;;54892:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60790:1:::1;60781:5;;:10;60773:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;60875:16;60893:15;60858:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60848:62;;;;;;60832:85;;60824:5;:93;;;;60721:202::o:0;37042:164::-;37139:4;37163:18;:25;37182:5;37163:25;;;;;;;;;;;;;;;:35;37189:8;37163:35;;;;;;;;;;;;;;;;;;;;;;;;;37156:42;;37042:164;;;;:::o;55589:201::-;54911:12;:10;:12::i;:::-;54900:23;;:7;:5;:7::i;:::-;:23;;;54892:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55698:1:::1;55678:22;;:8;:22;;;;55670:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55754:28;55773:8;55754:18;:28::i;:::-;55589:201:::0;:::o;34019:305::-;34121:4;34173:25;34158:40;;;:11;:40;;;;:105;;;;34230:33;34215:48;;;:11;:48;;;;34158:105;:158;;;;34280:36;34304:11;34280:23;:36::i;:::-;34158:158;34138:178;;34019:305;;;:::o;39777:127::-;39842:4;39894:1;39866:30;;:7;:16;39874:7;39866:16;;;;;;;;;;;;;;;;;;;;;:30;;;;39859:37;;39777:127;;;:::o;32413:98::-;32466:7;32493:10;32486:17;;32413:98;:::o;43759:174::-;43861:2;43834:15;:24;43850:7;43834:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43917:7;43913:2;43879:46;;43888:23;43903:7;43888:14;:23::i;:::-;43879:46;;;;;;;;;;;;43759:174;;:::o;40071:348::-;40164:4;40189:16;40197:7;40189;:16::i;:::-;40181:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;40265:13;40281:23;40296:7;40281:14;:23::i;:::-;40265:39;;40334:5;40323:16;;:7;:16;;;:51;;;;40367:7;40343:31;;:20;40355:7;40343:11;:20::i;:::-;:31;;;40323:51;:87;;;;40378:32;40395:5;40402:7;40378:16;:32::i;:::-;40323:87;40315:96;;;40071:348;;;;:::o;43063:578::-;43222:4;43195:31;;:23;43210:7;43195:14;:23::i;:::-;:31;;;43187:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;43305:1;43291:16;;:2;:16;;;;43283:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;43361:39;43382:4;43388:2;43392:7;43361:20;:39::i;:::-;43465:29;43482:1;43486:7;43465:8;:29::i;:::-;43526:1;43507:9;:15;43517:4;43507:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;43555:1;43538:9;:13;43548:2;43538:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;43586:2;43567:7;:16;43575:7;43567:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;43625:7;43621:2;43606:27;;43615:4;43606:27;;;;;;;;;;;;43063:578;;;:::o;55950:191::-;56024:16;56043:6;;;;;;;;;;;56024:25;;56069:8;56060:6;;:17;;;;;;;;;;;;;;;;;;56124:8;56093:40;;56114:8;56093:40;;;;;;;;;;;;56013:128;55950:191;:::o;44075:315::-;44230:8;44221:17;;:5;:17;;;;44213:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;44317:8;44279:18;:25;44298:5;44279:25;;;;;;;;;;;;;;;:35;44305:8;44279:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;44363:8;44341:41;;44356:5;44341:41;;;44373:8;44341:41;;;;;;:::i;:::-;;;;;;;;44075:315;;;:::o;39149:::-;39306:28;39316:4;39322:2;39326:7;39306:9;:28::i;:::-;39353:48;39376:4;39382:2;39386:7;39395:5;39353:22;:48::i;:::-;39345:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;39149:315;;;;:::o;59126:107::-;59186:13;59215:12;59208:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59126:107;:::o;20409:723::-;20465:13;20695:1;20686:5;:10;20682:53;;;20713:10;;;;;;;;;;;;;;;;;;;;;20682:53;20745:12;20760:5;20745:20;;20776:14;20801:78;20816:1;20808:4;:9;20801:78;;20834:8;;;;;:::i;:::-;;;;20865:2;20857:10;;;;;:::i;:::-;;;20801:78;;;20889:19;20921:6;20911:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20889:39;;20939:154;20955:1;20946:5;:10;20939:154;;20983:1;20973:11;;;;;:::i;:::-;;;21050:2;21042:5;:10;;;;:::i;:::-;21029:2;:24;;;;:::i;:::-;21016:39;;20999:6;21006;20999:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21079:2;21070:11;;;;;:::i;:::-;;;20939:154;;;21117:6;21103:21;;;;;20409:723;;;;:::o;40761:110::-;40837:26;40847:2;40851:7;40837:26;;;;;;;;;;;;:9;:26::i;:::-;40761:110;;:::o;18784:190::-;18909:4;18962;18933:25;18946:5;18953:4;18933:12;:25::i;:::-;:33;18926:40;;18784:190;;;;;:::o;56810:307::-;56933:7;56963:148;56987:94;57055:7;57064:4;57038:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57028:42;;;;;;56987:28;:94::i;:::-;57092:10;56963:13;:148::i;:::-;56949:162;;56810:307;;;;;:::o;10964:157::-;11049:4;11088:25;11073:40;;;:11;:40;;;;11066:47;;10964:157;;;:::o;49146:589::-;49290:45;49317:4;49323:2;49327:7;49290:26;:45::i;:::-;49368:1;49352:18;;:4;:18;;;49348:187;;;49387:40;49419:7;49387:31;:40::i;:::-;49348:187;;;49457:2;49449:10;;:4;:10;;;49445:90;;49476:47;49509:4;49515:7;49476:32;:47::i;:::-;49445:90;49348:187;49563:1;49549:16;;:2;:16;;;49545:183;;;49582:45;49619:7;49582:36;:45::i;:::-;49545:183;;;49655:4;49649:10;;:2;:10;;;49645:83;;49676:40;49704:2;49708:7;49676:27;:40::i;:::-;49645:83;49545:183;49146:589;;;:::o;44955:799::-;45110:4;45131:15;:2;:13;;;:15::i;:::-;45127:620;;;45183:2;45167:36;;;45204:12;:10;:12::i;:::-;45218:4;45224:7;45233:5;45167:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45163:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45426:1;45409:6;:13;:18;45405:272;;;45452:60;;;;;;;;;;:::i;:::-;;;;;;;;45405:272;45627:6;45621:13;45612:6;45608:2;45604:15;45597:38;45163:529;45300:41;;;45290:51;;;:6;:51;;;;45283:58;;;;;45127:620;45731:4;45724:11;;44955:799;;;;;;;:::o;41098:321::-;41228:18;41234:2;41238:7;41228:5;:18::i;:::-;41279:54;41310:1;41314:2;41318:7;41327:5;41279:22;:54::i;:::-;41257:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;41098:321;;;:::o;19336:701::-;19419:7;19439:20;19462:4;19439:27;;19482:9;19477:523;19501:5;:12;19497:1;:16;19477:523;;;19535:20;19558:5;19564:1;19558:8;;;;;;;;:::i;:::-;;;;;;;;19535:31;;19601:12;19585;:28;19581:408;;19755:12;19769;19738:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19728:55;;;;;;19713:70;;19581:408;;;19945:12;19959;19928:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19918:55;;;;;;19903:70;;19581:408;19520:480;19515:3;;;;;:::i;:::-;;;;19477:523;;;;20017:12;20010:19;;;19336:701;;;;:::o;30419:269::-;30488:7;30674:4;30621:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;30611:69;;;;;;30604:76;;30419:269;;;:::o;26570:231::-;26648:7;26669:17;26688:18;26710:27;26721:4;26727:9;26710:10;:27::i;:::-;26668:69;;;;26748:18;26760:5;26748:11;:18::i;:::-;26784:9;26777:16;;;;26570:231;;;;:::o;46326:126::-;;;;:::o;50458:164::-;50562:10;:17;;;;50535:15;:24;50551:7;50535:24;;;;;;;;;;;:44;;;;50590:10;50606:7;50590:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50458:164;:::o;51249:988::-;51515:22;51565:1;51540:22;51557:4;51540:16;:22::i;:::-;:26;;;;:::i;:::-;51515:51;;51577:18;51598:17;:26;51616:7;51598:26;;;;;;;;;;;;51577:47;;51745:14;51731:10;:28;51727:328;;51776:19;51798:12;:18;51811:4;51798:18;;;;;;;;;;;;;;;:34;51817:14;51798:34;;;;;;;;;;;;51776:56;;51882:11;51849:12;:18;51862:4;51849:18;;;;;;;;;;;;;;;:30;51868:10;51849:30;;;;;;;;;;;:44;;;;51999:10;51966:17;:30;51984:11;51966:30;;;;;;;;;;;:43;;;;51761:294;51727:328;52151:17;:26;52169:7;52151:26;;;;;;;;;;;52144:33;;;52195:12;:18;52208:4;52195:18;;;;;;;;;;;;;;;:34;52214:14;52195:34;;;;;;;;;;;52188:41;;;51330:907;;51249:988;;:::o;52532:1079::-;52785:22;52830:1;52810:10;:17;;;;:21;;;;:::i;:::-;52785:46;;52842:18;52863:15;:24;52879:7;52863:24;;;;;;;;;;;;52842:45;;53214:19;53236:10;53247:14;53236:26;;;;;;;;:::i;:::-;;;;;;;;;;53214:48;;53300:11;53275:10;53286;53275:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;53411:10;53380:15;:28;53396:11;53380:28;;;;;;;;;;;:41;;;;53552:15;:24;53568:7;53552:24;;;;;;;;;;;53545:31;;;53587:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52603:1008;;;52532:1079;:::o;50036:221::-;50121:14;50138:20;50155:2;50138:16;:20::i;:::-;50121:37;;50196:7;50169:12;:16;50182:2;50169:16;;;;;;;;;;;;;;;:24;50186:6;50169:24;;;;;;;;;;;:34;;;;50243:6;50214:17;:26;50232:7;50214:26;;;;;;;;;;;:35;;;;50110:147;50036:221;;:::o;820:387::-;880:4;1088:12;1155:7;1143:20;1135:28;;1198:1;1191:4;:8;1184:15;;;820:387;;;:::o;41755:382::-;41849:1;41835:16;;:2;:16;;;;41827:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;41908:16;41916:7;41908;:16::i;:::-;41907:17;41899:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;41970:45;41999:1;42003:2;42007:7;41970:20;:45::i;:::-;42045:1;42028:9;:13;42038:2;42028:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;42076:2;42057:7;:16;42065:7;42057:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;42121:7;42117:2;42096:33;;42113:1;42096:33;;;;;;;;;;;;41755:382;;:::o;24460:1308::-;24541:7;24550:12;24795:2;24775:9;:16;:22;24771:990;;;24814:9;24838;24862:7;25071:4;25060:9;25056:20;25050:27;25045:32;;25121:4;25110:9;25106:20;25100:27;25095:32;;25179:4;25168:9;25164:20;25158:27;25155:1;25150:36;25145:41;;25222:25;25233:4;25239:1;25242;25245;25222:10;:25::i;:::-;25215:32;;;;;;;;;24771:990;25289:2;25269:9;:16;:22;25265:496;;;25308:9;25332:10;25544:4;25533:9;25529:20;25523:27;25518:32;;25595:4;25584:9;25580:20;25574:27;25568:33;;25637:23;25648:4;25654:1;25657:2;25637:10;:23::i;:::-;25630:30;;;;;;;;25265:496;25709:1;25713:35;25693:56;;;;24460:1308;;;;;;:::o;22731:643::-;22809:20;22800:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;22796:571;;;22846:7;;22796:571;22907:29;22898:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;22894:473;;;22953:34;;;;;;;;;;:::i;:::-;;;;;;;;22894:473;23018:35;23009:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;23005:362;;;23070:41;;;;;;;;;;:::i;:::-;;;;;;;;23005:362;23142:30;23133:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;23129:238;;;23189:44;;;;;;;;;;:::i;:::-;;;;;;;;23129:238;23264:30;23255:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;23251:116;;;23311:44;;;;;;;;;;:::i;:::-;;;;;;;;23251:116;22731:643;;:::o;28069:1632::-;28200:7;28209:12;29134:66;29129:1;29121:10;;:79;29117:163;;;29233:1;29237:30;29217:51;;;;;;29117:163;29299:2;29294:1;:7;;;;:18;;;;;29310:2;29305:1;:7;;;;29294:18;29290:102;;;29345:1;29349:30;29329:51;;;;;;29290:102;29489:14;29506:24;29516:4;29522:1;29525;29528;29506:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29489:41;;29563:1;29545:20;;:6;:20;;;29541:103;;;29598:1;29602:29;29582:50;;;;;;;29541:103;29664:6;29672:20;29656:37;;;;;28069:1632;;;;;;;;:::o;27064:391::-;27178:7;27187:12;27212:9;27232:7;27287:66;27283:2;27279:75;27274:80;;27391:2;27386;27381:3;27377:12;27373:21;27368:26;;27422:25;27433:4;27439:1;27442;27445;27422:10;:25::i;:::-;27415:32;;;;;;27064:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::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;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:552::-;2221:8;2231:6;2281:3;2274:4;2266:6;2262:17;2258:27;2248:122;;2289:79;;:::i;:::-;2248:122;2402:6;2389:20;2379:30;;2432:18;2424:6;2421:30;2418:117;;;2454:79;;:::i;:::-;2418:117;2568:4;2560:6;2556:17;2544:29;;2622:3;2614:4;2606:6;2602:17;2592:8;2588:32;2585:41;2582:128;;;2629:79;;:::i;:::-;2582:128;2164:552;;;;;:::o;2735:338::-;2790:5;2839:3;2832:4;2824:6;2820:17;2816:27;2806:122;;2847:79;;:::i;:::-;2806:122;2964:6;2951:20;2989:78;3063:3;3055:6;3048:4;3040:6;3036:17;2989:78;:::i;:::-;2980:87;;2796:277;2735:338;;;;:::o;3093:340::-;3149:5;3198:3;3191:4;3183:6;3179:17;3175:27;3165:122;;3206:79;;:::i;:::-;3165:122;3323:6;3310:20;3348:79;3423:3;3415:6;3408:4;3400:6;3396:17;3348:79;:::i;:::-;3339:88;;3155:278;3093:340;;;;:::o;3439:139::-;3485:5;3523:6;3510:20;3501:29;;3539:33;3566:5;3539:33;:::i;:::-;3439:139;;;;:::o;3584:329::-;3643:6;3692:2;3680:9;3671:7;3667:23;3663:32;3660:119;;;3698:79;;:::i;:::-;3660:119;3818:1;3843:53;3888:7;3879:6;3868:9;3864:22;3843:53;:::i;:::-;3833:63;;3789:117;3584:329;;;;:::o;3919:474::-;3987:6;3995;4044:2;4032:9;4023:7;4019:23;4015:32;4012:119;;;4050:79;;:::i;:::-;4012:119;4170:1;4195:53;4240:7;4231:6;4220:9;4216:22;4195:53;:::i;:::-;4185:63;;4141:117;4297:2;4323:53;4368:7;4359:6;4348:9;4344:22;4323:53;:::i;:::-;4313:63;;4268:118;3919:474;;;;;:::o;4399:619::-;4476:6;4484;4492;4541:2;4529:9;4520:7;4516:23;4512:32;4509:119;;;4547:79;;:::i;:::-;4509:119;4667:1;4692:53;4737:7;4728:6;4717:9;4713:22;4692:53;:::i;:::-;4682:63;;4638:117;4794:2;4820:53;4865:7;4856:6;4845:9;4841:22;4820:53;:::i;:::-;4810:63;;4765:118;4922:2;4948:53;4993:7;4984:6;4973:9;4969:22;4948:53;:::i;:::-;4938:63;;4893:118;4399:619;;;;;:::o;5024:943::-;5119:6;5127;5135;5143;5192:3;5180:9;5171:7;5167:23;5163:33;5160:120;;;5199:79;;:::i;:::-;5160:120;5319:1;5344:53;5389:7;5380:6;5369:9;5365:22;5344:53;:::i;:::-;5334:63;;5290:117;5446:2;5472:53;5517:7;5508:6;5497:9;5493:22;5472:53;:::i;:::-;5462:63;;5417:118;5574:2;5600:53;5645:7;5636:6;5625:9;5621:22;5600:53;:::i;:::-;5590:63;;5545:118;5730:2;5719:9;5715:18;5702:32;5761:18;5753:6;5750:30;5747:117;;;5783:79;;:::i;:::-;5747:117;5888:62;5942:7;5933:6;5922:9;5918:22;5888:62;:::i;:::-;5878:72;;5673:287;5024:943;;;;;;;:::o;5973:468::-;6038:6;6046;6095:2;6083:9;6074:7;6070:23;6066:32;6063:119;;;6101:79;;:::i;:::-;6063:119;6221:1;6246:53;6291:7;6282:6;6271:9;6267:22;6246:53;:::i;:::-;6236:63;;6192:117;6348:2;6374:50;6416:7;6407:6;6396:9;6392:22;6374:50;:::i;:::-;6364:60;;6319:115;5973:468;;;;;:::o;6447:474::-;6515:6;6523;6572:2;6560:9;6551:7;6547:23;6543:32;6540:119;;;6578:79;;:::i;:::-;6540:119;6698:1;6723:53;6768:7;6759:6;6748:9;6744:22;6723:53;:::i;:::-;6713:63;;6669:117;6825:2;6851:53;6896:7;6887:6;6876:9;6872:22;6851:53;:::i;:::-;6841:63;;6796:118;6447:474;;;;;:::o;6927:323::-;6983:6;7032:2;7020:9;7011:7;7007:23;7003:32;7000:119;;;7038:79;;:::i;:::-;7000:119;7158:1;7183:50;7225:7;7216:6;7205:9;7201:22;7183:50;:::i;:::-;7173:60;;7129:114;6927:323;;;;:::o;7256:329::-;7315:6;7364:2;7352:9;7343:7;7339:23;7335:32;7332:119;;;7370:79;;:::i;:::-;7332:119;7490:1;7515:53;7560:7;7551:6;7540:9;7536:22;7515:53;:::i;:::-;7505:63;;7461:117;7256:329;;;;:::o;7591:327::-;7649:6;7698:2;7686:9;7677:7;7673:23;7669:32;7666:119;;;7704:79;;:::i;:::-;7666:119;7824:1;7849:52;7893:7;7884:6;7873:9;7869:22;7849:52;:::i;:::-;7839:62;;7795:116;7591:327;;;;:::o;7924:349::-;7993:6;8042:2;8030:9;8021:7;8017:23;8013:32;8010:119;;;8048:79;;:::i;:::-;8010:119;8168:1;8193:63;8248:7;8239:6;8228:9;8224:22;8193:63;:::i;:::-;8183:73;;8139:127;7924:349;;;;:::o;8279:509::-;8348:6;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8551:1;8540:9;8536:17;8523:31;8581:18;8573:6;8570:30;8567:117;;;8603:79;;:::i;:::-;8567:117;8708:63;8763:7;8754:6;8743:9;8739:22;8708:63;:::i;:::-;8698:73;;8494:287;8279:509;;;;:::o;8794:329::-;8853:6;8902:2;8890:9;8881:7;8877:23;8873:32;8870:119;;;8908:79;;:::i;:::-;8870:119;9028:1;9053:53;9098:7;9089:6;9078:9;9074:22;9053:53;:::i;:::-;9043:63;;8999:117;8794:329;;;;:::o;9129:704::-;9224:6;9232;9240;9289:2;9277:9;9268:7;9264:23;9260:32;9257:119;;;9295:79;;:::i;:::-;9257:119;9415:1;9440:53;9485:7;9476:6;9465:9;9461:22;9440:53;:::i;:::-;9430:63;;9386:117;9570:2;9559:9;9555:18;9542:32;9601:18;9593:6;9590:30;9587:117;;;9623:79;;:::i;:::-;9587:117;9736:80;9808:7;9799:6;9788:9;9784:22;9736:80;:::i;:::-;9718:98;;;;9513:313;9129:704;;;;;:::o;9839:672::-;9918:6;9926;9934;9983:2;9971:9;9962:7;9958:23;9954:32;9951:119;;;9989:79;;:::i;:::-;9951:119;10109:1;10134:53;10179:7;10170:6;10159:9;10155:22;10134:53;:::i;:::-;10124:63;;10080:117;10264:2;10253:9;10249:18;10236:32;10295:18;10287:6;10284:30;10281:117;;;10317:79;;:::i;:::-;10281:117;10430:64;10486:7;10477:6;10466:9;10462:22;10430:64;:::i;:::-;10412:82;;;;10207:297;9839:672;;;;;:::o;10517:179::-;10586:10;10607:46;10649:3;10641:6;10607:46;:::i;:::-;10685:4;10680:3;10676:14;10662:28;;10517:179;;;;:::o;10702:118::-;10789:24;10807:5;10789:24;:::i;:::-;10784:3;10777:37;10702:118;;:::o;10826:157::-;10931:45;10951:24;10969:5;10951:24;:::i;:::-;10931:45;:::i;:::-;10926:3;10919:58;10826:157;;:::o;11019:732::-;11138:3;11167:54;11215:5;11167:54;:::i;:::-;11237:86;11316:6;11311:3;11237:86;:::i;:::-;11230:93;;11347:56;11397:5;11347:56;:::i;:::-;11426:7;11457:1;11442:284;11467:6;11464:1;11461:13;11442:284;;;11543:6;11537:13;11570:63;11629:3;11614:13;11570:63;:::i;:::-;11563:70;;11656:60;11709:6;11656:60;:::i;:::-;11646:70;;11502:224;11489:1;11486;11482:9;11477:14;;11442:284;;;11446:14;11742:3;11735:10;;11143:608;;;11019:732;;;;:::o;11757:109::-;11838:21;11853:5;11838:21;:::i;:::-;11833:3;11826:34;11757:109;;:::o;11872:118::-;11959:24;11977:5;11959:24;:::i;:::-;11954:3;11947:37;11872:118;;:::o;11996:157::-;12101:45;12121:24;12139:5;12121:24;:::i;:::-;12101:45;:::i;:::-;12096:3;12089:58;11996:157;;:::o;12159:360::-;12245:3;12273:38;12305:5;12273:38;:::i;:::-;12327:70;12390:6;12385:3;12327:70;:::i;:::-;12320:77;;12406:52;12451:6;12446:3;12439:4;12432:5;12428:16;12406:52;:::i;:::-;12483:29;12505:6;12483:29;:::i;:::-;12478:3;12474:39;12467:46;;12249:270;12159:360;;;;:::o;12525:364::-;12613:3;12641:39;12674:5;12641:39;:::i;:::-;12696:71;12760:6;12755:3;12696:71;:::i;:::-;12689:78;;12776:52;12821:6;12816:3;12809:4;12802:5;12798:16;12776:52;:::i;:::-;12853:29;12875:6;12853:29;:::i;:::-;12848:3;12844:39;12837:46;;12617:272;12525:364;;;;:::o;12895:377::-;13001:3;13029:39;13062:5;13029:39;:::i;:::-;13084:89;13166:6;13161:3;13084:89;:::i;:::-;13077:96;;13182:52;13227:6;13222:3;13215:4;13208:5;13204:16;13182:52;:::i;:::-;13259:6;13254:3;13250:16;13243:23;;13005:267;12895:377;;;;:::o;13278:366::-;13420:3;13441:67;13505:2;13500:3;13441:67;:::i;:::-;13434:74;;13517:93;13606:3;13517:93;:::i;:::-;13635:2;13630:3;13626:12;13619:19;;13278:366;;;:::o;13650:::-;13792:3;13813:67;13877:2;13872:3;13813:67;:::i;:::-;13806:74;;13889:93;13978:3;13889:93;:::i;:::-;14007:2;14002:3;13998:12;13991:19;;13650:366;;;:::o;14022:::-;14164:3;14185:67;14249:2;14244:3;14185:67;:::i;:::-;14178:74;;14261:93;14350:3;14261:93;:::i;:::-;14379:2;14374:3;14370:12;14363:19;;14022:366;;;:::o;14394:402::-;14554:3;14575:85;14657:2;14652:3;14575:85;:::i;:::-;14568:92;;14669:93;14758:3;14669:93;:::i;:::-;14787:2;14782:3;14778:12;14771:19;;14394:402;;;:::o;14802:366::-;14944:3;14965:67;15029:2;15024:3;14965:67;:::i;:::-;14958:74;;15041:93;15130:3;15041:93;:::i;:::-;15159:2;15154:3;15150:12;15143:19;;14802:366;;;:::o;15174:::-;15316:3;15337:67;15401:2;15396:3;15337:67;:::i;:::-;15330:74;;15413:93;15502:3;15413:93;:::i;:::-;15531:2;15526:3;15522:12;15515:19;;15174:366;;;:::o;15546:::-;15688:3;15709:67;15773:2;15768:3;15709:67;:::i;:::-;15702:74;;15785:93;15874:3;15785:93;:::i;:::-;15903:2;15898:3;15894:12;15887:19;;15546:366;;;:::o;15918:::-;16060:3;16081:67;16145:2;16140:3;16081:67;:::i;:::-;16074:74;;16157:93;16246:3;16157:93;:::i;:::-;16275:2;16270:3;16266:12;16259:19;;15918:366;;;:::o;16290:::-;16432:3;16453:67;16517:2;16512:3;16453:67;:::i;:::-;16446:74;;16529:93;16618:3;16529:93;:::i;:::-;16647:2;16642:3;16638:12;16631:19;;16290:366;;;:::o;16662:::-;16804:3;16825:67;16889:2;16884:3;16825:67;:::i;:::-;16818:74;;16901:93;16990:3;16901:93;:::i;:::-;17019:2;17014:3;17010:12;17003:19;;16662:366;;;:::o;17034:::-;17176:3;17197:67;17261:2;17256:3;17197:67;:::i;:::-;17190:74;;17273:93;17362:3;17273:93;:::i;:::-;17391:2;17386:3;17382:12;17375:19;;17034:366;;;:::o;17406:::-;17548:3;17569:67;17633:2;17628:3;17569:67;:::i;:::-;17562:74;;17645:93;17734:3;17645:93;:::i;:::-;17763:2;17758:3;17754:12;17747:19;;17406:366;;;:::o;17778:::-;17920:3;17941:67;18005:2;18000:3;17941:67;:::i;:::-;17934:74;;18017:93;18106:3;18017:93;:::i;:::-;18135:2;18130:3;18126:12;18119:19;;17778:366;;;:::o;18150:::-;18292:3;18313:67;18377:2;18372:3;18313:67;:::i;:::-;18306:74;;18389:93;18478:3;18389:93;:::i;:::-;18507:2;18502:3;18498:12;18491:19;;18150:366;;;:::o;18522:::-;18664:3;18685:67;18749:2;18744:3;18685:67;:::i;:::-;18678:74;;18761:93;18850:3;18761:93;:::i;:::-;18879:2;18874:3;18870:12;18863:19;;18522:366;;;:::o;18894:::-;19036:3;19057:67;19121:2;19116:3;19057:67;:::i;:::-;19050:74;;19133:93;19222:3;19133:93;:::i;:::-;19251:2;19246:3;19242:12;19235:19;;18894:366;;;:::o;19266:::-;19408:3;19429:67;19493:2;19488:3;19429:67;:::i;:::-;19422:74;;19505:93;19594:3;19505:93;:::i;:::-;19623:2;19618:3;19614:12;19607:19;;19266:366;;;:::o;19638:::-;19780:3;19801:67;19865:2;19860:3;19801:67;:::i;:::-;19794:74;;19877:93;19966:3;19877:93;:::i;:::-;19995:2;19990:3;19986:12;19979:19;;19638:366;;;:::o;20010:::-;20152:3;20173:67;20237:2;20232:3;20173:67;:::i;:::-;20166:74;;20249:93;20338:3;20249:93;:::i;:::-;20367:2;20362:3;20358:12;20351:19;;20010:366;;;:::o;20382:::-;20524:3;20545:67;20609:2;20604:3;20545:67;:::i;:::-;20538:74;;20621:93;20710:3;20621:93;:::i;:::-;20739:2;20734:3;20730:12;20723:19;;20382:366;;;:::o;20754:::-;20896:3;20917:67;20981:2;20976:3;20917:67;:::i;:::-;20910:74;;20993:93;21082:3;20993:93;:::i;:::-;21111:2;21106:3;21102:12;21095:19;;20754:366;;;:::o;21126:::-;21268:3;21289:67;21353:2;21348:3;21289:67;:::i;:::-;21282:74;;21365:93;21454:3;21365:93;:::i;:::-;21483:2;21478:3;21474:12;21467:19;;21126:366;;;:::o;21498:::-;21640:3;21661:67;21725:2;21720:3;21661:67;:::i;:::-;21654:74;;21737:93;21826:3;21737:93;:::i;:::-;21855:2;21850:3;21846:12;21839:19;;21498:366;;;:::o;21870:::-;22012:3;22033:67;22097:2;22092:3;22033:67;:::i;:::-;22026:74;;22109:93;22198:3;22109:93;:::i;:::-;22227:2;22222:3;22218:12;22211:19;;21870:366;;;:::o;22242:::-;22384:3;22405:67;22469:2;22464:3;22405:67;:::i;:::-;22398:74;;22481:93;22570:3;22481:93;:::i;:::-;22599:2;22594:3;22590:12;22583:19;;22242:366;;;:::o;22614:::-;22756:3;22777:67;22841:2;22836:3;22777:67;:::i;:::-;22770:74;;22853:93;22942:3;22853:93;:::i;:::-;22971:2;22966:3;22962:12;22955:19;;22614:366;;;:::o;22986:::-;23128:3;23149:67;23213:2;23208:3;23149:67;:::i;:::-;23142:74;;23225:93;23314:3;23225:93;:::i;:::-;23343:2;23338:3;23334:12;23327:19;;22986:366;;;:::o;23358:::-;23500:3;23521:67;23585:2;23580:3;23521:67;:::i;:::-;23514:74;;23597:93;23686:3;23597:93;:::i;:::-;23715:2;23710:3;23706:12;23699:19;;23358:366;;;:::o;23730:::-;23872:3;23893:67;23957:2;23952:3;23893:67;:::i;:::-;23886:74;;23969:93;24058:3;23969:93;:::i;:::-;24087:2;24082:3;24078:12;24071:19;;23730:366;;;:::o;24102:::-;24244:3;24265:67;24329:2;24324:3;24265:67;:::i;:::-;24258:74;;24341:93;24430:3;24341:93;:::i;:::-;24459:2;24454:3;24450:12;24443:19;;24102:366;;;:::o;24474:::-;24616:3;24637:67;24701:2;24696:3;24637:67;:::i;:::-;24630:74;;24713:93;24802:3;24713:93;:::i;:::-;24831:2;24826:3;24822:12;24815:19;;24474:366;;;:::o;24846:::-;24988:3;25009:67;25073:2;25068:3;25009:67;:::i;:::-;25002:74;;25085:93;25174:3;25085:93;:::i;:::-;25203:2;25198:3;25194:12;25187:19;;24846:366;;;:::o;25218:::-;25360:3;25381:67;25445:2;25440:3;25381:67;:::i;:::-;25374:74;;25457:93;25546:3;25457:93;:::i;:::-;25575:2;25570:3;25566:12;25559:19;;25218:366;;;:::o;25590:::-;25732:3;25753:67;25817:2;25812:3;25753:67;:::i;:::-;25746:74;;25829:93;25918:3;25829:93;:::i;:::-;25947:2;25942:3;25938:12;25931:19;;25590:366;;;:::o;25962:108::-;26039:24;26057:5;26039:24;:::i;:::-;26034:3;26027:37;25962:108;;:::o;26076:118::-;26163:24;26181:5;26163:24;:::i;:::-;26158:3;26151:37;26076:118;;:::o;26200:157::-;26305:45;26325:24;26343:5;26325:24;:::i;:::-;26305:45;:::i;:::-;26300:3;26293:58;26200:157;;:::o;26363:112::-;26446:22;26462:5;26446:22;:::i;:::-;26441:3;26434:35;26363:112;;:::o;26481:256::-;26593:3;26608:75;26679:3;26670:6;26608:75;:::i;:::-;26708:2;26703:3;26699:12;26692:19;;26728:3;26721:10;;26481:256;;;;:::o;26743:397::-;26883:3;26898:75;26969:3;26960:6;26898:75;:::i;:::-;26998:2;26993:3;26989:12;26982:19;;27011:75;27082:3;27073:6;27011:75;:::i;:::-;27111:2;27106:3;27102:12;27095:19;;27131:3;27124:10;;26743:397;;;;;:::o;27146:::-;27286:3;27301:75;27372:3;27363:6;27301:75;:::i;:::-;27401:2;27396:3;27392:12;27385:19;;27414:75;27485:3;27476:6;27414:75;:::i;:::-;27514:2;27509:3;27505:12;27498:19;;27534:3;27527:10;;27146:397;;;;;:::o;27549:435::-;27729:3;27751:95;27842:3;27833:6;27751:95;:::i;:::-;27744:102;;27863:95;27954:3;27945:6;27863:95;:::i;:::-;27856:102;;27975:3;27968:10;;27549:435;;;;;:::o;27990:522::-;28203:3;28225:148;28369:3;28225:148;:::i;:::-;28218:155;;28383:75;28454:3;28445:6;28383:75;:::i;:::-;28483:2;28478:3;28474:12;28467:19;;28503:3;28496:10;;27990:522;;;;:::o;28518:397::-;28658:3;28673:75;28744:3;28735:6;28673:75;:::i;:::-;28773:2;28768:3;28764:12;28757:19;;28786:75;28857:3;28848:6;28786:75;:::i;:::-;28886:2;28881:3;28877:12;28870:19;;28906:3;28899:10;;28518:397;;;;;:::o;28921:222::-;29014:4;29052:2;29041:9;29037:18;29029:26;;29065:71;29133:1;29122:9;29118:17;29109:6;29065:71;:::i;:::-;28921:222;;;;:::o;29149:640::-;29344:4;29382:3;29371:9;29367:19;29359:27;;29396:71;29464:1;29453:9;29449:17;29440:6;29396:71;:::i;:::-;29477:72;29545:2;29534:9;29530:18;29521:6;29477:72;:::i;:::-;29559;29627:2;29616:9;29612:18;29603:6;29559:72;:::i;:::-;29678:9;29672:4;29668:20;29663:2;29652:9;29648:18;29641:48;29706:76;29777:4;29768:6;29706:76;:::i;:::-;29698:84;;29149:640;;;;;;;:::o;29795:373::-;29938:4;29976:2;29965:9;29961:18;29953:26;;30025:9;30019:4;30015:20;30011:1;30000:9;29996:17;29989:47;30053:108;30156:4;30147:6;30053:108;:::i;:::-;30045:116;;29795:373;;;;:::o;30174:210::-;30261:4;30299:2;30288:9;30284:18;30276:26;;30312:65;30374:1;30363:9;30359:17;30350:6;30312:65;:::i;:::-;30174:210;;;;:::o;30390:545::-;30563:4;30601:3;30590:9;30586:19;30578:27;;30615:71;30683:1;30672:9;30668:17;30659:6;30615:71;:::i;:::-;30696:68;30760:2;30749:9;30745:18;30736:6;30696:68;:::i;:::-;30774:72;30842:2;30831:9;30827:18;30818:6;30774:72;:::i;:::-;30856;30924:2;30913:9;30909:18;30900:6;30856:72;:::i;:::-;30390:545;;;;;;;:::o;30941:313::-;31054:4;31092:2;31081:9;31077:18;31069:26;;31141:9;31135:4;31131:20;31127:1;31116:9;31112:17;31105:47;31169:78;31242:4;31233:6;31169:78;:::i;:::-;31161:86;;30941:313;;;;:::o;31260:419::-;31426:4;31464:2;31453:9;31449:18;31441:26;;31513:9;31507:4;31503:20;31499:1;31488:9;31484:17;31477:47;31541:131;31667:4;31541:131;:::i;:::-;31533:139;;31260:419;;;:::o;31685:::-;31851:4;31889:2;31878:9;31874:18;31866:26;;31938:9;31932:4;31928:20;31924:1;31913:9;31909:17;31902:47;31966:131;32092:4;31966:131;:::i;:::-;31958:139;;31685:419;;;:::o;32110:::-;32276:4;32314:2;32303:9;32299:18;32291:26;;32363:9;32357:4;32353:20;32349:1;32338:9;32334:17;32327:47;32391:131;32517:4;32391:131;:::i;:::-;32383:139;;32110:419;;;:::o;32535:::-;32701:4;32739:2;32728:9;32724:18;32716:26;;32788:9;32782:4;32778:20;32774:1;32763:9;32759:17;32752:47;32816:131;32942:4;32816:131;:::i;:::-;32808:139;;32535:419;;;:::o;32960:::-;33126:4;33164:2;33153:9;33149:18;33141:26;;33213:9;33207:4;33203:20;33199:1;33188:9;33184:17;33177:47;33241:131;33367:4;33241:131;:::i;:::-;33233:139;;32960:419;;;:::o;33385:::-;33551:4;33589:2;33578:9;33574:18;33566:26;;33638:9;33632:4;33628:20;33624:1;33613:9;33609:17;33602:47;33666:131;33792:4;33666:131;:::i;:::-;33658:139;;33385:419;;;:::o;33810:::-;33976:4;34014:2;34003:9;33999:18;33991:26;;34063:9;34057:4;34053:20;34049:1;34038:9;34034:17;34027:47;34091:131;34217:4;34091:131;:::i;:::-;34083:139;;33810:419;;;:::o;34235:::-;34401:4;34439:2;34428:9;34424:18;34416:26;;34488:9;34482:4;34478:20;34474:1;34463:9;34459:17;34452:47;34516:131;34642:4;34516:131;:::i;:::-;34508:139;;34235:419;;;:::o;34660:::-;34826:4;34864:2;34853:9;34849:18;34841:26;;34913:9;34907:4;34903:20;34899:1;34888:9;34884:17;34877:47;34941:131;35067:4;34941:131;:::i;:::-;34933:139;;34660:419;;;:::o;35085:::-;35251:4;35289:2;35278:9;35274:18;35266:26;;35338:9;35332:4;35328:20;35324:1;35313:9;35309:17;35302:47;35366:131;35492:4;35366:131;:::i;:::-;35358:139;;35085:419;;;:::o;35510:::-;35676:4;35714:2;35703:9;35699:18;35691:26;;35763:9;35757:4;35753:20;35749:1;35738:9;35734:17;35727:47;35791:131;35917:4;35791:131;:::i;:::-;35783:139;;35510:419;;;:::o;35935:::-;36101:4;36139:2;36128:9;36124:18;36116:26;;36188:9;36182:4;36178:20;36174:1;36163:9;36159:17;36152:47;36216:131;36342:4;36216:131;:::i;:::-;36208:139;;35935:419;;;:::o;36360:::-;36526:4;36564:2;36553:9;36549:18;36541:26;;36613:9;36607:4;36603:20;36599:1;36588:9;36584:17;36577:47;36641:131;36767:4;36641:131;:::i;:::-;36633:139;;36360:419;;;:::o;36785:::-;36951:4;36989:2;36978:9;36974:18;36966:26;;37038:9;37032:4;37028:20;37024:1;37013:9;37009:17;37002:47;37066:131;37192:4;37066:131;:::i;:::-;37058:139;;36785:419;;;:::o;37210:::-;37376:4;37414:2;37403:9;37399:18;37391:26;;37463:9;37457:4;37453:20;37449:1;37438:9;37434:17;37427:47;37491:131;37617:4;37491:131;:::i;:::-;37483:139;;37210:419;;;:::o;37635:::-;37801:4;37839:2;37828:9;37824:18;37816:26;;37888:9;37882:4;37878:20;37874:1;37863:9;37859:17;37852:47;37916:131;38042:4;37916:131;:::i;:::-;37908:139;;37635:419;;;:::o;38060:::-;38226:4;38264:2;38253:9;38249:18;38241:26;;38313:9;38307:4;38303:20;38299:1;38288:9;38284:17;38277:47;38341:131;38467:4;38341:131;:::i;:::-;38333:139;;38060:419;;;:::o;38485:::-;38651:4;38689:2;38678:9;38674:18;38666:26;;38738:9;38732:4;38728:20;38724:1;38713:9;38709:17;38702:47;38766:131;38892:4;38766:131;:::i;:::-;38758:139;;38485:419;;;:::o;38910:::-;39076:4;39114:2;39103:9;39099:18;39091:26;;39163:9;39157:4;39153:20;39149:1;39138:9;39134:17;39127:47;39191:131;39317:4;39191:131;:::i;:::-;39183:139;;38910:419;;;:::o;39335:::-;39501:4;39539:2;39528:9;39524:18;39516:26;;39588:9;39582:4;39578:20;39574:1;39563:9;39559:17;39552:47;39616:131;39742:4;39616:131;:::i;:::-;39608:139;;39335:419;;;:::o;39760:::-;39926:4;39964:2;39953:9;39949:18;39941:26;;40013:9;40007:4;40003:20;39999:1;39988:9;39984:17;39977:47;40041:131;40167:4;40041:131;:::i;:::-;40033:139;;39760:419;;;:::o;40185:::-;40351:4;40389:2;40378:9;40374:18;40366:26;;40438:9;40432:4;40428:20;40424:1;40413:9;40409:17;40402:47;40466:131;40592:4;40466:131;:::i;:::-;40458:139;;40185:419;;;:::o;40610:::-;40776:4;40814:2;40803:9;40799:18;40791:26;;40863:9;40857:4;40853:20;40849:1;40838:9;40834:17;40827:47;40891:131;41017:4;40891:131;:::i;:::-;40883:139;;40610:419;;;:::o;41035:::-;41201:4;41239:2;41228:9;41224:18;41216:26;;41288:9;41282:4;41278:20;41274:1;41263:9;41259:17;41252:47;41316:131;41442:4;41316:131;:::i;:::-;41308:139;;41035:419;;;:::o;41460:::-;41626:4;41664:2;41653:9;41649:18;41641:26;;41713:9;41707:4;41703:20;41699:1;41688:9;41684:17;41677:47;41741:131;41867:4;41741:131;:::i;:::-;41733:139;;41460:419;;;:::o;41885:::-;42051:4;42089:2;42078:9;42074:18;42066:26;;42138:9;42132:4;42128:20;42124:1;42113:9;42109:17;42102:47;42166:131;42292:4;42166:131;:::i;:::-;42158:139;;41885:419;;;:::o;42310:::-;42476:4;42514:2;42503:9;42499:18;42491:26;;42563:9;42557:4;42553:20;42549:1;42538:9;42534:17;42527:47;42591:131;42717:4;42591:131;:::i;:::-;42583:139;;42310:419;;;:::o;42735:::-;42901:4;42939:2;42928:9;42924:18;42916:26;;42988:9;42982:4;42978:20;42974:1;42963:9;42959:17;42952:47;43016:131;43142:4;43016:131;:::i;:::-;43008:139;;42735:419;;;:::o;43160:::-;43326:4;43364:2;43353:9;43349:18;43341:26;;43413:9;43407:4;43403:20;43399:1;43388:9;43384:17;43377:47;43441:131;43567:4;43441:131;:::i;:::-;43433:139;;43160:419;;;:::o;43585:::-;43751:4;43789:2;43778:9;43774:18;43766:26;;43838:9;43832:4;43828:20;43824:1;43813:9;43809:17;43802:47;43866:131;43992:4;43866:131;:::i;:::-;43858:139;;43585:419;;;:::o;44010:::-;44176:4;44214:2;44203:9;44199:18;44191:26;;44263:9;44257:4;44253:20;44249:1;44238:9;44234:17;44227:47;44291:131;44417:4;44291:131;:::i;:::-;44283:139;;44010:419;;;:::o;44435:::-;44601:4;44639:2;44628:9;44624:18;44616:26;;44688:9;44682:4;44678:20;44674:1;44663:9;44659:17;44652:47;44716:131;44842:4;44716:131;:::i;:::-;44708:139;;44435:419;;;:::o;44860:::-;45026:4;45064:2;45053:9;45049:18;45041:26;;45113:9;45107:4;45103:20;45099:1;45088:9;45084:17;45077:47;45141:131;45267:4;45141:131;:::i;:::-;45133:139;;44860:419;;;:::o;45285:222::-;45378:4;45416:2;45405:9;45401:18;45393:26;;45429:71;45497:1;45486:9;45482:17;45473:6;45429:71;:::i;:::-;45285:222;;;;:::o;45513:129::-;45547:6;45574:20;;:::i;:::-;45564:30;;45603:33;45631:4;45623:6;45603:33;:::i;:::-;45513:129;;;:::o;45648:75::-;45681:6;45714:2;45708:9;45698:19;;45648:75;:::o;45729:307::-;45790:4;45880:18;45872:6;45869:30;45866:56;;;45902:18;;:::i;:::-;45866:56;45940:29;45962:6;45940:29;:::i;:::-;45932:37;;46024:4;46018;46014:15;46006:23;;45729:307;;;:::o;46042:308::-;46104:4;46194:18;46186:6;46183:30;46180:56;;;46216:18;;:::i;:::-;46180:56;46254:29;46276:6;46254:29;:::i;:::-;46246:37;;46338:4;46332;46328:15;46320:23;;46042:308;;;:::o;46356:132::-;46423:4;46446:3;46438:11;;46476:4;46471:3;46467:14;46459:22;;46356:132;;;:::o;46494:114::-;46561:6;46595:5;46589:12;46579:22;;46494:114;;;:::o;46614:98::-;46665:6;46699:5;46693:12;46683:22;;46614:98;;;:::o;46718:99::-;46770:6;46804:5;46798:12;46788:22;;46718:99;;;:::o;46823:113::-;46893:4;46925;46920:3;46916:14;46908:22;;46823:113;;;:::o;46942:184::-;47041:11;47075:6;47070:3;47063:19;47115:4;47110:3;47106:14;47091:29;;46942:184;;;;:::o;47132:168::-;47215:11;47249:6;47244:3;47237:19;47289:4;47284:3;47280:14;47265:29;;47132:168;;;;:::o;47306:169::-;47390:11;47424:6;47419:3;47412:19;47464:4;47459:3;47455:14;47440:29;;47306:169;;;;:::o;47481:148::-;47583:11;47620:3;47605:18;;47481:148;;;;:::o;47635:305::-;47675:3;47694:20;47712:1;47694:20;:::i;:::-;47689:25;;47728:20;47746:1;47728:20;:::i;:::-;47723:25;;47882:1;47814:66;47810:74;47807:1;47804:81;47801:107;;;47888:18;;:::i;:::-;47801:107;47932:1;47929;47925:9;47918:16;;47635:305;;;;:::o;47946:185::-;47986:1;48003:20;48021:1;48003:20;:::i;:::-;47998:25;;48037:20;48055:1;48037:20;:::i;:::-;48032:25;;48076:1;48066:35;;48081:18;;:::i;:::-;48066:35;48123:1;48120;48116:9;48111:14;;47946:185;;;;:::o;48137:348::-;48177:7;48200:20;48218:1;48200:20;:::i;:::-;48195:25;;48234:20;48252:1;48234:20;:::i;:::-;48229:25;;48422:1;48354:66;48350:74;48347:1;48344:81;48339:1;48332:9;48325:17;48321:105;48318:131;;;48429:18;;:::i;:::-;48318:131;48477:1;48474;48470:9;48459:20;;48137:348;;;;:::o;48491:191::-;48531:4;48551:20;48569:1;48551:20;:::i;:::-;48546:25;;48585:20;48603:1;48585:20;:::i;:::-;48580:25;;48624:1;48621;48618:8;48615:34;;;48629:18;;:::i;:::-;48615:34;48674:1;48671;48667:9;48659:17;;48491:191;;;;:::o;48688:96::-;48725:7;48754:24;48772:5;48754:24;:::i;:::-;48743:35;;48688:96;;;:::o;48790:90::-;48824:7;48867:5;48860:13;48853:21;48842:32;;48790:90;;;:::o;48886:77::-;48923:7;48952:5;48941:16;;48886:77;;;:::o;48969:149::-;49005:7;49045:66;49038:5;49034:78;49023:89;;48969:149;;;:::o;49124:126::-;49161:7;49201:42;49194:5;49190:54;49179:65;;49124:126;;;:::o;49256:77::-;49293:7;49322:5;49311:16;;49256:77;;;:::o;49339:86::-;49374:7;49414:4;49407:5;49403:16;49392:27;;49339:86;;;:::o;49431:154::-;49515:6;49510:3;49505;49492:30;49577:1;49568:6;49563:3;49559:16;49552:27;49431:154;;;:::o;49591:307::-;49659:1;49669:113;49683:6;49680:1;49677:13;49669:113;;;49768:1;49763:3;49759:11;49753:18;49749:1;49744:3;49740:11;49733:39;49705:2;49702:1;49698:10;49693:15;;49669:113;;;49800:6;49797:1;49794:13;49791:101;;;49880:1;49871:6;49866:3;49862:16;49855:27;49791:101;49640:258;49591:307;;;:::o;49904:320::-;49948:6;49985:1;49979:4;49975:12;49965:22;;50032:1;50026:4;50022:12;50053:18;50043:81;;50109:4;50101:6;50097:17;50087:27;;50043:81;50171:2;50163:6;50160:14;50140:18;50137:38;50134:84;;;50190:18;;:::i;:::-;50134:84;49955:269;49904:320;;;:::o;50230:281::-;50313:27;50335:4;50313:27;:::i;:::-;50305:6;50301:40;50443:6;50431:10;50428:22;50407:18;50395:10;50392:34;50389:62;50386:88;;;50454:18;;:::i;:::-;50386:88;50494:10;50490:2;50483:22;50273:238;50230:281;;:::o;50517:233::-;50556:3;50579:24;50597:5;50579:24;:::i;:::-;50570:33;;50625:66;50618:5;50615:77;50612:103;;;50695:18;;:::i;:::-;50612:103;50742:1;50735:5;50731:13;50724:20;;50517:233;;;:::o;50756:100::-;50795:7;50824:26;50844:5;50824:26;:::i;:::-;50813:37;;50756:100;;;:::o;50862:79::-;50901:7;50930:5;50919:16;;50862:79;;;:::o;50947:94::-;50986:7;51015:20;51029:5;51015:20;:::i;:::-;51004:31;;50947:94;;;:::o;51047:79::-;51086:7;51115:5;51104:16;;51047:79;;;:::o;51132:176::-;51164:1;51181:20;51199:1;51181:20;:::i;:::-;51176:25;;51215:20;51233:1;51215:20;:::i;:::-;51210:25;;51254:1;51244:35;;51259:18;;:::i;:::-;51244:35;51300:1;51297;51293:9;51288:14;;51132:176;;;;:::o;51314:180::-;51362:77;51359:1;51352:88;51459:4;51456:1;51449:15;51483:4;51480:1;51473:15;51500:180;51548:77;51545:1;51538:88;51645:4;51642:1;51635:15;51669:4;51666:1;51659:15;51686:180;51734:77;51731:1;51724:88;51831:4;51828:1;51821:15;51855:4;51852:1;51845:15;51872:180;51920:77;51917:1;51910:88;52017:4;52014:1;52007:15;52041:4;52038:1;52031:15;52058:180;52106:77;52103:1;52096:88;52203:4;52200:1;52193:15;52227:4;52224:1;52217:15;52244:180;52292:77;52289:1;52282:88;52389:4;52386:1;52379:15;52413:4;52410:1;52403:15;52430:180;52478:77;52475:1;52468:88;52575:4;52572:1;52565:15;52599:4;52596:1;52589:15;52616:117;52725:1;52722;52715:12;52739:117;52848:1;52845;52838:12;52862:117;52971:1;52968;52961:12;52985:117;53094:1;53091;53084:12;53108:117;53217:1;53214;53207:12;53231:117;53340:1;53337;53330:12;53354:102;53395:6;53446:2;53442:7;53437:2;53430:5;53426:14;53422:28;53412:38;;53354:102;;;:::o;53462:94::-;53495:8;53543:5;53539:2;53535:14;53514:35;;53462:94;;;:::o;53562:174::-;53702:26;53698:1;53690:6;53686:14;53679:50;53562:174;:::o;53742:169::-;53882:21;53878:1;53870:6;53866:14;53859:45;53742:169;:::o;53917:181::-;54057:33;54053:1;54045:6;54041:14;54034:57;53917:181;:::o;54104:214::-;54244:66;54240:1;54232:6;54228:14;54221:90;54104:214;:::o;54324:230::-;54464:34;54460:1;54452:6;54448:14;54441:58;54533:13;54528:2;54520:6;54516:15;54509:38;54324:230;:::o;54560:237::-;54700:34;54696:1;54688:6;54684:14;54677:58;54769:20;54764:2;54756:6;54752:15;54745:45;54560:237;:::o;54803:164::-;54943:16;54939:1;54931:6;54927:14;54920:40;54803:164;:::o;54973:225::-;55113:34;55109:1;55101:6;55097:14;55090:58;55182:8;55177:2;55169:6;55165:15;55158:33;54973:225;:::o;55204:178::-;55344:30;55340:1;55332:6;55328:14;55321:54;55204:178;:::o;55388:175::-;55528:27;55524:1;55516:6;55512:14;55505:51;55388:175;:::o;55569:172::-;55709:24;55705:1;55697:6;55693:14;55686:48;55569:172;:::o;55747:223::-;55887:34;55883:1;55875:6;55871:14;55864:58;55956:6;55951:2;55943:6;55939:15;55932:31;55747:223;:::o;55976:175::-;56116:27;56112:1;56104:6;56100:14;56093:51;55976:175;:::o;56157:176::-;56297:28;56293:1;56285:6;56281:14;56274:52;56157:176;:::o;56339:221::-;56479:34;56475:1;56467:6;56463:14;56456:58;56548:4;56543:2;56535:6;56531:15;56524:29;56339:221;:::o;56566:231::-;56706:34;56702:1;56694:6;56690:14;56683:58;56775:14;56770:2;56762:6;56758:15;56751:39;56566:231;:::o;56803:243::-;56943:34;56939:1;56931:6;56927:14;56920:58;57012:26;57007:2;56999:6;56995:15;56988:51;56803:243;:::o;57052:229::-;57192:34;57188:1;57180:6;57176:14;57169:58;57261:12;57256:2;57248:6;57244:15;57237:37;57052:229;:::o;57287:228::-;57427:34;57423:1;57415:6;57411:14;57404:58;57496:11;57491:2;57483:6;57479:15;57472:36;57287:228;:::o;57521:221::-;57661:34;57657:1;57649:6;57645:14;57638:58;57730:4;57725:2;57717:6;57713:15;57706:29;57521:221;:::o;57748:173::-;57888:25;57884:1;57876:6;57872:14;57865:49;57748:173;:::o;57927:182::-;58067:34;58063:1;58055:6;58051:14;58044:58;57927:182;:::o;58115:175::-;58255:27;58251:1;58243:6;58239:14;58232:51;58115:175;:::o;58296:231::-;58436:34;58432:1;58424:6;58420:14;58413:58;58505:14;58500:2;58492:6;58488:15;58481:39;58296:231;:::o;58533:182::-;58673:34;58669:1;58661:6;58657:14;58650:58;58533:182;:::o;58721:228::-;58861:34;58857:1;58849:6;58845:14;58838:58;58930:11;58925:2;58917:6;58913:15;58906:36;58721:228;:::o;58955:234::-;59095:34;59091:1;59083:6;59079:14;59072:58;59164:17;59159:2;59151:6;59147:15;59140:42;58955:234;:::o;59195:220::-;59335:34;59331:1;59323:6;59319:14;59312:58;59404:3;59399:2;59391:6;59387:15;59380:28;59195:220;:::o;59421:172::-;59561:24;59557:1;59549:6;59545:14;59538:48;59421:172;:::o;59599:171::-;59739:23;59735:1;59727:6;59723:14;59716:47;59599:171;:::o;59776:175::-;59916:27;59912:1;59904:6;59900:14;59893:51;59776:175;:::o;59957:236::-;60097:34;60093:1;60085:6;60081:14;60074:58;60166:19;60161:2;60153:6;60149:15;60142:44;59957:236;:::o;60199:231::-;60339:34;60335:1;60327:6;60323:14;60316:58;60408:14;60403:2;60395:6;60391:15;60384:39;60199:231;:::o;60436:234::-;60576:34;60572:1;60564:6;60560:14;60553:58;60645:17;60640:2;60632:6;60628:15;60621:42;60436:234;:::o;60676:122::-;60749:24;60767:5;60749:24;:::i;:::-;60742:5;60739:35;60729:63;;60788:1;60785;60778:12;60729:63;60676:122;:::o;60804:116::-;60874:21;60889:5;60874:21;:::i;:::-;60867:5;60864:32;60854:60;;60910:1;60907;60900:12;60854:60;60804:116;:::o;60926:122::-;60999:24;61017:5;60999:24;:::i;:::-;60992:5;60989:35;60979:63;;61038:1;61035;61028:12;60979:63;60926:122;:::o;61054:120::-;61126:23;61143:5;61126:23;:::i;:::-;61119:5;61116:34;61106:62;;61164:1;61161;61154:12;61106:62;61054:120;:::o;61180:122::-;61253:24;61271:5;61253:24;:::i;:::-;61246:5;61243:35;61233:63;;61292:1;61289;61282:12;61233:63;61180:122;:::o
Swarm Source
ipfs://f59c37d6559790e3fcdb6e47cce1f8fe6316b849868f21238adf8e65ad845375
Loading...
Loading
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.