ERC-721
Overview
Max Total Supply
5,555 MC
Holders
965
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 MCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MidlifeCrisis
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-18 */ // SPDX-License-Identifier: MIT // * * *** ***** * *** ****** ****** // ** ** * * * * * * * // * * * * * * * * * * * // * * * * * * * * * **** ****** // * * * * * * * * * * // * * * * * * * * * // * * *** ***** ****** *** * ****** // ***** ******* *** **** *** **** // * * * * * * * * * * // * * * * * * * // * ****** * **** * **** // * * * * * * * // * * * * * * * * * * // ***** * * *** **** *** **** // 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/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 (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _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 {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary 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 virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev 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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/MidlifeCrisis.sol pragma solidity ^0.8.4; contract MidlifeCrisis is ERC721A, Ownable, ReentrancyGuard { string public uriPrefix = ''; string public uriSuffix = '.json'; string public baseUri = 'ipfs://QmXSWr7W5nyBNTAc66VGCAzLXBoEiqNbWvXxYMb4MeThvi/hide.json'; uint256 public cost = 0.001 ether; uint256 public maxSupply = 5555; uint256 public maxMintAmountPerTx = 5; bool public paused = true; bool public revealed = false; constructor( string memory _tokenName, string memory _tokenSymbol ) ERC721A(_tokenName, _tokenSymbol) { _safeMint(msg.sender, 1); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!'); require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!'); _; } modifier mintPriceCompliance(uint256 _mintAmount) { require(msg.value >= cost * _mintAmount, 'Insufficient funds!'); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { require(!paused, 'The contract is paused!'); _safeMint(msg.sender, _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); if (!revealed) { return baseUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _toString(_tokenId), uriSuffix)) : ''; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setBaseUri(string memory _uri) public onlyOwner { baseUri = _uri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function setRevealed(bool _revealed) public onlyOwner { revealed = _revealed; } function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[{"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"payable","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":"payable","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":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600a90805190602001906200002b92919062000747565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200007992919062000747565b506040518060600160405280603f815260200162003c5e603f9139600c9080519060200190620000ab92919062000747565b5066038d7ea4c68000600d556115b3600e556005600f556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055503480156200010557600080fd5b5060405162003c9d38038062003c9d83398181016040528101906200012b9190620008be565b818181600290805190602001906200014592919062000747565b5080600390805190602001906200015e92919062000747565b506200016f620001ba60201b60201c565b6000819055505050620001976200018b620001bf60201b60201c565b620001c760201b60201c565b6001600981905550620001b23360016200028d60201b60201c565b505062000c1e565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002af828260405180602001604052806000815250620002b360201b60201c565b5050565b620002c583836200036460201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200035f57600080549050600083820390505b6200030e60008683806001019450866200054d60201b60201c565b62000345576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620002f35781600054146200035c57600080fd5b50505b505050565b6000805490506000821415620003a6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003bb6000848385620006bf60201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200044a836200042c6000866000620006c560201b60201c565b6200043d85620006f560201b60201c565b176200070560201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114620004ed57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050620004b0565b5060008214156200052a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506200054860008483856200073060201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200057b6200073660201b60201c565b8786866040518563ffffffff1660e01b81526004016200059f9493929190620009a6565b602060405180830381600087803b158015620005ba57600080fd5b505af1925050508015620005ee57506040513d601f19601f82011682018060405250810190620005eb91906200088c565b60015b6200066c573d806000811462000621576040519150601f19603f3d011682016040523d82523d6000602084013e62000626565b606091505b5060008151141562000664576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e8620006e48686846200073e60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b828054620007559062000b15565b90600052602060002090601f016020900481019282620007795760008555620007c5565b82601f106200079457805160ff1916838001178555620007c5565b82800160010185558215620007c5579182015b82811115620007c4578251825591602001919060010190620007a7565b5b509050620007d49190620007d8565b5090565b5b80821115620007f3576000816000905550600101620007d9565b5090565b60006200080e620008088462000a23565b620009fa565b9050828152602081018484840111156200082d576200082c62000be4565b5b6200083a84828562000adf565b509392505050565b600081519050620008538162000c04565b92915050565b600082601f83011262000871576200087062000bdf565b5b815162000883848260208601620007f7565b91505092915050565b600060208284031215620008a557620008a462000bee565b5b6000620008b58482850162000842565b91505092915050565b60008060408385031215620008d857620008d762000bee565b5b600083015167ffffffffffffffff811115620008f957620008f862000be9565b5b620009078582860162000859565b925050602083015167ffffffffffffffff8111156200092b576200092a62000be9565b5b620009398582860162000859565b9150509250929050565b6200094e8162000a75565b82525050565b6000620009618262000a59565b6200096d818562000a64565b93506200097f81856020860162000adf565b6200098a8162000bf3565b840191505092915050565b620009a08162000ad5565b82525050565b6000608082019050620009bd600083018762000943565b620009cc602083018662000943565b620009db604083018562000995565b8181036060830152620009ef818462000954565b905095945050505050565b600062000a0662000a19565b905062000a14828262000b4b565b919050565b6000604051905090565b600067ffffffffffffffff82111562000a415762000a4062000bb0565b5b62000a4c8262000bf3565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000a828262000ab5565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000aff57808201518184015260208101905062000ae2565b8381111562000b0f576000848401525b50505050565b6000600282049050600182168062000b2e57607f821691505b6020821081141562000b455762000b4462000b81565b5b50919050565b62000b568262000bf3565b810181811067ffffffffffffffff8211171562000b785762000b7762000bb0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000c0f8162000a89565b811462000c1b57600080fd5b50565b6130308062000c2e6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a0bcfc7f116100a0578063d5abeb011161006f578063d5abeb01146106b8578063e0a80853146106e3578063e985e9c51461070c578063efbd73f414610749578063f2fde38b14610772576101f9565b8063a0bcfc7f1461060d578063a22cb46514610636578063b88d4fde1461065f578063c87b56dd1461067b576101f9565b806394354fd0116100dc57806394354fd01461057057806395d89b411461059b5780639abc8320146105c6578063a0712d68146105f1576101f9565b806370a08231146104c8578063715018a6146105055780637ec4a6591461051c5780638da5cb5b14610545576101f9565b806323b872dd11610190578063518302271161015f57806351830227146103df5780635503a0e81461040a5780635c975abb1461043557806362b99ad4146104605780636352211e1461048b576101f9565b806323b872dd146103675780633ccfd60b1461038357806342842e0e1461039a57806344a0d68a146103b6576101f9565b806313faede6116101cc57806313faede6146102bf57806316ba10e0146102ea57806316c38b3c1461031357806318160ddd1461033c576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612503565b61079b565b604051610232919061294a565b60405180910390f35b34801561024757600080fd5b5061025061082d565b60405161025d9190612965565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906125a6565b6108bf565b60405161029a91906128e3565b60405180910390f35b6102bd60048036038101906102b89190612496565b61093e565b005b3480156102cb57600080fd5b506102d4610a82565b6040516102e19190612a87565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c919061255d565b610a88565b005b34801561031f57600080fd5b5061033a600480360381019061033591906124d6565b610aaa565b005b34801561034857600080fd5b50610351610acf565b60405161035e9190612a87565b60405180910390f35b610381600480360381019061037c9190612380565b610ae6565b005b34801561038f57600080fd5b50610398610e0b565b005b6103b460048036038101906103af9190612380565b610ee9565b005b3480156103c257600080fd5b506103dd60048036038101906103d891906125a6565b610f09565b005b3480156103eb57600080fd5b506103f4610f1b565b604051610401919061294a565b60405180910390f35b34801561041657600080fd5b5061041f610f2e565b60405161042c9190612965565b60405180910390f35b34801561044157600080fd5b5061044a610fbc565b604051610457919061294a565b60405180910390f35b34801561046c57600080fd5b50610475610fcf565b6040516104829190612965565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad91906125a6565b61105d565b6040516104bf91906128e3565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190612313565b61106f565b6040516104fc9190612a87565b60405180910390f35b34801561051157600080fd5b5061051a611128565b005b34801561052857600080fd5b50610543600480360381019061053e919061255d565b61113c565b005b34801561055157600080fd5b5061055a61115e565b60405161056791906128e3565b60405180910390f35b34801561057c57600080fd5b50610585611188565b6040516105929190612a87565b60405180910390f35b3480156105a757600080fd5b506105b061118e565b6040516105bd9190612965565b60405180910390f35b3480156105d257600080fd5b506105db611220565b6040516105e89190612965565b60405180910390f35b61060b600480360381019061060691906125a6565b6112ae565b005b34801561061957600080fd5b50610634600480360381019061062f919061255d565b611407565b005b34801561064257600080fd5b5061065d60048036038101906106589190612456565b611429565b005b610679600480360381019061067491906123d3565b611534565b005b34801561068757600080fd5b506106a2600480360381019061069d91906125a6565b6115a7565b6040516106af9190612965565b60405180910390f35b3480156106c457600080fd5b506106cd6116f8565b6040516106da9190612a87565b60405180910390f35b3480156106ef57600080fd5b5061070a600480360381019061070591906124d6565b6116fe565b005b34801561071857600080fd5b50610733600480360381019061072e9190612340565b611723565b604051610740919061294a565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b91906125d3565b6117b7565b005b34801561077e57600080fd5b5061079960048036038101906107949190612313565b611877565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108265750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461083c90612cf2565b80601f016020809104026020016040519081016040528092919081815260200182805461086890612cf2565b80156108b55780601f1061088a576101008083540402835291602001916108b5565b820191906000526020600020905b81548152906001019060200180831161089857829003601f168201915b5050505050905090565b60006108ca826118fb565b610900576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109498261105d565b90508073ffffffffffffffffffffffffffffffffffffffff1661096a61195a565b73ffffffffffffffffffffffffffffffffffffffff16146109cd576109968161099161195a565b611723565b6109cc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610a90611962565b80600b9080519060200190610aa6929190612127565b5050565b610ab2611962565b80601060006101000a81548160ff02191690831515021790555050565b6000610ad96119e0565b6001546000540303905090565b6000610af1826119e5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b58576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6484611ab3565b91509150610b7a8187610b7561195a565b611ada565b610bc657610b8f86610b8a61195a565b611723565b610bc5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c2d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3a8686866001611b1e565b8015610c4557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d1385610cef888887611b24565b7c020000000000000000000000000000000000000000000000000000000017611b4c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d9b576000600185019050600060046000838152602001908152602001600020541415610d99576000548114610d98578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e038686866001611b77565b505050505050565b610e13611962565b60026009541415610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090612a47565b60405180910390fd5b60026009819055506000610e6b61115e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e8e906128ce565b60006040518083038185875af1925050503d8060008114610ecb576040519150601f19603f3d011682016040523d82523d6000602084013e610ed0565b606091505b5050905080610ede57600080fd5b506001600981905550565b610f0483838360405180602001604052806000815250611534565b505050565b610f11611962565b80600d8190555050565b601060019054906101000a900460ff1681565b600b8054610f3b90612cf2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6790612cf2565b8015610fb45780601f10610f8957610100808354040283529160200191610fb4565b820191906000526020600020905b815481529060010190602001808311610f9757829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a8054610fdc90612cf2565b80601f016020809104026020016040519081016040528092919081815260200182805461100890612cf2565b80156110555780601f1061102a57610100808354040283529160200191611055565b820191906000526020600020905b81548152906001019060200180831161103857829003601f168201915b505050505081565b6000611068826119e5565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611130611962565b61113a6000611b7d565b565b611144611962565b80600a908051906020019061115a929190612127565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606003805461119d90612cf2565b80601f01602080910402602001604051908101604052809291908181526020018280546111c990612cf2565b80156112165780601f106111eb57610100808354040283529160200191611216565b820191906000526020600020905b8154815290600101906020018083116111f957829003601f168201915b5050505050905090565b600c805461122d90612cf2565b80601f016020809104026020016040519081016040528092919081815260200182805461125990612cf2565b80156112a65780601f1061127b576101008083540402835291602001916112a6565b820191906000526020600020905b81548152906001019060200180831161128957829003601f168201915b505050505081565b806000811180156112c15750600f548111155b611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f7906129a7565b60405180910390fd5b600e548161130c610acf565b6113169190612b8c565b1115611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90612a27565b60405180910390fd5b8180600d546113669190612be2565b3410156113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90612a67565b60405180910390fd5b601060009054906101000a900460ff16156113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef906129e7565b60405180910390fd5b6114023384611c43565b505050565b61140f611962565b80600c9080519060200190611425929190612127565b5050565b806007600061143661195a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114e361195a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611528919061294a565b60405180910390a35050565b61153f848484610ae6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115a15761156a84848484611c61565b6115a0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115b2826118fb565b6115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890612a07565b60405180910390fd5b601060019054906101000a900460ff1661169757600c805461161290612cf2565b80601f016020809104026020016040519081016040528092919081815260200182805461163e90612cf2565b801561168b5780601f106116605761010080835404028352916020019161168b565b820191906000526020600020905b81548152906001019060200180831161166e57829003601f168201915b505050505090506116f3565b60006116a1611dc1565b905060008151116116c157604051806020016040528060008152506116ef565b806116cb84611e53565b600b6040516020016116df9392919061289d565b6040516020818303038152906040525b9150505b919050565b600e5481565b611706611962565b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156117ca5750600f548111155b611809576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611800906129a7565b60405180910390fd5b600e5481611815610acf565b61181f9190612b8c565b1115611860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185790612a27565b60405180910390fd5b611868611962565b6118728284611c43565b505050565b61187f611962565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690612987565b60405180910390fd5b6118f881611b7d565b50565b6000816119066119e0565b11158015611915575060005482105b8015611953575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61196a611eac565b73ffffffffffffffffffffffffffffffffffffffff1661198861115e565b73ffffffffffffffffffffffffffffffffffffffff16146119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d5906129c7565b60405180910390fd5b565b600090565b600080829050806119f46119e0565b11611a7c57600054811015611a7b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a79575b6000811415611a6f576004600083600190039350838152602001908152602001600020549050611a44565b8092505050611aae565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b3b868684611eb4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c5d828260405180602001604052806000815250611ebd565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c8761195a565b8786866040518563ffffffff1660e01b8152600401611ca994939291906128fe565b602060405180830381600087803b158015611cc357600080fd5b505af1925050508015611cf457506040513d601f19601f82011682018060405250810190611cf19190612530565b60015b611d6e573d8060008114611d24576040519150601f19603f3d011682016040523d82523d6000602084013e611d29565b606091505b50600081511415611d66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611dd090612cf2565b80601f0160208091040260200160405190810160405280929190818152602001828054611dfc90612cf2565b8015611e495780601f10611e1e57610100808354040283529160200191611e49565b820191906000526020600020905b815481529060010190602001808311611e2c57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e9757600184039350600a81066030018453600a8104905080611e9257611e97565b611e6c565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611ec78383611f5a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f5557600080549050600083820390505b611f076000868380600101945086611c61565b611f3d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ef4578160005414611f5257600080fd5b50505b505050565b6000805490506000821415611f9b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fa86000848385611b1e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061201f836120106000866000611b24565b61201985612117565b17611b4c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146120c057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612085565b5060008214156120fc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121126000848385611b77565b505050565b60006001821460e11b9050919050565b82805461213390612cf2565b90600052602060002090601f016020900481019282612155576000855561219c565b82601f1061216e57805160ff191683800117855561219c565b8280016001018555821561219c579182015b8281111561219b578251825591602001919060010190612180565b5b5090506121a991906121ad565b5090565b5b808211156121c65760008160009055506001016121ae565b5090565b60006121dd6121d884612ac7565b612aa2565b9050828152602081018484840111156121f9576121f8612de7565b5b612204848285612cb0565b509392505050565b600061221f61221a84612af8565b612aa2565b90508281526020810184848401111561223b5761223a612de7565b5b612246848285612cb0565b509392505050565b60008135905061225d81612f9e565b92915050565b60008135905061227281612fb5565b92915050565b60008135905061228781612fcc565b92915050565b60008151905061229c81612fcc565b92915050565b600082601f8301126122b7576122b6612de2565b5b81356122c78482602086016121ca565b91505092915050565b600082601f8301126122e5576122e4612de2565b5b81356122f584826020860161220c565b91505092915050565b60008135905061230d81612fe3565b92915050565b60006020828403121561232957612328612df1565b5b60006123378482850161224e565b91505092915050565b6000806040838503121561235757612356612df1565b5b60006123658582860161224e565b92505060206123768582860161224e565b9150509250929050565b60008060006060848603121561239957612398612df1565b5b60006123a78682870161224e565b93505060206123b88682870161224e565b92505060406123c9868287016122fe565b9150509250925092565b600080600080608085870312156123ed576123ec612df1565b5b60006123fb8782880161224e565b945050602061240c8782880161224e565b935050604061241d878288016122fe565b925050606085013567ffffffffffffffff81111561243e5761243d612dec565b5b61244a878288016122a2565b91505092959194509250565b6000806040838503121561246d5761246c612df1565b5b600061247b8582860161224e565b925050602061248c85828601612263565b9150509250929050565b600080604083850312156124ad576124ac612df1565b5b60006124bb8582860161224e565b92505060206124cc858286016122fe565b9150509250929050565b6000602082840312156124ec576124eb612df1565b5b60006124fa84828501612263565b91505092915050565b60006020828403121561251957612518612df1565b5b600061252784828501612278565b91505092915050565b60006020828403121561254657612545612df1565b5b60006125548482850161228d565b91505092915050565b60006020828403121561257357612572612df1565b5b600082013567ffffffffffffffff81111561259157612590612dec565b5b61259d848285016122d0565b91505092915050565b6000602082840312156125bc576125bb612df1565b5b60006125ca848285016122fe565b91505092915050565b600080604083850312156125ea576125e9612df1565b5b60006125f8858286016122fe565b92505060206126098582860161224e565b9150509250929050565b61261c81612c3c565b82525050565b61262b81612c4e565b82525050565b600061263c82612b3e565b6126468185612b54565b9350612656818560208601612cbf565b61265f81612df6565b840191505092915050565b600061267582612b49565b61267f8185612b70565b935061268f818560208601612cbf565b61269881612df6565b840191505092915050565b60006126ae82612b49565b6126b88185612b81565b93506126c8818560208601612cbf565b80840191505092915050565b600081546126e181612cf2565b6126eb8186612b81565b9450600182166000811461270657600181146127175761274a565b60ff1983168652818601935061274a565b61272085612b29565b60005b8381101561274257815481890152600182019150602081019050612723565b838801955050505b50505092915050565b6000612760602683612b70565b915061276b82612e07565b604082019050919050565b6000612783601483612b70565b915061278e82612e56565b602082019050919050565b60006127a6602083612b70565b91506127b182612e7f565b602082019050919050565b60006127c9601783612b70565b91506127d482612ea8565b602082019050919050565b60006127ec602f83612b70565b91506127f782612ed1565b604082019050919050565b600061280f600083612b65565b915061281a82612f20565b600082019050919050565b6000612832601483612b70565b915061283d82612f23565b602082019050919050565b6000612855601f83612b70565b915061286082612f4c565b602082019050919050565b6000612878601383612b70565b915061288382612f75565b602082019050919050565b61289781612ca6565b82525050565b60006128a982866126a3565b91506128b582856126a3565b91506128c182846126d4565b9150819050949350505050565b60006128d982612802565b9150819050919050565b60006020820190506128f86000830184612613565b92915050565b60006080820190506129136000830187612613565b6129206020830186612613565b61292d604083018561288e565b818103606083015261293f8184612631565b905095945050505050565b600060208201905061295f6000830184612622565b92915050565b6000602082019050818103600083015261297f818461266a565b905092915050565b600060208201905081810360008301526129a081612753565b9050919050565b600060208201905081810360008301526129c081612776565b9050919050565b600060208201905081810360008301526129e081612799565b9050919050565b60006020820190508181036000830152612a00816127bc565b9050919050565b60006020820190508181036000830152612a20816127df565b9050919050565b60006020820190508181036000830152612a4081612825565b9050919050565b60006020820190508181036000830152612a6081612848565b9050919050565b60006020820190508181036000830152612a808161286b565b9050919050565b6000602082019050612a9c600083018461288e565b92915050565b6000612aac612abd565b9050612ab88282612d24565b919050565b6000604051905090565b600067ffffffffffffffff821115612ae257612ae1612db3565b5b612aeb82612df6565b9050602081019050919050565b600067ffffffffffffffff821115612b1357612b12612db3565b5b612b1c82612df6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b9782612ca6565b9150612ba283612ca6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bd757612bd6612d55565b5b828201905092915050565b6000612bed82612ca6565b9150612bf883612ca6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c3157612c30612d55565b5b828202905092915050565b6000612c4782612c86565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612cdd578082015181840152602081019050612cc2565b83811115612cec576000848401525b50505050565b60006002820490506001821680612d0a57607f821691505b60208210811415612d1e57612d1d612d84565b5b50919050565b612d2d82612df6565b810181811067ffffffffffffffff82111715612d4c57612d4b612db3565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b612fa781612c3c565b8114612fb257600080fd5b50565b612fbe81612c4e565b8114612fc957600080fd5b50565b612fd581612c5a565b8114612fe057600080fd5b50565b612fec81612ca6565b8114612ff757600080fd5b5056fea2646970667358221220cc9cbaf2f9b9910e44c4c61b02113c539d6067300beb8f57be618cff55ad0fd964736f6c63430008070033697066733a2f2f516d585357723757356e79424e5441633636564743417a4c58426f4569714e6257765878594d62344d65546876692f686964652e6a736f6e00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e4d69646c6966652043726973697300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d43000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101f95760003560e01c806370a082311161010d578063a0bcfc7f116100a0578063d5abeb011161006f578063d5abeb01146106b8578063e0a80853146106e3578063e985e9c51461070c578063efbd73f414610749578063f2fde38b14610772576101f9565b8063a0bcfc7f1461060d578063a22cb46514610636578063b88d4fde1461065f578063c87b56dd1461067b576101f9565b806394354fd0116100dc57806394354fd01461057057806395d89b411461059b5780639abc8320146105c6578063a0712d68146105f1576101f9565b806370a08231146104c8578063715018a6146105055780637ec4a6591461051c5780638da5cb5b14610545576101f9565b806323b872dd11610190578063518302271161015f57806351830227146103df5780635503a0e81461040a5780635c975abb1461043557806362b99ad4146104605780636352211e1461048b576101f9565b806323b872dd146103675780633ccfd60b1461038357806342842e0e1461039a57806344a0d68a146103b6576101f9565b806313faede6116101cc57806313faede6146102bf57806316ba10e0146102ea57806316c38b3c1461031357806318160ddd1461033c576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612503565b61079b565b604051610232919061294a565b60405180910390f35b34801561024757600080fd5b5061025061082d565b60405161025d9190612965565b60405180910390f35b34801561027257600080fd5b5061028d600480360381019061028891906125a6565b6108bf565b60405161029a91906128e3565b60405180910390f35b6102bd60048036038101906102b89190612496565b61093e565b005b3480156102cb57600080fd5b506102d4610a82565b6040516102e19190612a87565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c919061255d565b610a88565b005b34801561031f57600080fd5b5061033a600480360381019061033591906124d6565b610aaa565b005b34801561034857600080fd5b50610351610acf565b60405161035e9190612a87565b60405180910390f35b610381600480360381019061037c9190612380565b610ae6565b005b34801561038f57600080fd5b50610398610e0b565b005b6103b460048036038101906103af9190612380565b610ee9565b005b3480156103c257600080fd5b506103dd60048036038101906103d891906125a6565b610f09565b005b3480156103eb57600080fd5b506103f4610f1b565b604051610401919061294a565b60405180910390f35b34801561041657600080fd5b5061041f610f2e565b60405161042c9190612965565b60405180910390f35b34801561044157600080fd5b5061044a610fbc565b604051610457919061294a565b60405180910390f35b34801561046c57600080fd5b50610475610fcf565b6040516104829190612965565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad91906125a6565b61105d565b6040516104bf91906128e3565b60405180910390f35b3480156104d457600080fd5b506104ef60048036038101906104ea9190612313565b61106f565b6040516104fc9190612a87565b60405180910390f35b34801561051157600080fd5b5061051a611128565b005b34801561052857600080fd5b50610543600480360381019061053e919061255d565b61113c565b005b34801561055157600080fd5b5061055a61115e565b60405161056791906128e3565b60405180910390f35b34801561057c57600080fd5b50610585611188565b6040516105929190612a87565b60405180910390f35b3480156105a757600080fd5b506105b061118e565b6040516105bd9190612965565b60405180910390f35b3480156105d257600080fd5b506105db611220565b6040516105e89190612965565b60405180910390f35b61060b600480360381019061060691906125a6565b6112ae565b005b34801561061957600080fd5b50610634600480360381019061062f919061255d565b611407565b005b34801561064257600080fd5b5061065d60048036038101906106589190612456565b611429565b005b610679600480360381019061067491906123d3565b611534565b005b34801561068757600080fd5b506106a2600480360381019061069d91906125a6565b6115a7565b6040516106af9190612965565b60405180910390f35b3480156106c457600080fd5b506106cd6116f8565b6040516106da9190612a87565b60405180910390f35b3480156106ef57600080fd5b5061070a600480360381019061070591906124d6565b6116fe565b005b34801561071857600080fd5b50610733600480360381019061072e9190612340565b611723565b604051610740919061294a565b60405180910390f35b34801561075557600080fd5b50610770600480360381019061076b91906125d3565b6117b7565b005b34801561077e57600080fd5b5061079960048036038101906107949190612313565b611877565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108265750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461083c90612cf2565b80601f016020809104026020016040519081016040528092919081815260200182805461086890612cf2565b80156108b55780601f1061088a576101008083540402835291602001916108b5565b820191906000526020600020905b81548152906001019060200180831161089857829003601f168201915b5050505050905090565b60006108ca826118fb565b610900576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109498261105d565b90508073ffffffffffffffffffffffffffffffffffffffff1661096a61195a565b73ffffffffffffffffffffffffffffffffffffffff16146109cd576109968161099161195a565b611723565b6109cc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610a90611962565b80600b9080519060200190610aa6929190612127565b5050565b610ab2611962565b80601060006101000a81548160ff02191690831515021790555050565b6000610ad96119e0565b6001546000540303905090565b6000610af1826119e5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b58576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6484611ab3565b91509150610b7a8187610b7561195a565b611ada565b610bc657610b8f86610b8a61195a565b611723565b610bc5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c2d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3a8686866001611b1e565b8015610c4557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d1385610cef888887611b24565b7c020000000000000000000000000000000000000000000000000000000017611b4c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d9b576000600185019050600060046000838152602001908152602001600020541415610d99576000548114610d98578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e038686866001611b77565b505050505050565b610e13611962565b60026009541415610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5090612a47565b60405180910390fd5b60026009819055506000610e6b61115e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e8e906128ce565b60006040518083038185875af1925050503d8060008114610ecb576040519150601f19603f3d011682016040523d82523d6000602084013e610ed0565b606091505b5050905080610ede57600080fd5b506001600981905550565b610f0483838360405180602001604052806000815250611534565b505050565b610f11611962565b80600d8190555050565b601060019054906101000a900460ff1681565b600b8054610f3b90612cf2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6790612cf2565b8015610fb45780601f10610f8957610100808354040283529160200191610fb4565b820191906000526020600020905b815481529060010190602001808311610f9757829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a8054610fdc90612cf2565b80601f016020809104026020016040519081016040528092919081815260200182805461100890612cf2565b80156110555780601f1061102a57610100808354040283529160200191611055565b820191906000526020600020905b81548152906001019060200180831161103857829003601f168201915b505050505081565b6000611068826119e5565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611130611962565b61113a6000611b7d565b565b611144611962565b80600a908051906020019061115a929190612127565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606003805461119d90612cf2565b80601f01602080910402602001604051908101604052809291908181526020018280546111c990612cf2565b80156112165780601f106111eb57610100808354040283529160200191611216565b820191906000526020600020905b8154815290600101906020018083116111f957829003601f168201915b5050505050905090565b600c805461122d90612cf2565b80601f016020809104026020016040519081016040528092919081815260200182805461125990612cf2565b80156112a65780601f1061127b576101008083540402835291602001916112a6565b820191906000526020600020905b81548152906001019060200180831161128957829003601f168201915b505050505081565b806000811180156112c15750600f548111155b611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f7906129a7565b60405180910390fd5b600e548161130c610acf565b6113169190612b8c565b1115611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e90612a27565b60405180910390fd5b8180600d546113669190612be2565b3410156113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90612a67565b60405180910390fd5b601060009054906101000a900460ff16156113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef906129e7565b60405180910390fd5b6114023384611c43565b505050565b61140f611962565b80600c9080519060200190611425929190612127565b5050565b806007600061143661195a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114e361195a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611528919061294a565b60405180910390a35050565b61153f848484610ae6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115a15761156a84848484611c61565b6115a0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115b2826118fb565b6115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890612a07565b60405180910390fd5b601060019054906101000a900460ff1661169757600c805461161290612cf2565b80601f016020809104026020016040519081016040528092919081815260200182805461163e90612cf2565b801561168b5780601f106116605761010080835404028352916020019161168b565b820191906000526020600020905b81548152906001019060200180831161166e57829003601f168201915b505050505090506116f3565b60006116a1611dc1565b905060008151116116c157604051806020016040528060008152506116ef565b806116cb84611e53565b600b6040516020016116df9392919061289d565b6040516020818303038152906040525b9150505b919050565b600e5481565b611706611962565b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156117ca5750600f548111155b611809576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611800906129a7565b60405180910390fd5b600e5481611815610acf565b61181f9190612b8c565b1115611860576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185790612a27565b60405180910390fd5b611868611962565b6118728284611c43565b505050565b61187f611962565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690612987565b60405180910390fd5b6118f881611b7d565b50565b6000816119066119e0565b11158015611915575060005482105b8015611953575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b61196a611eac565b73ffffffffffffffffffffffffffffffffffffffff1661198861115e565b73ffffffffffffffffffffffffffffffffffffffff16146119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d5906129c7565b60405180910390fd5b565b600090565b600080829050806119f46119e0565b11611a7c57600054811015611a7b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a79575b6000811415611a6f576004600083600190039350838152602001908152602001600020549050611a44565b8092505050611aae565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b3b868684611eb4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c5d828260405180602001604052806000815250611ebd565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c8761195a565b8786866040518563ffffffff1660e01b8152600401611ca994939291906128fe565b602060405180830381600087803b158015611cc357600080fd5b505af1925050508015611cf457506040513d601f19601f82011682018060405250810190611cf19190612530565b60015b611d6e573d8060008114611d24576040519150601f19603f3d011682016040523d82523d6000602084013e611d29565b606091505b50600081511415611d66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611dd090612cf2565b80601f0160208091040260200160405190810160405280929190818152602001828054611dfc90612cf2565b8015611e495780601f10611e1e57610100808354040283529160200191611e49565b820191906000526020600020905b815481529060010190602001808311611e2c57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611e9757600184039350600a81066030018453600a8104905080611e9257611e97565b611e6c565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b611ec78383611f5a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f5557600080549050600083820390505b611f076000868380600101945086611c61565b611f3d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ef4578160005414611f5257600080fd5b50505b505050565b6000805490506000821415611f9b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fa86000848385611b1e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061201f836120106000866000611b24565b61201985612117565b17611b4c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146120c057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612085565b5060008214156120fc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121126000848385611b77565b505050565b60006001821460e11b9050919050565b82805461213390612cf2565b90600052602060002090601f016020900481019282612155576000855561219c565b82601f1061216e57805160ff191683800117855561219c565b8280016001018555821561219c579182015b8281111561219b578251825591602001919060010190612180565b5b5090506121a991906121ad565b5090565b5b808211156121c65760008160009055506001016121ae565b5090565b60006121dd6121d884612ac7565b612aa2565b9050828152602081018484840111156121f9576121f8612de7565b5b612204848285612cb0565b509392505050565b600061221f61221a84612af8565b612aa2565b90508281526020810184848401111561223b5761223a612de7565b5b612246848285612cb0565b509392505050565b60008135905061225d81612f9e565b92915050565b60008135905061227281612fb5565b92915050565b60008135905061228781612fcc565b92915050565b60008151905061229c81612fcc565b92915050565b600082601f8301126122b7576122b6612de2565b5b81356122c78482602086016121ca565b91505092915050565b600082601f8301126122e5576122e4612de2565b5b81356122f584826020860161220c565b91505092915050565b60008135905061230d81612fe3565b92915050565b60006020828403121561232957612328612df1565b5b60006123378482850161224e565b91505092915050565b6000806040838503121561235757612356612df1565b5b60006123658582860161224e565b92505060206123768582860161224e565b9150509250929050565b60008060006060848603121561239957612398612df1565b5b60006123a78682870161224e565b93505060206123b88682870161224e565b92505060406123c9868287016122fe565b9150509250925092565b600080600080608085870312156123ed576123ec612df1565b5b60006123fb8782880161224e565b945050602061240c8782880161224e565b935050604061241d878288016122fe565b925050606085013567ffffffffffffffff81111561243e5761243d612dec565b5b61244a878288016122a2565b91505092959194509250565b6000806040838503121561246d5761246c612df1565b5b600061247b8582860161224e565b925050602061248c85828601612263565b9150509250929050565b600080604083850312156124ad576124ac612df1565b5b60006124bb8582860161224e565b92505060206124cc858286016122fe565b9150509250929050565b6000602082840312156124ec576124eb612df1565b5b60006124fa84828501612263565b91505092915050565b60006020828403121561251957612518612df1565b5b600061252784828501612278565b91505092915050565b60006020828403121561254657612545612df1565b5b60006125548482850161228d565b91505092915050565b60006020828403121561257357612572612df1565b5b600082013567ffffffffffffffff81111561259157612590612dec565b5b61259d848285016122d0565b91505092915050565b6000602082840312156125bc576125bb612df1565b5b60006125ca848285016122fe565b91505092915050565b600080604083850312156125ea576125e9612df1565b5b60006125f8858286016122fe565b92505060206126098582860161224e565b9150509250929050565b61261c81612c3c565b82525050565b61262b81612c4e565b82525050565b600061263c82612b3e565b6126468185612b54565b9350612656818560208601612cbf565b61265f81612df6565b840191505092915050565b600061267582612b49565b61267f8185612b70565b935061268f818560208601612cbf565b61269881612df6565b840191505092915050565b60006126ae82612b49565b6126b88185612b81565b93506126c8818560208601612cbf565b80840191505092915050565b600081546126e181612cf2565b6126eb8186612b81565b9450600182166000811461270657600181146127175761274a565b60ff1983168652818601935061274a565b61272085612b29565b60005b8381101561274257815481890152600182019150602081019050612723565b838801955050505b50505092915050565b6000612760602683612b70565b915061276b82612e07565b604082019050919050565b6000612783601483612b70565b915061278e82612e56565b602082019050919050565b60006127a6602083612b70565b91506127b182612e7f565b602082019050919050565b60006127c9601783612b70565b91506127d482612ea8565b602082019050919050565b60006127ec602f83612b70565b91506127f782612ed1565b604082019050919050565b600061280f600083612b65565b915061281a82612f20565b600082019050919050565b6000612832601483612b70565b915061283d82612f23565b602082019050919050565b6000612855601f83612b70565b915061286082612f4c565b602082019050919050565b6000612878601383612b70565b915061288382612f75565b602082019050919050565b61289781612ca6565b82525050565b60006128a982866126a3565b91506128b582856126a3565b91506128c182846126d4565b9150819050949350505050565b60006128d982612802565b9150819050919050565b60006020820190506128f86000830184612613565b92915050565b60006080820190506129136000830187612613565b6129206020830186612613565b61292d604083018561288e565b818103606083015261293f8184612631565b905095945050505050565b600060208201905061295f6000830184612622565b92915050565b6000602082019050818103600083015261297f818461266a565b905092915050565b600060208201905081810360008301526129a081612753565b9050919050565b600060208201905081810360008301526129c081612776565b9050919050565b600060208201905081810360008301526129e081612799565b9050919050565b60006020820190508181036000830152612a00816127bc565b9050919050565b60006020820190508181036000830152612a20816127df565b9050919050565b60006020820190508181036000830152612a4081612825565b9050919050565b60006020820190508181036000830152612a6081612848565b9050919050565b60006020820190508181036000830152612a808161286b565b9050919050565b6000602082019050612a9c600083018461288e565b92915050565b6000612aac612abd565b9050612ab88282612d24565b919050565b6000604051905090565b600067ffffffffffffffff821115612ae257612ae1612db3565b5b612aeb82612df6565b9050602081019050919050565b600067ffffffffffffffff821115612b1357612b12612db3565b5b612b1c82612df6565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b9782612ca6565b9150612ba283612ca6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bd757612bd6612d55565b5b828201905092915050565b6000612bed82612ca6565b9150612bf883612ca6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c3157612c30612d55565b5b828202905092915050565b6000612c4782612c86565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612cdd578082015181840152602081019050612cc2565b83811115612cec576000848401525b50505050565b60006002820490506001821680612d0a57607f821691505b60208210811415612d1e57612d1d612d84565b5b50919050565b612d2d82612df6565b810181811067ffffffffffffffff82111715612d4c57612d4b612db3565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b612fa781612c3c565b8114612fb257600080fd5b50565b612fbe81612c4e565b8114612fc957600080fd5b50565b612fd581612c5a565b8114612fe057600080fd5b50565b612fec81612ca6565b8114612ff757600080fd5b5056fea2646970667358221220cc9cbaf2f9b9910e44c4c61b02113c539d6067300beb8f57be618cff55ad0fd964736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e4d69646c6966652043726973697300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d43000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): Midlife Crisis
Arg [1] : _tokenSymbol (string): MC
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 4d69646c69666520437269736973000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 4d43000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
58689:2583:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25581:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26483:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32974:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32407:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58921:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60727:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60833:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22234:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36613:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61009:150;;;;;;;;;;;;;:::i;:::-;;39534:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60451:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59069:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58787:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59039:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58754:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27876:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23418:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6360:103;;;;;;;;;;;;;:::i;:::-;;60621:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5712:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58995:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26659:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58825:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59639:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60531:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33532:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40325:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60018:427;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58959:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60916:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33923:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59857:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6618:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25581:639;25666:4;26005:10;25990:25;;:11;:25;;;;:102;;;;26082:10;26067:25;;:11;:25;;;;25990:102;:179;;;;26159:10;26144:25;;:11;:25;;;;25990:179;25970:199;;25581:639;;;:::o;26483:100::-;26537:13;26570:5;26563:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26483:100;:::o;32974:218::-;33050:7;33075:16;33083:7;33075;:16::i;:::-;33070:64;;33100:34;;;;;;;;;;;;;;33070:64;33154:15;:24;33170:7;33154:24;;;;;;;;;;;:30;;;;;;;;;;;;33147:37;;32974:218;;;:::o;32407:408::-;32496:13;32512:16;32520:7;32512;:16::i;:::-;32496:32;;32568:5;32545:28;;:19;:17;:19::i;:::-;:28;;;32541:175;;32593:44;32610:5;32617:19;:17;:19::i;:::-;32593:16;:44::i;:::-;32588:128;;32665:35;;;;;;;;;;;;;;32588:128;32541:175;32761:2;32728:15;:24;32744:7;32728:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32799:7;32795:2;32779:28;;32788:5;32779:28;;;;;;;;;;;;32485:330;32407:408;;:::o;58921:33::-;;;;:::o;60727:100::-;5598:13;:11;:13::i;:::-;60811:10:::1;60799:9;:22;;;;;;;;;;;;:::i;:::-;;60727:100:::0;:::o;60833:77::-;5598:13;:11;:13::i;:::-;60898:6:::1;60889;;:15;;;;;;;;;;;;;;;;;;60833:77:::0;:::o;22234:323::-;22295:7;22523:15;:13;:15::i;:::-;22508:12;;22492:13;;:28;:46;22485:53;;22234:323;:::o;36613:2825::-;36755:27;36785;36804:7;36785:18;:27::i;:::-;36755:57;;36870:4;36829:45;;36845:19;36829:45;;;36825:86;;36883:28;;;;;;;;;;;;;;36825:86;36925:27;36954:23;36981:35;37008:7;36981:26;:35::i;:::-;36924:92;;;;37116:68;37141:15;37158:4;37164:19;:17;:19::i;:::-;37116:24;:68::i;:::-;37111:180;;37204:43;37221:4;37227:19;:17;:19::i;:::-;37204:16;:43::i;:::-;37199:92;;37256:35;;;;;;;;;;;;;;37199:92;37111:180;37322:1;37308:16;;:2;:16;;;37304:52;;;37333:23;;;;;;;;;;;;;;37304:52;37369:43;37391:4;37397:2;37401:7;37410:1;37369:21;:43::i;:::-;37505:15;37502:160;;;37645:1;37624:19;37617:30;37502:160;38042:18;:24;38061:4;38042:24;;;;;;;;;;;;;;;;38040:26;;;;;;;;;;;;38111:18;:22;38130:2;38111:22;;;;;;;;;;;;;;;;38109:24;;;;;;;;;;;38433:146;38470:2;38519:45;38534:4;38540:2;38544:19;38519:14;:45::i;:::-;18633:8;38491:73;38433:18;:146::i;:::-;38404:17;:26;38422:7;38404:26;;;;;;;;;;;:175;;;;38750:1;18633:8;38699:19;:47;:52;38695:627;;;38772:19;38804:1;38794:7;:11;38772:33;;38961:1;38927:17;:30;38945:11;38927:30;;;;;;;;;;;;:35;38923:384;;;39065:13;;39050:11;:28;39046:242;;39245:19;39212:17;:30;39230:11;39212:30;;;;;;;;;;;:52;;;;39046:242;38923:384;38753:569;38695:627;39369:7;39365:2;39350:27;;39359:4;39350:27;;;;;;;;;;;;39388:42;39409:4;39415:2;39419:7;39428:1;39388:20;:42::i;:::-;36744:2694;;;36613:2825;;;:::o;61009:150::-;5598:13;:11;:13::i;:::-;2637:1:::1;3235:7;;:19;;3227:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2637:1;3368:7;:18;;;;61067:7:::2;61088;:5;:7::i;:::-;61080:21;;61109;61080:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61066:69;;;61150:2;61142:11;;;::::0;::::2;;61059:100;2593:1:::1;3547:7;:22;;;;61009:150::o:0;39534:193::-;39680:39;39697:4;39703:2;39707:7;39680:39;;;;;;;;;;;;:16;:39::i;:::-;39534:193;;;:::o;60451:74::-;5598:13;:11;:13::i;:::-;60514:5:::1;60507:4;:12;;;;60451:74:::0;:::o;59069:28::-;;;;;;;;;;;;;:::o;58787:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59039:25::-;;;;;;;;;;;;;:::o;58754:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27876:152::-;27948:7;27991:27;28010:7;27991:18;:27::i;:::-;27968:52;;27876:152;;;:::o;23418:233::-;23490:7;23531:1;23514:19;;:5;:19;;;23510:60;;;23542:28;;;;;;;;;;;;;;23510:60;17577:13;23588:18;:25;23607:5;23588:25;;;;;;;;;;;;;;;;:55;23581:62;;23418:233;;;:::o;6360:103::-;5598:13;:11;:13::i;:::-;6425:30:::1;6452:1;6425:18;:30::i;:::-;6360:103::o:0;60621:100::-;5598:13;:11;:13::i;:::-;60705:10:::1;60693:9;:22;;;;;;;;;;;;:::i;:::-;;60621:100:::0;:::o;5712:87::-;5758:7;5785:6;;;;;;;;;;;5778:13;;5712:87;:::o;58995:37::-;;;;:::o;26659:104::-;26715:13;26748:7;26741:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26659:104;:::o;58825:89::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59639:210::-;59704:11;59336:1;59322:11;:15;:52;;;;;59356:18;;59341:11;:33;;59322:52;59314:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;59445:9;;59430:11;59414:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;59406:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59737:11:::1;59584;59577:4;;:18;;;;:::i;:::-;59564:9;:31;;59556:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;59766:6:::2;;;;;;;;;;;59765:7;59757:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;59809:34;59819:10;59831:11;59809:9;:34::i;:::-;59486:1:::1;59639:210:::0;;:::o;60531:84::-;5598:13;:11;:13::i;:::-;60605:4:::1;60595:7;:14;;;;;;;;;;;;:::i;:::-;;60531:84:::0;:::o;33532:234::-;33679:8;33627:18;:39;33646:19;:17;:19::i;:::-;33627:39;;;;;;;;;;;;;;;:49;33667:8;33627:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33739:8;33703:55;;33718:19;:17;:19::i;:::-;33703:55;;;33749:8;33703:55;;;;;;:::i;:::-;;;;;;;;33532:234;;:::o;40325:407::-;40500:31;40513:4;40519:2;40523:7;40500:12;:31::i;:::-;40564:1;40546:2;:14;;;:19;40542:183;;40585:56;40616:4;40622:2;40626:7;40635:5;40585:30;:56::i;:::-;40580:145;;40669:40;;;;;;;;;;;;;;40580:145;40542:183;40325:407;;;;:::o;60018:427::-;60092:13;60122:17;60130:8;60122:7;:17::i;:::-;60114:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;60205:8;;;;;;;;;;;60200:46;;60231:7;60224:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60200:46;60254:28;60285:10;:8;:10::i;:::-;60254:41;;60340:1;60315:14;60309:28;:32;:130;;;;;;;;;;;;;;;;;60377:14;60393:19;60403:8;60393:9;:19::i;:::-;60414:9;60360:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60309:130;60302:137;;;60018:427;;;;:::o;58959:31::-;;;;:::o;60916:87::-;5598:13;:11;:13::i;:::-;60988:9:::1;60977:8;;:20;;;;;;;;;;;;;;;;;;60916:87:::0;:::o;33923:164::-;34020:4;34044:18;:25;34063:5;34044:25;;;;;;;;;;;;;;;:35;34070:8;34044:35;;;;;;;;;;;;;;;;;;;;;;;;;34037:42;;33923:164;;;;:::o;59857:155::-;59943:11;59336:1;59322:11;:15;:52;;;;;59356:18;;59341:11;:33;;59322:52;59314:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;59445:9;;59430:11;59414:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;59406:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5598:13:::1;:11;:13::i;:::-;59973:33:::2;59983:9;59994:11;59973:9;:33::i;:::-;59857:155:::0;;;:::o;6618:201::-;5598:13;:11;:13::i;:::-;6727:1:::1;6707:22;;:8;:22;;;;6699:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6783:28;6802:8;6783:18;:28::i;:::-;6618:201:::0;:::o;34345:282::-;34410:4;34466:7;34447:15;:13;:15::i;:::-;:26;;:66;;;;;34500:13;;34490:7;:23;34447:66;:153;;;;;34599:1;18353:8;34551:17;:26;34569:7;34551:26;;;;;;;;;;;;:44;:49;34447:153;34427:173;;34345:282;;;:::o;56653:105::-;56713:7;56740:10;56733:17;;56653:105;:::o;5877:132::-;5952:12;:10;:12::i;:::-;5941:23;;:7;:5;:7::i;:::-;:23;;;5933:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5877:132::o;21750:92::-;21806:7;21750:92;:::o;29031:1275::-;29098:7;29118:12;29133:7;29118:22;;29201:4;29182:15;:13;:15::i;:::-;:23;29178:1061;;29235:13;;29228:4;:20;29224:1015;;;29273:14;29290:17;:23;29308:4;29290:23;;;;;;;;;;;;29273:40;;29407:1;18353:8;29379:6;:24;:29;29375:845;;;30044:113;30061:1;30051:6;:11;30044:113;;;30104:17;:25;30122:6;;;;;;;30104:25;;;;;;;;;;;;30095:34;;30044:113;;;30190:6;30183:13;;;;;;29375:845;29250:989;29224:1015;29178:1061;30267:31;;;;;;;;;;;;;;29031:1275;;;;:::o;35508:485::-;35610:27;35639:23;35680:38;35721:15;:24;35737:7;35721:24;;;;;;;;;;;35680:65;;35898:18;35875:41;;35955:19;35949:26;35930:45;;35860:126;35508:485;;;:::o;34736:659::-;34885:11;35050:16;35043:5;35039:28;35030:37;;35210:16;35199:9;35195:32;35182:45;;35360:15;35349:9;35346:30;35338:5;35327:9;35324:20;35321:56;35311:66;;34736:659;;;;;:::o;41394:159::-;;;;;:::o;55962:311::-;56097:7;56117:16;18757:3;56143:19;:41;;56117:68;;18757:3;56211:31;56222:4;56228:2;56232:9;56211:10;:31::i;:::-;56203:40;;:62;;56196:69;;;55962:311;;;;;:::o;30854:450::-;30934:14;31102:16;31095:5;31091:28;31082:37;;31279:5;31265:11;31240:23;31236:41;31233:52;31226:5;31223:63;31213:73;;30854:450;;;;:::o;42218:158::-;;;;;:::o;6979:191::-;7053:16;7072:6;;;;;;;;;;;7053:25;;7098:8;7089:6;;:17;;;;;;;;;;;;;;;;;;7153:8;7122:40;;7143:8;7122:40;;;;;;;;;;;;7042:128;6979:191;:::o;50485:112::-;50562:27;50572:2;50576:8;50562:27;;;;;;;;;;;;:9;:27::i;:::-;50485:112;;:::o;42816:716::-;42979:4;43025:2;43000:45;;;43046:19;:17;:19::i;:::-;43067:4;43073:7;43082:5;43000:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42996:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43300:1;43283:6;:13;:18;43279:235;;;43329:40;;;;;;;;;;;;;;43279:235;43472:6;43466:13;43457:6;43453:2;43449:15;43442:38;42996:529;43169:54;;;43159:64;;;:6;:64;;;;43152:71;;;42816:716;;;;;;:::o;61165:104::-;61225:13;61254:9;61247:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61165:104;:::o;56860:1745::-;56925:17;57359:4;57352;57346:11;57342:22;57451:1;57445:4;57438:15;57526:4;57523:1;57519:12;57512:19;;57608:1;57603:3;57596:14;57712:3;57951:5;57933:428;57959:1;57933:428;;;57999:1;57994:3;57990:11;57983:18;;58170:2;58164:4;58160:13;58156:2;58152:22;58147:3;58139:36;58264:2;58258:4;58254:13;58246:21;;58331:4;58321:25;;58339:5;;58321:25;57933:428;;;57937:21;58400:3;58395;58391:13;58515:4;58510:3;58506:14;58499:21;;58580:6;58575:3;58568:19;56964:1634;;;56860:1745;;;:::o;4263:98::-;4316:7;4343:10;4336:17;;4263:98;:::o;55663:147::-;55800:6;55663:147;;;;;:::o;49712:689::-;49843:19;49849:2;49853:8;49843:5;:19::i;:::-;49922:1;49904:2;:14;;;:19;49900:483;;49944:11;49958:13;;49944:27;;49990:13;50012:8;50006:3;:14;49990:30;;50039:233;50070:62;50109:1;50113:2;50117:7;;;;;;50126:5;50070:30;:62::i;:::-;50065:167;;50168:40;;;;;;;;;;;;;;50065:167;50267:3;50259:5;:11;50039:233;;50354:3;50337:13;;:20;50333:34;;50359:8;;;50333:34;49925:458;;49900:483;49712:689;;;:::o;43994:2966::-;44067:20;44090:13;;44067:36;;44130:1;44118:8;:13;44114:44;;;44140:18;;;;;;;;;;;;;;44114:44;44171:61;44201:1;44205:2;44209:12;44223:8;44171:21;:61::i;:::-;44715:1;17715:2;44685:1;:26;;44684:32;44672:8;:45;44646:18;:22;44665:2;44646:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44994:139;45031:2;45085:33;45108:1;45112:2;45116:1;45085:14;:33::i;:::-;45052:30;45073:8;45052:20;:30::i;:::-;:66;44994:18;:139::i;:::-;44960:17;:31;44978:12;44960:31;;;;;;;;;;;:173;;;;45150:16;45181:11;45210:8;45195:12;:23;45181:37;;45731:16;45727:2;45723:25;45711:37;;46103:12;46063:8;46022:1;45960:25;45901:1;45840;45813:335;46474:1;46460:12;46456:20;46414:346;46515:3;46506:7;46503:16;46414:346;;46733:7;46723:8;46720:1;46693:25;46690:1;46687;46682:59;46568:1;46559:7;46555:15;46544:26;;46414:346;;;46418:77;46805:1;46793:8;:13;46789:45;;;46815:19;;;;;;;;;;;;;;46789:45;46867:3;46851:13;:19;;;;44420:2462;;46892:60;46921:1;46925:2;46929:12;46943:8;46892:20;:60::i;:::-;44056:2904;43994:2966;;:::o;31406:324::-;31476:14;31709:1;31699:8;31696:15;31670:24;31666:46;31656:56;;31406:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9349:845::-;9452:3;9489:5;9483:12;9518:36;9544:9;9518:36;:::i;:::-;9570:89;9652:6;9647:3;9570:89;:::i;:::-;9563:96;;9690:1;9679:9;9675:17;9706:1;9701:137;;;;9852:1;9847:341;;;;9668:520;;9701:137;9785:4;9781:9;9770;9766:25;9761:3;9754:38;9821:6;9816:3;9812:16;9805:23;;9701:137;;9847:341;9914:38;9946:5;9914:38;:::i;:::-;9974:1;9988:154;10002:6;9999:1;9996:13;9988:154;;;10076:7;10070:14;10066:1;10061:3;10057:11;10050:35;10126:1;10117:7;10113:15;10102:26;;10024:4;10021:1;10017:12;10012:17;;9988:154;;;10171:6;10166:3;10162:16;10155:23;;9854:334;;9668:520;;9456:738;;9349:845;;;;:::o;10200:366::-;10342:3;10363:67;10427:2;10422:3;10363:67;:::i;:::-;10356:74;;10439:93;10528:3;10439:93;:::i;:::-;10557:2;10552:3;10548:12;10541:19;;10200:366;;;:::o;10572:::-;10714:3;10735:67;10799:2;10794:3;10735:67;:::i;:::-;10728:74;;10811:93;10900:3;10811:93;:::i;:::-;10929:2;10924:3;10920:12;10913:19;;10572:366;;;:::o;10944:::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:::-;11458:3;11479:67;11543:2;11538:3;11479:67;:::i;:::-;11472:74;;11555:93;11644:3;11555:93;:::i;:::-;11673:2;11668:3;11664:12;11657:19;;11316:366;;;:::o;11688:::-;11830:3;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11927:93;12016:3;11927:93;:::i;:::-;12045:2;12040:3;12036:12;12029:19;;11688:366;;;:::o;12060:398::-;12219:3;12240:83;12321:1;12316:3;12240:83;:::i;:::-;12233:90;;12332:93;12421:3;12332:93;:::i;:::-;12450:1;12445:3;12441:11;12434:18;;12060:398;;;:::o;12464:366::-;12606:3;12627:67;12691:2;12686:3;12627:67;:::i;:::-;12620:74;;12703:93;12792:3;12703:93;:::i;:::-;12821:2;12816:3;12812:12;12805:19;;12464:366;;;:::o;12836:::-;12978:3;12999:67;13063:2;13058:3;12999:67;:::i;:::-;12992:74;;13075:93;13164:3;13075:93;:::i;:::-;13193:2;13188:3;13184:12;13177:19;;12836:366;;;:::o;13208:::-;13350:3;13371:67;13435:2;13430:3;13371:67;:::i;:::-;13364:74;;13447:93;13536:3;13447:93;:::i;:::-;13565:2;13560:3;13556:12;13549:19;;13208:366;;;:::o;13580:118::-;13667:24;13685:5;13667:24;:::i;:::-;13662:3;13655:37;13580:118;;:::o;13704:589::-;13929:3;13951:95;14042:3;14033:6;13951:95;:::i;:::-;13944:102;;14063:95;14154:3;14145:6;14063:95;:::i;:::-;14056:102;;14175:92;14263:3;14254:6;14175:92;:::i;:::-;14168:99;;14284:3;14277:10;;13704:589;;;;;;:::o;14299:379::-;14483:3;14505:147;14648:3;14505:147;:::i;:::-;14498:154;;14669:3;14662:10;;14299:379;;;:::o;14684:222::-;14777:4;14815:2;14804:9;14800:18;14792:26;;14828:71;14896:1;14885:9;14881:17;14872:6;14828:71;:::i;:::-;14684:222;;;;:::o;14912:640::-;15107:4;15145:3;15134:9;15130:19;15122:27;;15159:71;15227:1;15216:9;15212:17;15203:6;15159:71;:::i;:::-;15240:72;15308:2;15297:9;15293:18;15284:6;15240:72;:::i;:::-;15322;15390:2;15379:9;15375:18;15366:6;15322:72;:::i;:::-;15441:9;15435:4;15431:20;15426:2;15415:9;15411:18;15404:48;15469:76;15540:4;15531:6;15469:76;:::i;:::-;15461:84;;14912:640;;;;;;;:::o;15558:210::-;15645:4;15683:2;15672:9;15668:18;15660:26;;15696:65;15758:1;15747:9;15743:17;15734:6;15696:65;:::i;:::-;15558:210;;;;:::o;15774:313::-;15887:4;15925:2;15914:9;15910:18;15902:26;;15974:9;15968:4;15964:20;15960:1;15949:9;15945:17;15938:47;16002:78;16075:4;16066:6;16002:78;:::i;:::-;15994:86;;15774:313;;;;:::o;16093:419::-;16259:4;16297:2;16286:9;16282:18;16274:26;;16346:9;16340:4;16336:20;16332:1;16321:9;16317:17;16310:47;16374:131;16500:4;16374:131;:::i;:::-;16366:139;;16093:419;;;:::o;16518:::-;16684:4;16722:2;16711:9;16707:18;16699:26;;16771:9;16765:4;16761:20;16757:1;16746:9;16742:17;16735:47;16799:131;16925:4;16799:131;:::i;:::-;16791:139;;16518:419;;;:::o;16943:::-;17109:4;17147:2;17136:9;17132:18;17124:26;;17196:9;17190:4;17186:20;17182:1;17171:9;17167:17;17160:47;17224:131;17350:4;17224:131;:::i;:::-;17216:139;;16943:419;;;:::o;17368:::-;17534:4;17572:2;17561:9;17557:18;17549:26;;17621:9;17615:4;17611:20;17607:1;17596:9;17592:17;17585:47;17649:131;17775:4;17649:131;:::i;:::-;17641:139;;17368:419;;;:::o;17793:::-;17959:4;17997:2;17986:9;17982:18;17974:26;;18046:9;18040:4;18036:20;18032:1;18021:9;18017:17;18010:47;18074:131;18200:4;18074:131;:::i;:::-;18066:139;;17793:419;;;:::o;18218:::-;18384:4;18422:2;18411:9;18407:18;18399:26;;18471:9;18465:4;18461:20;18457:1;18446:9;18442:17;18435:47;18499:131;18625:4;18499:131;:::i;:::-;18491:139;;18218:419;;;:::o;18643:::-;18809:4;18847:2;18836:9;18832:18;18824:26;;18896:9;18890:4;18886:20;18882:1;18871:9;18867:17;18860:47;18924:131;19050:4;18924:131;:::i;:::-;18916:139;;18643:419;;;:::o;19068:::-;19234:4;19272:2;19261:9;19257:18;19249:26;;19321:9;19315:4;19311:20;19307:1;19296:9;19292:17;19285:47;19349:131;19475:4;19349:131;:::i;:::-;19341:139;;19068:419;;;:::o;19493:222::-;19586:4;19624:2;19613:9;19609:18;19601:26;;19637:71;19705:1;19694:9;19690:17;19681:6;19637:71;:::i;:::-;19493:222;;;;:::o;19721:129::-;19755:6;19782:20;;:::i;:::-;19772:30;;19811:33;19839:4;19831:6;19811:33;:::i;:::-;19721:129;;;:::o;19856:75::-;19889:6;19922:2;19916:9;19906:19;;19856:75;:::o;19937:307::-;19998:4;20088:18;20080:6;20077:30;20074:56;;;20110:18;;:::i;:::-;20074:56;20148:29;20170:6;20148:29;:::i;:::-;20140:37;;20232:4;20226;20222:15;20214:23;;19937:307;;;:::o;20250:308::-;20312:4;20402:18;20394:6;20391:30;20388:56;;;20424:18;;:::i;:::-;20388:56;20462:29;20484:6;20462:29;:::i;:::-;20454:37;;20546:4;20540;20536:15;20528:23;;20250:308;;;:::o;20564:141::-;20613:4;20636:3;20628:11;;20659:3;20656:1;20649:14;20693:4;20690:1;20680:18;20672:26;;20564:141;;;:::o;20711:98::-;20762:6;20796:5;20790:12;20780:22;;20711:98;;;:::o;20815:99::-;20867:6;20901:5;20895:12;20885:22;;20815:99;;;:::o;20920:168::-;21003:11;21037:6;21032:3;21025:19;21077:4;21072:3;21068:14;21053:29;;20920:168;;;;:::o;21094:147::-;21195:11;21232:3;21217:18;;21094:147;;;;:::o;21247:169::-;21331:11;21365:6;21360:3;21353:19;21405:4;21400:3;21396:14;21381:29;;21247:169;;;;:::o;21422:148::-;21524:11;21561:3;21546:18;;21422:148;;;;:::o;21576:305::-;21616:3;21635:20;21653:1;21635:20;:::i;:::-;21630:25;;21669:20;21687:1;21669:20;:::i;:::-;21664:25;;21823:1;21755:66;21751:74;21748:1;21745:81;21742:107;;;21829:18;;:::i;:::-;21742:107;21873:1;21870;21866:9;21859:16;;21576:305;;;;:::o;21887:348::-;21927:7;21950:20;21968:1;21950:20;:::i;:::-;21945:25;;21984:20;22002:1;21984:20;:::i;:::-;21979:25;;22172:1;22104:66;22100:74;22097:1;22094:81;22089:1;22082:9;22075:17;22071:105;22068:131;;;22179:18;;:::i;:::-;22068:131;22227:1;22224;22220:9;22209:20;;21887:348;;;;:::o;22241:96::-;22278:7;22307:24;22325:5;22307:24;:::i;:::-;22296:35;;22241:96;;;:::o;22343:90::-;22377:7;22420:5;22413:13;22406:21;22395:32;;22343:90;;;:::o;22439:149::-;22475:7;22515:66;22508:5;22504:78;22493:89;;22439:149;;;:::o;22594:126::-;22631:7;22671:42;22664:5;22660:54;22649:65;;22594:126;;;:::o;22726:77::-;22763:7;22792:5;22781:16;;22726:77;;;:::o;22809:154::-;22893:6;22888:3;22883;22870:30;22955:1;22946:6;22941:3;22937:16;22930:27;22809:154;;;:::o;22969:307::-;23037:1;23047:113;23061:6;23058:1;23055:13;23047:113;;;23146:1;23141:3;23137:11;23131:18;23127:1;23122:3;23118:11;23111:39;23083:2;23080:1;23076:10;23071:15;;23047:113;;;23178:6;23175:1;23172:13;23169:101;;;23258:1;23249:6;23244:3;23240:16;23233:27;23169:101;23018:258;22969:307;;;:::o;23282:320::-;23326:6;23363:1;23357:4;23353:12;23343:22;;23410:1;23404:4;23400:12;23431:18;23421:81;;23487:4;23479:6;23475:17;23465:27;;23421:81;23549:2;23541:6;23538:14;23518:18;23515:38;23512:84;;;23568:18;;:::i;:::-;23512:84;23333:269;23282:320;;;:::o;23608:281::-;23691:27;23713:4;23691:27;:::i;:::-;23683:6;23679:40;23821:6;23809:10;23806:22;23785:18;23773:10;23770:34;23767:62;23764:88;;;23832:18;;:::i;:::-;23764:88;23872:10;23868:2;23861:22;23651:238;23608:281;;:::o;23895:180::-;23943:77;23940:1;23933:88;24040:4;24037:1;24030:15;24064:4;24061:1;24054:15;24081:180;24129:77;24126:1;24119:88;24226:4;24223:1;24216:15;24250:4;24247:1;24240:15;24267:180;24315:77;24312:1;24305:88;24412:4;24409:1;24402:15;24436:4;24433:1;24426:15;24453:117;24562:1;24559;24552:12;24576:117;24685:1;24682;24675:12;24699:117;24808:1;24805;24798:12;24822:117;24931:1;24928;24921:12;24945:102;24986:6;25037:2;25033:7;25028:2;25021:5;25017:14;25013:28;25003:38;;24945:102;;;:::o;25053:225::-;25193:34;25189:1;25181:6;25177:14;25170:58;25262:8;25257:2;25249:6;25245:15;25238:33;25053:225;:::o;25284:170::-;25424:22;25420:1;25412:6;25408:14;25401:46;25284:170;:::o;25460:182::-;25600:34;25596:1;25588:6;25584:14;25577:58;25460:182;:::o;25648:173::-;25788:25;25784:1;25776:6;25772:14;25765:49;25648:173;:::o;25827:234::-;25967:34;25963:1;25955:6;25951:14;25944:58;26036:17;26031:2;26023:6;26019:15;26012:42;25827:234;:::o;26067:114::-;;:::o;26187:170::-;26327:22;26323:1;26315:6;26311:14;26304:46;26187:170;:::o;26363:181::-;26503:33;26499:1;26491:6;26487:14;26480:57;26363:181;:::o;26550:169::-;26690:21;26686:1;26678:6;26674:14;26667:45;26550:169;:::o;26725:122::-;26798:24;26816:5;26798:24;:::i;:::-;26791:5;26788:35;26778:63;;26837:1;26834;26827:12;26778:63;26725:122;:::o;26853:116::-;26923:21;26938:5;26923:21;:::i;:::-;26916:5;26913:32;26903:60;;26959:1;26956;26949:12;26903:60;26853:116;:::o;26975:120::-;27047:23;27064:5;27047:23;:::i;:::-;27040:5;27037:34;27027:62;;27085:1;27082;27075:12;27027:62;26975:120;:::o;27101:122::-;27174:24;27192:5;27174:24;:::i;:::-;27167:5;27164:35;27154:63;;27213:1;27210;27203:12;27154:63;27101:122;:::o
Swarm Source
ipfs://cc9cbaf2f9b9910e44c4c61b02113c539d6067300beb8f57be618cff55ad0fd9
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.