ETH Price: $3,154.48 (+1.11%)
Gas: 2 Gwei

Token

CiteriumLand (CL)
 

Overview

Max Total Supply

2,000 CL

Holders

1,970

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CL
0xf8248e41da33091c07bf10674e0b2fc7d3ad775a
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:
CiteriumLand

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 3: citerium.sol
// SPDX-License-Identifier: MIT
//    ______ __          _            __                __
//   / ___(_) /____ ____(_)_ ____ _  / /  ___  ___  ___/ /
//  / /__/ / __/ -_) __/ / // /  ' \/ /__/ _ `/ _ \/ _  / 
//  \___/_/\__/\__/_/ /_/\_,_/_/_/_/____/\_,_/_//_/\_,_/
//
pragma solidity ^0.8.4;

import "./ERC721A.sol";

contract CiteriumLand is ERC721A {
    constructor() ERC721A("CiteriumLand", "CL") {}

    string private baseURI = "https://citerium.art/metadata/"; 
    mapping(address => bool) public hasMinted;
    bool private _swFreeMint = false;
    mapping(address => uint8) private _allowList;
    uint256 public freemint = 0;
    uint256 public freewl = 0;

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

    function setBaseURI(string memory URI) external {
          require(0x0227D61B9633fe4dDf4b9c3Ed9236dD4Ab2cdF2b == msg.sender, "OnlyOwner");
          baseURI = URI;
      }

    function setActivate(uint256 _value) public {
        require(0x0227D61B9633fe4dDf4b9c3Ed9236dD4Ab2cdF2b == msg.sender, "OnlyOwner");
        _swFreeMint = _value==1;
    }

    function mint() external payable {
        require(freemint <= 1999);
        require(_swFreeMint);
        require(hasMinted[msg.sender] == false) ;
        // `_mint`'s second argument now takes in a `quantity`, not a `tokenId`.
        freemint += 1;
        _mint(msg.sender, 1);
        hasMinted[msg.sender] = true;
    }

    function whitelistMint() external payable {
        require(freewl <= 1000);
        require(_swFreeMint);
        require(1 <= _allowList[msg.sender], "Exceeded max available to purchase"); 
        freewl += 1;
        _allowList[msg.sender] -= 1;
        _mint(msg.sender, 1);
    }

    function setAllowList(address[] calldata addresses) public{
        require(0x0227D61B9633fe4dDf4b9c3Ed9236dD4Ab2cdF2b == msg.sender, "OnlyOwner");
        for (uint256 i = 0; i < addresses.length; i++) {
            _allowList[addresses[i]] = 1;
         }
        }

}

File 2 of 3: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

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

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

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

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

File 3 of 3: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

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

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freewl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"uint256","name":"_value","type":"uint256"}],"name":"setActivate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setAllowList","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":[],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280601e81526020017f68747470733a2f2f636974657269756d2e6172742f6d657461646174612f0000815250600890805190602001906200005192919062000146565b506000600a60006101000a81548160ff0219169083151502179055506000600c556000600d553480156200008457600080fd5b506040518060400160405280600c81526020017f436974657269756d4c616e6400000000000000000000000000000000000000008152506040518060400160405280600281526020017f434c00000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010992919062000146565b5080600390805190602001906200012292919062000146565b50620001336200014160201b60201c565b60008190555050506200025b565b600090565b8280546200015490620001f6565b90600052602060002090601f016020900481019282620001785760008555620001c4565b82601f106200019357805160ff1916838001178555620001c4565b82800160010185558215620001c4579182015b82811115620001c3578251825591602001919060010190620001a6565b5b509050620001d39190620001d7565b5090565b5b80821115620001f2576000816000905550600101620001d8565b5090565b600060028204905060018216806200020f57607f821691505b602082108114156200022657620002256200022c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6126f5806200026b6000396000f3fe6080604052600436106101355760003560e01c80636352211e116100ab57806395d89b411161006f57806395d89b41146103f6578063a22cb46514610421578063b88d4fde1461044a578063c87b56dd14610473578063e985e9c5146104b0578063f9cb63ac146104ed57610135565b80636352211e1461031e5780636447c35d1461035b57806366d7c9fd1461038457806370a08231146103af578063804f43cd146103ec57610135565b80631249c58b116100fd5780631249c58b1461023157806318160ddd1461023b57806323b872dd1461026657806338e21cce1461028f57806342842e0e146102cc57806355f804b3146102f557610135565b806301ffc9a71461013a5780630344be371461017757806306fdde03146101a0578063081812fc146101cb578063095ea7b314610208575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c9190611f34565b610518565b60405161016e91906121a5565b60405180910390f35b34801561018357600080fd5b5061019e60048036038101906101999190611fd7565b6105aa565b005b3480156101ac57600080fd5b506101b561064c565b6040516101c291906121c0565b60405180910390f35b3480156101d757600080fd5b506101f260048036038101906101ed9190611fd7565b6106de565b6040516101ff919061213e565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a9190611ea7565b61075d565b005b6102396108a1565b005b34801561024757600080fd5b506102506109a7565b60405161025d9190612222565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190611d91565b6109be565b005b34801561029b57600080fd5b506102b660048036038101906102b19190611d24565b610ce3565b6040516102c391906121a5565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190611d91565b610d03565b005b34801561030157600080fd5b5061031c60048036038101906103179190611f8e565b610d23565b005b34801561032a57600080fd5b5061034560048036038101906103409190611fd7565b610dbf565b604051610352919061213e565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d9190611ee7565b610dd1565b005b34801561039057600080fd5b50610399610ef9565b6040516103a69190612222565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190611d24565b610eff565b6040516103e39190612222565b60405180910390f35b6103f4610fb8565b005b34801561040257600080fd5b5061040b611110565b60405161041891906121c0565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190611e67565b6111a2565b005b34801561045657600080fd5b50610471600480360381019061046c9190611de4565b61131a565b005b34801561047f57600080fd5b5061049a60048036038101906104959190611fd7565b61138d565b6040516104a791906121c0565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190611d51565b61142c565b6040516104e491906121a5565b60405180910390f35b3480156104f957600080fd5b506105026114c0565b60405161050f9190612222565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061057357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105a35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16730227d61b9633fe4ddf4b9c3ed9236dd4ab2cdf2b73ffffffffffffffffffffffffffffffffffffffff161461062c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610623906121e2565b60405180910390fd5b60018114600a60006101000a81548160ff02191690831515021790555050565b60606002805461065b90612454565b80601f016020809104026020016040519081016040528092919081815260200182805461068790612454565b80156106d45780601f106106a9576101008083540402835291602001916106d4565b820191906000526020600020905b8154815290600101906020018083116106b757829003601f168201915b5050505050905090565b60006106e9826114c6565b61071f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076882610dbf565b90508073ffffffffffffffffffffffffffffffffffffffff16610789611525565b73ffffffffffffffffffffffffffffffffffffffff16146107ec576107b5816107b0611525565b61142c565b6107eb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6107cf600c5411156108b257600080fd5b600a60009054906101000a900460ff166108cb57600080fd5b60001515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461092857600080fd5b6001600c600082825461093b9190612307565b9250508190555061094d33600161152d565b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b60006109b16116ea565b6001546000540303905090565b60006109c9826116ef565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a30576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a3c846117bd565b91509150610a528187610a4d611525565b6117e4565b610a9e57610a6786610a62611525565b61142c565b610a9d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b05576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b128686866001611828565b8015610b1d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610beb85610bc788888761182e565b7c020000000000000000000000000000000000000000000000000000000017611856565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c73576000600185019050600060046000838152602001908152602001600020541415610c71576000548114610c70578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cdb8686866001611881565b505050505050565b60096020528060005260406000206000915054906101000a900460ff1681565b610d1e8383836040518060200160405280600081525061131a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16730227d61b9633fe4ddf4b9c3ed9236dd4ab2cdf2b73ffffffffffffffffffffffffffffffffffffffff1614610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c906121e2565b60405180910390fd5b8060089080519060200190610dbb929190611ae2565b5050565b6000610dca826116ef565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16730227d61b9633fe4ddf4b9c3ed9236dd4ab2cdf2b73ffffffffffffffffffffffffffffffffffffffff1614610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a906121e2565b60405180910390fd5b60005b82829050811015610ef4576001600b6000858585818110610e7a57610e7961255e565b5b9050602002016020810190610e8f9190611d24565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080610eec906124b7565b915050610e56565b505050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f67576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6103e8600d541115610fc957600080fd5b600a60009054906101000a900460ff16610fe257600080fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1660011115611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90612202565b60405180910390fd5b6001600d60008282546110889190612307565b925050819055506001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166110eb919061235d565b92506101000a81548160ff021916908360ff16021790555061110e33600161152d565b565b60606003805461111f90612454565b80601f016020809104026020016040519081016040528092919081815260200182805461114b90612454565b80156111985780601f1061116d57610100808354040283529160200191611198565b820191906000526020600020905b81548152906001019060200180831161117b57829003601f168201915b5050505050905090565b6111aa611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061121c611525565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112c9611525565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161130e91906121a5565b60405180910390a35050565b6113258484846109be565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113875761135084848484611887565b611386576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611398826114c6565b6113ce576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113d86119e7565b90506000815114156113f95760405180602001604052806000815250611424565b8061140384611a79565b60405160200161141492919061211a565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b6000816114d16116ea565b111580156114e0575060005482105b801561151e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600080549050600082141561156e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61157b6000848385611828565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506115f2836115e3600086600061182e565b6115ec85611ac9565b17611856565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461169357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611658565b5060008214156116cf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506116e56000848385611881565b505050565b600090565b600080829050806116fe6116ea565b11611786576000548110156117855760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611783575b600081141561177957600460008360019003935083815260200190815260200160002054905061174e565b80925050506117b8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611845868684611ad9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118ad611525565b8786866040518563ffffffff1660e01b81526004016118cf9493929190612159565b602060405180830381600087803b1580156118e957600080fd5b505af192505050801561191a57506040513d601f19601f820116820180604052508101906119179190611f61565b60015b611994573d806000811461194a576040519150601f19603f3d011682016040523d82523d6000602084013e61194f565b606091505b5060008151141561198c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600880546119f690612454565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2290612454565b8015611a6f5780601f10611a4457610100808354040283529160200191611a6f565b820191906000526020600020905b815481529060010190602001808311611a5257829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611ab557600183039250600a81066030018353600a8104905080611ab057611ab5565b611a8a565b508181036020830392508083525050919050565b60006001821460e11b9050919050565b60009392505050565b828054611aee90612454565b90600052602060002090601f016020900481019282611b105760008555611b57565b82601f10611b2957805160ff1916838001178555611b57565b82800160010185558215611b57579182015b82811115611b56578251825591602001919060010190611b3b565b5b509050611b649190611b68565b5090565b5b80821115611b81576000816000905550600101611b69565b5090565b6000611b98611b9384612262565b61223d565b905082815260208101848484011115611bb457611bb36125cb565b5b611bbf848285612412565b509392505050565b6000611bda611bd584612293565b61223d565b905082815260208101848484011115611bf657611bf56125cb565b5b611c01848285612412565b509392505050565b600081359050611c1881612663565b92915050565b60008083601f840112611c3457611c336125c1565b5b8235905067ffffffffffffffff811115611c5157611c506125bc565b5b602083019150836020820283011115611c6d57611c6c6125c6565b5b9250929050565b600081359050611c838161267a565b92915050565b600081359050611c9881612691565b92915050565b600081519050611cad81612691565b92915050565b600082601f830112611cc857611cc76125c1565b5b8135611cd8848260208601611b85565b91505092915050565b600082601f830112611cf657611cf56125c1565b5b8135611d06848260208601611bc7565b91505092915050565b600081359050611d1e816126a8565b92915050565b600060208284031215611d3a57611d396125d5565b5b6000611d4884828501611c09565b91505092915050565b60008060408385031215611d6857611d676125d5565b5b6000611d7685828601611c09565b9250506020611d8785828601611c09565b9150509250929050565b600080600060608486031215611daa57611da96125d5565b5b6000611db886828701611c09565b9350506020611dc986828701611c09565b9250506040611dda86828701611d0f565b9150509250925092565b60008060008060808587031215611dfe57611dfd6125d5565b5b6000611e0c87828801611c09565b9450506020611e1d87828801611c09565b9350506040611e2e87828801611d0f565b925050606085013567ffffffffffffffff811115611e4f57611e4e6125d0565b5b611e5b87828801611cb3565b91505092959194509250565b60008060408385031215611e7e57611e7d6125d5565b5b6000611e8c85828601611c09565b9250506020611e9d85828601611c74565b9150509250929050565b60008060408385031215611ebe57611ebd6125d5565b5b6000611ecc85828601611c09565b9250506020611edd85828601611d0f565b9150509250929050565b60008060208385031215611efe57611efd6125d5565b5b600083013567ffffffffffffffff811115611f1c57611f1b6125d0565b5b611f2885828601611c1e565b92509250509250929050565b600060208284031215611f4a57611f496125d5565b5b6000611f5884828501611c89565b91505092915050565b600060208284031215611f7757611f766125d5565b5b6000611f8584828501611c9e565b91505092915050565b600060208284031215611fa457611fa36125d5565b5b600082013567ffffffffffffffff811115611fc257611fc16125d0565b5b611fce84828501611ce1565b91505092915050565b600060208284031215611fed57611fec6125d5565b5b6000611ffb84828501611d0f565b91505092915050565b61200d81612391565b82525050565b61201c816123a3565b82525050565b600061202d826122c4565b61203781856122da565b9350612047818560208601612421565b612050816125da565b840191505092915050565b6000612066826122cf565b61207081856122eb565b9350612080818560208601612421565b612089816125da565b840191505092915050565b600061209f826122cf565b6120a981856122fc565b93506120b9818560208601612421565b80840191505092915050565b60006120d26009836122eb565b91506120dd826125eb565b602082019050919050565b60006120f56022836122eb565b915061210082612614565b604082019050919050565b612114816123fb565b82525050565b60006121268285612094565b91506121328284612094565b91508190509392505050565b60006020820190506121536000830184612004565b92915050565b600060808201905061216e6000830187612004565b61217b6020830186612004565b612188604083018561210b565b818103606083015261219a8184612022565b905095945050505050565b60006020820190506121ba6000830184612013565b92915050565b600060208201905081810360008301526121da818461205b565b905092915050565b600060208201905081810360008301526121fb816120c5565b9050919050565b6000602082019050818103600083015261221b816120e8565b9050919050565b6000602082019050612237600083018461210b565b92915050565b6000612247612258565b90506122538282612486565b919050565b6000604051905090565b600067ffffffffffffffff82111561227d5761227c61258d565b5b612286826125da565b9050602081019050919050565b600067ffffffffffffffff8211156122ae576122ad61258d565b5b6122b7826125da565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612312826123fb565b915061231d836123fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561235257612351612500565b5b828201905092915050565b600061236882612405565b915061237383612405565b92508282101561238657612385612500565b5b828203905092915050565b600061239c826123db565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561243f578082015181840152602081019050612424565b8381111561244e576000848401525b50505050565b6000600282049050600182168061246c57607f821691505b602082108114156124805761247f61252f565b5b50919050565b61248f826125da565b810181811067ffffffffffffffff821117156124ae576124ad61258d565b5b80604052505050565b60006124c2826123fb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156124f5576124f4612500565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f6e6c794f776e65720000000000000000000000000000000000000000000000600082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b61266c81612391565b811461267757600080fd5b50565b612683816123a3565b811461268e57600080fd5b50565b61269a816123af565b81146126a557600080fd5b50565b6126b1816123fb565b81146126bc57600080fd5b5056fea2646970667358221220fa0096034661f0866dd7d9af064957279c83a87eb4dcbcf895456496f20a1baf64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101355760003560e01c80636352211e116100ab57806395d89b411161006f57806395d89b41146103f6578063a22cb46514610421578063b88d4fde1461044a578063c87b56dd14610473578063e985e9c5146104b0578063f9cb63ac146104ed57610135565b80636352211e1461031e5780636447c35d1461035b57806366d7c9fd1461038457806370a08231146103af578063804f43cd146103ec57610135565b80631249c58b116100fd5780631249c58b1461023157806318160ddd1461023b57806323b872dd1461026657806338e21cce1461028f57806342842e0e146102cc57806355f804b3146102f557610135565b806301ffc9a71461013a5780630344be371461017757806306fdde03146101a0578063081812fc146101cb578063095ea7b314610208575b600080fd5b34801561014657600080fd5b50610161600480360381019061015c9190611f34565b610518565b60405161016e91906121a5565b60405180910390f35b34801561018357600080fd5b5061019e60048036038101906101999190611fd7565b6105aa565b005b3480156101ac57600080fd5b506101b561064c565b6040516101c291906121c0565b60405180910390f35b3480156101d757600080fd5b506101f260048036038101906101ed9190611fd7565b6106de565b6040516101ff919061213e565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a9190611ea7565b61075d565b005b6102396108a1565b005b34801561024757600080fd5b506102506109a7565b60405161025d9190612222565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190611d91565b6109be565b005b34801561029b57600080fd5b506102b660048036038101906102b19190611d24565b610ce3565b6040516102c391906121a5565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190611d91565b610d03565b005b34801561030157600080fd5b5061031c60048036038101906103179190611f8e565b610d23565b005b34801561032a57600080fd5b5061034560048036038101906103409190611fd7565b610dbf565b604051610352919061213e565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d9190611ee7565b610dd1565b005b34801561039057600080fd5b50610399610ef9565b6040516103a69190612222565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190611d24565b610eff565b6040516103e39190612222565b60405180910390f35b6103f4610fb8565b005b34801561040257600080fd5b5061040b611110565b60405161041891906121c0565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190611e67565b6111a2565b005b34801561045657600080fd5b50610471600480360381019061046c9190611de4565b61131a565b005b34801561047f57600080fd5b5061049a60048036038101906104959190611fd7565b61138d565b6040516104a791906121c0565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190611d51565b61142c565b6040516104e491906121a5565b60405180910390f35b3480156104f957600080fd5b506105026114c0565b60405161050f9190612222565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061057357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105a35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16730227d61b9633fe4ddf4b9c3ed9236dd4ab2cdf2b73ffffffffffffffffffffffffffffffffffffffff161461062c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610623906121e2565b60405180910390fd5b60018114600a60006101000a81548160ff02191690831515021790555050565b60606002805461065b90612454565b80601f016020809104026020016040519081016040528092919081815260200182805461068790612454565b80156106d45780601f106106a9576101008083540402835291602001916106d4565b820191906000526020600020905b8154815290600101906020018083116106b757829003601f168201915b5050505050905090565b60006106e9826114c6565b61071f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076882610dbf565b90508073ffffffffffffffffffffffffffffffffffffffff16610789611525565b73ffffffffffffffffffffffffffffffffffffffff16146107ec576107b5816107b0611525565b61142c565b6107eb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6107cf600c5411156108b257600080fd5b600a60009054906101000a900460ff166108cb57600080fd5b60001515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461092857600080fd5b6001600c600082825461093b9190612307565b9250508190555061094d33600161152d565b6001600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b60006109b16116ea565b6001546000540303905090565b60006109c9826116ef565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a30576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a3c846117bd565b91509150610a528187610a4d611525565b6117e4565b610a9e57610a6786610a62611525565b61142c565b610a9d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b05576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b128686866001611828565b8015610b1d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610beb85610bc788888761182e565b7c020000000000000000000000000000000000000000000000000000000017611856565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c73576000600185019050600060046000838152602001908152602001600020541415610c71576000548114610c70578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cdb8686866001611881565b505050505050565b60096020528060005260406000206000915054906101000a900460ff1681565b610d1e8383836040518060200160405280600081525061131a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16730227d61b9633fe4ddf4b9c3ed9236dd4ab2cdf2b73ffffffffffffffffffffffffffffffffffffffff1614610da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9c906121e2565b60405180910390fd5b8060089080519060200190610dbb929190611ae2565b5050565b6000610dca826116ef565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16730227d61b9633fe4ddf4b9c3ed9236dd4ab2cdf2b73ffffffffffffffffffffffffffffffffffffffff1614610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a906121e2565b60405180910390fd5b60005b82829050811015610ef4576001600b6000858585818110610e7a57610e7961255e565b5b9050602002016020810190610e8f9190611d24565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080610eec906124b7565b915050610e56565b505050565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f67576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6103e8600d541115610fc957600080fd5b600a60009054906101000a900460ff16610fe257600080fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1660011115611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90612202565b60405180910390fd5b6001600d60008282546110889190612307565b925050819055506001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166110eb919061235d565b92506101000a81548160ff021916908360ff16021790555061110e33600161152d565b565b60606003805461111f90612454565b80601f016020809104026020016040519081016040528092919081815260200182805461114b90612454565b80156111985780601f1061116d57610100808354040283529160200191611198565b820191906000526020600020905b81548152906001019060200180831161117b57829003601f168201915b5050505050905090565b6111aa611525565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061121c611525565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112c9611525565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161130e91906121a5565b60405180910390a35050565b6113258484846109be565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113875761135084848484611887565b611386576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611398826114c6565b6113ce576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113d86119e7565b90506000815114156113f95760405180602001604052806000815250611424565b8061140384611a79565b60405160200161141492919061211a565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b6000816114d16116ea565b111580156114e0575060005482105b801561151e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600080549050600082141561156e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61157b6000848385611828565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506115f2836115e3600086600061182e565b6115ec85611ac9565b17611856565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461169357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611658565b5060008214156116cf576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506116e56000848385611881565b505050565b600090565b600080829050806116fe6116ea565b11611786576000548110156117855760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611783575b600081141561177957600460008360019003935083815260200190815260200160002054905061174e565b80925050506117b8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611845868684611ad9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026118ad611525565b8786866040518563ffffffff1660e01b81526004016118cf9493929190612159565b602060405180830381600087803b1580156118e957600080fd5b505af192505050801561191a57506040513d601f19601f820116820180604052508101906119179190611f61565b60015b611994573d806000811461194a576040519150601f19603f3d011682016040523d82523d6000602084013e61194f565b606091505b5060008151141561198c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600880546119f690612454565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2290612454565b8015611a6f5780601f10611a4457610100808354040283529160200191611a6f565b820191906000526020600020905b815481529060010190602001808311611a5257829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611ab557600183039250600a81066030018353600a8104905080611ab057611ab5565b611a8a565b508181036020830392508083525050919050565b60006001821460e11b9050919050565b60009392505050565b828054611aee90612454565b90600052602060002090601f016020900481019282611b105760008555611b57565b82601f10611b2957805160ff1916838001178555611b57565b82800160010185558215611b57579182015b82811115611b56578251825591602001919060010190611b3b565b5b509050611b649190611b68565b5090565b5b80821115611b81576000816000905550600101611b69565b5090565b6000611b98611b9384612262565b61223d565b905082815260208101848484011115611bb457611bb36125cb565b5b611bbf848285612412565b509392505050565b6000611bda611bd584612293565b61223d565b905082815260208101848484011115611bf657611bf56125cb565b5b611c01848285612412565b509392505050565b600081359050611c1881612663565b92915050565b60008083601f840112611c3457611c336125c1565b5b8235905067ffffffffffffffff811115611c5157611c506125bc565b5b602083019150836020820283011115611c6d57611c6c6125c6565b5b9250929050565b600081359050611c838161267a565b92915050565b600081359050611c9881612691565b92915050565b600081519050611cad81612691565b92915050565b600082601f830112611cc857611cc76125c1565b5b8135611cd8848260208601611b85565b91505092915050565b600082601f830112611cf657611cf56125c1565b5b8135611d06848260208601611bc7565b91505092915050565b600081359050611d1e816126a8565b92915050565b600060208284031215611d3a57611d396125d5565b5b6000611d4884828501611c09565b91505092915050565b60008060408385031215611d6857611d676125d5565b5b6000611d7685828601611c09565b9250506020611d8785828601611c09565b9150509250929050565b600080600060608486031215611daa57611da96125d5565b5b6000611db886828701611c09565b9350506020611dc986828701611c09565b9250506040611dda86828701611d0f565b9150509250925092565b60008060008060808587031215611dfe57611dfd6125d5565b5b6000611e0c87828801611c09565b9450506020611e1d87828801611c09565b9350506040611e2e87828801611d0f565b925050606085013567ffffffffffffffff811115611e4f57611e4e6125d0565b5b611e5b87828801611cb3565b91505092959194509250565b60008060408385031215611e7e57611e7d6125d5565b5b6000611e8c85828601611c09565b9250506020611e9d85828601611c74565b9150509250929050565b60008060408385031215611ebe57611ebd6125d5565b5b6000611ecc85828601611c09565b9250506020611edd85828601611d0f565b9150509250929050565b60008060208385031215611efe57611efd6125d5565b5b600083013567ffffffffffffffff811115611f1c57611f1b6125d0565b5b611f2885828601611c1e565b92509250509250929050565b600060208284031215611f4a57611f496125d5565b5b6000611f5884828501611c89565b91505092915050565b600060208284031215611f7757611f766125d5565b5b6000611f8584828501611c9e565b91505092915050565b600060208284031215611fa457611fa36125d5565b5b600082013567ffffffffffffffff811115611fc257611fc16125d0565b5b611fce84828501611ce1565b91505092915050565b600060208284031215611fed57611fec6125d5565b5b6000611ffb84828501611d0f565b91505092915050565b61200d81612391565b82525050565b61201c816123a3565b82525050565b600061202d826122c4565b61203781856122da565b9350612047818560208601612421565b612050816125da565b840191505092915050565b6000612066826122cf565b61207081856122eb565b9350612080818560208601612421565b612089816125da565b840191505092915050565b600061209f826122cf565b6120a981856122fc565b93506120b9818560208601612421565b80840191505092915050565b60006120d26009836122eb565b91506120dd826125eb565b602082019050919050565b60006120f56022836122eb565b915061210082612614565b604082019050919050565b612114816123fb565b82525050565b60006121268285612094565b91506121328284612094565b91508190509392505050565b60006020820190506121536000830184612004565b92915050565b600060808201905061216e6000830187612004565b61217b6020830186612004565b612188604083018561210b565b818103606083015261219a8184612022565b905095945050505050565b60006020820190506121ba6000830184612013565b92915050565b600060208201905081810360008301526121da818461205b565b905092915050565b600060208201905081810360008301526121fb816120c5565b9050919050565b6000602082019050818103600083015261221b816120e8565b9050919050565b6000602082019050612237600083018461210b565b92915050565b6000612247612258565b90506122538282612486565b919050565b6000604051905090565b600067ffffffffffffffff82111561227d5761227c61258d565b5b612286826125da565b9050602081019050919050565b600067ffffffffffffffff8211156122ae576122ad61258d565b5b6122b7826125da565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612312826123fb565b915061231d836123fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561235257612351612500565b5b828201905092915050565b600061236882612405565b915061237383612405565b92508282101561238657612385612500565b5b828203905092915050565b600061239c826123db565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561243f578082015181840152602081019050612424565b8381111561244e576000848401525b50505050565b6000600282049050600182168061246c57607f821691505b602082108114156124805761247f61252f565b5b50919050565b61248f826125da565b810181811067ffffffffffffffff821117156124ae576124ad61258d565b5b80604052505050565b60006124c2826123fb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156124f5576124f4612500565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f6e6c794f776e65720000000000000000000000000000000000000000000000600082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b61266c81612391565b811461267757600080fd5b50565b612683816123a3565b811461268e57600080fd5b50565b61269a816123af565b81146126a557600080fd5b50565b6126b1816123fb565b81146126bc57600080fd5b5056fea2646970667358221220fa0096034661f0866dd7d9af064957279c83a87eb4dcbcf895456496f20a1baf64736f6c63430008070033

Deployed Bytecode Sourcemap

329:1763:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9112:630:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;989:175:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9996:98:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16309:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15769:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1172:335:2;;;:::i;:::-;;5851:317:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19924:2756;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;488:41:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22771:179:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;806:175:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11348:150:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1815:272:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;660:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7002:230:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1515:292:2;;;:::i;:::-;;10165:102:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16850:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23531:388;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10368:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17303:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;626:27:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9112:630:0;9197:4;9530:10;9515:25;;:11;:25;;;;:101;;;;9606:10;9591:25;;:11;:25;;;;9515:101;:177;;;;9682:10;9667:25;;:11;:25;;;;9515:177;9496:196;;9112:630;;;:::o;989:175:2:-;1098:10;1052:56;;:42;:56;;;1044:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;1155:1;1147:6;:9;1133:11;;:23;;;;;;;;;;;;;;;;;;989:175;:::o;9996:98:0:-;10050:13;10082:5;10075:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9996:98;:::o;16309:214::-;16385:7;16409:16;16417:7;16409;:16::i;:::-;16404:64;;16434:34;;;;;;;;;;;;;;16404:64;16486:15;:24;16502:7;16486:24;;;;;;;;;;;:30;;;;;;;;;;;;16479:37;;16309:214;;;:::o;15769:390::-;15849:13;15865:16;15873:7;15865;:16::i;:::-;15849:32;;15919:5;15896:28;;:19;:17;:19::i;:::-;:28;;;15892:172;;15943:44;15960:5;15967:19;:17;:19::i;:::-;15943:16;:44::i;:::-;15938:126;;16014:35;;;;;;;;;;;;;;15938:126;15892:172;16107:2;16074:15;:24;16090:7;16074:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16144:7;16140:2;16124:28;;16133:5;16124:28;;;;;;;;;;;;15839:320;15769:390;;:::o;1172:335:2:-;1236:4;1224:8;;:16;;1216:25;;;;;;1260:11;;;;;;;;;;;1252:20;;;;;;1316:5;1291:30;;:9;:21;1301:10;1291:21;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;1283:39;;;;;;1428:1;1416:8;;:13;;;;;;;:::i;:::-;;;;;;;;1440:20;1446:10;1458:1;1440:5;:20::i;:::-;1495:4;1471:9;:21;1481:10;1471:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;1172:335::o;5851:317:0:-;5912:7;6136:15;:13;:15::i;:::-;6121:12;;6105:13;;:28;:46;6098:53;;5851:317;:::o;19924:2756::-;20053:27;20083;20102:7;20083:18;:27::i;:::-;20053:57;;20166:4;20125:45;;20141:19;20125:45;;;20121:86;;20179:28;;;;;;;;;;;;;;20121:86;20219:27;20248:23;20275:35;20302:7;20275:26;:35::i;:::-;20218:92;;;;20407:68;20432:15;20449:4;20455:19;:17;:19::i;:::-;20407:24;:68::i;:::-;20402:179;;20494:43;20511:4;20517:19;:17;:19::i;:::-;20494:16;:43::i;:::-;20489:92;;20546:35;;;;;;;;;;;;;;20489:92;20402:179;20610:1;20596:16;;:2;:16;;;20592:52;;;20621:23;;;;;;;;;;;;;;20592:52;20655:43;20677:4;20683:2;20687:7;20696:1;20655:21;:43::i;:::-;20787:15;20784:157;;;20925:1;20904:19;20897:30;20784:157;21313:18;:24;21332:4;21313:24;;;;;;;;;;;;;;;;21311:26;;;;;;;;;;;;21381:18;:22;21400:2;21381:22;;;;;;;;;;;;;;;;21379:24;;;;;;;;;;;21696:143;21732:2;21780:45;21795:4;21801:2;21805:19;21780:14;:45::i;:::-;2349:8;21752:73;21696:18;:143::i;:::-;21667:17;:26;21685:7;21667:26;;;;;;;;;;;:172;;;;22007:1;2349:8;21956:19;:47;:52;21952:617;;;22028:19;22060:1;22050:7;:11;22028:33;;22215:1;22181:17;:30;22199:11;22181:30;;;;;;;;;;;;:35;22177:378;;;22317:13;;22302:11;:28;22298:239;;22495:19;22462:17;:30;22480:11;22462:30;;;;;;;;;;;:52;;;;22298:239;22177:378;22010:559;21952:617;22613:7;22609:2;22594:27;;22603:4;22594:27;;;;;;;;;;;;22631:42;22652:4;22658:2;22662:7;22671:1;22631:20;:42::i;:::-;20043:2637;;;19924:2756;;;:::o;488:41:2:-;;;;;;;;;;;;;;;;;;;;;;:::o;22771:179:0:-;22904:39;22921:4;22927:2;22931:7;22904:39;;;;;;;;;;;;:16;:39::i;:::-;22771:179;;;:::o;806:175:2:-;921:10;875:56;;:42;:56;;;867:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;968:3;958:7;:13;;;;;;;;;;;;:::i;:::-;;806:175;:::o;11348:150:0:-;11420:7;11462:27;11481:7;11462:18;:27::i;:::-;11439:52;;11348:150;;;:::o;1815:272:2:-;1938:10;1892:56;;:42;:56;;;1884:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;1978:9;1973:103;1997:9;;:16;;1993:1;:20;1973:103;;;2062:1;2035:10;:24;2046:9;;2056:1;2046:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2035:24;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;2015:3;;;;;:::i;:::-;;;;1973:103;;;;1815:272;;:::o;660:25::-;;;;:::o;7002:230:0:-;7074:7;7114:1;7097:19;;:5;:19;;;7093:60;;;7125:28;;;;;;;;;;;;;;7093:60;1317:13;7170:18;:25;7189:5;7170:25;;;;;;;;;;;;;;;;:55;7163:62;;7002:230;;;:::o;1515:292:2:-;1586:4;1576:6;;:14;;1568:23;;;;;;1610:11;;;;;;;;;;;1602:20;;;;;;1646:10;:22;1657:10;1646:22;;;;;;;;;;;;;;;;;;;;;;;;;1641:27;;:1;:27;;1633:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1729:1;1719:6;;:11;;;;;;;:::i;:::-;;;;;;;;1767:1;1741:10;:22;1752:10;1741:22;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;1779:20;1785:10;1797:1;1779:5;:20::i;:::-;1515:292::o;10165:102:0:-;10221:13;10253:7;10246:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10165:102;:::o;16850:303::-;16960:19;:17;:19::i;:::-;16948:31;;:8;:31;;;16944:61;;;16988:17;;;;;;;;;;;;;;16944:61;17068:8;17016:18;:39;17035:19;:17;:19::i;:::-;17016:39;;;;;;;;;;;;;;;:49;17056:8;17016:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17127:8;17091:55;;17106:19;:17;:19::i;:::-;17091:55;;;17137:8;17091:55;;;;;;:::i;:::-;;;;;;;;16850:303;;:::o;23531:388::-;23692:31;23705:4;23711:2;23715:7;23692:12;:31::i;:::-;23755:1;23737:2;:14;;;:19;23733:180;;23775:56;23806:4;23812:2;23816:7;23825:5;23775:30;:56::i;:::-;23770:143;;23858:40;;;;;;;;;;;;;;23770:143;23733:180;23531:388;;;;:::o;10368:313::-;10441:13;10471:16;10479:7;10471;:16::i;:::-;10466:59;;10496:29;;;;;;;;;;;;;;10466:59;10536:21;10560:10;:8;:10::i;:::-;10536:34;;10612:1;10593:7;10587:21;:26;;:87;;;;;;;;;;;;;;;;;10640:7;10649:18;10659:7;10649:9;:18::i;:::-;10623:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10587:87;10580:94;;;10368:313;;;:::o;17303:162::-;17400:4;17423:18;:25;17442:5;17423:25;;;;;;;;;;;;;;;:35;17449:8;17423:35;;;;;;;;;;;;;;;;;;;;;;;;;17416:42;;17303:162;;;;:::o;626:27:2:-;;;;:::o;17714:277:0:-;17779:4;17833:7;17814:15;:13;:15::i;:::-;:26;;:65;;;;;17866:13;;17856:7;:23;17814:65;:151;;;;;17964:1;2075:8;17916:17;:26;17934:7;17916:26;;;;;;;;;;;;:44;:49;17814:151;17795:170;;17714:277;;;:::o;38928:103::-;38988:7;39014:10;39007:17;;38928:103;:::o;27088:2396::-;27160:20;27183:13;;27160:36;;27222:1;27210:8;:13;27206:44;;;27232:18;;;;;;;;;;;;;;27206:44;27261:61;27291:1;27295:2;27299:12;27313:8;27261:21;:61::i;:::-;27794:1;1452:2;27764:1;:26;;27763:32;27751:8;:45;27725:18;:22;27744:2;27725:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28066:136;28102:2;28155:33;28178:1;28182:2;28186:1;28155:14;:33::i;:::-;28122:30;28143:8;28122:20;:30::i;:::-;:66;28066:18;:136::i;:::-;28032:17;:31;28050:12;28032:31;;;;;;;;;;;:170;;;;28217:16;28247:11;28276:8;28261:12;:23;28247:37;;28526:16;28522:2;28518:25;28506:37;;28890:12;28851:8;28811:1;28750:25;28692:1;28632;28606:328;29011:1;28997:12;28993:20;28952:339;29051:3;29042:7;29039:16;28952:339;;29265:7;29255:8;29252:1;29225:25;29222:1;29219;29214:59;29103:1;29094:7;29090:15;29079:26;;28952:339;;;28956:75;29334:1;29322:8;:13;29318:45;;;29344:19;;;;;;;;;;;;;;29318:45;29394:3;29378:13;:19;;;;27505:1903;;29417:60;29446:1;29450:2;29454:12;29468:8;29417:20;:60::i;:::-;27150:2334;27088:2396;;:::o;5383:90::-;5439:7;5383:90;:::o;12472:1249::-;12539:7;12558:12;12573:7;12558:22;;12638:4;12619:15;:13;:15::i;:::-;:23;12615:1042;;12671:13;;12664:4;:20;12660:997;;;12708:14;12725:17;:23;12743:4;12725:23;;;;;;;;;;;;12708:40;;12840:1;2075:8;12812:6;:24;:29;12808:831;;;13467:111;13484:1;13474:6;:11;13467:111;;;13526:17;:25;13544:6;;;;;;;13526:25;;;;;;;;;;;;13517:34;;13467:111;;;13610:6;13603:13;;;;;;12808:831;12686:971;12660:997;12615:1042;13683:31;;;;;;;;;;;;;;12472:1249;;;;:::o;18849:474::-;18948:27;18977:23;19016:38;19057:15;:24;19073:7;19057:24;;;;;;;;;;;19016:65;;19231:18;19208:41;;19287:19;19281:26;19262:45;;19194:123;18849:474;;;:::o;18095:646::-;18240:11;18402:16;18395:5;18391:28;18382:37;;18560:16;18549:9;18545:32;18532:45;;18708:15;18697:9;18694:30;18686:5;18675:9;18672:20;18669:56;18659:66;;18095:646;;;;;:::o;24563:154::-;;;;;:::o;38255:304::-;38386:7;38405:16;2470:3;38431:19;:41;;38405:68;;2470:3;38498:31;38509:4;38515:2;38519:9;38498:10;:31::i;:::-;38490:40;;:62;;38483:69;;;38255:304;;;;;:::o;14254:443::-;14334:14;14499:16;14492:5;14488:28;14479:37;;14674:5;14660:11;14635:23;14631:41;14628:52;14621:5;14618:63;14608:73;;14254:443;;;;:::o;25364:153::-;;;;;:::o;25945:697::-;26103:4;26148:2;26123:45;;;26169:19;:17;:19::i;:::-;26190:4;26196:7;26205:5;26123:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26119:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26418:1;26401:6;:13;:18;26397:229;;;26446:40;;;;;;;;;;;;;;26397:229;26586:6;26580:13;26571:6;26567:2;26563:15;26556:38;26119:517;26289:54;;;26279:64;;;:6;:64;;;;26272:71;;;25945:697;;;;;;:::o;694:104:2:-;746:13;781:7;774:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;694:104;:::o;39128:1548:0:-;39193:17;39612:4;39605;39599:11;39595:22;39588:29;;39702:3;39696:4;39689:17;39805:3;40039:5;40021:419;40047:1;40021:419;;;40086:1;40081:3;40077:11;40070:18;;40254:2;40248:4;40244:13;40240:2;40236:22;40231:3;40223:36;40346:2;40340:4;40336:13;40328:21;;40411:4;40401:25;;40419:5;;40401:25;40021:419;;;40025:21;40477:3;40472;40468:13;40590:4;40585:3;40581:14;40574:21;;40653:6;40648:3;40641:19;39231:1439;;39128:1548;;;:::o;14794:318::-;14864:14;15093:1;15083:8;15080:15;15054:24;15050:46;15040:56;;14794:318;;;:::o;37966:143::-;38099:6;37966:143;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:3:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:327::-;6834:6;6883:2;6871:9;6862:7;6858:23;6854:32;6851:119;;;6889:79;;:::i;:::-;6851:119;7009:1;7034:52;7078:7;7069:6;7058:9;7054:22;7034:52;:::i;:::-;7024:62;;6980:116;6776:327;;;;:::o;7109:349::-;7178:6;7227:2;7215:9;7206:7;7202:23;7198:32;7195:119;;;7233:79;;:::i;:::-;7195:119;7353:1;7378:63;7433:7;7424:6;7413:9;7409:22;7378:63;:::i;:::-;7368:73;;7324:127;7109:349;;;;:::o;7464:509::-;7533:6;7582:2;7570:9;7561:7;7557:23;7553:32;7550:119;;;7588:79;;:::i;:::-;7550:119;7736:1;7725:9;7721:17;7708:31;7766:18;7758:6;7755:30;7752:117;;;7788:79;;:::i;:::-;7752:117;7893:63;7948:7;7939:6;7928:9;7924:22;7893:63;:::i;:::-;7883:73;;7679:287;7464:509;;;;:::o;7979:329::-;8038:6;8087:2;8075:9;8066:7;8062:23;8058:32;8055:119;;;8093:79;;:::i;:::-;8055:119;8213:1;8238:53;8283:7;8274:6;8263:9;8259:22;8238:53;:::i;:::-;8228:63;;8184:117;7979:329;;;;:::o;8314:118::-;8401:24;8419:5;8401:24;:::i;:::-;8396:3;8389:37;8314:118;;:::o;8438:109::-;8519:21;8534:5;8519:21;:::i;:::-;8514:3;8507:34;8438:109;;:::o;8553:360::-;8639:3;8667:38;8699:5;8667:38;:::i;:::-;8721:70;8784:6;8779:3;8721:70;:::i;:::-;8714:77;;8800:52;8845:6;8840:3;8833:4;8826:5;8822:16;8800:52;:::i;:::-;8877:29;8899:6;8877:29;:::i;:::-;8872:3;8868:39;8861:46;;8643:270;8553:360;;;;:::o;8919:364::-;9007:3;9035:39;9068:5;9035:39;:::i;:::-;9090:71;9154:6;9149:3;9090:71;:::i;:::-;9083:78;;9170:52;9215:6;9210:3;9203:4;9196:5;9192:16;9170:52;:::i;:::-;9247:29;9269:6;9247:29;:::i;:::-;9242:3;9238:39;9231:46;;9011:272;8919:364;;;;:::o;9289:377::-;9395:3;9423:39;9456:5;9423:39;:::i;:::-;9478:89;9560:6;9555:3;9478:89;:::i;:::-;9471:96;;9576:52;9621:6;9616:3;9609:4;9602:5;9598:16;9576:52;:::i;:::-;9653:6;9648:3;9644:16;9637:23;;9399:267;9289:377;;;;:::o;9672:365::-;9814:3;9835:66;9899:1;9894:3;9835:66;:::i;:::-;9828:73;;9910:93;9999:3;9910:93;:::i;:::-;10028:2;10023:3;10019:12;10012:19;;9672:365;;;:::o;10043:366::-;10185:3;10206:67;10270:2;10265:3;10206:67;:::i;:::-;10199:74;;10282:93;10371:3;10282:93;:::i;:::-;10400:2;10395:3;10391:12;10384:19;;10043:366;;;:::o;10415:118::-;10502:24;10520:5;10502:24;:::i;:::-;10497:3;10490:37;10415:118;;:::o;10539:435::-;10719:3;10741:95;10832:3;10823:6;10741:95;:::i;:::-;10734:102;;10853:95;10944:3;10935:6;10853:95;:::i;:::-;10846:102;;10965:3;10958:10;;10539:435;;;;;:::o;10980:222::-;11073:4;11111:2;11100:9;11096:18;11088:26;;11124:71;11192:1;11181:9;11177:17;11168:6;11124:71;:::i;:::-;10980:222;;;;:::o;11208:640::-;11403:4;11441:3;11430:9;11426:19;11418:27;;11455:71;11523:1;11512:9;11508:17;11499:6;11455:71;:::i;:::-;11536:72;11604:2;11593:9;11589:18;11580:6;11536:72;:::i;:::-;11618;11686:2;11675:9;11671:18;11662:6;11618:72;:::i;:::-;11737:9;11731:4;11727:20;11722:2;11711:9;11707:18;11700:48;11765:76;11836:4;11827:6;11765:76;:::i;:::-;11757:84;;11208:640;;;;;;;:::o;11854:210::-;11941:4;11979:2;11968:9;11964:18;11956:26;;11992:65;12054:1;12043:9;12039:17;12030:6;11992:65;:::i;:::-;11854:210;;;;:::o;12070:313::-;12183:4;12221:2;12210:9;12206:18;12198:26;;12270:9;12264:4;12260:20;12256:1;12245:9;12241:17;12234:47;12298:78;12371:4;12362:6;12298:78;:::i;:::-;12290:86;;12070:313;;;;:::o;12389:419::-;12555:4;12593:2;12582:9;12578:18;12570:26;;12642:9;12636:4;12632:20;12628:1;12617:9;12613:17;12606:47;12670:131;12796:4;12670:131;:::i;:::-;12662:139;;12389:419;;;:::o;12814:::-;12980:4;13018:2;13007:9;13003:18;12995:26;;13067:9;13061:4;13057:20;13053:1;13042:9;13038:17;13031:47;13095:131;13221:4;13095:131;:::i;:::-;13087:139;;12814:419;;;:::o;13239:222::-;13332:4;13370:2;13359:9;13355:18;13347:26;;13383:71;13451:1;13440:9;13436:17;13427:6;13383:71;:::i;:::-;13239:222;;;;:::o;13467:129::-;13501:6;13528:20;;:::i;:::-;13518:30;;13557:33;13585:4;13577:6;13557:33;:::i;:::-;13467:129;;;:::o;13602:75::-;13635:6;13668:2;13662:9;13652:19;;13602:75;:::o;13683:307::-;13744:4;13834:18;13826:6;13823:30;13820:56;;;13856:18;;:::i;:::-;13820:56;13894:29;13916:6;13894:29;:::i;:::-;13886:37;;13978:4;13972;13968:15;13960:23;;13683:307;;;:::o;13996:308::-;14058:4;14148:18;14140:6;14137:30;14134:56;;;14170:18;;:::i;:::-;14134:56;14208:29;14230:6;14208:29;:::i;:::-;14200:37;;14292:4;14286;14282:15;14274:23;;13996:308;;;:::o;14310:98::-;14361:6;14395:5;14389:12;14379:22;;14310:98;;;:::o;14414:99::-;14466:6;14500:5;14494:12;14484:22;;14414:99;;;:::o;14519:168::-;14602:11;14636:6;14631:3;14624:19;14676:4;14671:3;14667:14;14652:29;;14519:168;;;;:::o;14693:169::-;14777:11;14811:6;14806:3;14799:19;14851:4;14846:3;14842:14;14827:29;;14693:169;;;;:::o;14868:148::-;14970:11;15007:3;14992:18;;14868:148;;;;:::o;15022:305::-;15062:3;15081:20;15099:1;15081:20;:::i;:::-;15076:25;;15115:20;15133:1;15115:20;:::i;:::-;15110:25;;15269:1;15201:66;15197:74;15194:1;15191:81;15188:107;;;15275:18;;:::i;:::-;15188:107;15319:1;15316;15312:9;15305:16;;15022:305;;;;:::o;15333:185::-;15371:4;15391:18;15407:1;15391:18;:::i;:::-;15386:23;;15423:18;15439:1;15423:18;:::i;:::-;15418:23;;15460:1;15457;15454:8;15451:34;;;15465:18;;:::i;:::-;15451:34;15510:1;15507;15503:9;15495:17;;15333:185;;;;:::o;15524:96::-;15561:7;15590:24;15608:5;15590:24;:::i;:::-;15579:35;;15524:96;;;:::o;15626:90::-;15660:7;15703:5;15696:13;15689:21;15678:32;;15626:90;;;:::o;15722:149::-;15758:7;15798:66;15791:5;15787:78;15776:89;;15722:149;;;:::o;15877:126::-;15914:7;15954:42;15947:5;15943:54;15932:65;;15877:126;;;:::o;16009:77::-;16046:7;16075:5;16064:16;;16009:77;;;:::o;16092:86::-;16127:7;16167:4;16160:5;16156:16;16145:27;;16092:86;;;:::o;16184:154::-;16268:6;16263:3;16258;16245:30;16330:1;16321:6;16316:3;16312:16;16305:27;16184:154;;;:::o;16344:307::-;16412:1;16422:113;16436:6;16433:1;16430:13;16422:113;;;16521:1;16516:3;16512:11;16506:18;16502:1;16497:3;16493:11;16486:39;16458:2;16455:1;16451:10;16446:15;;16422:113;;;16553:6;16550:1;16547:13;16544:101;;;16633:1;16624:6;16619:3;16615:16;16608:27;16544:101;16393:258;16344:307;;;:::o;16657:320::-;16701:6;16738:1;16732:4;16728:12;16718:22;;16785:1;16779:4;16775:12;16806:18;16796:81;;16862:4;16854:6;16850:17;16840:27;;16796:81;16924:2;16916:6;16913:14;16893:18;16890:38;16887:84;;;16943:18;;:::i;:::-;16887:84;16708:269;16657:320;;;:::o;16983:281::-;17066:27;17088:4;17066:27;:::i;:::-;17058:6;17054:40;17196:6;17184:10;17181:22;17160:18;17148:10;17145:34;17142:62;17139:88;;;17207:18;;:::i;:::-;17139:88;17247:10;17243:2;17236:22;17026:238;16983:281;;:::o;17270:233::-;17309:3;17332:24;17350:5;17332:24;:::i;:::-;17323:33;;17378:66;17371:5;17368:77;17365:103;;;17448:18;;:::i;:::-;17365:103;17495:1;17488:5;17484:13;17477:20;;17270:233;;;:::o;17509:180::-;17557:77;17554:1;17547:88;17654:4;17651:1;17644:15;17678:4;17675:1;17668:15;17695:180;17743:77;17740:1;17733:88;17840:4;17837:1;17830:15;17864:4;17861:1;17854:15;17881:180;17929:77;17926:1;17919:88;18026:4;18023:1;18016:15;18050:4;18047:1;18040:15;18067:180;18115:77;18112:1;18105:88;18212:4;18209:1;18202:15;18236:4;18233:1;18226:15;18253:117;18362:1;18359;18352:12;18376:117;18485:1;18482;18475:12;18499:117;18608:1;18605;18598:12;18622:117;18731:1;18728;18721:12;18745:117;18854:1;18851;18844:12;18868:117;18977:1;18974;18967:12;18991:102;19032:6;19083:2;19079:7;19074:2;19067:5;19063:14;19059:28;19049:38;;18991:102;;;:::o;19099:159::-;19239:11;19235:1;19227:6;19223:14;19216:35;19099:159;:::o;19264:221::-;19404:34;19400:1;19392:6;19388:14;19381:58;19473:4;19468:2;19460:6;19456:15;19449:29;19264:221;:::o;19491:122::-;19564:24;19582:5;19564:24;:::i;:::-;19557:5;19554:35;19544:63;;19603:1;19600;19593:12;19544:63;19491:122;:::o;19619:116::-;19689:21;19704:5;19689:21;:::i;:::-;19682:5;19679:32;19669:60;;19725:1;19722;19715:12;19669:60;19619:116;:::o;19741:120::-;19813:23;19830:5;19813:23;:::i;:::-;19806:5;19803:34;19793:62;;19851:1;19848;19841:12;19793:62;19741:120;:::o;19867:122::-;19940:24;19958:5;19940:24;:::i;:::-;19933:5;19930:35;19920:63;;19979:1;19976;19969:12;19920:63;19867:122;:::o

Swarm Source

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