Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
384 Alumni's
Holders
55
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
7 Alumni'sLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
mayhemAlumni
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-18 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: nft2.sol //SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; // File contracts/test.sol contract mayhemAlumni is ERC721A, Ownable,ReentrancyGuard { string private baseURI = ""; string private constant baseExtension = ".json"; string private notRevealedUri; uint256 public MAX_PER_TX = 5; uint256 public PRESALE_MAX_PER_WALLET = 3; uint256 public MAX_SUPPLY = 2000; uint256 public price = 0.05 ether; uint256 public presalePrice = 0.03 ether; bool public paused = false; bool public revealed = false; address[] public whitelist; uint256 public presaleStartTime; uint256 public presaleEndTime; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri, uint256 _presaleStartTime, uint256 _presaleDuration ) ERC721A(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); presaleStartTime = _presaleStartTime; presaleEndTime = _presaleStartTime + _presaleDuration; } function mint(uint256 _amount) external payable { address _caller = msg.sender; require(!paused, "Paused"); require(isSaleActive(),'Sale Has Not Started Yet'); require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply"); require(_amount > 0, "No 0 mints"); require(tx.origin == _caller, "No contracts"); uint256 currPrice = currentPrice(); uint256 callerBalance = balanceOf(msg.sender); bool presaleEnd = isPresaleEnded(); if (_caller != owner()) { if (presaleEnd == false) { require (isWhitelisted(_caller),'Only Whitelisted Can Mint'); require(callerBalance +_amount <= PRESALE_MAX_PER_WALLET,"Exceeds maximum allowed per wallet"); require(PRESALE_MAX_PER_WALLET >= _amount, "Exceeds max Per Transaction"); } else { require(callerBalance +_amount <= MAX_PER_TX,"Exceeds maximum allowed per wallet"); require(MAX_PER_TX >= _amount, "Exceeds max Per Transaction"); } require(_amount * currPrice == msg.value, "Invalid funds provided"); } _safeMint(_caller, _amount); } function isApprovedForAll(address owner, address operator) public view override returns (bool) { // Whitelist OpenSea proxy contract for easy trading. return super.isApprovedForAll(owner, operator); } function isSaleActive() public view returns (bool) { if (block.timestamp > presaleStartTime) { return true; } return false; } function isPresaleEnded() public view returns(bool) { if (block.timestamp > presaleEndTime ) { return true; } return false; } function resetPresale(uint256 newStartTime,uint256 duration) public onlyOwner { presaleStartTime = newStartTime; presaleEndTime = presaleStartTime + duration; } function setPresaleMaxPerWallet(uint256 _newMax) public onlyOwner { PRESALE_MAX_PER_WALLET = _newMax; } function updateMaxSupply(uint256 _newSupply) public onlyOwner { require(_newSupply > totalSupply(),'New supply should be greater than current available supply'); MAX_SUPPLY = _newSupply; } function setPresalePrice(uint256 _newPrice) public onlyOwner { presalePrice = _newPrice; } function maxMintAmount() public view returns (uint256) { if (isPresaleEnded() == false) { return PRESALE_MAX_PER_WALLET; } else { return MAX_PER_TX; } } function getDevHex() public pure returns (string memory) { return "0x636865657a636861726d6572"; } function currentPrice() public view returns (uint256) { if (isPresaleEnded() == false) { return presalePrice; } else { return price; } } function isWhitelisted(address _user) public view returns(bool) { for (uint256 i=0;i< whitelist.length;i++) { address currUser = whitelist[i]; if (currUser == _user) { return true; } } return false; } function reveal() public onlyOwner { revealed = true; } function withdraw() external onlyOwner nonReentrant { _safeWithdraw(msg.sender); } function _safeWithdraw(address _caller) private { payable(_caller).transfer(address(this).balance); } function setPrice(uint256 _newCost) public onlyOwner { price = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { MAX_PER_TX = _newmaxMintAmount; } function updateWhitelist(address[] calldata _newList) public onlyOwner { delete whitelist; whitelist = _newList; } function addSingleToWL(address _addrToAdd) public onlyOwner { whitelist.push(_addrToAdd); } function changePrice(uint256 _newPrice) public onlyOwner { price = _newPrice; } function setupOS() external onlyOwner { _safeMint(_msgSender(), 1); } function pause(bool _state) external onlyOwner { paused = _state; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return notRevealedUri; } string memory currentBaseURI = baseURI; return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, Strings.toString(tokenId), baseExtension ) ) : ""; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"uint256","name":"_presaleStartTime","type":"uint256"},{"internalType":"uint256","name":"_presaleDuration","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addrToAdd","type":"address"}],"name":"addSingleToWL","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":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDevHex","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":"isPresaleEnded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newStartTime","type":"uint256"},{"internalType":"uint256","name":"duration","type":"uint256"}],"name":"resetPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setPresaleMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_newList","type":"address[]"}],"name":"updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b91600a916200020f565b506005600c556003600d556107d0600e5566b1a2bc2ec50000600f55666a94d74f4300006010556011805461ffff191690553480156200005a57600080fd5b5060405162002dd138038062002dd18339810160408190526200007d9162000382565b855186908690620000969060029060208501906200020f565b508051620000ac9060039060208401906200020f565b50506000805550620000be33620000fa565b6001600955620000ce846200014c565b620000d983620001b4565b6013829055620000ea81836200044d565b60145550620004b0945050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200019b5760405162461bcd60e51b8152602060048201819052602482015260008051602062002db183398151915260448201526064015b60405180910390fd5b8051620001b090600a9060208401906200020f565b5050565b6008546001600160a01b03163314620001ff5760405162461bcd60e51b8152602060048201819052602482015260008051602062002db1833981519152604482015260640162000192565b8051620001b090600b9060208401905b8280546200021d9062000474565b90600052602060002090601f0160209004810192826200024157600085556200028c565b82601f106200025c57805160ff19168380011785556200028c565b828001600101855582156200028c579182015b828111156200028c5782518255916020019190600101906200026f565b506200029a9291506200029e565b5090565b5b808211156200029a57600081556001016200029f565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002dd57600080fd5b81516001600160401b0380821115620002fa57620002fa620002b5565b604051601f8301601f19908116603f01168101908282118183101715620003255762000325620002b5565b816040528381526020925086838588010111156200034257600080fd5b600091505b8382101562000366578582018301518183018401529082019062000347565b83821115620003785760008385830101525b9695505050505050565b60008060008060008060c087890312156200039c57600080fd5b86516001600160401b0380821115620003b457600080fd5b620003c28a838b01620002cb565b97506020890151915080821115620003d957600080fd5b620003e78a838b01620002cb565b96506040890151915080821115620003fe57600080fd5b6200040c8a838b01620002cb565b955060608901519150808211156200042357600080fd5b506200043289828a01620002cb565b9350506080870151915060a087015190509295509295509295565b600082198211156200046f57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200048957607f821691505b602082108103620004aa57634e487b7160e01b600052602260045260246000fd5b50919050565b6128f180620004c06000396000f3fe60806040526004361061031d5760003560e01c8063698982ba116101a5578063a0712d68116100ec578063c87b56dd11610095578063f103b4331161006f578063f103b4331461084b578063f2c4ce1e1461086b578063f2fde38b1461088b578063f43a22dc146108ab57600080fd5b8063c87b56dd146107eb578063d5c0963e1461080b578063e985e9c51461082b57600080fd5b8063a475b5dd116100c6578063a475b5dd146107a0578063a82524b2146107b5578063b88d4fde146107cb57600080fd5b8063a0712d681461076d578063a22cb46514610780578063a2b40d191461070d57600080fd5b80637f00c7a61161014e57806395d89b411161012857806395d89b411461072d5780639d1b464a14610742578063a035b1fe1461075757600080fd5b80637f00c7a6146106cf5780638da5cb5b146106ef57806391b7f5ed1461070d57600080fd5b806373903b0a1161017f57806373903b0a1461067a5780637decf27f1461069a5780637ebd1b30146106af57600080fd5b8063698982ba1461063057806370a0823114610645578063715018a61461066557600080fd5b8063353772141161026957806351830227116102125780635c975abb116101ec5780635c975abb146105e05780635e7ac138146105fa5780636352211e1461061057600080fd5b8063518302271461058c57806355f804b3146105ab578063564566a8146105cb57600080fd5b80633ccfd60b116102435780633ccfd60b1461053757806342842e0e1461054c5780634c0770f01461056c57600080fd5b806335377214146104d75780633549345e146104f75780633af32abf1461051757600080fd5b806315c68735116102cb57806323b872dd116102a557806323b872dd1461048b578063249b7c19146104ab57806332cb6b0c146104c157600080fd5b806315c687351461041757806318160ddd1461045d578063239c70ae1461047657600080fd5b806306fdde03116102fc57806306fdde031461039d578063081812fc146103bf578063095ea7b3146103f757600080fd5b80620e7fa81461032257806301ffc9a71461034b57806302329a291461037b575b600080fd5b34801561032e57600080fd5b5061033860105481565b6040519081526020015b60405180910390f35b34801561035757600080fd5b5061036b610366366004612346565b6108c1565b6040519015158152602001610342565b34801561038757600080fd5b5061039b610396366004612378565b610913565b005b3480156103a957600080fd5b506103b2610973565b60405161034291906123eb565b3480156103cb57600080fd5b506103df6103da3660046123fe565b610a05565b6040516001600160a01b039091168152602001610342565b34801561040357600080fd5b5061039b61041236600461242e565b610a49565b34801561042357600080fd5b5060408051808201909152601a81527f307836333638363536353761363336383631373236643635373200000000000060208201526103b2565b34801561046957600080fd5b5060015460005403610338565b34801561048257600080fd5b50610338610ad6565b34801561049757600080fd5b5061039b6104a6366004612458565b610af7565b3480156104b757600080fd5b5061033860145481565b3480156104cd57600080fd5b50610338600e5481565b3480156104e357600080fd5b5061039b6104f2366004612494565b610b02565b34801561050357600080fd5b5061039b6105123660046123fe565b610b62565b34801561052357600080fd5b5061036b610532366004612509565b610baf565b34801561054357600080fd5b5061039b610c19565b34801561055857600080fd5b5061039b610567366004612458565b610cc8565b34801561057857600080fd5b5061039b6105873660046123fe565b610ce3565b34801561059857600080fd5b5060115461036b90610100900460ff1681565b3480156105b757600080fd5b5061039b6105c63660046125b0565b610d30565b3480156105d757600080fd5b5061036b610d8f565b3480156105ec57600080fd5b5060115461036b9060ff1681565b34801561060657600080fd5b50610338600d5481565b34801561061c57600080fd5b506103df61062b3660046123fe565b610da7565b34801561063c57600080fd5b5061039b610db9565b34801561065157600080fd5b50610338610660366004612509565b610e0e565b34801561067157600080fd5b5061039b610e5d565b34801561068657600080fd5b5061039b6106953660046125f9565b610eaf565b3480156106a657600080fd5b5061036b610f0d565b3480156106bb57600080fd5b506103df6106ca3660046123fe565b610f1f565b3480156106db57600080fd5b5061039b6106ea3660046123fe565b610f49565b3480156106fb57600080fd5b506008546001600160a01b03166103df565b34801561071957600080fd5b5061039b6107283660046123fe565b610f96565b34801561073957600080fd5b506103b2610fe3565b34801561074e57600080fd5b50610338610ff2565b34801561076357600080fd5b50610338600f5481565b61039b61077b3660046123fe565b611013565b34801561078c57600080fd5b5061039b61079b36600461261b565b61141e565b3480156107ac57600080fd5b5061039b6114b3565b3480156107c157600080fd5b5061033860135481565b3480156107d757600080fd5b5061039b6107e636600461264e565b61150c565b3480156107f757600080fd5b506103b26108063660046123fe565b61155d565b34801561081757600080fd5b5061039b610826366004612509565b611770565b34801561083757600080fd5b5061036b6108463660046126ca565b61180a565b34801561085757600080fd5b5061039b6108663660046123fe565b61183a565b34801561087757600080fd5b5061039b6108863660046125b0565b611902565b34801561089757600080fd5b5061039b6108a6366004612509565b61195d565b3480156108b757600080fd5b50610338600c5481565b60006001600160e01b031982166380ac58cd60e01b14806108f257506001600160e01b03198216635b5e139f60e01b145b8061090d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109605760405162461bcd60e51b8152602060048201819052602482015260008051602061289c83398151915260448201526064015b60405180910390fd5b6011805460ff1916911515919091179055565b606060028054610982906126f4565b80601f01602080910402602001604051908101604052809291908181526020018280546109ae906126f4565b80156109fb5780601f106109d0576101008083540402835291602001916109fb565b820191906000526020600020905b8154815290600101906020018083116109de57829003601f168201915b5050505050905090565b6000610a1082611a16565b610a2d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a5482610da7565b9050806001600160a01b0316836001600160a01b031603610a885760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610aa85750610aa6813361180a565b155b15610ac6576040516367d9dca160e11b815260040160405180910390fd5b610ad1838383611a41565b505050565b6000610ae0610f0d565b1515600003610af05750600d5490565b50600c5490565b610ad1838383611a9d565b6008546001600160a01b03163314610b4a5760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b610b5660126000612226565b610ad160128383612244565b6008546001600160a01b03163314610baa5760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b601055565b6000805b601254811015610c1057600060128281548110610bd257610bd261272e565b6000918252602090912001546001600160a01b03908116915084168103610bfd575060019392505050565b5080610c088161275a565b915050610bb3565b50600092915050565b6008546001600160a01b03163314610c615760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b600260095403610cb35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610957565b6002600955610cc133611c8a565b6001600955565b610ad18383836040518060200160405280600081525061150c565b6008546001600160a01b03163314610d2b5760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b600d55565b6008546001600160a01b03163314610d785760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b8051610d8b90600a9060208401906122a7565b5050565b6000601354421115610da15750600190565b50600090565b6000610db282611cbf565b5192915050565b6008546001600160a01b03163314610e015760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b610e0c336001611ddb565b565b60006001600160a01b038216610e37576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ea55760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b610e0c6000611df5565b6008546001600160a01b03163314610ef75760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b6013829055610f068183612773565b6014555050565b6000601454421115610da15750600190565b60128181548110610f2f57600080fd5b6000918252602090912001546001600160a01b0316905081565b6008546001600160a01b03163314610f915760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b600c55565b6008546001600160a01b03163314610fde5760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b600f55565b606060038054610982906126f4565b6000610ffc610f0d565b151560000361100c575060105490565b50600f5490565b601154339060ff16156110515760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610957565b611059610d8f565b6110a55760405162461bcd60e51b815260206004820152601860248201527f53616c6520486173204e6f7420537461727465642059657400000000000000006044820152606401610957565b816110b36001546000540390565b6110bd9190612773565b600e54101561110e5760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c7900000000000000000000000000006044820152606401610957565b6000821161114b5760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b6044820152606401610957565b326001600160a01b038216146111925760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610957565b600061119c610ff2565b905060006111a933610e0e565b905060006111b5610f0d565b90506111c96008546001600160a01b031690565b6001600160a01b0316846001600160a01b03161461140d578015156000036112fd576111f484610baf565b6112405760405162461bcd60e51b815260206004820152601960248201527f4f6e6c792057686974656c69737465642043616e204d696e74000000000000006044820152606401610957565b600d5461124d8684612773565b11156112a65760405162461bcd60e51b815260206004820152602260248201527f45786365656473206d6178696d756d20616c6c6f776564207065722077616c6c604482015261195d60f21b6064820152608401610957565b84600d5410156112f85760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820506572205472616e73616374696f6e00000000006044820152606401610957565b6113b5565b600c5461130a8684612773565b11156113635760405162461bcd60e51b815260206004820152602260248201527f45786365656473206d6178696d756d20616c6c6f776564207065722077616c6c604482015261195d60f21b6064820152608401610957565b84600c5410156113b55760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820506572205472616e73616374696f6e00000000006044820152606401610957565b346113c0848761278b565b1461140d5760405162461bcd60e51b815260206004820152601660248201527f496e76616c69642066756e64732070726f7669646564000000000000000000006044820152606401610957565b6114178486611ddb565b5050505050565b336001600160a01b038316036114475760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114fb5760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b6011805461ff001916610100179055565b611517848484611a9d565b6001600160a01b0383163b15158015611539575061153784848484611e47565b155b15611557576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061156882611a16565b6115cc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610957565b601154610100900460ff16151560000361167257600b80546115ed906126f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611619906126f4565b80156116665780601f1061163b57610100808354040283529160200191611666565b820191906000526020600020905b81548152906001019060200180831161164957829003601f168201915b50505050509050919050565b6000600a8054611681906126f4565b80601f01602080910402602001604051908101604052809291908181526020018280546116ad906126f4565b80156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b50505050509050600081511161171f5760405180602001604052806000815250611769565b8061172984611f33565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001611759939291906127aa565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117b85760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b601280546001810182556000919091527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03808316600090815260076020908152604080832093851683529290529081205460ff16611769565b6008546001600160a01b031633146118825760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b6001546000540381116118fd5760405162461bcd60e51b815260206004820152603a60248201527f4e657720737570706c792073686f756c6420626520677265617465722074686160448201527f6e2063757272656e7420617661696c61626c6520737570706c790000000000006064820152608401610957565b600e55565b6008546001600160a01b0316331461194a5760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b8051610d8b90600b9060208401906122a7565b6008546001600160a01b031633146119a55760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b6001600160a01b038116611a0a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610957565b611a1381611df5565b50565b600080548210801561090d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611aa882611cbf565b9050836001600160a01b031681600001516001600160a01b031614611adf5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611afd5750611afd853361180a565b80611b18575033611b0d84610a05565b6001600160a01b0316145b905080611b3857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611b5f57604051633a954ecd60e21b815260040160405180910390fd5b611b6b60008487611a41565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611c41576000548214611c41578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611417565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610d8b573d6000803e3d6000fd5b604080516060810182526000808252602082018190529181019190915281600054811015611dc257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611dc05780516001600160a01b031615611d56579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611dbb579392505050565b611d56565b505b604051636f96cda160e11b815260040160405180910390fd5b610d8b82826040518060200160405280600081525061204c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e7c9033908990889088906004016127ed565b6020604051808303816000875af1925050508015611eb7575060408051601f3d908101601f19168201909252611eb491810190612829565b60015b611f15573d808015611ee5576040519150601f19603f3d011682016040523d82523d6000602084013e611eea565b606091505b508051600003611f0d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081600003611f5a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f845780611f6e8161275a565b9150611f7d9050600a8361285c565b9150611f5e565b60008167ffffffffffffffff811115611f9f57611f9f612524565b6040519080825280601f01601f191660200182016040528015611fc9576020820181803683370190505b5090505b8415611f2b57611fde600183612870565b9150611feb600a86612887565b611ff6906030612773565b60f81b81838151811061200b5761200b61272e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612045600a8661285c565b9450611fcd565b610ad183838360016000546001600160a01b03851661207d57604051622e076360e81b815260040160405180910390fd5b8360000361209e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561215057506001600160a01b0387163b15155b156121d8575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121a16000888480600101955088611e47565b6121be576040516368d2bf6b60e11b815260040160405180910390fd5b8082036121565782600054146121d357600080fd5b61221d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036121d9575b50600055611417565b5080546000825590600052602060002090810190611a13919061231b565b828054828255906000526020600020908101928215612297579160200282015b828111156122975781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612264565b506122a392915061231b565b5090565b8280546122b3906126f4565b90600052602060002090601f0160209004810192826122d55760008555612297565b82601f106122ee57805160ff1916838001178555612297565b82800160010185558215612297579182015b82811115612297578251825591602001919060010190612300565b5b808211156122a3576000815560010161231c565b6001600160e01b031981168114611a1357600080fd5b60006020828403121561235857600080fd5b813561176981612330565b8035801515811461237357600080fd5b919050565b60006020828403121561238a57600080fd5b61176982612363565b60005b838110156123ae578181015183820152602001612396565b838111156115575750506000910152565b600081518084526123d7816020860160208601612393565b601f01601f19169290920160200192915050565b60208152600061176960208301846123bf565b60006020828403121561241057600080fd5b5035919050565b80356001600160a01b038116811461237357600080fd5b6000806040838503121561244157600080fd5b61244a83612417565b946020939093013593505050565b60008060006060848603121561246d57600080fd5b61247684612417565b925061248460208501612417565b9150604084013590509250925092565b600080602083850312156124a757600080fd5b823567ffffffffffffffff808211156124bf57600080fd5b818501915085601f8301126124d357600080fd5b8135818111156124e257600080fd5b8660208260051b85010111156124f757600080fd5b60209290920196919550909350505050565b60006020828403121561251b57600080fd5b61176982612417565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561255557612555612524565b604051601f8501601f19908116603f0116810190828211818310171561257d5761257d612524565b8160405280935085815286868601111561259657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125c257600080fd5b813567ffffffffffffffff8111156125d957600080fd5b8201601f810184136125ea57600080fd5b611f2b8482356020840161253a565b6000806040838503121561260c57600080fd5b50508035926020909101359150565b6000806040838503121561262e57600080fd5b61263783612417565b915061264560208401612363565b90509250929050565b6000806000806080858703121561266457600080fd5b61266d85612417565b935061267b60208601612417565b925060408501359150606085013567ffffffffffffffff81111561269e57600080fd5b8501601f810187136126af57600080fd5b6126be8782356020840161253a565b91505092959194509250565b600080604083850312156126dd57600080fd5b6126e683612417565b915061264560208401612417565b600181811c9082168061270857607f821691505b60208210810361272857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161276c5761276c612744565b5060010190565b6000821982111561278657612786612744565b500190565b60008160001904831182151516156127a5576127a5612744565b500290565b600084516127bc818460208901612393565b8451908301906127d0818360208901612393565b84519101906127e3818360208801612393565b0195945050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261281f60808301846123bf565b9695505050505050565b60006020828403121561283b57600080fd5b815161176981612330565b634e487b7160e01b600052601260045260246000fd5b60008261286b5761286b612846565b500490565b60008282101561288257612882612744565b500390565b60008261289657612896612846565b50069056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220da101a2b7b5b442d9fb17f46e0bc5be6fc819ef7d297e55afa2777b3de820c9664736f6c634300080d00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000625f06b00000000000000000000000000000000000000000000000000000000000015180000000000000000000000000000000000000000000000000000000000000000f4d617968656d20416c756d6e69277300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008416c756d6e69277300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d586f444b57534b756952366848553964636431794271544d47346437696737733938393668354b694b4232702f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061031d5760003560e01c8063698982ba116101a5578063a0712d68116100ec578063c87b56dd11610095578063f103b4331161006f578063f103b4331461084b578063f2c4ce1e1461086b578063f2fde38b1461088b578063f43a22dc146108ab57600080fd5b8063c87b56dd146107eb578063d5c0963e1461080b578063e985e9c51461082b57600080fd5b8063a475b5dd116100c6578063a475b5dd146107a0578063a82524b2146107b5578063b88d4fde146107cb57600080fd5b8063a0712d681461076d578063a22cb46514610780578063a2b40d191461070d57600080fd5b80637f00c7a61161014e57806395d89b411161012857806395d89b411461072d5780639d1b464a14610742578063a035b1fe1461075757600080fd5b80637f00c7a6146106cf5780638da5cb5b146106ef57806391b7f5ed1461070d57600080fd5b806373903b0a1161017f57806373903b0a1461067a5780637decf27f1461069a5780637ebd1b30146106af57600080fd5b8063698982ba1461063057806370a0823114610645578063715018a61461066557600080fd5b8063353772141161026957806351830227116102125780635c975abb116101ec5780635c975abb146105e05780635e7ac138146105fa5780636352211e1461061057600080fd5b8063518302271461058c57806355f804b3146105ab578063564566a8146105cb57600080fd5b80633ccfd60b116102435780633ccfd60b1461053757806342842e0e1461054c5780634c0770f01461056c57600080fd5b806335377214146104d75780633549345e146104f75780633af32abf1461051757600080fd5b806315c68735116102cb57806323b872dd116102a557806323b872dd1461048b578063249b7c19146104ab57806332cb6b0c146104c157600080fd5b806315c687351461041757806318160ddd1461045d578063239c70ae1461047657600080fd5b806306fdde03116102fc57806306fdde031461039d578063081812fc146103bf578063095ea7b3146103f757600080fd5b80620e7fa81461032257806301ffc9a71461034b57806302329a291461037b575b600080fd5b34801561032e57600080fd5b5061033860105481565b6040519081526020015b60405180910390f35b34801561035757600080fd5b5061036b610366366004612346565b6108c1565b6040519015158152602001610342565b34801561038757600080fd5b5061039b610396366004612378565b610913565b005b3480156103a957600080fd5b506103b2610973565b60405161034291906123eb565b3480156103cb57600080fd5b506103df6103da3660046123fe565b610a05565b6040516001600160a01b039091168152602001610342565b34801561040357600080fd5b5061039b61041236600461242e565b610a49565b34801561042357600080fd5b5060408051808201909152601a81527f307836333638363536353761363336383631373236643635373200000000000060208201526103b2565b34801561046957600080fd5b5060015460005403610338565b34801561048257600080fd5b50610338610ad6565b34801561049757600080fd5b5061039b6104a6366004612458565b610af7565b3480156104b757600080fd5b5061033860145481565b3480156104cd57600080fd5b50610338600e5481565b3480156104e357600080fd5b5061039b6104f2366004612494565b610b02565b34801561050357600080fd5b5061039b6105123660046123fe565b610b62565b34801561052357600080fd5b5061036b610532366004612509565b610baf565b34801561054357600080fd5b5061039b610c19565b34801561055857600080fd5b5061039b610567366004612458565b610cc8565b34801561057857600080fd5b5061039b6105873660046123fe565b610ce3565b34801561059857600080fd5b5060115461036b90610100900460ff1681565b3480156105b757600080fd5b5061039b6105c63660046125b0565b610d30565b3480156105d757600080fd5b5061036b610d8f565b3480156105ec57600080fd5b5060115461036b9060ff1681565b34801561060657600080fd5b50610338600d5481565b34801561061c57600080fd5b506103df61062b3660046123fe565b610da7565b34801561063c57600080fd5b5061039b610db9565b34801561065157600080fd5b50610338610660366004612509565b610e0e565b34801561067157600080fd5b5061039b610e5d565b34801561068657600080fd5b5061039b6106953660046125f9565b610eaf565b3480156106a657600080fd5b5061036b610f0d565b3480156106bb57600080fd5b506103df6106ca3660046123fe565b610f1f565b3480156106db57600080fd5b5061039b6106ea3660046123fe565b610f49565b3480156106fb57600080fd5b506008546001600160a01b03166103df565b34801561071957600080fd5b5061039b6107283660046123fe565b610f96565b34801561073957600080fd5b506103b2610fe3565b34801561074e57600080fd5b50610338610ff2565b34801561076357600080fd5b50610338600f5481565b61039b61077b3660046123fe565b611013565b34801561078c57600080fd5b5061039b61079b36600461261b565b61141e565b3480156107ac57600080fd5b5061039b6114b3565b3480156107c157600080fd5b5061033860135481565b3480156107d757600080fd5b5061039b6107e636600461264e565b61150c565b3480156107f757600080fd5b506103b26108063660046123fe565b61155d565b34801561081757600080fd5b5061039b610826366004612509565b611770565b34801561083757600080fd5b5061036b6108463660046126ca565b61180a565b34801561085757600080fd5b5061039b6108663660046123fe565b61183a565b34801561087757600080fd5b5061039b6108863660046125b0565b611902565b34801561089757600080fd5b5061039b6108a6366004612509565b61195d565b3480156108b757600080fd5b50610338600c5481565b60006001600160e01b031982166380ac58cd60e01b14806108f257506001600160e01b03198216635b5e139f60e01b145b8061090d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b031633146109605760405162461bcd60e51b8152602060048201819052602482015260008051602061289c83398151915260448201526064015b60405180910390fd5b6011805460ff1916911515919091179055565b606060028054610982906126f4565b80601f01602080910402602001604051908101604052809291908181526020018280546109ae906126f4565b80156109fb5780601f106109d0576101008083540402835291602001916109fb565b820191906000526020600020905b8154815290600101906020018083116109de57829003601f168201915b5050505050905090565b6000610a1082611a16565b610a2d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a5482610da7565b9050806001600160a01b0316836001600160a01b031603610a885760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610aa85750610aa6813361180a565b155b15610ac6576040516367d9dca160e11b815260040160405180910390fd5b610ad1838383611a41565b505050565b6000610ae0610f0d565b1515600003610af05750600d5490565b50600c5490565b610ad1838383611a9d565b6008546001600160a01b03163314610b4a5760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b610b5660126000612226565b610ad160128383612244565b6008546001600160a01b03163314610baa5760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b601055565b6000805b601254811015610c1057600060128281548110610bd257610bd261272e565b6000918252602090912001546001600160a01b03908116915084168103610bfd575060019392505050565b5080610c088161275a565b915050610bb3565b50600092915050565b6008546001600160a01b03163314610c615760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b600260095403610cb35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610957565b6002600955610cc133611c8a565b6001600955565b610ad18383836040518060200160405280600081525061150c565b6008546001600160a01b03163314610d2b5760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b600d55565b6008546001600160a01b03163314610d785760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b8051610d8b90600a9060208401906122a7565b5050565b6000601354421115610da15750600190565b50600090565b6000610db282611cbf565b5192915050565b6008546001600160a01b03163314610e015760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b610e0c336001611ddb565b565b60006001600160a01b038216610e37576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610ea55760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b610e0c6000611df5565b6008546001600160a01b03163314610ef75760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b6013829055610f068183612773565b6014555050565b6000601454421115610da15750600190565b60128181548110610f2f57600080fd5b6000918252602090912001546001600160a01b0316905081565b6008546001600160a01b03163314610f915760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b600c55565b6008546001600160a01b03163314610fde5760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b600f55565b606060038054610982906126f4565b6000610ffc610f0d565b151560000361100c575060105490565b50600f5490565b601154339060ff16156110515760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b6044820152606401610957565b611059610d8f565b6110a55760405162461bcd60e51b815260206004820152601860248201527f53616c6520486173204e6f7420537461727465642059657400000000000000006044820152606401610957565b816110b36001546000540390565b6110bd9190612773565b600e54101561110e5760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c7900000000000000000000000000006044820152606401610957565b6000821161114b5760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b6044820152606401610957565b326001600160a01b038216146111925760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b6044820152606401610957565b600061119c610ff2565b905060006111a933610e0e565b905060006111b5610f0d565b90506111c96008546001600160a01b031690565b6001600160a01b0316846001600160a01b03161461140d578015156000036112fd576111f484610baf565b6112405760405162461bcd60e51b815260206004820152601960248201527f4f6e6c792057686974656c69737465642043616e204d696e74000000000000006044820152606401610957565b600d5461124d8684612773565b11156112a65760405162461bcd60e51b815260206004820152602260248201527f45786365656473206d6178696d756d20616c6c6f776564207065722077616c6c604482015261195d60f21b6064820152608401610957565b84600d5410156112f85760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820506572205472616e73616374696f6e00000000006044820152606401610957565b6113b5565b600c5461130a8684612773565b11156113635760405162461bcd60e51b815260206004820152602260248201527f45786365656473206d6178696d756d20616c6c6f776564207065722077616c6c604482015261195d60f21b6064820152608401610957565b84600c5410156113b55760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820506572205472616e73616374696f6e00000000006044820152606401610957565b346113c0848761278b565b1461140d5760405162461bcd60e51b815260206004820152601660248201527f496e76616c69642066756e64732070726f7669646564000000000000000000006044820152606401610957565b6114178486611ddb565b5050505050565b336001600160a01b038316036114475760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114fb5760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b6011805461ff001916610100179055565b611517848484611a9d565b6001600160a01b0383163b15158015611539575061153784848484611e47565b155b15611557576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061156882611a16565b6115cc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610957565b601154610100900460ff16151560000361167257600b80546115ed906126f4565b80601f0160208091040260200160405190810160405280929190818152602001828054611619906126f4565b80156116665780601f1061163b57610100808354040283529160200191611666565b820191906000526020600020905b81548152906001019060200180831161164957829003601f168201915b50505050509050919050565b6000600a8054611681906126f4565b80601f01602080910402602001604051908101604052809291908181526020018280546116ad906126f4565b80156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b50505050509050600081511161171f5760405180602001604052806000815250611769565b8061172984611f33565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001611759939291906127aa565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117b85760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b601280546001810182556000919091527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34440180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03808316600090815260076020908152604080832093851683529290529081205460ff16611769565b6008546001600160a01b031633146118825760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b6001546000540381116118fd5760405162461bcd60e51b815260206004820152603a60248201527f4e657720737570706c792073686f756c6420626520677265617465722074686160448201527f6e2063757272656e7420617661696c61626c6520737570706c790000000000006064820152608401610957565b600e55565b6008546001600160a01b0316331461194a5760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b8051610d8b90600b9060208401906122a7565b6008546001600160a01b031633146119a55760405162461bcd60e51b8152602060048201819052602482015260008051602061289c8339815191526044820152606401610957565b6001600160a01b038116611a0a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610957565b611a1381611df5565b50565b600080548210801561090d575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611aa882611cbf565b9050836001600160a01b031681600001516001600160a01b031614611adf5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611afd5750611afd853361180a565b80611b18575033611b0d84610a05565b6001600160a01b0316145b905080611b3857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611b5f57604051633a954ecd60e21b815260040160405180910390fd5b611b6b60008487611a41565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611c41576000548214611c41578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611417565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610d8b573d6000803e3d6000fd5b604080516060810182526000808252602082018190529181019190915281600054811015611dc257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611dc05780516001600160a01b031615611d56579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611dbb579392505050565b611d56565b505b604051636f96cda160e11b815260040160405180910390fd5b610d8b82826040518060200160405280600081525061204c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e7c9033908990889088906004016127ed565b6020604051808303816000875af1925050508015611eb7575060408051601f3d908101601f19168201909252611eb491810190612829565b60015b611f15573d808015611ee5576040519150601f19603f3d011682016040523d82523d6000602084013e611eea565b606091505b508051600003611f0d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081600003611f5a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f845780611f6e8161275a565b9150611f7d9050600a8361285c565b9150611f5e565b60008167ffffffffffffffff811115611f9f57611f9f612524565b6040519080825280601f01601f191660200182016040528015611fc9576020820181803683370190505b5090505b8415611f2b57611fde600183612870565b9150611feb600a86612887565b611ff6906030612773565b60f81b81838151811061200b5761200b61272e565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612045600a8661285c565b9450611fcd565b610ad183838360016000546001600160a01b03851661207d57604051622e076360e81b815260040160405180910390fd5b8360000361209e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561215057506001600160a01b0387163b15155b156121d8575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121a16000888480600101955088611e47565b6121be576040516368d2bf6b60e11b815260040160405180910390fd5b8082036121565782600054146121d357600080fd5b61221d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036121d9575b50600055611417565b5080546000825590600052602060002090810190611a13919061231b565b828054828255906000526020600020908101928215612297579160200282015b828111156122975781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612264565b506122a392915061231b565b5090565b8280546122b3906126f4565b90600052602060002090601f0160209004810192826122d55760008555612297565b82601f106122ee57805160ff1916838001178555612297565b82800160010185558215612297579182015b82811115612297578251825591602001919060010190612300565b5b808211156122a3576000815560010161231c565b6001600160e01b031981168114611a1357600080fd5b60006020828403121561235857600080fd5b813561176981612330565b8035801515811461237357600080fd5b919050565b60006020828403121561238a57600080fd5b61176982612363565b60005b838110156123ae578181015183820152602001612396565b838111156115575750506000910152565b600081518084526123d7816020860160208601612393565b601f01601f19169290920160200192915050565b60208152600061176960208301846123bf565b60006020828403121561241057600080fd5b5035919050565b80356001600160a01b038116811461237357600080fd5b6000806040838503121561244157600080fd5b61244a83612417565b946020939093013593505050565b60008060006060848603121561246d57600080fd5b61247684612417565b925061248460208501612417565b9150604084013590509250925092565b600080602083850312156124a757600080fd5b823567ffffffffffffffff808211156124bf57600080fd5b818501915085601f8301126124d357600080fd5b8135818111156124e257600080fd5b8660208260051b85010111156124f757600080fd5b60209290920196919550909350505050565b60006020828403121561251b57600080fd5b61176982612417565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561255557612555612524565b604051601f8501601f19908116603f0116810190828211818310171561257d5761257d612524565b8160405280935085815286868601111561259657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125c257600080fd5b813567ffffffffffffffff8111156125d957600080fd5b8201601f810184136125ea57600080fd5b611f2b8482356020840161253a565b6000806040838503121561260c57600080fd5b50508035926020909101359150565b6000806040838503121561262e57600080fd5b61263783612417565b915061264560208401612363565b90509250929050565b6000806000806080858703121561266457600080fd5b61266d85612417565b935061267b60208601612417565b925060408501359150606085013567ffffffffffffffff81111561269e57600080fd5b8501601f810187136126af57600080fd5b6126be8782356020840161253a565b91505092959194509250565b600080604083850312156126dd57600080fd5b6126e683612417565b915061264560208401612417565b600181811c9082168061270857607f821691505b60208210810361272857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161276c5761276c612744565b5060010190565b6000821982111561278657612786612744565b500190565b60008160001904831182151516156127a5576127a5612744565b500290565b600084516127bc818460208901612393565b8451908301906127d0818360208901612393565b84519101906127e3818360208801612393565b0195945050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261281f60808301846123bf565b9695505050505050565b60006020828403121561283b57600080fd5b815161176981612330565b634e487b7160e01b600052601260045260246000fd5b60008261286b5761286b612846565b500490565b60008282101561288257612882612744565b500390565b60008261289657612896612846565b50069056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220da101a2b7b5b442d9fb17f46e0bc5be6fc819ef7d297e55afa2777b3de820c9664736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000625f06b00000000000000000000000000000000000000000000000000000000000015180000000000000000000000000000000000000000000000000000000000000000f4d617968656d20416c756d6e69277300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008416c756d6e69277300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d586f444b57534b756952366848553964636431794271544d47346437696737733938393668354b694b4232702f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Mayhem Alumni's
Arg [1] : _symbol (string): Alumni's
Arg [2] : _initBaseURI (string):
Arg [3] : _initNotRevealedUri (string): ipfs://QmXoDKWSKuiR6hHU9dcd1yBqTMG4d7ig7s9896h5KiKB2p/hidden.json
Arg [4] : _presaleStartTime (uint256): 1650394800
Arg [5] : _presaleDuration (uint256): 86400
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 00000000000000000000000000000000000000000000000000000000625f06b0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000015180
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [7] : 4d617968656d20416c756d6e6927730000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [9] : 416c756d6e692773000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [12] : 697066733a2f2f516d586f444b57534b75695236684855396463643179427154
Arg [13] : 4d47346437696737733938393668354b694b4232702f68696464656e2e6a736f
Arg [14] : 6e00000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
47597:6666:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47961:40;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;47961:40:0;;;;;;;;29731:305;;;;;;;;;;-1:-1:-1;29731:305:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;29731:305:0;582:187:1;53196:81:0;;;;;;;;;;-1:-1:-1;53196:81:0;;;;;:::i;:::-;;:::i;:::-;;32844:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34347:204::-;;;;;;;;;;-1:-1:-1;34347:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2224:55:1;;;2206:74;;2194:2;2179:18;34347:204:0;2060:226:1;33910:371:0;;;;;;;;;;-1:-1:-1;33910:371:0;;;;;:::i;:::-;;:::i;51530:111::-;;;;;;;;;;-1:-1:-1;51598:35:0;;;;;;;;;;;;;;;;;51530:111;;28980:303;;;;;;;;;;-1:-1:-1;29234:12:0;;29024:7;29218:13;:28;28980:303;;51276:246;;;;;;;;;;;;;:::i;35212:170::-;;;;;;;;;;-1:-1:-1;35212:170:0;;;;;:::i;:::-;;:::i;48147:29::-;;;;;;;;;;;;;;;;47878:32;;;;;;;;;;;;;;;;52708:137;;;;;;;;;;-1:-1:-1;52708:137:0;;;;;:::i;:::-;;:::i;51164:104::-;;;;;;;;;;-1:-1:-1;51164:104:0;;;;;:::i;:::-;;:::i;51871:288::-;;;;;;;;;;-1:-1:-1;51871:288:0;;;;;:::i;:::-;;:::i;52258:96::-;;;;;;;;;;;;;:::i;35453:185::-;;;;;;;;;;-1:-1:-1;35453:185:0;;;;;:::i;:::-;;:::i;50819:118::-;;;;;;;;;;-1:-1:-1;50819:118:0;;;;;:::i;:::-;;:::i;48041:28::-;;;;;;;;;;-1:-1:-1;48041:28:0;;;;;;;;;;;53285:104;;;;;;;;;;-1:-1:-1;53285:104:0;;;;;:::i;:::-;;:::i;50262:170::-;;;;;;;;;;;;;:::i;48008:26::-;;;;;;;;;;-1:-1:-1;48008:26:0;;;;;;;;47828:41;;;;;;;;;;;;;;;;32652:125;;;;;;;;;;-1:-1:-1;32652:125:0;;;;;:::i;:::-;;:::i;53105:83::-;;;;;;;;;;;;;:::i;30100:206::-;;;;;;;;;;-1:-1:-1;30100:206:0;;;;;:::i;:::-;;:::i;7489:103::-;;;;;;;;;;;;;:::i;50620:183::-;;;;;;;;;;-1:-1:-1;50620:183:0;;;;;:::i;:::-;;:::i;50440:172::-;;;;;;;;;;;;;:::i;48076:26::-;;;;;;;;;;-1:-1:-1;48076:26:0;;;;;:::i;:::-;;:::i;52581:119::-;;;;;;;;;;-1:-1:-1;52581:119:0;;;;;:::i;:::-;;:::i;6838:87::-;;;;;;;;;;-1:-1:-1;6911:6:0;;-1:-1:-1;;;;;6911:6:0;6838:87;;52485:88;;;;;;;;;;-1:-1:-1;52485:88:0;;;;;:::i;:::-;;:::i;33013:104::-;;;;;;;;;;;;;:::i;51649:214::-;;;;;;;;;;;;;:::i;47921:33::-;;;;;;;;;;;;;;;;48669:1301;;;;;;:::i;:::-;;:::i;34623:287::-;;;;;;;;;;-1:-1:-1;34623:287:0;;;;;:::i;:::-;;:::i;52181:69::-;;;;;;;;;;;;;:::i;48109:31::-;;;;;;;;;;;;;;;;35709:369;;;;;;;;;;-1:-1:-1;35709:369:0;;;;;:::i;:::-;;:::i;53531:729::-;;;;;;;;;;-1:-1:-1;53531:729:0;;;;;:::i;:::-;;:::i;52853:105::-;;;;;;;;;;-1:-1:-1;52853:105:0;;;;;:::i;:::-;;:::i;49982:264::-;;;;;;;;;;-1:-1:-1;49982:264:0;;;;;:::i;:::-;;:::i;50945:211::-;;;;;;;;;;-1:-1:-1;50945:211:0;;;;;:::i;:::-;;:::i;53397:126::-;;;;;;;;;;-1:-1:-1;53397:126:0;;;;;:::i;:::-;;:::i;7747:201::-;;;;;;;;;;-1:-1:-1;7747:201:0;;;;;:::i;:::-;;:::i;47790:29::-;;;;;;;;;;;;;;;;29731:305;29833:4;-1:-1:-1;;;;;;29870:40:0;;-1:-1:-1;;;29870:40:0;;:105;;-1:-1:-1;;;;;;;29927:48:0;;-1:-1:-1;;;29927:48:0;29870:105;:158;;;-1:-1:-1;;;;;;;;;;19731:40:0;;;29992:36;29850:178;29731:305;-1:-1:-1;;29731:305:0:o;53196:81::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6771:2:1;7050:68:0;;;6753:21:1;;;6790:18;;;6783:30;-1:-1:-1;;;;;;;;;;;6829:18:1;;;6822:62;6901:18;;7050:68:0;;;;;;;;;53254:6:::1;:15:::0;;-1:-1:-1;;53254:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53196:81::o;32844:100::-;32898:13;32931:5;32924:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32844:100;:::o;34347:204::-;34415:7;34440:16;34448:7;34440;:16::i;:::-;34435:64;;34465:34;;-1:-1:-1;;;34465:34:0;;;;;;;;;;;34435:64;-1:-1:-1;34519:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34519:24:0;;34347:204::o;33910:371::-;33983:13;33999:24;34015:7;33999:15;:24::i;:::-;33983:40;;34044:5;-1:-1:-1;;;;;34038:11:0;:2;-1:-1:-1;;;;;34038:11:0;;34034:48;;34058:24;;-1:-1:-1;;;34058:24:0;;;;;;;;;;;34034:48;5642:10;-1:-1:-1;;;;;34099:21:0;;;;;;:63;;-1:-1:-1;34125:37:0;34142:5;5642:10;49982:264;:::i;34125:37::-;34124:38;34099:63;34095:138;;;34186:35;;-1:-1:-1;;;34186:35:0;;;;;;;;;;;34095:138;34245:28;34254:2;34258:7;34267:5;34245:8;:28::i;:::-;33972:309;33910:371;;:::o;51276:246::-;51322:7;51356:16;:14;:16::i;:::-;:25;;51376:5;51356:25;51352:153;;-1:-1:-1;51409:22:0;;;51276:246::o;51352:153::-;-1:-1:-1;51479:10:0;;;51276:246::o;35212:170::-;35346:28;35356:4;35362:2;35366:7;35346:9;:28::i;52708:137::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6771:2:1;7050:68:0;;;6753:21:1;;;6790:18;;;6783:30;-1:-1:-1;;;;;;;;;;;6829:18:1;;;6822:62;6901:18;;7050:68:0;6569:356:1;7050:68:0;52790:16:::1;52797:9;;52790:16;:::i;:::-;52817:20;:9;52829:8:::0;;52817:20:::1;:::i;51164:104::-:0;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6771:2:1;7050:68:0;;;6753:21:1;;;6790:18;;;6783:30;-1:-1:-1;;;;;;;;;;;6829:18:1;;;6822:62;6901:18;;7050:68:0;6569:356:1;7050:68:0;51236:12:::1;:24:::0;51164:104::o;51871:288::-;51929:4;;51946:183;51966:9;:16;51963:19;;51946:183;;;52003:16;52022:9;52032:1;52022:12;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;52022:12:0;;;;-1:-1:-1;52053:17:0;;;;52049:69;;-1:-1:-1;52098:4:0;;51871:288;-1:-1:-1;;;51871:288:0:o;52049:69::-;-1:-1:-1;51983:3:0;;;;:::i;:::-;;;;51946:183;;;-1:-1:-1;52146:5:0;;51871:288;-1:-1:-1;;51871:288:0:o;52258:96::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6771:2:1;7050:68:0;;;6753:21:1;;;6790:18;;;6783:30;-1:-1:-1;;;;;;;;;;;6829:18:1;;;6822:62;6901:18;;7050:68:0;6569:356:1;7050:68:0;1812:1:::1;2410:7;;:19:::0;2402:63:::1;;;::::0;-1:-1:-1;;;2402:63:0;;7921:2:1;2402:63:0::1;::::0;::::1;7903:21:1::0;7960:2;7940:18;;;7933:30;7999:33;7979:18;;;7972:61;8050:18;;2402:63:0::1;7719:355:1::0;2402:63:0::1;1812:1;2543:7;:18:::0;52321:25:::2;52335:10;52321:13;:25::i;:::-;1768:1:::1;2722:7;:22:::0;52258:96::o;35453:185::-;35591:39;35608:4;35614:2;35618:7;35591:39;;;;;;;;;;;;:16;:39::i;50819:118::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6771:2:1;7050:68:0;;;6753:21:1;;;6790:18;;;6783:30;-1:-1:-1;;;;;;;;;;;6829:18:1;;;6822:62;6901:18;;7050:68:0;6569:356:1;7050:68:0;50897:22:::1;:32:::0;50819:118::o;53285:104::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6771:2:1;7050:68:0;;;6753:21:1;;;6790:18;;;6783:30;-1:-1:-1;;;;;;;;;;;6829:18:1;;;6822:62;6901:18;;7050:68:0;6569:356:1;7050:68:0;53360:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53285:104:::0;:::o;50262:170::-;50307:4;50346:16;;50328:15;:34;50324:78;;;-1:-1:-1;50386:4:0;;50262:170::o;50324:78::-;-1:-1:-1;50419:5:0;;50262:170::o;32652:125::-;32716:7;32743:21;32756:7;32743:12;:21::i;:::-;:26;;32652:125;-1:-1:-1;;32652:125:0:o;53105:83::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6771:2:1;7050:68:0;;;6753:21:1;;;6790:18;;;6783:30;-1:-1:-1;;;;;;;;;;;6829:18:1;;;6822:62;6901:18;;7050:68:0;6569:356:1;7050:68:0;53154:26:::1;5642:10:::0;53178:1:::1;53154:9;:26::i;:::-;53105:83::o:0;30100:206::-;30164:7;-1:-1:-1;;;;;30188:19:0;;30184:60;;30216:28;;-1:-1:-1;;;30216:28:0;;;;;;;;;;;30184:60;-1:-1:-1;;;;;;30270:19:0;;;;;:12;:19;;;;;:27;;;;30100:206::o;7489:103::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6771:2:1;7050:68:0;;;6753:21:1;;;6790:18;;;6783:30;-1:-1:-1;;;;;;;;;;;6829:18:1;;;6822:62;6901:18;;7050:68:0;6569:356:1;7050:68:0;7554:30:::1;7581:1;7554:18;:30::i;50620:183::-:0;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6771:2:1;7050:68:0;;;6753:21:1;;;6790:18;;;6783:30;-1:-1:-1;;;;;;;;;;;6829:18:1;;;6822:62;6901:18;;7050:68:0;6569:356:1;7050:68:0;50709:16:::1;:31:::0;;;50768:27:::1;50787:8:::0;50728:12;50768:27:::1;:::i;:::-;50751:14;:44:::0;-1:-1:-1;;50620:183:0:o;50440:172::-;50486:4;50525:14;;50507:15;:32;50503:79;;;-1:-1:-1;50564:4:0;;50440:172::o;48076:26::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;48076:26:0;;-1:-1:-1;48076:26:0;:::o;52581:119::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6771:2:1;7050:68:0;;;6753:21:1;;;6790:18;;;6783:30;-1:-1:-1;;;;;;;;;;;6829:18:1;;;6822:62;6901:18;;7050:68:0;6569:356:1;7050:68:0;52662:10:::1;:30:::0;52581:119::o;52485:88::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6771:2:1;7050:68:0;;;6753:21:1;;;6790:18;;;6783:30;-1:-1:-1;;;;;;;;;;;6829:18:1;;;6822:62;6901:18;;7050:68:0;6569:356:1;7050:68:0;52549:5:::1;:16:::0;52485:88::o;33013:104::-;33069:13;33102:7;33095:14;;;;;:::i;51649:214::-;51694:7;51722:16;:14;:16::i;:::-;:25;;51742:5;51722:25;51718:138;;-1:-1:-1;51775:12:0;;;51649:214::o;51718:138::-;-1:-1:-1;51835:5:0;;;51649:214::o;48669:1301::-;48776:6;;48746:10;;48776:6;;48775:7;48767:26;;;;-1:-1:-1;;;48767:26:0;;8414:2:1;48767:26:0;;;8396:21:1;8453:1;8433:18;;;8426:29;-1:-1:-1;;;8471:18:1;;;8464:36;8517:18;;48767:26:0;8212:329:1;48767:26:0;48812:14;:12;:14::i;:::-;48804:50;;;;-1:-1:-1;;;48804:50:0;;8748:2:1;48804:50:0;;;8730:21:1;8787:2;8767:18;;;8760:30;8826:26;8806:18;;;8799:54;8870:18;;48804:50:0;8546:348:1;48804:50:0;48903:7;48887:13;29234:12;;29024:7;29218:13;:28;;28980:303;48887:13;:23;;;;:::i;:::-;48873:10;;:37;;48865:68;;;;-1:-1:-1;;;48865:68:0;;9101:2:1;48865:68:0;;;9083:21:1;9140:2;9120:18;;;9113:30;9179:20;9159:18;;;9152:48;9217:18;;48865:68:0;8899:342:1;48865:68:0;48962:1;48952:7;:11;48944:34;;;;-1:-1:-1;;;48944:34:0;;9448:2:1;48944:34:0;;;9430:21:1;9487:2;9467:18;;;9460:30;-1:-1:-1;;;9506:18:1;;;9499:40;9556:18;;48944:34:0;9246:334:1;48944:34:0;48997:9;-1:-1:-1;;;;;48997:20:0;;;48989:45;;;;-1:-1:-1;;;48989:45:0;;9787:2:1;48989:45:0;;;9769:21:1;9826:2;9806:18;;;9799:30;-1:-1:-1;;;9845:18:1;;;9838:42;9897:18;;48989:45:0;9585:336:1;48989:45:0;49045:17;49065:14;:12;:14::i;:::-;49045:34;;49090:21;49114;49124:10;49114:9;:21::i;:::-;49090:45;;49146:15;49164:16;:14;:16::i;:::-;49146:34;;49206:7;6911:6;;-1:-1:-1;;;;;6911:6:0;;6838:87;49206:7;-1:-1:-1;;;;;49195:18:0;:7;-1:-1:-1;;;;;49195:18:0;;49191:732;;49234:19;;;49248:5;49234:19;49230:547;;49283:22;49297:7;49283:13;:22::i;:::-;49274:60;;;;-1:-1:-1;;;49274:60:0;;10128:2:1;49274:60:0;;;10110:21:1;10167:2;10147:18;;;10140:30;10206:27;10186:18;;;10179:55;10251:18;;49274:60:0;9926:349:1;49274:60:0;49387:22;;49361;49376:7;49361:13;:22;:::i;:::-;:48;;49353:94;;;;-1:-1:-1;;;49353:94:0;;10482:2:1;49353:94:0;;;10464:21:1;10521:2;10501:18;;;10494:30;10560:34;10540:18;;;10533:62;-1:-1:-1;;;10611:18:1;;;10604:32;10653:19;;49353:94:0;10280:398:1;49353:94:0;49500:7;49474:22;;:33;;49466:73;;;;-1:-1:-1;;;49466:73:0;;10885:2:1;49466:73:0;;;10867:21:1;10924:2;10904:18;;;10897:30;10963:29;10943:18;;;10936:57;11010:18;;49466:73:0;10683:351:1;49466:73:0;49230:547;;;49632:10;;49606:22;49621:7;49606:13;:22;:::i;:::-;:36;;49598:82;;;;-1:-1:-1;;;49598:82:0;;10482:2:1;49598:82:0;;;10464:21:1;10521:2;10501:18;;;10494:30;10560:34;10540:18;;;10533:62;-1:-1:-1;;;10611:18:1;;;10604:32;10653:19;;49598:82:0;10280:398:1;49598:82:0;49722:7;49708:10;;:21;;49700:61;;;;-1:-1:-1;;;49700:61:0;;10885:2:1;49700:61:0;;;10867:21:1;10924:2;10904:18;;;10897:30;10963:29;10943:18;;;10936:57;11010:18;;49700:61:0;10683:351:1;49700:61:0;49826:9;49803:19;49813:9;49803:7;:19;:::i;:::-;:32;49795:67;;;;-1:-1:-1;;;49795:67:0;;11414:2:1;49795:67:0;;;11396:21:1;11453:2;11433:18;;;11426:30;11492:24;11472:18;;;11465:52;11534:18;;49795:67:0;11212:346:1;49795:67:0;49935:27;49945:7;49954;49935:9;:27::i;:::-;48717:1253;;;;48669:1301;:::o;34623:287::-;5642:10;-1:-1:-1;;;;;34722:24:0;;;34718:54;;34755:17;;-1:-1:-1;;;34755:17:0;;;;;;;;;;;34718:54;5642:10;34785:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34785:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34785:53:0;;;;;;;;;;34854:48;;722:41:1;;;34785:42:0;;5642:10;34854:48;;695:18:1;34854:48:0;;;;;;;34623:287;;:::o;52181:69::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6771:2:1;7050:68:0;;;6753:21:1;;;6790:18;;;6783:30;-1:-1:-1;;;;;;;;;;;6829:18:1;;;6822:62;6901:18;;7050:68:0;6569:356:1;7050:68:0;52227:8:::1;:15:::0;;-1:-1:-1;;52227:15:0::1;;;::::0;;52181:69::o;35709:369::-;35876:28;35886:4;35892:2;35896:7;35876:9;:28::i;:::-;-1:-1:-1;;;;;35919:13:0;;9834:19;:23;;35919:76;;;;;35939:56;35970:4;35976:2;35980:7;35989:5;35939:30;:56::i;:::-;35938:57;35919:76;35915:156;;;36019:40;;-1:-1:-1;;;36019:40:0;;;;;;;;;;;35915:156;35709:369;;;;:::o;53531:729::-;53649:13;53702:16;53710:7;53702;:16::i;:::-;53680:113;;;;-1:-1:-1;;;53680:113:0;;11765:2:1;53680:113:0;;;11747:21:1;11804:2;11784:18;;;11777:30;11843:34;11823:18;;;11816:62;-1:-1:-1;;;11894:18:1;;;11887:45;11949:19;;53680:113:0;11563:411:1;53680:113:0;53810:8;;;;;;;:17;;53822:5;53810:17;53806:71;;53851:14;53844:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53531:729;;;:::o;53806:71::-;53889:28;53920:7;53889:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53989:1;53964:14;53958:28;:32;:294;;;;;;;;;;;;;;;;;54082:14;54123:25;54140:7;54123:16;:25::i;:::-;54175:13;;;;;;;;;;;;;-1:-1:-1;;;54175:13:0;;;54039:172;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53958:294;53938:314;53531:729;-1:-1:-1;;;53531:729:0:o;52853:105::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6771:2:1;7050:68:0;;;6753:21:1;;;6790:18;;;6783:30;-1:-1:-1;;;;;;;;;;;6829:18:1;;;6822:62;6901:18;;7050:68:0;6569:356:1;7050:68:0;52924:9:::1;:26:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;52924:26:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;52924:26:0::1;-1:-1:-1::0;;;;;52924:26:0;;;::::1;::::0;;;::::1;::::0;;52853:105::o;49982:264::-;-1:-1:-1;;;;;35102:25:0;;;50107:4;35102:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;50199:39;34981:164;50945:211;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6771:2:1;7050:68:0;;;6753:21:1;;;6790:18;;;6783:30;-1:-1:-1;;;;;;;;;;;6829:18:1;;;6822:62;6901:18;;7050:68:0;6569:356:1;7050:68:0;29234:12;;29024:7;29218:13;:28;51026:10:::1;:26;51018:96;;;::::0;-1:-1:-1;;;51018:96:0;;12850:2:1;51018:96:0::1;::::0;::::1;12832:21:1::0;12889:2;12869:18;;;12862:30;12928:34;12908:18;;;12901:62;12999:28;12979:18;;;12972:56;13045:19;;51018:96:0::1;12648:422:1::0;51018:96:0::1;51125:10;:23:::0;50945:211::o;53397:126::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6771:2:1;7050:68:0;;;6753:21:1;;;6790:18;;;6783:30;-1:-1:-1;;;;;;;;;;;6829:18:1;;;6822:62;6901:18;;7050:68:0;6569:356:1;7050:68:0;53483:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;7747:201::-:0;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;6771:2:1;7050:68:0;;;6753:21:1;;;6790:18;;;6783:30;-1:-1:-1;;;;;;;;;;;6829:18:1;;;6822:62;6901:18;;7050:68:0;6569:356:1;7050:68:0;-1:-1:-1;;;;;7836:22:0;::::1;7828:73;;;::::0;-1:-1:-1;;;7828:73:0;;13277:2:1;7828:73:0::1;::::0;::::1;13259:21:1::0;13316:2;13296:18;;;13289:30;13355:34;13335:18;;;13328:62;-1:-1:-1;;;13406:18:1;;;13399:36;13452:19;;7828:73:0::1;13075:402:1::0;7828:73:0::1;7912:28;7931:8;7912:18;:28::i;:::-;7747:201:::0;:::o;36333:174::-;36390:4;36454:13;;36444:7;:23;36414:85;;;;-1:-1:-1;;36472:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36472:27:0;;;;36471:28;;36333:174::o;44490:196::-;44605:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44605:29:0;-1:-1:-1;;;;;44605:29:0;;;;;;;;;44650:28;;44605:24;;44650:28;;;;;;;44490:196;;;:::o;39433:2130::-;39548:35;39586:21;39599:7;39586:12;:21::i;:::-;39548:59;;39646:4;-1:-1:-1;;;;;39624:26:0;:13;:18;;;-1:-1:-1;;;;;39624:26:0;;39620:67;;39659:28;;-1:-1:-1;;;39659:28:0;;;;;;;;;;;39620:67;39700:22;5642:10;-1:-1:-1;;;;;39726:20:0;;;;:73;;-1:-1:-1;39763:36:0;39780:4;5642:10;49982:264;:::i;39763:36::-;39726:126;;;-1:-1:-1;5642:10:0;39816:20;39828:7;39816:11;:20::i;:::-;-1:-1:-1;;;;;39816:36:0;;39726:126;39700:153;;39871:17;39866:66;;39897:35;;-1:-1:-1;;;39897:35:0;;;;;;;;;;;39866:66;-1:-1:-1;;;;;39947:16:0;;39943:52;;39972:23;;-1:-1:-1;;;39972:23:0;;;;;;;;;;;39943:52;40116:35;40133:1;40137:7;40146:4;40116:8;:35::i;:::-;-1:-1:-1;;;;;40447:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40447:31:0;;;;;;;-1:-1:-1;;40447:31:0;;;;;;;40493:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40493:29:0;;;;;;;;;;;40573:20;;;:11;:20;;;;;;40608:18;;-1:-1:-1;;;;;;40641:49:0;;;;-1:-1:-1;;;40674:15:0;40641:49;;;;;;;;;;40964:11;;41024:24;;;;;41067:13;;40573:20;;41024:24;;41067:13;41063:384;;41277:13;;41262:11;:28;41258:174;;41315:20;;41384:28;;;;41358:54;;-1:-1:-1;;;41358:54:0;-1:-1:-1;;;;;;41358:54:0;;;-1:-1:-1;;;;;41315:20:0;;41358:54;;;;41258:174;40422:1036;;;41494:7;41490:2;-1:-1:-1;;;;;41475:27:0;41484:4;-1:-1:-1;;;;;41475:27:0;;;;;;;;;;;41513:42;35709:369;52362:115;52421:48;;-1:-1:-1;;;;;52421:25:0;;;52447:21;52421:48;;;;;;;;;52447:21;52421:25;:48;;;;;;;;;;;;;;;;;;;31481:1109;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31592:7:0;31675:13;;31668:4;:20;31637:886;;;31709:31;31743:17;;;:11;:17;;;;;;;;;31709:51;;;;;;;;;-1:-1:-1;;;;;31709:51:0;;;;-1:-1:-1;;;31709:51:0;;;;;;;;;;;-1:-1:-1;;;31709:51:0;;;;;;;;;;;;;;31779:729;;31829:14;;-1:-1:-1;;;;;31829:28:0;;31825:101;;31893:9;31481:1109;-1:-1:-1;;;31481:1109:0:o;31825:101::-;-1:-1:-1;;;32268:6:0;32313:17;;;;:11;:17;;;;;;;;;32301:29;;;;;;;;;-1:-1:-1;;;;;32301:29:0;;;;;-1:-1:-1;;;32301:29:0;;;;;;;;;;;-1:-1:-1;;;32301:29:0;;;;;;;;;;;;;32361:28;32357:109;;32429:9;31481:1109;-1:-1:-1;;;31481:1109:0:o;32357:109::-;32228:261;;;31690:833;31637:886;32551:31;;-1:-1:-1;;;32551:31:0;;;;;;;;;;;36515:104;36584:27;36594:2;36598:8;36584:27;;;;;;;;;;;;:9;:27::i;8108:191::-;8201:6;;;-1:-1:-1;;;;;8218:17:0;;;-1:-1:-1;;;;;;8218:17:0;;;;;;;8251:40;;8201:6;;;8218:17;8201:6;;8251:40;;8182:16;;8251:40;8171:128;8108:191;:::o;45178:667::-;45362:72;;-1:-1:-1;;;45362:72:0;;45341:4;;-1:-1:-1;;;;;45362:36:0;;;;;:72;;5642:10;;45413:4;;45419:7;;45428:5;;45362:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45362:72:0;;;;;;;;-1:-1:-1;;45362:72:0;;;;;;;;;;;;:::i;:::-;;;45358:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45596:6;:13;45613:1;45596:18;45592:235;;45642:40;;-1:-1:-1;;;45642:40:0;;;;;;;;;;;45592:235;45785:6;45779:13;45770:6;45766:2;45762:15;45755:38;45358:480;-1:-1:-1;;;;;;45481:55:0;-1:-1:-1;;;45481:55:0;;-1:-1:-1;45358:480:0;45178:667;;;;;;:::o;3124:723::-;3180:13;3401:5;3410:1;3401:10;3397:53;;-1:-1:-1;;3428:10:0;;;;;;;;;;;;-1:-1:-1;;;3428:10:0;;;;;3124:723::o;3397:53::-;3475:5;3460:12;3516:78;3523:9;;3516:78;;3549:8;;;;:::i;:::-;;-1:-1:-1;3572:10:0;;-1:-1:-1;3580:2:0;3572:10;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3626:17:0;;3604:39;;3654:154;3661:10;;3654:154;;3688:11;3698:1;3688:11;;:::i;:::-;;-1:-1:-1;3757:10:0;3765:2;3757:5;:10;:::i;:::-;3744:24;;:2;:24;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;3785:11:0;3794:2;3785:11;;:::i;:::-;;;3654:154;;36982:163;37105:32;37111:2;37115:8;37125:5;37132:4;37543:20;37566:13;-1:-1:-1;;;;;37594:16:0;;37590:48;;37619:19;;-1:-1:-1;;;37619:19:0;;;;;;;;;;;37590:48;37653:8;37665:1;37653:13;37649:44;;37675:18;;-1:-1:-1;;;37675:18:0;;;;;;;;;;;37649:44;-1:-1:-1;;;;;38044:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38103:49:0;;38044:44;;;;;;;;38103:49;;;;-1:-1:-1;;38044:44:0;;;;;;38103:49;;;;;;;;;;;;;;;;38169:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38219:66:0;;;;-1:-1:-1;;;38269:15:0;38219:66;;;;;;;;;;38169:25;38366:23;;;38410:4;:23;;;;-1:-1:-1;;;;;;38418:13:0;;9834:19;:23;;38418:15;38406:641;;;38454:314;38485:38;;38510:12;;-1:-1:-1;;;;;38485:38:0;;;38502:1;;38485:38;;38502:1;;38485:38;38551:69;38590:1;38594:2;38598:14;;;;;;38614:5;38551:30;:69::i;:::-;38546:174;;38656:40;;-1:-1:-1;;;38656:40:0;;;;;;;;;;;38546:174;38763:3;38747:12;:19;38454:314;;38849:12;38832:13;;:29;38828:43;;38863:8;;;38828:43;38406:641;;;38912:120;38943:40;;38968:14;;;;;-1:-1:-1;;;;;38943:40:0;;;38960:1;;38943:40;;38960:1;;38943:40;39027:3;39011:12;:19;38912:120;;38406:641;-1:-1:-1;39061:13:0;:28;39111:60;35709:369;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:160::-;839:20;;895:13;;888:21;878:32;;868:60;;924:1;921;914:12;868:60;774:160;;;:::o;939:180::-;995:6;1048:2;1036:9;1027:7;1023:23;1019:32;1016:52;;;1064:1;1061;1054:12;1016:52;1087:26;1103:9;1087:26;:::i;1124:258::-;1196:1;1206:113;1220:6;1217:1;1214:13;1206:113;;;1296:11;;;1290:18;1277:11;;;1270:39;1242:2;1235:10;1206:113;;;1337:6;1334:1;1331:13;1328:48;;;-1:-1:-1;;1372:1:1;1354:16;;1347:27;1124:258::o;1387:::-;1429:3;1467:5;1461:12;1494:6;1489:3;1482:19;1510:63;1566:6;1559:4;1554:3;1550:14;1543:4;1536:5;1532:16;1510:63;:::i;:::-;1627:2;1606:15;-1:-1:-1;;1602:29:1;1593:39;;;;1634:4;1589:50;;1387:258;-1:-1:-1;;1387:258:1:o;1650:220::-;1799:2;1788:9;1781:21;1762:4;1819:45;1860:2;1849:9;1845:18;1837:6;1819:45;:::i;1875:180::-;1934:6;1987:2;1975:9;1966:7;1962:23;1958:32;1955:52;;;2003:1;2000;1993:12;1955:52;-1:-1:-1;2026:23:1;;1875:180;-1:-1:-1;1875:180:1:o;2291:196::-;2359:20;;-1:-1:-1;;;;;2408:54:1;;2398:65;;2388:93;;2477:1;2474;2467:12;2492:254;2560:6;2568;2621:2;2609:9;2600:7;2596:23;2592:32;2589:52;;;2637:1;2634;2627:12;2589:52;2660:29;2679:9;2660:29;:::i;:::-;2650:39;2736:2;2721:18;;;;2708:32;;-1:-1:-1;;;2492:254:1:o;2751:328::-;2828:6;2836;2844;2897:2;2885:9;2876:7;2872:23;2868:32;2865:52;;;2913:1;2910;2903:12;2865:52;2936:29;2955:9;2936:29;:::i;:::-;2926:39;;2984:38;3018:2;3007:9;3003:18;2984:38;:::i;:::-;2974:48;;3069:2;3058:9;3054:18;3041:32;3031:42;;2751:328;;;;;:::o;3084:615::-;3170:6;3178;3231:2;3219:9;3210:7;3206:23;3202:32;3199:52;;;3247:1;3244;3237:12;3199:52;3287:9;3274:23;3316:18;3357:2;3349:6;3346:14;3343:34;;;3373:1;3370;3363:12;3343:34;3411:6;3400:9;3396:22;3386:32;;3456:7;3449:4;3445:2;3441:13;3437:27;3427:55;;3478:1;3475;3468:12;3427:55;3518:2;3505:16;3544:2;3536:6;3533:14;3530:34;;;3560:1;3557;3550:12;3530:34;3613:7;3608:2;3598:6;3595:1;3591:14;3587:2;3583:23;3579:32;3576:45;3573:65;;;3634:1;3631;3624:12;3573:65;3665:2;3657:11;;;;;3687:6;;-1:-1:-1;3084:615:1;;-1:-1:-1;;;;3084:615:1:o;3704:186::-;3763:6;3816:2;3804:9;3795:7;3791:23;3787:32;3784:52;;;3832:1;3829;3822:12;3784:52;3855:29;3874:9;3855:29;:::i;3895:127::-;3956:10;3951:3;3947:20;3944:1;3937:31;3987:4;3984:1;3977:15;4011:4;4008:1;4001:15;4027:632;4092:5;4122:18;4163:2;4155:6;4152:14;4149:40;;;4169:18;;:::i;:::-;4244:2;4238:9;4212:2;4298:15;;-1:-1:-1;;4294:24:1;;;4320:2;4290:33;4286:42;4274:55;;;4344:18;;;4364:22;;;4341:46;4338:72;;;4390:18;;:::i;:::-;4430:10;4426:2;4419:22;4459:6;4450:15;;4489:6;4481;4474:22;4529:3;4520:6;4515:3;4511:16;4508:25;4505:45;;;4546:1;4543;4536:12;4505:45;4596:6;4591:3;4584:4;4576:6;4572:17;4559:44;4651:1;4644:4;4635:6;4627;4623:19;4619:30;4612:41;;;;4027:632;;;;;:::o;4664:451::-;4733:6;4786:2;4774:9;4765:7;4761:23;4757:32;4754:52;;;4802:1;4799;4792:12;4754:52;4842:9;4829:23;4875:18;4867:6;4864:30;4861:50;;;4907:1;4904;4897:12;4861:50;4930:22;;4983:4;4975:13;;4971:27;-1:-1:-1;4961:55:1;;5012:1;5009;5002:12;4961:55;5035:74;5101:7;5096:2;5083:16;5078:2;5074;5070:11;5035:74;:::i;5120:248::-;5188:6;5196;5249:2;5237:9;5228:7;5224:23;5220:32;5217:52;;;5265:1;5262;5255:12;5217:52;-1:-1:-1;;5288:23:1;;;5358:2;5343:18;;;5330:32;;-1:-1:-1;5120:248:1:o;5373:254::-;5438:6;5446;5499:2;5487:9;5478:7;5474:23;5470:32;5467:52;;;5515:1;5512;5505:12;5467:52;5538:29;5557:9;5538:29;:::i;:::-;5528:39;;5586:35;5617:2;5606:9;5602:18;5586:35;:::i;:::-;5576:45;;5373:254;;;;;:::o;5632:667::-;5727:6;5735;5743;5751;5804:3;5792:9;5783:7;5779:23;5775:33;5772:53;;;5821:1;5818;5811:12;5772:53;5844:29;5863:9;5844:29;:::i;:::-;5834:39;;5892:38;5926:2;5915:9;5911:18;5892:38;:::i;:::-;5882:48;;5977:2;5966:9;5962:18;5949:32;5939:42;;6032:2;6021:9;6017:18;6004:32;6059:18;6051:6;6048:30;6045:50;;;6091:1;6088;6081:12;6045:50;6114:22;;6167:4;6159:13;;6155:27;-1:-1:-1;6145:55:1;;6196:1;6193;6186:12;6145:55;6219:74;6285:7;6280:2;6267:16;6262:2;6258;6254:11;6219:74;:::i;:::-;6209:84;;;5632:667;;;;;;;:::o;6304:260::-;6372:6;6380;6433:2;6421:9;6412:7;6408:23;6404:32;6401:52;;;6449:1;6446;6439:12;6401:52;6472:29;6491:9;6472:29;:::i;:::-;6462:39;;6520:38;6554:2;6543:9;6539:18;6520:38;:::i;6930:380::-;7009:1;7005:12;;;;7052;;;7073:61;;7127:4;7119:6;7115:17;7105:27;;7073:61;7180:2;7172:6;7169:14;7149:18;7146:38;7143:161;;7226:10;7221:3;7217:20;7214:1;7207:31;7261:4;7258:1;7251:15;7289:4;7286:1;7279:15;7143:161;;6930:380;;;:::o;7315:127::-;7376:10;7371:3;7367:20;7364:1;7357:31;7407:4;7404:1;7397:15;7431:4;7428:1;7421:15;7447:127;7508:10;7503:3;7499:20;7496:1;7489:31;7539:4;7536:1;7529:15;7563:4;7560:1;7553:15;7579:135;7618:3;7639:17;;;7636:43;;7659:18;;:::i;:::-;-1:-1:-1;7706:1:1;7695:13;;7579:135::o;8079:128::-;8119:3;8150:1;8146:6;8143:1;8140:13;8137:39;;;8156:18;;:::i;:::-;-1:-1:-1;8192:9:1;;8079:128::o;11039:168::-;11079:7;11145:1;11141;11137:6;11133:14;11130:1;11127:21;11122:1;11115:9;11108:17;11104:45;11101:71;;;11152:18;;:::i;:::-;-1:-1:-1;11192:9:1;;11039:168::o;11979:664::-;12206:3;12244:6;12238:13;12260:53;12306:6;12301:3;12294:4;12286:6;12282:17;12260:53;:::i;:::-;12376:13;;12335:16;;;;12398:57;12376:13;12335:16;12432:4;12420:17;;12398:57;:::i;:::-;12522:13;;12477:20;;;12544:57;12522:13;12477:20;12578:4;12566:17;;12544:57;:::i;:::-;12617:20;;11979:664;-1:-1:-1;;;;;11979:664:1:o;13482:512::-;13676:4;-1:-1:-1;;;;;13786:2:1;13778:6;13774:15;13763:9;13756:34;13838:2;13830:6;13826:15;13821:2;13810:9;13806:18;13799:43;;13878:6;13873:2;13862:9;13858:18;13851:34;13921:3;13916:2;13905:9;13901:18;13894:31;13942:46;13983:3;13972:9;13968:19;13960:6;13942:46;:::i;:::-;13934:54;13482:512;-1:-1:-1;;;;;;13482:512:1:o;13999:249::-;14068:6;14121:2;14109:9;14100:7;14096:23;14092:32;14089:52;;;14137:1;14134;14127:12;14089:52;14169:9;14163:16;14188:30;14212:5;14188:30;:::i;14253:127::-;14314:10;14309:3;14305:20;14302:1;14295:31;14345:4;14342:1;14335:15;14369:4;14366:1;14359:15;14385:120;14425:1;14451;14441:35;;14456:18;;:::i;:::-;-1:-1:-1;14490:9:1;;14385:120::o;14510:125::-;14550:4;14578:1;14575;14572:8;14569:34;;;14583:18;;:::i;:::-;-1:-1:-1;14620:9:1;;14510:125::o;14640:112::-;14672:1;14698;14688:35;;14703:18;;:::i;:::-;-1:-1:-1;14737:9:1;;14640:112::o
Swarm Source
ipfs://da101a2b7b5b442d9fb17f46e0bc5be6fc819ef7d297e55afa2777b3de820c96
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.