ERC-721
Overview
Max Total Supply
189 HOC Suites
Holders
68
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 HOC SuitesLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HauntedSuitesNFT
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-31 */ // SPDX-License-Identifier: GPL-3.0 // 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/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/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/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: SMSC.sol pragma solidity ^0.8.4; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function symbol() external view returns (string memory); function name() external view returns (string memory); function getOwner() external view returns (address); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address _owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } error TransferToNonERC721ReceiverImplementer(); contract Ownable { address public owner; constructor() { owner = msg.sender; } // ownership modifier onlyOwner() { require(msg.sender == owner, "ERROR! Access denied"); _; } function transferOwnership(address _newOwner) external onlyOwner { owner = _newOwner; } function renounceOwnership() external onlyOwner { owner = address(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 = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 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)); } } contract Whitelist is Ownable { using ECDSA for bytes32; address signer; function setSigners(address _signer) external onlyOwner { signer = _signer; } function getRecoverAddress(bytes calldata signature) internal view returns (address) { bytes32 hash = keccak256(abi.encodePacked(this, msg.sender)); hash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); return hash.recover(signature); } function verifySignature(bytes calldata signature) internal returns (bool) { return getRecoverAddress(signature) == signer; } modifier onlyWhitelist(bytes calldata signature) { require(signer != address (0), "Signer Not Set"); require(verifySignature(signature), "Not Whitelisted 1"); _; } } contract HauntedSuitesNFT is IERC721, Whitelist { using Address for address; using Strings for uint256; string private _name = "Haunted Suites"; string private _symbol = "HOC Suites"; uint16 public pubsaleSupply = 1000; uint16 public limitPerAddress = 100; uint16 public presaleLimitPerAddress = 4; uint public totalSupply; bool public revealed; bool public presaleOpen; bool public pubsaleOpen; uint public presaleCost = 0.15 ether; uint256 public cost = 0.175 ether; uint256 internal _currentIndex = 1; mapping(address => uint256) private _balances; mapping(uint256 => address) public ownership; mapping(address => uint256) public addressMints; mapping(address => uint256) public presaledAmounts; string public baseURI; string public norevealedURI; string public baseExtension; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; modifier onlyTokenOwner(uint256 tokenId) { require( ownerOf(tokenId) == msg.sender, "ERROR! You must be the token owner" ); _; } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( msg.sender == owner || isApprovedForAll(owner, msg.sender), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } function getApproved(uint256 tokenId) public view virtual override returns (address) { require( tokenId <= totalSupply, "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(msg.sender, operator, approved); } function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ownerOf(tokenId), to, tokenId); } 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); } function setCost(uint256 _cost) external onlyOwner { cost = _cost; } function setLimitPerAddress(uint8 _limit) external onlyOwner { limitPerAddress = _limit; } function setPresaleLimitPerAddress(uint8 _limit) external onlyOwner { presaleLimitPerAddress = _limit; } function startPresale() external onlyOwner { presaleOpen = true; pubsaleOpen = false; } function endPresale() external onlyOwner { presaleOpen = false; } function startPubsale() external onlyOwner { pubsaleOpen = true; presaleOpen = false; } function endPubsale() external onlyOwner { pubsaleOpen = false; } function balanceOf(address owner) public view override returns (uint256) { return _balances[owner]; } function ownerOf(uint256 tokenId) public view override returns (address) { if (tokenId >= _currentIndex) { return address(0); } uint256 id = tokenId; while (id > 1 && ownership[id] == address(0)) { id -= 1; } return ownership[id]; } function mint(uint256 amount) external payable { require( addressMints[msg.sender] + amount <= limitPerAddress, "ERROR: NFT limit" ); require(pubsaleOpen, "Public sale is not open"); require(totalSupply + amount <= pubsaleSupply, "Invalid amount"); uint256 totalCost = cost * amount; require(msg.value >= totalCost, "Insufficient payment"); if (msg.value > totalCost) { payable(msg.sender).transfer(msg.value - totalCost); } for (uint256 i = 0; i < amount; i += 1) { emit Transfer(address(0), msg.sender, _currentIndex + i); } ownership[_currentIndex] = msg.sender; _mint(msg.sender, amount); totalSupply += amount; } function mintPresale(uint256 amount, bytes calldata signature) external payable onlyWhitelist(signature) { require( presaledAmounts[msg.sender] + amount <= presaleLimitPerAddress, "ERROR: NFT limit" ); require(presaleOpen, "Presale is not open"); require(totalSupply + amount <= pubsaleSupply, "Invalid amount"); uint256 totalCost = presaleCost * amount; require(msg.value >= totalCost, "Insufficient payment"); if (msg.value > totalCost) { payable(msg.sender).transfer(msg.value - totalCost); } for (uint256 i = 0; i < amount; i += 1) { emit Transfer(address(0), msg.sender, _currentIndex + i); } ownership[_currentIndex] = msg.sender; _mint(msg.sender, amount); totalSupply += amount; presaledAmounts[msg.sender] += amount; } function premint(uint256 amount, address to) external onlyOwner { for (uint256 i = 0; i < amount; i += 1) { emit Transfer(address(0), to, _currentIndex + i); } ownership[_currentIndex] = to; _mint(to, amount); totalSupply += amount; } function _mint(address to, uint256 amount) internal { _balances[to] += amount; addressMints[to] += amount; _currentIndex += amount; } function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } function _transfer( address from, address to, uint256 tokenId ) internal { address preOwner = ownerOf(tokenId); require(from != to, "You cannot transfer to yourself"); require(from == preOwner, "Invalid from address"); require( msg.sender == preOwner || isApprovedForAll(preOwner, msg.sender) || getApproved(tokenId) == msg.sender, "Access denied" ); _approve(address(0), tokenId); ownership[tokenId] = to; uint256 nextId = tokenId + 1; if (ownership[nextId] == address(0) && nextId < _currentIndex) { ownership[nextId] = preOwner; } _balances[preOwner] -= 1; _balances[to] += 1; emit Transfer(from, to, tokenId); } function tokenURI(uint256 tokenId) public view returns (string memory) { require( tokenId <= totalSupply, "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return norevealedURI; } string memory currentBaseURI = baseURI; return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), baseExtension ) ) : ""; } function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } function setUnrevealedURI(string memory _uri) external onlyOwner { norevealedURI = _uri; } function setBaseExtension(string memory _ext) external onlyOwner { baseExtension = _ext; } function setPubsaleSupply(uint16 _amount) external onlyOwner { pubsaleSupply = _amount; } function reveal() external onlyOwner { revealed = true; } function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC165).interfaceId; } function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( msg.sender, from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } function withdraw(address payable to) external onlyOwner { Address.sendValue(to, address(this).balance); } function recoverToken(address token, address to) external onlyOwner { IERC20(token).transfer(to, IERC20(token).balanceOf(address(this))); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMints","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endPubsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitPerAddress","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"norevealedURI","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ownership","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"premint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleLimitPerAddress","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaledAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pubsaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pubsaleSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_ext","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setPresaleLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setPubsaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigners","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPubsale","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":"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 payable","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c0604052600e60808190526d4861756e7465642053756974657360901b60a0908152620000319160029190620000bf565b5060408051808201909152600a80825269484f432053756974657360b01b60209092019182526200006591600391620000bf565b506004805465ffffffffffff19166404006403e8179055670214e8348c4f000060075567026db992a3b180006008556001600955348015620000a657600080fd5b50600080546001600160a01b03191633179055620001a2565b828054620000cd9062000165565b90600052602060002090601f016020900481019282620000f157600085556200013c565b82601f106200010c57805160ff19168380011785556200013c565b828001600101855582156200013c579182015b828111156200013c5782518255916020019190600101906200011f565b506200014a9291506200014e565b5090565b5b808211156200014a57600081556001016200014f565b600181811c908216806200017a57607f821691505b602082108114156200019c57634e487b7160e01b600052602260045260246000fd5b50919050565b612d4380620001b26000396000f3fe6080604052600436106102ae5760003560e01c8063715018a611610175578063b47876ea116100dc578063c87b56dd11610095578063e985e9c51161006f578063e985e9c51461083d578063f2fde38b1461085d578063fe2c7fee1461087d578063feaea5861461089d57600080fd5b8063c87b56dd146107dd578063cfbe7355146107fd578063da3ef23f1461081d57600080fd5b8063b47876ea14610731578063b584b78d14610751578063b88d4fde14610766578063bee6348a14610786578063bfcc78cc146107a5578063c6682862146107c857600080fd5b80639c3e73c31161012e5780639c3e73c31461067e578063a0712d681461069e578063a0f45b69146106b1578063a22cb465146106e7578063a43be57b14610707578063a475b5dd1461071c57600080fd5b8063715018a6146105c557806381e1943b146105da5780638611244c146106075780638da5cb5b1461061c57806395d89b411461063c578063964c33b51461065157600080fd5b806334cd27f111610219578063538dba3e116101d2578063538dba3e146104fa57806355f804b31461051a5780636352211e1461053a5780636833a2281461055a5780636c0360eb1461057a57806370a082311461058f57600080fd5b806334cd27f11461044557806342842e0e1461046557806342ca1d091461048557806344a0d68a146104a057806351830227146104c057806351cff8d9146104da57600080fd5b80630d06ed721161026b5780630d06ed721461038e57806313faede6146103a157806318160ddd146103c557806323b872dd146103db5780632a23d07d146103fb5780632a484ad41461041157600080fd5b806301ffc9a7146102b357806303a17969146102e857806304c98b2b146102ff57806306fdde0314610314578063081812fc14610336578063095ea7b31461036e575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612882565b6108bd565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd61090f565b005b34801561030b57600080fd5b506102fd610950565b34801561032057600080fd5b5061032961098c565b6040516102df9190612b39565b34801561034257600080fd5b50610356610351366004612922565b610a1e565b6040516001600160a01b0390911681526020016102df565b34801561037a57600080fd5b506102fd61038936600461283b565b610aa3565b6102fd61039c366004612976565b610bb9565b3480156103ad57600080fd5b506103b760085481565b6040519081526020016102df565b3480156103d157600080fd5b506103b760055481565b3480156103e757600080fd5b506102fd6103f6366004612751565b610eb2565b34801561040757600080fd5b506103b760075481565b34801561041d57600080fd5b506004546104329062010000900461ffff1681565b60405161ffff90911681526020016102df565b34801561045157600080fd5b506102fd6104603660046129ed565b610ebd565b34801561047157600080fd5b506102fd610480366004612751565b610f09565b34801561049157600080fd5b506004546104329061ffff1681565b3480156104ac57600080fd5b506102fd6104bb366004612922565b610f24565b3480156104cc57600080fd5b506006546102d39060ff1681565b3480156104e657600080fd5b506102fd6104f53660046126fd565b610f53565b34801561050657600080fd5b506102fd610515366004612952565b610f8a565b34801561052657600080fd5b506102fd6105353660046128ba565b611053565b34801561054657600080fd5b50610356610555366004612922565b611094565b34801561056657600080fd5b506102fd6105753660046129ed565b611103565b34801561058657600080fd5b5061032961114b565b34801561059b57600080fd5b506103b76105aa3660046126fd565b6001600160a01b03166000908152600a602052604090205490565b3480156105d157600080fd5b506102fd6111d9565b3480156105e657600080fd5b506103b76105f53660046126fd565b600d6020526000908152604090205481565b34801561061357600080fd5b506102fd611215565b34801561062857600080fd5b50600054610356906001600160a01b031681565b34801561064857600080fd5b50610329611252565b34801561065d57600080fd5b506103b761066c3660046126fd565b600c6020526000908152604090205481565b34801561068a57600080fd5b506006546102d39062010000900460ff1681565b6102fd6106ac366004612922565b611261565b3480156106bd57600080fd5b506103566106cc366004612922565b600b602052600090815260409020546001600160a01b031681565b3480156106f357600080fd5b506102fd61070236600461280e565b611489565b34801561071357600080fd5b506102fd611494565b34801561072857600080fd5b506102fd6114cb565b34801561073d57600080fd5b506102fd61074c3660046126fd565b611504565b34801561075d57600080fd5b50610329611550565b34801561077257600080fd5b506102fd610781366004612791565b61155d565b34801561079257600080fd5b506006546102d390610100900460ff1681565b3480156107b157600080fd5b5060045461043290640100000000900461ffff1681565b3480156107d457600080fd5b50610329611597565b3480156107e957600080fd5b506103296107f8366004612922565b6115a4565b34801561080957600080fd5b506102fd610818366004612900565b61178e565b34801561082957600080fd5b506102fd6108383660046128ba565b6117d0565b34801561084957600080fd5b506102d3610858366004612719565b61180d565b34801561086957600080fd5b506102fd6108783660046126fd565b61183b565b34801561088957600080fd5b506102fd6108983660046128ba565b611887565b3480156108a957600080fd5b506102fd6108b8366004612719565b6118c4565b60006001600160e01b031982166380ac58cd60e01b14806108ee57506001600160e01b03198216635b5e139f60e01b145b8061090957506001600160e01b031982166301ffc9a760e01b145b92915050565b6000546001600160a01b031633146109425760405162461bcd60e51b815260040161093990612b4c565b60405180910390fd5b6006805462ff000019169055565b6000546001600160a01b0316331461097a5760405162461bcd60e51b815260040161093990612b4c565b6006805462ffff001916610100179055565b60606002805461099b90612c08565b80601f01602080910402602001604051908101604052809291908181526020018280546109c790612c08565b8015610a145780601f106109e957610100808354040283529160200191610a14565b820191906000526020600020905b8154815290600101906020018083116109f757829003601f168201915b5050505050905090565b6000600554821115610a875760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610939565b506000908152601160205260409020546001600160a01b031690565b6000610aae82611094565b9050806001600160a01b0316836001600160a01b03161415610b1c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610939565b336001600160a01b0382161480610b385750610b38813361180d565b610baa5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610939565b610bb483836119ed565b505050565b600154829082906001600160a01b0316610c065760405162461bcd60e51b815260206004820152600e60248201526d14da59db995c88139bdd0814d95d60921b6044820152606401610939565b610c108282611a5b565b610c505760405162461bcd60e51b81526020600482015260116024820152704e6f742057686974656c6973746564203160781b6044820152606401610939565b600454336000908152600d602052604090205464010000000090910461ffff1690610c7c908790612b7a565b1115610cbd5760405162461bcd60e51b815260206004820152601060248201526f11549493d48e88139195081b1a5b5a5d60821b6044820152606401610939565b600654610100900460ff16610d0a5760405162461bcd60e51b8152602060048201526013602482015272283932b9b0b6329034b9903737ba1037b832b760691b6044820152606401610939565b60045460055461ffff90911690610d22908790612b7a565b1115610d615760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610939565b600085600754610d719190612ba6565b905080341015610dba5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610939565b80341115610dfa57336108fc610dd08334612bc5565b6040518115909202916000818181858888f19350505050158015610df8573d6000803e3d6000fd5b505b60005b86811015610e405780600954610e139190612b7a565b6040513390600090600080516020612cee833981519152908290a4610e39600182612b7a565b9050610dfd565b506009546000908152600b6020526040902080546001600160a01b03191633908117909155610e6f9087611a85565b8560056000828254610e819190612b7a565b9091555050336000908152600d602052604081208054889290610ea5908490612b7a565b9091555050505050505050565b610bb4838383611af3565b6000546001600160a01b03163314610ee75760405162461bcd60e51b815260040161093990612b4c565b6004805465ffff00000000191660ff9290921664010000000002919091179055565b610bb48383836040518060200160405280600081525061155d565b6000546001600160a01b03163314610f4e5760405162461bcd60e51b815260040161093990612b4c565b600855565b6000546001600160a01b03163314610f7d5760405162461bcd60e51b815260040161093990612b4c565b610f878147611d4c565b50565b6000546001600160a01b03163314610fb45760405162461bcd60e51b815260040161093990612b4c565b60005b828110156110035780600954610fcd9190612b7a565b6040516001600160a01b03841690600090600080516020612cee833981519152908290a4610ffc600182612b7a565b9050610fb7565b506009546000908152600b6020526040902080546001600160a01b0319166001600160a01b0383161790556110388183611a85565b816005600082825461104a9190612b7a565b90915550505050565b6000546001600160a01b0316331461107d5760405162461bcd60e51b815260040161093990612b4c565b805161109090600e9060208401906125ee565b5050565b600060095482106110a757506000919050565b815b6001811180156110ce57506000818152600b60205260409020546001600160a01b0316155b156110e5576110de600182612bc5565b90506110a9565b6000908152600b60205260409020546001600160a01b031692915050565b6000546001600160a01b0316331461112d5760405162461bcd60e51b815260040161093990612b4c565b6004805463ffff0000191660ff929092166201000002919091179055565b600e805461115890612c08565b80601f016020809104026020016040519081016040528092919081815260200182805461118490612c08565b80156111d15780601f106111a6576101008083540402835291602001916111d1565b820191906000526020600020905b8154815290600101906020018083116111b457829003601f168201915b505050505081565b6000546001600160a01b031633146112035760405162461bcd60e51b815260040161093990612b4c565b600080546001600160a01b0319169055565b6000546001600160a01b0316331461123f5760405162461bcd60e51b815260040161093990612b4c565b6006805462ffff00191662010000179055565b60606003805461099b90612c08565b600454336000908152600c60205260409020546201000090910461ffff169061128b908390612b7a565b11156112cc5760405162461bcd60e51b815260206004820152601060248201526f11549493d48e88139195081b1a5b5a5d60821b6044820152606401610939565b60065462010000900460ff166113245760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006044820152606401610939565b60045460055461ffff9091169061133c908390612b7a565b111561137b5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610939565b60008160085461138b9190612ba6565b9050803410156113d45760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610939565b8034111561141457336108fc6113ea8334612bc5565b6040518115909202916000818181858888f19350505050158015611412573d6000803e3d6000fd5b505b60005b8281101561145a578060095461142d9190612b7a565b6040513390600090600080516020612cee833981519152908290a4611453600182612b7a565b9050611417565b506009546000908152600b6020526040902080546001600160a01b031916339081179091556110389083611a85565b611090338383611e65565b6000546001600160a01b031633146114be5760405162461bcd60e51b815260040161093990612b4c565b6006805461ff0019169055565b6000546001600160a01b031633146114f55760405162461bcd60e51b815260040161093990612b4c565b6006805460ff19166001179055565b6000546001600160a01b0316331461152e5760405162461bcd60e51b815260040161093990612b4c565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b600f805461115890612c08565b611568848484611af3565b61157484848484611f34565b611591576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6010805461115890612c08565b60606005548211156116105760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610939565b60065460ff166116ac57600f805461162790612c08565b80601f016020809104026020016040519081016040528092919081815260200182805461165390612c08565b80156116a05780601f10611675576101008083540402835291602001916116a0565b820191906000526020600020905b81548152906001019060200180831161168357829003601f168201915b50505050509050919050565b6000600e80546116bb90612c08565b80601f01602080910402602001604051908101604052809291908181526020018280546116e790612c08565b80156117345780601f1061170957610100808354040283529160200191611734565b820191906000526020600020905b81548152906001019060200180831161171757829003601f168201915b5050505050905060008151116117595760405180602001604052806000815250611787565b8061176384612043565b601060405160200161177793929190612a3a565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146117b85760405162461bcd60e51b815260040161093990612b4c565b6004805461ffff191661ffff92909216919091179055565b6000546001600160a01b031633146117fa5760405162461bcd60e51b815260040161093990612b4c565b80516110909060109060208401906125ee565b6001600160a01b03918216600090815260126020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b031633146118655760405162461bcd60e51b815260040161093990612b4c565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146118b15760405162461bcd60e51b815260040161093990612b4c565b805161109090600f9060208401906125ee565b6000546001600160a01b031633146118ee5760405162461bcd60e51b815260040161093990612b4c565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90839083906370a082319060240160206040518083038186803b15801561193757600080fd5b505afa15801561194b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196f919061293a565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156119b557600080fd5b505af11580156119c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb49190612866565b600081815260116020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a2282611094565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001546000906001600160a01b0316611a74848461215d565b6001600160a01b0316149392505050565b6001600160a01b0382166000908152600a602052604081208054839290611aad908490612b7a565b90915550506001600160a01b0382166000908152600c602052604081208054839290611ada908490612b7a565b92505081905550806009600082825461104a9190612b7a565b6000611afe82611094565b9050826001600160a01b0316846001600160a01b03161415611b625760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e6e6f74207472616e7366657220746f20796f757273656c66006044820152606401610939565b806001600160a01b0316846001600160a01b031614611bba5760405162461bcd60e51b8152602060048201526014602482015273496e76616c69642066726f6d206164647265737360601b6044820152606401610939565b336001600160a01b0382161480611bd65750611bd6813361180d565b80611bf1575033611be683610a1e565b6001600160a01b0316145b611c2d5760405162461bcd60e51b815260206004820152600d60248201526c1058d8d95cdcc819195b9a5959609a1b6044820152606401610939565b611c386000836119ed565b6000828152600b6020526040812080546001600160a01b0319166001600160a01b038616179055611c6a836001612b7a565b6000818152600b60205260409020549091506001600160a01b0316158015611c93575060095481105b15611cc0576000818152600b6020526040902080546001600160a01b0319166001600160a01b0384161790555b6001600160a01b0382166000908152600a60205260408120805460019290611ce9908490612bc5565b90915550506001600160a01b0384166000908152600a60205260408120805460019290611d17908490612b7a565b909155505060405183906001600160a01b038087169190881690600080516020612cee83398151915290600090a45050505050565b80471015611d9c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610939565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611de9576040519150601f19603f3d011682016040523d82523d6000602084013e611dee565b606091505b5050905080610bb45760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610939565b816001600160a01b0316836001600160a01b03161415611ec75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610939565b6001600160a01b03838116600081815260126020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006001600160a01b0384163b1561203757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f78903390899088908890600401612afc565b602060405180830381600087803b158015611f9257600080fd5b505af1925050508015611fc2575060408051601f3d908101601f19168201909252611fbf9181019061289e565b60015b61201d573d808015611ff0576040519150601f19603f3d011682016040523d82523d6000602084013e611ff5565b606091505b508051612015576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061203b565b5060015b949350505050565b6060816120675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612091578061207b81612c43565b915061208a9050600a83612b92565b915061206b565b60008167ffffffffffffffff8111156120ba57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120e4576020820181803683370190505b5090505b841561203b576120f9600183612bc5565b9150612106600a86612c5e565b612111906030612b7a565b60f81b81838151811061213457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612156600a86612b92565b94506120e8565b6040516bffffffffffffffffffffffff1930606090811b8216602084015233901b166034820152600090819060480160408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c82018190529150605c0160405160208183030381529060405280519060200120905061203b84848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525085939250506122339050565b60008060006122428585612257565b9150915061224f816122c7565b509392505050565b60008082516041141561228e5760208301516040840151606085015160001a612282878285856124c8565b945094505050506122c0565b8251604014156122b857602083015160408401516122ad8683836125b5565b9350935050506122c0565b506000905060025b9250929050565b60008160048111156122e957634e487b7160e01b600052602160045260246000fd5b14156122f25750565b600181600481111561231457634e487b7160e01b600052602160045260246000fd5b14156123625760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610939565b600281600481111561238457634e487b7160e01b600052602160045260246000fd5b14156123d25760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610939565b60038160048111156123f457634e487b7160e01b600052602160045260246000fd5b141561244d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610939565b600481600481111561246f57634e487b7160e01b600052602160045260246000fd5b1415610f875760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610939565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156124ff57506000905060036125ac565b8460ff16601b1415801561251757508460ff16601c14155b1561252857506000905060046125ac565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561257c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166125a5576000600192509250506125ac565b9150600090505b94509492505050565b6000806001600160ff1b038316816125d260ff86901c601b612b7a565b90506125e0878288856124c8565b935093505050935093915050565b8280546125fa90612c08565b90600052602060002090601f01602090048101928261261c5760008555612662565b82601f1061263557805160ff1916838001178555612662565b82800160010185558215612662579182015b82811115612662578251825591602001919060010190612647565b5061266e929150612672565b5090565b5b8082111561266e5760008155600101612673565b600067ffffffffffffffff808411156126a2576126a2612c9e565b604051601f8501601f19908116603f011681019082821181831017156126ca576126ca612c9e565b816040528093508581528686860111156126e357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561270e578081fd5b813561178781612cb4565b6000806040838503121561272b578081fd5b823561273681612cb4565b9150602083013561274681612cb4565b809150509250929050565b600080600060608486031215612765578081fd5b833561277081612cb4565b9250602084013561278081612cb4565b929592945050506040919091013590565b600080600080608085870312156127a6578081fd5b84356127b181612cb4565b935060208501356127c181612cb4565b925060408501359150606085013567ffffffffffffffff8111156127e3578182fd5b8501601f810187136127f3578182fd5b61280287823560208401612687565b91505092959194509250565b60008060408385031215612820578182fd5b823561282b81612cb4565b9150602083013561274681612cc9565b6000806040838503121561284d578182fd5b823561285881612cb4565b946020939093013593505050565b600060208284031215612877578081fd5b815161178781612cc9565b600060208284031215612893578081fd5b813561178781612cd7565b6000602082840312156128af578081fd5b815161178781612cd7565b6000602082840312156128cb578081fd5b813567ffffffffffffffff8111156128e1578182fd5b8201601f810184136128f1578182fd5b61203b84823560208401612687565b600060208284031215612911578081fd5b813561ffff81168114611787578182fd5b600060208284031215612933578081fd5b5035919050565b60006020828403121561294b578081fd5b5051919050565b60008060408385031215612964578182fd5b82359150602083013561274681612cb4565b60008060006040848603121561298a578081fd5b83359250602084013567ffffffffffffffff808211156129a8578283fd5b818601915086601f8301126129bb578283fd5b8135818111156129c9578384fd5b8760208285010111156129da578384fd5b6020830194508093505050509250925092565b6000602082840312156129fe578081fd5b813560ff81168114611787578182fd5b60008151808452612a26816020860160208601612bdc565b601f01601f19169290920160200192915050565b600084516020612a4d8285838a01612bdc565b855191840191612a608184848a01612bdc565b85549201918390600181811c9080831680612a7c57607f831692505b858310811415612a9a57634e487b7160e01b88526022600452602488fd5b808015612aae5760018114612abf57612aeb565b60ff19851688528388019550612aeb565b60008b815260209020895b85811015612ae35781548a820152908401908801612aca565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b2f90830184612a0e565b9695505050505050565b6020815260006117876020830184612a0e565b60208082526014908201527311549493d488481058d8d95cdcc819195b9a595960621b604082015260600190565b60008219821115612b8d57612b8d612c72565b500190565b600082612ba157612ba1612c88565b500490565b6000816000190483118215151615612bc057612bc0612c72565b500290565b600082821015612bd757612bd7612c72565b500390565b60005b83811015612bf7578181015183820152602001612bdf565b838111156115915750506000910152565b600181811c90821680612c1c57607f821691505b60208210811415612c3d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c5757612c57612c72565b5060010190565b600082612c6d57612c6d612c88565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f8757600080fd5b8015158114610f8757600080fd5b6001600160e01b031981168114610f8757600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220b59e4244d9b964560984b0664929937de4efb7138ad8f93b9ffa63270b6f7e0764736f6c63430008040033
Deployed Bytecode
0x6080604052600436106102ae5760003560e01c8063715018a611610175578063b47876ea116100dc578063c87b56dd11610095578063e985e9c51161006f578063e985e9c51461083d578063f2fde38b1461085d578063fe2c7fee1461087d578063feaea5861461089d57600080fd5b8063c87b56dd146107dd578063cfbe7355146107fd578063da3ef23f1461081d57600080fd5b8063b47876ea14610731578063b584b78d14610751578063b88d4fde14610766578063bee6348a14610786578063bfcc78cc146107a5578063c6682862146107c857600080fd5b80639c3e73c31161012e5780639c3e73c31461067e578063a0712d681461069e578063a0f45b69146106b1578063a22cb465146106e7578063a43be57b14610707578063a475b5dd1461071c57600080fd5b8063715018a6146105c557806381e1943b146105da5780638611244c146106075780638da5cb5b1461061c57806395d89b411461063c578063964c33b51461065157600080fd5b806334cd27f111610219578063538dba3e116101d2578063538dba3e146104fa57806355f804b31461051a5780636352211e1461053a5780636833a2281461055a5780636c0360eb1461057a57806370a082311461058f57600080fd5b806334cd27f11461044557806342842e0e1461046557806342ca1d091461048557806344a0d68a146104a057806351830227146104c057806351cff8d9146104da57600080fd5b80630d06ed721161026b5780630d06ed721461038e57806313faede6146103a157806318160ddd146103c557806323b872dd146103db5780632a23d07d146103fb5780632a484ad41461041157600080fd5b806301ffc9a7146102b357806303a17969146102e857806304c98b2b146102ff57806306fdde0314610314578063081812fc14610336578063095ea7b31461036e575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612882565b6108bd565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd61090f565b005b34801561030b57600080fd5b506102fd610950565b34801561032057600080fd5b5061032961098c565b6040516102df9190612b39565b34801561034257600080fd5b50610356610351366004612922565b610a1e565b6040516001600160a01b0390911681526020016102df565b34801561037a57600080fd5b506102fd61038936600461283b565b610aa3565b6102fd61039c366004612976565b610bb9565b3480156103ad57600080fd5b506103b760085481565b6040519081526020016102df565b3480156103d157600080fd5b506103b760055481565b3480156103e757600080fd5b506102fd6103f6366004612751565b610eb2565b34801561040757600080fd5b506103b760075481565b34801561041d57600080fd5b506004546104329062010000900461ffff1681565b60405161ffff90911681526020016102df565b34801561045157600080fd5b506102fd6104603660046129ed565b610ebd565b34801561047157600080fd5b506102fd610480366004612751565b610f09565b34801561049157600080fd5b506004546104329061ffff1681565b3480156104ac57600080fd5b506102fd6104bb366004612922565b610f24565b3480156104cc57600080fd5b506006546102d39060ff1681565b3480156104e657600080fd5b506102fd6104f53660046126fd565b610f53565b34801561050657600080fd5b506102fd610515366004612952565b610f8a565b34801561052657600080fd5b506102fd6105353660046128ba565b611053565b34801561054657600080fd5b50610356610555366004612922565b611094565b34801561056657600080fd5b506102fd6105753660046129ed565b611103565b34801561058657600080fd5b5061032961114b565b34801561059b57600080fd5b506103b76105aa3660046126fd565b6001600160a01b03166000908152600a602052604090205490565b3480156105d157600080fd5b506102fd6111d9565b3480156105e657600080fd5b506103b76105f53660046126fd565b600d6020526000908152604090205481565b34801561061357600080fd5b506102fd611215565b34801561062857600080fd5b50600054610356906001600160a01b031681565b34801561064857600080fd5b50610329611252565b34801561065d57600080fd5b506103b761066c3660046126fd565b600c6020526000908152604090205481565b34801561068a57600080fd5b506006546102d39062010000900460ff1681565b6102fd6106ac366004612922565b611261565b3480156106bd57600080fd5b506103566106cc366004612922565b600b602052600090815260409020546001600160a01b031681565b3480156106f357600080fd5b506102fd61070236600461280e565b611489565b34801561071357600080fd5b506102fd611494565b34801561072857600080fd5b506102fd6114cb565b34801561073d57600080fd5b506102fd61074c3660046126fd565b611504565b34801561075d57600080fd5b50610329611550565b34801561077257600080fd5b506102fd610781366004612791565b61155d565b34801561079257600080fd5b506006546102d390610100900460ff1681565b3480156107b157600080fd5b5060045461043290640100000000900461ffff1681565b3480156107d457600080fd5b50610329611597565b3480156107e957600080fd5b506103296107f8366004612922565b6115a4565b34801561080957600080fd5b506102fd610818366004612900565b61178e565b34801561082957600080fd5b506102fd6108383660046128ba565b6117d0565b34801561084957600080fd5b506102d3610858366004612719565b61180d565b34801561086957600080fd5b506102fd6108783660046126fd565b61183b565b34801561088957600080fd5b506102fd6108983660046128ba565b611887565b3480156108a957600080fd5b506102fd6108b8366004612719565b6118c4565b60006001600160e01b031982166380ac58cd60e01b14806108ee57506001600160e01b03198216635b5e139f60e01b145b8061090957506001600160e01b031982166301ffc9a760e01b145b92915050565b6000546001600160a01b031633146109425760405162461bcd60e51b815260040161093990612b4c565b60405180910390fd5b6006805462ff000019169055565b6000546001600160a01b0316331461097a5760405162461bcd60e51b815260040161093990612b4c565b6006805462ffff001916610100179055565b60606002805461099b90612c08565b80601f01602080910402602001604051908101604052809291908181526020018280546109c790612c08565b8015610a145780601f106109e957610100808354040283529160200191610a14565b820191906000526020600020905b8154815290600101906020018083116109f757829003601f168201915b5050505050905090565b6000600554821115610a875760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610939565b506000908152601160205260409020546001600160a01b031690565b6000610aae82611094565b9050806001600160a01b0316836001600160a01b03161415610b1c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610939565b336001600160a01b0382161480610b385750610b38813361180d565b610baa5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610939565b610bb483836119ed565b505050565b600154829082906001600160a01b0316610c065760405162461bcd60e51b815260206004820152600e60248201526d14da59db995c88139bdd0814d95d60921b6044820152606401610939565b610c108282611a5b565b610c505760405162461bcd60e51b81526020600482015260116024820152704e6f742057686974656c6973746564203160781b6044820152606401610939565b600454336000908152600d602052604090205464010000000090910461ffff1690610c7c908790612b7a565b1115610cbd5760405162461bcd60e51b815260206004820152601060248201526f11549493d48e88139195081b1a5b5a5d60821b6044820152606401610939565b600654610100900460ff16610d0a5760405162461bcd60e51b8152602060048201526013602482015272283932b9b0b6329034b9903737ba1037b832b760691b6044820152606401610939565b60045460055461ffff90911690610d22908790612b7a565b1115610d615760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610939565b600085600754610d719190612ba6565b905080341015610dba5760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610939565b80341115610dfa57336108fc610dd08334612bc5565b6040518115909202916000818181858888f19350505050158015610df8573d6000803e3d6000fd5b505b60005b86811015610e405780600954610e139190612b7a565b6040513390600090600080516020612cee833981519152908290a4610e39600182612b7a565b9050610dfd565b506009546000908152600b6020526040902080546001600160a01b03191633908117909155610e6f9087611a85565b8560056000828254610e819190612b7a565b9091555050336000908152600d602052604081208054889290610ea5908490612b7a565b9091555050505050505050565b610bb4838383611af3565b6000546001600160a01b03163314610ee75760405162461bcd60e51b815260040161093990612b4c565b6004805465ffff00000000191660ff9290921664010000000002919091179055565b610bb48383836040518060200160405280600081525061155d565b6000546001600160a01b03163314610f4e5760405162461bcd60e51b815260040161093990612b4c565b600855565b6000546001600160a01b03163314610f7d5760405162461bcd60e51b815260040161093990612b4c565b610f878147611d4c565b50565b6000546001600160a01b03163314610fb45760405162461bcd60e51b815260040161093990612b4c565b60005b828110156110035780600954610fcd9190612b7a565b6040516001600160a01b03841690600090600080516020612cee833981519152908290a4610ffc600182612b7a565b9050610fb7565b506009546000908152600b6020526040902080546001600160a01b0319166001600160a01b0383161790556110388183611a85565b816005600082825461104a9190612b7a565b90915550505050565b6000546001600160a01b0316331461107d5760405162461bcd60e51b815260040161093990612b4c565b805161109090600e9060208401906125ee565b5050565b600060095482106110a757506000919050565b815b6001811180156110ce57506000818152600b60205260409020546001600160a01b0316155b156110e5576110de600182612bc5565b90506110a9565b6000908152600b60205260409020546001600160a01b031692915050565b6000546001600160a01b0316331461112d5760405162461bcd60e51b815260040161093990612b4c565b6004805463ffff0000191660ff929092166201000002919091179055565b600e805461115890612c08565b80601f016020809104026020016040519081016040528092919081815260200182805461118490612c08565b80156111d15780601f106111a6576101008083540402835291602001916111d1565b820191906000526020600020905b8154815290600101906020018083116111b457829003601f168201915b505050505081565b6000546001600160a01b031633146112035760405162461bcd60e51b815260040161093990612b4c565b600080546001600160a01b0319169055565b6000546001600160a01b0316331461123f5760405162461bcd60e51b815260040161093990612b4c565b6006805462ffff00191662010000179055565b60606003805461099b90612c08565b600454336000908152600c60205260409020546201000090910461ffff169061128b908390612b7a565b11156112cc5760405162461bcd60e51b815260206004820152601060248201526f11549493d48e88139195081b1a5b5a5d60821b6044820152606401610939565b60065462010000900460ff166113245760405162461bcd60e51b815260206004820152601760248201527f5075626c69632073616c65206973206e6f74206f70656e0000000000000000006044820152606401610939565b60045460055461ffff9091169061133c908390612b7a565b111561137b5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b6044820152606401610939565b60008160085461138b9190612ba6565b9050803410156113d45760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610939565b8034111561141457336108fc6113ea8334612bc5565b6040518115909202916000818181858888f19350505050158015611412573d6000803e3d6000fd5b505b60005b8281101561145a578060095461142d9190612b7a565b6040513390600090600080516020612cee833981519152908290a4611453600182612b7a565b9050611417565b506009546000908152600b6020526040902080546001600160a01b031916339081179091556110389083611a85565b611090338383611e65565b6000546001600160a01b031633146114be5760405162461bcd60e51b815260040161093990612b4c565b6006805461ff0019169055565b6000546001600160a01b031633146114f55760405162461bcd60e51b815260040161093990612b4c565b6006805460ff19166001179055565b6000546001600160a01b0316331461152e5760405162461bcd60e51b815260040161093990612b4c565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b600f805461115890612c08565b611568848484611af3565b61157484848484611f34565b611591576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6010805461115890612c08565b60606005548211156116105760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610939565b60065460ff166116ac57600f805461162790612c08565b80601f016020809104026020016040519081016040528092919081815260200182805461165390612c08565b80156116a05780601f10611675576101008083540402835291602001916116a0565b820191906000526020600020905b81548152906001019060200180831161168357829003601f168201915b50505050509050919050565b6000600e80546116bb90612c08565b80601f01602080910402602001604051908101604052809291908181526020018280546116e790612c08565b80156117345780601f1061170957610100808354040283529160200191611734565b820191906000526020600020905b81548152906001019060200180831161171757829003601f168201915b5050505050905060008151116117595760405180602001604052806000815250611787565b8061176384612043565b601060405160200161177793929190612a3a565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146117b85760405162461bcd60e51b815260040161093990612b4c565b6004805461ffff191661ffff92909216919091179055565b6000546001600160a01b031633146117fa5760405162461bcd60e51b815260040161093990612b4c565b80516110909060109060208401906125ee565b6001600160a01b03918216600090815260126020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b031633146118655760405162461bcd60e51b815260040161093990612b4c565b600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146118b15760405162461bcd60e51b815260040161093990612b4c565b805161109090600f9060208401906125ee565b6000546001600160a01b031633146118ee5760405162461bcd60e51b815260040161093990612b4c565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90839083906370a082319060240160206040518083038186803b15801561193757600080fd5b505afa15801561194b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196f919061293a565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156119b557600080fd5b505af11580156119c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb49190612866565b600081815260116020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a2282611094565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001546000906001600160a01b0316611a74848461215d565b6001600160a01b0316149392505050565b6001600160a01b0382166000908152600a602052604081208054839290611aad908490612b7a565b90915550506001600160a01b0382166000908152600c602052604081208054839290611ada908490612b7a565b92505081905550806009600082825461104a9190612b7a565b6000611afe82611094565b9050826001600160a01b0316846001600160a01b03161415611b625760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e6e6f74207472616e7366657220746f20796f757273656c66006044820152606401610939565b806001600160a01b0316846001600160a01b031614611bba5760405162461bcd60e51b8152602060048201526014602482015273496e76616c69642066726f6d206164647265737360601b6044820152606401610939565b336001600160a01b0382161480611bd65750611bd6813361180d565b80611bf1575033611be683610a1e565b6001600160a01b0316145b611c2d5760405162461bcd60e51b815260206004820152600d60248201526c1058d8d95cdcc819195b9a5959609a1b6044820152606401610939565b611c386000836119ed565b6000828152600b6020526040812080546001600160a01b0319166001600160a01b038616179055611c6a836001612b7a565b6000818152600b60205260409020549091506001600160a01b0316158015611c93575060095481105b15611cc0576000818152600b6020526040902080546001600160a01b0319166001600160a01b0384161790555b6001600160a01b0382166000908152600a60205260408120805460019290611ce9908490612bc5565b90915550506001600160a01b0384166000908152600a60205260408120805460019290611d17908490612b7a565b909155505060405183906001600160a01b038087169190881690600080516020612cee83398151915290600090a45050505050565b80471015611d9c5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610939565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611de9576040519150601f19603f3d011682016040523d82523d6000602084013e611dee565b606091505b5050905080610bb45760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610939565b816001600160a01b0316836001600160a01b03161415611ec75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610939565b6001600160a01b03838116600081815260126020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006001600160a01b0384163b1561203757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f78903390899088908890600401612afc565b602060405180830381600087803b158015611f9257600080fd5b505af1925050508015611fc2575060408051601f3d908101601f19168201909252611fbf9181019061289e565b60015b61201d573d808015611ff0576040519150601f19603f3d011682016040523d82523d6000602084013e611ff5565b606091505b508051612015576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061203b565b5060015b949350505050565b6060816120675750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612091578061207b81612c43565b915061208a9050600a83612b92565b915061206b565b60008167ffffffffffffffff8111156120ba57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120e4576020820181803683370190505b5090505b841561203b576120f9600183612bc5565b9150612106600a86612c5e565b612111906030612b7a565b60f81b81838151811061213457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612156600a86612b92565b94506120e8565b6040516bffffffffffffffffffffffff1930606090811b8216602084015233901b166034820152600090819060480160408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c82018190529150605c0160405160208183030381529060405280519060200120905061203b84848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525085939250506122339050565b60008060006122428585612257565b9150915061224f816122c7565b509392505050565b60008082516041141561228e5760208301516040840151606085015160001a612282878285856124c8565b945094505050506122c0565b8251604014156122b857602083015160408401516122ad8683836125b5565b9350935050506122c0565b506000905060025b9250929050565b60008160048111156122e957634e487b7160e01b600052602160045260246000fd5b14156122f25750565b600181600481111561231457634e487b7160e01b600052602160045260246000fd5b14156123625760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610939565b600281600481111561238457634e487b7160e01b600052602160045260246000fd5b14156123d25760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610939565b60038160048111156123f457634e487b7160e01b600052602160045260246000fd5b141561244d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610939565b600481600481111561246f57634e487b7160e01b600052602160045260246000fd5b1415610f875760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610939565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156124ff57506000905060036125ac565b8460ff16601b1415801561251757508460ff16601c14155b1561252857506000905060046125ac565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561257c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166125a5576000600192509250506125ac565b9150600090505b94509492505050565b6000806001600160ff1b038316816125d260ff86901c601b612b7a565b90506125e0878288856124c8565b935093505050935093915050565b8280546125fa90612c08565b90600052602060002090601f01602090048101928261261c5760008555612662565b82601f1061263557805160ff1916838001178555612662565b82800160010185558215612662579182015b82811115612662578251825591602001919060010190612647565b5061266e929150612672565b5090565b5b8082111561266e5760008155600101612673565b600067ffffffffffffffff808411156126a2576126a2612c9e565b604051601f8501601f19908116603f011681019082821181831017156126ca576126ca612c9e565b816040528093508581528686860111156126e357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561270e578081fd5b813561178781612cb4565b6000806040838503121561272b578081fd5b823561273681612cb4565b9150602083013561274681612cb4565b809150509250929050565b600080600060608486031215612765578081fd5b833561277081612cb4565b9250602084013561278081612cb4565b929592945050506040919091013590565b600080600080608085870312156127a6578081fd5b84356127b181612cb4565b935060208501356127c181612cb4565b925060408501359150606085013567ffffffffffffffff8111156127e3578182fd5b8501601f810187136127f3578182fd5b61280287823560208401612687565b91505092959194509250565b60008060408385031215612820578182fd5b823561282b81612cb4565b9150602083013561274681612cc9565b6000806040838503121561284d578182fd5b823561285881612cb4565b946020939093013593505050565b600060208284031215612877578081fd5b815161178781612cc9565b600060208284031215612893578081fd5b813561178781612cd7565b6000602082840312156128af578081fd5b815161178781612cd7565b6000602082840312156128cb578081fd5b813567ffffffffffffffff8111156128e1578182fd5b8201601f810184136128f1578182fd5b61203b84823560208401612687565b600060208284031215612911578081fd5b813561ffff81168114611787578182fd5b600060208284031215612933578081fd5b5035919050565b60006020828403121561294b578081fd5b5051919050565b60008060408385031215612964578182fd5b82359150602083013561274681612cb4565b60008060006040848603121561298a578081fd5b83359250602084013567ffffffffffffffff808211156129a8578283fd5b818601915086601f8301126129bb578283fd5b8135818111156129c9578384fd5b8760208285010111156129da578384fd5b6020830194508093505050509250925092565b6000602082840312156129fe578081fd5b813560ff81168114611787578182fd5b60008151808452612a26816020860160208601612bdc565b601f01601f19169290920160200192915050565b600084516020612a4d8285838a01612bdc565b855191840191612a608184848a01612bdc565b85549201918390600181811c9080831680612a7c57607f831692505b858310811415612a9a57634e487b7160e01b88526022600452602488fd5b808015612aae5760018114612abf57612aeb565b60ff19851688528388019550612aeb565b60008b815260209020895b85811015612ae35781548a820152908401908801612aca565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b2f90830184612a0e565b9695505050505050565b6020815260006117876020830184612a0e565b60208082526014908201527311549493d488481058d8d95cdcc819195b9a595960621b604082015260600190565b60008219821115612b8d57612b8d612c72565b500190565b600082612ba157612ba1612c88565b500490565b6000816000190483118215151615612bc057612bc0612c72565b500290565b600082821015612bd757612bd7612c72565b500390565b60005b83811015612bf7578181015183820152602001612bdf565b838111156115915750506000910152565b600181811c90821680612c1c57607f821691505b60208210811415612c3d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c5757612c57612c72565b5060010190565b600082612c6d57612c6d612c88565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f8757600080fd5b8015158114610f8757600080fd5b6001600160e01b031981168114610f8757600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220b59e4244d9b964560984b0664929937de4efb7138ad8f93b9ffa63270b6f7e0764736f6c63430008040033
Deployed Bytecode Sourcemap
30998:10801:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40227:351;;;;;;;;;;-1:-1:-1;40227:351:0;;;;;:::i;:::-;;:::i;:::-;;;10804:14:1;;10797:22;10779:41;;10767:2;10752:18;40227:351:0;;;;;;;;34716:79;;;;;;;;;;;;;:::i;:::-;;34393:110;;;;;;;;;;;;;:::i;32236:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32830:314::-;;;;;;;;;;-1:-1:-1;32830:314:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9823:32:1;;;9805:51;;9793:2;9778:18;32830:314:0;9760:102:1;32422:400:0;;;;;;;;;;-1:-1:-1;32422:400:0;;;;;:::i;:::-;;:::i;36062:920::-;;;;;;:::i;:::-;;:::i;31507:33::-;;;;;;;;;;;;;;;;;;;19937:25:1;;;19925:2;19910:18;31507:33:0;19892:76:1;31341:23:0;;;;;;;;;;;;;;;;37474:162;;;;;;;;;;-1:-1:-1;37474:162:0;;;;;:::i;:::-;;:::i;31464:36::-;;;;;;;;;;;;;;;;31252:35;;;;;;;;;;-1:-1:-1;31252:35:0;;;;;;;;;;;;;;19772:6:1;19760:19;;;19742:38;;19730:2;19715:18;31252:35:0;19697:89:1;34267:118:0;;;;;;;;;;-1:-1:-1;34267:118:0;;;;;:::i;:::-;;:::i;37644:177::-;;;;;;;;;;-1:-1:-1;37644:177:0;;;;;:::i;:::-;;:::i;31211:34::-;;;;;;;;;;-1:-1:-1;31211:34:0;;;;;;;;34065:82;;;;;;;;;;-1:-1:-1;34065:82:0;;;;;:::i;:::-;;:::i;31373:20::-;;;;;;;;;;-1:-1:-1;31373:20:0;;;;;;;;41515:120;;;;;;;;;;-1:-1:-1;41515:120:0;;;;;:::i;:::-;;:::i;36990:303::-;;;;;;;;;;-1:-1:-1;36990:303:0;;;;;:::i;:::-;;:::i;39705:100::-;;;;;;;;;;-1:-1:-1;39705:100:0;;;;;:::i;:::-;;:::i;34926:319::-;;;;;;;;;;-1:-1:-1;34926:319:0;;;;;:::i;:::-;;:::i;34155:104::-;;;;;;;;;;-1:-1:-1;34155:104:0;;;;;:::i;:::-;;:::i;31806:21::-;;;;;;;;;;;;;:::i;34803:115::-;;;;;;;;;;-1:-1:-1;34803:115:0;;;;;:::i;:::-;-1:-1:-1;;;;;34894:16:0;34867:7;34894:16;;;:9;:16;;;;;;;34803:115;20712:85;;;;;;;;;;;;;:::i;31747:50::-;;;;;;;;;;-1:-1:-1;31747:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;34598:110;;;;;;;;;;;;;:::i;20385:20::-;;;;;;;;;;-1:-1:-1;20385:20:0;;;;-1:-1:-1;;;;;20385:20:0;;;32327:87;;;;;;;;;;;;;:::i;31693:47::-;;;;;;;;;;-1:-1:-1;31693:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;31432:23;;;;;;;;;;-1:-1:-1;31432:23:0;;;;;;;;;;;35253:801;;;;;;:::i;:::-;;:::i;31642:44::-;;;;;;;;;;-1:-1:-1;31642:44:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;31642:44:0;;;33152:185;;;;;;;;;;-1:-1:-1;33152:185:0;;;;;:::i;:::-;;:::i;34511:79::-;;;;;;;;;;;;;:::i;40148:71::-;;;;;;;;;;;;;:::i;30250:91::-;;;;;;;;;;-1:-1:-1;30250:91:0;;;;;:::i;:::-;;:::i;31834:27::-;;;;;;;;;;;;;:::i;37829:336::-;;;;;;;;;;-1:-1:-1;37829:336:0;;;;;:::i;:::-;;:::i;31402:23::-;;;;;;;;;;-1:-1:-1;31402:23:0;;;;;;;;;;;31294:40;;;;;;;;;;-1:-1:-1;31294:40:0;;;;;;;;;;;31868:27;;;;;;;;;;;;;:::i;39037:660::-;;;;;;;;;;-1:-1:-1;39037:660:0;;;;;:::i;:::-;;:::i;40037:103::-;;;;;;;;;;-1:-1:-1;40037:103:0;;;;;:::i;:::-;;:::i;39925:104::-;;;;;;;;;;-1:-1:-1;39925:104:0;;;;;:::i;:::-;;:::i;33345:214::-;;;;;;;;;;-1:-1:-1;33345:214:0;;;;;:::i;:::-;;:::i;20603:101::-;;;;;;;;;;-1:-1:-1;20603:101:0;;;;;:::i;:::-;;:::i;39813:104::-;;;;;;;;;;-1:-1:-1;39813:104:0;;;;;:::i;:::-;;:::i;41643:153::-;;;;;;;;;;-1:-1:-1;41643:153:0;;;;;:::i;:::-;;:::i;40227:351::-;40366:4;-1:-1:-1;;;;;;40408:40:0;;-1:-1:-1;;;40408:40:0;;:105;;-1:-1:-1;;;;;;;40465:48:0;;-1:-1:-1;;;40465:48:0;40408:105;:162;;;-1:-1:-1;;;;;;;40530:40:0;;-1:-1:-1;;;40530:40:0;40408:162;40388:182;40227:351;-1:-1:-1;;40227:351:0:o;34716:79::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;;;;;;;;;34768:11:::1;:19:::0;;-1:-1:-1;;34768:19:0::1;::::0;;34716:79::o;34393:110::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;34447:11:::1;:18:::0;;-1:-1:-1;;34476:19:0;34447:18:::1;34476:19:::0;;;34393:110::o;32236:83::-;32273:13;32306:5;32299:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32236:83;:::o;32830:314::-;32951:7;33009:11;;32998:7;:22;;32976:116;;;;-1:-1:-1;;;32976:116:0;;16818:2:1;32976:116:0;;;16800:21:1;16857:2;16837:18;;;16830:30;16896:34;16876:18;;;16869:62;-1:-1:-1;;;16947:18:1;;;16940:42;16999:19;;32976:116:0;16790:234:1;32976:116:0;-1:-1:-1;33112:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33112:24:0;;32830:314::o;32422:400::-;32503:13;32519:16;32527:7;32519;:16::i;:::-;32503:32;;32560:5;-1:-1:-1;;;;;32554:11:0;:2;-1:-1:-1;;;;;32554:11:0;;;32546:57;;;;-1:-1:-1;;;32546:57:0;;17995:2:1;32546:57:0;;;17977:21:1;18034:2;18014:18;;;18007:30;18073:34;18053:18;;;18046:62;-1:-1:-1;;;18124:18:1;;;18117:31;18165:19;;32546:57:0;17967:223:1;32546:57:0;32638:10;-1:-1:-1;;;;;32638:19:0;;;;:58;;;32661:35;32678:5;32685:10;32661:16;:35::i;:::-;32616:164;;;;-1:-1:-1;;;32616:164:0;;15641:2:1;32616:164:0;;;15623:21:1;15680:2;15660:18;;;15653:30;15719:34;15699:18;;;15692:62;15790:26;15770:18;;;15763:54;15834:19;;32616:164:0;15613:246:1;32616:164:0;32793:21;32802:2;32806:7;32793:8;:21::i;:::-;32422:400;;;:::o;36062:920::-;30864:6;;36156:9;;;;-1:-1:-1;;;;;30864:6:0;30856:48;;;;-1:-1:-1;;;30856:48:0;;12719:2:1;30856:48:0;;;12701:21:1;12758:2;12738:18;;;12731:30;-1:-1:-1;;;12777:18:1;;;12770:44;12831:18;;30856:48:0;12691:164:1;30856:48:0;30923:26;30939:9;;30923:15;:26::i;:::-;30915:56;;;;-1:-1:-1;;;30915:56:0;;12013:2:1;30915:56:0;;;11995:21:1;12052:2;12032:18;;;12025:30;-1:-1:-1;;;12071:18:1;;;12064:47;12128:18;;30915:56:0;11985:167:1;30915:56:0;36240:22:::1;::::0;36216:10:::1;36200:27;::::0;;;:15:::1;:27;::::0;;;;;36240:22;;;::::1;;;::::0;36200:36:::1;::::0;36230:6;;36200:36:::1;:::i;:::-;:62;;36178:128;;;::::0;-1:-1:-1;;;36178:128:0;;13759:2:1;36178:128:0::1;::::0;::::1;13741:21:1::0;13798:2;13778:18;;;13771:30;-1:-1:-1;;;13817:18:1;;;13810:46;13873:18;;36178:128:0::1;13731:166:1::0;36178:128:0::1;36325:11;::::0;::::1;::::0;::::1;;;36317:43;;;::::0;-1:-1:-1;;;36317:43:0;;17647:2:1;36317:43:0::1;::::0;::::1;17629:21:1::0;17686:2;17666:18;;;17659:30;-1:-1:-1;;;17705:18:1;;;17698:49;17764:18;;36317:43:0::1;17619:169:1::0;36317:43:0::1;36403:13;::::0;36379:11:::1;::::0;36403:13:::1;::::0;;::::1;::::0;36379:20:::1;::::0;36393:6;;36379:20:::1;:::i;:::-;:37;;36371:64;;;::::0;-1:-1:-1;;;36371:64:0;;13062:2:1;36371:64:0::1;::::0;::::1;13044:21:1::0;13101:2;13081:18;;;13074:30;-1:-1:-1;;;13120:18:1;;;13113:44;13174:18;;36371:64:0::1;13034:164:1::0;36371:64:0::1;36448:17;36482:6;36468:11;;:20;;;;:::i;:::-;36448:40;;36520:9;36507;:22;;36499:55;;;::::0;-1:-1:-1;;;36499:55:0;;16469:2:1;36499:55:0::1;::::0;::::1;16451:21:1::0;16508:2;16488:18;;;16481:30;-1:-1:-1;;;16527:18:1;;;16520:50;16587:18;;36499:55:0::1;16441:170:1::0;36499:55:0::1;36583:9;36571;:21;36567:105;;;36617:10;36609:51;36638:21;36650:9:::0;36638::::1;:21;:::i;:::-;36609:51;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;36567:105;36689:9;36684:123;36708:6;36704:1;:10;36684:123;;;36793:1;36777:13;;:17;;;;:::i;:::-;36744:51;::::0;36765:10:::1;::::0;36761:1:::1;::::0;-1:-1:-1;;;;;;;;;;;36744:51:0;36761:1;;36744:51:::1;36716:6;36721:1;36716:6:::0;::::1;:::i;:::-;;;36684:123;;;-1:-1:-1::0;36829:13:0::1;::::0;36819:24:::1;::::0;;;:9:::1;:24;::::0;;;;:37;;-1:-1:-1;;;;;;36819:37:0::1;36846:10;36819:37:::0;;::::1;::::0;;;36867:25:::1;::::0;36885:6;36867:5:::1;:25::i;:::-;36920:6;36905:11;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;36953:10:0::1;36937:27;::::0;;;:15:::1;:27;::::0;;;;:37;;36968:6;;36937:27;:37:::1;::::0;36968:6;;36937:37:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;;36062:920:0:o;37474:162::-;37600:28;37610:4;37616:2;37620:7;37600:9;:28::i;34267:118::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;34346:22:::1;:31:::0;;-1:-1:-1;;34346:31:0::1;;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;34267:118::o;37644:177::-;37774:39;37791:4;37797:2;37801:7;37774:39;;;;;;;;;;;;:16;:39::i;34065:82::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;34127:4:::1;:12:::0;34065:82::o;41515:120::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;41583:44:::1;41601:2;41605:21;41583:17;:44::i;:::-;41515:120:::0;:::o;36990:303::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;37072:9:::1;37067:115;37091:6;37087:1;:10;37067:115;;;37168:1;37152:13;;:17;;;;:::i;:::-;37127:43;::::0;-1:-1:-1;;;;;37127:43:0;::::1;::::0;37144:1:::1;::::0;-1:-1:-1;;;;;;;;;;;37127:43:0;37144:1;;37127:43:::1;37099:6;37104:1;37099:6:::0;::::1;:::i;:::-;;;37067:115;;;-1:-1:-1::0;37204:13:0::1;::::0;37194:24:::1;::::0;;;:9:::1;:24;::::0;;;;:29;;-1:-1:-1;;;;;;37194:29:0::1;-1:-1:-1::0;;;;;37194:29:0;::::1;;::::0;;37234:17:::1;37194:29:::0;37244:6;37234:5:::1;:17::i;:::-;37279:6;37264:11;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;36990:303:0:o;39705:100::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;39779:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;39705:100:::0;:::o;34926:319::-;34990:7;35025:13;;35014:7;:24;35010:74;;-1:-1:-1;35070:1:0;;34926:319;-1:-1:-1;34926:319:0:o;35010:74::-;35109:7;35127:80;35139:1;35134:2;:6;:37;;;;-1:-1:-1;35169:1:0;35144:13;;;:9;:13;;;;;;-1:-1:-1;;;;;35144:13:0;:27;35134:37;35127:80;;;35188:7;35194:1;35188:7;;:::i;:::-;;;35127:80;;;35224:13;;;;:9;:13;;;;;;-1:-1:-1;;;;;35224:13:0;;34926:319;-1:-1:-1;;34926:319:0:o;34155:104::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;34227:15:::1;:24:::0;;-1:-1:-1;;34227:24:0::1;;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;34155:104::o;31806:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20712:85::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;20787:1:::1;20771:18:::0;;-1:-1:-1;;;;;;20771:18:0::1;::::0;;20712:85::o;34598:110::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;34652:11:::1;:18:::0;;-1:-1:-1;;34681:19:0;34652:18;34681:19;;;34598:110::o;32327:87::-;32366:13;32399:7;32392:14;;;;;:::i;35253:801::-;35370:15;;35346:10;35333:24;;;;:12;:24;;;;;;35370:15;;;;;;;35333:33;;35360:6;;35333:33;:::i;:::-;:52;;35311:118;;;;-1:-1:-1;;;35311:118:0;;13759:2:1;35311:118:0;;;13741:21:1;13798:2;13778:18;;;13771:30;-1:-1:-1;;;13817:18:1;;;13810:46;13873:18;;35311:118:0;13731:166:1;35311:118:0;35448:11;;;;;;;35440:47;;;;-1:-1:-1;;;35440:47:0;;19088:2:1;35440:47:0;;;19070:21:1;19127:2;19107:18;;;19100:30;19166:25;19146:18;;;19139:53;19209:18;;35440:47:0;19060:173:1;35440:47:0;35530:13;;35506:11;;35530:13;;;;;35506:20;;35520:6;;35506:20;:::i;:::-;:37;;35498:64;;;;-1:-1:-1;;;35498:64:0;;13062:2:1;35498:64:0;;;13044:21:1;13101:2;13081:18;;;13074:30;-1:-1:-1;;;13120:18:1;;;13113:44;13174:18;;35498:64:0;13034:164:1;35498:64:0;35575:17;35602:6;35595:4;;:13;;;;:::i;:::-;35575:33;;35640:9;35627;:22;;35619:55;;;;-1:-1:-1;;;35619:55:0;;16469:2:1;35619:55:0;;;16451:21:1;16508:2;16488:18;;;16481:30;-1:-1:-1;;;16527:18:1;;;16520:50;16587:18;;35619:55:0;16441:170:1;35619:55:0;35703:9;35691;:21;35687:105;;;35737:10;35729:51;35758:21;35770:9;35758;:21;:::i;:::-;35729:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35687:105;35809:9;35804:123;35828:6;35824:1;:10;35804:123;;;35913:1;35897:13;;:17;;;;:::i;:::-;35864:51;;35885:10;;35881:1;;-1:-1:-1;;;;;;;;;;;35864:51:0;35881:1;;35864:51;35836:6;35841:1;35836:6;;:::i;:::-;;;35804:123;;;-1:-1:-1;35949:13:0;;35939:24;;;;:9;:24;;;;;:37;;-1:-1:-1;;;;;;35939:37:0;35966:10;35939:37;;;;;;35987:25;;36005:6;35987:5;:25::i;33152:185::-;33279:50;33298:10;33310:8;33320;33279:18;:50::i;34511:79::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;34563:11:::1;:19:::0;;-1:-1:-1;;34563:19:0::1;::::0;;34511:79::o;40148:71::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;40196:8:::1;:15:::0;;-1:-1:-1;;40196:15:0::1;40207:4;40196:15;::::0;;40148:71::o;30250:91::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;30317:6:::1;:16:::0;;-1:-1:-1;;;;;;30317:16:0::1;-1:-1:-1::0;;;;;30317:16:0;;;::::1;::::0;;;::::1;::::0;;30250:91::o;31834:27::-;;;;;;;:::i;37829:336::-;37988:28;37998:4;38004:2;38008:7;37988:9;:28::i;:::-;38034:48;38057:4;38063:2;38067:7;38076:5;38034:22;:48::i;:::-;38029:129;;38106:40;;-1:-1:-1;;;38106:40:0;;;;;;;;;;;38029:129;37829:336;;;;:::o;31868:27::-;;;;;;;:::i;39037:660::-;39093:13;39152:11;;39141:7;:22;;39119:119;;;;-1:-1:-1;;;39119:119:0;;17231:2:1;39119:119:0;;;17213:21:1;17270:2;17250:18;;;17243:30;17309:34;17289:18;;;17282:62;-1:-1:-1;;;17360:18:1;;;17353:45;17415:19;;39119:119:0;17203:237:1;39119:119:0;39255:8;;;;39251:70;;39296:13;39289:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39037:660;;;:::o;39251:70::-;39333:28;39364:7;39333:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39433:1;39408:14;39402:28;:32;:287;;;;;;;;;;;;;;;;;39526:14;39567:18;:7;:16;:18::i;:::-;39612:13;39483:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39402:287;39382:307;39037:660;-1:-1:-1;;;39037:660:0:o;40037:103::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;40109:13:::1;:23:::0;;-1:-1:-1;;40109:23:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;40037:103::o;39925:104::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;40001:20;;::::1;::::0;:13:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;33345:214::-:0;-1:-1:-1;;;;;33516:25:0;;;33487:4;33516:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33345:214::o;20603:101::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;20679:5:::1;:17:::0;;-1:-1:-1;;;;;;20679:17:0::1;-1:-1:-1::0;;;;;20679:17:0;;;::::1;::::0;;;::::1;::::0;;20603:101::o;39813:104::-;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;39889:20;;::::1;::::0;:13:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;41643:153::-:0;20545:5;;-1:-1:-1;;;;;20545:5:0;20531:10;:19;20523:52;;;;-1:-1:-1;;;20523:52:0;;;;;;;:::i;:::-;41749:38:::1;::::0;-1:-1:-1;;;41749:38:0;;41781:4:::1;41749:38;::::0;::::1;9805:51:1::0;-1:-1:-1;;;;;41722:22:0;::::1;::::0;::::1;::::0;41745:2;;41722:22;;41749:23:::1;::::0;9778:18:1;;41749:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41722:66;::::0;-1:-1:-1;;;;;;41722:66:0::1;::::0;;;;;;-1:-1:-1;;;;;10552:32:1;;;41722:66:0::1;::::0;::::1;10534:51:1::0;10601:18;;;10594:34;10507:18;;41722:66:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;33567:167::-:0;33642:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33642:29:0;-1:-1:-1;;;;;33642:29:0;;;;;;;;:24;;33696:16;33642:24;33696:7;:16::i;:::-;-1:-1:-1;;;;;33687:39:0;;;;;;;;;;;33567:167;;:::o;30649:139::-;30774:6;;30718:4;;-1:-1:-1;;;;;30774:6:0;30742:28;30760:9;;30742:17;:28::i;:::-;-1:-1:-1;;;;;30742:38:0;;;30649:139;-1:-1:-1;;;30649:139:0:o;37301:165::-;-1:-1:-1;;;;;37364:13:0;;;;;;:9;:13;;;;;:23;;37381:6;;37364:13;:23;;37381:6;;37364:23;:::i;:::-;;;;-1:-1:-1;;;;;;;37398:16:0;;;;;;:12;:16;;;;;:26;;37418:6;;37398:16;:26;;37418:6;;37398:26;:::i;:::-;;;;;;;;37452:6;37435:13;;:23;;;;;;;:::i;38173:856::-;38289:16;38308;38316:7;38308;:16::i;:::-;38289:35;;38353:2;-1:-1:-1;;;;;38345:10:0;:4;-1:-1:-1;;;;;38345:10:0;;;38337:54;;;;-1:-1:-1;;;38337:54:0;;19440:2:1;38337:54:0;;;19422:21:1;19479:2;19459:18;;;19452:30;19518:33;19498:18;;;19491:61;19569:18;;38337:54:0;19412:181:1;38337:54:0;38418:8;-1:-1:-1;;;;;38410:16:0;:4;-1:-1:-1;;;;;38410:16:0;;38402:49;;;;-1:-1:-1;;;38402:49:0;;15292:2:1;38402:49:0;;;15274:21:1;15331:2;15311:18;;;15304:30;-1:-1:-1;;;15350:18:1;;;15343:50;15410:18;;38402:49:0;15264:170:1;38402:49:0;38484:10;-1:-1:-1;;;;;38484:22:0;;;;:81;;;38527:38;38544:8;38554:10;38527:16;:38::i;:::-;38484:136;;;-1:-1:-1;38610:10:0;38586:20;38598:7;38586:11;:20::i;:::-;-1:-1:-1;;;;;38586:34:0;;38484:136;38462:199;;;;-1:-1:-1;;;38462:199:0;;18746:2:1;38462:199:0;;;18728:21:1;18785:2;18765:18;;;18758:30;-1:-1:-1;;;18804:18:1;;;18797:43;18857:18;;38462:199:0;18718:163:1;38462:199:0;38674:29;38691:1;38695:7;38674:8;:29::i;:::-;38716:18;;;;:9;:18;;;;;:23;;-1:-1:-1;;;;;;38716:23:0;-1:-1:-1;;;;;38716:23:0;;;;;38769:11;38716:18;-1:-1:-1;38769:11:0;:::i;:::-;38826:1;38797:17;;;:9;:17;;;;;;38752:28;;-1:-1:-1;;;;;;38797:17:0;:31;:57;;;;;38841:13;;38832:6;:22;38797:57;38793:118;;;38871:17;;;;:9;:17;;;;;:28;;-1:-1:-1;;;;;;38871:28:0;-1:-1:-1;;;;;38871:28:0;;;;;38793:118;-1:-1:-1;;;;;38923:19:0;;;;;;:9;:19;;;;;:24;;38946:1;;38923:19;:24;;38946:1;;38923:24;:::i;:::-;;;;-1:-1:-1;;;;;;;38958:13:0;;;;;;:9;:13;;;;;:18;;38975:1;;38958:13;:18;;38975:1;;38958:18;:::i;:::-;;;;-1:-1:-1;;38994:27:0;;39013:7;;-1:-1:-1;;;;;38994:27:0;;;;;;;;-1:-1:-1;;;;;;;;;;;38994:27:0;;;;38173:856;;;;;:::o;4657:317::-;4772:6;4747:21;:31;;4739:73;;;;-1:-1:-1;;;4739:73:0;;14934:2:1;4739:73:0;;;14916:21:1;14973:2;14953:18;;;14946:30;15012:31;14992:18;;;14985:59;15061:18;;4739:73:0;14906:179:1;4739:73:0;4826:12;4844:9;-1:-1:-1;;;;;4844:14:0;4866:6;4844:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4825:52;;;4896:7;4888:78;;;;-1:-1:-1;;;4888:78:0;;14104:2:1;4888:78:0;;;14086:21:1;14143:2;14123:18;;;14116:30;14182:34;14162:18;;;14155:62;14253:28;14233:18;;;14226:56;14299:19;;4888:78:0;14076:248:1;33742:315:0;33897:8;-1:-1:-1;;;;;33888:17:0;:5;-1:-1:-1;;;;;33888:17:0;;;33880:55;;;;-1:-1:-1;;;33880:55:0;;13405:2:1;33880:55:0;;;13387:21:1;13444:2;13424:18;;;13417:30;13483:27;13463:18;;;13456:55;13528:18;;33880:55:0;13377:175:1;33880:55:0;-1:-1:-1;;;;;33946:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33946:46:0;;;;;;;;;;34008:41;;10779::1;;;34008::0;;10752:18:1;34008:41:0;;;;;;;33742:315;;;:::o;40586:921::-;40741:4;-1:-1:-1;;;;;40762:13:0;;3691:19;:23;40758:742;;40815:173;;-1:-1:-1;;;40815:173:0;;-1:-1:-1;;;;;40815:36:0;;;;;:173;;40874:10;;40907:4;;40934:7;;40964:5;;40815:173;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40815:173:0;;;;;;;;-1:-1:-1;;40815:173:0;;;;;;;;;;;;:::i;:::-;;;40794:651;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41175:13:0;;41171:259;;41225:40;;-1:-1:-1;;;41225:40:0;;;;;;;;;;;41171:259;41380:6;41374:13;41365:6;41361:2;41357:15;41350:38;40794:651;-1:-1:-1;;;;;;41052:55:0;-1:-1:-1;;;41052:55:0;;-1:-1:-1;41045:62:0;;40758:742;-1:-1:-1;41484:4:0;40758:742;40586:921;;;;;;:::o;402:723::-;458:13;679:10;675:53;;-1:-1:-1;;706:10:0;;;;;;;;;;;;-1:-1:-1;;;706:10:0;;;;;402:723::o;675:53::-;753:5;738:12;794:78;801:9;;794:78;;827:8;;;;:::i;:::-;;-1:-1:-1;850:10:0;;-1:-1:-1;858:2:0;850:10;;:::i;:::-;;;794:78;;;882:19;914:6;904:17;;;;;;-1:-1:-1;;;904:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;904:17:0;;882:39;;932:154;939:10;;932:154;;966:11;976:1;966:11;;:::i;:::-;;-1:-1:-1;1035:10:0;1043:2;1035:5;:10;:::i;:::-;1022:24;;:2;:24;:::i;:::-;1009:39;;992:6;999;992:14;;;;;;-1:-1:-1;;;992:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;992:56:0;;;;;;;;-1:-1:-1;1063:11:0;1072:2;1063:11;;:::i;:::-;;;932:154;;30349:292;30470:34;;-1:-1:-1;;30487:4:0;7417:2:1;7413:15;;;7409:24;;30470:34:0;;;7397:37:1;30493:10:0;7468:15:1;;7464:24;7450:12;;;7443:46;30425:7:0;;;;7505:12:1;;30470:34:0;;;-1:-1:-1;;30470:34:0;;;;;;;;;;30460:45;;30470:34;30460:45;;;;9306:66:1;30533:58:0;;;9294:79:1;;;;9389:12;;;9382:28;;;30460:45:0;-1:-1:-1;9426:12:1;;30533:58:0;;;;;;;;;;;;30523:69;;;;;;30516:76;;30610:23;30623:9;;30610:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30610:4:0;;:23;-1:-1:-1;;30610:12:0;:23;-1:-1:-1;30610:23:0:i;25043:231::-;25121:7;25142:17;25161:18;25183:27;25194:4;25200:9;25183:10;:27::i;:::-;25141:69;;;;25221:18;25233:5;25221:11;:18::i;:::-;-1:-1:-1;25257:9:0;25043:231;-1:-1:-1;;;25043:231:0:o;22933:1308::-;23014:7;23023:12;23248:9;:16;23268:2;23248:22;23244:990;;;23544:4;23529:20;;23523:27;23594:4;23579:20;;23573:27;23652:4;23637:20;;23631:27;23287:9;23623:36;23695:25;23706:4;23623:36;23523:27;23573;23695:10;:25::i;:::-;23688:32;;;;;;;;;23244:990;23742:9;:16;23762:2;23742:22;23738:496;;;24017:4;24002:20;;23996:27;24068:4;24053:20;;24047:27;24110:23;24121:4;23996:27;24047;24110:10;:23::i;:::-;24103:30;;;;;;;;23738:496;-1:-1:-1;24182:1:0;;-1:-1:-1;24186:35:0;23738:496;22933:1308;;;;;:::o;21204:643::-;21282:20;21273:5;:29;;;;;;-1:-1:-1;;;21273:29:0;;;;;;;;;;21269:571;;;21204:643;:::o;21269:571::-;21380:29;21371:5;:38;;;;;;-1:-1:-1;;;21371:38:0;;;;;;;;;;21367:473;;;21426:34;;-1:-1:-1;;;21426:34:0;;11660:2:1;21426:34:0;;;11642:21:1;11699:2;11679:18;;;11672:30;11738:26;11718:18;;;11711:54;11782:18;;21426:34:0;11632:174:1;21367:473:0;21491:35;21482:5;:44;;;;;;-1:-1:-1;;;21482:44:0;;;;;;;;;;21478:362;;;21543:41;;-1:-1:-1;;;21543:41:0;;12359:2:1;21543:41:0;;;12341:21:1;12398:2;12378:18;;;12371:30;12437:33;12417:18;;;12410:61;12488:18;;21543:41:0;12331:181:1;21478:362:0;21615:30;21606:5;:39;;;;;;-1:-1:-1;;;21606:39:0;;;;;;;;;;21602:238;;;21662:44;;-1:-1:-1;;;21662:44:0;;14531:2:1;21662:44:0;;;14513:21:1;14570:2;14550:18;;;14543:30;14609:34;14589:18;;;14582:62;-1:-1:-1;;;14660:18:1;;;14653:32;14702:19;;21662:44:0;14503:224:1;21602:238:0;21737:30;21728:5;:39;;;;;;-1:-1:-1;;;21728:39:0;;;;;;;;;;21724:116;;;21784:44;;-1:-1:-1;;;21784:44:0;;16066:2:1;21784:44:0;;;16048:21:1;16105:2;16085:18;;;16078:30;16144:34;16124:18;;;16117:62;-1:-1:-1;;;16195:18:1;;;16188:32;16237:19;;21784:44:0;16038:224:1;26495:1632:0;26626:7;;27560:66;27547:79;;27543:163;;;-1:-1:-1;27659:1:0;;-1:-1:-1;27663:30:0;27643:51;;27543:163;27720:1;:7;;27725:2;27720:7;;:18;;;;;27731:1;:7;;27736:2;27731:7;;27720:18;27716:102;;;-1:-1:-1;27771:1:0;;-1:-1:-1;27775:30:0;27755:51;;27716:102;27932:24;;;27915:14;27932:24;;;;;;;;;11058:25:1;;;11131:4;11119:17;;11099:18;;;11092:45;;;;11153:18;;;11146:34;;;11196:18;;;11189:34;;;27932:24:0;;11030:19:1;;27932:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;27932:24:0;;-1:-1:-1;;27932:24:0;;;-1:-1:-1;;;;;;;27971:20:0;;27967:103;;28024:1;28028:29;28008:50;;;;;;;27967:103;28090:6;-1:-1:-1;28098:20:0;;-1:-1:-1;26495:1632:0;;;;;;;;:::o;25537:344::-;25651:7;;-1:-1:-1;;;;;25697:80:0;;25651:7;25804:25;25820:3;25805:18;;;25827:2;25804:25;:::i;:::-;25788:42;;25848:25;25859:4;25865:1;25868;25871;25848:10;:25::i;:::-;25841:32;;;;;;25537:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:257::-;709:6;762:2;750:9;741:7;737:23;733:32;730:2;;;783:6;775;768:22;730:2;827:9;814:23;846:31;871:5;846:31;:::i;1182:398::-;1250:6;1258;1311:2;1299:9;1290:7;1286:23;1282:32;1279:2;;;1332:6;1324;1317:22;1279:2;1376:9;1363:23;1395:31;1420:5;1395:31;:::i;:::-;1445:5;-1:-1:-1;1502:2:1;1487:18;;1474:32;1515:33;1474:32;1515:33;:::i;:::-;1567:7;1557:17;;;1269:311;;;;;:::o;1585:466::-;1662:6;1670;1678;1731:2;1719:9;1710:7;1706:23;1702:32;1699:2;;;1752:6;1744;1737:22;1699:2;1796:9;1783:23;1815:31;1840:5;1815:31;:::i;:::-;1865:5;-1:-1:-1;1922:2:1;1907:18;;1894:32;1935:33;1894:32;1935:33;:::i;:::-;1689:362;;1987:7;;-1:-1:-1;;;2041:2:1;2026:18;;;;2013:32;;1689:362::o;2056:824::-;2151:6;2159;2167;2175;2228:3;2216:9;2207:7;2203:23;2199:33;2196:2;;;2250:6;2242;2235:22;2196:2;2294:9;2281:23;2313:31;2338:5;2313:31;:::i;:::-;2363:5;-1:-1:-1;2420:2:1;2405:18;;2392:32;2433:33;2392:32;2433:33;:::i;:::-;2485:7;-1:-1:-1;2539:2:1;2524:18;;2511:32;;-1:-1:-1;2594:2:1;2579:18;;2566:32;2621:18;2610:30;;2607:2;;;2658:6;2650;2643:22;2607:2;2686:22;;2739:4;2731:13;;2727:27;-1:-1:-1;2717:2:1;;2773:6;2765;2758:22;2717:2;2801:73;2866:7;2861:2;2848:16;2843:2;2839;2835:11;2801:73;:::i;:::-;2791:83;;;2186:694;;;;;;;:::o;2885:392::-;2950:6;2958;3011:2;2999:9;2990:7;2986:23;2982:32;2979:2;;;3032:6;3024;3017:22;2979:2;3076:9;3063:23;3095:31;3120:5;3095:31;:::i;:::-;3145:5;-1:-1:-1;3202:2:1;3187:18;;3174:32;3215:30;3174:32;3215:30;:::i;3282:325::-;3350:6;3358;3411:2;3399:9;3390:7;3386:23;3382:32;3379:2;;;3432:6;3424;3417:22;3379:2;3476:9;3463:23;3495:31;3520:5;3495:31;:::i;:::-;3545:5;3597:2;3582:18;;;;3569:32;;-1:-1:-1;;;3369:238:1:o;3612:255::-;3679:6;3732:2;3720:9;3711:7;3707:23;3703:32;3700:2;;;3753:6;3745;3738:22;3700:2;3790:9;3784:16;3809:28;3831:5;3809:28;:::i;3872:255::-;3930:6;3983:2;3971:9;3962:7;3958:23;3954:32;3951:2;;;4004:6;3996;3989:22;3951:2;4048:9;4035:23;4067:30;4091:5;4067:30;:::i;4132:259::-;4201:6;4254:2;4242:9;4233:7;4229:23;4225:32;4222:2;;;4275:6;4267;4260:22;4222:2;4312:9;4306:16;4331:30;4355:5;4331:30;:::i;4396:480::-;4465:6;4518:2;4506:9;4497:7;4493:23;4489:32;4486:2;;;4539:6;4531;4524:22;4486:2;4584:9;4571:23;4617:18;4609:6;4606:30;4603:2;;;4654:6;4646;4639:22;4603:2;4682:22;;4735:4;4727:13;;4723:27;-1:-1:-1;4713:2:1;;4769:6;4761;4754:22;4713:2;4797:73;4862:7;4857:2;4844:16;4839:2;4835;4831:11;4797:73;:::i;4881:292::-;4939:6;4992:2;4980:9;4971:7;4967:23;4963:32;4960:2;;;5013:6;5005;4998:22;4960:2;5057:9;5044:23;5107:6;5100:5;5096:18;5089:5;5086:29;5076:2;;5134:6;5126;5119:22;5178:190;5237:6;5290:2;5278:9;5269:7;5265:23;5261:32;5258:2;;;5311:6;5303;5296:22;5258:2;-1:-1:-1;5339:23:1;;5248:120;-1:-1:-1;5248:120:1:o;5373:194::-;5443:6;5496:2;5484:9;5475:7;5471:23;5467:32;5464:2;;;5517:6;5509;5502:22;5464:2;-1:-1:-1;5545:16:1;;5454:113;-1:-1:-1;5454:113:1:o;5572:325::-;5640:6;5648;5701:2;5689:9;5680:7;5676:23;5672:32;5669:2;;;5722:6;5714;5707:22;5669:2;5763:9;5750:23;5740:33;;5823:2;5812:9;5808:18;5795:32;5836:31;5861:5;5836:31;:::i;5902:709::-;5981:6;5989;5997;6050:2;6038:9;6029:7;6025:23;6021:32;6018:2;;;6071:6;6063;6056:22;6018:2;6112:9;6099:23;6089:33;;6173:2;6162:9;6158:18;6145:32;6196:18;6237:2;6229:6;6226:14;6223:2;;;6258:6;6250;6243:22;6223:2;6301:6;6290:9;6286:22;6276:32;;6346:7;6339:4;6335:2;6331:13;6327:27;6317:2;;6373:6;6365;6358:22;6317:2;6418;6405:16;6444:2;6436:6;6433:14;6430:2;;;6465:6;6457;6450:22;6430:2;6515:7;6510:2;6501:6;6497:2;6493:15;6489:24;6486:37;6483:2;;;6541:6;6533;6526:22;6483:2;6577;6573;6569:11;6559:21;;6599:6;6589:16;;;;;6008:603;;;;;:::o;6616:289::-;6673:6;6726:2;6714:9;6705:7;6701:23;6697:32;6694:2;;;6747:6;6739;6732:22;6694:2;6791:9;6778:23;6841:4;6834:5;6830:16;6823:5;6820:27;6810:2;;6866:6;6858;6851:22;6910:257;6951:3;6989:5;6983:12;7016:6;7011:3;7004:19;7032:63;7088:6;7081:4;7076:3;7072:14;7065:4;7058:5;7054:16;7032:63;:::i;:::-;7149:2;7128:15;-1:-1:-1;;7124:29:1;7115:39;;;;7156:4;7111:50;;6959:208;-1:-1:-1;;6959:208:1:o;7528:1531::-;7752:3;7790:6;7784:13;7816:4;7829:51;7873:6;7868:3;7863:2;7855:6;7851:15;7829:51;:::i;:::-;7943:13;;7902:16;;;;7965:55;7943:13;7902:16;7987:15;;;7965:55;:::i;:::-;8111:13;;8042:20;;;8082:3;;8171:1;8193:18;;;;8246;;;;8273:2;;8351:4;8341:8;8337:19;8325:31;;8273:2;8414;8404:8;8401:16;8381:18;8378:40;8375:2;;;-1:-1:-1;;;8441:33:1;;8497:4;8494:1;8487:15;8527:4;8448:3;8515:17;8375:2;8558:18;8585:110;;;;8709:1;8704:330;;;;8551:483;;8585:110;-1:-1:-1;;8620:24:1;;8606:39;;8665:20;;;;-1:-1:-1;8585:110:1;;8704:330;20020:4;20039:17;;;20089:4;20073:21;;8799:3;8815:169;8829:8;8826:1;8823:15;8815:169;;;8911:14;;8896:13;;;8889:37;8954:16;;;;8846:10;;8815:169;;;8819:3;;9015:8;9008:5;9004:20;8997:27;;8551:483;-1:-1:-1;9050:3:1;;7760:1299;-1:-1:-1;;;;;;;;;;;7760:1299:1:o;9867:488::-;-1:-1:-1;;;;;10136:15:1;;;10118:34;;10188:15;;10183:2;10168:18;;10161:43;10235:2;10220:18;;10213:34;;;10283:3;10278:2;10263:18;;10256:31;;;10061:4;;10304:45;;10329:19;;10321:6;10304:45;:::i;:::-;10296:53;10070:285;-1:-1:-1;;;;;;10070:285:1:o;11234:219::-;11383:2;11372:9;11365:21;11346:4;11403:44;11443:2;11432:9;11428:18;11420:6;11403:44;:::i;18195:344::-;18397:2;18379:21;;;18436:2;18416:18;;;18409:30;-1:-1:-1;;;18470:2:1;18455:18;;18448:50;18530:2;18515:18;;18369:170::o;20105:128::-;20145:3;20176:1;20172:6;20169:1;20166:13;20163:2;;;20182:18;;:::i;:::-;-1:-1:-1;20218:9:1;;20153:80::o;20238:120::-;20278:1;20304;20294:2;;20309:18;;:::i;:::-;-1:-1:-1;20343:9:1;;20284:74::o;20363:168::-;20403:7;20469:1;20465;20461:6;20457:14;20454:1;20451:21;20446:1;20439:9;20432:17;20428:45;20425:2;;;20476:18;;:::i;:::-;-1:-1:-1;20516:9:1;;20415:116::o;20536:125::-;20576:4;20604:1;20601;20598:8;20595:2;;;20609:18;;:::i;:::-;-1:-1:-1;20646:9:1;;20585:76::o;20666:258::-;20738:1;20748:113;20762:6;20759:1;20756:13;20748:113;;;20838:11;;;20832:18;20819:11;;;20812:39;20784:2;20777:10;20748:113;;;20879:6;20876:1;20873:13;20870:2;;;-1:-1:-1;;20914:1:1;20896:16;;20889:27;20719:205::o;20929:380::-;21008:1;21004:12;;;;21051;;;21072:2;;21126:4;21118:6;21114:17;21104:27;;21072:2;21179;21171:6;21168:14;21148:18;21145:38;21142:2;;;21225:10;21220:3;21216:20;21213:1;21206:31;21260:4;21257:1;21250:15;21288:4;21285:1;21278:15;21142:2;;20984:325;;;:::o;21314:135::-;21353:3;-1:-1:-1;;21374:17:1;;21371:2;;;21394:18;;:::i;:::-;-1:-1:-1;21441:1:1;21430:13;;21361:88::o;21454:112::-;21486:1;21512;21502:2;;21517:18;;:::i;:::-;-1:-1:-1;21551:9:1;;21492:74::o;21571:127::-;21632:10;21627:3;21623:20;21620:1;21613:31;21663:4;21660:1;21653:15;21687:4;21684:1;21677:15;21703:127;21764:10;21759:3;21755:20;21752:1;21745:31;21795:4;21792:1;21785:15;21819:4;21816:1;21809:15;21835:127;21896:10;21891:3;21887:20;21884:1;21877:31;21927:4;21924:1;21917:15;21951:4;21948:1;21941:15;21967:131;-1:-1:-1;;;;;22042:31:1;;22032:42;;22022:2;;22088:1;22085;22078:12;22103:118;22189:5;22182:13;22175:21;22168:5;22165:32;22155:2;;22211:1;22208;22201:12;22226:131;-1:-1:-1;;;;;;22300:32:1;;22290:43;;22280:2;;22347:1;22344;22337:12
Swarm Source
ipfs://b59e4244d9b964560984b0664929937de4efb7138ad8f93b9ffa63270b6f7e07
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.