ETH Price: $2,546.79 (+5.57%)

Token

AI Kaws Trolls (AIKT)
 

Overview

Max Total Supply

111 AIKT

Holders

105

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 AIKT
0x27cf4979f7a305ea2669753f850e2d281ed74151
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:
aikawstrolls

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-17
*/

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: erc721a/contracts/IERC721A.sol


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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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]`.
        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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: contracts/aikawstrolls.sol



pragma solidity ^0.8.0;




contract aikawstrolls is ERC721A, Ownable {

    string public baseURI = "ipfs://QmaNLnj52hqvPRM6cxfYmh67D9PYQPwNaw992myNrFfr5q/";
    string public contractURI = "";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX = 2;
    uint256 public constant FREE_MAX_SUPPLY = 100;
    uint256 public constant MAX_SUPPLY = 666;
    uint256 public constant MAX_PER_WALLET = 2;
    uint256 public price = 0.005 ether;

    bool public paused = true;
    bool hasSetOS = false;

    constructor() ERC721A("AI Kaws Trolls", "AIKT") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        uint256 ownerTokenCount = balanceOf(_caller);
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(ownerTokenCount < MAX_PER_WALLET, "Exceeds max token count per wallet");

        if(FREE_MAX_SUPPLY >= totalSupply()){
            require(MAX_PER_TX >= _amount , "Excess max per free tx");
        }else{
            require(MAX_PER_TX >= _amount , "Excess max per paid tx");
            require(_amount * price == msg.value, "Invalid funds provided");
        }

        _safeMint(_caller, _amount);
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function setupOS() external onlyOwner {
        require(!hasSetOS, "Already setup");
        hasSetOS = true;
        _safeMint(_msgSender(), 1);
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052603660808181529062001e8660a0398051620000299160099160209091019062000144565b506040805160208101918290526000908190526200004a91600a9162000144565b506611c37937e08000600b55600c805461ffff191660011790553480156200007157600080fd5b50604080518082018252600e81526d4149204b6177732054726f6c6c7360901b602080830191825283518085019094526004845263105252d560e21b908401528151919291620000c49160029162000144565b508051620000da90600390602084019062000144565b50506000805550620000ec33620000f2565b62000227565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015290620001ea565b90600052602060002090601f016020900481019282620001765760008555620001c1565b82601f106200019157805160ff1916838001178555620001c1565b82800160010185558215620001c1579182015b82811115620001c1578251825591602001919060010190620001a4565b50620001cf929150620001d3565b5090565b5b80821115620001cf5760008155600101620001d4565b600181811c90821680620001ff57607f821691505b602082108114156200022157634e487b7160e01b600052602260045260246000fd5b50919050565b611c4f80620002376000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063cd7c03261161006f578063cd7c032614610546578063e8a3d4851461056e578063e985e9c514610583578063f2fde38b146105a3578063f43a22dc146102c457600080fd5b8063a22cb465146104b5578063b88d4fde146104d5578063c6682862146104f5578063c87b56dd1461052657600080fd5b8063938e3d7b116100dc578063938e3d7b1461045757806395d89b4114610477578063a035b1fe1461048c578063a0712d68146104a257600080fd5b806370a08231146103ef578063715018a61461040f5780638069876d146104245780638da5cb5b1461043957600080fd5b806332cb6b0c116101855780635c975abb116101545780635c975abb1461038b5780636352211e146103a5578063698982ba146103c55780636c0360eb146103da57600080fd5b806332cb6b0c146103205780633ccfd60b1461033657806342842e0e1461034b57806355f804b31461036b57600080fd5b8063095ea7b3116101c1578063095ea7b3146102a45780630f2cdd6c146102c457806318160ddd146102e757806323b872dd1461030057600080fd5b806301ffc9a7146101f357806302329a291461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046118a6565b6105c3565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061024861024336600461188b565b610615565b005b34801561025657600080fd5b5061025f610630565b60405161021f9190611a8b565b34801561027857600080fd5b5061028c610287366004611946565b6106c2565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf36600461185f565b610706565b3480156102d057600080fd5b506102d9600281565b60405190815260200161021f565b3480156102f357600080fd5b50600154600054036102d9565b34801561030c57600080fd5b5061024861031b366004611769565b6107a6565b34801561032c57600080fd5b506102d961029a81565b34801561034257600080fd5b50610248610937565b34801561035757600080fd5b50610248610366366004611769565b6109d3565b34801561037757600080fd5b506102486103863660046118fd565b6109f3565b34801561039757600080fd5b50600c546102139060ff1681565b3480156103b157600080fd5b5061028c6103c0366004611946565b610a0e565b3480156103d157600080fd5b50610248610a19565b3480156103e657600080fd5b5061025f610a8b565b3480156103fb57600080fd5b506102d961040a366004611713565b610b19565b34801561041b57600080fd5b50610248610b68565b34801561043057600080fd5b506102d9606481565b34801561044557600080fd5b506008546001600160a01b031661028c565b34801561046357600080fd5b506102486104723660046118fd565b610b7a565b34801561048357600080fd5b5061025f610b95565b34801561049857600080fd5b506102d9600b5481565b6102486104b0366004611946565b610ba4565b3480156104c157600080fd5b506102486104d036600461182a565b610e32565b3480156104e157600080fd5b506102486104f03660046117aa565b610ec8565b34801561050157600080fd5b5061025f60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561053257600080fd5b5061025f610541366004611946565b610f12565b34801561055257600080fd5b5061028c73a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561057a57600080fd5b5061025f610fdc565b34801561058f57600080fd5b5061021361059e366004611730565b610fe9565b3480156105af57600080fd5b506102486105be366004611713565b6110c8565b60006301ffc9a760e01b6001600160e01b0319831614806105f457506380ac58cd60e01b6001600160e01b03198316145b8061060f5750635b5e139f60e01b6001600160e01b03198316145b92915050565b61061d611141565b600c805460ff1916911515919091179055565b60606002805461063f90611b2c565b80601f016020809104026020016040519081016040528092919081815260200182805461066b90611b2c565b80156106b85780601f1061068d576101008083540402835291602001916106b8565b820191906000526020600020905b81548152906001019060200180831161069b57829003601f168201915b5050505050905090565b60006106cd8261119b565b6106ea576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061071182610a0e565b9050336001600160a01b0382161461074a5761072d8133610fe9565b61074a576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006107b1826111c2565b9050836001600160a01b0316816001600160a01b0316146107e45760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610831576108148633610fe9565b61083157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661085857604051633a954ecd60e21b815260040160405180910390fd5b801561086357600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b83166108ee57600184016000818152600460205260409020546108ec5760005481146108ec5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b61093f611141565b6040514790600090339083908381818185875af1925050503d8060008114610983576040519150601f19603f3d011682016040523d82523d6000602084013e610988565b606091505b50509050806109cf5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064015b60405180910390fd5b5050565b6109ee83838360405180602001604052806000815250610ec8565b505050565b6109fb611141565b80516109cf9060099060208401906115ef565b600061060f826111c2565b610a21611141565b600c54610100900460ff1615610a695760405162461bcd60e51b815260206004820152600d60248201526c0416c726561647920736574757609c1b60448201526064016109c6565b600c805461ff001916610100179055610a89610a823390565b600161122a565b565b60098054610a9890611b2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac490611b2c565b8015610b115780601f10610ae657610100808354040283529160200191610b11565b820191906000526020600020905b815481529060010190602001808311610af457829003601f168201915b505050505081565b60006001600160a01b038216610b42576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b70611141565b610a896000611244565b610b82611141565b80516109cf90600a9060208401906115ef565b60606003805461063f90611b2c565b336000610bb082610b19565b600c5490915060ff1615610bef5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064016109c6565b82610bfd6001546000540390565b610c079190611a9e565b61029a1015610c4d5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016109c6565b60008311610c8a5760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b60448201526064016109c6565b326001600160a01b03831614610cd15760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016109c6565b60028110610d2c5760405162461bcd60e51b815260206004820152602260248201527f45786365656473206d617820746f6b656e20636f756e74207065722077616c6c604482015261195d60f21b60648201526084016109c6565b60015460005403606410610d89578260021015610d845760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b60448201526064016109c6565b610e28565b8260021015610dd35760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b60448201526064016109c6565b34600b5484610de29190611aca565b14610e285760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016109c6565b6109ee828461122a565b6001600160a01b038216331415610e5c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ed38484846107a6565b6001600160a01b0383163b15610f0c57610eef84848484611296565b610f0c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f1d8261119b565b610f615760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016109c6565b600060098054610f7090611b2c565b905011610f8c576040518060200160405280600081525061060f565b6009610f978361138d565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610fc7939291906119a7565b60405160208183030381529060405292915050565b600a8054610a9890611b2c565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b15801561104557600080fd5b505afa158015611059573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107d91906118e0565b6001600160a01b0316141561109657600191505061060f565b6001600160a01b0380851660009081526007602090815260408083209387168352929052205460ff165b949350505050565b6110d0611141565b6001600160a01b0381166111355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c6565b61113e81611244565b50565b6008546001600160a01b03163314610a895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c6565b600080548210801561060f575050600090815260046020526040902054600160e01b161590565b60008160005481101561121157600081815260046020526040902054600160e01b811661120f575b806112085750600019016000818152600460205260409020546111ea565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6109cf82826040518060200160405280600081525061148b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112cb903390899088908890600401611a58565b602060405180830381600087803b1580156112e557600080fd5b505af1925050508015611315575060408051601f3d908101601f19168201909252611312918101906118c3565b60015b611370573d808015611343576040519150601f19603f3d011682016040523d82523d6000602084013e611348565b606091505b508051611368576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060816113b15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113db57806113c581611b67565b91506113d49050600a83611ab6565b91506113b5565b60008167ffffffffffffffff8111156113f6576113f6611bd8565b6040519080825280601f01601f191660200182016040528015611420576020820181803683370190505b5090505b84156110c057611435600183611ae9565b9150611442600a86611b82565b61144d906030611a9e565b60f81b81838151811061146257611462611bc2565b60200101906001600160f81b031916908160001a905350611484600a86611ab6565b9450611424565b61149583836114f8565b6001600160a01b0383163b156109ee576000548281035b6114bf6000868380600101945086611296565b6114dc576040516368d2bf6b60e11b815260040160405180910390fd5b8181106114ac5781600054146114f157600080fd5b5050505050565b600054816115195760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146115c857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611590565b50816115e657604051622e076360e81b815260040160405180910390fd5b60005550505050565b8280546115fb90611b2c565b90600052602060002090601f01602090048101928261161d5760008555611663565b82601f1061163657805160ff1916838001178555611663565b82800160010185558215611663579182015b82811115611663578251825591602001919060010190611648565b5061166f929150611673565b5090565b5b8082111561166f5760008155600101611674565b600067ffffffffffffffff808411156116a3576116a3611bd8565b604051601f8501601f19908116603f011681019082821181831017156116cb576116cb611bd8565b816040528093508581528686860111156116e457600080fd5b858560208301376000602087830101525050509392505050565b8035801515811461170e57600080fd5b919050565b60006020828403121561172557600080fd5b813561120881611bee565b6000806040838503121561174357600080fd5b823561174e81611bee565b9150602083013561175e81611bee565b809150509250929050565b60008060006060848603121561177e57600080fd5b833561178981611bee565b9250602084013561179981611bee565b929592945050506040919091013590565b600080600080608085870312156117c057600080fd5b84356117cb81611bee565b935060208501356117db81611bee565b925060408501359150606085013567ffffffffffffffff8111156117fe57600080fd5b8501601f8101871361180f57600080fd5b61181e87823560208401611688565b91505092959194509250565b6000806040838503121561183d57600080fd5b823561184881611bee565b9150611856602084016116fe565b90509250929050565b6000806040838503121561187257600080fd5b823561187d81611bee565b946020939093013593505050565b60006020828403121561189d57600080fd5b611208826116fe565b6000602082840312156118b857600080fd5b813561120881611c03565b6000602082840312156118d557600080fd5b815161120881611c03565b6000602082840312156118f257600080fd5b815161120881611bee565b60006020828403121561190f57600080fd5b813567ffffffffffffffff81111561192657600080fd5b8201601f8101841361193757600080fd5b6110c084823560208401611688565b60006020828403121561195857600080fd5b5035919050565b60008151808452611977816020860160208601611b00565b601f01601f19169290920160200192915050565b6000815161199d818560208601611b00565b9290920192915050565b600080855481600182811c9150808316806119c357607f831692505b60208084108214156119e357634e487b7160e01b86526022600452602486fd5b8180156119f75760018114611a0857611a35565b60ff19861689528489019650611a35565b60008c81526020902060005b86811015611a2d5781548b820152908501908301611a14565b505084890196505b505050505050611a4e611a48828761198b565b8561198b565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a4e9083018461195f565b602081526000611208602083018461195f565b60008219821115611ab157611ab1611b96565b500190565b600082611ac557611ac5611bac565b500490565b6000816000190483118215151615611ae457611ae4611b96565b500290565b600082821015611afb57611afb611b96565b500390565b60005b83811015611b1b578181015183820152602001611b03565b83811115610f0c5750506000910152565b600181811c90821680611b4057607f821691505b60208210811415611b6157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b7b57611b7b611b96565b5060010190565b600082611b9157611b91611bac565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461113e57600080fd5b6001600160e01b03198116811461113e57600080fdfea2646970667358221220ec5492dfb5d8b54ded8c3c66673363f22c2cc55ac3005d970b5eb69061e7d9d964736f6c63430008070033697066733a2f2f516d614e4c6e6a353268717650524d36637866596d683637443950595150774e61773939326d794e7246667235712f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063a22cb465116100a0578063cd7c03261161006f578063cd7c032614610546578063e8a3d4851461056e578063e985e9c514610583578063f2fde38b146105a3578063f43a22dc146102c457600080fd5b8063a22cb465146104b5578063b88d4fde146104d5578063c6682862146104f5578063c87b56dd1461052657600080fd5b8063938e3d7b116100dc578063938e3d7b1461045757806395d89b4114610477578063a035b1fe1461048c578063a0712d68146104a257600080fd5b806370a08231146103ef578063715018a61461040f5780638069876d146104245780638da5cb5b1461043957600080fd5b806332cb6b0c116101855780635c975abb116101545780635c975abb1461038b5780636352211e146103a5578063698982ba146103c55780636c0360eb146103da57600080fd5b806332cb6b0c146103205780633ccfd60b1461033657806342842e0e1461034b57806355f804b31461036b57600080fd5b8063095ea7b3116101c1578063095ea7b3146102a45780630f2cdd6c146102c457806318160ddd146102e757806323b872dd1461030057600080fd5b806301ffc9a7146101f357806302329a291461022857806306fdde031461024a578063081812fc1461026c575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046118a6565b6105c3565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061024861024336600461188b565b610615565b005b34801561025657600080fd5b5061025f610630565b60405161021f9190611a8b565b34801561027857600080fd5b5061028c610287366004611946565b6106c2565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf36600461185f565b610706565b3480156102d057600080fd5b506102d9600281565b60405190815260200161021f565b3480156102f357600080fd5b50600154600054036102d9565b34801561030c57600080fd5b5061024861031b366004611769565b6107a6565b34801561032c57600080fd5b506102d961029a81565b34801561034257600080fd5b50610248610937565b34801561035757600080fd5b50610248610366366004611769565b6109d3565b34801561037757600080fd5b506102486103863660046118fd565b6109f3565b34801561039757600080fd5b50600c546102139060ff1681565b3480156103b157600080fd5b5061028c6103c0366004611946565b610a0e565b3480156103d157600080fd5b50610248610a19565b3480156103e657600080fd5b5061025f610a8b565b3480156103fb57600080fd5b506102d961040a366004611713565b610b19565b34801561041b57600080fd5b50610248610b68565b34801561043057600080fd5b506102d9606481565b34801561044557600080fd5b506008546001600160a01b031661028c565b34801561046357600080fd5b506102486104723660046118fd565b610b7a565b34801561048357600080fd5b5061025f610b95565b34801561049857600080fd5b506102d9600b5481565b6102486104b0366004611946565b610ba4565b3480156104c157600080fd5b506102486104d036600461182a565b610e32565b3480156104e157600080fd5b506102486104f03660046117aa565b610ec8565b34801561050157600080fd5b5061025f60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561053257600080fd5b5061025f610541366004611946565b610f12565b34801561055257600080fd5b5061028c73a5409ec958c83c3f309868babaca7c86dcb077c181565b34801561057a57600080fd5b5061025f610fdc565b34801561058f57600080fd5b5061021361059e366004611730565b610fe9565b3480156105af57600080fd5b506102486105be366004611713565b6110c8565b60006301ffc9a760e01b6001600160e01b0319831614806105f457506380ac58cd60e01b6001600160e01b03198316145b8061060f5750635b5e139f60e01b6001600160e01b03198316145b92915050565b61061d611141565b600c805460ff1916911515919091179055565b60606002805461063f90611b2c565b80601f016020809104026020016040519081016040528092919081815260200182805461066b90611b2c565b80156106b85780601f1061068d576101008083540402835291602001916106b8565b820191906000526020600020905b81548152906001019060200180831161069b57829003601f168201915b5050505050905090565b60006106cd8261119b565b6106ea576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061071182610a0e565b9050336001600160a01b0382161461074a5761072d8133610fe9565b61074a576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006107b1826111c2565b9050836001600160a01b0316816001600160a01b0316146107e45760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610831576108148633610fe9565b61083157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661085857604051633a954ecd60e21b815260040160405180910390fd5b801561086357600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b83166108ee57600184016000818152600460205260409020546108ec5760005481146108ec5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b61093f611141565b6040514790600090339083908381818185875af1925050503d8060008114610983576040519150601f19603f3d011682016040523d82523d6000602084013e610988565b606091505b50509050806109cf5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b60448201526064015b60405180910390fd5b5050565b6109ee83838360405180602001604052806000815250610ec8565b505050565b6109fb611141565b80516109cf9060099060208401906115ef565b600061060f826111c2565b610a21611141565b600c54610100900460ff1615610a695760405162461bcd60e51b815260206004820152600d60248201526c0416c726561647920736574757609c1b60448201526064016109c6565b600c805461ff001916610100179055610a89610a823390565b600161122a565b565b60098054610a9890611b2c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac490611b2c565b8015610b115780601f10610ae657610100808354040283529160200191610b11565b820191906000526020600020905b815481529060010190602001808311610af457829003601f168201915b505050505081565b60006001600160a01b038216610b42576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b70611141565b610a896000611244565b610b82611141565b80516109cf90600a9060208401906115ef565b60606003805461063f90611b2c565b336000610bb082610b19565b600c5490915060ff1615610bef5760405162461bcd60e51b815260206004820152600660248201526514185d5cd95960d21b60448201526064016109c6565b82610bfd6001546000540390565b610c079190611a9e565b61029a1015610c4d5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016109c6565b60008311610c8a5760405162461bcd60e51b815260206004820152600a6024820152694e6f2030206d696e747360b01b60448201526064016109c6565b326001600160a01b03831614610cd15760405162461bcd60e51b815260206004820152600c60248201526b4e6f20636f6e74726163747360a01b60448201526064016109c6565b60028110610d2c5760405162461bcd60e51b815260206004820152602260248201527f45786365656473206d617820746f6b656e20636f756e74207065722077616c6c604482015261195d60f21b60648201526084016109c6565b60015460005403606410610d89578260021015610d845760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440cce4caca40e8f60531b60448201526064016109c6565b610e28565b8260021015610dd35760405162461bcd60e51b815260206004820152601660248201527508af0c6cae6e640dac2f040e0cae440e0c2d2c840e8f60531b60448201526064016109c6565b34600b5484610de29190611aca565b14610e285760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016109c6565b6109ee828461122a565b6001600160a01b038216331415610e5c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ed38484846107a6565b6001600160a01b0383163b15610f0c57610eef84848484611296565b610f0c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f1d8261119b565b610f615760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016109c6565b600060098054610f7090611b2c565b905011610f8c576040518060200160405280600081525061060f565b6009610f978361138d565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610fc7939291906119a7565b60405160208183030381529060405292915050565b600a8054610a9890611b2c565b60405163c455279160e01b81526001600160a01b03838116600483015260009173a5409ec958c83c3f309868babaca7c86dcb077c191841690829063c45527919060240160206040518083038186803b15801561104557600080fd5b505afa158015611059573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107d91906118e0565b6001600160a01b0316141561109657600191505061060f565b6001600160a01b0380851660009081526007602090815260408083209387168352929052205460ff165b949350505050565b6110d0611141565b6001600160a01b0381166111355760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c6565b61113e81611244565b50565b6008546001600160a01b03163314610a895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109c6565b600080548210801561060f575050600090815260046020526040902054600160e01b161590565b60008160005481101561121157600081815260046020526040902054600160e01b811661120f575b806112085750600019016000818152600460205260409020546111ea565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6109cf82826040518060200160405280600081525061148b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112cb903390899088908890600401611a58565b602060405180830381600087803b1580156112e557600080fd5b505af1925050508015611315575060408051601f3d908101601f19168201909252611312918101906118c3565b60015b611370573d808015611343576040519150601f19603f3d011682016040523d82523d6000602084013e611348565b606091505b508051611368576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060816113b15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113db57806113c581611b67565b91506113d49050600a83611ab6565b91506113b5565b60008167ffffffffffffffff8111156113f6576113f6611bd8565b6040519080825280601f01601f191660200182016040528015611420576020820181803683370190505b5090505b84156110c057611435600183611ae9565b9150611442600a86611b82565b61144d906030611a9e565b60f81b81838151811061146257611462611bc2565b60200101906001600160f81b031916908160001a905350611484600a86611ab6565b9450611424565b61149583836114f8565b6001600160a01b0383163b156109ee576000548281035b6114bf6000868380600101945086611296565b6114dc576040516368d2bf6b60e11b815260040160405180910390fd5b8181106114ac5781600054146114f157600080fd5b5050505050565b600054816115195760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146115c857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611590565b50816115e657604051622e076360e81b815260040160405180910390fd5b60005550505050565b8280546115fb90611b2c565b90600052602060002090601f01602090048101928261161d5760008555611663565b82601f1061163657805160ff1916838001178555611663565b82800160010185558215611663579182015b82811115611663578251825591602001919060010190611648565b5061166f929150611673565b5090565b5b8082111561166f5760008155600101611674565b600067ffffffffffffffff808411156116a3576116a3611bd8565b604051601f8501601f19908116603f011681019082821181831017156116cb576116cb611bd8565b816040528093508581528686860111156116e457600080fd5b858560208301376000602087830101525050509392505050565b8035801515811461170e57600080fd5b919050565b60006020828403121561172557600080fd5b813561120881611bee565b6000806040838503121561174357600080fd5b823561174e81611bee565b9150602083013561175e81611bee565b809150509250929050565b60008060006060848603121561177e57600080fd5b833561178981611bee565b9250602084013561179981611bee565b929592945050506040919091013590565b600080600080608085870312156117c057600080fd5b84356117cb81611bee565b935060208501356117db81611bee565b925060408501359150606085013567ffffffffffffffff8111156117fe57600080fd5b8501601f8101871361180f57600080fd5b61181e87823560208401611688565b91505092959194509250565b6000806040838503121561183d57600080fd5b823561184881611bee565b9150611856602084016116fe565b90509250929050565b6000806040838503121561187257600080fd5b823561187d81611bee565b946020939093013593505050565b60006020828403121561189d57600080fd5b611208826116fe565b6000602082840312156118b857600080fd5b813561120881611c03565b6000602082840312156118d557600080fd5b815161120881611c03565b6000602082840312156118f257600080fd5b815161120881611bee565b60006020828403121561190f57600080fd5b813567ffffffffffffffff81111561192657600080fd5b8201601f8101841361193757600080fd5b6110c084823560208401611688565b60006020828403121561195857600080fd5b5035919050565b60008151808452611977816020860160208601611b00565b601f01601f19169290920160200192915050565b6000815161199d818560208601611b00565b9290920192915050565b600080855481600182811c9150808316806119c357607f831692505b60208084108214156119e357634e487b7160e01b86526022600452602486fd5b8180156119f75760018114611a0857611a35565b60ff19861689528489019650611a35565b60008c81526020902060005b86811015611a2d5781548b820152908501908301611a14565b505084890196505b505050505050611a4e611a48828761198b565b8561198b565b9695505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a4e9083018461195f565b602081526000611208602083018461195f565b60008219821115611ab157611ab1611b96565b500190565b600082611ac557611ac5611bac565b500490565b6000816000190483118215151615611ae457611ae4611b96565b500290565b600082821015611afb57611afb611b96565b500390565b60005b83811015611b1b578181015183820152602001611b03565b83811115610f0c5750506000910152565b600181811c90821680611b4057607f821691505b60208210811415611b6157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b7b57611b7b611b96565b5060010190565b600082611b9157611b91611bac565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461113e57600080fd5b6001600160e01b03198116811461113e57600080fdfea2646970667358221220ec5492dfb5d8b54ded8c3c66673363f22c2cc55ac3005d970b5eb69061e7d9d964736f6c63430008070033

Deployed Bytecode Sourcemap

56992:3006:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20932:639;;;;;;;;;;-1:-1:-1;20932:639:0;;;;;:::i;:::-;;:::i;:::-;;;7756:14:1;;7749:22;7731:41;;7719:2;7704:18;20932:639:0;;;;;;;;59312:81;;;;;;;;;;-1:-1:-1;59312:81:0;;;;;:::i;:::-;;:::i;:::-;;21834:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28317:218::-;;;;;;;;;;-1:-1:-1;28317:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7054:32:1;;;7036:51;;7024:2;7009:18;28317:218:0;6890:203:1;27758:400:0;;;;;;;;;;-1:-1:-1;27758:400:0;;;;;:::i;:::-;;:::i;57462:42::-;;;;;;;;;;;;57503:1;57462:42;;;;;12773:25:1;;;12761:2;12746:18;57462:42:0;12627:177:1;17585:323:0;;;;;;;;;;-1:-1:-1;17859:12:0;;17646:7;17843:13;:28;17585:323;;32024:2817;;;;;;;;;;-1:-1:-1;32024:2817:0;;;;;:::i;:::-;;:::i;57415:40::-;;;;;;;;;;;;57452:3;57415:40;;58932:209;;;;;;;;;;;;;:::i;34937:185::-;;;;;;;;;;-1:-1:-1;34937:185:0;;;;;:::i;:::-;;:::i;59401:100::-;;;;;;;;;;-1:-1:-1;59401:100:0;;;;;:::i;:::-;;:::i;57554:25::-;;;;;;;;;;-1:-1:-1;57554:25:0;;;;;;;;23227:152;;;;;;;;;;-1:-1:-1;23227:152:0;;;;;:::i;:::-;;:::i;59149:155::-;;;;;;;;;;;;;:::i;57043:80::-;;;;;;;;;;;;;:::i;18769:233::-;;;;;;;;;;-1:-1:-1;18769:233:0;;;;;:::i;:::-;;:::i;56099:103::-;;;;;;;;;;;;;:::i;57363:45::-;;;;;;;;;;;;57405:3;57363:45;;55451:87;;;;;;;;;;-1:-1:-1;55524:6:0;;-1:-1:-1;;;;;55524:6:0;55451:87;;59509:116;;;;;;;;;;-1:-1:-1;59509:116:0;;;;;:::i;:::-;;:::i;22010:104::-;;;;;;;;;;;;;:::i;57511:34::-;;;;;;;;;;;;;;;;57674:797;;;;;;:::i;:::-;;:::i;28875:308::-;;;;;;;;;;-1:-1:-1;28875:308:0;;;;;:::i;:::-;;:::i;35720:399::-;;;;;;;;;;-1:-1:-1;35720:399:0;;;;;:::i;:::-;;:::i;57167:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;57167:46:0;;;;;59633:362;;;;;;;;;;-1:-1:-1;59633:362:0;;;;;:::i;:::-;;:::i;57220:89::-;;;;;;;;;;;;57267:42;57220:89;;57130:30;;;;;;;;;;;;;:::i;58479:445::-;;;;;;;;;;-1:-1:-1;58479:445:0;;;;;:::i;:::-;;:::i;56357:201::-;;;;;;;;;;-1:-1:-1;56357:201:0;;;;;:::i;:::-;;:::i;20932:639::-;21017:4;-1:-1:-1;;;;;;;;;21341:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21418:25:0;;;21341:102;:179;;;-1:-1:-1;;;;;;;;;;21495:25:0;;;21341:179;21321:199;20932:639;-1:-1:-1;;20932:639:0:o;59312:81::-;55337:13;:11;:13::i;:::-;59370:6:::1;:15:::0;;-1:-1:-1;;59370:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59312:81::o;21834:100::-;21888:13;21921:5;21914:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21834:100;:::o;28317:218::-;28393:7;28418:16;28426:7;28418;:16::i;:::-;28413:64;;28443:34;;-1:-1:-1;;;28443:34:0;;;;;;;;;;;28413:64;-1:-1:-1;28497:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;28497:30:0;;28317:218::o;27758:400::-;27839:13;27855:16;27863:7;27855;:16::i;:::-;27839:32;-1:-1:-1;51615:10:0;-1:-1:-1;;;;;27888:28:0;;;27884:175;;27936:44;27953:5;51615:10;58479:445;:::i;27936:44::-;27931:128;;28008:35;;-1:-1:-1;;;28008:35:0;;;;;;;;;;;27931:128;28071:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;28071:35:0;-1:-1:-1;;;;;28071:35:0;;;;;;;;;28122:28;;28071:24;;28122:28;;;;;;;27828:330;27758:400;;:::o;32024:2817::-;32158:27;32188;32207:7;32188:18;:27::i;:::-;32158:57;;32273:4;-1:-1:-1;;;;;32232:45:0;32248:19;-1:-1:-1;;;;;32232:45:0;;32228:86;;32286:28;;-1:-1:-1;;;32286:28:0;;;;;;;;;;;32228:86;32328:27;31138:24;;;:15;:24;;;;;31360:26;;51615:10;30763:30;;;-1:-1:-1;;;;;30456:28:0;;30741:20;;;30738:56;32514:180;;32607:43;32624:4;51615:10;58479:445;:::i;32607:43::-;32602:92;;32659:35;;-1:-1:-1;;;32659:35:0;;;;;;;;;;;32602:92;-1:-1:-1;;;;;32711:16:0;;32707:52;;32736:23;;-1:-1:-1;;;32736:23:0;;;;;;;;;;;32707:52;32908:15;32905:160;;;33048:1;33027:19;33020:30;32905:160;-1:-1:-1;;;;;33445:24:0;;;;;;;:18;:24;;;;;;33443:26;;-1:-1:-1;;33443:26:0;;;33514:22;;;;;;;;;33512:24;;-1:-1:-1;33512:24:0;;;26616:11;26591:23;26587:41;26574:63;-1:-1:-1;;;26574:63:0;33807:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;34102:47:0;;34098:627;;34207:1;34197:11;;34175:19;34330:30;;;:17;:30;;;;;;34326:384;;34468:13;;34453:11;:28;34449:242;;34615:30;;;;:17;:30;;;;;:52;;;34449:242;34156:569;34098:627;34772:7;34768:2;-1:-1:-1;;;;;34753:27:0;34762:4;-1:-1:-1;;;;;34753:27:0;;;;;;;;;;;32147:2694;;;32024:2817;;;:::o;58932:209::-;55337:13;:11;:13::i;:::-;59051:37:::1;::::0;59000:21:::1;::::0;58982:15:::1;::::0;51615:10;;59000:21;;58982:15;59051:37;58982:15;59051:37;59000:21;51615:10;59051:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59032:56;;;59107:7;59099:34;;;::::0;-1:-1:-1;;;59099:34:0;;12145:2:1;59099:34:0::1;::::0;::::1;12127:21:1::0;12184:2;12164:18;;;12157:30;-1:-1:-1;;;12203:18:1;;;12196:44;12257:18;;59099:34:0::1;;;;;;;;;58971:170;;58932:209::o:0;34937:185::-;35075:39;35092:4;35098:2;35102:7;35075:39;;;;;;;;;;;;:16;:39::i;:::-;34937:185;;;:::o;59401:100::-;55337:13;:11;:13::i;:::-;59475:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;23227:152::-:0;23299:7;23342:27;23361:7;23342:18;:27::i;59149:155::-;55337:13;:11;:13::i;:::-;59207:8:::1;::::0;::::1;::::0;::::1;;;59206:9;59198:35;;;::::0;-1:-1:-1;;;59198:35:0;;8950:2:1;59198:35:0::1;::::0;::::1;8932:21:1::0;8989:2;8969:18;;;8962:30;-1:-1:-1;;;9008:18:1;;;9001:43;9061:18;;59198:35:0::1;8748:337:1::0;59198:35:0::1;59244:8;:15:::0;;-1:-1:-1;;59244:15:0::1;;;::::0;;59270:26:::1;59280:12;51615:10:::0;;51528:105;59280:12:::1;59294:1;59270:9;:26::i;:::-;59149:155::o:0;57043:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18769:233::-;18841:7;-1:-1:-1;;;;;18865:19:0;;18861:60;;18893:28;;-1:-1:-1;;;18893:28:0;;;;;;;;;;;18861:60;-1:-1:-1;;;;;;18939:25:0;;;;;:18;:25;;;;;;12928:13;18939:55;;18769:233::o;56099:103::-;55337:13;:11;:13::i;:::-;56164:30:::1;56191:1;56164:18;:30::i;59509:116::-:0;55337:13;:11;:13::i;:::-;59591:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;22010:104::-:0;22066:13;22099:7;22092:14;;;;;:::i;57674:797::-;51615:10;57733:15;57800:18;51615:10;57800:9;:18::i;:::-;57838:6;;57774:44;;-1:-1:-1;57838:6:0;;57837:7;57829:26;;;;-1:-1:-1;;;57829:26:0;;8209:2:1;57829:26:0;;;8191:21:1;8248:1;8228:18;;;8221:29;-1:-1:-1;;;8266:18:1;;;8259:36;8312:18;;57829:26:0;8007:329:1;57829:26:0;57904:7;57888:13;17859:12;;17646:7;17843:13;:28;;17585:323;57888:13;:23;;;;:::i;:::-;57452:3;57874:37;;57866:68;;;;-1:-1:-1;;;57866:68:0;;10333:2:1;57866:68:0;;;10315:21:1;10372:2;10352:18;;;10345:30;-1:-1:-1;;;10391:18:1;;;10384:48;10449:18;;57866:68:0;10131:342:1;57866:68:0;57963:1;57953:7;:11;57945:34;;;;-1:-1:-1;;;57945:34:0;;9292:2:1;57945:34:0;;;9274:21:1;9331:2;9311:18;;;9304:30;-1:-1:-1;;;9350:18:1;;;9343:40;9400:18;;57945:34:0;9090:334:1;57945:34:0;57998:9;-1:-1:-1;;;;;57998:20:0;;;57990:45;;;;-1:-1:-1;;;57990:45:0;;12488:2:1;57990:45:0;;;12470:21:1;12527:2;12507:18;;;12500:30;-1:-1:-1;;;12546:18:1;;;12539:42;12598:18;;57990:45:0;12286:336:1;57990:45:0;57503:1;58054:15;:32;58046:79;;;;-1:-1:-1;;;58046:79:0;;11742:2:1;58046:79:0;;;11724:21:1;11781:2;11761:18;;;11754:30;11820:34;11800:18;;;11793:62;-1:-1:-1;;;11871:18:1;;;11864:32;11913:19;;58046:79:0;11540:398:1;58046:79:0;17859:12;;17646:7;17843:13;:28;57405:3;58141:32;58138:286;;58211:7;57355:1;58197:21;;58189:57;;;;-1:-1:-1;;;58189:57:0;;9982:2:1;58189:57:0;;;9964:21:1;10021:2;10001:18;;;9994:30;-1:-1:-1;;;10040:18:1;;;10033:52;10102:18;;58189:57:0;9780:346:1;58189:57:0;58138:286;;;58299:7;57355:1;58285:21;;58277:57;;;;-1:-1:-1;;;58277:57:0;;9631:2:1;58277:57:0;;;9613:21:1;9670:2;9650:18;;;9643:30;-1:-1:-1;;;9689:18:1;;;9682:52;9751:18;;58277:57:0;9429:346:1;58277:57:0;58376:9;58367:5;;58357:7;:15;;;;:::i;:::-;:28;58349:63;;;;-1:-1:-1;;;58349:63:0;;11391:2:1;58349:63:0;;;11373:21:1;11430:2;11410:18;;;11403:30;-1:-1:-1;;;11449:18:1;;;11442:52;11511:18;;58349:63:0;11189:346:1;58349:63:0;58436:27;58446:7;58455;58436:9;:27::i;28875:308::-;-1:-1:-1;;;;;28974:31:0;;51615:10;28974:31;28970:61;;;29014:17;;-1:-1:-1;;;29014:17:0;;;;;;;;;;;28970:61;51615:10;29044:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;29044:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;29044:60:0;;;;;;;;;;29120:55;;7731:41:1;;;29044:49:0;;51615:10;29120:55;;7704:18:1;29120:55:0;;;;;;;28875:308;;:::o;35720:399::-;35887:31;35900:4;35906:2;35910:7;35887:12;:31::i;:::-;-1:-1:-1;;;;;35933:14:0;;;:19;35929:183;;35972:56;36003:4;36009:2;36013:7;36022:5;35972:30;:56::i;:::-;35967:145;;36056:40;;-1:-1:-1;;;36056:40:0;;;;;;;;;;;35967:145;35720:399;;;;:::o;59633:362::-;59699:13;59733:17;59741:8;59733:7;:17::i;:::-;59725:51;;;;-1:-1:-1;;;59725:51:0;;10680:2:1;59725:51:0;;;10662:21:1;10719:2;10699:18;;;10692:30;-1:-1:-1;;;10738:18:1;;;10731:51;10799:18;;59725:51:0;10478:345:1;59725:51:0;59818:1;59800:7;59794:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;59876:7;59900:26;59917:8;59900:16;:26::i;:::-;59943:13;;;;;;;;;;;;;-1:-1:-1;;;59943:13:0;;;59843:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59787:200;59633:362;-1:-1:-1;;59633:362:0:o;57130:30::-;;;;;;;:::i;58479:445::-;58777:28;;-1:-1:-1;;;58777:28:0;;-1:-1:-1;;;;;7054:32:1;;;58777:28:0;;;7036:51:1;58604:4:0;;57267:42;;58769:49;;;57267:42;;58777:21;;7009:18:1;;58777:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;58769:49:0;;58765:93;;;58842:4;58835:11;;;;;58765:93;-1:-1:-1;;;;;29461:25:0;;;29437:4;29461:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;58877:39;58870:46;58479:445;-1:-1:-1;;;;58479:445:0:o;56357:201::-;55337:13;:11;:13::i;:::-;-1:-1:-1;;;;;56446:22:0;::::1;56438:73;;;::::0;-1:-1:-1;;;56438:73:0;;8543:2:1;56438:73:0::1;::::0;::::1;8525:21:1::0;8582:2;8562:18;;;8555:30;8621:34;8601:18;;;8594:62;-1:-1:-1;;;8672:18:1;;;8665:36;8718:19;;56438:73:0::1;8341:402:1::0;56438:73:0::1;56522:28;56541:8;56522:18;:28::i;:::-;56357:201:::0;:::o;55616:132::-;55524:6;;-1:-1:-1;;;;;55524:6:0;51615:10;55680:23;55672:68;;;;-1:-1:-1;;;55672:68:0;;11030:2:1;55672:68:0;;;11012:21:1;;;11049:18;;;11042:30;11108:34;11088:18;;;11081:62;11160:18;;55672:68:0;10828:356:1;29762:282:0;29827:4;29917:13;;29907:7;:23;29864:153;;;;-1:-1:-1;;29968:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;29968:44:0;:49;;29762:282::o;24382:1275::-;24449:7;24484;24586:13;;24579:4;:20;24575:1015;;;24624:14;24641:23;;;:17;:23;;;;;;-1:-1:-1;;;24730:24:0;;24726:845;;25395:113;25402:11;25395:113;;-1:-1:-1;;;25473:6:0;25455:25;;;;:17;:25;;;;;;25395:113;;;25541:6;24382:1275;-1:-1:-1;;;24382:1275:0:o;24726:845::-;24601:989;24575:1015;25618:31;;-1:-1:-1;;;25618:31:0;;;;;;;;;;;45360:112;45437:27;45447:2;45451:8;45437:27;;;;;;;;;;;;:9;:27::i;56718:191::-;56811:6;;;-1:-1:-1;;;;;56828:17:0;;;-1:-1:-1;;;;;;56828:17:0;;;;;;;56861:40;;56811:6;;;56828:17;56811:6;;56861:40;;56792:16;;56861:40;56781:128;56718:191;:::o;38203:716::-;38387:88;;-1:-1:-1;;;38387:88:0;;38366:4;;-1:-1:-1;;;;;38387:45:0;;;;;:88;;51615:10;;38454:4;;38460:7;;38469:5;;38387:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38387:88:0;;;;;;;;-1:-1:-1;;38387:88:0;;;;;;;;;;;;:::i;:::-;;;38383:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38670:13:0;;38666:235;;38716:40;;-1:-1:-1;;;38716:40:0;;;;;;;;;;;38666:235;38859:6;38853:13;38844:6;38840:2;38836:15;38829:38;38383:529;-1:-1:-1;;;;;;38546:64:0;-1:-1:-1;;;38546:64:0;;-1:-1:-1;38203:716:0;;;;;;:::o;430:723::-;486:13;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;44587:689;44718:19;44724:2;44728:8;44718:5;:19::i;:::-;-1:-1:-1;;;;;44779:14:0;;;:19;44775:483;;44819:11;44833:13;44881:14;;;44914:233;44945:62;44984:1;44988:2;44992:7;;;;;;45001:5;44945:30;:62::i;:::-;44940:167;;45043:40;;-1:-1:-1;;;45043:40:0;;;;;;;;;;;44940:167;45142:3;45134:5;:11;44914:233;;45229:3;45212:13;;:20;45208:34;;45234:8;;;45208:34;44800:458;;44587:689;;;:::o;39381:2454::-;39454:20;39477:13;39505;39501:44;;39527:18;;-1:-1:-1;;;39527:18:0;;;;;;;;;;;39501:44;-1:-1:-1;;;;;40033:22:0;;;;;;:18;:22;;;;13066:2;40033:22;;;:71;;40071:32;40059:45;;40033:71;;;40347:31;;;:17;:31;;;;;-1:-1:-1;27047:15:0;;27021:24;27017:46;26616:11;26591:23;26587:41;26584:52;26574:63;;40347:173;;40582:23;;;;40347:31;;40033:22;;41081:25;40033:22;;40934:335;41349:1;41335:12;41331:20;41289:346;41390:3;41381:7;41378:16;41289:346;;41608:7;41598:8;41595:1;41568:25;41565:1;41562;41557:59;41443:1;41430:15;41289:346;;;-1:-1:-1;41668:13:0;41664:45;;41690:19;;-1:-1:-1;;;41690:19:0;;;;;;;;;;;41664:45;41726:13;:19;-1:-1:-1;34937:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;1067:388::-;1135:6;1143;1196:2;1184:9;1175:7;1171:23;1167:32;1164:52;;;1212:1;1209;1202:12;1164:52;1251:9;1238:23;1270:31;1295:5;1270:31;:::i;:::-;1320:5;-1:-1:-1;1377:2:1;1362:18;;1349:32;1390:33;1349:32;1390:33;:::i;:::-;1442:7;1432:17;;;1067:388;;;;;:::o;1460:456::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1661:9;1648:23;1680:31;1705:5;1680:31;:::i;:::-;1730:5;-1:-1:-1;1787:2:1;1772:18;;1759:32;1800:33;1759:32;1800:33;:::i;:::-;1460:456;;1852:7;;-1:-1:-1;;;1906:2:1;1891:18;;;;1878:32;;1460:456::o;1921:794::-;2016:6;2024;2032;2040;2093:3;2081:9;2072:7;2068:23;2064:33;2061:53;;;2110:1;2107;2100:12;2061:53;2149:9;2136:23;2168:31;2193:5;2168:31;:::i;:::-;2218:5;-1:-1:-1;2275:2:1;2260:18;;2247:32;2288:33;2247:32;2288:33;:::i;:::-;2340:7;-1:-1:-1;2394:2:1;2379:18;;2366:32;;-1:-1:-1;2449:2:1;2434:18;;2421:32;2476:18;2465:30;;2462:50;;;2508:1;2505;2498:12;2462:50;2531:22;;2584:4;2576:13;;2572:27;-1:-1:-1;2562:55:1;;2613:1;2610;2603:12;2562:55;2636:73;2701:7;2696:2;2683:16;2678:2;2674;2670:11;2636:73;:::i;:::-;2626:83;;;1921:794;;;;;;;:::o;2720:315::-;2785:6;2793;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:31;2945:5;2920:31;:::i;:::-;2970:5;-1:-1:-1;2994:35:1;3025:2;3010:18;;2994:35;:::i;:::-;2984:45;;2720:315;;;;;:::o;3040:::-;3108:6;3116;3169:2;3157:9;3148:7;3144:23;3140:32;3137:52;;;3185:1;3182;3175:12;3137:52;3224:9;3211:23;3243:31;3268:5;3243:31;:::i;:::-;3293:5;3345:2;3330:18;;;;3317:32;;-1:-1:-1;;;3040:315:1:o;3360:180::-;3416:6;3469:2;3457:9;3448:7;3444:23;3440:32;3437:52;;;3485:1;3482;3475:12;3437:52;3508:26;3524:9;3508:26;:::i;3545:245::-;3603:6;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3711:9;3698:23;3730:30;3754:5;3730:30;:::i;3795:249::-;3864:6;3917:2;3905:9;3896:7;3892:23;3888:32;3885:52;;;3933:1;3930;3923:12;3885:52;3965:9;3959:16;3984:30;4008:5;3984:30;:::i;4049:280::-;4148:6;4201:2;4189:9;4180:7;4176:23;4172:32;4169:52;;;4217:1;4214;4207:12;4169:52;4249:9;4243:16;4268:31;4293:5;4268:31;:::i;4334:450::-;4403:6;4456:2;4444:9;4435:7;4431:23;4427:32;4424:52;;;4472:1;4469;4462:12;4424:52;4512:9;4499:23;4545:18;4537:6;4534:30;4531:50;;;4577:1;4574;4567:12;4531:50;4600:22;;4653:4;4645:13;;4641:27;-1:-1:-1;4631:55:1;;4682:1;4679;4672:12;4631:55;4705:73;4770:7;4765:2;4752:16;4747:2;4743;4739:11;4705:73;:::i;4789:180::-;4848:6;4901:2;4889:9;4880:7;4876:23;4872:32;4869:52;;;4917:1;4914;4907:12;4869:52;-1:-1:-1;4940:23:1;;4789:180;-1:-1:-1;4789:180:1:o;4974:257::-;5015:3;5053:5;5047:12;5080:6;5075:3;5068:19;5096:63;5152:6;5145:4;5140:3;5136:14;5129:4;5122:5;5118:16;5096:63;:::i;:::-;5213:2;5192:15;-1:-1:-1;;5188:29:1;5179:39;;;;5220:4;5175:50;;4974:257;-1:-1:-1;;4974:257:1:o;5236:185::-;5278:3;5316:5;5310:12;5331:52;5376:6;5371:3;5364:4;5357:5;5353:16;5331:52;:::i;:::-;5399:16;;;;;5236:185;-1:-1:-1;;5236:185:1:o;5426:1249::-;5650:3;5679:1;5712:6;5706:13;5742:3;5764:1;5792:9;5788:2;5784:18;5774:28;;5852:2;5841:9;5837:18;5874;5864:61;;5918:4;5910:6;5906:17;5896:27;;5864:61;5944:2;5992;5984:6;5981:14;5961:18;5958:38;5955:165;;;-1:-1:-1;;;6019:33:1;;6075:4;6072:1;6065:15;6105:4;6026:3;6093:17;5955:165;6136:18;6163:104;;;;6281:1;6276:320;;;;6129:467;;6163:104;-1:-1:-1;;6196:24:1;;6184:37;;6241:16;;;;-1:-1:-1;6163:104:1;;6276:320;12882:1;12875:14;;;12919:4;12906:18;;6371:1;6385:165;6399:6;6396:1;6393:13;6385:165;;;6477:14;;6464:11;;;6457:35;6520:16;;;;6414:10;;6385:165;;;6389:3;;6579:6;6574:3;6570:16;6563:23;;6129:467;;;;;;;6612:57;6638:30;6664:3;6656:6;6638:30;:::i;:::-;6630:6;6612:57;:::i;:::-;6605:64;5426:1249;-1:-1:-1;;;;;;5426:1249:1:o;7098:488::-;-1:-1:-1;;;;;7367:15:1;;;7349:34;;7419:15;;7414:2;7399:18;;7392:43;7466:2;7451:18;;7444:34;;;7514:3;7509:2;7494:18;;7487:31;;;7292:4;;7535:45;;7560:19;;7552:6;7535:45;:::i;7783:219::-;7932:2;7921:9;7914:21;7895:4;7952:44;7992:2;7981:9;7977:18;7969:6;7952:44;:::i;12935:128::-;12975:3;13006:1;13002:6;12999:1;12996:13;12993:39;;;13012:18;;:::i;:::-;-1:-1:-1;13048:9:1;;12935:128::o;13068:120::-;13108:1;13134;13124:35;;13139:18;;:::i;:::-;-1:-1:-1;13173:9:1;;13068:120::o;13193:168::-;13233:7;13299:1;13295;13291:6;13287:14;13284:1;13281:21;13276:1;13269:9;13262:17;13258:45;13255:71;;;13306:18;;:::i;:::-;-1:-1:-1;13346:9:1;;13193:168::o;13366:125::-;13406:4;13434:1;13431;13428:8;13425:34;;;13439:18;;:::i;:::-;-1:-1:-1;13476:9:1;;13366:125::o;13496:258::-;13568:1;13578:113;13592:6;13589:1;13586:13;13578:113;;;13668:11;;;13662:18;13649:11;;;13642:39;13614:2;13607:10;13578:113;;;13709:6;13706:1;13703:13;13700:48;;;-1:-1:-1;;13744:1:1;13726:16;;13719:27;13496:258::o;13759:380::-;13838:1;13834:12;;;;13881;;;13902:61;;13956:4;13948:6;13944:17;13934:27;;13902:61;14009:2;14001:6;13998:14;13978:18;13975:38;13972:161;;;14055:10;14050:3;14046:20;14043:1;14036:31;14090:4;14087:1;14080:15;14118:4;14115:1;14108:15;13972:161;;13759:380;;;:::o;14144:135::-;14183:3;-1:-1:-1;;14204:17:1;;14201:43;;;14224:18;;:::i;:::-;-1:-1:-1;14271:1:1;14260:13;;14144:135::o;14284:112::-;14316:1;14342;14332:35;;14347:18;;:::i;:::-;-1:-1:-1;14381:9:1;;14284:112::o;14401:127::-;14462:10;14457:3;14453:20;14450:1;14443:31;14493:4;14490:1;14483:15;14517:4;14514:1;14507:15;14533:127;14594:10;14589:3;14585:20;14582:1;14575:31;14625:4;14622:1;14615:15;14649:4;14646:1;14639:15;14665:127;14726:10;14721:3;14717:20;14714:1;14707:31;14757:4;14754:1;14747:15;14781:4;14778:1;14771:15;14797:127;14858:10;14853:3;14849:20;14846:1;14839:31;14889:4;14886:1;14879:15;14913:4;14910:1;14903:15;14929:131;-1:-1:-1;;;;;15004:31:1;;14994:42;;14984:70;;15050:1;15047;15040:12;15065:131;-1:-1:-1;;;;;;15139:32:1;;15129:43;;15119:71;;15186:1;15183;15176:12

Swarm Source

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