Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
222 TI
Holders
120
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TheInfernity
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-16 */ // SPDX-License-Identifier: MIT /* `` -. +- s/ do Nh .Mh` /Mh- -+o/. oMh: -:/+- -ymdhs+:. hMs+ .:+shdy+- .odmmmmdyo/-` mMsy ` `-/oydmmdys/. .+hdmmmmmmdhs+:.` ...`` `MMsh` `.... `.:+sdmmNNmdyys/` `/ymddmmmmmmmddyo/-. .::.` -MMsd. `./:` .-/ohdmNNNNNmhhhyo:` `:yddmNNNNmmmmmmmhsyo:.` +MMsm: `.:ohohmNNNNNNNmdhyyyo-` -sdmmNMMMMNNmmdhhddhyyo:-.`yMMsm+`.-/shdmmmddddNNNmmdhyyys+-` .odmmNMMMNddNNmmdddhdddhydNdsmmdmNNNNmmmmdddmhddhyyyss/. .+hmmNmddMMMMMMMNNmdddddmNMMMMMNNNNNmmdhhhhdyyyyyo/. `/yhhmNmMMMMMMMMMMMNNNmNMMMNNNNmmmddhyysohmyso:` +dNdhhNMMMMMMMMMMMMMMMMNNmmmmdddhhys//sdd/ .ddsohhhmMMMMMMMMMMMMMMMNNmmmddddhyo////omo` ```.--://++ossyyhydymMNhhhdmMMMMMMMMMMMMMNNNmmddhys+/+ohhmmosoo++//::---...``` ``.--://+oosyyhdymshMMMMNdddmMMMMMMMMMMMNmmddhyo+/oyhyyyhmhyooo++//::---...` -ds:``--::/yddmNNMMMMMNNmdhsso++/:-...``/md. sd+ -yyyhMMMMMmdhys/::/. shh `hy- `-/- -hdNNMMMNmhyyso//. -+-` -dy- :dy+ymh: `dydmMMMNmdhyo+:+ +Nmy+dh: `-/yNMMMh- omhdMMMMNmdho/o/ +MMMMNy/-` :hMMMMMm/ -mddMMMMNmmh+os. `yMMMMMMNh` :/+yMMMm/o+. dmdNMMMMNmsoso `-oosMMMNymMh` :++hNMMN/ .//.` +mmmmMMMNhsss: `:o+. oNMMNdNMh` :+yNNmy/- .----dmmNMMMNyyyy--:-. -/ymNMMMy` :sdh+-` hNNMMMMNhhho `-+hNMy -/-` /MMMMMMmhhh: `-o/ `NMMMMMhhhy` yMMMMmhhh+ :MMMMdhhh- mMMMhhhs oMMMhhy/ .MMMhyy. dMMhyo /MMyy: `NMys` yMy+ :My: Ns s+ -- */ // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File: @openzeppelin/contracts/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/EnumerableSet.sol 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; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. 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] = toDeleteIndex + 1; // All indexes are 1-based // 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) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // 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); } // 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)))); } // 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)); } } // File: @openzeppelin/contracts/utils/EnumerableMap.sol pragma solidity ^0.8.0; /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct MapEntry { bytes32 _key; bytes32 _value; } struct Map { // Storage of map keys and values MapEntry[] _entries; // Position of the entry defined by a key in the `entries` array, plus 1 // because index 0 means a key is not in the map. mapping (bytes32 => uint256) _indexes; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) { // Equivalent to !contains(map, key) map._entries.push(MapEntry({ _key: key, _value: value })); // The entry is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value map._indexes[key] = map._entries.length; return true; } else { map._entries[keyIndex - 1]._value = value; return false; } } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex != 0) { // Equivalent to contains(map, key) // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one // in the array, and then remove the last entry (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = keyIndex - 1; uint256 lastIndex = map._entries.length - 1; // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. MapEntry storage lastEntry = map._entries[lastIndex]; // Move the last entry to the index where the entry to delete is map._entries[toDeleteIndex] = lastEntry; // Update the index for the moved entry map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved entry was stored map._entries.pop(); // Delete the index for the deleted slot delete map._indexes[key]; return true; } else { return false; } } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._indexes[key] != 0; } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._entries.length; } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { require(map._entries.length > index, "EnumerableMap: index out of bounds"); MapEntry storage entry = map._entries[index]; return (entry._key, entry._value); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. */ function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) { uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key) return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function _get(Map storage map, bytes32 key) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {_tryGet}. */ function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } // UintToAddressMap struct UintToAddressMap { Map _inner; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) { return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) { return _remove(map._inner, bytes32(key)); } /** * @dev Returns true if the key is in the map. O(1). */ function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) { return _contains(map._inner, bytes32(key)); } /** * @dev Returns the number of elements in the map. O(1). */ function length(UintToAddressMap storage map) internal view returns (uint256) { return _length(map._inner); } /** * @dev Returns the element 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(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) { (bytes32 key, bytes32 value) = _at(map._inner, index); return (uint256(key), address(uint160(uint256(value)))); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. * * _Available since v3.4._ */ function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) { (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key)); return (success, address(uint160(uint256(value)))); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function get(UintToAddressMap storage map, uint256 key) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key))))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryGet}. */ function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))); } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // 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; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; // Base URI string private _baseURI; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _holderTokens[owner].length(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view virtual returns (string memory) { return _baseURI; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: d* * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); // internal owner _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(tokenId); emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (!to.isContract()) { return true; } bytes memory returndata = to.functionCall(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data ), "ERC721: transfer to non ERC721Receiver implementer"); bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } 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); } } pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } } pragma solidity ^0.8.0; contract TheInfernity is ERC721, Ownable { using SafeMath for uint256; using ECDSA for bytes32; string public guardianProvenance = ""; // WILL BE ADDED WHEN ALL SOLD OUT uint256 public constant guardianPrice = 0.12 ether; // Price per collectible uint256 public constant guardianPresalePrice = 0.1 ether; // Price per collectible on presale uint256 public constant maxPurchase = 6; // Max 6 (maximum 3+3) token per purchase uint256 public reserve = 100; // 100 max free mints for owner uint256 public constant maxSupply = 9999; // 4999 + 5000 Total Supply uint256 public constant maxFemales = 4999; // 4999 Priestess Supply uint256 public constant maxMales = 5000; // 5000 Priest Supply uint256 public maleCounter = 0; uint256 public femaleCounter = 0; uint256 public maleIndex = 1; // Odd numbers are Priests uint256 public femaleIndex = 2; // Even numbers are Priestess address public ownerAddress = 0x17F09412466069CA13F479a3EC62B65433E00DD9; // Owner address address public devAddress = 0x7Fe031913A59D3396cF49970B99D24a5Cf0E7159; // Dev address address public signerAddress = 0xf972Ea810BdD84DAc591946a1f508b1D1de7AB36; // Backend Signer address to match signature mapping(address => bool) public presalerList; mapping(address => uint256) public presalerListPurchases; mapping(address => uint256) public malePurchases; mapping(address => uint256) public femalePurchases; bool public saleIsActive = false; bool public presaleIsLive = false; constructor() ERC721("The Infernity", "TI") {} function withdraw() external onlyOwner { uint balance = address(this).balance; _withdraw(devAddress, balance.mul(2).div(100)); _withdraw(ownerAddress, address(this).balance); } function _withdraw(address addr, uint256 amount) private { (bool success, ) = addr.call{value: amount}(""); require(success, "TRANSFER_FAIL"); } function addToPresaleList(address[] calldata entries) external onlyOwner { for(uint256 i = 0; i < entries.length; i++) { address entry = entries[i]; require(entry != address(0), "NULL_ADDRESS"); require(!presalerList[entry], "DUPLICATED_ENTRY"); presalerList[entry] = true; } } function removeFromPresaleList(address[] calldata entries) external onlyOwner { for(uint256 i = 0; i < entries.length; i++) { address entry = entries[i]; require(entry != address(0), "NULL_ADDRESS"); presalerList[entry] = false; } } function reserveTo(address to, uint256 fqty, uint256 mqty) public onlyOwner { uint256 reserveAmount = fqty+mqty; require(reserveAmount > 0 && reserveAmount <= reserve, "NOT_ENOUGH_RESERVED"); require(totalSupply().add(reserveAmount) <= maxSupply, "EXCEED_SUPPLY"); for (uint v = 0; v < fqty; v++) { _safeMint(to, femaleIndex); femaleIndex = femaleIndex.add(2); } for (uint k = 0; k < mqty; k++) { _safeMint(to, maleIndex); maleIndex = maleIndex.add(2); } reserve = reserve.sub(reserveAmount); } function setProvenanceHash(string memory provenanceHash) public onlyOwner { guardianProvenance = provenanceHash; } function setSignerAddress(address signer) public onlyOwner { signerAddress = signer; } function setBaseURI(string memory baseURI) public onlyOwner { _setBaseURI(baseURI); } function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } function flipPreSaleState() public onlyOwner { presaleIsLive = !presaleIsLive; } function matchAddresSigner(bytes32 hash, bytes memory signature) private view returns(bool) { return signerAddress == hash.recover(signature); } function mint(bytes32 hash, uint256 fqty, uint256 mqty, bytes memory signature) external payable { uint256 qty = mqty+fqty; require(saleIsActive, "SALE_INACTIVE"); require(!presaleIsLive, "ONLY_PRESALE"); require(matchAddresSigner(hash, signature), "NO_DIRECT_MINT"); require(qty > 0 && qty <= maxPurchase, "EXCEED_MAX_PER_TRANSACTION"); require(totalSupply().add(qty) <= maxSupply, "EXCEED_SUPPLY"); require(msg.value >= guardianPrice.mul(qty), "INCORRECT_ETH"); require(femaleCounter.add(fqty) <= maxFemales, "EXCEED_FEMALE_SUPPLY"); require(femalePurchases[msg.sender].add(fqty) <= 3, "EXCEED_FEMALE_LIMIT"); // 3 priestess max per wallet on presale require(maleCounter.add(mqty) <= maxMales, "EXCEED_MALE_SUPPLY"); require(malePurchases[msg.sender].add(mqty) <= 3, "EXCEED_MALE_LIMIT"); // 3 priest max per wallet on presale for (uint v = 0; v < fqty; v++) { _safeMint(msg.sender, femaleIndex); femaleIndex = femaleIndex.add(2); femaleCounter = femaleCounter.add(1); femalePurchases[msg.sender]++; } for (uint k = 0; k < mqty; k++) { _safeMint(msg.sender, maleIndex); maleIndex = maleIndex.add(2); maleCounter = maleCounter.add(1); malePurchases[msg.sender]++; } } function presaleMint(uint256 fqty, uint256 mqty, bytes32 hash, bytes memory signature) external payable { uint256 qty = mqty+fqty; require(!saleIsActive && presaleIsLive, "PRESALE_INACTIVE"); require(presalerList[msg.sender], "NOT_QUALIFIED"); require(matchAddresSigner(hash, signature), "NO_DIRECT_MINT"); require(qty > 0 && qty <= maxPurchase, "EXCEED_MAX_PER_TRANSACTION"); require(totalSupply().add(qty) <= maxSupply, "EXCEED_SUPPLY"); require(msg.value >= guardianPresalePrice.mul(qty), "INCORRECT_ETH"); require(femaleCounter.add(fqty) <= maxFemales, "EXCEED_FEMALE_SUPPLY"); require(femalePurchases[msg.sender].add(fqty) <= 2, "EXCEED_FEMALE_LIMIT"); // 2 priestess max per wallet on presale require(maleCounter.add(mqty) <= maxMales, "EXCEED_MALE_SUPPLY"); require(malePurchases[msg.sender].add(mqty) <= 2, "EXCEED_MALE_LIMIT"); // 2 priest max per wallet on presale for (uint v = 0; v < fqty; v++) { _safeMint(msg.sender, femaleIndex); femaleIndex = femaleIndex.add(2); femaleCounter = femaleCounter.add(1); femalePurchases[msg.sender]++; } for (uint k = 0; k < mqty; k++) { _safeMint(msg.sender, maleIndex); maleIndex = maleIndex.add(2); maleCounter = maleCounter.add(1); malePurchases[msg.sender]++; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"femaleCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"femaleIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"femalePurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"guardianPresalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"guardianPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"guardianProvenance","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maleCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maleIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"malePurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFemales","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMales","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":"bytes32","name":"hash","type":"bytes32"},{"internalType":"uint256","name":"fqty","type":"uint256"},{"internalType":"uint256","name":"mqty","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleIsLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"fqty","type":"uint256"},{"internalType":"uint256","name":"mqty","type":"uint256"},{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"fqty","type":"uint256"},{"internalType":"uint256","name":"mqty","type":"uint256"}],"name":"reserveTo","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":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b91600b9162000235565b506064600c556000600d819055600e556001600f556002601055601180546001600160a01b03199081167317f09412466069ca13f479a3ec62b65433e00dd917909155601280548216737fe031913a59d3396cf49970b99d24a5cf0e71591790556013805490911673f972ea810bdd84dac591946a1f508b1d1de7ab361790556018805461ffff19169055348015620000b357600080fd5b50604080518082018252600d81526c54686520496e6665726e69747960981b60208083019190915282518084019093526002835261544960f01b9083015290620001046301ffc9a760e01b620001b1565b81516200011990600690602085019062000235565b5080516200012f90600790602084019062000235565b50620001426380ac58cd60e01b620001b1565b62000154635b5e139f60e01b620001b1565b6200016663780e9d6360e01b620001b1565b5050600a80546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000318565b6001600160e01b03198082161415620002105760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015260640160405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b8280546200024390620002db565b90600052602060002090601f016020900481019282620002675760008555620002b2565b82601f106200028257805160ff1916838001178555620002b2565b82800160010185558215620002b2579182015b82811115620002b257825182559160200191906001019062000295565b50620002c0929150620002c4565b5090565b5b80821115620002c05760008155600101620002c5565b600181811c90821680620002f057607f821691505b602082108114156200031257634e487b7160e01b600052602260045260246000fd5b50919050565b61381e80620003286000396000f3fe6080604052600436106102ff5760003560e01c806370a0823111610190578063a22cb465116100dc578063cd3293de11610095578063e985e9c51161006f578063e985e9c5146108c7578063eb8d244414610910578063f03255491461092a578063f2fde38b1461093f57600080fd5b8063cd3293de1461087f578063d5abeb0114610895578063e5f02609146108ab57600080fd5b8063a22cb465146107d4578063a754e932146107f4578063b179e0601461080a578063b191d1e31461082a578063b88d4fde1461083f578063c87b56dd1461085f57600080fd5b80638f84aa091161014957806396c746a71161012357806396c746a71461074c578063977b055b146107625780639bf80316146107775780639cf2e8d6146107a457600080fd5b80638f84aa09146106ea5780639349f13b1461070a57806395d89b411461073757600080fd5b806370a082311461064b578063715018a61461066b5780637204a3c9146106805780637783e3b6146106a05780637eb7d796146106b65780638da5cb5b146106cc57600080fd5b806331bf74631161024f5780634f6ccce7116102085780635b5e9ae8116101e25780635b5e9ae8146105e35780635b7633d0146105f65780636352211e146106165780636c0360eb1461063657600080fd5b80634f6ccce71461059057806355f804b3146105b0578063566586a0146105d057600080fd5b806331bf7463146104f4578063348bb3211461051057806334918dfd146105265780633ad10ef61461053b5780633ccfd60b1461055b57806342842e0e1461057057600080fd5b80630f4f58db116102bc57806318602dc81161029657806318602dc81461047f57806323b872dd1461049e5780632839f464146104be5780632f745c59146104d457600080fd5b80630f4f58db1461042a578063109695231461044a57806318160ddd1461046a57600080fd5b806301ffc9a714610304578063046dc1661461035357806306fdde0314610375578063081812fc14610397578063095ea7b3146103cf5780630d1c4274146103ef575b600080fd5b34801561031057600080fd5b5061033e61031f366004613399565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561035f57600080fd5b5061037361036e366004613157565b61095f565b005b34801561038157600080fd5b5061038a6109b4565b60405161034a91906134e9565b3480156103a357600080fd5b506103b76103b236600461341c565b610a46565b6040516001600160a01b03909116815260200161034a565b3480156103db57600080fd5b506103736103ea366004613285565b610ace565b3480156103fb57600080fd5b5061041c61040a366004613157565b60166020526000908152604090205481565b60405190815260200161034a565b34801561043657600080fd5b506103736104453660046132af565b610be4565b34801561045657600080fd5b506103736104653660046133d3565b610d2f565b34801561047657600080fd5b5061041c610d70565b34801561048b57600080fd5b5060185461033e90610100900460ff1681565b3480156104aa57600080fd5b506103736104b93660046131a5565b610d81565b3480156104ca57600080fd5b5061041c61138881565b3480156104e057600080fd5b5061041c6104ef366004613285565b610db2565b34801561050057600080fd5b5061041c6701aa535d3d0c000081565b34801561051c57600080fd5b5061041c600f5481565b34801561053257600080fd5b50610373610ddd565b34801561054757600080fd5b506012546103b7906001600160a01b031681565b34801561056757600080fd5b50610373610e1b565b34801561057c57600080fd5b5061037361058b3660046131a5565b610e8b565b34801561059c57600080fd5b5061041c6105ab36600461341c565b610ea6565b3480156105bc57600080fd5b506103736105cb3660046133d3565b610ebc565b6103736105de366004613357565b610eef565b6103736105f1366004613357565b611313565b34801561060257600080fd5b506013546103b7906001600160a01b031681565b34801561062257600080fd5b506103b761063136600461341c565b611710565b34801561064257600080fd5b5061038a611738565b34801561065757600080fd5b5061041c610666366004613157565b611747565b34801561067757600080fd5b506103736117d3565b34801561068c57600080fd5b5061037361069b3660046132e2565b611847565b3480156106ac57600080fd5b5061041c600d5481565b3480156106c257600080fd5b5061041c61138781565b3480156106d857600080fd5b50600a546001600160a01b03166103b7565b3480156106f657600080fd5b506011546103b7906001600160a01b031681565b34801561071657600080fd5b5061041c610725366004613157565b60176020526000908152604090205481565b34801561074357600080fd5b5061038a61197c565b34801561075857600080fd5b5061041c60105481565b34801561076e57600080fd5b5061041c600681565b34801561078357600080fd5b5061041c610792366004613157565b60156020526000908152604090205481565b3480156107b057600080fd5b5061033e6107bf366004613157565b60146020526000908152604090205460ff1681565b3480156107e057600080fd5b506103736107ef366004613249565b61198b565b34801561080057600080fd5b5061041c600e5481565b34801561081657600080fd5b506103736108253660046132e2565b611a50565b34801561083657600080fd5b5061038a611b26565b34801561084b57600080fd5b5061037361085a3660046131e1565b611bb4565b34801561086b57600080fd5b5061038a61087a36600461341c565b611bec565b34801561088b57600080fd5b5061041c600c5481565b3480156108a157600080fd5b5061041c61270f81565b3480156108b757600080fd5b5061041c67016345785d8a000081565b3480156108d357600080fd5b5061033e6108e2366004613172565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561091c57600080fd5b5060185461033e9060ff1681565b34801561093657600080fd5b50610373611d5e565b34801561094b57600080fd5b5061037361095a366004613157565b611da5565b600a546001600160a01b031633146109925760405162461bcd60e51b81526004016109899061354e565b60405180910390fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6060600680546109c390613689565b80601f01602080910402602001604051908101604052809291908181526020018280546109ef90613689565b8015610a3c5780601f10610a1157610100808354040283529160200191610a3c565b820191906000526020600020905b815481529060010190602001808311610a1f57829003601f168201915b5050505050905090565b6000610a5182611e90565b610ab25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610989565b506000908152600460205260409020546001600160a01b031690565b6000610ad982611710565b9050806001600160a01b0316836001600160a01b03161415610b475760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610989565b336001600160a01b0382161480610b635750610b6381336108e2565b610bd55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610989565b610bdf8383611e9d565b505050565b600a546001600160a01b03163314610c0e5760405162461bcd60e51b81526004016109899061354e565b6000610c1a82846135fb565b9050600081118015610c2e5750600c548111155b610c705760405162461bcd60e51b81526020600482015260136024820152721393d517d15393d551d217d49154d154959151606a1b6044820152606401610989565b61270f610c8582610c7f610d70565b90611f0b565b1115610ca35760405162461bcd60e51b815260040161098990613583565b60005b83811015610cdd57610cba85601054611f6a565b601054610cc8906002611f0b565b60105580610cd5816136c4565b915050610ca6565b5060005b82811015610d1857610cf585600f54611f6a565b600f54610d03906002611f0b565b600f5580610d10816136c4565b915050610ce1565b50600c54610d269082611f84565b600c5550505050565b600a546001600160a01b03163314610d595760405162461bcd60e51b81526004016109899061354e565b8051610d6c90600b90602084019061300c565b5050565b6000610d7c6002611fe0565b905090565b610d8b3382611fea565b610da75760405162461bcd60e51b8152600401610989906135aa565b610bdf8383836120d4565b6001600160a01b0382166000908152600160205260408120610dd49083612255565b90505b92915050565b600a546001600160a01b03163314610e075760405162461bcd60e51b81526004016109899061354e565b6018805460ff19811660ff90911615179055565b600a546001600160a01b03163314610e455760405162461bcd60e51b81526004016109899061354e565b6012544790610e72906001600160a01b0316610e6d6064610e67856002612261565b906122e0565b61233b565b601154610e88906001600160a01b03164761233b565b50565b610bdf83838360405180602001604052806000815250611bb4565b600080610eb46002846123ce565b509392505050565b600a546001600160a01b03163314610ee65760405162461bcd60e51b81526004016109899061354e565b610e88816123ec565b6000610efb85856135fb565b60185490915060ff16158015610f185750601854610100900460ff165b610f575760405162461bcd60e51b815260206004820152601060248201526f50524553414c455f494e41435449564560801b6044820152606401610989565b3360009081526014602052604090205460ff16610fa65760405162461bcd60e51b815260206004820152600d60248201526c1393d517d45550531251925151609a1b6044820152606401610989565b610fb083836123ff565b610fed5760405162461bcd60e51b815260206004820152600e60248201526d1393d7d112549150d517d352539560921b6044820152606401610989565b600081118015610ffe575060068111155b61104a5760405162461bcd60e51b815260206004820152601a60248201527f4558434545445f4d41585f5045525f5452414e53414354494f4e0000000000006044820152606401610989565b61270f61105982610c7f610d70565b11156110775760405162461bcd60e51b815260040161098990613583565b61108967016345785d8a000082612261565b3410156110c85760405162461bcd60e51b815260206004820152600d60248201526c0929c869ea4a48a86a8be8aa89609b1b6044820152606401610989565b600e54611387906110d99087611f0b565b111561111e5760405162461bcd60e51b81526020600482015260146024820152734558434545445f46454d414c455f535550504c5960601b6044820152606401610989565b3360009081526017602052604090205460029061113b9087611f0b565b111561117f5760405162461bcd60e51b8152602060048201526013602482015272115610d1515117d1915350531157d312535255606a1b6044820152606401610989565b600d54611388906111909086611f0b565b11156111d35760405162461bcd60e51b81526020600482015260126024820152714558434545445f4d414c455f535550504c5960701b6044820152606401610989565b336000908152601660205260409020546002906111f09086611f0b565b11156112325760405162461bcd60e51b8152602060048201526011602482015270115610d1515117d350531157d312535255607a1b6044820152606401610989565b60005b8581101561129e5761124933601054611f6a565b601054611257906002611f0b565b601055600e54611268906001611f0b565b600e55336000908152601760205260408120805491611286836136c4565b91905055508080611296906136c4565b915050611235565b5060005b8481101561130b576112b633600f54611f6a565b600f546112c4906002611f0b565b600f55600d546112d5906001611f0b565b600d553360009081526016602052604081208054916112f3836136c4565b91905055508080611303906136c4565b9150506112a2565b505050505050565b600061131f84846135fb565b60185490915060ff166113645760405162461bcd60e51b815260206004820152600d60248201526c53414c455f494e41435449564560981b6044820152606401610989565b601854610100900460ff16156113ab5760405162461bcd60e51b815260206004820152600c60248201526b4f4e4c595f50524553414c4560a01b6044820152606401610989565b6113b585836123ff565b6113f25760405162461bcd60e51b815260206004820152600e60248201526d1393d7d112549150d517d352539560921b6044820152606401610989565b600081118015611403575060068111155b61144f5760405162461bcd60e51b815260206004820152601a60248201527f4558434545445f4d41585f5045525f5452414e53414354494f4e0000000000006044820152606401610989565b61270f61145e82610c7f610d70565b111561147c5760405162461bcd60e51b815260040161098990613583565b61148e6701aa535d3d0c000082612261565b3410156114cd5760405162461bcd60e51b815260206004820152600d60248201526c0929c869ea4a48a86a8be8aa89609b1b6044820152606401610989565b600e54611387906114de9086611f0b565b11156115235760405162461bcd60e51b81526020600482015260146024820152734558434545445f46454d414c455f535550504c5960601b6044820152606401610989565b336000908152601760205260409020546003906115409086611f0b565b11156115845760405162461bcd60e51b8152602060048201526013602482015272115610d1515117d1915350531157d312535255606a1b6044820152606401610989565b600d54611388906115959085611f0b565b11156115d85760405162461bcd60e51b81526020600482015260126024820152714558434545445f4d414c455f535550504c5960701b6044820152606401610989565b336000908152601660205260409020546003906115f59085611f0b565b11156116375760405162461bcd60e51b8152602060048201526011602482015270115610d1515117d350531157d312535255607a1b6044820152606401610989565b60005b848110156116a35761164e33601054611f6a565b60105461165c906002611f0b565b601055600e5461166d906001611f0b565b600e5533600090815260176020526040812080549161168b836136c4565b9190505550808061169b906136c4565b91505061163a565b5060005b8381101561130b576116bb33600f54611f6a565b600f546116c9906002611f0b565b600f55600d546116da906001611f0b565b600d553360009081526016602052604081208054916116f8836136c4565b91905055508080611708906136c4565b9150506116a7565b6000610dd7826040518060600160405280602981526020016137c06029913960029190612423565b6060600980546109c390613689565b60006001600160a01b0382166117b25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610989565b6001600160a01b0382166000908152600160205260409020610dd790611fe0565b600a546001600160a01b031633146117fd5760405162461bcd60e51b81526004016109899061354e565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633146118715760405162461bcd60e51b81526004016109899061354e565b60005b81811015610bdf5760008383838181106118905761189061374b565b90506020020160208101906118a59190613157565b90506001600160a01b0381166118ec5760405162461bcd60e51b815260206004820152600c60248201526b4e554c4c5f4144445245535360a01b6044820152606401610989565b6001600160a01b03811660009081526014602052604090205460ff16156119485760405162461bcd60e51b815260206004820152601060248201526f4455504c4943415445445f454e54525960801b6044820152606401610989565b6001600160a01b03166000908152601460205260409020805460ff1916600117905580611974816136c4565b915050611874565b6060600780546109c390613689565b6001600160a01b0382163314156119e45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610989565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a7a5760405162461bcd60e51b81526004016109899061354e565b60005b81811015610bdf576000838383818110611a9957611a9961374b565b9050602002016020810190611aae9190613157565b90506001600160a01b038116611af55760405162461bcd60e51b815260206004820152600c60248201526b4e554c4c5f4144445245535360a01b6044820152606401610989565b6001600160a01b03166000908152601460205260409020805460ff1916905580611b1e816136c4565b915050611a7d565b600b8054611b3390613689565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5f90613689565b8015611bac5780601f10611b8157610100808354040283529160200191611bac565b820191906000526020600020905b815481529060010190602001808311611b8f57829003601f168201915b505050505081565b611bbe3383611fea565b611bda5760405162461bcd60e51b8152600401610989906135aa565b611be68484848461243a565b50505050565b6060611bf782611e90565b611c5b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610989565b60008281526008602052604081208054611c7490613689565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca090613689565b8015611ced5780601f10611cc257610100808354040283529160200191611ced565b820191906000526020600020905b815481529060010190602001808311611cd057829003601f168201915b505050505090506000611cfe611738565b9050805160001415611d11575092915050565b815115611d43578082604051602001611d2b92919061347d565b60405160208183030381529060405292505050919050565b80611d4d8561246d565b604051602001611d2b92919061347d565b600a546001600160a01b03163314611d885760405162461bcd60e51b81526004016109899061354e565b6018805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b03163314611dcf5760405162461bcd60e51b81526004016109899061354e565b6001600160a01b038116611e345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610989565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610dd760028361256b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ed282611710565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611f1883856135fb565b905083811015610dd45760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610989565b610d6c828260405180602001604052806000815250612583565b600082821115611fd65760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610989565b610dd48284613646565b6000610dd7825490565b6000611ff582611e90565b6120565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610989565b600061206183611710565b9050806001600160a01b0316846001600160a01b0316148061209c5750836001600160a01b031661209184610a46565b6001600160a01b0316145b806120cc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166120e782611710565b6001600160a01b03161461214f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610989565b6001600160a01b0382166121b15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610989565b6121bc600082611e9d565b6001600160a01b03831660009081526001602052604090206121de90826125b6565b506001600160a01b038216600090815260016020526040902061220190826125c2565b5061220e600282846125ce565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610dd483836125e4565b60008261227057506000610dd7565b600061227c8385613627565b9050826122898583613613565b14610dd45760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610989565b60008082116123315760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610989565b610dd48284613613565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612388576040519150601f19603f3d011682016040523d82523d6000602084013e61238d565b606091505b5050905080610bdf5760405162461bcd60e51b815260206004820152600d60248201526c1514905394d1915497d1905253609a1b6044820152606401610989565b60008080806123dd868661266a565b909450925050505b9250929050565b8051610d6c90600990602084019061300c565b600061240b8383612707565b6013546001600160a01b039182169116149392505050565b6000612430848484612723565b90505b9392505050565b6124458484846120d4565b6124518484848461278c565b611be65760405162461bcd60e51b8152600401610989906134fc565b6060816124915750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124bb57806124a5816136c4565b91506124b49050600a83613613565b9150612495565b60008167ffffffffffffffff8111156124d6576124d6613761565b6040519080825280601f01601f191660200182016040528015612500576020820181803683370190505b5090505b84156120cc57612515600183613646565b9150612522600a866136df565b61252d9060306135fb565b60f81b8183815181106125425761254261374b565b60200101906001600160f81b031916908160001a905350612564600a86613613565b9450612504565b60008181526001830160205260408120541515610dd4565b61258d838361285d565b61259a600084848461278c565b610bdf5760405162461bcd60e51b8152600401610989906134fc565b6000610dd48383612975565b6000610dd48383612a68565b600061243084846001600160a01b038516612ab7565b815460009082106126425760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610989565b8260000182815481106126575761265761374b565b9060005260206000200154905092915050565b8154600090819083106126ca5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610989565b60008460000184815481106126e1576126e161374b565b906000526020600020906002020190508060000154816001015492509250509250929050565b60008060006127168585612b58565b91509150610eb481612bc5565b600082815260018401602052604081205482816127535760405162461bcd60e51b815260040161098991906134e9565b5084612760600183613646565b815481106127705761277061374b565b9060005260206000209060020201600101549150509392505050565b60006001600160a01b0384163b6127a5575060016120cc565b6000612826630a85bd0160e11b338887876040516024016127c994939291906134ac565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b03838183161783525050505060405180606001604052806032815260200161378e603291396001600160a01b0388169190612d80565b905060008180602001905181019061283e91906133b6565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6001600160a01b0382166128b35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610989565b6128bc81611e90565b156129095760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610989565b6001600160a01b038216600090815260016020526040902061292b90826125c2565b50612938600282846125ce565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008181526001830160205260408120548015612a5e576000612999600183613646565b85549091506000906129ad90600190613646565b905060008660000182815481106129c6576129c661374b565b90600052602060002001549050808760000184815481106129e9576129e961374b565b600091825260209091200155612a008360016135fb565b60008281526001890160205260409020558654879080612a2257612a22613735565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610dd7565b6000915050610dd7565b6000818152600183016020526040812054612aaf57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610dd7565b506000610dd7565b600082815260018401602052604081205480612b1c575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055612433565b8285612b29600184613646565b81548110612b3957612b3961374b565b9060005260206000209060020201600101819055506000915050612433565b600080825160411415612b8f5760208301516040840151606085015160001a612b8387828585612d8f565b945094505050506123e5565b825160401415612bb95760208301516040840151612bae868383612e7c565b9350935050506123e5565b506000905060026123e5565b6000816004811115612bd957612bd961371f565b1415612be25750565b6001816004811115612bf657612bf661371f565b1415612c445760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610989565b6002816004811115612c5857612c5861371f565b1415612ca65760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610989565b6003816004811115612cba57612cba61371f565b1415612d135760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610989565b6004816004811115612d2757612d2761371f565b1415610e885760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610989565b60606124308484600085612eab565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612dc65750600090506003612e73565b8460ff16601b14158015612dde57508460ff16601c14155b15612def5750600090506004612e73565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612e43573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612e6c57600060019250925050612e73565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01612e9d87828885612d8f565b935093505050935093915050565b606082471015612f0c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610989565b843b612f5a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610989565b600080866001600160a01b03168587604051612f769190613461565b60006040518083038185875af1925050503d8060008114612fb3576040519150601f19603f3d011682016040523d82523d6000602084013e612fb8565b606091505b5091509150612fc8828286612fd3565b979650505050505050565b60608315612fe2575081612433565b825115612ff25782518084602001fd5b8160405162461bcd60e51b815260040161098991906134e9565b82805461301890613689565b90600052602060002090601f01602090048101928261303a5760008555613080565b82601f1061305357805160ff1916838001178555613080565b82800160010185558215613080579182015b82811115613080578251825591602001919060010190613065565b5061308c929150613090565b5090565b5b8082111561308c5760008155600101613091565b600067ffffffffffffffff808411156130c0576130c0613761565b604051601f8501601f19908116603f011681019082821181831017156130e8576130e8613761565b8160405280935085815286868601111561310157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461313257600080fd5b919050565b600082601f83011261314857600080fd5b610dd4838335602085016130a5565b60006020828403121561316957600080fd5b610dd48261311b565b6000806040838503121561318557600080fd5b61318e8361311b565b915061319c6020840161311b565b90509250929050565b6000806000606084860312156131ba57600080fd5b6131c38461311b565b92506131d16020850161311b565b9150604084013590509250925092565b600080600080608085870312156131f757600080fd5b6132008561311b565b935061320e6020860161311b565b925060408501359150606085013567ffffffffffffffff81111561323157600080fd5b61323d87828801613137565b91505092959194509250565b6000806040838503121561325c57600080fd5b6132658361311b565b91506020830135801515811461327a57600080fd5b809150509250929050565b6000806040838503121561329857600080fd5b6132a18361311b565b946020939093013593505050565b6000806000606084860312156132c457600080fd5b6132cd8461311b565b95602085013595506040909401359392505050565b600080602083850312156132f557600080fd5b823567ffffffffffffffff8082111561330d57600080fd5b818501915085601f83011261332157600080fd5b81358181111561333057600080fd5b8660208260051b850101111561334557600080fd5b60209290920196919550909350505050565b6000806000806080858703121561336d57600080fd5b843593506020850135925060408501359150606085013567ffffffffffffffff81111561323157600080fd5b6000602082840312156133ab57600080fd5b8135610dd481613777565b6000602082840312156133c857600080fd5b8151610dd481613777565b6000602082840312156133e557600080fd5b813567ffffffffffffffff8111156133fc57600080fd5b8201601f8101841361340d57600080fd5b6120cc848235602084016130a5565b60006020828403121561342e57600080fd5b5035919050565b6000815180845261344d81602086016020860161365d565b601f01601f19169290920160200192915050565b6000825161347381846020870161365d565b9190910192915050565b6000835161348f81846020880161365d565b8351908301906134a381836020880161365d565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134df90830184613435565b9695505050505050565b602081526000610dd46020830184613435565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600d908201526c4558434545445f535550504c5960981b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561360e5761360e6136f3565b500190565b60008261362257613622613709565b500490565b6000816000190483118215151615613641576136416136f3565b500290565b600082821015613658576136586136f3565b500390565b60005b83811015613678578181015183820152602001613660565b83811115611be65750506000910152565b600181811c9082168061369d57607f821691505b602082108114156136be57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156136d8576136d86136f3565b5060010190565b6000826136ee576136ee613709565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e8857600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220224c0526be68bdd97ab96eaf2613e3e5f91bf9fd402a56de1e565007eddb626d64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102ff5760003560e01c806370a0823111610190578063a22cb465116100dc578063cd3293de11610095578063e985e9c51161006f578063e985e9c5146108c7578063eb8d244414610910578063f03255491461092a578063f2fde38b1461093f57600080fd5b8063cd3293de1461087f578063d5abeb0114610895578063e5f02609146108ab57600080fd5b8063a22cb465146107d4578063a754e932146107f4578063b179e0601461080a578063b191d1e31461082a578063b88d4fde1461083f578063c87b56dd1461085f57600080fd5b80638f84aa091161014957806396c746a71161012357806396c746a71461074c578063977b055b146107625780639bf80316146107775780639cf2e8d6146107a457600080fd5b80638f84aa09146106ea5780639349f13b1461070a57806395d89b411461073757600080fd5b806370a082311461064b578063715018a61461066b5780637204a3c9146106805780637783e3b6146106a05780637eb7d796146106b65780638da5cb5b146106cc57600080fd5b806331bf74631161024f5780634f6ccce7116102085780635b5e9ae8116101e25780635b5e9ae8146105e35780635b7633d0146105f65780636352211e146106165780636c0360eb1461063657600080fd5b80634f6ccce71461059057806355f804b3146105b0578063566586a0146105d057600080fd5b806331bf7463146104f4578063348bb3211461051057806334918dfd146105265780633ad10ef61461053b5780633ccfd60b1461055b57806342842e0e1461057057600080fd5b80630f4f58db116102bc57806318602dc81161029657806318602dc81461047f57806323b872dd1461049e5780632839f464146104be5780632f745c59146104d457600080fd5b80630f4f58db1461042a578063109695231461044a57806318160ddd1461046a57600080fd5b806301ffc9a714610304578063046dc1661461035357806306fdde0314610375578063081812fc14610397578063095ea7b3146103cf5780630d1c4274146103ef575b600080fd5b34801561031057600080fd5b5061033e61031f366004613399565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561035f57600080fd5b5061037361036e366004613157565b61095f565b005b34801561038157600080fd5b5061038a6109b4565b60405161034a91906134e9565b3480156103a357600080fd5b506103b76103b236600461341c565b610a46565b6040516001600160a01b03909116815260200161034a565b3480156103db57600080fd5b506103736103ea366004613285565b610ace565b3480156103fb57600080fd5b5061041c61040a366004613157565b60166020526000908152604090205481565b60405190815260200161034a565b34801561043657600080fd5b506103736104453660046132af565b610be4565b34801561045657600080fd5b506103736104653660046133d3565b610d2f565b34801561047657600080fd5b5061041c610d70565b34801561048b57600080fd5b5060185461033e90610100900460ff1681565b3480156104aa57600080fd5b506103736104b93660046131a5565b610d81565b3480156104ca57600080fd5b5061041c61138881565b3480156104e057600080fd5b5061041c6104ef366004613285565b610db2565b34801561050057600080fd5b5061041c6701aa535d3d0c000081565b34801561051c57600080fd5b5061041c600f5481565b34801561053257600080fd5b50610373610ddd565b34801561054757600080fd5b506012546103b7906001600160a01b031681565b34801561056757600080fd5b50610373610e1b565b34801561057c57600080fd5b5061037361058b3660046131a5565b610e8b565b34801561059c57600080fd5b5061041c6105ab36600461341c565b610ea6565b3480156105bc57600080fd5b506103736105cb3660046133d3565b610ebc565b6103736105de366004613357565b610eef565b6103736105f1366004613357565b611313565b34801561060257600080fd5b506013546103b7906001600160a01b031681565b34801561062257600080fd5b506103b761063136600461341c565b611710565b34801561064257600080fd5b5061038a611738565b34801561065757600080fd5b5061041c610666366004613157565b611747565b34801561067757600080fd5b506103736117d3565b34801561068c57600080fd5b5061037361069b3660046132e2565b611847565b3480156106ac57600080fd5b5061041c600d5481565b3480156106c257600080fd5b5061041c61138781565b3480156106d857600080fd5b50600a546001600160a01b03166103b7565b3480156106f657600080fd5b506011546103b7906001600160a01b031681565b34801561071657600080fd5b5061041c610725366004613157565b60176020526000908152604090205481565b34801561074357600080fd5b5061038a61197c565b34801561075857600080fd5b5061041c60105481565b34801561076e57600080fd5b5061041c600681565b34801561078357600080fd5b5061041c610792366004613157565b60156020526000908152604090205481565b3480156107b057600080fd5b5061033e6107bf366004613157565b60146020526000908152604090205460ff1681565b3480156107e057600080fd5b506103736107ef366004613249565b61198b565b34801561080057600080fd5b5061041c600e5481565b34801561081657600080fd5b506103736108253660046132e2565b611a50565b34801561083657600080fd5b5061038a611b26565b34801561084b57600080fd5b5061037361085a3660046131e1565b611bb4565b34801561086b57600080fd5b5061038a61087a36600461341c565b611bec565b34801561088b57600080fd5b5061041c600c5481565b3480156108a157600080fd5b5061041c61270f81565b3480156108b757600080fd5b5061041c67016345785d8a000081565b3480156108d357600080fd5b5061033e6108e2366004613172565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561091c57600080fd5b5060185461033e9060ff1681565b34801561093657600080fd5b50610373611d5e565b34801561094b57600080fd5b5061037361095a366004613157565b611da5565b600a546001600160a01b031633146109925760405162461bcd60e51b81526004016109899061354e565b60405180910390fd5b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6060600680546109c390613689565b80601f01602080910402602001604051908101604052809291908181526020018280546109ef90613689565b8015610a3c5780601f10610a1157610100808354040283529160200191610a3c565b820191906000526020600020905b815481529060010190602001808311610a1f57829003601f168201915b5050505050905090565b6000610a5182611e90565b610ab25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610989565b506000908152600460205260409020546001600160a01b031690565b6000610ad982611710565b9050806001600160a01b0316836001600160a01b03161415610b475760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610989565b336001600160a01b0382161480610b635750610b6381336108e2565b610bd55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610989565b610bdf8383611e9d565b505050565b600a546001600160a01b03163314610c0e5760405162461bcd60e51b81526004016109899061354e565b6000610c1a82846135fb565b9050600081118015610c2e5750600c548111155b610c705760405162461bcd60e51b81526020600482015260136024820152721393d517d15393d551d217d49154d154959151606a1b6044820152606401610989565b61270f610c8582610c7f610d70565b90611f0b565b1115610ca35760405162461bcd60e51b815260040161098990613583565b60005b83811015610cdd57610cba85601054611f6a565b601054610cc8906002611f0b565b60105580610cd5816136c4565b915050610ca6565b5060005b82811015610d1857610cf585600f54611f6a565b600f54610d03906002611f0b565b600f5580610d10816136c4565b915050610ce1565b50600c54610d269082611f84565b600c5550505050565b600a546001600160a01b03163314610d595760405162461bcd60e51b81526004016109899061354e565b8051610d6c90600b90602084019061300c565b5050565b6000610d7c6002611fe0565b905090565b610d8b3382611fea565b610da75760405162461bcd60e51b8152600401610989906135aa565b610bdf8383836120d4565b6001600160a01b0382166000908152600160205260408120610dd49083612255565b90505b92915050565b600a546001600160a01b03163314610e075760405162461bcd60e51b81526004016109899061354e565b6018805460ff19811660ff90911615179055565b600a546001600160a01b03163314610e455760405162461bcd60e51b81526004016109899061354e565b6012544790610e72906001600160a01b0316610e6d6064610e67856002612261565b906122e0565b61233b565b601154610e88906001600160a01b03164761233b565b50565b610bdf83838360405180602001604052806000815250611bb4565b600080610eb46002846123ce565b509392505050565b600a546001600160a01b03163314610ee65760405162461bcd60e51b81526004016109899061354e565b610e88816123ec565b6000610efb85856135fb565b60185490915060ff16158015610f185750601854610100900460ff165b610f575760405162461bcd60e51b815260206004820152601060248201526f50524553414c455f494e41435449564560801b6044820152606401610989565b3360009081526014602052604090205460ff16610fa65760405162461bcd60e51b815260206004820152600d60248201526c1393d517d45550531251925151609a1b6044820152606401610989565b610fb083836123ff565b610fed5760405162461bcd60e51b815260206004820152600e60248201526d1393d7d112549150d517d352539560921b6044820152606401610989565b600081118015610ffe575060068111155b61104a5760405162461bcd60e51b815260206004820152601a60248201527f4558434545445f4d41585f5045525f5452414e53414354494f4e0000000000006044820152606401610989565b61270f61105982610c7f610d70565b11156110775760405162461bcd60e51b815260040161098990613583565b61108967016345785d8a000082612261565b3410156110c85760405162461bcd60e51b815260206004820152600d60248201526c0929c869ea4a48a86a8be8aa89609b1b6044820152606401610989565b600e54611387906110d99087611f0b565b111561111e5760405162461bcd60e51b81526020600482015260146024820152734558434545445f46454d414c455f535550504c5960601b6044820152606401610989565b3360009081526017602052604090205460029061113b9087611f0b565b111561117f5760405162461bcd60e51b8152602060048201526013602482015272115610d1515117d1915350531157d312535255606a1b6044820152606401610989565b600d54611388906111909086611f0b565b11156111d35760405162461bcd60e51b81526020600482015260126024820152714558434545445f4d414c455f535550504c5960701b6044820152606401610989565b336000908152601660205260409020546002906111f09086611f0b565b11156112325760405162461bcd60e51b8152602060048201526011602482015270115610d1515117d350531157d312535255607a1b6044820152606401610989565b60005b8581101561129e5761124933601054611f6a565b601054611257906002611f0b565b601055600e54611268906001611f0b565b600e55336000908152601760205260408120805491611286836136c4565b91905055508080611296906136c4565b915050611235565b5060005b8481101561130b576112b633600f54611f6a565b600f546112c4906002611f0b565b600f55600d546112d5906001611f0b565b600d553360009081526016602052604081208054916112f3836136c4565b91905055508080611303906136c4565b9150506112a2565b505050505050565b600061131f84846135fb565b60185490915060ff166113645760405162461bcd60e51b815260206004820152600d60248201526c53414c455f494e41435449564560981b6044820152606401610989565b601854610100900460ff16156113ab5760405162461bcd60e51b815260206004820152600c60248201526b4f4e4c595f50524553414c4560a01b6044820152606401610989565b6113b585836123ff565b6113f25760405162461bcd60e51b815260206004820152600e60248201526d1393d7d112549150d517d352539560921b6044820152606401610989565b600081118015611403575060068111155b61144f5760405162461bcd60e51b815260206004820152601a60248201527f4558434545445f4d41585f5045525f5452414e53414354494f4e0000000000006044820152606401610989565b61270f61145e82610c7f610d70565b111561147c5760405162461bcd60e51b815260040161098990613583565b61148e6701aa535d3d0c000082612261565b3410156114cd5760405162461bcd60e51b815260206004820152600d60248201526c0929c869ea4a48a86a8be8aa89609b1b6044820152606401610989565b600e54611387906114de9086611f0b565b11156115235760405162461bcd60e51b81526020600482015260146024820152734558434545445f46454d414c455f535550504c5960601b6044820152606401610989565b336000908152601760205260409020546003906115409086611f0b565b11156115845760405162461bcd60e51b8152602060048201526013602482015272115610d1515117d1915350531157d312535255606a1b6044820152606401610989565b600d54611388906115959085611f0b565b11156115d85760405162461bcd60e51b81526020600482015260126024820152714558434545445f4d414c455f535550504c5960701b6044820152606401610989565b336000908152601660205260409020546003906115f59085611f0b565b11156116375760405162461bcd60e51b8152602060048201526011602482015270115610d1515117d350531157d312535255607a1b6044820152606401610989565b60005b848110156116a35761164e33601054611f6a565b60105461165c906002611f0b565b601055600e5461166d906001611f0b565b600e5533600090815260176020526040812080549161168b836136c4565b9190505550808061169b906136c4565b91505061163a565b5060005b8381101561130b576116bb33600f54611f6a565b600f546116c9906002611f0b565b600f55600d546116da906001611f0b565b600d553360009081526016602052604081208054916116f8836136c4565b91905055508080611708906136c4565b9150506116a7565b6000610dd7826040518060600160405280602981526020016137c06029913960029190612423565b6060600980546109c390613689565b60006001600160a01b0382166117b25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610989565b6001600160a01b0382166000908152600160205260409020610dd790611fe0565b600a546001600160a01b031633146117fd5760405162461bcd60e51b81526004016109899061354e565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031633146118715760405162461bcd60e51b81526004016109899061354e565b60005b81811015610bdf5760008383838181106118905761189061374b565b90506020020160208101906118a59190613157565b90506001600160a01b0381166118ec5760405162461bcd60e51b815260206004820152600c60248201526b4e554c4c5f4144445245535360a01b6044820152606401610989565b6001600160a01b03811660009081526014602052604090205460ff16156119485760405162461bcd60e51b815260206004820152601060248201526f4455504c4943415445445f454e54525960801b6044820152606401610989565b6001600160a01b03166000908152601460205260409020805460ff1916600117905580611974816136c4565b915050611874565b6060600780546109c390613689565b6001600160a01b0382163314156119e45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610989565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a7a5760405162461bcd60e51b81526004016109899061354e565b60005b81811015610bdf576000838383818110611a9957611a9961374b565b9050602002016020810190611aae9190613157565b90506001600160a01b038116611af55760405162461bcd60e51b815260206004820152600c60248201526b4e554c4c5f4144445245535360a01b6044820152606401610989565b6001600160a01b03166000908152601460205260409020805460ff1916905580611b1e816136c4565b915050611a7d565b600b8054611b3390613689565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5f90613689565b8015611bac5780601f10611b8157610100808354040283529160200191611bac565b820191906000526020600020905b815481529060010190602001808311611b8f57829003601f168201915b505050505081565b611bbe3383611fea565b611bda5760405162461bcd60e51b8152600401610989906135aa565b611be68484848461243a565b50505050565b6060611bf782611e90565b611c5b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610989565b60008281526008602052604081208054611c7490613689565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca090613689565b8015611ced5780601f10611cc257610100808354040283529160200191611ced565b820191906000526020600020905b815481529060010190602001808311611cd057829003601f168201915b505050505090506000611cfe611738565b9050805160001415611d11575092915050565b815115611d43578082604051602001611d2b92919061347d565b60405160208183030381529060405292505050919050565b80611d4d8561246d565b604051602001611d2b92919061347d565b600a546001600160a01b03163314611d885760405162461bcd60e51b81526004016109899061354e565b6018805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b03163314611dcf5760405162461bcd60e51b81526004016109899061354e565b6001600160a01b038116611e345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610989565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610dd760028361256b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ed282611710565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611f1883856135fb565b905083811015610dd45760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610989565b610d6c828260405180602001604052806000815250612583565b600082821115611fd65760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006044820152606401610989565b610dd48284613646565b6000610dd7825490565b6000611ff582611e90565b6120565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610989565b600061206183611710565b9050806001600160a01b0316846001600160a01b0316148061209c5750836001600160a01b031661209184610a46565b6001600160a01b0316145b806120cc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166120e782611710565b6001600160a01b03161461214f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610989565b6001600160a01b0382166121b15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610989565b6121bc600082611e9d565b6001600160a01b03831660009081526001602052604090206121de90826125b6565b506001600160a01b038216600090815260016020526040902061220190826125c2565b5061220e600282846125ce565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610dd483836125e4565b60008261227057506000610dd7565b600061227c8385613627565b9050826122898583613613565b14610dd45760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610989565b60008082116123315760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f0000000000006044820152606401610989565b610dd48284613613565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612388576040519150601f19603f3d011682016040523d82523d6000602084013e61238d565b606091505b5050905080610bdf5760405162461bcd60e51b815260206004820152600d60248201526c1514905394d1915497d1905253609a1b6044820152606401610989565b60008080806123dd868661266a565b909450925050505b9250929050565b8051610d6c90600990602084019061300c565b600061240b8383612707565b6013546001600160a01b039182169116149392505050565b6000612430848484612723565b90505b9392505050565b6124458484846120d4565b6124518484848461278c565b611be65760405162461bcd60e51b8152600401610989906134fc565b6060816124915750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124bb57806124a5816136c4565b91506124b49050600a83613613565b9150612495565b60008167ffffffffffffffff8111156124d6576124d6613761565b6040519080825280601f01601f191660200182016040528015612500576020820181803683370190505b5090505b84156120cc57612515600183613646565b9150612522600a866136df565b61252d9060306135fb565b60f81b8183815181106125425761254261374b565b60200101906001600160f81b031916908160001a905350612564600a86613613565b9450612504565b60008181526001830160205260408120541515610dd4565b61258d838361285d565b61259a600084848461278c565b610bdf5760405162461bcd60e51b8152600401610989906134fc565b6000610dd48383612975565b6000610dd48383612a68565b600061243084846001600160a01b038516612ab7565b815460009082106126425760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610989565b8260000182815481106126575761265761374b565b9060005260206000200154905092915050565b8154600090819083106126ca5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610989565b60008460000184815481106126e1576126e161374b565b906000526020600020906002020190508060000154816001015492509250509250929050565b60008060006127168585612b58565b91509150610eb481612bc5565b600082815260018401602052604081205482816127535760405162461bcd60e51b815260040161098991906134e9565b5084612760600183613646565b815481106127705761277061374b565b9060005260206000209060020201600101549150509392505050565b60006001600160a01b0384163b6127a5575060016120cc565b6000612826630a85bd0160e11b338887876040516024016127c994939291906134ac565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b03838183161783525050505060405180606001604052806032815260200161378e603291396001600160a01b0388169190612d80565b905060008180602001905181019061283e91906133b6565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6001600160a01b0382166128b35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610989565b6128bc81611e90565b156129095760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610989565b6001600160a01b038216600090815260016020526040902061292b90826125c2565b50612938600282846125ce565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008181526001830160205260408120548015612a5e576000612999600183613646565b85549091506000906129ad90600190613646565b905060008660000182815481106129c6576129c661374b565b90600052602060002001549050808760000184815481106129e9576129e961374b565b600091825260209091200155612a008360016135fb565b60008281526001890160205260409020558654879080612a2257612a22613735565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610dd7565b6000915050610dd7565b6000818152600183016020526040812054612aaf57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610dd7565b506000610dd7565b600082815260018401602052604081205480612b1c575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055612433565b8285612b29600184613646565b81548110612b3957612b3961374b565b9060005260206000209060020201600101819055506000915050612433565b600080825160411415612b8f5760208301516040840151606085015160001a612b8387828585612d8f565b945094505050506123e5565b825160401415612bb95760208301516040840151612bae868383612e7c565b9350935050506123e5565b506000905060026123e5565b6000816004811115612bd957612bd961371f565b1415612be25750565b6001816004811115612bf657612bf661371f565b1415612c445760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610989565b6002816004811115612c5857612c5861371f565b1415612ca65760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610989565b6003816004811115612cba57612cba61371f565b1415612d135760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610989565b6004816004811115612d2757612d2761371f565b1415610e885760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610989565b60606124308484600085612eab565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612dc65750600090506003612e73565b8460ff16601b14158015612dde57508460ff16601c14155b15612def5750600090506004612e73565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612e43573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612e6c57600060019250925050612e73565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01612e9d87828885612d8f565b935093505050935093915050565b606082471015612f0c5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610989565b843b612f5a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610989565b600080866001600160a01b03168587604051612f769190613461565b60006040518083038185875af1925050503d8060008114612fb3576040519150601f19603f3d011682016040523d82523d6000602084013e612fb8565b606091505b5091509150612fc8828286612fd3565b979650505050505050565b60608315612fe2575081612433565b825115612ff25782518084602001fd5b8160405162461bcd60e51b815260040161098991906134e9565b82805461301890613689565b90600052602060002090601f01602090048101928261303a5760008555613080565b82601f1061305357805160ff1916838001178555613080565b82800160010185558215613080579182015b82811115613080578251825591602001919060010190613065565b5061308c929150613090565b5090565b5b8082111561308c5760008155600101613091565b600067ffffffffffffffff808411156130c0576130c0613761565b604051601f8501601f19908116603f011681019082821181831017156130e8576130e8613761565b8160405280935085815286868601111561310157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461313257600080fd5b919050565b600082601f83011261314857600080fd5b610dd4838335602085016130a5565b60006020828403121561316957600080fd5b610dd48261311b565b6000806040838503121561318557600080fd5b61318e8361311b565b915061319c6020840161311b565b90509250929050565b6000806000606084860312156131ba57600080fd5b6131c38461311b565b92506131d16020850161311b565b9150604084013590509250925092565b600080600080608085870312156131f757600080fd5b6132008561311b565b935061320e6020860161311b565b925060408501359150606085013567ffffffffffffffff81111561323157600080fd5b61323d87828801613137565b91505092959194509250565b6000806040838503121561325c57600080fd5b6132658361311b565b91506020830135801515811461327a57600080fd5b809150509250929050565b6000806040838503121561329857600080fd5b6132a18361311b565b946020939093013593505050565b6000806000606084860312156132c457600080fd5b6132cd8461311b565b95602085013595506040909401359392505050565b600080602083850312156132f557600080fd5b823567ffffffffffffffff8082111561330d57600080fd5b818501915085601f83011261332157600080fd5b81358181111561333057600080fd5b8660208260051b850101111561334557600080fd5b60209290920196919550909350505050565b6000806000806080858703121561336d57600080fd5b843593506020850135925060408501359150606085013567ffffffffffffffff81111561323157600080fd5b6000602082840312156133ab57600080fd5b8135610dd481613777565b6000602082840312156133c857600080fd5b8151610dd481613777565b6000602082840312156133e557600080fd5b813567ffffffffffffffff8111156133fc57600080fd5b8201601f8101841361340d57600080fd5b6120cc848235602084016130a5565b60006020828403121561342e57600080fd5b5035919050565b6000815180845261344d81602086016020860161365d565b601f01601f19169290920160200192915050565b6000825161347381846020870161365d565b9190910192915050565b6000835161348f81846020880161365d565b8351908301906134a381836020880161365d565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134df90830184613435565b9695505050505050565b602081526000610dd46020830184613435565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600d908201526c4558434545445f535550504c5960981b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561360e5761360e6136f3565b500190565b60008261362257613622613709565b500490565b6000816000190483118215151615613641576136416136f3565b500290565b600082821015613658576136586136f3565b500390565b60005b83811015613678578181015183820152602001613660565b83811115611be65750506000910152565b600181811c9082168061369d57607f821691505b602082108114156136be57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156136d8576136d86136f3565b5060010190565b6000826136ee576136ee613709565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e8857600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220224c0526be68bdd97ab96eaf2613e3e5f91bf9fd402a56de1e565007eddb626d64736f6c63430008070033
Deployed Bytecode Sourcemap
79278:6974:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14943:150;;;;;;;;;;-1:-1:-1;14943:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;;15052:33:0;15028:4;15052:33;;;;;;;;;;;;;;14943:150;;;;8238:14:1;;8231:22;8213:41;;8201:2;8186:18;14943:150:0;;;;;;;;82771:100;;;;;;;;;;-1:-1:-1;82771:100:0;;;;;:::i;:::-;;:::i;:::-;;55191;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57977:221::-;;;;;;;;;;-1:-1:-1;57977:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7536:32:1;;;7518:51;;7506:2;7491:18;57977:221:0;7372:203:1;57507:404:0;;;;;;;;;;-1:-1:-1;57507:404:0;;;;;:::i;:::-;;:::i;80666:48::-;;;;;;;;;;-1:-1:-1;80666:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;25090:25:1;;;25078:2;25063:18;80666:48:0;24944:177:1;81976:651:0;;;;;;;;;;-1:-1:-1;81976:651:0;;;;;:::i;:::-;;:::i;82635:128::-;;;;;;;;;;-1:-1:-1;82635:128:0;;;;;:::i;:::-;;:::i;56985:211::-;;;;;;;;;;;;;:::i;80819:34::-;;;;;;;;;;-1:-1:-1;80819:34:0;;;;;;;;;;;58867:305;;;;;;;;;;-1:-1:-1;58867:305:0;;;;;:::i;:::-;;:::i;79962:39::-;;;;;;;;;;;;79997:4;79962:39;;56747:162;;;;;;;;;;-1:-1:-1;56747:162:0;;;;;:::i;:::-;;:::i;79478:50::-;;;;;;;;;;;;79518:10;79478:50;;80106:28;;;;;;;;;;;;;;;;82986:89;;;;;;;;;;;;;:::i;80333:70::-;;;;;;;;;;-1:-1:-1;80333:70:0;;;;-1:-1:-1;;;;;80333:70:0;;;80920:208;;;;;;;;;;;;;:::i;59243:151::-;;;;;;;;;;-1:-1:-1;59243:151:0;;;;;:::i;:::-;;:::i;57273:172::-;;;;;;;;;;-1:-1:-1;57273:172:0;;;;;:::i;:::-;;:::i;82879:99::-;;;;;;;;;;-1:-1:-1;82879:99:0;;;;;:::i;:::-;;:::i;84781:1468::-;;;;;;:::i;:::-;;:::i;83351:1422::-;;;;;;:::i;:::-;;:::i;80425:73::-;;;;;;;;;;-1:-1:-1;80425:73:0;;;;-1:-1:-1;;;;;80425:73:0;;;54947:177;;;;;;;;;;-1:-1:-1;54947:177:0;;;;;:::i;:::-;;:::i;56566:97::-;;;;;;;;;;;;;:::i;54664:221::-;;;;;;;;;;-1:-1:-1;54664:221:0;;;;;:::i;:::-;;:::i;69894:148::-;;;;;;;;;;;;;:::i;81311:355::-;;;;;;;;;;-1:-1:-1;81311:355:0;;;;;:::i;:::-;;:::i;80030:30::-;;;;;;;;;;;;;;;;79889:41;;;;;;;;;;;;79926:4;79889:41;;69243:87;;;;;;;;;;-1:-1:-1;69316:6:0;;-1:-1:-1;;;;;69316:6:0;69243:87;;80237:72;;;;;;;;;;-1:-1:-1;80237:72:0;;;;-1:-1:-1;;;;;80237:72:0;;;80721:50;;;;;;;;;;-1:-1:-1;80721:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;55360:104;;;;;;;;;;;;;:::i;80168:30::-;;;;;;;;;;;;;;;;79659:39;;;;;;;;;;;;79697:1;79659:39;;80603:56;;;;;;;;;;-1:-1:-1;80603:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;80552:44;;;;;;;;;;-1:-1:-1;80552:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;58270:295;;;;;;;;;;-1:-1:-1;58270:295:0;;;;;:::i;:::-;;:::i;80067:32::-;;;;;;;;;;;;;;;;81674:294;;;;;;;;;;-1:-1:-1;81674:294:0;;;;;:::i;:::-;;:::i;79397:37::-;;;;;;;;;;;;;:::i;59465:285::-;;;;;;;;;;-1:-1:-1;59465:285:0;;;;;:::i;:::-;;:::i;55535:792::-;;;;;;;;;;-1:-1:-1;55535:792:0;;;;;:::i;:::-;;:::i;79747:28::-;;;;;;;;;;;;;;;;79814:40;;;;;;;;;;;;79850:4;79814:40;;79560:56;;;;;;;;;;;;79607:9;79560:56;;58636:164;;;;;;;;;;-1:-1:-1;58636:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;58757:25:0;;;58733:4;58757:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;58636:164;80780:32;;;;;;;;;;-1:-1:-1;80780:32:0;;;;;;;;83083:94;;;;;;;;;;;;;:::i;70197:244::-;;;;;;;;;;-1:-1:-1;70197:244:0;;;;;:::i;:::-;;:::i;82771:100::-;69316:6;;-1:-1:-1;;;;;69316:6:0;5643:10;69463:23;69455:68;;;;-1:-1:-1;;;69455:68:0;;;;;;;:::i;:::-;;;;;;;;;82841:13:::1;:22:::0;;-1:-1:-1;;;;;;82841:22:0::1;-1:-1:-1::0;;;;;82841:22:0;;;::::1;::::0;;;::::1;::::0;;82771:100::o;55191:::-;55245:13;55278:5;55271:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55191:100;:::o;57977:221::-;58053:7;58081:16;58089:7;58081;:16::i;:::-;58073:73;;;;-1:-1:-1;;;58073:73:0;;19952:2:1;58073:73:0;;;19934:21:1;19991:2;19971:18;;;19964:30;20030:34;20010:18;;;20003:62;-1:-1:-1;;;20081:18:1;;;20074:42;20133:19;;58073:73:0;19750:408:1;58073:73:0;-1:-1:-1;58166:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;58166:24:0;;57977:221::o;57507:404::-;57588:13;57604:23;57619:7;57604:14;:23::i;:::-;57588:39;;57652:5;-1:-1:-1;;;;;57646:11:0;:2;-1:-1:-1;;;;;57646:11:0;;;57638:57;;;;-1:-1:-1;;;57638:57:0;;22578:2:1;57638:57:0;;;22560:21:1;22617:2;22597:18;;;22590:30;22656:34;22636:18;;;22629:62;-1:-1:-1;;;22707:18:1;;;22700:31;22748:19;;57638:57:0;22376:397:1;57638:57:0;5643:10;-1:-1:-1;;;;;57716:21:0;;;;:69;;-1:-1:-1;57741:44:0;57765:5;5643:10;58636:164;:::i;57741:44::-;57708:161;;;;-1:-1:-1;;;57708:161:0;;16514:2:1;57708:161:0;;;16496:21:1;16553:2;16533:18;;;16526:30;16592:34;16572:18;;;16565:62;16663:26;16643:18;;;16636:54;16707:19;;57708:161:0;16312:420:1;57708:161:0;57882:21;57891:2;57895:7;57882:8;:21::i;:::-;57577:334;57507:404;;:::o;81976:651::-;69316:6;;-1:-1:-1;;;;;69316:6:0;5643:10;69463:23;69455:68;;;;-1:-1:-1;;;69455:68:0;;;;;;;:::i;:::-;82066:21:::1;82090:9;82095:4:::0;82090;:9:::1;:::i;:::-;82066:33;;82139:1;82123:13;:17;:45;;;;;82161:7;;82144:13;:24;;82123:45;82115:77;;;::::0;-1:-1:-1;;;82115:77:0;;24103:2:1;82115:77:0::1;::::0;::::1;24085:21:1::0;24142:2;24122:18;;;24115:30;-1:-1:-1;;;24161:18:1;;;24154:49;24220:18;;82115:77:0::1;23901:343:1::0;82115:77:0::1;79850:4;82211:32;82229:13;82211;:11;:13::i;:::-;:17:::0;::::1;:32::i;:::-;:45;;82203:71;;;;-1:-1:-1::0;;;82203:71:0::1;;;;;;;:::i;:::-;82292:6;82287:140;82308:4;82304:1;:8;82287:140;;;82338:26;82348:2;82352:11;;82338:9;:26::i;:::-;82397:11;::::0;:18:::1;::::0;82413:1:::1;82397:15;:18::i;:::-;82383:11;:32:::0;82314:3;::::1;::::0;::::1;:::i;:::-;;;;82287:140;;;;82442:6;82437:134;82458:4;82454:1;:8;82437:134;;;82488:24;82498:2;82502:9;;82488;:24::i;:::-;82543:9;::::0;:16:::1;::::0;82557:1:::1;82543:13;:16::i;:::-;82531:9;:28:::0;82464:3;::::1;::::0;::::1;:::i;:::-;;;;82437:134;;;-1:-1:-1::0;82593:7:0::1;::::0;:26:::1;::::0;82605:13;82593:11:::1;:26::i;:::-;82583:7;:36:::0;-1:-1:-1;;;;81976:651:0:o;82635:128::-;69316:6;;-1:-1:-1;;;;;69316:6:0;5643:10;69463:23;69455:68;;;;-1:-1:-1;;;69455:68:0;;;;;;;:::i;:::-;82720:35;;::::1;::::0;:18:::1;::::0;:35:::1;::::0;::::1;::::0;::::1;:::i;:::-;;82635:128:::0;:::o;56985:211::-;57046:7;57167:21;:12;:19;:21::i;:::-;57160:28;;56985:211;:::o;58867:305::-;59028:41;5643:10;59061:7;59028:18;:41::i;:::-;59020:103;;;;-1:-1:-1;;;59020:103:0;;;;;;;:::i;:::-;59136:28;59146:4;59152:2;59156:7;59136:9;:28::i;56747:162::-;-1:-1:-1;;;;;56871:20:0;;56844:7;56871:20;;;:13;:20;;;;;:30;;56895:5;56871:23;:30::i;:::-;56864:37;;56747:162;;;;;:::o;82986:89::-;69316:6;;-1:-1:-1;;;;;69316:6:0;5643:10;69463:23;69455:68;;;;-1:-1:-1;;;69455:68:0;;;;;;;:::i;:::-;83055:12:::1;::::0;;-1:-1:-1;;83039:28:0;::::1;83055:12;::::0;;::::1;83054:13;83039:28;::::0;;82986:89::o;80920:208::-;69316:6;;-1:-1:-1;;;;;69316:6:0;5643:10;69463:23;69455:68;;;;-1:-1:-1;;;69455:68:0;;;;;;;:::i;:::-;81027:10:::1;::::0;80985:21:::1;::::0;81017:46:::1;::::0;-1:-1:-1;;;;;81027:10:0::1;81039:23;81058:3;81039:14;80985:21:::0;81051:1:::1;81039:11;:14::i;:::-;:18:::0;::::1;:23::i;:::-;81017:9;:46::i;:::-;81084:12;::::0;81074:46:::1;::::0;-1:-1:-1;;;;;81084:12:0::1;81098:21;81074:9;:46::i;:::-;80959:169;80920:208::o:0;59243:151::-;59347:39;59364:4;59370:2;59374:7;59347:39;;;;;;;;;;;;:16;:39::i;57273:172::-;57348:7;;57390:22;:12;57406:5;57390:15;:22::i;:::-;-1:-1:-1;57368:44:0;57273:172;-1:-1:-1;;;57273:172:0:o;82879:99::-;69316:6;;-1:-1:-1;;;;;69316:6:0;5643:10;69463:23;69455:68;;;;-1:-1:-1;;;69455:68:0;;;;;;;:::i;:::-;82950:20:::1;82962:7;82950:11;:20::i;84781:1468::-:0;84896:11;84910:9;84915:4;84910;:9;:::i;:::-;84939:12;;84896:23;;-1:-1:-1;84939:12:0;;84938:13;:30;;;;-1:-1:-1;84955:13:0;;;;;;;84938:30;84930:59;;;;-1:-1:-1;;;84930:59:0;;13908:2:1;84930:59:0;;;13890:21:1;13947:2;13927:18;;;13920:30;-1:-1:-1;;;13966:18:1;;;13959:46;14022:18;;84930:59:0;13706:340:1;84930:59:0;85021:10;85008:24;;;;:12;:24;;;;;;;;85000:50;;;;-1:-1:-1;;;85000:50:0;;21894:2:1;85000:50:0;;;21876:21:1;21933:2;21913:18;;;21906:30;-1:-1:-1;;;21952:18:1;;;21945:43;22005:18;;85000:50:0;21692:337:1;85000:50:0;85069:34;85087:4;85093:9;85069:17;:34::i;:::-;85061:61;;;;-1:-1:-1;;;85061:61:0;;17350:2:1;85061:61:0;;;17332:21:1;17389:2;17369:18;;;17362:30;-1:-1:-1;;;17408:18:1;;;17401:44;17462:18;;85061:61:0;17148:338:1;85061:61:0;85147:1;85141:3;:7;:29;;;;;79697:1;85152:3;:18;;85141:29;85133:68;;;;-1:-1:-1;;;85133:68:0;;12435:2:1;85133:68:0;;;12417:21:1;12474:2;12454:18;;;12447:30;12513:28;12493:18;;;12486:56;12559:18;;85133:68:0;12233:350:1;85133:68:0;79850:4;85220:22;85238:3;85220:13;:11;:13::i;:22::-;:35;;85212:61;;;;-1:-1:-1;;;85212:61:0;;;;;;;:::i;:::-;85305:29;79607:9;85330:3;85305:24;:29::i;:::-;85292:9;:42;;85284:68;;;;-1:-1:-1;;;85284:68:0;;18041:2:1;85284:68:0;;;18023:21:1;18080:2;18060:18;;;18053:30;-1:-1:-1;;;18099:18:1;;;18092:43;18152:18;;85284:68:0;17839:337:1;85284:68:0;85371:13;;79926:4;;85371:23;;85389:4;85371:17;:23::i;:::-;:37;;85363:70;;;;-1:-1:-1;;;85363:70:0;;24797:2:1;85363:70:0;;;24779:21:1;24836:2;24816:18;;;24809:30;-1:-1:-1;;;24855:18:1;;;24848:50;24915:18;;85363:70:0;24595:344:1;85363:70:0;85468:10;85452:27;;;;:15;:27;;;;;;85493:1;;85452:37;;85484:4;85452:31;:37::i;:::-;:42;;85444:74;;;;-1:-1:-1;;;85444:74:0;;17693:2:1;85444:74:0;;;17675:21:1;17732:2;17712:18;;;17705:30;-1:-1:-1;;;17751:18:1;;;17744:49;17810:18;;85444:74:0;17491:343:1;85444:74:0;85578:11;;79997:4;;85578:21;;85594:4;85578:15;:21::i;:::-;:33;;85570:64;;;;-1:-1:-1;;;85570:64:0;;22980:2:1;85570:64:0;;;22962:21:1;23019:2;22999:18;;;22992:30;-1:-1:-1;;;23038:18:1;;;23031:48;23096:18;;85570:64:0;22778:342:1;85570:64:0;85667:10;85653:25;;;;:13;:25;;;;;;85692:1;;85653:35;;85683:4;85653:29;:35::i;:::-;:40;;85645:70;;;;-1:-1:-1;;;85645:70:0;;24451:2:1;85645:70:0;;;24433:21:1;24490:2;24470:18;;;24463:30;-1:-1:-1;;;24509:18:1;;;24502:47;24566:18;;85645:70:0;24249:341:1;85645:70:0;85779:6;85774:235;85795:4;85791:1;:8;85774:235;;;85821:34;85831:10;85843:11;;85821:9;:34::i;:::-;85884:11;;:18;;85900:1;85884:15;:18::i;:::-;85870:11;:32;85933:13;;:20;;85951:1;85933:17;:20::i;:::-;85917:13;:36;85984:10;85968:27;;;;:15;:27;;;;;:29;;;;;;:::i;:::-;;;;;;85801:3;;;;;:::i;:::-;;;;85774:235;;;;86024:6;86019:223;86040:4;86036:1;:8;86019:223;;;86066:32;86076:10;86088:9;;86066;:32::i;:::-;86125:9;;:16;;86139:1;86125:13;:16::i;:::-;86113:9;:28;86170:11;;:18;;86186:1;86170:15;:18::i;:::-;86156:11;:32;86217:10;86203:25;;;;:13;:25;;;;;:27;;;;;;:::i;:::-;;;;;;86046:3;;;;;:::i;:::-;;;;86019:223;;;;84885:1364;84781:1468;;;;:::o;83351:1422::-;83459:11;83473:9;83478:4;83473;:9;:::i;:::-;83501:12;;83459:23;;-1:-1:-1;83501:12:0;;83493:38;;;;-1:-1:-1;;;83493:38:0;;20365:2:1;83493:38:0;;;20347:21:1;20404:2;20384:18;;;20377:30;-1:-1:-1;;;20423:18:1;;;20416:43;20476:18;;83493:38:0;20163:337:1;83493:38:0;83551:13;;;;;;;83550:14;83542:39;;;;-1:-1:-1;;;83542:39:0;;15831:2:1;83542:39:0;;;15813:21:1;15870:2;15850:18;;;15843:30;-1:-1:-1;;;15889:18:1;;;15882:42;15941:18;;83542:39:0;15629:336:1;83542:39:0;83600:34;83618:4;83624:9;83600:17;:34::i;:::-;83592:61;;;;-1:-1:-1;;;83592:61:0;;17350:2:1;83592:61:0;;;17332:21:1;17389:2;17369:18;;;17362:30;-1:-1:-1;;;17408:18:1;;;17401:44;17462:18;;83592:61:0;17148:338:1;83592:61:0;83678:1;83672:3;:7;:29;;;;;79697:1;83683:3;:18;;83672:29;83664:68;;;;-1:-1:-1;;;83664:68:0;;12435:2:1;83664:68:0;;;12417:21:1;12474:2;12454:18;;;12447:30;12513:28;12493:18;;;12486:56;12559:18;;83664:68:0;12233:350:1;83664:68:0;79850:4;83751:22;83769:3;83751:13;:11;:13::i;:22::-;:35;;83743:61;;;;-1:-1:-1;;;83743:61:0;;;;;;;:::i;:::-;83836:22;79518:10;83854:3;83836:17;:22::i;:::-;83823:9;:35;;83815:61;;;;-1:-1:-1;;;83815:61:0;;18041:2:1;83815:61:0;;;18023:21:1;18080:2;18060:18;;;18053:30;-1:-1:-1;;;18099:18:1;;;18092:43;18152:18;;83815:61:0;17839:337:1;83815:61:0;83895:13;;79926:4;;83895:23;;83913:4;83895:17;:23::i;:::-;:37;;83887:70;;;;-1:-1:-1;;;83887:70:0;;24797:2:1;83887:70:0;;;24779:21:1;24836:2;24816:18;;;24809:30;-1:-1:-1;;;24855:18:1;;;24848:50;24915:18;;83887:70:0;24595:344:1;83887:70:0;83992:10;83976:27;;;;:15;:27;;;;;;84017:1;;83976:37;;84008:4;83976:31;:37::i;:::-;:42;;83968:74;;;;-1:-1:-1;;;83968:74:0;;17693:2:1;83968:74:0;;;17675:21:1;17732:2;17712:18;;;17705:30;-1:-1:-1;;;17751:18:1;;;17744:49;17810:18;;83968:74:0;17491:343:1;83968:74:0;84102:11;;79997:4;;84102:21;;84118:4;84102:15;:21::i;:::-;:33;;84094:64;;;;-1:-1:-1;;;84094:64:0;;22980:2:1;84094:64:0;;;22962:21:1;23019:2;22999:18;;;22992:30;-1:-1:-1;;;23038:18:1;;;23031:48;23096:18;;84094:64:0;22778:342:1;84094:64:0;84191:10;84177:25;;;;:13;:25;;;;;;84216:1;;84177:35;;84207:4;84177:29;:35::i;:::-;:40;;84169:70;;;;-1:-1:-1;;;84169:70:0;;24451:2:1;84169:70:0;;;24433:21:1;24490:2;24470:18;;;24463:30;-1:-1:-1;;;24509:18:1;;;24502:47;24566:18;;84169:70:0;24249:341:1;84169:70:0;84303:6;84298:235;84319:4;84315:1;:8;84298:235;;;84345:34;84355:10;84367:11;;84345:9;:34::i;:::-;84408:11;;:18;;84424:1;84408:15;:18::i;:::-;84394:11;:32;84457:13;;:20;;84475:1;84457:17;:20::i;:::-;84441:13;:36;84508:10;84492:27;;;;:15;:27;;;;;:29;;;;;;:::i;:::-;;;;;;84325:3;;;;;:::i;:::-;;;;84298:235;;;;84548:6;84543:223;84564:4;84560:1;:8;84543:223;;;84590:32;84600:10;84612:9;;84590;:32::i;:::-;84649:9;;:16;;84663:1;84649:13;:16::i;:::-;84637:9;:28;84694:11;;:18;;84710:1;84694:15;:18::i;:::-;84680:11;:32;84741:10;84727:25;;;;:13;:25;;;;;:27;;;;;;:::i;:::-;;;;;;84570:3;;;;;:::i;:::-;;;;84543:223;;54947:177;55019:7;55046:70;55063:7;55046:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;56566:97::-;56614:13;56647:8;56640:15;;;;;:::i;54664:221::-;54736:7;-1:-1:-1;;;;;54764:19:0;;54756:74;;;;-1:-1:-1;;;54756:74:0;;16939:2:1;54756:74:0;;;16921:21:1;16978:2;16958:18;;;16951:30;17017:34;16997:18;;;16990:62;-1:-1:-1;;;17068:18:1;;;17061:40;17118:19;;54756:74:0;16737:406:1;54756:74:0;-1:-1:-1;;;;;54848:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;69894:148::-;69316:6;;-1:-1:-1;;;;;69316:6:0;5643:10;69463:23;69455:68;;;;-1:-1:-1;;;69455:68:0;;;;;;;:::i;:::-;69985:6:::1;::::0;69964:40:::1;::::0;70001:1:::1;::::0;-1:-1:-1;;;;;69985:6:0::1;::::0;69964:40:::1;::::0;70001:1;;69964:40:::1;70015:6;:19:::0;;-1:-1:-1;;;;;;70015:19:0::1;::::0;;69894:148::o;81311:355::-;69316:6;;-1:-1:-1;;;;;69316:6:0;5643:10;69463:23;69455:68;;;;-1:-1:-1;;;69455:68:0;;;;;;;:::i;:::-;81399:9:::1;81395:261;81414:18:::0;;::::1;81395:261;;;81454:13;81470:7;;81478:1;81470:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;81454:26:::0;-1:-1:-1;;;;;;81503:19:0;::::1;81495:44;;;::::0;-1:-1:-1;;;81495:44:0;;10195:2:1;81495:44:0::1;::::0;::::1;10177:21:1::0;10234:2;10214:18;;;10207:30;-1:-1:-1;;;10253:18:1;;;10246:42;10305:18;;81495:44:0::1;9993:336:1::0;81495:44:0::1;-1:-1:-1::0;;;;;81563:19:0;::::1;;::::0;;;:12:::1;:19;::::0;;;;;::::1;;81562:20;81554:49;;;::::0;-1:-1:-1;;;81554:49:0;;9850:2:1;81554:49:0::1;::::0;::::1;9832:21:1::0;9889:2;9869:18;;;9862:30;-1:-1:-1;;;9908:18:1;;;9901:46;9964:18;;81554:49:0::1;9648:340:1::0;81554:49:0::1;-1:-1:-1::0;;;;;81618:19:0::1;;::::0;;;:12:::1;:19;::::0;;;;:26;;-1:-1:-1;;81618:26:0::1;81640:4;81618:26;::::0;;81434:3;::::1;::::0;::::1;:::i;:::-;;;;81395:261;;55360:104:::0;55416:13;55449:7;55442:14;;;;;:::i;58270:295::-;-1:-1:-1;;;;;58373:24:0;;5643:10;58373:24;;58365:62;;;;-1:-1:-1;;;58365:62:0;;13195:2:1;58365:62:0;;;13177:21:1;13234:2;13214:18;;;13207:30;13273:27;13253:18;;;13246:55;13318:18;;58365:62:0;12993:349:1;58365:62:0;5643:10;58440:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;58440:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;58440:53:0;;;;;;;;;;58509:48;;8213:41:1;;;58440:42:0;;5643:10;58509:48;;8186:18:1;58509:48:0;;;;;;;58270:295;;:::o;81674:294::-;69316:6;;-1:-1:-1;;;;;69316:6:0;5643:10;69463:23;69455:68;;;;-1:-1:-1;;;69455:68:0;;;;;;;:::i;:::-;81767:9:::1;81763:198;81782:18:::0;;::::1;81763:198;;;81822:13;81838:7;;81846:1;81838:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;81822:26:::0;-1:-1:-1;;;;;;81871:19:0;::::1;81863:44;;;::::0;-1:-1:-1;;;81863:44:0;;10195:2:1;81863:44:0::1;::::0;::::1;10177:21:1::0;10234:2;10214:18;;;10207:30;-1:-1:-1;;;10253:18:1;;;10246:42;10305:18;;81863:44:0::1;9993:336:1::0;81863:44:0::1;-1:-1:-1::0;;;;;81922:19:0::1;81944:5;81922:19:::0;;;:12:::1;:19;::::0;;;;:27;;-1:-1:-1;;81922:27:0::1;::::0;;81802:3;::::1;::::0;::::1;:::i;:::-;;;;81763:198;;79397:37:::0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59465:285::-;59597:41;5643:10;59630:7;59597:18;:41::i;:::-;59589:103;;;;-1:-1:-1;;;59589:103:0;;;;;;;:::i;:::-;59703:39;59717:4;59723:2;59727:7;59736:5;59703:13;:39::i;:::-;59465:285;;;;:::o;55535:792::-;55608:13;55642:16;55650:7;55642;:16::i;:::-;55634:76;;;;-1:-1:-1;;;55634:76:0;;21478:2:1;55634:76:0;;;21460:21:1;21517:2;21497:18;;;21490:30;21556:34;21536:18;;;21529:62;-1:-1:-1;;;21607:18:1;;;21600:45;21662:19;;55634:76:0;21276:411:1;55634:76:0;55723:23;55749:19;;;:10;:19;;;;;55723:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55779:18;55800:9;:7;:9::i;:::-;55779:30;;55891:4;55885:18;55907:1;55885:23;55881:72;;;-1:-1:-1;55932:9:0;55535:792;-1:-1:-1;;55535:792:0:o;55881:72::-;56057:23;;:27;56053:108;;56132:4;56138:9;56115:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56101:48;;;;55535:792;;;:::o;56053:108::-;56293:4;56299:18;:7;:16;:18::i;:::-;56276:42;;;;;;;;;:::i;83083:94::-;69316:6;;-1:-1:-1;;;;;69316:6:0;5643:10;69463:23;69455:68;;;;-1:-1:-1;;;69455:68:0;;;;;;;:::i;:::-;83156:13:::1;::::0;;-1:-1:-1;;83139:30:0;::::1;83156:13;::::0;;;::::1;;;83155:14;83139:30:::0;;::::1;;::::0;;83083:94::o;70197:244::-;69316:6;;-1:-1:-1;;;;;69316:6:0;5643:10;69463:23;69455:68;;;;-1:-1:-1;;;69455:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;70286:22:0;::::1;70278:73;;;::::0;-1:-1:-1;;;70278:73:0;;11315:2:1;70278:73:0::1;::::0;::::1;11297:21:1::0;11354:2;11334:18;;;11327:30;11393:34;11373:18;;;11366:62;-1:-1:-1;;;11444:18:1;;;11437:36;11490:19;;70278:73:0::1;11113:402:1::0;70278:73:0::1;70388:6;::::0;70367:38:::1;::::0;-1:-1:-1;;;;;70367:38:0;;::::1;::::0;70388:6:::1;::::0;70367:38:::1;::::0;70388:6:::1;::::0;70367:38:::1;70416:6;:17:::0;;-1:-1:-1;;;;;;70416:17:0::1;-1:-1:-1::0;;;;;70416:17:0;;;::::1;::::0;;;::::1;::::0;;70197:244::o;61217:127::-;61282:4;61306:30;:12;61328:7;61306:21;:30::i;67235:192::-;67310:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;67310:29:0;-1:-1:-1;;;;;67310:29:0;;;;;;;;:24;;67364:23;67310:24;67364:14;:23::i;:::-;-1:-1:-1;;;;;67355:46:0;;;;;;;;;;;67235:192;;:::o;18497:179::-;18555:7;;18587:5;18591:1;18587;:5;:::i;:::-;18575:17;;18616:1;18611;:6;;18603:46;;;;-1:-1:-1;;;18603:46:0;;12079:2:1;18603:46:0;;;12061:21:1;12118:2;12098:18;;;12091:30;12157:29;12137:18;;;12130:57;12204:18;;18603:46:0;11877:351:1;62209:110:0;62285:26;62295:2;62299:7;62285:26;;;;;;;;;;;;:9;:26::i;18959:158::-;19017:7;19050:1;19045;:6;;19037:49;;;;-1:-1:-1;;;19037:49:0;;13549:2:1;19037:49:0;;;13531:21:1;13588:2;13568:18;;;13561:30;13627:32;13607:18;;;13600:60;13677:18;;19037:49:0;13347:354:1;19037:49:0;19104:5;19108:1;19104;:5;:::i;48954:123::-;49023:7;49050:19;49058:3;45616:19;;45533:110;61511:355;61604:4;61629:16;61637:7;61629;:16::i;:::-;61621:73;;;;-1:-1:-1;;;61621:73:0;;15063:2:1;61621:73:0;;;15045:21:1;15102:2;15082:18;;;15075:30;15141:34;15121:18;;;15114:62;-1:-1:-1;;;15192:18:1;;;15185:42;15244:19;;61621:73:0;14861:408:1;61621:73:0;61705:13;61721:23;61736:7;61721:14;:23::i;:::-;61705:39;;61774:5;-1:-1:-1;;;;;61763:16:0;:7;-1:-1:-1;;;;;61763:16:0;;:51;;;;61807:7;-1:-1:-1;;;;;61783:31:0;:20;61795:7;61783:11;:20::i;:::-;-1:-1:-1;;;;;61783:31:0;;61763:51;:94;;;-1:-1:-1;;;;;;58757:25:0;;;58733:4;58757:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;61818:39;61755:103;61511:355;-1:-1:-1;;;;61511:355:0:o;64647:599::-;64772:4;-1:-1:-1;;;;;64745:31:0;:23;64760:7;64745:14;:23::i;:::-;-1:-1:-1;;;;;64745:31:0;;64737:85;;;;-1:-1:-1;;;64737:85:0;;21068:2:1;64737:85:0;;;21050:21:1;21107:2;21087:18;;;21080:30;21146:34;21126:18;;;21119:62;-1:-1:-1;;;21197:18:1;;;21190:39;21246:19;;64737:85:0;20866:405:1;64737:85:0;-1:-1:-1;;;;;64859:16:0;;64851:65;;;;-1:-1:-1;;;64851:65:0;;12790:2:1;64851:65:0;;;12772:21:1;12829:2;12809:18;;;12802:30;12868:34;12848:18;;;12841:62;-1:-1:-1;;;12919:18:1;;;12912:34;12963:19;;64851:65:0;12588:400:1;64851:65:0;65033:29;65050:1;65054:7;65033:8;:29::i;:::-;-1:-1:-1;;;;;65075:19:0;;;;;;:13;:19;;;;;:35;;65102:7;65075:26;:35::i;:::-;-1:-1:-1;;;;;;65121:17:0;;;;;;:13;:17;;;;;:30;;65143:7;65121:21;:30::i;:::-;-1:-1:-1;65164:29:0;:12;65181:7;65190:2;65164:16;:29::i;:::-;;65230:7;65226:2;-1:-1:-1;;;;;65211:27:0;65220:4;-1:-1:-1;;;;;65211:27:0;;;;;;;;;;;64647:599;;;:::o;40753:137::-;40824:7;40859:22;40863:3;40875:5;40859:3;:22::i;19376:220::-;19434:7;19458:6;19454:20;;-1:-1:-1;19473:1:0;19466:8;;19454:20;19485:9;19497:5;19501:1;19497;:5;:::i;:::-;19485:17;-1:-1:-1;19530:1:0;19521:5;19525:1;19485:17;19521:5;:::i;:::-;:10;19513:56;;;;-1:-1:-1;;;19513:56:0;;19550:2:1;19513:56:0;;;19532:21:1;19589:2;19569:18;;;19562:30;19628:34;19608:18;;;19601:62;-1:-1:-1;;;19679:18:1;;;19672:31;19720:19;;19513:56:0;19348:397:1;20074:153:0;20132:7;20164:1;20160;:5;20152:44;;;;-1:-1:-1;;;20152:44:0;;15476:2:1;20152:44:0;;;15458:21:1;15515:2;15495:18;;;15488:30;15554:28;15534:18;;;15527:56;15600:18;;20152:44:0;15274:350:1;20152:44:0;20214:5;20218:1;20214;:5;:::i;81136:167::-;81205:12;81223:4;-1:-1:-1;;;;;81223:9:0;81240:6;81223:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81204:47;;;81270:7;81262:33;;;;-1:-1:-1;;;81262:33:0;;16172:2:1;81262:33:0;;;16154:21:1;16211:2;16191:18;;;16184:30;-1:-1:-1;;;16230:18:1;;;16223:43;16283:18;;81262:33:0;15970:337:1;49416:236:0;49496:7;;;;49556:22;49560:3;49572:5;49556:3;:22::i;:::-;49525:53;;-1:-1:-1;49525:53:0;-1:-1:-1;;;49416:236:0;;;;;;:::o;65847:100::-;65920:19;;;;:8;;:19;;;;;:::i;83185:158::-;83271:4;83312:23;:4;83325:9;83312:12;:23::i;:::-;83295:13;;-1:-1:-1;;;;;83295:40:0;;;:13;;:40;;83185:158;-1:-1:-1;;;83185:158:0:o;50702:213::-;50809:7;50860:44;50865:3;50885;50891:12;50860:4;:44::i;:::-;50852:53;-1:-1:-1;50702:213:0;;;;;;:::o;60632:272::-;60746:28;60756:4;60762:2;60766:7;60746:9;:28::i;:::-;60793:48;60816:4;60822:2;60826:7;60835:5;60793:22;:48::i;:::-;60785:111;;;;-1:-1:-1;;;60785:111:0;;;;;;;:::i;70701:723::-;70757:13;70978:10;70974:53;;-1:-1:-1;;71005:10:0;;;;;;;;;;;;-1:-1:-1;;;71005:10:0;;;;;70701:723::o;70974:53::-;71052:5;71037:12;71093:78;71100:9;;71093:78;;71126:8;;;;:::i;:::-;;-1:-1:-1;71149:10:0;;-1:-1:-1;71157:2:0;71149:10;;:::i;:::-;;;71093:78;;;71181:19;71213:6;71203:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71203:17:0;;71181:39;;71231:154;71238:10;;71231:154;;71265:11;71275:1;71265:11;;:::i;:::-;;-1:-1:-1;71334:10:0;71342:2;71334:5;:10;:::i;:::-;71321:24;;:2;:24;:::i;:::-;71308:39;;71291:6;71298;71291:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;71291:56:0;;;;;;;;-1:-1:-1;71362:11:0;71371:2;71362:11;;:::i;:::-;;;71231:154;;48715:151;48799:4;45408:17;;;:12;;;:17;;;;;;:22;;48823:35;45313:125;62546:250;62642:18;62648:2;62652:7;62642:5;:18::i;:::-;62679:54;62710:1;62714:2;62718:7;62727:5;62679:22;:54::i;:::-;62671:117;;;;-1:-1:-1;;;62671:117:0;;;;;;;:::i;39840:137::-;39910:4;39934:35;39942:3;39962:5;39934:7;:35::i;39533:131::-;39600:4;39624:32;39629:3;39649:5;39624:4;:32::i;48138:185::-;48227:4;48251:64;48256:3;48276;-1:-1:-1;;;;;48290:23:0;;48251:4;:64::i;35791:204::-;35886:18;;35858:7;;35886:26;-1:-1:-1;35878:73:0;;;;-1:-1:-1;;;35878:73:0;;9447:2:1;35878:73:0;;;9429:21:1;9486:2;9466:18;;;9459:30;9525:34;9505:18;;;9498:62;-1:-1:-1;;;9576:18:1;;;9569:32;9618:19;;35878:73:0;9245:398:1;35878:73:0;35969:3;:11;;35981:5;35969:18;;;;;;;;:::i;:::-;;;;;;;;;35962:25;;35791:204;;;;:::o;45998:279::-;46102:19;;46065:7;;;;46102:27;-1:-1:-1;46094:74:0;;;;-1:-1:-1;;;46094:74:0;;18786:2:1;46094:74:0;;;18768:21:1;18825:2;18805:18;;;18798:30;18864:34;18844:18;;;18837:62;-1:-1:-1;;;18915:18:1;;;18908:32;18957:19;;46094:74:0;18584:398:1;46094:74:0;46181:22;46206:3;:12;;46219:5;46206:19;;;;;;;;:::i;:::-;;;;;;;;;;;46181:44;;46244:5;:10;;;46256:5;:12;;;46236:33;;;;;45998:279;;;;;:::o;75697:231::-;75775:7;75796:17;75815:18;75837:27;75848:4;75854:9;75837:10;:27::i;:::-;75795:69;;;;75875:18;75887:5;75875:11;:18::i;47495:319::-;47589:7;47628:17;;;:12;;;:17;;;;;;47679:12;47664:13;47656:36;;;;-1:-1:-1;;;47656:36:0;;;;;;;;:::i;:::-;-1:-1:-1;47746:3:0;47759:12;47770:1;47759:8;:12;:::i;:::-;47746:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;47739:40;;;47495:319;;;;;:::o;66512:604::-;66633:4;-1:-1:-1;;;;;66660:13:0;;24297:20;66655:60;;-1:-1:-1;66699:4:0;66692:11;;66655:60;66725:23;66751:252;-1:-1:-1;;;5643:10:0;66891:4;66910:7;66932:5;66767:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;66767:181:0;;;;;;;-1:-1:-1;;;;;66767:181:0;;;;;;;;;;;66751:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;66751:15:0;;;:252;:15;:252::i;:::-;66725:278;;67014:13;67041:10;67030:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;67081:26:0;-1:-1:-1;;;67081:26:0;;-1:-1:-1;;;66512:604:0;;;;;;:::o;63132:404::-;-1:-1:-1;;;;;63212:16:0;;63204:61;;;;-1:-1:-1;;;63204:61:0;;19189:2:1;63204:61:0;;;19171:21:1;;;19208:18;;;19201:30;19267:34;19247:18;;;19240:62;19319:18;;63204:61:0;18987:356:1;63204:61:0;63285:16;63293:7;63285;:16::i;:::-;63284:17;63276:58;;;;-1:-1:-1;;;63276:58:0;;11722:2:1;63276:58:0;;;11704:21:1;11761:2;11741:18;;;11734:30;11800;11780:18;;;11773:58;11848:18;;63276:58:0;11520:352:1;63276:58:0;-1:-1:-1;;;;;63405:17:0;;;;;;:13;:17;;;;;:30;;63427:7;63405:21;:30::i;:::-;-1:-1:-1;63448:29:0;:12;63465:7;63474:2;63448:16;:29::i;:::-;-1:-1:-1;63495:33:0;;63520:7;;-1:-1:-1;;;;;63495:33:0;;;63512:1;;63495:33;;63512:1;;63495:33;63132:404;;:::o;33493:1544::-;33559:4;33698:19;;;:12;;;:19;;;;;;33734:15;;33730:1300;;34096:21;34120:14;34133:1;34120:10;:14;:::i;:::-;34169:18;;34096:38;;-1:-1:-1;34149:17:0;;34169:22;;34190:1;;34169:22;:::i;:::-;34149:42;;34436:17;34456:3;:11;;34468:9;34456:22;;;;;;;;:::i;:::-;;;;;;;;;34436:42;;34602:9;34573:3;:11;;34585:13;34573:26;;;;;;;;:::i;:::-;;;;;;;;;;:38;34705:17;:13;34721:1;34705:17;:::i;:::-;34679:23;;;;:12;;;:23;;;;;:43;34831:17;;34679:3;;34831:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;34926:3;:12;;:19;34939:5;34926:19;;;;;;;;;;;34919:26;;;34969:4;34962:11;;;;;;;;33730:1300;35013:5;35006:12;;;;;32903:414;32966:4;45408:17;;;:12;;;:17;;;;;;32983:327;;-1:-1:-1;33026:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;33209:18;;33187:19;;;:12;;;:19;;;;;;:40;;;;33242:11;;32983:327;-1:-1:-1;33293:5:0;33286:12;;42813:692;42889:4;43024:17;;;:12;;;:17;;;;;;43058:13;43054:444;;-1:-1:-1;;43143:38:0;;;;;;;;;;;;;;;;;;43125:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;43340:19;;43320:17;;;:12;;;:17;;;;;;;:39;43374:11;;43054:444;43454:5;43418:3;43431:12;43442:1;43431:8;:12;:::i;:::-;43418:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;:41;;;;43481:5;43474:12;;;;;73587:1308;73668:7;73677:12;73902:9;:16;73922:2;73902:22;73898:990;;;74198:4;74183:20;;74177:27;74248:4;74233:20;;74227:27;74306:4;74291:20;;74285:27;73941:9;74277:36;74349:25;74360:4;74277:36;74177:27;74227;74349:10;:25::i;:::-;74342:32;;;;;;;;;73898:990;74396:9;:16;74416:2;74396:22;74392:496;;;74671:4;74656:20;;74650:27;74722:4;74707:20;;74701:27;74764:23;74775:4;74650:27;74701;74764:10;:23::i;:::-;74757:30;;;;;;;;74392:496;-1:-1:-1;74836:1:0;;-1:-1:-1;74840:35:0;74820:56;;71858:643;71936:20;71927:5;:29;;;;;;;;:::i;:::-;;71923:571;;;71858:643;:::o;71923:571::-;72034:29;72025:5;:38;;;;;;;;:::i;:::-;;72021:473;;;72080:34;;-1:-1:-1;;;72080:34:0;;9094:2:1;72080:34:0;;;9076:21:1;9133:2;9113:18;;;9106:30;9172:26;9152:18;;;9145:54;9216:18;;72080:34:0;8892:348:1;72021:473:0;72145:35;72136:5;:44;;;;;;;;:::i;:::-;;72132:362;;;72197:41;;-1:-1:-1;;;72197:41:0;;10536:2:1;72197:41:0;;;10518:21:1;10575:2;10555:18;;;10548:30;10614:33;10594:18;;;10587:61;10665:18;;72197:41:0;10334:355:1;72132:362:0;72269:30;72260:5;:39;;;;;;;;:::i;:::-;;72256:238;;;72316:44;;-1:-1:-1;;;72316:44:0;;14253:2:1;72316:44:0;;;14235:21:1;14292:2;14272:18;;;14265:30;14331:34;14311:18;;;14304:62;-1:-1:-1;;;14382:18:1;;;14375:32;14424:19;;72316:44:0;14051:398:1;72256:238:0;72391:30;72382:5;:39;;;;;;;;:::i;:::-;;72378:116;;;72438:44;;-1:-1:-1;;;72438:44:0;;18383:2:1;72438:44:0;;;18365:21:1;18422:2;18402:18;;;18395:30;18461:34;18441:18;;;18434:62;-1:-1:-1;;;18512:18:1;;;18505:32;18554:19;;72438:44:0;18181:398:1;26848:195:0;26951:12;26983:52;27005:6;27013:4;27019:1;27022:12;26983:21;:52::i;77196:1632::-;77327:7;;78261:66;78248:79;;78244:163;;;-1:-1:-1;78360:1:0;;-1:-1:-1;78364:30:0;78344:51;;78244:163;78421:1;:7;;78426:2;78421:7;;:18;;;;;78432:1;:7;;78437:2;78432:7;;78421:18;78417:102;;;-1:-1:-1;78472:1:0;;-1:-1:-1;78476:30:0;78456:51;;78417:102;78633:24;;;78616:14;78633:24;;;;;;;;;8492:25:1;;;8565:4;8553:17;;8533:18;;;8526:45;;;;8587:18;;;8580:34;;;8630:18;;;8623:34;;;78633:24:0;;8464:19:1;;78633:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;78633:24:0;;-1:-1:-1;;78633:24:0;;;-1:-1:-1;;;;;;;78672:20:0;;78668:103;;78725:1;78729:29;78709:50;;;;;;;78668:103;78791:6;-1:-1:-1;78799:20:0;;-1:-1:-1;77196:1632:0;;;;;;;;:::o;76191:391::-;76305:7;;-1:-1:-1;;;;;76406:75:0;;76508:3;76504:12;;;76518:2;76500:21;76549:25;76560:4;76500:21;76569:1;76406:75;76549:10;:25::i;:::-;76542:32;;;;;;76191:391;;;;;;:::o;27900:530::-;28027:12;28085:5;28060:21;:30;;28052:81;;;;-1:-1:-1;;;28052:81:0;;14656:2:1;28052:81:0;;;14638:21:1;14695:2;14675:18;;;14668:30;14734:34;14714:18;;;14707:62;-1:-1:-1;;;14785:18:1;;;14778:36;14831:19;;28052:81:0;14454:402:1;28052:81:0;24297:20;;28144:60;;;;-1:-1:-1;;;28144:60:0;;23745:2:1;28144:60:0;;;23727:21:1;23784:2;23764:18;;;23757:30;23823:31;23803:18;;;23796:59;23872:18;;28144:60:0;23543:353:1;28144:60:0;28278:12;28292:23;28319:6;-1:-1:-1;;;;;28319:11:0;28339:5;28347:4;28319:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28277:75;;;;28370:52;28388:7;28397:10;28409:12;28370:17;:52::i;:::-;28363:59;27900:530;-1:-1:-1;;;;;;;27900:530:0:o;30440:742::-;30555:12;30584:7;30580:595;;;-1:-1:-1;30615:10:0;30608:17;;30580:595;30729:17;;:21;30725:439;;30992:10;30986:17;31053:15;31040:10;31036:2;31032:19;31025:44;30725:439;31135:12;31128:20;;-1:-1:-1;;;31128:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:220::-;870:5;923:3;916:4;908:6;904:17;900:27;890:55;;941:1;938;931:12;890:55;963:79;1038:3;1029:6;1016:20;1009:4;1001:6;997:17;963:79;:::i;1053:186::-;1112:6;1165:2;1153:9;1144:7;1140:23;1136:32;1133:52;;;1181:1;1178;1171:12;1133:52;1204:29;1223:9;1204:29;:::i;1244:260::-;1312:6;1320;1373:2;1361:9;1352:7;1348:23;1344:32;1341:52;;;1389:1;1386;1379:12;1341:52;1412:29;1431:9;1412:29;:::i;:::-;1402:39;;1460:38;1494:2;1483:9;1479:18;1460:38;:::i;:::-;1450:48;;1244:260;;;;;:::o;1509:328::-;1586:6;1594;1602;1655:2;1643:9;1634:7;1630:23;1626:32;1623:52;;;1671:1;1668;1661:12;1623:52;1694:29;1713:9;1694:29;:::i;:::-;1684:39;;1742:38;1776:2;1765:9;1761:18;1742:38;:::i;:::-;1732:48;;1827:2;1816:9;1812:18;1799:32;1789:42;;1509:328;;;;;:::o;1842:537::-;1937:6;1945;1953;1961;2014:3;2002:9;1993:7;1989:23;1985:33;1982:53;;;2031:1;2028;2021:12;1982:53;2054:29;2073:9;2054:29;:::i;:::-;2044:39;;2102:38;2136:2;2125:9;2121:18;2102:38;:::i;:::-;2092:48;;2187:2;2176:9;2172:18;2159:32;2149:42;;2242:2;2231:9;2227:18;2214:32;2269:18;2261:6;2258:30;2255:50;;;2301:1;2298;2291:12;2255:50;2324:49;2365:7;2356:6;2345:9;2341:22;2324:49;:::i;:::-;2314:59;;;1842:537;;;;;;;:::o;2384:347::-;2449:6;2457;2510:2;2498:9;2489:7;2485:23;2481:32;2478:52;;;2526:1;2523;2516:12;2478:52;2549:29;2568:9;2549:29;:::i;:::-;2539:39;;2628:2;2617:9;2613:18;2600:32;2675:5;2668:13;2661:21;2654:5;2651:32;2641:60;;2697:1;2694;2687:12;2641:60;2720:5;2710:15;;;2384:347;;;;;:::o;2736:254::-;2804:6;2812;2865:2;2853:9;2844:7;2840:23;2836:32;2833:52;;;2881:1;2878;2871:12;2833:52;2904:29;2923:9;2904:29;:::i;:::-;2894:39;2980:2;2965:18;;;;2952:32;;-1:-1:-1;;;2736:254:1:o;2995:322::-;3072:6;3080;3088;3141:2;3129:9;3120:7;3116:23;3112:32;3109:52;;;3157:1;3154;3147:12;3109:52;3180:29;3199:9;3180:29;:::i;:::-;3170:39;3256:2;3241:18;;3228:32;;-1:-1:-1;3307:2:1;3292:18;;;3279:32;;2995:322;-1:-1:-1;;;2995:322:1:o;3322:615::-;3408:6;3416;3469:2;3457:9;3448:7;3444:23;3440:32;3437:52;;;3485:1;3482;3475:12;3437:52;3525:9;3512:23;3554:18;3595:2;3587:6;3584:14;3581:34;;;3611:1;3608;3601:12;3581:34;3649:6;3638:9;3634:22;3624:32;;3694:7;3687:4;3683:2;3679:13;3675:27;3665:55;;3716:1;3713;3706:12;3665:55;3756:2;3743:16;3782:2;3774:6;3771:14;3768:34;;;3798:1;3795;3788:12;3768:34;3851:7;3846:2;3836:6;3833:1;3829:14;3825:2;3821:23;3817:32;3814:45;3811:65;;;3872:1;3869;3862:12;3811:65;3903:2;3895:11;;;;;3925:6;;-1:-1:-1;3322:615:1;;-1:-1:-1;;;;3322:615:1:o;3942:525::-;4037:6;4045;4053;4061;4114:3;4102:9;4093:7;4089:23;4085:33;4082:53;;;4131:1;4128;4121:12;4082:53;4167:9;4154:23;4144:33;;4224:2;4213:9;4209:18;4196:32;4186:42;;4275:2;4264:9;4260:18;4247:32;4237:42;;4330:2;4319:9;4315:18;4302:32;4357:18;4349:6;4346:30;4343:50;;;4389:1;4386;4379:12;4472:245;4530:6;4583:2;4571:9;4562:7;4558:23;4554:32;4551:52;;;4599:1;4596;4589:12;4551:52;4638:9;4625:23;4657:30;4681:5;4657:30;:::i;4722:249::-;4791:6;4844:2;4832:9;4823:7;4819:23;4815:32;4812:52;;;4860:1;4857;4850:12;4812:52;4892:9;4886:16;4911:30;4935:5;4911:30;:::i;4976:450::-;5045:6;5098:2;5086:9;5077:7;5073:23;5069:32;5066:52;;;5114:1;5111;5104:12;5066:52;5154:9;5141:23;5187:18;5179:6;5176:30;5173:50;;;5219:1;5216;5209:12;5173:50;5242:22;;5295:4;5287:13;;5283:27;-1:-1:-1;5273:55:1;;5324:1;5321;5314:12;5273:55;5347:73;5412:7;5407:2;5394:16;5389:2;5385;5381:11;5347:73;:::i;5431:180::-;5490:6;5543:2;5531:9;5522:7;5518:23;5514:32;5511:52;;;5559:1;5556;5549:12;5511:52;-1:-1:-1;5582:23:1;;5431:180;-1:-1:-1;5431:180:1:o;6146:257::-;6187:3;6225:5;6219:12;6252:6;6247:3;6240:19;6268:63;6324:6;6317:4;6312:3;6308:14;6301:4;6294:5;6290:16;6268:63;:::i;:::-;6385:2;6364:15;-1:-1:-1;;6360:29:1;6351:39;;;;6392:4;6347:50;;6146:257;-1:-1:-1;;6146:257:1:o;6408:274::-;6537:3;6575:6;6569:13;6591:53;6637:6;6632:3;6625:4;6617:6;6613:17;6591:53;:::i;:::-;6660:16;;;;;6408:274;-1:-1:-1;;6408:274:1:o;6687:470::-;6866:3;6904:6;6898:13;6920:53;6966:6;6961:3;6954:4;6946:6;6942:17;6920:53;:::i;:::-;7036:13;;6995:16;;;;7058:57;7036:13;6995:16;7092:4;7080:17;;7058:57;:::i;:::-;7131:20;;6687:470;-1:-1:-1;;;;6687:470:1:o;7580:488::-;-1:-1:-1;;;;;7849:15:1;;;7831:34;;7901:15;;7896:2;7881:18;;7874:43;7948:2;7933:18;;7926:34;;;7996:3;7991:2;7976:18;;7969:31;;;7774:4;;8017:45;;8042:19;;8034:6;8017:45;:::i;:::-;8009:53;7580:488;-1:-1:-1;;;;;;7580:488:1:o;8668:219::-;8817:2;8806:9;8799:21;8780:4;8837:44;8877:2;8866:9;8862:18;8854:6;8837:44;:::i;10694:414::-;10896:2;10878:21;;;10935:2;10915:18;;;10908:30;10974:34;10969:2;10954:18;;10947:62;-1:-1:-1;;;11040:2:1;11025:18;;11018:48;11098:3;11083:19;;10694:414::o;20505:356::-;20707:2;20689:21;;;20726:18;;;20719:30;20785:34;20780:2;20765:18;;20758:62;20852:2;20837:18;;20505:356::o;22034:337::-;22236:2;22218:21;;;22275:2;22255:18;;;22248:30;-1:-1:-1;;;22309:2:1;22294:18;;22287:43;22362:2;22347:18;;22034:337::o;23125:413::-;23327:2;23309:21;;;23366:2;23346:18;;;23339:30;23405:34;23400:2;23385:18;;23378:62;-1:-1:-1;;;23471:2:1;23456:18;;23449:47;23528:3;23513:19;;23125:413::o;25126:128::-;25166:3;25197:1;25193:6;25190:1;25187:13;25184:39;;;25203:18;;:::i;:::-;-1:-1:-1;25239:9:1;;25126:128::o;25259:120::-;25299:1;25325;25315:35;;25330:18;;:::i;:::-;-1:-1:-1;25364:9:1;;25259:120::o;25384:168::-;25424:7;25490:1;25486;25482:6;25478:14;25475:1;25472:21;25467:1;25460:9;25453:17;25449:45;25446:71;;;25497:18;;:::i;:::-;-1:-1:-1;25537:9:1;;25384:168::o;25557:125::-;25597:4;25625:1;25622;25619:8;25616:34;;;25630:18;;:::i;:::-;-1:-1:-1;25667:9:1;;25557:125::o;25687:258::-;25759:1;25769:113;25783:6;25780:1;25777:13;25769:113;;;25859:11;;;25853:18;25840:11;;;25833:39;25805:2;25798:10;25769:113;;;25900:6;25897:1;25894:13;25891:48;;;-1:-1:-1;;25935:1:1;25917:16;;25910:27;25687:258::o;25950:380::-;26029:1;26025:12;;;;26072;;;26093:61;;26147:4;26139:6;26135:17;26125:27;;26093:61;26200:2;26192:6;26189:14;26169:18;26166:38;26163:161;;;26246:10;26241:3;26237:20;26234:1;26227:31;26281:4;26278:1;26271:15;26309:4;26306:1;26299:15;26163:161;;25950:380;;;:::o;26335:135::-;26374:3;-1:-1:-1;;26395:17:1;;26392:43;;;26415:18;;:::i;:::-;-1:-1:-1;26462:1:1;26451:13;;26335:135::o;26475:112::-;26507:1;26533;26523:35;;26538:18;;:::i;:::-;-1:-1:-1;26572:9:1;;26475:112::o;26592:127::-;26653:10;26648:3;26644:20;26641:1;26634:31;26684:4;26681:1;26674:15;26708:4;26705:1;26698:15;26724:127;26785:10;26780:3;26776:20;26773:1;26766:31;26816:4;26813:1;26806:15;26840:4;26837:1;26830:15;26856:127;26917:10;26912:3;26908:20;26905:1;26898:31;26948:4;26945:1;26938:15;26972:4;26969:1;26962:15;26988:127;27049:10;27044:3;27040:20;27037:1;27030:31;27080:4;27077:1;27070:15;27104:4;27101:1;27094:15;27120:127;27181:10;27176:3;27172:20;27169:1;27162:31;27212:4;27209:1;27202:15;27236:4;27233:1;27226:15;27252:127;27313:10;27308:3;27304:20;27301:1;27294:31;27344:4;27341:1;27334:15;27368:4;27365:1;27358:15;27384:131;-1:-1:-1;;;;;;27458:32:1;;27448:43;;27438:71;;27505:1;27502;27495:12
Swarm Source
ipfs://224c0526be68bdd97ab96eaf2613e3e5f91bf9fd402a56de1e565007eddb626d
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.