ETH Price: $2,899.89 (-10.00%)
Gas: 12 Gwei

Token

MakeItMakeSense (MIMS)
 

Overview

Max Total Supply

5,295 MIMS

Holders

2,653

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 MIMS
0xec1d5cfb0bf18925ab722eeebcb53dc636834e8a
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MakeItMakeSense

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-05
*/

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * 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();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // ==============================
    //            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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev 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);
}

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * 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;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (_addressToUint256(to) == 0) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try 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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: MakeItMakeSense.sol


pragma solidity 0.8.14;




contract MakeItMakeSense is ERC721A, Ownable {
    using Strings for uint256;

    string internal _baseTokenURI;

    uint256 internal _reserved;

    bool public mintActive = true;

    mapping(address => bool) public minted;

    uint256 public constant MAX_SUPPLY = 5295;
    uint256 public constant MAX_RESERVED_AMOUNT = 500;

    constructor(string memory baseURI) ERC721A("MakeItMakeSense", "MIMS") {
        _baseTokenURI = baseURI;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseURI(string memory URI) public onlyOwner {
        _baseTokenURI = URI;
    }

    function flipMintStatus() public onlyOwner {
        mintActive = !mintActive;
    }

    function mint(uint256 amount) external payable {
        require(mintActive, "Mint not active");
        require(totalSupply() + amount <= MAX_SUPPLY, "Would exceed maximum supply of tokens");
        require(!minted[msg.sender], "Wallet already minted one");

        _safeMint(msg.sender, amount);
        minted[msg.sender] = true;
    }

    function reserve(address to, uint256 amount) external onlyOwner {
        require(_reserved + amount <= MAX_RESERVED_AMOUNT, "Would exceed max reserved amount");
        require(totalSupply() + amount <= MAX_SUPPLY, "Would exceed max supply");

        _safeMint(to, amount);
        _reserved += amount;
    }

    function withdraw(address recipient) external onlyOwner {
        (bool success, ) = recipient.call{value: address(this).balance}("");
        require(success, "Withdraw failed");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_RESERVED_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b805460ff191660011790553480156200001e57600080fd5b5060405162001ac038038062001ac08339810160408190526200004191620001e7565b604080518082018252600f81526e4d616b6549744d616b6553656e736560881b6020808301918252835180850190945260048452634d494d5360e01b90840152815191929162000094916002916200012b565b508051620000aa9060039060208401906200012b565b50506000805550620000bc33620000d9565b8051620000d19060099060208401906200012b565b5050620002ff565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013990620002c3565b90600052602060002090601f0160209004810192826200015d5760008555620001a8565b82601f106200017857805160ff1916838001178555620001a8565b82800160010185558215620001a8579182015b82811115620001a85782518255916020019190600101906200018b565b50620001b6929150620001ba565b5090565b5b80821115620001b65760008155600101620001bb565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620001fb57600080fd5b82516001600160401b03808211156200021357600080fd5b818501915085601f8301126200022857600080fd5b8151818111156200023d576200023d620001d1565b604051601f8201601f19908116603f01168101908382118183101715620002685762000268620001d1565b8160405282815288868487010111156200028157600080fd5b600093505b82841015620002a5578484018601518185018701529285019262000286565b82841115620002b75760008684830101525b98975050505050505050565b600181811c90821680620002d857607f821691505b602082108103620002f957634e487b7160e01b600052602260045260246000fd5b50919050565b6117b1806200030f6000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063b01ee4271161008a578063cc47a40b11610064578063cc47a40b1461044a578063e985e9c51461046a578063f09f18e3146104b3578063f2fde38b146104c957600080fd5b8063b01ee427146103f5578063b88d4fde1461040a578063c87b56dd1461042a57600080fd5b806370a082311461035a578063715018a61461037a5780638da5cb5b1461038f57806395d89b41146103ad578063a0712d68146103c2578063a22cb465146103d557600080fd5b806323b872dd1161013e57806342842e0e1161011857806342842e0e146102da57806351cff8d9146102fa57806355f804b31461031a5780636352211e1461033a57600080fd5b806323b872dd1461028a57806325fd90f3146102aa57806332cb6b0c146102c457600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd146102375780631e7269c51461025a575b600080fd5b34801561019257600080fd5b506101a66101a136600461135f565b6104e9565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d061053b565b6040516101b291906113d4565b3480156101e957600080fd5b506101fd6101f83660046113e7565b6105cd565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b5061023561023036600461141c565b610611565b005b34801561024357600080fd5b50600154600054035b6040519081526020016101b2565b34801561026657600080fd5b506101a6610275366004611446565b600c6020526000908152604090205460ff1681565b34801561029657600080fd5b506102356102a5366004611461565b6106e3565b3480156102b657600080fd5b50600b546101a69060ff1681565b3480156102d057600080fd5b5061024c6114af81565b3480156102e657600080fd5b506102356102f5366004611461565b6106f3565b34801561030657600080fd5b50610235610315366004611446565b61070e565b34801561032657600080fd5b50610235610335366004611529565b6107da565b34801561034657600080fd5b506101fd6103553660046113e7565b610817565b34801561036657600080fd5b5061024c610375366004611446565b610822565b34801561038657600080fd5b5061023561086b565b34801561039b57600080fd5b506008546001600160a01b03166101fd565b3480156103b957600080fd5b506101d06108a1565b6102356103d03660046113e7565b6108b0565b3480156103e157600080fd5b506102356103f0366004611572565b6109f2565b34801561040157600080fd5b50610235610a87565b34801561041657600080fd5b506102356104253660046115ae565b610ac5565b34801561043657600080fd5b506101d06104453660046113e7565b610b0f565b34801561045657600080fd5b5061023561046536600461141c565b610b93565b34801561047657600080fd5b506101a661048536600461162a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104bf57600080fd5b5061024c6101f481565b3480156104d557600080fd5b506102356104e4366004611446565b610caa565b60006301ffc9a760e01b6001600160e01b03198316148061051a57506380ac58cd60e01b6001600160e01b03198316145b806105355750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461054a9061165d565b80601f01602080910402602001604051908101604052809291908181526020018280546105769061165d565b80156105c35780601f10610598576101008083540402835291602001916105c3565b820191906000526020600020905b8154815290600101906020018083116105a657829003601f168201915b5050505050905090565b60006105d882610d45565b6105f5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061061c82610d6c565b9050806001600160a01b0316836001600160a01b0316036106505760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106875761066a8133610485565b610687576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6106ee838383610dd3565b505050565b6106ee83838360405180602001604052806000815250610ac5565b6008546001600160a01b031633146107415760405162461bcd60e51b815260040161073890611697565b60405180910390fd5b6000816001600160a01b03164760405160006040518083038185875af1925050503d806000811461078e576040519150601f19603f3d011682016040523d82523d6000602084013e610793565b606091505b50509050806107d65760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b6044820152606401610738565b5050565b6008546001600160a01b031633146108045760405162461bcd60e51b815260040161073890611697565b80516107d69060099060208401906112b0565b600061053582610d6c565b600081600003610845576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108955760405162461bcd60e51b815260040161073890611697565b61089f6000610f8c565b565b60606003805461054a9061165d565b600b5460ff166108f45760405162461bcd60e51b815260206004820152600f60248201526e4d696e74206e6f742061637469766560881b6044820152606401610738565b6114af816109056001546000540390565b61090f91906116cc565b111561096b5760405162461bcd60e51b815260206004820152602560248201527f576f756c6420657863656564206d6178696d756d20737570706c79206f6620746044820152646f6b656e7360d81b6064820152608401610738565b336000908152600c602052604090205460ff16156109cb5760405162461bcd60e51b815260206004820152601960248201527f57616c6c657420616c7265616479206d696e746564206f6e65000000000000006044820152606401610738565b6109d53382610fde565b50336000908152600c60205260409020805460ff19166001179055565b336001600160a01b03831603610a1b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610ab15760405162461bcd60e51b815260040161073890611697565b600b805460ff19811660ff90911615179055565b610ad0848484610dd3565b6001600160a01b0383163b15610b0957610aec84848484610ff8565b610b09576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b1a82610d45565b610b3757604051630a14c4b560e41b815260040160405180910390fd5b6000610b416110e4565b90508051600003610b615760405180602001604052806000815250610b8c565b80610b6b846110f3565b604051602001610b7c9291906116f2565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610bbd5760405162461bcd60e51b815260040161073890611697565b6101f481600a54610bce91906116cc565b1115610c1c5760405162461bcd60e51b815260206004820181905260248201527f576f756c6420657863656564206d617820726573657276656420616d6f756e746044820152606401610738565b6114af81610c2d6001546000540390565b610c3791906116cc565b1115610c855760405162461bcd60e51b815260206004820152601760248201527f576f756c6420657863656564206d617820737570706c790000000000000000006044820152606401610738565b610c8f8282610fde565b80600a6000828254610ca191906116cc565b90915550505050565b6008546001600160a01b03163314610cd45760405162461bcd60e51b815260040161073890611697565b6001600160a01b038116610d395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610738565b610d4281610f8c565b50565b6000805482108015610535575050600090815260046020526040902054600160e01b161590565b600081600054811015610dba5760008181526004602052604081205490600160e01b82169003610db8575b80600003610b8c575060001901600081815260046020526040902054610d97565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610dde82610d6c565b9050836001600160a01b0316816001600160a01b031614610e115760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610e415750610e418633610485565b80610e5457506001600160a01b03821633145b905080610e7457604051632ce44b5f60e11b815260040160405180910390fd5b84600003610e9557604051633a954ecd60e21b815260040160405180910390fd5b8115610eb857600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610f4357600184016000818152600460205260408120549003610f41576000548114610f415760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107d6828260405180602001604052806000815250611142565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061102d903390899088908890600401611721565b6020604051808303816000875af1925050508015611068575060408051601f3d908101601f191682019092526110659181019061175e565b60015b6110c6573d808015611096576040519150601f19603f3d011682016040523d82523d6000602084013e61109b565b606091505b5080516000036110be576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461054a9061165d565b604080516080810191829052607f0190826030600a8206018353600a90045b801561113057600183039250600a81066030018353600a9004611112565b50819003601f19909101908152919050565b6000548360000361116557604051622e076360e81b815260040160405180910390fd5b826000036111865760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1561125b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46112246000878480600101955087610ff8565b611241576040516368d2bf6b60e11b815260040160405180910390fd5b8082106111d957826000541461125657600080fd5b6112a0565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061125c575b506000908155610b099085838684565b8280546112bc9061165d565b90600052602060002090601f0160209004810192826112de5760008555611324565b82601f106112f757805160ff1916838001178555611324565b82800160010185558215611324579182015b82811115611324578251825591602001919060010190611309565b50611330929150611334565b5090565b5b808211156113305760008155600101611335565b6001600160e01b031981168114610d4257600080fd5b60006020828403121561137157600080fd5b8135610b8c81611349565b60005b8381101561139757818101518382015260200161137f565b83811115610b095750506000910152565b600081518084526113c081602086016020860161137c565b601f01601f19169290920160200192915050565b602081526000610b8c60208301846113a8565b6000602082840312156113f957600080fd5b5035919050565b80356001600160a01b038116811461141757600080fd5b919050565b6000806040838503121561142f57600080fd5b61143883611400565b946020939093013593505050565b60006020828403121561145857600080fd5b610b8c82611400565b60008060006060848603121561147657600080fd5b61147f84611400565b925061148d60208501611400565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156114ce576114ce61149d565b604051601f8501601f19908116603f011681019082821181831017156114f6576114f661149d565b8160405280935085815286868601111561150f57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561153b57600080fd5b813567ffffffffffffffff81111561155257600080fd5b8201601f8101841361156357600080fd5b6110dc848235602084016114b3565b6000806040838503121561158557600080fd5b61158e83611400565b9150602083013580151581146115a357600080fd5b809150509250929050565b600080600080608085870312156115c457600080fd5b6115cd85611400565b93506115db60208601611400565b925060408501359150606085013567ffffffffffffffff8111156115fe57600080fd5b8501601f8101871361160f57600080fd5b61161e878235602084016114b3565b91505092959194509250565b6000806040838503121561163d57600080fd5b61164683611400565b915061165460208401611400565b90509250929050565b600181811c9082168061167157607f821691505b60208210810361169157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156116ed57634e487b7160e01b600052601160045260246000fd5b500190565b6000835161170481846020880161137c565b83519083019061171881836020880161137c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611754908301846113a8565b9695505050505050565b60006020828403121561177057600080fd5b8151610b8c8161134956fea26469706673582212201285221e0bbea52d6e91f6a6f8030674a39d32bdc498ec9441738b9740673a6964736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6457754d33587957394c3143777141315a417176506141343545526374706e575253564365714268733371562f00000000000000000000

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d1578063b01ee4271161008a578063cc47a40b11610064578063cc47a40b1461044a578063e985e9c51461046a578063f09f18e3146104b3578063f2fde38b146104c957600080fd5b8063b01ee427146103f5578063b88d4fde1461040a578063c87b56dd1461042a57600080fd5b806370a082311461035a578063715018a61461037a5780638da5cb5b1461038f57806395d89b41146103ad578063a0712d68146103c2578063a22cb465146103d557600080fd5b806323b872dd1161013e57806342842e0e1161011857806342842e0e146102da57806351cff8d9146102fa57806355f804b31461031a5780636352211e1461033a57600080fd5b806323b872dd1461028a57806325fd90f3146102aa57806332cb6b0c146102c457600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b31461021557806318160ddd146102375780631e7269c51461025a575b600080fd5b34801561019257600080fd5b506101a66101a136600461135f565b6104e9565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d061053b565b6040516101b291906113d4565b3480156101e957600080fd5b506101fd6101f83660046113e7565b6105cd565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b5061023561023036600461141c565b610611565b005b34801561024357600080fd5b50600154600054035b6040519081526020016101b2565b34801561026657600080fd5b506101a6610275366004611446565b600c6020526000908152604090205460ff1681565b34801561029657600080fd5b506102356102a5366004611461565b6106e3565b3480156102b657600080fd5b50600b546101a69060ff1681565b3480156102d057600080fd5b5061024c6114af81565b3480156102e657600080fd5b506102356102f5366004611461565b6106f3565b34801561030657600080fd5b50610235610315366004611446565b61070e565b34801561032657600080fd5b50610235610335366004611529565b6107da565b34801561034657600080fd5b506101fd6103553660046113e7565b610817565b34801561036657600080fd5b5061024c610375366004611446565b610822565b34801561038657600080fd5b5061023561086b565b34801561039b57600080fd5b506008546001600160a01b03166101fd565b3480156103b957600080fd5b506101d06108a1565b6102356103d03660046113e7565b6108b0565b3480156103e157600080fd5b506102356103f0366004611572565b6109f2565b34801561040157600080fd5b50610235610a87565b34801561041657600080fd5b506102356104253660046115ae565b610ac5565b34801561043657600080fd5b506101d06104453660046113e7565b610b0f565b34801561045657600080fd5b5061023561046536600461141c565b610b93565b34801561047657600080fd5b506101a661048536600461162a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104bf57600080fd5b5061024c6101f481565b3480156104d557600080fd5b506102356104e4366004611446565b610caa565b60006301ffc9a760e01b6001600160e01b03198316148061051a57506380ac58cd60e01b6001600160e01b03198316145b806105355750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461054a9061165d565b80601f01602080910402602001604051908101604052809291908181526020018280546105769061165d565b80156105c35780601f10610598576101008083540402835291602001916105c3565b820191906000526020600020905b8154815290600101906020018083116105a657829003601f168201915b5050505050905090565b60006105d882610d45565b6105f5576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061061c82610d6c565b9050806001600160a01b0316836001600160a01b0316036106505760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106875761066a8133610485565b610687576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6106ee838383610dd3565b505050565b6106ee83838360405180602001604052806000815250610ac5565b6008546001600160a01b031633146107415760405162461bcd60e51b815260040161073890611697565b60405180910390fd5b6000816001600160a01b03164760405160006040518083038185875af1925050503d806000811461078e576040519150601f19603f3d011682016040523d82523d6000602084013e610793565b606091505b50509050806107d65760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b6044820152606401610738565b5050565b6008546001600160a01b031633146108045760405162461bcd60e51b815260040161073890611697565b80516107d69060099060208401906112b0565b600061053582610d6c565b600081600003610845576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108955760405162461bcd60e51b815260040161073890611697565b61089f6000610f8c565b565b60606003805461054a9061165d565b600b5460ff166108f45760405162461bcd60e51b815260206004820152600f60248201526e4d696e74206e6f742061637469766560881b6044820152606401610738565b6114af816109056001546000540390565b61090f91906116cc565b111561096b5760405162461bcd60e51b815260206004820152602560248201527f576f756c6420657863656564206d6178696d756d20737570706c79206f6620746044820152646f6b656e7360d81b6064820152608401610738565b336000908152600c602052604090205460ff16156109cb5760405162461bcd60e51b815260206004820152601960248201527f57616c6c657420616c7265616479206d696e746564206f6e65000000000000006044820152606401610738565b6109d53382610fde565b50336000908152600c60205260409020805460ff19166001179055565b336001600160a01b03831603610a1b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610ab15760405162461bcd60e51b815260040161073890611697565b600b805460ff19811660ff90911615179055565b610ad0848484610dd3565b6001600160a01b0383163b15610b0957610aec84848484610ff8565b610b09576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b1a82610d45565b610b3757604051630a14c4b560e41b815260040160405180910390fd5b6000610b416110e4565b90508051600003610b615760405180602001604052806000815250610b8c565b80610b6b846110f3565b604051602001610b7c9291906116f2565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610bbd5760405162461bcd60e51b815260040161073890611697565b6101f481600a54610bce91906116cc565b1115610c1c5760405162461bcd60e51b815260206004820181905260248201527f576f756c6420657863656564206d617820726573657276656420616d6f756e746044820152606401610738565b6114af81610c2d6001546000540390565b610c3791906116cc565b1115610c855760405162461bcd60e51b815260206004820152601760248201527f576f756c6420657863656564206d617820737570706c790000000000000000006044820152606401610738565b610c8f8282610fde565b80600a6000828254610ca191906116cc565b90915550505050565b6008546001600160a01b03163314610cd45760405162461bcd60e51b815260040161073890611697565b6001600160a01b038116610d395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610738565b610d4281610f8c565b50565b6000805482108015610535575050600090815260046020526040902054600160e01b161590565b600081600054811015610dba5760008181526004602052604081205490600160e01b82169003610db8575b80600003610b8c575060001901600081815260046020526040902054610d97565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610dde82610d6c565b9050836001600160a01b0316816001600160a01b031614610e115760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b0390811691908616331480610e415750610e418633610485565b80610e5457506001600160a01b03821633145b905080610e7457604051632ce44b5f60e11b815260040160405180910390fd5b84600003610e9557604051633a954ecd60e21b815260040160405180910390fd5b8115610eb857600084815260066020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600560209081526040808320805460001901905592881682528282208054600101905586825260049052908120600160e11b4260a01b8817811790915584169003610f4357600184016000818152600460205260408120549003610f41576000548114610f415760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6107d6828260405180602001604052806000815250611142565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061102d903390899088908890600401611721565b6020604051808303816000875af1925050508015611068575060408051601f3d908101601f191682019092526110659181019061175e565b60015b6110c6573d808015611096576040519150601f19603f3d011682016040523d82523d6000602084013e61109b565b606091505b5080516000036110be576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461054a9061165d565b604080516080810191829052607f0190826030600a8206018353600a90045b801561113057600183039250600a81066030018353600a9004611112565b50819003601f19909101908152919050565b6000548360000361116557604051622e076360e81b815260040160405180910390fd5b826000036111865760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b1561125b575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46112246000878480600101955087610ff8565b611241576040516368d2bf6b60e11b815260040160405180910390fd5b8082106111d957826000541461125657600080fd5b6112a0565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061125c575b506000908155610b099085838684565b8280546112bc9061165d565b90600052602060002090601f0160209004810192826112de5760008555611324565b82601f106112f757805160ff1916838001178555611324565b82800160010185558215611324579182015b82811115611324578251825591602001919060010190611309565b50611330929150611334565b5090565b5b808211156113305760008155600101611335565b6001600160e01b031981168114610d4257600080fd5b60006020828403121561137157600080fd5b8135610b8c81611349565b60005b8381101561139757818101518382015260200161137f565b83811115610b095750506000910152565b600081518084526113c081602086016020860161137c565b601f01601f19169290920160200192915050565b602081526000610b8c60208301846113a8565b6000602082840312156113f957600080fd5b5035919050565b80356001600160a01b038116811461141757600080fd5b919050565b6000806040838503121561142f57600080fd5b61143883611400565b946020939093013593505050565b60006020828403121561145857600080fd5b610b8c82611400565b60008060006060848603121561147657600080fd5b61147f84611400565b925061148d60208501611400565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156114ce576114ce61149d565b604051601f8501601f19908116603f011681019082821181831017156114f6576114f661149d565b8160405280935085815286868601111561150f57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561153b57600080fd5b813567ffffffffffffffff81111561155257600080fd5b8201601f8101841361156357600080fd5b6110dc848235602084016114b3565b6000806040838503121561158557600080fd5b61158e83611400565b9150602083013580151581146115a357600080fd5b809150509250929050565b600080600080608085870312156115c457600080fd5b6115cd85611400565b93506115db60208601611400565b925060408501359150606085013567ffffffffffffffff8111156115fe57600080fd5b8501601f8101871361160f57600080fd5b61161e878235602084016114b3565b91505092959194509250565b6000806040838503121561163d57600080fd5b61164683611400565b915061165460208401611400565b90509250929050565b600181811c9082168061167157607f821691505b60208210810361169157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156116ed57634e487b7160e01b600052601160045260246000fd5b500190565b6000835161170481846020880161137c565b83519083019061171881836020880161137c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611754908301846113a8565b9695505050505050565b60006020828403121561177057600080fd5b8151610b8c8161134956fea26469706673582212201285221e0bbea52d6e91f6a6f8030674a39d32bdc498ec9441738b9740673a6964736f6c634300080e0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6457754d33587957394c3143777141315a417176506141343545526374706e575253564365714268733371562f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmdWuM3XyW9L1CwqA1ZAqvPaA45ERctpnWRSVCeqBhs3qV/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d6457754d33587957394c3143777141315a417176506141
Arg [3] : 343545526374706e575253564365714268733371562f00000000000000000000


Deployed Bytecode Sourcemap

44314:1658:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13147:615;;;;;;;;;;-1:-1:-1;13147:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;13147:615:0;;;;;;;;18170:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20238:204::-;;;;;;;;;;-1:-1:-1;20238:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;20238:204:0;1528:203:1;19698:474:0;;;;;;;;;;-1:-1:-1;19698:474:0;;;;;:::i;:::-;;:::i;:::-;;12201:315;;;;;;;;;;-1:-1:-1;12467:12:0;;12254:7;12451:13;:28;12201:315;;;2319:25:1;;;2307:2;2292:18;12201:315:0;2173:177:1;44511:38:0;;;;;;;;;;-1:-1:-1;44511:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21124:170;;;;;;;;;;-1:-1:-1;21124:170:0;;;;;:::i;:::-;;:::i;44473:29::-;;;;;;;;;;-1:-1:-1;44473:29:0;;;;;;;;44558:41;;;;;;;;;;;;44595:4;44558:41;;21365:185;;;;;;;;;;-1:-1:-1;21365:185:0;;;;;:::i;:::-;;:::i;45781:188::-;;;;;;;;;;-1:-1:-1;45781:188:0;;;;;:::i;:::-;;:::i;44906:94::-;;;;;;;;;;-1:-1:-1;44906:94:0;;;;;:::i;:::-;;:::i;17959:144::-;;;;;;;;;;-1:-1:-1;17959:144:0;;;;;:::i;:::-;;:::i;13826:234::-;;;;;;;;;;-1:-1:-1;13826:234:0;;;;;:::i;:::-;;:::i;43430:103::-;;;;;;;;;;;;;:::i;42779:87::-;;;;;;;;;;-1:-1:-1;42852:6:0;;-1:-1:-1;;;;;42852:6:0;42779:87;;18339:104;;;;;;;;;;;;;:::i;45102:347::-;;;;;;:::i;:::-;;:::i;20514:308::-;;;;;;;;;;-1:-1:-1;20514:308:0;;;;;:::i;:::-;;:::i;45008:86::-;;;;;;;;;;;;;:::i;21621:396::-;;;;;;;;;;-1:-1:-1;21621:396:0;;;;;:::i;:::-;;:::i;18514:318::-;;;;;;;;;;-1:-1:-1;18514:318:0;;;;;:::i;:::-;;:::i;45457:316::-;;;;;;;;;;-1:-1:-1;45457:316:0;;;;;:::i;:::-;;:::i;20893:164::-;;;;;;;;;;-1:-1:-1;20893:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;21014:25:0;;;20990:4;21014:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20893:164;44606:49;;;;;;;;;;;;44652:3;44606:49;;43688:201;;;;;;;;;;-1:-1:-1;43688:201:0;;;;;:::i;:::-;;:::i;13147:615::-;13232:4;-1:-1:-1;;;;;;;;;13532:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;13609:25:0;;;13532:102;:179;;;-1:-1:-1;;;;;;;;;;13686:25:0;;;13532:179;13512:199;13147:615;-1:-1:-1;;13147:615:0:o;18170:100::-;18224:13;18257:5;18250:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18170:100;:::o;20238:204::-;20306:7;20331:16;20339:7;20331;:16::i;:::-;20326:64;;20356:34;;-1:-1:-1;;;20356:34:0;;;;;;;;;;;20326:64;-1:-1:-1;20410:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20410:24:0;;20238:204::o;19698:474::-;19771:13;19803:27;19822:7;19803:18;:27::i;:::-;19771:61;;19853:5;-1:-1:-1;;;;;19847:11:0;:2;-1:-1:-1;;;;;19847:11:0;;19843:48;;19867:24;;-1:-1:-1;;;19867:24:0;;;;;;;;;;;19843:48;36626:10;-1:-1:-1;;;;;19908:28:0;;;19904:175;;19956:44;19973:5;36626:10;20893:164;:::i;19956:44::-;19951:128;;20028:35;;-1:-1:-1;;;20028:35:0;;;;;;;;;;;19951:128;20091:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20091:29:0;-1:-1:-1;;;;;20091:29:0;;;;;;;;;20136:28;;20091:24;;20136:28;;;;;;;19760:412;19698:474;;:::o;21124:170::-;21258:28;21268:4;21274:2;21278:7;21258:9;:28::i;:::-;21124:170;;;:::o;21365:185::-;21503:39;21520:4;21526:2;21530:7;21503:39;;;;;;;;;;;;:16;:39::i;45781:188::-;42852:6;;-1:-1:-1;;;;;42852:6:0;36626:10;42999:23;42991:68;;;;-1:-1:-1;;;42991:68:0;;;;;;;:::i;:::-;;;;;;;;;45849:12:::1;45867:9;-1:-1:-1::0;;;;;45867:14:0::1;45889:21;45867:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45848:67;;;45934:7;45926:35;;;::::0;-1:-1:-1;;;45926:35:0;;6551:2:1;45926:35:0::1;::::0;::::1;6533:21:1::0;6590:2;6570:18;;;6563:30;-1:-1:-1;;;6609:18:1;;;6602:45;6664:18;;45926:35:0::1;6349:339:1::0;45926:35:0::1;45837:132;45781:188:::0;:::o;44906:94::-;42852:6;;-1:-1:-1;;;;;42852:6:0;36626:10;42999:23;42991:68;;;;-1:-1:-1;;;42991:68:0;;;;;;;:::i;:::-;44973:19;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;17959:144::-:0;18023:7;18066:27;18085:7;18066:18;:27::i;13826:234::-;13890:7;13932:5;13942:1;13914:29;13910:70;;13952:28;;-1:-1:-1;;;13952:28:0;;;;;;;;;;;13910:70;-1:-1:-1;;;;;;13998:25:0;;;;;:18;:25;;;;;;9171:13;13998:54;;13826:234::o;43430:103::-;42852:6;;-1:-1:-1;;;;;42852:6:0;36626:10;42999:23;42991:68;;;;-1:-1:-1;;;42991:68:0;;;;;;;:::i;:::-;43495:30:::1;43522:1;43495:18;:30::i;:::-;43430:103::o:0;18339:104::-;18395:13;18428:7;18421:14;;;;;:::i;45102:347::-;45168:10;;;;45160:38;;;;-1:-1:-1;;;45160:38:0;;6895:2:1;45160:38:0;;;6877:21:1;6934:2;6914:18;;;6907:30;-1:-1:-1;;;6953:18:1;;;6946:45;7008:18;;45160:38:0;6693:339:1;45160:38:0;44595:4;45233:6;45217:13;12467:12;;12254:7;12451:13;:28;;12201:315;45217:13;:22;;;;:::i;:::-;:36;;45209:86;;;;-1:-1:-1;;;45209:86:0;;7469:2:1;45209:86:0;;;7451:21:1;7508:2;7488:18;;;7481:30;7547:34;7527:18;;;7520:62;-1:-1:-1;;;7598:18:1;;;7591:35;7643:19;;45209:86:0;7267:401:1;45209:86:0;45322:10;45315:18;;;;:6;:18;;;;;;;;45314:19;45306:57;;;;-1:-1:-1;;;45306:57:0;;7875:2:1;45306:57:0;;;7857:21:1;7914:2;7894:18;;;7887:30;7953:27;7933:18;;;7926:55;7998:18;;45306:57:0;7673:349:1;45306:57:0;45376:29;45386:10;45398:6;45376:9;:29::i;:::-;-1:-1:-1;45423:10:0;45416:18;;;;:6;:18;;;;;:25;;-1:-1:-1;;45416:25:0;45437:4;45416:25;;;45102:347::o;20514:308::-;36626:10;-1:-1:-1;;;;;20613:31:0;;;20609:61;;20653:17;;-1:-1:-1;;;20653:17:0;;;;;;;;;;;20609:61;36626:10;20683:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;20683:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;20683:60:0;;;;;;;;;;20759:55;;540:41:1;;;20683:49:0;;36626:10;20759:55;;513:18:1;20759:55:0;;;;;;;20514:308;;:::o;45008:86::-;42852:6;;-1:-1:-1;;;;;42852:6:0;36626:10;42999:23;42991:68;;;;-1:-1:-1;;;42991:68:0;;;;;;;:::i;:::-;45076:10:::1;::::0;;-1:-1:-1;;45062:24:0;::::1;45076:10;::::0;;::::1;45075:11;45062:24;::::0;;45008:86::o;21621:396::-;21788:28;21798:4;21804:2;21808:7;21788:9;:28::i;:::-;-1:-1:-1;;;;;21831:14:0;;;:19;21827:183;;21870:56;21901:4;21907:2;21911:7;21920:5;21870:30;:56::i;:::-;21865:145;;21954:40;;-1:-1:-1;;;21954:40:0;;;;;;;;;;;21865:145;21621:396;;;;:::o;18514:318::-;18587:13;18618:16;18626:7;18618;:16::i;:::-;18613:59;;18643:29;;-1:-1:-1;;;18643:29:0;;;;;;;;;;;18613:59;18685:21;18709:10;:8;:10::i;:::-;18685:34;;18743:7;18737:21;18762:1;18737:26;:87;;;;;;;;;;;;;;;;;18790:7;18799:18;18809:7;18799:9;:18::i;:::-;18773:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18737:87;18730:94;18514:318;-1:-1:-1;;;18514:318:0:o;45457:316::-;42852:6;;-1:-1:-1;;;;;42852:6:0;36626:10;42999:23;42991:68;;;;-1:-1:-1;;;42991:68:0;;;;;;;:::i;:::-;44652:3:::1;45552:6;45540:9;;:18;;;;:::i;:::-;:41;;45532:86;;;::::0;-1:-1:-1;;;45532:86:0;;8704:2:1;45532:86:0::1;::::0;::::1;8686:21:1::0;;;8723:18;;;8716:30;8782:34;8762:18;;;8755:62;8834:18;;45532:86:0::1;8502:356:1::0;45532:86:0::1;44595:4;45653:6;45637:13;12467:12:::0;;12254:7;12451:13;:28;;12201:315;45637:13:::1;:22;;;;:::i;:::-;:36;;45629:72;;;::::0;-1:-1:-1;;;45629:72:0;;9065:2:1;45629:72:0::1;::::0;::::1;9047:21:1::0;9104:2;9084:18;;;9077:30;9143:25;9123:18;;;9116:53;9186:18;;45629:72:0::1;8863:347:1::0;45629:72:0::1;45714:21;45724:2;45728:6;45714:9;:21::i;:::-;45759:6;45746:9;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;45457:316:0:o;43688:201::-;42852:6;;-1:-1:-1;;;;;42852:6:0;36626:10;42999:23;42991:68;;;;-1:-1:-1;;;42991:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43777:22:0;::::1;43769:73;;;::::0;-1:-1:-1;;;43769:73:0;;9417:2:1;43769:73:0::1;::::0;::::1;9399:21:1::0;9456:2;9436:18;;;9429:30;9495:34;9475:18;;;9468:62;-1:-1:-1;;;9546:18:1;;;9539:36;9592:19;;43769:73:0::1;9215:402:1::0;43769:73:0::1;43853:28;43872:8;43853:18;:28::i;:::-;43688:201:::0;:::o;22272:273::-;22329:4;22419:13;;22409:7;:23;22366:152;;;;-1:-1:-1;;22470:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;22470:43:0;:48;;22272:273::o;15474:1129::-;15541:7;15576;15678:13;;15671:4;:20;15667:869;;;15716:14;15733:23;;;:17;:23;;;;;;;-1:-1:-1;;;15822:23:0;;:28;;15818:699;;16341:113;16348:6;16358:1;16348:11;16341:113;;-1:-1:-1;;;16419:6:0;16401:25;;;;:17;:25;;;;;;16341:113;;15818:699;15693:843;15667:869;16564:31;;-1:-1:-1;;;16564:31:0;;;;;;;;;;;27531:2654;27646:27;27676;27695:7;27676:18;:27::i;:::-;27646:57;;27761:4;-1:-1:-1;;;;;27720:45:0;27736:19;-1:-1:-1;;;;;27720:45:0;;27716:86;;27774:28;;-1:-1:-1;;;27774:28:0;;;;;;;;;;;27716:86;27815:23;27841:24;;;:15;:24;;;;;;-1:-1:-1;;;;;27841:24:0;;;;27815:23;27904:27;;36626:10;27904:27;;:87;;-1:-1:-1;27948:43:0;27965:4;36626:10;20893:164;:::i;27948:43::-;27904:142;;;-1:-1:-1;;;;;;28008:38:0;;36626:10;28008:38;27904:142;27878:169;;28065:17;28060:66;;28091:35;;-1:-1:-1;;;28091:35:0;;;;;;;;;;;28060:66;28159:2;28166:1;28141:26;28137:62;;28176:23;;-1:-1:-1;;;28176:23:0;;;;;;;;;;;28137:62;28343:15;28325:39;28321:103;;28388:24;;;;:15;:24;;;;;28381:31;;-1:-1:-1;;;;;;28381:31:0;;;28321:103;-1:-1:-1;;;;;28791:24:0;;;;;;;:18;:24;;;;;;;;28789:26;;-1:-1:-1;;28789:26:0;;;28860:22;;;;;;;;28858:24;;-1:-1:-1;28858:24:0;;;29153:26;;;:17;:26;;;;;-1:-1:-1;;;29241:15:0;9825:3;29241:41;29199:84;;:128;;29153:174;;;29447:46;;:51;;29443:626;;29551:1;29541:11;;29519:19;29674:30;;;:17;:30;;;;;;:35;;29670:384;;29812:13;;29797:11;:28;29793:242;;29959:30;;;;:17;:30;;;;;:52;;;29793:242;29500:569;29443:626;30116:7;30112:2;-1:-1:-1;;;;;30097:27:0;30106:4;-1:-1:-1;;;;;30097:27:0;;;;;;;;;;;27635:2550;;;27531:2654;;;:::o;44049:191::-;44142:6;;;-1:-1:-1;;;;;44159:17:0;;;-1:-1:-1;;;;;;44159:17:0;;;;;;;44192:40;;44142:6;;;44159:17;44142:6;;44192:40;;44123:16;;44192:40;44112:128;44049:191;:::o;22629:104::-;22698:27;22708:2;22712:8;22698:27;;;;;;;;;;;;:9;:27::i;34008:716::-;34192:88;;-1:-1:-1;;;34192:88:0;;34171:4;;-1:-1:-1;;;;;34192:45:0;;;;;:88;;36626:10;;34259:4;;34265:7;;34274:5;;34192:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34192:88:0;;;;;;;;-1:-1:-1;;34192:88:0;;;;;;;;;;;;:::i;:::-;;;34188:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34475:6;:13;34492:1;34475:18;34471:235;;34521:40;;-1:-1:-1;;;34521:40:0;;;;;;;;;;;34471:235;34664:6;34658:13;34649:6;34645:2;34641:15;34634:38;34188:529;-1:-1:-1;;;;;;34351:64:0;-1:-1:-1;;;34351:64:0;;-1:-1:-1;34188:529:0;34008:716;;;;;;:::o;44784:114::-;44844:13;44877;44870:20;;;;;:::i;36750:1943::-;37219:4;37213:11;;37226:3;37209:21;;37304:17;;;;38000:11;;;37879:5;38132:2;38146;38136:13;;38128:22;38000:11;38115:36;38187:2;38177:13;;37771:680;38206:4;37771:680;;;38380:1;38375:3;38371:11;38364:18;;38431:2;38425:4;38421:13;38417:2;38413:22;38408:3;38400:36;38301:2;38291:13;;37771:680;;;-1:-1:-1;38481:13:0;;;-1:-1:-1;;38596:12:0;;;38656:19;;;38596:12;36750:1943;-1:-1:-1;36750:1943:0:o;23106:2246::-;23229:20;23252:13;23298:2;23305:1;23280:26;23276:58;;23315:19;;-1:-1:-1;;;23315:19:0;;;;;;;;;;;23276:58;23349:8;23361:1;23349:13;23345:44;;23371:18;;-1:-1:-1;;;23371:18:0;;;;;;;;;;;23345:44;-1:-1:-1;;;;;23938:22:0;;;;;;:18;:22;;;;9308:2;23938:22;;;:70;;23976:31;23964:44;;23938:70;;;24251:31;;;:17;:31;;;;;24344:15;9825:3;24344:41;24302:84;;-1:-1:-1;24422:13:0;;10084:3;24407:56;24302:162;24251:213;;:31;;24545:23;;;;24589:14;:19;24585:635;;24629:313;24660:38;;24685:12;;-1:-1:-1;;;;;24660:38:0;;;24677:1;;24660:38;;24677:1;;24660:38;24726:69;24765:1;24769:2;24773:14;;;;;;24789:5;24726:30;:69::i;:::-;24721:174;;24831:40;;-1:-1:-1;;;24831:40:0;;;;;;;;;;;24721:174;24937:3;24922:12;:18;24629:313;;25023:12;25006:13;;:29;25002:43;;25037:8;;;25002:43;24585:635;;;25086:119;25117:40;;25142:14;;;;;-1:-1:-1;;;;;25117:40:0;;;25134:1;;25117:40;;25134:1;;25117:40;25200:3;25185:12;:18;25086:119;;24585:635;-1:-1:-1;25234:13:0;:28;;;25284:60;;25317:2;25321:12;25335:8;25284:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:1;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5393:380::-;5472:1;5468:12;;;;5515;;;5536:61;;5590:4;5582:6;5578:17;5568:27;;5536:61;5643:2;5635:6;5632:14;5612:18;5609:38;5606:161;;5689:10;5684:3;5680:20;5677:1;5670:31;5724:4;5721:1;5714:15;5752:4;5749:1;5742:15;5606:161;;5393:380;;;:::o;5778:356::-;5980:2;5962:21;;;5999:18;;;5992:30;6058:34;6053:2;6038:18;;6031:62;6125:2;6110:18;;5778:356::o;7037:225::-;7077:3;7108:1;7104:6;7101:1;7098:13;7095:136;;;7153:10;7148:3;7144:20;7141:1;7134:31;7188:4;7185:1;7178:15;7216:4;7213:1;7206:15;7095:136;-1:-1:-1;7247:9:1;;7037:225::o;8027:470::-;8206:3;8244:6;8238:13;8260:53;8306:6;8301:3;8294:4;8286:6;8282:17;8260:53;:::i;:::-;8376:13;;8335:16;;;;8398:57;8376:13;8335:16;8432:4;8420:17;;8398:57;:::i;:::-;8471:20;;8027:470;-1:-1:-1;;;;8027:470:1:o;9622:489::-;-1:-1:-1;;;;;9891:15:1;;;9873:34;;9943:15;;9938:2;9923:18;;9916:43;9990:2;9975:18;;9968:34;;;10038:3;10033:2;10018:18;;10011:31;;;9816:4;;10059:46;;10085:19;;10077:6;10059:46;:::i;:::-;10051:54;9622:489;-1:-1:-1;;;;;;9622:489:1:o;10116:249::-;10185:6;10238:2;10226:9;10217:7;10213:23;10209:32;10206:52;;;10254:1;10251;10244:12;10206:52;10286:9;10280:16;10305:30;10329:5;10305:30;:::i

Swarm Source

ipfs://1285221e0bbea52d6e91f6a6f8030674a39d32bdc498ec9441738b9740673a69
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.