ERC-721
Overview
Max Total Supply
333 QSPY
Holders
122
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
20 QSPYLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
QuantumCollective
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-19 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } 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); } pragma solidity ^0.8.0; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); } pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } } 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; } pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } 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); } 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); } pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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); } } 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; } } pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {_grantRole} to track enumerable memberships */ function _grantRole(bytes32 role, address account) internal virtual override { super._grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {_revokeRole} to track enumerable memberships */ function _revokeRole(bytes32 role, address account) internal virtual override { super._revokeRole(role, account); _roleMembers[role].remove(account); } } pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } pragma solidity ^0.8.0; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + totalReleased(); uint256 payment = _pendingPayment(account, totalReceived, released(account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); uint256 payment = _pendingPayment(account, totalReceived, released(token, account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _erc20Released[token][account] += payment; _erc20TotalReleased[token] += payment; SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } } pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } pragma solidity ^0.8.13; //import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } } pragma solidity ^0.8.13; //import {OperatorFilterer} from "./OperatorFilterer.sol"; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } contract QuantumCollective is ERC721A, ReentrancyGuard, Ownable, PaymentSplitter, DefaultOperatorFilterer { function setApprovalForAll(address operator, bool approved) public override(ERC721A) onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public override(ERC721A) onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public override(ERC721A) onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override(ERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override(ERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } // Minting Variables uint256 public mintPrice = 0.01 ether; uint public maxFreePurchase = 1; uint256 public maxPurchase = 3; uint256 public maxSupply = 333; uint256 public maxPublicMints = 50; uint256 public publicMints = 0; address[] public _payees = [ 0xCe7a3a51E2170Ecd47BdF45422420614D20672Bc, // gas pay back 0x13Ede5b6f7d3da059Ae4b6c7ad0A8c254C70F6Ca // contract wallet ]; uint256[] private _shares = [50, 50]; // Sale Status bool public saleIsActive = false; // mappings mapping(address => uint) public addressesThatMinted; // Metadata string _baseTokenURI = "ipfs://bafybeif5zbzl6blykoyjpg5wabyxxjsyiwtkp6p7v6cmxolxvpncbaqvui/"; // Events event SaleActivation(bool isActive); constructor() ERC721A("Project Vendetta", "QSPY") PaymentSplitter(_payees, _shares) { freelist[0x4e4CC29ab82cf8aa4EcD3578A26409E57793de4b].exists = true; freelist[0xCe7a3a51E2170Ecd47BdF45422420614D20672Bc].exists = true; freelist[0x13Ede5b6f7d3da059Ae4b6c7ad0A8c254C70F6Ca].exists = true; } function OnWhiteList(address walletaddr) public view returns (bool) { if (freelist[walletaddr].exists){ return true; } else{ return false; } } struct Freelistaddr { uint256 presalemints; bool exists; } mapping(address => Freelistaddr) public freelist; function addToFreeList (address[] memory newWalletaddr) public onlyOwner{ for (uint256 i = 0; i<newWalletaddr.length;i++){ freelist[newWalletaddr[i]].exists = true; } } function freelistMint(uint256 numberOfTokens) public payable nonReentrant { require(freelist[msg.sender].exists == true, "This Wallet is not able mint for presale"); require(numberOfTokens > 0 && totalSupply() + numberOfTokens <= maxSupply, "Purchase would exceed current max supply"); require(freelist[msg.sender].presalemints + numberOfTokens <= maxFreePurchase,"This Wallet has already minted its reserve"); freelist[msg.sender].presalemints += numberOfTokens; _safeMint(msg.sender, numberOfTokens); } // Minting function mint(uint256 _count) external payable nonReentrant { require(saleIsActive, "SALE_INACTIVE"); require(((addressesThatMinted[msg.sender] + _count) ) <= maxPurchase , "this would exceed mint max allowance"); require( totalSupply() + _count <= maxSupply, "SOLD_OUT" ); require( publicMints + _count <= maxPublicMints, "PUBLIC_SOLD_OUT" ); require( mintPrice * _count <= msg.value, "INCORRECT_ETHER_VALUE" ); publicMints += _count; _safeMint(msg.sender, _count); addressesThatMinted[msg.sender] += _count; } function toggleSaleStatus() external onlyOwner { saleIsActive = !saleIsActive; emit SaleActivation(saleIsActive); } function setMintPrice(uint256 _mintPrice) external onlyOwner { mintPrice = _mintPrice; } function setMaxPurchase(uint256 _maxPurchase) external onlyOwner { maxPurchase = _maxPurchase; } function setMaxPublicMints(uint256 _maxPublicMints) external onlyOwner { maxPublicMints = _maxPublicMints; } // Payment function claim() external { release(payable(msg.sender)); } function getWalletOfOwner(address owner) external view returns (uint256[] memory) { unchecked { uint256[] memory a = new uint256[](balanceOf(owner)); uint256 end = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; for (uint256 i; i < end; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { a[tokenIdsIdx++] = i; } } return a; } } function ownerMint(address _to, uint256 _count) external onlyOwner { require( totalSupply() + _count <= maxSupply, "SOLD_OUT" ); _safeMint(_to, _count); } function setBaseURI(string memory baseURI) external onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 tokenId) public view override returns (string memory){ return string(abi.encodePacked(super.tokenURI(tokenId), ".json")); } function _startTokenId() internal view virtual override returns (uint256){ return 1; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"SaleActivation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"walletaddr","type":"address"}],"name":"OnWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_payees","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"newWalletaddr","type":"address[]"}],"name":"addToFreeList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressesThatMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freelist","outputs":[{"internalType":"uint256","name":"presalemints","type":"uint256"},{"internalType":"bool","name":"exists","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freelistMint","outputs":[],"stateMutability":"payable","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"}],"name":"getWalletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"maxFreePurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","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":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPublicMints","type":"uint256"}],"name":"setMaxPublicMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPurchase","type":"uint256"}],"name":"setMaxPurchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
662386f26fc100006011556001601255600360135561014d6014556032601555600060165560c060405273ce7a3a51e2170ecd47bdf45422420614d20672bc60809081527313ede5b6f7d3da059ae4b6c7ad0a8c254c70f6ca60a0526200006b90601790600262000779565b50604080518082019091526032808252602082015262000090906018906002620007e3565b506019805460ff191690556040805160808101909152604380825262003bb16020830139601b90620000c39082620008e2565b50348015620000d157600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb6600160178054806020026020016040519081016040528092919081815260200182805480156200014157602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000122575b505050505060188054806020026020016040519081016040528092919081815260200182805480156200019457602002820191906000526020600020905b8154815260200190600101908083116200017f575b50505050506040518060400160405280601081526020016f50726f6a6563742056656e646574746160801b815250604051806040016040528060048152602001635153505960e01b8152508160029081620001f09190620008e2565b506003620001ff8282620008e2565b50600160005550506001600855620002173362000539565b8051825114620002895760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002dc5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000280565b60005b8251811015620003485762000333838281518110620003025762000302620009ae565b60200260200101518383815181106200031f576200031f620009ae565b60200260200101516200058b60201b60201c565b806200033f81620009da565b915050620002df565b5050506daaeb6d7670e522a718067333cd4e3b1562000490578015620003de57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620003bf57600080fd5b505af1158015620003d4573d6000803e3d6000fd5b5050505062000490565b6001600160a01b038216156200042f5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620003a4565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200047657600080fd5b505af11580156200048b573d6000803e3d6000fd5b505050505b5050601c6020527fbf51e31d71d21127b96e8765f67580b7a37f7f5d7990b10f715aaf054d9281a48054600160ff1991821681179092557fd34aa33b530d60b5566cf463e903df4b980fd1a1e24327984718ed2f91947f2f80548216831790557313ede5b6f7d3da059ae4b6c7ad0a8c254c70f6ca6000527f18aad81d62e6628a858811592198d162eb70f2037aeca313b1c53e0c33c80b898054909116909117905562000a12565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005f85760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000280565b600081116200064a5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000280565b6001600160a01b0382166000908152600c602052604090205415620006c65760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000280565b600e8054600181019091557fbb7b4a454dc3493923482f07822329ed19e8244eff582cc204f8554c3620c3fd0180546001600160a01b0319166001600160a01b0384169081179091556000908152600c60205260409020819055600a5462000730908290620009f6565b600a55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054828255906000526020600020908101928215620007d1579160200282015b82811115620007d157825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200079a565b50620007df92915062000826565b5090565b828054828255906000526020600020908101928215620007d1579160200282015b82811115620007d1578251829060ff1690559160200191906001019062000804565b5b80821115620007df576000815560010162000827565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200086857607f821691505b6020821081036200088957634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620008dd57600081815260208120601f850160051c81016020861015620008b85750805b601f850160051c820191505b81811015620008d957828155600101620008c4565b5050505b505050565b81516001600160401b03811115620008fe57620008fe6200083d565b62000916816200090f845462000853565b846200088f565b602080601f8311600181146200094e5760008415620009355750858301515b600019600386901b1c1916600185901b178555620008d9565b600085815260208120601f198616915b828110156200097f578886015182559484019460019091019084016200095e565b50858210156200099e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201620009ef57620009ef620009c4565b5060010190565b8082018082111562000a0c5762000a0c620009c4565b92915050565b61318f8062000a226000396000f3fe6080604052600436106102b25760003560e01c80637118974211610175578063ab2fdb0c116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c5146108f3578063eb8d24441461093c578063f2fde38b14610956578063f4a0a5281461097657600080fd5b8063d5abeb0114610892578063d79779b2146108a8578063e33b7de3146108de57600080fd5b8063ab2fdb0c146107c6578063b88d4fde146107f3578063c7b0dcbc14610813578063c7d4815e14610829578063c87b56dd1461083c578063ce7c2ac21461085c57600080fd5b806395d89b411161012e57806395d89b4114610712578063977b055b146107275780639852595c1461073d578063a0712d6814610773578063a22cb46514610786578063a93fef3b146107a657600080fd5b80637118974214610633578063715018a6146106535780637227548b1461066857806377bf1411146106b45780638b83209b146106d45780638da5cb5b146106f457600080fd5b806341f434341161021957806355f804b3116101d257806355f804b31461057a578063627fdeab1461059a5780636352211e146105c75780636817c76c146105e75780636f07a8b5146105fd57806370a082311461061357600080fd5b806341f43434146104c357806342842e0e146104e557806344f5b5cb14610505578063484b973c1461052557806348b75044146105455780634e71d92d1461056557600080fd5b8063191655871161026b57806319165587146103f25780632336296a1461041257806323b872dd14610428578063283248be146104485780633a98ef3914610468578063406072a91461047d57600080fd5b806301ffc9a714610300578063049c5c491461033557806306fdde031461034c578063081812fc1461036e578063095ea7b3146103a657806318160ddd146103c657600080fd5b366102fb577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561030c57600080fd5b5061032061031b366004612982565b610996565b60405190151581526020015b60405180910390f35b34801561034157600080fd5b5061034a6109e8565b005b34801561035857600080fd5b50610361610a68565b60405161032c91906129ef565b34801561037a57600080fd5b5061038e610389366004612a02565b610afa565b6040516001600160a01b03909116815260200161032c565b3480156103b257600080fd5b5061034a6103c1366004612a30565b610b3e565b3480156103d257600080fd5b506103e4600154600054036000190190565b60405190815260200161032c565b3480156103fe57600080fd5b5061034a61040d366004612a5c565b610c07565b34801561041e57600080fd5b506103e460165481565b34801561043457600080fd5b5061034a610443366004612a79565b610d38565b34801561045457600080fd5b5061038e610463366004612a02565b610e11565b34801561047457600080fd5b50600a546103e4565b34801561048957600080fd5b506103e4610498366004612aba565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b3480156104cf57600080fd5b5061038e6daaeb6d7670e522a718067333cd4e81565b3480156104f157600080fd5b5061034a610500366004612a79565b610e3b565b34801561051157600080fd5b5061034a610520366004612b39565b610f09565b34801561053157600080fd5b5061034a610540366004612a30565b610fa2565b34801561055157600080fd5b5061034a610560366004612aba565b61102e565b34801561057157600080fd5b5061034a61120a565b34801561058657600080fd5b5061034a610595366004612c41565b611215565b3480156105a657600080fd5b506105ba6105b5366004612a5c565b61124b565b60405161032c9190612c89565b3480156105d357600080fd5b5061038e6105e2366004612a02565b611373565b3480156105f357600080fd5b506103e460115481565b34801561060957600080fd5b506103e460125481565b34801561061f57600080fd5b506103e461062e366004612a5c565b611385565b34801561063f57600080fd5b5061034a61064e366004612a02565b6113d3565b34801561065f57600080fd5b5061034a611402565b34801561067457600080fd5b5061069f610683366004612a5c565b601c602052600090815260409020805460019091015460ff1682565b6040805192835290151560208301520161032c565b3480156106c057600080fd5b506103206106cf366004612a5c565b611436565b3480156106e057600080fd5b5061038e6106ef366004612a02565b61146a565b34801561070057600080fd5b506009546001600160a01b031661038e565b34801561071e57600080fd5b5061036161149a565b34801561073357600080fd5b506103e460135481565b34801561074957600080fd5b506103e4610758366004612a5c565b6001600160a01b03166000908152600d602052604090205490565b61034a610781366004612a02565b6114a9565b34801561079257600080fd5b5061034a6107a1366004612cdb565b611706565b3480156107b257600080fd5b5061034a6107c1366004612a02565b6117ca565b3480156107d257600080fd5b506103e46107e1366004612a5c565b601a6020526000908152604090205481565b3480156107ff57600080fd5b5061034a61080e366004612d09565b6117f9565b34801561081f57600080fd5b506103e460155481565b61034a610837366004612a02565b6118d5565b34801561084857600080fd5b50610361610857366004612a02565b611ae4565b34801561086857600080fd5b506103e4610877366004612a5c565b6001600160a01b03166000908152600c602052604090205490565b34801561089e57600080fd5b506103e460145481565b3480156108b457600080fd5b506103e46108c3366004612a5c565b6001600160a01b03166000908152600f602052604090205490565b3480156108ea57600080fd5b50600b546103e4565b3480156108ff57600080fd5b5061032061090e366004612aba565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561094857600080fd5b506019546103209060ff1681565b34801561096257600080fd5b5061034a610971366004612a5c565b611b15565b34801561098257600080fd5b5061034a610991366004612a02565b611bb0565b60006001600160e01b031982166380ac58cd60e01b14806109c757506001600160e01b03198216635b5e139f60e01b145b806109e257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6009546001600160a01b03163314610a1b5760405162461bcd60e51b8152600401610a1290612d88565b60405180910390fd5b6019805460ff8082161560ff1990921682179092556040519116151581527f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f9060200160405180910390a1565b606060028054610a7790612dbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa390612dbd565b8015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b5050505050905090565b6000610b0582611bdf565b610b22576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b15610bf857604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610bac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd09190612df7565b610bf857604051633b79c77360e21b81526001600160a01b0382166004820152602401610a12565b610c028383611c18565b505050565b6001600160a01b0381166000908152600c6020526040902054610c3c5760405162461bcd60e51b8152600401610a1290612e14565b6000610c47600b5490565b610c519047612e70565b90506000610c7e8383610c79866001600160a01b03166000908152600d602052604090205490565b611ca0565b905080600003610ca05760405162461bcd60e51b8152600401610a1290612e83565b6001600160a01b0383166000908152600d602052604081208054839290610cc8908490612e70565b9250508190555080600b6000828254610ce19190612e70565b90915550610cf190508382611ce8565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b826daaeb6d7670e522a718067333cd4e3b15610e0057336001600160a01b03821603610d6e57610d69848484611e01565b610e0b565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610dbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de19190612df7565b610e0057604051633b79c77360e21b8152336004820152602401610a12565b610e0b848484611e01565b50505050565b60178181548110610e2157600080fd5b6000918252602090912001546001600160a01b0316905081565b826daaeb6d7670e522a718067333cd4e3b15610efe57336001600160a01b03821603610e6c57610d69848484611e0c565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610ebb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610edf9190612df7565b610efe57604051633b79c77360e21b8152336004820152602401610a12565b610e0b848484611e0c565b6009546001600160a01b03163314610f335760405162461bcd60e51b8152600401610a1290612d88565b60005b8151811015610f9e576001601c6000848481518110610f5757610f57612ece565b6020908102919091018101516001600160a01b03168252810191909152604001600020600101805460ff191691151591909117905580610f9681612ee4565b915050610f36565b5050565b6009546001600160a01b03163314610fcc5760405162461bcd60e51b8152600401610a1290612d88565b60145481610fe1600154600054036000190190565b610feb9190612e70565b11156110245760405162461bcd60e51b815260206004820152600860248201526714d3d31117d3d55560c21b6044820152606401610a12565b610f9e8282611e27565b6001600160a01b0381166000908152600c60205260409020546110635760405162461bcd60e51b8152600401610a1290612e14565b6001600160a01b0382166000908152600f60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa1580156110c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e49190612efd565b6110ee9190612e70565b905060006111278383610c7987876001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b9050806000036111495760405162461bcd60e51b8152600401610a1290612e83565b6001600160a01b03808516600090815260106020908152604080832093871683529290529081208054839290611180908490612e70565b90915550506001600160a01b0384166000908152600f6020526040812080548392906111ad908490612e70565b909155506111be9050848483611e41565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b61121333610c07565b565b6009546001600160a01b0316331461123f5760405162461bcd60e51b8152600401610a1290612d88565b601b610f9e8282612f64565b6060600061125883611385565b6001600160401b0381111561126f5761126f612af3565b604051908082528060200260200182016040528015611298578160200160208202803683370190505b506000805491925080805b8381101561136857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529061130a5750611360565b80516001600160a01b03161561131f57805192505b876001600160a01b0316836001600160a01b03160361135e578186858060010196508151811061135157611351612ece565b6020026020010181815250505b505b6001016112a3565b509295945050505050565b600061137e82611e93565b5192915050565b60006001600160a01b0382166113ae576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b031633146113fd5760405162461bcd60e51b8152600401610a1290612d88565b601355565b6009546001600160a01b0316331461142c5760405162461bcd60e51b8152600401610a1290612d88565b6112136000611fba565b6001600160a01b0381166000908152601c602052604081206001015460ff161561146257506001919050565b506000919050565b6000600e828154811061147f5761147f612ece565b6000918252602090912001546001600160a01b031692915050565b606060038054610a7790612dbd565b6002600854036114fb5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a12565b600260085560195460ff166115425760405162461bcd60e51b815260206004820152600d60248201526c53414c455f494e41435449564560981b6044820152606401610a12565b601354336000908152601a6020526040902054611560908390612e70565b11156115ba5760405162461bcd60e51b8152602060048201526024808201527f7468697320776f756c6420657863656564206d696e74206d617820616c6c6f77604482015263616e636560e01b6064820152608401610a12565b601454816115cf600154600054036000190190565b6115d99190612e70565b11156116125760405162461bcd60e51b815260206004820152600860248201526714d3d31117d3d55560c21b6044820152606401610a12565b601554816016546116239190612e70565b11156116635760405162461bcd60e51b815260206004820152600f60248201526e141550931250d7d4d3d31117d3d555608a1b6044820152606401610a12565b34816011546116729190613023565b11156116b85760405162461bcd60e51b8152602060048201526015602482015274494e434f52524543545f45544845525f56414c554560581b6044820152606401610a12565b80601660008282546116ca9190612e70565b909155506116da90503382611e27565b336000908152601a6020526040812080548392906116f9908490612e70565b9091555050600160085550565b816daaeb6d7670e522a718067333cd4e3b156117c057604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611774573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117989190612df7565b6117c057604051633b79c77360e21b81526001600160a01b0382166004820152602401610a12565b610c02838361200c565b6009546001600160a01b031633146117f45760405162461bcd60e51b8152600401610a1290612d88565b601555565b836daaeb6d7670e522a718067333cd4e3b156118c257336001600160a01b038216036118305761182b858585856120a1565b6118ce565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561187f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a39190612df7565b6118c257604051633b79c77360e21b8152336004820152602401610a12565b6118ce858585856120a1565b5050505050565b6002600854036119275760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a12565b6002600855336000908152601c6020526040902060019081015460ff161515146119a45760405162461bcd60e51b815260206004820152602860248201527f546869732057616c6c6574206973206e6f742061626c65206d696e7420666f726044820152672070726573616c6560c01b6064820152608401610a12565b6000811180156119d15750601454816119c4600154600054036000190190565b6119ce9190612e70565b11155b611a2e5760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c64206578636565642063757272656e74206d616044820152677820737570706c7960c01b6064820152608401610a12565b601254336000908152601c6020526040902054611a4c908390612e70565b1115611aad5760405162461bcd60e51b815260206004820152602a60248201527f546869732057616c6c65742068617320616c7265616479206d696e74656420696044820152697473207265736572766560b01b6064820152608401610a12565b336000908152601c602052604081208054839290611acc908490612e70565b90915550611adc90503382611e27565b506001600855565b6060611aef826120ec565b604051602001611aff919061303a565b6040516020818303038152906040529050919050565b6009546001600160a01b03163314611b3f5760405162461bcd60e51b8152600401610a1290612d88565b6001600160a01b038116611ba45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a12565b611bad81611fba565b50565b6009546001600160a01b03163314611bda5760405162461bcd60e51b8152600401610a1290612d88565b601155565b600081600111158015611bf3575060005482105b80156109e2575050600090815260046020526040902054600160e01b900460ff161590565b6000611c2382611373565b9050806001600160a01b0316836001600160a01b031603611c575760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590611c775750611c75813361090e565b155b15611c95576040516367d9dca160e11b815260040160405180910390fd5b610c0283838361216f565b600a546001600160a01b0384166000908152600c602052604081205490918391611cca9086613023565b611cd49190613079565b611cde919061308d565b90505b9392505050565b80471015611d385760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a12565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611d85576040519150601f19603f3d011682016040523d82523d6000602084013e611d8a565b606091505b5050905080610c025760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a12565b610c028383836121cb565b610c02838383604051806020016040528060008152506117f9565b610f9e8282604051806020016040528060008152506123b6565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610c029084906123c3565b60408051606081018252600080825260208201819052918101919091528180600111158015611ec3575060005481105b15611fa157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611f9f5780516001600160a01b031615611f36579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611f9a579392505050565b611f36565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b038316036120355760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6120ac8484846121cb565b6001600160a01b0383163b151580156120ce57506120cc84848484612495565b155b15610e0b576040516368d2bf6b60e11b815260040160405180910390fd5b60606120f782611bdf565b61211457604051630a14c4b560e41b815260040160405180910390fd5b600061211e612581565b9050805160000361213e5760405180602001604052806000815250611ce1565b8061214884612590565b6040516020016121599291906130a0565b6040516020818303038152906040529392505050565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006121d682611e93565b9050836001600160a01b031681600001516001600160a01b03161461220d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061222b575061222b853361090e565b8061224657503361223b84610afa565b6001600160a01b0316145b90508061226657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661228d57604051633a954ecd60e21b815260040160405180910390fd5b6122996000848761216f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661236d57600054821461236d57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118ce565b610c028383836001612690565b6000612418826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166128619092919063ffffffff16565b805190915015610c0257808060200190518101906124369190612df7565b610c025760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a12565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906124ca9033908990889088906004016130cf565b6020604051808303816000875af1925050508015612505575060408051601f3d908101601f191682019092526125029181019061310c565b60015b612563573d808015612533576040519150601f19603f3d011682016040523d82523d6000602084013e612538565b606091505b50805160000361255b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601b8054610a7790612dbd565b6060816000036125b75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125e157806125cb81612ee4565b91506125da9050600a83613079565b91506125bb565b6000816001600160401b038111156125fb576125fb612af3565b6040519080825280601f01601f191660200182016040528015612625576020820181803683370190505b5090505b84156125795761263a60018361308d565b9150612647600a86613129565b612652906030612e70565b60f81b81838151811061266757612667612ece565b60200101906001600160f81b031916908160001a905350612689600a86613079565b9450612629565b6000546001600160a01b0385166126b957604051622e076360e81b815260040160405180910390fd5b836000036126da5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561278b57506001600160a01b0387163b15155b15612813575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127dc6000888480600101955088612495565b6127f9576040516368d2bf6b60e11b815260040160405180910390fd5b80820361279157826000541461280e57600080fd5b612858565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612814575b506000556118ce565b6060611cde848460008585843b6128ba5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a12565b600080866001600160a01b031685876040516128d6919061313d565b60006040518083038185875af1925050503d8060008114612913576040519150601f19603f3d011682016040523d82523d6000602084013e612918565b606091505b5091509150612928828286612933565b979650505050505050565b60608315612942575081611ce1565b8251156129525782518084602001fd5b8160405162461bcd60e51b8152600401610a1291906129ef565b6001600160e01b031981168114611bad57600080fd5b60006020828403121561299457600080fd5b8135611ce18161296c565b60005b838110156129ba5781810151838201526020016129a2565b50506000910152565b600081518084526129db81602086016020860161299f565b601f01601f19169290920160200192915050565b602081526000611ce160208301846129c3565b600060208284031215612a1457600080fd5b5035919050565b6001600160a01b0381168114611bad57600080fd5b60008060408385031215612a4357600080fd5b8235612a4e81612a1b565b946020939093013593505050565b600060208284031215612a6e57600080fd5b8135611ce181612a1b565b600080600060608486031215612a8e57600080fd5b8335612a9981612a1b565b92506020840135612aa981612a1b565b929592945050506040919091013590565b60008060408385031215612acd57600080fd5b8235612ad881612a1b565b91506020830135612ae881612a1b565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612b3157612b31612af3565b604052919050565b60006020808385031215612b4c57600080fd5b82356001600160401b0380821115612b6357600080fd5b818501915085601f830112612b7757600080fd5b813581811115612b8957612b89612af3565b8060051b9150612b9a848301612b09565b8181529183018401918481019088841115612bb457600080fd5b938501935b83851015612bde5784359250612bce83612a1b565b8282529385019390850190612bb9565b98975050505050505050565b60006001600160401b03831115612c0357612c03612af3565b612c16601f8401601f1916602001612b09565b9050828152838383011115612c2a57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612c5357600080fd5b81356001600160401b03811115612c6957600080fd5b8201601f81018413612c7a57600080fd5b61257984823560208401612bea565b6020808252825182820181905260009190848201906040850190845b81811015612cc157835183529284019291840191600101612ca5565b50909695505050505050565b8015158114611bad57600080fd5b60008060408385031215612cee57600080fd5b8235612cf981612a1b565b91506020830135612ae881612ccd565b60008060008060808587031215612d1f57600080fd5b8435612d2a81612a1b565b93506020850135612d3a81612a1b565b92506040850135915060608501356001600160401b03811115612d5c57600080fd5b8501601f81018713612d6d57600080fd5b612d7c87823560208401612bea565b91505092959194509250565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612dd157607f821691505b602082108103612df157634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612e0957600080fd5b8151611ce181612ccd565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156109e2576109e2612e5a565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060018201612ef657612ef6612e5a565b5060010190565b600060208284031215612f0f57600080fd5b5051919050565b601f821115610c0257600081815260208120601f850160051c81016020861015612f3d5750805b601f850160051c820191505b81811015612f5c57828155600101612f49565b505050505050565b81516001600160401b03811115612f7d57612f7d612af3565b612f9181612f8b8454612dbd565b84612f16565b602080601f831160018114612fc65760008415612fae5750858301515b600019600386901b1c1916600185901b178555612f5c565b600085815260208120601f198616915b82811015612ff557888601518255948401946001909101908401612fd6565b50858210156130135787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176109e2576109e2612e5a565b6000825161304c81846020870161299f565b64173539b7b760d91b920191825250600501919050565b634e487b7160e01b600052601260045260246000fd5b60008261308857613088613063565b500490565b818103818111156109e2576109e2612e5a565b600083516130b281846020880161299f565b8351908301906130c681836020880161299f565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613102908301846129c3565b9695505050505050565b60006020828403121561311e57600080fd5b8151611ce18161296c565b60008261313857613138613063565b500690565b6000825161314f81846020870161299f565b919091019291505056fea2646970667358221220dee340a3e852f291c3be2681043cd85310f6099f94c604b3fa0bba275da76af564736f6c63430008110033697066733a2f2f6261667962656966357a627a6c36626c796b6f796a7067357761627978786a73796977746b703670377636636d786f6c7876706e636261717675692f
Deployed Bytecode
0x6080604052600436106102b25760003560e01c80637118974211610175578063ab2fdb0c116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c5146108f3578063eb8d24441461093c578063f2fde38b14610956578063f4a0a5281461097657600080fd5b8063d5abeb0114610892578063d79779b2146108a8578063e33b7de3146108de57600080fd5b8063ab2fdb0c146107c6578063b88d4fde146107f3578063c7b0dcbc14610813578063c7d4815e14610829578063c87b56dd1461083c578063ce7c2ac21461085c57600080fd5b806395d89b411161012e57806395d89b4114610712578063977b055b146107275780639852595c1461073d578063a0712d6814610773578063a22cb46514610786578063a93fef3b146107a657600080fd5b80637118974214610633578063715018a6146106535780637227548b1461066857806377bf1411146106b45780638b83209b146106d45780638da5cb5b146106f457600080fd5b806341f434341161021957806355f804b3116101d257806355f804b31461057a578063627fdeab1461059a5780636352211e146105c75780636817c76c146105e75780636f07a8b5146105fd57806370a082311461061357600080fd5b806341f43434146104c357806342842e0e146104e557806344f5b5cb14610505578063484b973c1461052557806348b75044146105455780634e71d92d1461056557600080fd5b8063191655871161026b57806319165587146103f25780632336296a1461041257806323b872dd14610428578063283248be146104485780633a98ef3914610468578063406072a91461047d57600080fd5b806301ffc9a714610300578063049c5c491461033557806306fdde031461034c578063081812fc1461036e578063095ea7b3146103a657806318160ddd146103c657600080fd5b366102fb577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561030c57600080fd5b5061032061031b366004612982565b610996565b60405190151581526020015b60405180910390f35b34801561034157600080fd5b5061034a6109e8565b005b34801561035857600080fd5b50610361610a68565b60405161032c91906129ef565b34801561037a57600080fd5b5061038e610389366004612a02565b610afa565b6040516001600160a01b03909116815260200161032c565b3480156103b257600080fd5b5061034a6103c1366004612a30565b610b3e565b3480156103d257600080fd5b506103e4600154600054036000190190565b60405190815260200161032c565b3480156103fe57600080fd5b5061034a61040d366004612a5c565b610c07565b34801561041e57600080fd5b506103e460165481565b34801561043457600080fd5b5061034a610443366004612a79565b610d38565b34801561045457600080fd5b5061038e610463366004612a02565b610e11565b34801561047457600080fd5b50600a546103e4565b34801561048957600080fd5b506103e4610498366004612aba565b6001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b3480156104cf57600080fd5b5061038e6daaeb6d7670e522a718067333cd4e81565b3480156104f157600080fd5b5061034a610500366004612a79565b610e3b565b34801561051157600080fd5b5061034a610520366004612b39565b610f09565b34801561053157600080fd5b5061034a610540366004612a30565b610fa2565b34801561055157600080fd5b5061034a610560366004612aba565b61102e565b34801561057157600080fd5b5061034a61120a565b34801561058657600080fd5b5061034a610595366004612c41565b611215565b3480156105a657600080fd5b506105ba6105b5366004612a5c565b61124b565b60405161032c9190612c89565b3480156105d357600080fd5b5061038e6105e2366004612a02565b611373565b3480156105f357600080fd5b506103e460115481565b34801561060957600080fd5b506103e460125481565b34801561061f57600080fd5b506103e461062e366004612a5c565b611385565b34801561063f57600080fd5b5061034a61064e366004612a02565b6113d3565b34801561065f57600080fd5b5061034a611402565b34801561067457600080fd5b5061069f610683366004612a5c565b601c602052600090815260409020805460019091015460ff1682565b6040805192835290151560208301520161032c565b3480156106c057600080fd5b506103206106cf366004612a5c565b611436565b3480156106e057600080fd5b5061038e6106ef366004612a02565b61146a565b34801561070057600080fd5b506009546001600160a01b031661038e565b34801561071e57600080fd5b5061036161149a565b34801561073357600080fd5b506103e460135481565b34801561074957600080fd5b506103e4610758366004612a5c565b6001600160a01b03166000908152600d602052604090205490565b61034a610781366004612a02565b6114a9565b34801561079257600080fd5b5061034a6107a1366004612cdb565b611706565b3480156107b257600080fd5b5061034a6107c1366004612a02565b6117ca565b3480156107d257600080fd5b506103e46107e1366004612a5c565b601a6020526000908152604090205481565b3480156107ff57600080fd5b5061034a61080e366004612d09565b6117f9565b34801561081f57600080fd5b506103e460155481565b61034a610837366004612a02565b6118d5565b34801561084857600080fd5b50610361610857366004612a02565b611ae4565b34801561086857600080fd5b506103e4610877366004612a5c565b6001600160a01b03166000908152600c602052604090205490565b34801561089e57600080fd5b506103e460145481565b3480156108b457600080fd5b506103e46108c3366004612a5c565b6001600160a01b03166000908152600f602052604090205490565b3480156108ea57600080fd5b50600b546103e4565b3480156108ff57600080fd5b5061032061090e366004612aba565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561094857600080fd5b506019546103209060ff1681565b34801561096257600080fd5b5061034a610971366004612a5c565b611b15565b34801561098257600080fd5b5061034a610991366004612a02565b611bb0565b60006001600160e01b031982166380ac58cd60e01b14806109c757506001600160e01b03198216635b5e139f60e01b145b806109e257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6009546001600160a01b03163314610a1b5760405162461bcd60e51b8152600401610a1290612d88565b60405180910390fd5b6019805460ff8082161560ff1990921682179092556040519116151581527f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f9060200160405180910390a1565b606060028054610a7790612dbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa390612dbd565b8015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b5050505050905090565b6000610b0582611bdf565b610b22576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b15610bf857604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610bac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bd09190612df7565b610bf857604051633b79c77360e21b81526001600160a01b0382166004820152602401610a12565b610c028383611c18565b505050565b6001600160a01b0381166000908152600c6020526040902054610c3c5760405162461bcd60e51b8152600401610a1290612e14565b6000610c47600b5490565b610c519047612e70565b90506000610c7e8383610c79866001600160a01b03166000908152600d602052604090205490565b611ca0565b905080600003610ca05760405162461bcd60e51b8152600401610a1290612e83565b6001600160a01b0383166000908152600d602052604081208054839290610cc8908490612e70565b9250508190555080600b6000828254610ce19190612e70565b90915550610cf190508382611ce8565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b826daaeb6d7670e522a718067333cd4e3b15610e0057336001600160a01b03821603610d6e57610d69848484611e01565b610e0b565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610dbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de19190612df7565b610e0057604051633b79c77360e21b8152336004820152602401610a12565b610e0b848484611e01565b50505050565b60178181548110610e2157600080fd5b6000918252602090912001546001600160a01b0316905081565b826daaeb6d7670e522a718067333cd4e3b15610efe57336001600160a01b03821603610e6c57610d69848484611e0c565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610ebb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610edf9190612df7565b610efe57604051633b79c77360e21b8152336004820152602401610a12565b610e0b848484611e0c565b6009546001600160a01b03163314610f335760405162461bcd60e51b8152600401610a1290612d88565b60005b8151811015610f9e576001601c6000848481518110610f5757610f57612ece565b6020908102919091018101516001600160a01b03168252810191909152604001600020600101805460ff191691151591909117905580610f9681612ee4565b915050610f36565b5050565b6009546001600160a01b03163314610fcc5760405162461bcd60e51b8152600401610a1290612d88565b60145481610fe1600154600054036000190190565b610feb9190612e70565b11156110245760405162461bcd60e51b815260206004820152600860248201526714d3d31117d3d55560c21b6044820152606401610a12565b610f9e8282611e27565b6001600160a01b0381166000908152600c60205260409020546110635760405162461bcd60e51b8152600401610a1290612e14565b6001600160a01b0382166000908152600f60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa1580156110c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e49190612efd565b6110ee9190612e70565b905060006111278383610c7987876001600160a01b03918216600090815260106020908152604080832093909416825291909152205490565b9050806000036111495760405162461bcd60e51b8152600401610a1290612e83565b6001600160a01b03808516600090815260106020908152604080832093871683529290529081208054839290611180908490612e70565b90915550506001600160a01b0384166000908152600f6020526040812080548392906111ad908490612e70565b909155506111be9050848483611e41565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b61121333610c07565b565b6009546001600160a01b0316331461123f5760405162461bcd60e51b8152600401610a1290612d88565b601b610f9e8282612f64565b6060600061125883611385565b6001600160401b0381111561126f5761126f612af3565b604051908082528060200260200182016040528015611298578160200160208202803683370190505b506000805491925080805b8381101561136857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529061130a5750611360565b80516001600160a01b03161561131f57805192505b876001600160a01b0316836001600160a01b03160361135e578186858060010196508151811061135157611351612ece565b6020026020010181815250505b505b6001016112a3565b509295945050505050565b600061137e82611e93565b5192915050565b60006001600160a01b0382166113ae576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6009546001600160a01b031633146113fd5760405162461bcd60e51b8152600401610a1290612d88565b601355565b6009546001600160a01b0316331461142c5760405162461bcd60e51b8152600401610a1290612d88565b6112136000611fba565b6001600160a01b0381166000908152601c602052604081206001015460ff161561146257506001919050565b506000919050565b6000600e828154811061147f5761147f612ece565b6000918252602090912001546001600160a01b031692915050565b606060038054610a7790612dbd565b6002600854036114fb5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a12565b600260085560195460ff166115425760405162461bcd60e51b815260206004820152600d60248201526c53414c455f494e41435449564560981b6044820152606401610a12565b601354336000908152601a6020526040902054611560908390612e70565b11156115ba5760405162461bcd60e51b8152602060048201526024808201527f7468697320776f756c6420657863656564206d696e74206d617820616c6c6f77604482015263616e636560e01b6064820152608401610a12565b601454816115cf600154600054036000190190565b6115d99190612e70565b11156116125760405162461bcd60e51b815260206004820152600860248201526714d3d31117d3d55560c21b6044820152606401610a12565b601554816016546116239190612e70565b11156116635760405162461bcd60e51b815260206004820152600f60248201526e141550931250d7d4d3d31117d3d555608a1b6044820152606401610a12565b34816011546116729190613023565b11156116b85760405162461bcd60e51b8152602060048201526015602482015274494e434f52524543545f45544845525f56414c554560581b6044820152606401610a12565b80601660008282546116ca9190612e70565b909155506116da90503382611e27565b336000908152601a6020526040812080548392906116f9908490612e70565b9091555050600160085550565b816daaeb6d7670e522a718067333cd4e3b156117c057604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611774573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117989190612df7565b6117c057604051633b79c77360e21b81526001600160a01b0382166004820152602401610a12565b610c02838361200c565b6009546001600160a01b031633146117f45760405162461bcd60e51b8152600401610a1290612d88565b601555565b836daaeb6d7670e522a718067333cd4e3b156118c257336001600160a01b038216036118305761182b858585856120a1565b6118ce565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561187f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a39190612df7565b6118c257604051633b79c77360e21b8152336004820152602401610a12565b6118ce858585856120a1565b5050505050565b6002600854036119275760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a12565b6002600855336000908152601c6020526040902060019081015460ff161515146119a45760405162461bcd60e51b815260206004820152602860248201527f546869732057616c6c6574206973206e6f742061626c65206d696e7420666f726044820152672070726573616c6560c01b6064820152608401610a12565b6000811180156119d15750601454816119c4600154600054036000190190565b6119ce9190612e70565b11155b611a2e5760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c64206578636565642063757272656e74206d616044820152677820737570706c7960c01b6064820152608401610a12565b601254336000908152601c6020526040902054611a4c908390612e70565b1115611aad5760405162461bcd60e51b815260206004820152602a60248201527f546869732057616c6c65742068617320616c7265616479206d696e74656420696044820152697473207265736572766560b01b6064820152608401610a12565b336000908152601c602052604081208054839290611acc908490612e70565b90915550611adc90503382611e27565b506001600855565b6060611aef826120ec565b604051602001611aff919061303a565b6040516020818303038152906040529050919050565b6009546001600160a01b03163314611b3f5760405162461bcd60e51b8152600401610a1290612d88565b6001600160a01b038116611ba45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a12565b611bad81611fba565b50565b6009546001600160a01b03163314611bda5760405162461bcd60e51b8152600401610a1290612d88565b601155565b600081600111158015611bf3575060005482105b80156109e2575050600090815260046020526040902054600160e01b900460ff161590565b6000611c2382611373565b9050806001600160a01b0316836001600160a01b031603611c575760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590611c775750611c75813361090e565b155b15611c95576040516367d9dca160e11b815260040160405180910390fd5b610c0283838361216f565b600a546001600160a01b0384166000908152600c602052604081205490918391611cca9086613023565b611cd49190613079565b611cde919061308d565b90505b9392505050565b80471015611d385760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a12565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611d85576040519150601f19603f3d011682016040523d82523d6000602084013e611d8a565b606091505b5050905080610c025760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a12565b610c028383836121cb565b610c02838383604051806020016040528060008152506117f9565b610f9e8282604051806020016040528060008152506123b6565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610c029084906123c3565b60408051606081018252600080825260208201819052918101919091528180600111158015611ec3575060005481105b15611fa157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611f9f5780516001600160a01b031615611f36579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611f9a579392505050565b611f36565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336001600160a01b038316036120355760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6120ac8484846121cb565b6001600160a01b0383163b151580156120ce57506120cc84848484612495565b155b15610e0b576040516368d2bf6b60e11b815260040160405180910390fd5b60606120f782611bdf565b61211457604051630a14c4b560e41b815260040160405180910390fd5b600061211e612581565b9050805160000361213e5760405180602001604052806000815250611ce1565b8061214884612590565b6040516020016121599291906130a0565b6040516020818303038152906040529392505050565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006121d682611e93565b9050836001600160a01b031681600001516001600160a01b03161461220d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061222b575061222b853361090e565b8061224657503361223b84610afa565b6001600160a01b0316145b90508061226657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661228d57604051633a954ecd60e21b815260040160405180910390fd5b6122996000848761216f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661236d57600054821461236d57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118ce565b610c028383836001612690565b6000612418826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166128619092919063ffffffff16565b805190915015610c0257808060200190518101906124369190612df7565b610c025760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a12565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906124ca9033908990889088906004016130cf565b6020604051808303816000875af1925050508015612505575060408051601f3d908101601f191682019092526125029181019061310c565b60015b612563573d808015612533576040519150601f19603f3d011682016040523d82523d6000602084013e612538565b606091505b50805160000361255b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601b8054610a7790612dbd565b6060816000036125b75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156125e157806125cb81612ee4565b91506125da9050600a83613079565b91506125bb565b6000816001600160401b038111156125fb576125fb612af3565b6040519080825280601f01601f191660200182016040528015612625576020820181803683370190505b5090505b84156125795761263a60018361308d565b9150612647600a86613129565b612652906030612e70565b60f81b81838151811061266757612667612ece565b60200101906001600160f81b031916908160001a905350612689600a86613079565b9450612629565b6000546001600160a01b0385166126b957604051622e076360e81b815260040160405180910390fd5b836000036126da5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561278b57506001600160a01b0387163b15155b15612813575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46127dc6000888480600101955088612495565b6127f9576040516368d2bf6b60e11b815260040160405180910390fd5b80820361279157826000541461280e57600080fd5b612858565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612814575b506000556118ce565b6060611cde848460008585843b6128ba5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a12565b600080866001600160a01b031685876040516128d6919061313d565b60006040518083038185875af1925050503d8060008114612913576040519150601f19603f3d011682016040523d82523d6000602084013e612918565b606091505b5091509150612928828286612933565b979650505050505050565b60608315612942575081611ce1565b8251156129525782518084602001fd5b8160405162461bcd60e51b8152600401610a1291906129ef565b6001600160e01b031981168114611bad57600080fd5b60006020828403121561299457600080fd5b8135611ce18161296c565b60005b838110156129ba5781810151838201526020016129a2565b50506000910152565b600081518084526129db81602086016020860161299f565b601f01601f19169290920160200192915050565b602081526000611ce160208301846129c3565b600060208284031215612a1457600080fd5b5035919050565b6001600160a01b0381168114611bad57600080fd5b60008060408385031215612a4357600080fd5b8235612a4e81612a1b565b946020939093013593505050565b600060208284031215612a6e57600080fd5b8135611ce181612a1b565b600080600060608486031215612a8e57600080fd5b8335612a9981612a1b565b92506020840135612aa981612a1b565b929592945050506040919091013590565b60008060408385031215612acd57600080fd5b8235612ad881612a1b565b91506020830135612ae881612a1b565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612b3157612b31612af3565b604052919050565b60006020808385031215612b4c57600080fd5b82356001600160401b0380821115612b6357600080fd5b818501915085601f830112612b7757600080fd5b813581811115612b8957612b89612af3565b8060051b9150612b9a848301612b09565b8181529183018401918481019088841115612bb457600080fd5b938501935b83851015612bde5784359250612bce83612a1b565b8282529385019390850190612bb9565b98975050505050505050565b60006001600160401b03831115612c0357612c03612af3565b612c16601f8401601f1916602001612b09565b9050828152838383011115612c2a57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612c5357600080fd5b81356001600160401b03811115612c6957600080fd5b8201601f81018413612c7a57600080fd5b61257984823560208401612bea565b6020808252825182820181905260009190848201906040850190845b81811015612cc157835183529284019291840191600101612ca5565b50909695505050505050565b8015158114611bad57600080fd5b60008060408385031215612cee57600080fd5b8235612cf981612a1b565b91506020830135612ae881612ccd565b60008060008060808587031215612d1f57600080fd5b8435612d2a81612a1b565b93506020850135612d3a81612a1b565b92506040850135915060608501356001600160401b03811115612d5c57600080fd5b8501601f81018713612d6d57600080fd5b612d7c87823560208401612bea565b91505092959194509250565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612dd157607f821691505b602082108103612df157634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215612e0957600080fd5b8151611ce181612ccd565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156109e2576109e2612e5a565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060018201612ef657612ef6612e5a565b5060010190565b600060208284031215612f0f57600080fd5b5051919050565b601f821115610c0257600081815260208120601f850160051c81016020861015612f3d5750805b601f850160051c820191505b81811015612f5c57828155600101612f49565b505050505050565b81516001600160401b03811115612f7d57612f7d612af3565b612f9181612f8b8454612dbd565b84612f16565b602080601f831160018114612fc65760008415612fae5750858301515b600019600386901b1c1916600185901b178555612f5c565b600085815260208120601f198616915b82811015612ff557888601518255948401946001909101908401612fd6565b50858210156130135787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176109e2576109e2612e5a565b6000825161304c81846020870161299f565b64173539b7b760d91b920191825250600501919050565b634e487b7160e01b600052601260045260246000fd5b60008261308857613088613063565b500490565b818103818111156109e2576109e2612e5a565b600083516130b281846020880161299f565b8351908301906130c681836020880161299f565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613102908301846129c3565b9695505050505050565b60006020828403121561311e57600080fd5b8151611ce18161296c565b60008261313857613138613063565b500690565b6000825161314f81846020870161299f565b919091019291505056fea2646970667358221220dee340a3e852f291c3be2681043cd85310f6099f94c604b3fa0bba275da76af564736f6c63430008110033
Deployed Bytecode Sourcemap
92592:6283:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82640:40;33209:10;82640:40;;;-1:-1:-1;;;;;206:32:1;;;188:51;;82670:9:0;270:2:1;255:18;;248:34;161:18;82640:40:0;;;;;;;92592:6283;;;;;55167:305;;;;;;;;;;-1:-1:-1;55167:305:0;;;;;:::i;:::-;;:::i;:::-;;;844:14:1;;837:22;819:41;;807:2;792:18;55167:305:0;;;;;;;;96811:138;;;;;;;;;;;;;:::i;:::-;;58280:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;59791:204::-;;;;;;;;;;-1:-1:-1;59791:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1976:32:1;;;1958:51;;1946:2;1931:18;59791:204:0;1812:203:1;92903:166:0;;;;;;;;;;-1:-1:-1;92903:166:0;;;;;:::i;:::-;;:::i;54416:303::-;;;;;;;;;;;;98859:1;54670:12;54460:7;54654:13;:28;-1:-1:-1;;54654:46:0;;54416:303;;;;2622:25:1;;;2610:2;2595:18;54416:303:0;2476:177:1;84426:566:0;;;;;;;;;;-1:-1:-1;84426:566:0;;;;;:::i;:::-;;:::i;93915:30::-;;;;;;;;;;;;;;;;93077:172;;;;;;;;;;-1:-1:-1;93077:172:0;;;;;:::i;:::-;;:::i;93954:179::-;;;;;;;;;;-1:-1:-1;93954:179:0;;;;;:::i;:::-;;:::i;82771:91::-;;;;;;;;;;-1:-1:-1;82842:12:0;;82771:91;;83900:135;;;;;;;;;;-1:-1:-1;83900:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;83997:21:0;;;83970:7;83997:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;83900:135;89867:143;;;;;;;;;;;;89967:42;89867:143;;93257:180;;;;;;;;;;-1:-1:-1;93257:180:0;;;;;:::i;:::-;;:::i;95269:212::-;;;;;;;;;;-1:-1:-1;95269:212:0;;;;;:::i;:::-;;:::i;98132:214::-;;;;;;;;;;-1:-1:-1;98132:214:0;;;;;:::i;:::-;;:::i;85260:641::-;;;;;;;;;;-1:-1:-1;85260:641:0;;;;;:::i;:::-;;:::i;97331:73::-;;;;;;;;;;;;;:::i;98354:104::-;;;;;;;;;;-1:-1:-1;98354:104:0;;;;;:::i;:::-;;:::i;97412:712::-;;;;;;;;;;-1:-1:-1;97412:712:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;58088:125::-;;;;;;;;;;-1:-1:-1;58088:125:0;;;;;:::i;:::-;;:::i;93718:37::-;;;;;;;;;;;;;;;;93762:31;;;;;;;;;;;;;;;;55536:206;;;;;;;;;;-1:-1:-1;55536:206:0;;;;;:::i;:::-;;:::i;97067:110::-;;;;;;;;;;-1:-1:-1;97067:110:0;;;;;:::i;:::-;;:::i;45290:103::-;;;;;;;;;;;;;:::i;95213:48::-;;;;;;;;;;-1:-1:-1;95213:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;7390:25:1;;;7458:14;;7451:22;7446:2;7431:18;;7424:50;7363:18;95213:48:0;7222:258:1;94845:273:0;;;;;;;;;;-1:-1:-1;94845:273:0;;;;;:::i;:::-;;:::i;84126:100::-;;;;;;;;;;-1:-1:-1;84126:100:0;;;;;:::i;:::-;;:::i;44639:87::-;;;;;;;;;;-1:-1:-1;44712:6:0;;-1:-1:-1;;;;;44712:6:0;44639:87;;58449:104;;;;;;;;;;;;;:::i;93800:30::-;;;;;;;;;;;;;;;;83622:109;;;;;;;;;;-1:-1:-1;83622:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;83705:18:0;83678:7;83705:18;;;:9;:18;;;;;;;83622:109;96074:727;;;;;;:::i;:::-;;:::i;92709:186::-;;;;;;;;;;-1:-1:-1;92709:186:0;;;;;:::i;:::-;;:::i;97185:122::-;;;;;;;;;;-1:-1:-1;97185:122:0;;;;;:::i;:::-;;:::i;94265:51::-;;;;;;;;;;-1:-1:-1;94265:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;93445:237;;;;;;;;;;-1:-1:-1;93445:237:0;;;;;:::i;:::-;;:::i;93874:34::-;;;;;;;;;;;;;;;;95489:557;;;;;;:::i;:::-;;:::i;98587:173::-;;;;;;;;;;-1:-1:-1;98587:173:0;;;;;:::i;:::-;;:::i;83418:105::-;;;;;;;;;;-1:-1:-1;83418:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;83499:16:0;83472:7;83499:16;;;:7;:16;;;;;;;83418:105;93837:30;;;;;;;;;;;;;;;;83208:119;;;;;;;;;;-1:-1:-1;83208:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;83293:26:0;83266:7;83293:26;;;:19;:26;;;;;;;83208:119;82956:95;;;;;;;;;;-1:-1:-1;83029:14:0;;82956:95;;60425:164;;;;;;;;;;-1:-1:-1;60425:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;60546:25:0;;;60522:4;60546:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;60425:164;94205:32;;;;;;;;;;-1:-1:-1;94205:32:0;;;;;;;;45548:201;;;;;;;;;;-1:-1:-1;45548:201:0;;;;;:::i;:::-;;:::i;96957:102::-;;;;;;;;;;-1:-1:-1;96957:102:0;;;;;:::i;:::-;;:::i;55167:305::-;55269:4;-1:-1:-1;;;;;;55306:40:0;;-1:-1:-1;;;55306:40:0;;:105;;-1:-1:-1;;;;;;;55363:48:0;;-1:-1:-1;;;55363:48:0;55306:105;:158;;;-1:-1:-1;;;;;;;;;;36189:40:0;;;55428:36;55286:178;55167:305;-1:-1:-1;;55167:305:0:o;96811:138::-;44712:6;;-1:-1:-1;;;;;44712:6:0;33209:10;44859:23;44851:68;;;;-1:-1:-1;;;44851:68:0;;;;;;;:::i;:::-;;;;;;;;;96885:12:::1;::::0;;::::1;::::0;;::::1;96884:13;-1:-1:-1::0;;96869:28:0;;::::1;::::0;::::1;::::0;;;96913::::1;::::0;96928:12;;844:14:1;837:22;819:41;;96913:28:0::1;::::0;807:2:1;792:18;96913:28:0::1;;;;;;;96811:138::o:0;58280:100::-;58334:13;58367:5;58360:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58280:100;:::o;59791:204::-;59859:7;59884:16;59892:7;59884;:16::i;:::-;59879:64;;59909:34;;-1:-1:-1;;;59909:34:0;;;;;;;;;;;59879:64;-1:-1:-1;59963:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;59963:24:0;;59791:204::o;92903:166::-;93008:8;89967:42;91861:45;:49;91857:225;;91932:67;;-1:-1:-1;;;91932:67:0;;91983:4;91932:67;;;10413:34:1;-1:-1:-1;;;;;10483:15:1;;10463:18;;;10456:43;89967:42:0;;91932;;10348:18:1;;91932:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;91927:144;;92027:28;;-1:-1:-1;;;92027:28:0;;-1:-1:-1;;;;;1976:32:1;;92027:28:0;;;1958:51:1;1931:18;;92027:28:0;1812:203:1;91927:144:0;93029:32:::1;93043:8;93053:7;93029:13;:32::i;:::-;92903:166:::0;;;:::o;84426:566::-;-1:-1:-1;;;;;84502:16:0;;84521:1;84502:16;;;:7;:16;;;;;;84494:71;;;;-1:-1:-1;;;84494:71:0;;;;;;;:::i;:::-;84578:21;84626:15;83029:14;;;82956:95;84626:15;84602:39;;:21;:39;:::i;:::-;84578:63;;84652:15;84670:58;84686:7;84695:13;84710:17;84719:7;-1:-1:-1;;;;;83705:18:0;83678:7;83705:18;;;:9;:18;;;;;;;83622:109;84710:17;84670:15;:58::i;:::-;84652:76;;84749:7;84760:1;84749:12;84741:68;;;;-1:-1:-1;;;84741:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;84822:18:0;;;;;;:9;:18;;;;;:29;;84844:7;;84822:18;:29;;84844:7;;84822:29;:::i;:::-;;;;;;;;84880:7;84862:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;84900:35:0;;-1:-1:-1;84918:7:0;84927;84900:17;:35::i;:::-;84951:33;;;-1:-1:-1;;;;;206:32:1;;188:51;;270:2;255:18;;248:34;;;84951:33:0;;161:18:1;84951:33:0;;;;;;;84483:509;;84426:566;:::o;93077:172::-;93187:4;89967:42;91115:45;:49;91111:539;;91404:10;-1:-1:-1;;;;;91396:18:0;;;91392:85;;93204:37:::1;93223:4;93229:2;93233:7;93204:18;:37::i;:::-;91455:7:::0;;91392:85;91496:69;;-1:-1:-1;;;91496:69:0;;91547:4;91496:69;;;10413:34:1;91554:10:0;10463:18:1;;;10456:43;89967:42:0;;91496;;10348:18:1;;91496:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;91491:148;;91593:30;;-1:-1:-1;;;91593:30:0;;91612:10;91593:30;;;1958:51:1;1931:18;;91593:30:0;1812:203:1;91491:148:0;93204:37:::1;93223:4;93229:2;93233:7;93204:18;:37::i;:::-;93077:172:::0;;;;:::o;93954:179::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;93954:179:0;;-1:-1:-1;93954:179:0;:::o;93257:180::-;93371:4;89967:42;91115:45;:49;91111:539;;91404:10;-1:-1:-1;;;;;91396:18:0;;;91392:85;;93388:41:::1;93411:4;93417:2;93421:7;93388:22;:41::i;91392:85::-:0;91496:69;;-1:-1:-1;;;91496:69:0;;91547:4;91496:69;;;10413:34:1;91554:10:0;10463:18:1;;;10456:43;89967:42:0;;91496;;10348:18:1;;91496:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;91491:148;;91593:30;;-1:-1:-1;;;91593:30:0;;91612:10;91593:30;;;1958:51:1;1931:18;;91593:30:0;1812:203:1;91491:148:0;93388:41:::1;93411:4;93417:2;93421:7;93388:22;:41::i;95269:212::-:0;44712:6;;-1:-1:-1;;;;;44712:6:0;33209:10;44859:23;44851:68;;;;-1:-1:-1;;;44851:68:0;;;;;;;:::i;:::-;95357:9:::1;95352:114;95374:13;:20;95372:1;:22;95352:114;;;95450:4;95414:8;:26;95423:13;95437:1;95423:16;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;95414:26:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;95414:26:0;:33:::1;;:40:::0;;-1:-1:-1;;95414:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;95395:3;::::1;::::0;::::1;:::i;:::-;;;;95352:114;;;;95269:212:::0;:::o;98132:214::-;44712:6;;-1:-1:-1;;;;;44712:6:0;33209:10;44859:23;44851:68;;;;-1:-1:-1;;;44851:68:0;;;;;;;:::i;:::-;98260:9:::1;;98250:6;98234:13;98859:1:::0;54670:12;54460:7;54654:13;:28;-1:-1:-1;;54654:46:0;;54416:303;98234:13:::1;:22;;;;:::i;:::-;:35;;98212:93;;;::::0;-1:-1:-1;;;98212:93:0;;12602:2:1;98212:93:0::1;::::0;::::1;12584:21:1::0;12641:1;12621:18;;;12614:29;-1:-1:-1;;;12659:18:1;;;12652:38;12707:18;;98212:93:0::1;12400:331:1::0;98212:93:0::1;98316:22;98326:3;98331:6;98316:9;:22::i;85260:641::-:0;-1:-1:-1;;;;;85342:16:0;;85361:1;85342:16;;;:7;:16;;;;;;85334:71;;;;-1:-1:-1;;;85334:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;83293:26:0;;85418:21;83293:26;;;:19;:26;;;;;;85442:30;;-1:-1:-1;;;85442:30:0;;85466:4;85442:30;;;1958:51:1;-1:-1:-1;;;;;85442:15:0;;;;;1931:18:1;;85442:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;85418:77;;85506:15;85524:65;85540:7;85549:13;85564:24;85573:5;85580:7;-1:-1:-1;;;;;83997:21:0;;;83970:7;83997:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;83900:135;85524:65;85506:83;;85610:7;85621:1;85610:12;85602:68;;;;-1:-1:-1;;;85602:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;85683:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;85717:7;;85683:21;:41;;85717:7;;85683:41;:::i;:::-;;;;-1:-1:-1;;;;;;;85735:26:0;;;;;;:19;:26;;;;;:37;;85765:7;;85735:26;:37;;85765:7;;85735:37;:::i;:::-;;;;-1:-1:-1;85785:47:0;;-1:-1:-1;85808:5:0;85815:7;85824;85785:22;:47::i;:::-;85848:45;;;-1:-1:-1;;;;;206:32:1;;;188:51;;270:2;255:18;;248:34;;;85848:45:0;;;;;161:18:1;85848:45:0;;;;;;;85323:578;;85260:641;;:::o;97331:73::-;97368:28;97384:10;97368:7;:28::i;:::-;97331:73::o;98354:104::-;44712:6;;-1:-1:-1;;;;;44712:6:0;33209:10;44859:23;44851:68;;;;-1:-1:-1;;;44851:68:0;;;;;;;:::i;:::-;98427:13:::1;:23;98443:7:::0;98427:13;:23:::1;:::i;97412:712::-:0;97476:16;97522:18;97557:16;97567:5;97557:9;:16::i;:::-;-1:-1:-1;;;;;97543:31:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;97543:31:0;-1:-1:-1;97585:11:0;97599:13;;97522:52;;-1:-1:-1;97585:11:0;;97689:402;97709:3;97705:1;:7;97689:402;;;97734:31;97768:14;;;:11;:14;;;;;;;;;97734:48;;;;;;;;;-1:-1:-1;;;;;97734:48:0;;;;-1:-1:-1;;;97734:48:0;;-1:-1:-1;;;;;97734:48:0;;;;;;;;-1:-1:-1;;;97734:48:0;;;;;;;;;;;;;;;;97797:65;;97838:8;;;97797:65;97880:14;;-1:-1:-1;;;;;97880:28:0;;97876:103;;97949:14;;;-1:-1:-1;97876:103:0;98018:5;-1:-1:-1;;;;;97997:26:0;:17;-1:-1:-1;;;;;97997:26:0;;97993:87;;98063:1;98044;98046:13;;;;;;98044:16;;;;;;;;:::i;:::-;;;;;;:20;;;;;97993:87;97719:372;97689:402;97714:3;;97689:402;;;-1:-1:-1;98108:1:0;;97412:712;-1:-1:-1;;;;;97412:712:0:o;58088:125::-;58152:7;58179:21;58192:7;58179:12;:21::i;:::-;:26;;58088:125;-1:-1:-1;;58088:125:0:o;55536:206::-;55600:7;-1:-1:-1;;;;;55624:19:0;;55620:60;;55652:28;;-1:-1:-1;;;55652:28:0;;;;;;;;;;;55620:60;-1:-1:-1;;;;;;55706:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;55706:27:0;;55536:206::o;97067:110::-;44712:6;;-1:-1:-1;;;;;44712:6:0;33209:10;44859:23;44851:68;;;;-1:-1:-1;;;44851:68:0;;;;;;;:::i;:::-;97143:11:::1;:26:::0;97067:110::o;45290:103::-;44712:6;;-1:-1:-1;;;;;44712:6:0;33209:10;44859:23;44851:68;;;;-1:-1:-1;;;44851:68:0;;;;;;;:::i;:::-;45355:30:::1;45382:1;45355:18;:30::i;94845:273::-:0;-1:-1:-1;;;;;94968:20:0;;94934:4;94968:20;;;:8;:20;;;;;:27;;;;;94964:143;;;-1:-1:-1;95022:4:0;;94845:273;-1:-1:-1;94845:273:0:o;94964:143::-;-1:-1:-1;95086:5:0;;94845:273;-1:-1:-1;94845:273:0:o;84126:100::-;84177:7;84204;84212:5;84204:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;84204:14:0;;84126:100;-1:-1:-1;;84126:100:0:o;58449:104::-;58505:13;58538:7;58531:14;;;;;:::i;96074:727::-;50024:1;50622:7;;:19;50614:63;;;;-1:-1:-1;;;50614:63:0;;15331:2:1;50614:63:0;;;15313:21:1;15370:2;15350:18;;;15343:30;15409:33;15389:18;;;15382:61;15460:18;;50614:63:0;15129:355:1;50614:63:0;50024:1;50755:7;:18;96153:12:::1;::::0;::::1;;96145:38;;;::::0;-1:-1:-1;;;96145:38:0;;15691:2:1;96145:38:0::1;::::0;::::1;15673:21:1::0;15730:2;15710:18;;;15703:30;-1:-1:-1;;;15749:18:1;;;15742:43;15802:18;;96145:38:0::1;15489:337:1::0;96145:38:0::1;96251:11;::::0;96224:10:::1;96204:31;::::0;;;:19:::1;:31;::::0;;;;;:40:::1;::::0;96238:6;;96204:40:::1;:::i;:::-;96202:60;;96194:110;;;::::0;-1:-1:-1;;;96194:110:0;;16033:2:1;96194:110:0::1;::::0;::::1;16015:21:1::0;16072:2;16052:18;;;16045:30;16111:34;16091:18;;;16084:62;-1:-1:-1;;;16162:18:1;;;16155:34;16206:19;;96194:110:0::1;15831:400:1::0;96194:110:0::1;96365:9;;96355:6;96339:13;98859:1:::0;54670:12;54460:7;54654:13;:28;-1:-1:-1;;54654:46:0;;54416:303;96339:13:::1;:22;;;;:::i;:::-;:35;;96317:93;;;::::0;-1:-1:-1;;;96317:93:0;;12602:2:1;96317:93:0::1;::::0;::::1;12584:21:1::0;12641:1;12621:18;;;12614:29;-1:-1:-1;;;12659:18:1;;;12652:38;12707:18;;96317:93:0::1;12400:331:1::0;96317:93:0::1;96467:14;;96457:6;96443:11;;:20;;;;:::i;:::-;:38;;96421:103;;;::::0;-1:-1:-1;;;96421:103:0;;16438:2:1;96421:103:0::1;::::0;::::1;16420:21:1::0;16477:2;16457:18;;;16450:30;-1:-1:-1;;;16496:18:1;;;16489:45;16551:18;;96421:103:0::1;16236:339:1::0;96421:103:0::1;96579:9;96569:6;96557:9;;:18;;;;:::i;:::-;:31;;96535:102;;;::::0;-1:-1:-1;;;96535:102:0;;16955:2:1;96535:102:0::1;::::0;::::1;16937:21:1::0;16994:2;16974:18;;;16967:30;-1:-1:-1;;;17013:18:1;;;17006:51;17074:18;;96535:102:0::1;16753:345:1::0;96535:102:0::1;96669:6;96654:11;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;96690:29:0::1;::::0;-1:-1:-1;96700:10:0::1;96712:6:::0;96690:9:::1;:29::i;:::-;96754:10;96734:31;::::0;;;:19:::1;:31;::::0;;;;:41;;96769:6;;96734:31;:41:::1;::::0;96769:6;;96734:41:::1;:::i;:::-;::::0;;;-1:-1:-1;;49980:1:0;50934:7;:22;-1:-1:-1;96074:727:0:o;92709:186::-;92823:8;89967:42;91861:45;:49;91857:225;;91932:67;;-1:-1:-1;;;91932:67:0;;91983:4;91932:67;;;10413:34:1;-1:-1:-1;;;;;10483:15:1;;10463:18;;;10456:43;89967:42:0;;91932;;10348:18:1;;91932:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;91927:144;;92027:28;;-1:-1:-1;;;92027:28:0;;-1:-1:-1;;;;;1976:32:1;;92027:28:0;;;1958:51:1;1931:18;;92027:28:0;1812:203:1;91927:144:0;92844:43:::1;92868:8;92878;92844:23;:43::i;97185:122::-:0;44712:6;;-1:-1:-1;;;;;44712:6:0;33209:10;44859:23;44851:68;;;;-1:-1:-1;;;44851:68:0;;;;;;;:::i;:::-;97267:14:::1;:32:::0;97185:122::o;93445:237::-;93605:4;89967:42;91115:45;:49;91111:539;;91404:10;-1:-1:-1;;;;;91396:18:0;;;91392:85;;93627:47:::1;93650:4;93656:2;93660:7;93669:4;93627:22;:47::i;:::-;91455:7:::0;;91392:85;91496:69;;-1:-1:-1;;;91496:69:0;;91547:4;91496:69;;;10413:34:1;91554:10:0;10463:18:1;;;10456:43;89967:42:0;;91496;;10348:18:1;;91496:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;91491:148;;91593:30;;-1:-1:-1;;;91593:30:0;;91612:10;91593:30;;;1958:51:1;1931:18;;91593:30:0;1812:203:1;91491:148:0;93627:47:::1;93650:4;93656:2;93660:7;93669:4;93627:22;:47::i;:::-;93445:237:::0;;;;;:::o;95489:557::-;50024:1;50622:7;;:19;50614:63;;;;-1:-1:-1;;;50614:63:0;;15331:2:1;50614:63:0;;;15313:21:1;15370:2;15350:18;;;15343:30;15409:33;15389:18;;;15382:61;15460:18;;50614:63:0;15129:355:1;50614:63:0;50024:1;50755:7;:18;95591:10:::1;95582:20;::::0;;;:8:::1;:20;::::0;;;;:27:::1;::::0;;::::1;::::0;::::1;;:35;;;95574:88;;;::::0;-1:-1:-1;;;95574:88:0;;17305:2:1;95574:88:0::1;::::0;::::1;17287:21:1::0;17344:2;17324:18;;;17317:30;17383:34;17363:18;;;17356:62;-1:-1:-1;;;17434:18:1;;;17427:38;17482:19;;95574:88:0::1;17103:404:1::0;95574:88:0::1;95699:1;95682:14;:18;:65;;;;;95738:9;;95720:14;95704:13;98859:1:::0;54670:12;54460:7;54654:13;:28;-1:-1:-1;;54654:46:0;;54416:303;95704:13:::1;:30;;;;:::i;:::-;:43;;95682:65;95674:118;;;::::0;-1:-1:-1;;;95674:118:0;;17714:2:1;95674:118:0::1;::::0;::::1;17696:21:1::0;17753:2;17733:18;;;17726:30;17792:34;17772:18;;;17765:62;-1:-1:-1;;;17843:18:1;;;17836:38;17891:19;;95674:118:0::1;17512:404:1::0;95674:118:0::1;95865:15;::::0;95820:10:::1;95811:20;::::0;;;:8:::1;:20;::::0;;;;:33;:50:::1;::::0;95847:14;;95811:50:::1;:::i;:::-;:69;;95803:123;;;::::0;-1:-1:-1;;;95803:123:0;;18123:2:1;95803:123:0::1;::::0;::::1;18105:21:1::0;18162:2;18142:18;;;18135:30;18201:34;18181:18;;;18174:62;-1:-1:-1;;;18252:18:1;;;18245:40;18302:19;;95803:123:0::1;17921:406:1::0;95803:123:0::1;95946:10;95937:20;::::0;;;:8:::1;:20;::::0;;;;:51;;95974:14;;95937:20;:51:::1;::::0;95974:14;;95937:51:::1;:::i;:::-;::::0;;;-1:-1:-1;96001:37:0::1;::::0;-1:-1:-1;96011:10:0::1;96023:14:::0;96001:9:::1;:37::i;:::-;-1:-1:-1::0;49980:1:0;50934:7;:22;95489:557::o;98587:173::-;98652:13;98708:23;98723:7;98708:14;:23::i;:::-;98691:50;;;;;;;;:::i;:::-;;;;;;;;;;;;;98677:65;;98587:173;;;:::o;45548:201::-;44712:6;;-1:-1:-1;;;;;44712:6:0;33209:10;44859:23;44851:68;;;;-1:-1:-1;;;44851:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45637:22:0;::::1;45629:73;;;::::0;-1:-1:-1;;;45629:73:0;;18995:2:1;45629:73:0::1;::::0;::::1;18977:21:1::0;19034:2;19014:18;;;19007:30;19073:34;19053:18;;;19046:62;-1:-1:-1;;;19124:18:1;;;19117:36;19170:19;;45629:73:0::1;18793:402:1::0;45629:73:0::1;45713:28;45732:8;45713:18;:28::i;:::-;45548:201:::0;:::o;96957:102::-;44712:6;;-1:-1:-1;;;;;44712:6:0;33209:10;44859:23;44851:68;;;;-1:-1:-1;;;44851:68:0;;;;;;;:::i;:::-;97029:9:::1;:22:::0;96957:102::o;61777:187::-;61834:4;61877:7;98859:1;61858:26;;:53;;;;;61898:13;;61888:7;:23;61858:53;:98;;;;-1:-1:-1;;61929:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;61929:27:0;;;;61928:28;;61777:187::o;59346:379::-;59427:13;59443:24;59459:7;59443:15;:24::i;:::-;59427:40;;59488:5;-1:-1:-1;;;;;59482:11:0;:2;-1:-1:-1;;;;;59482:11:0;;59478:48;;59502:24;;-1:-1:-1;;;59502:24:0;;;;;;;;;;;59478:48;33209:10;-1:-1:-1;;;;;59543:21:0;;;;;;:63;;-1:-1:-1;59569:37:0;59586:5;33209:10;60425:164;:::i;59569:37::-;59568:38;59543:63;59539:138;;;59630:35;;-1:-1:-1;;;59630:35:0;;;;;;;;;;;59539:138;59689:28;59698:2;59702:7;59711:5;59689:8;:28::i;86079:248::-;86289:12;;-1:-1:-1;;;;;86269:16:0;;86225:7;86269:16;;;:7;:16;;;;;;86225:7;;86304:15;;86253:32;;:13;:32;:::i;:::-;86252:49;;;;:::i;:::-;:67;;;;:::i;:::-;86245:74;;86079:248;;;;;;:::o;26553:317::-;26668:6;26643:21;:31;;26635:73;;;;-1:-1:-1;;;26635:73:0;;19792:2:1;26635:73:0;;;19774:21:1;19831:2;19811:18;;;19804:30;19870:31;19850:18;;;19843:59;19919:18;;26635:73:0;19590:353:1;26635:73:0;26722:12;26740:9;-1:-1:-1;;;;;26740:14:0;26762:6;26740:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26721:52;;;26792:7;26784:78;;;;-1:-1:-1;;;26784:78:0;;20360:2:1;26784:78:0;;;20342:21:1;20399:2;20379:18;;;20372:30;20438:34;20418:18;;;20411:62;20509:28;20489:18;;;20482:56;20555:19;;26784:78:0;20158:422:1;60656:170:0;60790:28;60800:4;60806:2;60810:7;60790:9;:28::i;60897:185::-;61035:39;61052:4;61058:2;61062:7;61035:39;;;;;;;;;;;;:16;:39::i;61972:104::-;62041:27;62051:2;62055:8;62041:27;;;;;;;;;;;;:9;:27::i;76232:211::-;76376:58;;;-1:-1:-1;;;;;206:32:1;;76376:58:0;;;188:51:1;255:18;;;;248:34;;;76376:58:0;;;;;;;;;;161:18:1;;;;76376:58:0;;;;;;;;-1:-1:-1;;;;;76376:58:0;-1:-1:-1;;;76376:58:0;;;76349:86;;76369:5;;76349:19;:86::i;56917:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;57028:7:0;;98859:1;57077:23;;:47;;;;;57111:13;;57104:4;:20;57077:47;57073:886;;;57145:31;57179:17;;;:11;:17;;;;;;;;;57145:51;;;;;;;;;-1:-1:-1;;;;;57145:51:0;;;;-1:-1:-1;;;57145:51:0;;-1:-1:-1;;;;;57145:51:0;;;;;;;;-1:-1:-1;;;57145:51:0;;;;;;;;;;;;;;57215:729;;57265:14;;-1:-1:-1;;;;;57265:28:0;;57261:101;;57329:9;56917:1109;-1:-1:-1;;;56917:1109:0:o;57261:101::-;-1:-1:-1;;;57704:6:0;57749:17;;;;:11;:17;;;;;;;;;57737:29;;;;;;;;;-1:-1:-1;;;;;57737:29:0;;;;;-1:-1:-1;;;57737:29:0;;-1:-1:-1;;;;;57737:29:0;;;;;;;;-1:-1:-1;;;57737:29:0;;;;;;;;;;;;;57797:28;57793:109;;57865:9;56917:1109;-1:-1:-1;;;56917:1109:0:o;57793:109::-;57664:261;;;57126:833;57073:886;57987:31;;-1:-1:-1;;;57987:31:0;;;;;;;;;;;45909:191;46002:6;;;-1:-1:-1;;;;;46019:17:0;;;-1:-1:-1;;;;;;46019:17:0;;;;;;;46052:40;;46002:6;;;46019:17;46002:6;;46052:40;;45983:16;;46052:40;45972:128;45909:191;:::o;60067:287::-;33209:10;-1:-1:-1;;;;;60166:24:0;;;60162:54;;60199:17;;-1:-1:-1;;;60199:17:0;;;;;;;;;;;60162:54;33209:10;60229:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;60229:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;60229:53:0;;;;;;;;;;60298:48;;819:41:1;;;60229:42:0;;33209:10;60298:48;;792:18:1;60298:48:0;;;;;;;60067:287;;:::o;61153:369::-;61320:28;61330:4;61336:2;61340:7;61320:9;:28::i;:::-;-1:-1:-1;;;;;61363:13:0;;25554:20;25602:8;;61363:76;;;;;61383:56;61414:4;61420:2;61424:7;61433:5;61383:30;:56::i;:::-;61382:57;61363:76;61359:156;;;61463:40;;-1:-1:-1;;;61463:40:0;;;;;;;;;;;58624:318;58697:13;58728:16;58736:7;58728;:16::i;:::-;58723:59;;58753:29;;-1:-1:-1;;;58753:29:0;;;;;;;;;;;58723:59;58795:21;58819:10;:8;:10::i;:::-;58795:34;;58853:7;58847:21;58872:1;58847:26;:87;;;;;;;;;;;;;;;;;58900:7;58909:18;:7;:16;:18::i;:::-;58883:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58840:94;58624:318;-1:-1:-1;;;58624:318:0:o;69947:196::-;70062:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;70062:29:0;-1:-1:-1;;;;;70062:29:0;;;;;;;;;70107:28;;70062:24;;70107:28;;;;;;;69947:196;;;:::o;64890:2130::-;65005:35;65043:21;65056:7;65043:12;:21::i;:::-;65005:59;;65103:4;-1:-1:-1;;;;;65081:26:0;:13;:18;;;-1:-1:-1;;;;;65081:26:0;;65077:67;;65116:28;;-1:-1:-1;;;65116:28:0;;;;;;;;;;;65077:67;65157:22;33209:10;-1:-1:-1;;;;;65183:20:0;;;;:73;;-1:-1:-1;65220:36:0;65237:4;33209:10;60425:164;:::i;65220:36::-;65183:126;;;-1:-1:-1;33209:10:0;65273:20;65285:7;65273:11;:20::i;:::-;-1:-1:-1;;;;;65273:36:0;;65183:126;65157:153;;65328:17;65323:66;;65354:35;;-1:-1:-1;;;65354:35:0;;;;;;;;;;;65323:66;-1:-1:-1;;;;;65404:16:0;;65400:52;;65429:23;;-1:-1:-1;;;65429:23:0;;;;;;;;;;;65400:52;65573:35;65590:1;65594:7;65603:4;65573:8;:35::i;:::-;-1:-1:-1;;;;;65904:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;65904:31:0;;;-1:-1:-1;;;;;65904:31:0;;;-1:-1:-1;;65904:31:0;;;;;;;65950:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;65950:29:0;;;;;;;;;;;66030:20;;;:11;:20;;;;;;66065:18;;-1:-1:-1;;;;;;66098:49:0;;;;-1:-1:-1;;;66131:15:0;66098:49;;;;;;;;;;66421:11;;66481:24;;;;;66524:13;;66030:20;;66481:24;;66524:13;66520:384;;66734:13;;66719:11;:28;66715:174;;66772:20;;66841:28;;;;-1:-1:-1;;;;;66815:54:0;-1:-1:-1;;;66815:54:0;-1:-1:-1;;;;;;66815:54:0;;;-1:-1:-1;;;;;66772:20:0;;66815:54;;;;66715:174;65879:1036;;;66951:7;66947:2;-1:-1:-1;;;;;66932:27:0;66941:4;-1:-1:-1;;;;;66932:27:0;;;;;;;;;;;66970:42;93077:172;62439:163;62562:32;62568:2;62572:8;62582:5;62589:4;62562:5;:32::i;78805:716::-;79229:23;79255:69;79283:4;79255:69;;;;;;;;;;;;;;;;;79263:5;-1:-1:-1;;;;;79255:27:0;;;:69;;;;;:::i;:::-;79339:17;;79229:95;;-1:-1:-1;79339:21:0;79335:179;;79436:10;79425:30;;;;;;;;;;;;:::i;:::-;79417:85;;;;-1:-1:-1;;;79417:85:0;;21288:2:1;79417:85:0;;;21270:21:1;21327:2;21307:18;;;21300:30;21366:34;21346:18;;;21339:62;-1:-1:-1;;;21417:18:1;;;21410:40;21467:19;;79417:85:0;21086:406:1;70635:667:0;70819:72;;-1:-1:-1;;;70819:72:0;;70798:4;;-1:-1:-1;;;;;70819:36:0;;;;;:72;;33209:10;;70870:4;;70876:7;;70885:5;;70819:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70819:72:0;;;;;;;;-1:-1:-1;;70819:72:0;;;;;;;;;;;;:::i;:::-;;;70815:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71053:6;:13;71070:1;71053:18;71049:235;;71099:40;;-1:-1:-1;;;71099:40:0;;;;;;;;;;;71049:235;71242:6;71236:13;71227:6;71223:2;71219:15;71212:38;70815:480;-1:-1:-1;;;;;;70938:55:0;-1:-1:-1;;;70938:55:0;;-1:-1:-1;70815:480:0;70635:667;;;;;;:::o;98466:114::-;98526:13;98559;98552:20;;;;;:::i;33596:723::-;33652:13;33873:5;33882:1;33873:10;33869:53;;-1:-1:-1;;33900:10:0;;;;;;;;;;;;-1:-1:-1;;;33900:10:0;;;;;33596:723::o;33869:53::-;33947:5;33932:12;33988:78;33995:9;;33988:78;;34021:8;;;;:::i;:::-;;-1:-1:-1;34044:10:0;;-1:-1:-1;34052:2:0;34044:10;;:::i;:::-;;;33988:78;;;34076:19;34108:6;-1:-1:-1;;;;;34098:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34098:17:0;;34076:39;;34126:154;34133:10;;34126:154;;34160:11;34170:1;34160:11;;:::i;:::-;;-1:-1:-1;34229:10:0;34237:2;34229:5;:10;:::i;:::-;34216:24;;:2;:24;:::i;:::-;34203:39;;34186:6;34193;34186:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;34186:56:0;;;;;;;;-1:-1:-1;34257:11:0;34266:2;34257:11;;:::i;:::-;;;34126:154;;62861:1775;63000:20;63023:13;-1:-1:-1;;;;;63051:16:0;;63047:48;;63076:19;;-1:-1:-1;;;63076:19:0;;;;;;;;;;;63047:48;63110:8;63122:1;63110:13;63106:44;;63132:18;;-1:-1:-1;;;63132:18:0;;;;;;;;;;;63106:44;-1:-1:-1;;;;;63501:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;63560:49:0;;-1:-1:-1;;;;;63501:44:0;;;;;;;63560:49;;;;-1:-1:-1;;63501:44:0;;;;;;63560:49;;;;;;;;;;;;;;;;63626:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;63676:66:0;;;;-1:-1:-1;;;63726:15:0;63676:66;;;;;;;;;;63626:25;63823:23;;;63867:4;:23;;;;-1:-1:-1;;;;;;63875:13:0;;25554:20;25602:8;;63875:15;63863:641;;;63911:314;63942:38;;63967:12;;-1:-1:-1;;;;;63942:38:0;;;63959:1;;63942:38;;63959:1;;63942:38;64008:69;64047:1;64051:2;64055:14;;;;;;64071:5;64008:30;:69::i;:::-;64003:174;;64113:40;;-1:-1:-1;;;64113:40:0;;;;;;;;;;;64003:174;64220:3;64204:12;:19;63911:314;;64306:12;64289:13;;:29;64285:43;;64320:8;;;64285:43;63863:641;;;64369:120;64400:40;;64425:14;;;;;-1:-1:-1;;;;;64400:40:0;;;64417:1;;64400:40;;64417:1;;64400:40;64484:3;64468:12;:19;64369:120;;63863:641;-1:-1:-1;64518:13:0;:28;64568:60;93077:172;28037:229;28174:12;28206:52;28228:6;28236:4;28242:1;28245:12;28174;25554:20;;29444:60;;;;-1:-1:-1;;;29444:60:0;;22971:2:1;29444:60:0;;;22953:21:1;23010:2;22990:18;;;22983:30;23049:31;23029:18;;;23022:59;23098:18;;29444:60:0;22769:353:1;29444:60:0;29518:12;29532:23;29559:6;-1:-1:-1;;;;;29559:11:0;29578:5;29585:4;29559:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29517:73;;;;29608:51;29625:7;29634:10;29646:12;29608:16;:51::i;:::-;29601:58;29157:510;-1:-1:-1;;;;;;;29157:510:0:o;31843:712::-;31993:12;32022:7;32018:530;;;-1:-1:-1;32053:10:0;32046:17;;32018:530;32167:17;;:21;32163:374;;32365:10;32359:17;32426:15;32413:10;32409:2;32405:19;32398:44;32163:374;32508:12;32501:20;;-1:-1:-1;;;32501:20:0;;;;;;;;:::i;293:131:1:-;-1:-1:-1;;;;;;367:32:1;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:250::-;956:1;966:113;980:6;977:1;974:13;966:113;;;1056:11;;;1050:18;1037:11;;;1030:39;1002:2;995:10;966:113;;;-1:-1:-1;;1113:1:1;1095:16;;1088:27;871:250::o;1126:271::-;1168:3;1206:5;1200:12;1233:6;1228:3;1221:19;1249:76;1318:6;1311:4;1306:3;1302:14;1295:4;1288:5;1284:16;1249:76;:::i;:::-;1379:2;1358:15;-1:-1:-1;;1354:29:1;1345:39;;;;1386:4;1341:50;;1126:271;-1:-1:-1;;1126:271:1:o;1402:220::-;1551:2;1540:9;1533:21;1514:4;1571:45;1612:2;1601:9;1597:18;1589:6;1571:45;:::i;1627:180::-;1686:6;1739:2;1727:9;1718:7;1714:23;1710:32;1707:52;;;1755:1;1752;1745:12;1707:52;-1:-1:-1;1778:23:1;;1627:180;-1:-1:-1;1627:180:1:o;2020:131::-;-1:-1:-1;;;;;2095:31:1;;2085:42;;2075:70;;2141:1;2138;2131:12;2156:315;2224:6;2232;2285:2;2273:9;2264:7;2260:23;2256:32;2253:52;;;2301:1;2298;2291:12;2253:52;2340:9;2327:23;2359:31;2384:5;2359:31;:::i;:::-;2409:5;2461:2;2446:18;;;;2433:32;;-1:-1:-1;;;2156:315:1:o;2658:255::-;2725:6;2778:2;2766:9;2757:7;2753:23;2749:32;2746:52;;;2794:1;2791;2784:12;2746:52;2833:9;2820:23;2852:31;2877:5;2852:31;:::i;2918:456::-;2995:6;3003;3011;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3119:9;3106:23;3138:31;3163:5;3138:31;:::i;:::-;3188:5;-1:-1:-1;3245:2:1;3230:18;;3217:32;3258:33;3217:32;3258:33;:::i;:::-;2918:456;;3310:7;;-1:-1:-1;;;3364:2:1;3349:18;;;;3336:32;;2918:456::o;3379:403::-;3462:6;3470;3523:2;3511:9;3502:7;3498:23;3494:32;3491:52;;;3539:1;3536;3529:12;3491:52;3578:9;3565:23;3597:31;3622:5;3597:31;:::i;:::-;3647:5;-1:-1:-1;3704:2:1;3689:18;;3676:32;3717:33;3676:32;3717:33;:::i;:::-;3769:7;3759:17;;;3379:403;;;;;:::o;4027:127::-;4088:10;4083:3;4079:20;4076:1;4069:31;4119:4;4116:1;4109:15;4143:4;4140:1;4133:15;4159:275;4230:2;4224:9;4295:2;4276:13;;-1:-1:-1;;4272:27:1;4260:40;;-1:-1:-1;;;;;4315:34:1;;4351:22;;;4312:62;4309:88;;;4377:18;;:::i;:::-;4413:2;4406:22;4159:275;;-1:-1:-1;4159:275:1:o;4439:1021::-;4523:6;4554:2;4597;4585:9;4576:7;4572:23;4568:32;4565:52;;;4613:1;4610;4603:12;4565:52;4653:9;4640:23;-1:-1:-1;;;;;4723:2:1;4715:6;4712:14;4709:34;;;4739:1;4736;4729:12;4709:34;4777:6;4766:9;4762:22;4752:32;;4822:7;4815:4;4811:2;4807:13;4803:27;4793:55;;4844:1;4841;4834:12;4793:55;4880:2;4867:16;4902:2;4898;4895:10;4892:36;;;4908:18;;:::i;:::-;4954:2;4951:1;4947:10;4937:20;;4977:28;5001:2;4997;4993:11;4977:28;:::i;:::-;5039:15;;;5109:11;;;5105:20;;;5070:12;;;;5137:19;;;5134:39;;;5169:1;5166;5159:12;5134:39;5193:11;;;;5213:217;5229:6;5224:3;5221:15;5213:217;;;5309:3;5296:17;5283:30;;5326:31;5351:5;5326:31;:::i;:::-;5370:18;;;5246:12;;;;5408;;;;5213:217;;;5449:5;4439:1021;-1:-1:-1;;;;;;;;4439:1021:1:o;5465:407::-;5530:5;-1:-1:-1;;;;;5556:6:1;5553:30;5550:56;;;5586:18;;:::i;:::-;5624:57;5669:2;5648:15;;-1:-1:-1;;5644:29:1;5675:4;5640:40;5624:57;:::i;:::-;5615:66;;5704:6;5697:5;5690:21;5744:3;5735:6;5730:3;5726:16;5723:25;5720:45;;;5761:1;5758;5751:12;5720:45;5810:6;5805:3;5798:4;5791:5;5787:16;5774:43;5864:1;5857:4;5848:6;5841:5;5837:18;5833:29;5826:40;5465:407;;;;;:::o;5877:451::-;5946:6;5999:2;5987:9;5978:7;5974:23;5970:32;5967:52;;;6015:1;6012;6005:12;5967:52;6055:9;6042:23;-1:-1:-1;;;;;6080:6:1;6077:30;6074:50;;;6120:1;6117;6110:12;6074:50;6143:22;;6196:4;6188:13;;6184:27;-1:-1:-1;6174:55:1;;6225:1;6222;6215:12;6174:55;6248:74;6314:7;6309:2;6296:16;6291:2;6287;6283:11;6248:74;:::i;6585:632::-;6756:2;6808:21;;;6878:13;;6781:18;;;6900:22;;;6727:4;;6756:2;6979:15;;;;6953:2;6938:18;;;6727:4;7022:169;7036:6;7033:1;7030:13;7022:169;;;7097:13;;7085:26;;7166:15;;;;7131:12;;;;7058:1;7051:9;7022:169;;;-1:-1:-1;7208:3:1;;6585:632;-1:-1:-1;;;;;;6585:632:1:o;7485:118::-;7571:5;7564:13;7557:21;7550:5;7547:32;7537:60;;7593:1;7590;7583:12;7608:382;7673:6;7681;7734:2;7722:9;7713:7;7709:23;7705:32;7702:52;;;7750:1;7747;7740:12;7702:52;7789:9;7776:23;7808:31;7833:5;7808:31;:::i;:::-;7858:5;-1:-1:-1;7915:2:1;7900:18;;7887:32;7928:30;7887:32;7928:30;:::i;7995:795::-;8090:6;8098;8106;8114;8167:3;8155:9;8146:7;8142:23;8138:33;8135:53;;;8184:1;8181;8174:12;8135:53;8223:9;8210:23;8242:31;8267:5;8242:31;:::i;:::-;8292:5;-1:-1:-1;8349:2:1;8334:18;;8321:32;8362:33;8321:32;8362:33;:::i;:::-;8414:7;-1:-1:-1;8468:2:1;8453:18;;8440:32;;-1:-1:-1;8523:2:1;8508:18;;8495:32;-1:-1:-1;;;;;8539:30:1;;8536:50;;;8582:1;8579;8572:12;8536:50;8605:22;;8658:4;8650:13;;8646:27;-1:-1:-1;8636:55:1;;8687:1;8684;8677:12;8636:55;8710:74;8776:7;8771:2;8758:16;8753:2;8749;8745:11;8710:74;:::i;:::-;8700:84;;;7995:795;;;;;;;:::o;9455:356::-;9657:2;9639:21;;;9676:18;;;9669:30;9735:34;9730:2;9715:18;;9708:62;9802:2;9787:18;;9455:356::o;9816:380::-;9895:1;9891:12;;;;9938;;;9959:61;;10013:4;10005:6;10001:17;9991:27;;9959:61;10066:2;10058:6;10055:14;10035:18;10032:38;10029:161;;10112:10;10107:3;10103:20;10100:1;10093:31;10147:4;10144:1;10137:15;10175:4;10172:1;10165:15;10029:161;;9816:380;;;:::o;10510:245::-;10577:6;10630:2;10618:9;10609:7;10605:23;10601:32;10598:52;;;10646:1;10643;10636:12;10598:52;10678:9;10672:16;10697:28;10719:5;10697:28;:::i;10760:402::-;10962:2;10944:21;;;11001:2;10981:18;;;10974:30;11040:34;11035:2;11020:18;;11013:62;-1:-1:-1;;;11106:2:1;11091:18;;11084:36;11152:3;11137:19;;10760:402::o;11167:127::-;11228:10;11223:3;11219:20;11216:1;11209:31;11259:4;11256:1;11249:15;11283:4;11280:1;11273:15;11299:125;11364:9;;;11385:10;;;11382:36;;;11398:18;;:::i;11429:407::-;11631:2;11613:21;;;11670:2;11650:18;;;11643:30;11709:34;11704:2;11689:18;;11682:62;-1:-1:-1;;;11775:2:1;11760:18;;11753:41;11826:3;11811:19;;11429:407::o;12128:127::-;12189:10;12184:3;12180:20;12177:1;12170:31;12220:4;12217:1;12210:15;12244:4;12241:1;12234:15;12260:135;12299:3;12320:17;;;12317:43;;12340:18;;:::i;:::-;-1:-1:-1;12387:1:1;12376:13;;12260:135::o;12736:184::-;12806:6;12859:2;12847:9;12838:7;12834:23;12830:32;12827:52;;;12875:1;12872;12865:12;12827:52;-1:-1:-1;12898:16:1;;12736:184;-1:-1:-1;12736:184:1:o;13051:545::-;13153:2;13148:3;13145:11;13142:448;;;13189:1;13214:5;13210:2;13203:17;13259:4;13255:2;13245:19;13329:2;13317:10;13313:19;13310:1;13306:27;13300:4;13296:38;13365:4;13353:10;13350:20;13347:47;;;-1:-1:-1;13388:4:1;13347:47;13443:2;13438:3;13434:12;13431:1;13427:20;13421:4;13417:31;13407:41;;13498:82;13516:2;13509:5;13506:13;13498:82;;;13561:17;;;13542:1;13531:13;13498:82;;;13502:3;;;13051:545;;;:::o;13772:1352::-;13898:3;13892:10;-1:-1:-1;;;;;13917:6:1;13914:30;13911:56;;;13947:18;;:::i;:::-;13976:97;14066:6;14026:38;14058:4;14052:11;14026:38;:::i;:::-;14020:4;13976:97;:::i;:::-;14128:4;;14192:2;14181:14;;14209:1;14204:663;;;;14911:1;14928:6;14925:89;;;-1:-1:-1;14980:19:1;;;14974:26;14925:89;-1:-1:-1;;13729:1:1;13725:11;;;13721:24;13717:29;13707:40;13753:1;13749:11;;;13704:57;15027:81;;14174:944;;14204:663;12998:1;12991:14;;;13035:4;13022:18;;-1:-1:-1;;14240:20:1;;;14358:236;14372:7;14369:1;14366:14;14358:236;;;14461:19;;;14455:26;14440:42;;14553:27;;;;14521:1;14509:14;;;;14388:19;;14358:236;;;14362:3;14622:6;14613:7;14610:19;14607:201;;;14683:19;;;14677:26;-1:-1:-1;;14766:1:1;14762:14;;;14778:3;14758:24;14754:37;14750:42;14735:58;14720:74;;14607:201;-1:-1:-1;;;;;14854:1:1;14838:14;;;14834:22;14821:36;;-1:-1:-1;13772:1352:1:o;16580:168::-;16653:9;;;16684;;16701:15;;;16695:22;;16681:37;16671:71;;16722:18;;:::i;18332:456::-;18564:3;18602:6;18596:13;18618:66;18677:6;18672:3;18665:4;18657:6;18653:17;18618:66;:::i;:::-;-1:-1:-1;;;18706:16:1;;18731:22;;;-1:-1:-1;18780:1:1;18769:13;;18332:456;-1:-1:-1;18332:456:1:o;19200:127::-;19261:10;19256:3;19252:20;19249:1;19242:31;19292:4;19289:1;19282:15;19316:4;19313:1;19306:15;19332:120;19372:1;19398;19388:35;;19403:18;;:::i;:::-;-1:-1:-1;19437:9:1;;19332:120::o;19457:128::-;19524:9;;;19545:11;;;19542:37;;;19559:18;;:::i;20585:496::-;20764:3;20802:6;20796:13;20818:66;20877:6;20872:3;20865:4;20857:6;20853:17;20818:66;:::i;:::-;20947:13;;20906:16;;;;20969:70;20947:13;20906:16;21016:4;21004:17;;20969:70;:::i;:::-;21055:20;;20585:496;-1:-1:-1;;;;20585:496:1:o;21497:489::-;-1:-1:-1;;;;;21766:15:1;;;21748:34;;21818:15;;21813:2;21798:18;;21791:43;21865:2;21850:18;;21843:34;;;21913:3;21908:2;21893:18;;21886:31;;;21691:4;;21934:46;;21960:19;;21952:6;21934:46;:::i;:::-;21926:54;21497:489;-1:-1:-1;;;;;;21497:489:1:o;21991:249::-;22060:6;22113:2;22101:9;22092:7;22088:23;22084:32;22081:52;;;22129:1;22126;22119:12;22081:52;22161:9;22155:16;22180:30;22204:5;22180:30;:::i;22245:112::-;22277:1;22303;22293:35;;22308:18;;:::i;:::-;-1:-1:-1;22342:9:1;;22245:112::o;23127:287::-;23256:3;23294:6;23288:13;23310:66;23369:6;23364:3;23357:4;23349:6;23345:17;23310:66;:::i;:::-;23392:16;;;;;23127:287;-1:-1:-1;;23127:287:1:o
Swarm Source
ipfs://dee340a3e852f291c3be2681043cd85310f6099f94c604b3fa0bba275da76af5
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.