ETH Price: $2,320.37 (-5.16%)

Token

BritishApeRoyalClub (BARC)
 

Overview

Max Total Supply

456 BARC

Holders

50

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
lazthefcknone.eth
Balance
1 BARC
0x09846C9ED5D569b3c2429b03997Ca9f7bC76393a
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:
BritishApeRoyalClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

// Official Link: https://www.mutanty00tsyachtclub.xyz


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


pragma solidity ^0.8.0;


contract BritishApeRoyalClub is ERC721A, Ownable {

    using Strings for uint256;

    string private baseURI = "ipfs://bafybeihl7kby5jhnnahz2b5ffcd35wmln3jdkpeqaqcll2rowjlezdbczq/";

    uint256 public price = 0.003 ether;

    uint256 public maxPerTx = 20;

    uint256 public maxFreePerWallet = 1;

    uint256 public totalFree = 4000;

    uint256 public maxSupply = 5000;

    bool public mintEnabled = true;
    
    uint   public totalFreeMinted = 0;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("BritishApeRoyalClub", "BARC") {}

   function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalFreeMinted + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] < maxFreePerWallet));

        if (isFree) { 
            require(mintEnabled, "Mint is not live yet");
            require(totalSupply() + count <= maxSupply, "No more");
            require(count <= maxPerTx, "Max per TX reached.");
            if(count >= (maxFreePerWallet - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= (count * cost) - ((maxFreePerWallet - _mintedFreeAmount[msg.sender]) * cost), "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] = maxFreePerWallet;
             totalFreeMinted += maxFreePerWallet;
            }
            else if(count < (maxFreePerWallet - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= 0, "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] += count;
             totalFreeMinted += count;
            }
        }
        else{
        require(mintEnabled, "Mint is not live yet");
        require(msg.value >= count * cost, "Please send the exact ETH amount");
        require(totalSupply() + count <= maxSupply, "Sold out");
        require(count <= maxPerTx, "Max per TX reached.");
        }

        _safeMint(msg.sender, count);
    }

    function tokenURI(uint256 tokenId)
        public view virtual override returns (string memory) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFree = amount;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function toggleMint() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function gaMint(address _address, uint256 count) external onlyOwner {
        require(totalSupply() + count <= maxSupply, "Sold out");
        _safeMint(_address, count);
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"gaMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

6080604052604051806080016040528060438152602001620039b860439139600990805190602001906200003592919062000238565b50660aa87bee538000600a556014600b556001600c55610fa0600d55611388600e556001600f60006101000a81548160ff02191690831515021790555060006010553480156200008457600080fd5b506040518060400160405280601381526020017f42726974697368417065526f79616c436c7562000000000000000000000000008152506040518060400160405280600481526020017f424152430000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010992919062000238565b5080600390805190602001906200012292919062000238565b50620001336200016160201b60201c565b60008190555050506200015b6200014f6200016a60201b60201c565b6200017260201b60201c565b6200034d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024690620002e8565b90600052602060002090601f0160209004810192826200026a5760008555620002b6565b82601f106200028557805160ff1916838001178555620002b6565b82800160010185558215620002b6579182015b82811115620002b557825182559160200191906001019062000298565b5b509050620002c59190620002c9565b5090565b5b80821115620002e4576000816000905550600101620002ca565b5090565b600060028204905060018216806200030157607f821691505b602082108114156200031857620003176200031e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61365b806200035d6000396000f3fe6080604052600436106101d85760003560e01c806392910eec11610102578063d123973011610095578063e8d600f811610064578063e8d600f814610665578063e985e9c51461068e578063f2fde38b146106cb578063f968adbe146106f4576101d8565b8063d1239730146105cd578063d3dd5fe0146105f8578063d5abeb011461060f578063dad7b5c91461063a576101d8565b8063a22cb465116100d1578063a22cb46514610513578063a70273571461053c578063b88d4fde14610567578063c87b56dd14610590576101d8565b806392910eec1461047857806395d89b41146104a1578063a035b1fe146104cc578063a0712d68146104f7576101d8565b80633ccfd60b1161017a57806370a082311161014957806370a08231146103d0578063715018a61461040d5780638da5cb5b1461042457806391b7f5ed1461044f576101d8565b80633ccfd60b1461032a57806342842e0e1461034157806355f804b31461036a5780636352211e14610393576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d6578063333e44e6146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061297b565b61071f565b6040516102119190612dc6565b60405180910390f35b34801561022657600080fd5b5061022f6107b1565b60405161023c9190612de1565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612a1e565b610843565b6040516102799190612d5f565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a4919061293b565b6108bf565b005b3480156102b757600080fd5b506102c0610a66565b6040516102cd9190612f23565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612825565b610a7d565b005b34801561030b57600080fd5b50610314610a8d565b6040516103219190612f23565b60405180910390f35b34801561033657600080fd5b5061033f610a93565b005b34801561034d57600080fd5b5061036860048036038101906103639190612825565b610bbe565b005b34801561037657600080fd5b50610391600480360381019061038c91906129d5565b610bde565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190612a1e565b610c74565b6040516103c79190612d5f565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f291906127b8565b610c86565b6040516104049190612f23565b60405180910390f35b34801561041957600080fd5b50610422610d3f565b005b34801561043057600080fd5b50610439610dc7565b6040516104469190612d5f565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612a1e565b610df1565b005b34801561048457600080fd5b5061049f600480360381019061049a9190612a1e565b610e77565b005b3480156104ad57600080fd5b506104b6610efd565b6040516104c39190612de1565b60405180910390f35b3480156104d857600080fd5b506104e1610f8f565b6040516104ee9190612f23565b60405180910390f35b610511600480360381019061050c9190612a1e565b610f95565b005b34801561051f57600080fd5b5061053a600480360381019061053591906128fb565b6114bb565b005b34801561054857600080fd5b50610551611633565b60405161055e9190612f23565b60405180910390f35b34801561057357600080fd5b5061058e60048036038101906105899190612878565b611639565b005b34801561059c57600080fd5b506105b760048036038101906105b29190612a1e565b6116ac565b6040516105c49190612de1565b60405180910390f35b3480156105d957600080fd5b506105e2611728565b6040516105ef9190612dc6565b60405180910390f35b34801561060457600080fd5b5061060d61173b565b005b34801561061b57600080fd5b506106246117e3565b6040516106319190612f23565b60405180910390f35b34801561064657600080fd5b5061064f6117e9565b60405161065c9190612f23565b60405180910390f35b34801561067157600080fd5b5061068c6004803603810190610687919061293b565b6117ef565b005b34801561069a57600080fd5b506106b560048036038101906106b091906127e5565b6118d0565b6040516106c29190612dc6565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed91906127b8565b611964565b005b34801561070057600080fd5b50610709611a5c565b6040516107169190612f23565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107aa5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107c0906131f3565b80601f01602080910402602001604051908101604052809291908181526020018280546107ec906131f3565b80156108395780601f1061080e57610100808354040283529160200191610839565b820191906000526020600020905b81548152906001019060200180831161081c57829003601f168201915b5050505050905090565b600061084e82611a62565b610884576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ca82611ac1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610932576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610951611b8f565b73ffffffffffffffffffffffffffffffffffffffff16146109b45761097d81610978611b8f565b6118d0565b6109b3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a70611b97565b6001546000540303905090565b610a88838383611ba0565b505050565b600d5481565b610a9b611f4a565b73ffffffffffffffffffffffffffffffffffffffff16610ab9610dc7565b73ffffffffffffffffffffffffffffffffffffffff1614610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690612e83565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610b3590612d4a565b60006040518083038185875af1925050503d8060008114610b72576040519150601f19603f3d011682016040523d82523d6000602084013e610b77565b606091505b5050905080610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290612ec3565b60405180910390fd5b50565b610bd983838360405180602001604052806000815250611639565b505050565b610be6611f4a565b73ffffffffffffffffffffffffffffffffffffffff16610c04610dc7565b73ffffffffffffffffffffffffffffffffffffffff1614610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190612e83565b60405180910390fd5b8060099080519060200190610c709291906125cc565b5050565b6000610c7f82611ac1565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cee576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d47611f4a565b73ffffffffffffffffffffffffffffffffffffffff16610d65610dc7565b73ffffffffffffffffffffffffffffffffffffffff1614610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290612e83565b60405180910390fd5b610dc56000611f52565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610df9611f4a565b73ffffffffffffffffffffffffffffffffffffffff16610e17610dc7565b73ffffffffffffffffffffffffffffffffffffffff1614610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490612e83565b60405180910390fd5b80600a8190555050565b610e7f611f4a565b73ffffffffffffffffffffffffffffffffffffffff16610e9d610dc7565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90612e83565b60405180910390fd5b80600d8190555050565b606060038054610f0c906131f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f38906131f3565b8015610f855780601f10610f5a57610100808354040283529160200191610f85565b820191906000526020600020905b815481529060010190602001808311610f6857829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d54610fad9190613028565b83601054610fbb9190613028565b1080156110085750600c54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b9050801561137257600f60009054906101000a900460ff1661105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690612e03565b60405180910390fd5b600e548361106b610a66565b6110759190613028565b11156110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90612e23565b60405180910390fd5b600b548311156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290612f03565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c546111489190613109565b83106112645781601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c5461119c9190613109565b6111a691906130af565b82846111b291906130af565b6111bc9190613109565b3410156111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590612e63565b60405180910390fd5b600c54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c54601060008282546112589190613028565b9250508190555061136d565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c546112b19190613109565b83101561136c5760003410156112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390612e63565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461134b9190613028565b9250508190555082601060008282546113649190613028565b925050819055505b5b6114ac565b600f60009054906101000a900460ff166113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890612e03565b60405180910390fd5b81836113cd91906130af565b34101561140f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140690612e63565b60405180910390fd5b600e548361141b610a66565b6114259190613028565b1115611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d90612ee3565b60405180910390fd5b600b548311156114ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a290612f03565b60405180910390fd5b5b6114b63384612018565b505050565b6114c3611b8f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611528576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611535611b8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115e2611b8f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116279190612dc6565b60405180910390a35050565b600c5481565b611644848484611ba0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116a65761166f84848484612036565b6116a5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606116b782611a62565b6116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed90612ea3565b60405180910390fd5b600961170183612196565b604051602001611712929190612d1b565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b611743611f4a565b73ffffffffffffffffffffffffffffffffffffffff16611761610dc7565b73ffffffffffffffffffffffffffffffffffffffff16146117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90612e83565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600e5481565b60105481565b6117f7611f4a565b73ffffffffffffffffffffffffffffffffffffffff16611815610dc7565b73ffffffffffffffffffffffffffffffffffffffff161461186b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186290612e83565b60405180910390fd5b600e5481611877610a66565b6118819190613028565b11156118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b990612ee3565b60405180910390fd5b6118cc8282612018565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61196c611f4a565b73ffffffffffffffffffffffffffffffffffffffff1661198a610dc7565b73ffffffffffffffffffffffffffffffffffffffff16146119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790612e83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4790612e43565b60405180910390fd5b611a5981611f52565b50565b600b5481565b600081611a6d611b97565b11158015611a7c575060005482105b8015611aba575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611ad0611b97565b11611b5857600054811015611b575760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b55575b6000811415611b4b576004600083600190039350838152602001908152602001600020549050611b20565b8092505050611b8a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611bab82611ac1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c12576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c33611b8f565b73ffffffffffffffffffffffffffffffffffffffff161480611c625750611c6185611c5c611b8f565b6118d0565b5b80611ca75750611c70611b8f565b73ffffffffffffffffffffffffffffffffffffffff16611c8f84610843565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ce0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d47576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d5485858560016122f7565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611e51866122fd565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611edb576000600184019050600060046000838152602001908152602001600020541415611ed9576000548114611ed8578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f438585856001612307565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61203282826040518060200160405280600081525061230d565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261205c611b8f565b8786866040518563ffffffff1660e01b815260040161207e9493929190612d7a565b602060405180830381600087803b15801561209857600080fd5b505af19250505080156120c957506040513d601f19601f820116820180604052508101906120c691906129a8565b60015b612143573d80600081146120f9576040519150601f19603f3d011682016040523d82523d6000602084013e6120fe565b606091505b5060008151141561213b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156121de576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122f2565b600082905060005b600082146122105780806121f990613256565b915050600a82612209919061307e565b91506121e6565b60008167ffffffffffffffff81111561222c5761222b61338c565b5b6040519080825280601f01601f19166020018201604052801561225e5781602001600182028036833780820191505090505b5090505b600085146122eb576001826122779190613109565b9150600a85612286919061329f565b60306122929190613028565b60f81b8183815181106122a8576122a761335d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122e4919061307e565b9450612262565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561237a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156123b5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123c260008583866122f7565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612427600185146125c2565b901b60a042901b612437866122fd565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461253b575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124eb6000878480600101955087612036565b612521576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061247c57826000541461253657600080fd5b6125a6565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061253c575b8160008190555050506125bc6000858386612307565b50505050565b6000819050919050565b8280546125d8906131f3565b90600052602060002090601f0160209004810192826125fa5760008555612641565b82601f1061261357805160ff1916838001178555612641565b82800160010185558215612641579182015b82811115612640578251825591602001919060010190612625565b5b50905061264e9190612652565b5090565b5b8082111561266b576000816000905550600101612653565b5090565b600061268261267d84612f63565b612f3e565b90508281526020810184848401111561269e5761269d6133c0565b5b6126a98482856131b1565b509392505050565b60006126c46126bf84612f94565b612f3e565b9050828152602081018484840111156126e0576126df6133c0565b5b6126eb8482856131b1565b509392505050565b600081359050612702816135c9565b92915050565b600081359050612717816135e0565b92915050565b60008135905061272c816135f7565b92915050565b600081519050612741816135f7565b92915050565b600082601f83011261275c5761275b6133bb565b5b813561276c84826020860161266f565b91505092915050565b600082601f83011261278a576127896133bb565b5b813561279a8482602086016126b1565b91505092915050565b6000813590506127b28161360e565b92915050565b6000602082840312156127ce576127cd6133ca565b5b60006127dc848285016126f3565b91505092915050565b600080604083850312156127fc576127fb6133ca565b5b600061280a858286016126f3565b925050602061281b858286016126f3565b9150509250929050565b60008060006060848603121561283e5761283d6133ca565b5b600061284c868287016126f3565b935050602061285d868287016126f3565b925050604061286e868287016127a3565b9150509250925092565b60008060008060808587031215612892576128916133ca565b5b60006128a0878288016126f3565b94505060206128b1878288016126f3565b93505060406128c2878288016127a3565b925050606085013567ffffffffffffffff8111156128e3576128e26133c5565b5b6128ef87828801612747565b91505092959194509250565b60008060408385031215612912576129116133ca565b5b6000612920858286016126f3565b925050602061293185828601612708565b9150509250929050565b60008060408385031215612952576129516133ca565b5b6000612960858286016126f3565b9250506020612971858286016127a3565b9150509250929050565b600060208284031215612991576129906133ca565b5b600061299f8482850161271d565b91505092915050565b6000602082840312156129be576129bd6133ca565b5b60006129cc84828501612732565b91505092915050565b6000602082840312156129eb576129ea6133ca565b5b600082013567ffffffffffffffff811115612a0957612a086133c5565b5b612a1584828501612775565b91505092915050565b600060208284031215612a3457612a336133ca565b5b6000612a42848285016127a3565b91505092915050565b612a548161313d565b82525050565b612a638161314f565b82525050565b6000612a7482612fda565b612a7e8185612ff0565b9350612a8e8185602086016131c0565b612a97816133cf565b840191505092915050565b6000612aad82612fe5565b612ab7818561300c565b9350612ac78185602086016131c0565b612ad0816133cf565b840191505092915050565b6000612ae682612fe5565b612af0818561301d565b9350612b008185602086016131c0565b80840191505092915050565b60008154612b19816131f3565b612b23818661301d565b94506001821660008114612b3e5760018114612b4f57612b82565b60ff19831686528186019350612b82565b612b5885612fc5565b60005b83811015612b7a57815481890152600182019150602081019050612b5b565b838801955050505b50505092915050565b6000612b9860148361300c565b9150612ba3826133e0565b602082019050919050565b6000612bbb60078361300c565b9150612bc682613409565b602082019050919050565b6000612bde60268361300c565b9150612be982613432565b604082019050919050565b6000612c0160208361300c565b9150612c0c82613481565b602082019050919050565b6000612c2460058361301d565b9150612c2f826134aa565b600582019050919050565b6000612c4760208361300c565b9150612c52826134d3565b602082019050919050565b6000612c6a602f8361300c565b9150612c75826134fc565b604082019050919050565b6000612c8d600083613001565b9150612c988261354b565b600082019050919050565b6000612cb060108361300c565b9150612cbb8261354e565b602082019050919050565b6000612cd360088361300c565b9150612cde82613577565b602082019050919050565b6000612cf660138361300c565b9150612d01826135a0565b602082019050919050565b612d15816131a7565b82525050565b6000612d278285612b0c565b9150612d338284612adb565b9150612d3e82612c17565b91508190509392505050565b6000612d5582612c80565b9150819050919050565b6000602082019050612d746000830184612a4b565b92915050565b6000608082019050612d8f6000830187612a4b565b612d9c6020830186612a4b565b612da96040830185612d0c565b8181036060830152612dbb8184612a69565b905095945050505050565b6000602082019050612ddb6000830184612a5a565b92915050565b60006020820190508181036000830152612dfb8184612aa2565b905092915050565b60006020820190508181036000830152612e1c81612b8b565b9050919050565b60006020820190508181036000830152612e3c81612bae565b9050919050565b60006020820190508181036000830152612e5c81612bd1565b9050919050565b60006020820190508181036000830152612e7c81612bf4565b9050919050565b60006020820190508181036000830152612e9c81612c3a565b9050919050565b60006020820190508181036000830152612ebc81612c5d565b9050919050565b60006020820190508181036000830152612edc81612ca3565b9050919050565b60006020820190508181036000830152612efc81612cc6565b9050919050565b60006020820190508181036000830152612f1c81612ce9565b9050919050565b6000602082019050612f386000830184612d0c565b92915050565b6000612f48612f59565b9050612f548282613225565b919050565b6000604051905090565b600067ffffffffffffffff821115612f7e57612f7d61338c565b5b612f87826133cf565b9050602081019050919050565b600067ffffffffffffffff821115612faf57612fae61338c565b5b612fb8826133cf565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613033826131a7565b915061303e836131a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613073576130726132d0565b5b828201905092915050565b6000613089826131a7565b9150613094836131a7565b9250826130a4576130a36132ff565b5b828204905092915050565b60006130ba826131a7565b91506130c5836131a7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130fe576130fd6132d0565b5b828202905092915050565b6000613114826131a7565b915061311f836131a7565b925082821015613132576131316132d0565b5b828203905092915050565b600061314882613187565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131de5780820151818401526020810190506131c3565b838111156131ed576000848401525b50505050565b6000600282049050600182168061320b57607f821691505b6020821081141561321f5761321e61332e565b5b50919050565b61322e826133cf565b810181811067ffffffffffffffff8211171561324d5761324c61338c565b5b80604052505050565b6000613261826131a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613294576132936132d0565b5b600182019050919050565b60006132aa826131a7565b91506132b5836131a7565b9250826132c5576132c46132ff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6135d28161313d565b81146135dd57600080fd5b50565b6135e98161314f565b81146135f457600080fd5b50565b6136008161315b565b811461360b57600080fd5b50565b613617816131a7565b811461362257600080fd5b5056fea2646970667358221220f205d0f083e2994c7422ee0f24d15b3bb45d166ebfa3e2165d136db88db80cf564736f6c63430008070033697066733a2f2f62616679626569686c376b6279356a686e6e61687a326235666663643335776d6c6e336a646b7065716171636c6c32726f776a6c657a6462637a712f

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806392910eec11610102578063d123973011610095578063e8d600f811610064578063e8d600f814610665578063e985e9c51461068e578063f2fde38b146106cb578063f968adbe146106f4576101d8565b8063d1239730146105cd578063d3dd5fe0146105f8578063d5abeb011461060f578063dad7b5c91461063a576101d8565b8063a22cb465116100d1578063a22cb46514610513578063a70273571461053c578063b88d4fde14610567578063c87b56dd14610590576101d8565b806392910eec1461047857806395d89b41146104a1578063a035b1fe146104cc578063a0712d68146104f7576101d8565b80633ccfd60b1161017a57806370a082311161014957806370a08231146103d0578063715018a61461040d5780638da5cb5b1461042457806391b7f5ed1461044f576101d8565b80633ccfd60b1461032a57806342842e0e1461034157806355f804b31461036a5780636352211e14610393576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d6578063333e44e6146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061297b565b61071f565b6040516102119190612dc6565b60405180910390f35b34801561022657600080fd5b5061022f6107b1565b60405161023c9190612de1565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612a1e565b610843565b6040516102799190612d5f565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a4919061293b565b6108bf565b005b3480156102b757600080fd5b506102c0610a66565b6040516102cd9190612f23565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190612825565b610a7d565b005b34801561030b57600080fd5b50610314610a8d565b6040516103219190612f23565b60405180910390f35b34801561033657600080fd5b5061033f610a93565b005b34801561034d57600080fd5b5061036860048036038101906103639190612825565b610bbe565b005b34801561037657600080fd5b50610391600480360381019061038c91906129d5565b610bde565b005b34801561039f57600080fd5b506103ba60048036038101906103b59190612a1e565b610c74565b6040516103c79190612d5f565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f291906127b8565b610c86565b6040516104049190612f23565b60405180910390f35b34801561041957600080fd5b50610422610d3f565b005b34801561043057600080fd5b50610439610dc7565b6040516104469190612d5f565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612a1e565b610df1565b005b34801561048457600080fd5b5061049f600480360381019061049a9190612a1e565b610e77565b005b3480156104ad57600080fd5b506104b6610efd565b6040516104c39190612de1565b60405180910390f35b3480156104d857600080fd5b506104e1610f8f565b6040516104ee9190612f23565b60405180910390f35b610511600480360381019061050c9190612a1e565b610f95565b005b34801561051f57600080fd5b5061053a600480360381019061053591906128fb565b6114bb565b005b34801561054857600080fd5b50610551611633565b60405161055e9190612f23565b60405180910390f35b34801561057357600080fd5b5061058e60048036038101906105899190612878565b611639565b005b34801561059c57600080fd5b506105b760048036038101906105b29190612a1e565b6116ac565b6040516105c49190612de1565b60405180910390f35b3480156105d957600080fd5b506105e2611728565b6040516105ef9190612dc6565b60405180910390f35b34801561060457600080fd5b5061060d61173b565b005b34801561061b57600080fd5b506106246117e3565b6040516106319190612f23565b60405180910390f35b34801561064657600080fd5b5061064f6117e9565b60405161065c9190612f23565b60405180910390f35b34801561067157600080fd5b5061068c6004803603810190610687919061293b565b6117ef565b005b34801561069a57600080fd5b506106b560048036038101906106b091906127e5565b6118d0565b6040516106c29190612dc6565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed91906127b8565b611964565b005b34801561070057600080fd5b50610709611a5c565b6040516107169190612f23565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107aa5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107c0906131f3565b80601f01602080910402602001604051908101604052809291908181526020018280546107ec906131f3565b80156108395780601f1061080e57610100808354040283529160200191610839565b820191906000526020600020905b81548152906001019060200180831161081c57829003601f168201915b5050505050905090565b600061084e82611a62565b610884576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ca82611ac1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610932576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610951611b8f565b73ffffffffffffffffffffffffffffffffffffffff16146109b45761097d81610978611b8f565b6118d0565b6109b3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a70611b97565b6001546000540303905090565b610a88838383611ba0565b505050565b600d5481565b610a9b611f4a565b73ffffffffffffffffffffffffffffffffffffffff16610ab9610dc7565b73ffffffffffffffffffffffffffffffffffffffff1614610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690612e83565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610b3590612d4a565b60006040518083038185875af1925050503d8060008114610b72576040519150601f19603f3d011682016040523d82523d6000602084013e610b77565b606091505b5050905080610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290612ec3565b60405180910390fd5b50565b610bd983838360405180602001604052806000815250611639565b505050565b610be6611f4a565b73ffffffffffffffffffffffffffffffffffffffff16610c04610dc7565b73ffffffffffffffffffffffffffffffffffffffff1614610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190612e83565b60405180910390fd5b8060099080519060200190610c709291906125cc565b5050565b6000610c7f82611ac1565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cee576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d47611f4a565b73ffffffffffffffffffffffffffffffffffffffff16610d65610dc7565b73ffffffffffffffffffffffffffffffffffffffff1614610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290612e83565b60405180910390fd5b610dc56000611f52565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610df9611f4a565b73ffffffffffffffffffffffffffffffffffffffff16610e17610dc7565b73ffffffffffffffffffffffffffffffffffffffff1614610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490612e83565b60405180910390fd5b80600a8190555050565b610e7f611f4a565b73ffffffffffffffffffffffffffffffffffffffff16610e9d610dc7565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90612e83565b60405180910390fd5b80600d8190555050565b606060038054610f0c906131f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610f38906131f3565b8015610f855780601f10610f5a57610100808354040283529160200191610f85565b820191906000526020600020905b815481529060010190602001808311610f6857829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d54610fad9190613028565b83601054610fbb9190613028565b1080156110085750600c54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b9050801561137257600f60009054906101000a900460ff1661105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690612e03565b60405180910390fd5b600e548361106b610a66565b6110759190613028565b11156110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90612e23565b60405180910390fd5b600b548311156110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290612f03565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c546111489190613109565b83106112645781601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c5461119c9190613109565b6111a691906130af565b82846111b291906130af565b6111bc9190613109565b3410156111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590612e63565b60405180910390fd5b600c54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c54601060008282546112589190613028565b9250508190555061136d565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c546112b19190613109565b83101561136c5760003410156112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390612e63565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461134b9190613028565b9250508190555082601060008282546113649190613028565b925050819055505b5b6114ac565b600f60009054906101000a900460ff166113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890612e03565b60405180910390fd5b81836113cd91906130af565b34101561140f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140690612e63565b60405180910390fd5b600e548361141b610a66565b6114259190613028565b1115611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d90612ee3565b60405180910390fd5b600b548311156114ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a290612f03565b60405180910390fd5b5b6114b63384612018565b505050565b6114c3611b8f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611528576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611535611b8f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115e2611b8f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116279190612dc6565b60405180910390a35050565b600c5481565b611644848484611ba0565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116a65761166f84848484612036565b6116a5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606116b782611a62565b6116f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ed90612ea3565b60405180910390fd5b600961170183612196565b604051602001611712929190612d1b565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b611743611f4a565b73ffffffffffffffffffffffffffffffffffffffff16611761610dc7565b73ffffffffffffffffffffffffffffffffffffffff16146117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90612e83565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600e5481565b60105481565b6117f7611f4a565b73ffffffffffffffffffffffffffffffffffffffff16611815610dc7565b73ffffffffffffffffffffffffffffffffffffffff161461186b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186290612e83565b60405180910390fd5b600e5481611877610a66565b6118819190613028565b11156118c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b990612ee3565b60405180910390fd5b6118cc8282612018565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61196c611f4a565b73ffffffffffffffffffffffffffffffffffffffff1661198a610dc7565b73ffffffffffffffffffffffffffffffffffffffff16146119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790612e83565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4790612e43565b60405180910390fd5b611a5981611f52565b50565b600b5481565b600081611a6d611b97565b11158015611a7c575060005482105b8015611aba575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611ad0611b97565b11611b5857600054811015611b575760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b55575b6000811415611b4b576004600083600190039350838152602001908152602001600020549050611b20565b8092505050611b8a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611bab82611ac1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c12576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c33611b8f565b73ffffffffffffffffffffffffffffffffffffffff161480611c625750611c6185611c5c611b8f565b6118d0565b5b80611ca75750611c70611b8f565b73ffffffffffffffffffffffffffffffffffffffff16611c8f84610843565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ce0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d47576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d5485858560016122f7565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611e51866122fd565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611edb576000600184019050600060046000838152602001908152602001600020541415611ed9576000548114611ed8578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f438585856001612307565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61203282826040518060200160405280600081525061230d565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261205c611b8f565b8786866040518563ffffffff1660e01b815260040161207e9493929190612d7a565b602060405180830381600087803b15801561209857600080fd5b505af19250505080156120c957506040513d601f19601f820116820180604052508101906120c691906129a8565b60015b612143573d80600081146120f9576040519150601f19603f3d011682016040523d82523d6000602084013e6120fe565b606091505b5060008151141561213b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156121de576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122f2565b600082905060005b600082146122105780806121f990613256565b915050600a82612209919061307e565b91506121e6565b60008167ffffffffffffffff81111561222c5761222b61338c565b5b6040519080825280601f01601f19166020018201604052801561225e5781602001600182028036833780820191505090505b5090505b600085146122eb576001826122779190613109565b9150600a85612286919061329f565b60306122929190613028565b60f81b8183815181106122a8576122a761335d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122e4919061307e565b9450612262565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561237a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156123b5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123c260008583866122f7565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612427600185146125c2565b901b60a042901b612437866122fd565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1461253b575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124eb6000878480600101955087612036565b612521576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061247c57826000541461253657600080fd5b6125a6565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061253c575b8160008190555050506125bc6000858386612307565b50505050565b6000819050919050565b8280546125d8906131f3565b90600052602060002090601f0160209004810192826125fa5760008555612641565b82601f1061261357805160ff1916838001178555612641565b82800160010185558215612641579182015b82811115612640578251825591602001919060010190612625565b5b50905061264e9190612652565b5090565b5b8082111561266b576000816000905550600101612653565b5090565b600061268261267d84612f63565b612f3e565b90508281526020810184848401111561269e5761269d6133c0565b5b6126a98482856131b1565b509392505050565b60006126c46126bf84612f94565b612f3e565b9050828152602081018484840111156126e0576126df6133c0565b5b6126eb8482856131b1565b509392505050565b600081359050612702816135c9565b92915050565b600081359050612717816135e0565b92915050565b60008135905061272c816135f7565b92915050565b600081519050612741816135f7565b92915050565b600082601f83011261275c5761275b6133bb565b5b813561276c84826020860161266f565b91505092915050565b600082601f83011261278a576127896133bb565b5b813561279a8482602086016126b1565b91505092915050565b6000813590506127b28161360e565b92915050565b6000602082840312156127ce576127cd6133ca565b5b60006127dc848285016126f3565b91505092915050565b600080604083850312156127fc576127fb6133ca565b5b600061280a858286016126f3565b925050602061281b858286016126f3565b9150509250929050565b60008060006060848603121561283e5761283d6133ca565b5b600061284c868287016126f3565b935050602061285d868287016126f3565b925050604061286e868287016127a3565b9150509250925092565b60008060008060808587031215612892576128916133ca565b5b60006128a0878288016126f3565b94505060206128b1878288016126f3565b93505060406128c2878288016127a3565b925050606085013567ffffffffffffffff8111156128e3576128e26133c5565b5b6128ef87828801612747565b91505092959194509250565b60008060408385031215612912576129116133ca565b5b6000612920858286016126f3565b925050602061293185828601612708565b9150509250929050565b60008060408385031215612952576129516133ca565b5b6000612960858286016126f3565b9250506020612971858286016127a3565b9150509250929050565b600060208284031215612991576129906133ca565b5b600061299f8482850161271d565b91505092915050565b6000602082840312156129be576129bd6133ca565b5b60006129cc84828501612732565b91505092915050565b6000602082840312156129eb576129ea6133ca565b5b600082013567ffffffffffffffff811115612a0957612a086133c5565b5b612a1584828501612775565b91505092915050565b600060208284031215612a3457612a336133ca565b5b6000612a42848285016127a3565b91505092915050565b612a548161313d565b82525050565b612a638161314f565b82525050565b6000612a7482612fda565b612a7e8185612ff0565b9350612a8e8185602086016131c0565b612a97816133cf565b840191505092915050565b6000612aad82612fe5565b612ab7818561300c565b9350612ac78185602086016131c0565b612ad0816133cf565b840191505092915050565b6000612ae682612fe5565b612af0818561301d565b9350612b008185602086016131c0565b80840191505092915050565b60008154612b19816131f3565b612b23818661301d565b94506001821660008114612b3e5760018114612b4f57612b82565b60ff19831686528186019350612b82565b612b5885612fc5565b60005b83811015612b7a57815481890152600182019150602081019050612b5b565b838801955050505b50505092915050565b6000612b9860148361300c565b9150612ba3826133e0565b602082019050919050565b6000612bbb60078361300c565b9150612bc682613409565b602082019050919050565b6000612bde60268361300c565b9150612be982613432565b604082019050919050565b6000612c0160208361300c565b9150612c0c82613481565b602082019050919050565b6000612c2460058361301d565b9150612c2f826134aa565b600582019050919050565b6000612c4760208361300c565b9150612c52826134d3565b602082019050919050565b6000612c6a602f8361300c565b9150612c75826134fc565b604082019050919050565b6000612c8d600083613001565b9150612c988261354b565b600082019050919050565b6000612cb060108361300c565b9150612cbb8261354e565b602082019050919050565b6000612cd360088361300c565b9150612cde82613577565b602082019050919050565b6000612cf660138361300c565b9150612d01826135a0565b602082019050919050565b612d15816131a7565b82525050565b6000612d278285612b0c565b9150612d338284612adb565b9150612d3e82612c17565b91508190509392505050565b6000612d5582612c80565b9150819050919050565b6000602082019050612d746000830184612a4b565b92915050565b6000608082019050612d8f6000830187612a4b565b612d9c6020830186612a4b565b612da96040830185612d0c565b8181036060830152612dbb8184612a69565b905095945050505050565b6000602082019050612ddb6000830184612a5a565b92915050565b60006020820190508181036000830152612dfb8184612aa2565b905092915050565b60006020820190508181036000830152612e1c81612b8b565b9050919050565b60006020820190508181036000830152612e3c81612bae565b9050919050565b60006020820190508181036000830152612e5c81612bd1565b9050919050565b60006020820190508181036000830152612e7c81612bf4565b9050919050565b60006020820190508181036000830152612e9c81612c3a565b9050919050565b60006020820190508181036000830152612ebc81612c5d565b9050919050565b60006020820190508181036000830152612edc81612ca3565b9050919050565b60006020820190508181036000830152612efc81612cc6565b9050919050565b60006020820190508181036000830152612f1c81612ce9565b9050919050565b6000602082019050612f386000830184612d0c565b92915050565b6000612f48612f59565b9050612f548282613225565b919050565b6000604051905090565b600067ffffffffffffffff821115612f7e57612f7d61338c565b5b612f87826133cf565b9050602081019050919050565b600067ffffffffffffffff821115612faf57612fae61338c565b5b612fb8826133cf565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613033826131a7565b915061303e836131a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613073576130726132d0565b5b828201905092915050565b6000613089826131a7565b9150613094836131a7565b9250826130a4576130a36132ff565b5b828204905092915050565b60006130ba826131a7565b91506130c5836131a7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130fe576130fd6132d0565b5b828202905092915050565b6000613114826131a7565b915061311f836131a7565b925082821015613132576131316132d0565b5b828203905092915050565b600061314882613187565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131de5780820151818401526020810190506131c3565b838111156131ed576000848401525b50505050565b6000600282049050600182168061320b57607f821691505b6020821081141561321f5761321e61332e565b5b50919050565b61322e826133cf565b810181811067ffffffffffffffff8211171561324d5761324c61338c565b5b80604052505050565b6000613261826131a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613294576132936132d0565b5b600182019050919050565b60006132aa826131a7565b91506132b5836131a7565b9250826132c5576132c46132ff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6135d28161313d565b81146135dd57600080fd5b50565b6135e98161314f565b81146135f457600080fd5b50565b6136008161315b565b811461360b57600080fd5b50565b613617816131a7565b811461362257600080fd5b5056fea2646970667358221220f205d0f083e2994c7422ee0f24d15b3bb45d166ebfa3e2165d136db88db80cf564736f6c63430008070033

Deployed Bytecode Sourcemap

76661:3154:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13234:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18247:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20315:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19775:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12288:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21201:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76980:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79604:206;;;;;;;;;;;;;:::i;:::-;;21442:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79024:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18036:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13913:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43755:103;;;;;;;;;;;;;:::i;:::-;;43104:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79223:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79120:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18416:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76856:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77269:1430;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20591:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76936:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21698:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78707:309;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77060:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79323:86;;;;;;;;;;;;;:::i;:::-;;77020:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77103:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79417:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20970:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44013:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76899:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13234:615;13319:4;13634:10;13619:25;;:11;:25;;;;:102;;;;13711:10;13696:25;;:11;:25;;;;13619:102;:179;;;;13788:10;13773:25;;:11;:25;;;;13619:179;13599:199;;13234:615;;;:::o;18247:100::-;18301:13;18334:5;18327:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18247:100;:::o;20315:204::-;20383:7;20408:16;20416:7;20408;:16::i;:::-;20403:64;;20433:34;;;;;;;;;;;;;;20403:64;20487:15;:24;20503:7;20487:24;;;;;;;;;;;;;;;;;;;;;20480:31;;20315:204;;;:::o;19775:474::-;19848:13;19880:27;19899:7;19880:18;:27::i;:::-;19848:61;;19930:5;19924:11;;:2;:11;;;19920:48;;;19944:24;;;;;;;;;;;;;;19920:48;20008:5;19985:28;;:19;:17;:19::i;:::-;:28;;;19981:175;;20033:44;20050:5;20057:19;:17;:19::i;:::-;20033:16;:44::i;:::-;20028:128;;20105:35;;;;;;;;;;;;;;20028:128;19981:175;20195:2;20168:15;:24;20184:7;20168:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20233:7;20229:2;20213:28;;20222:5;20213:28;;;;;;;;;;;;19837:412;19775:474;;:::o;12288:315::-;12341:7;12569:15;:13;:15::i;:::-;12554:12;;12538:13;;:28;:46;12531:53;;12288:315;:::o;21201:170::-;21335:28;21345:4;21351:2;21355:7;21335:9;:28::i;:::-;21201:170;;;:::o;76980:31::-;;;;:::o;79604:206::-;43335:12;:10;:12::i;:::-;43324:23;;:7;:5;:7::i;:::-;:23;;;43316:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79655:12:::1;79681:10;79673:24;;79719:21;79673:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79654:101;;;79774:7;79766:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;79643:167;79604:206::o:0;21442:185::-;21580:39;21597:4;21603:2;21607:7;21580:39;;;;;;;;;;;;:16;:39::i;:::-;21442:185;;;:::o;79024:88::-;43335:12;:10;:12::i;:::-;43324:23;;:7;:5;:7::i;:::-;:23;;;43316:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79101:3:::1;79091:7;:13;;;;;;;;;;;;:::i;:::-;;79024:88:::0;:::o;18036:144::-;18100:7;18143:27;18162:7;18143:18;:27::i;:::-;18120:52;;18036:144;;;:::o;13913:224::-;13977:7;14018:1;14001:19;;:5;:19;;;13997:60;;;14029:28;;;;;;;;;;;;;;13997:60;9252:13;14075:18;:25;14094:5;14075:25;;;;;;;;;;;;;;;;:54;14068:61;;13913:224;;;:::o;43755:103::-;43335:12;:10;:12::i;:::-;43324:23;;:7;:5;:7::i;:::-;:23;;;43316:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43820:30:::1;43847:1;43820:18;:30::i;:::-;43755:103::o:0;43104:87::-;43150:7;43177:6;;;;;;;;;;;43170:13;;43104:87;:::o;79223:92::-;43335:12;:10;:12::i;:::-;43324:23;;:7;:5;:7::i;:::-;:23;;;43316:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79298:9:::1;79290:5;:17;;;;79223:92:::0;:::o;79120:95::-;43335:12;:10;:12::i;:::-;43324:23;;:7;:5;:7::i;:::-;:23;;;43316:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79201:6:::1;79189:9;:18;;;;79120:95:::0;:::o;18416:104::-;18472:13;18505:7;18498:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18416:104;:::o;76856:34::-;;;;:::o;77269:1430::-;77326:12;77341:5;;77326:20;;77357:11;77411:1;77399:9;;:13;;;;:::i;:::-;77391:5;77373:15;;:23;;;;:::i;:::-;:39;77372:108;;;;;77463:16;;77431:17;:29;77449:10;77431:29;;;;;;;;;;;;;;;;:48;77372:108;77357:124;;77498:6;77494:1157;;;77530:11;;;;;;;;;;;77522:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;77614:9;;77605:5;77589:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;77581:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;77667:8;;77658:5;:17;;77650:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;77746:17;:29;77764:10;77746:29;;;;;;;;;;;;;;;;77727:16;;:48;;;;:::i;:::-;77717:5;:59;77714:638;;77899:4;77866:17;:29;77884:10;77866:29;;;;;;;;;;;;;;;;77847:16;;:48;;;;:::i;:::-;77846:57;;;;:::i;:::-;77837:4;77829:5;:12;;;;:::i;:::-;77828:76;;;;:::i;:::-;77815:9;:89;;77807:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;77989:16;;77957:17;:29;77975:10;77957:29;;;;;;;;;;;;;;;:48;;;;78040:16;;78021:15;;:35;;;;;;;:::i;:::-;;;;;;;;77714:638;;;78122:17;:29;78140:10;78122:29;;;;;;;;;;;;;;;;78103:16;;:48;;;;:::i;:::-;78094:5;:58;78091:261;;;78204:1;78191:9;:14;;78183:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;78291:5;78258:17;:29;78276:10;78258:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;78331:5;78312:15;;:24;;;;;;;:::i;:::-;;;;;;;;78091:261;77714:638;77494:1157;;;78396:11;;;;;;;;;;;78388:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;78472:4;78464:5;:12;;;;:::i;:::-;78451:9;:25;;78443:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;78557:9;;78548:5;78532:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;78524:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;78607:8;;78598:5;:17;;78590:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;77494:1157;78663:28;78673:10;78685:5;78663:9;:28::i;:::-;77315:1384;;77269:1430;:::o;20591:308::-;20702:19;:17;:19::i;:::-;20690:31;;:8;:31;;;20686:61;;;20730:17;;;;;;;;;;;;;;20686:61;20812:8;20760:18;:39;20779:19;:17;:19::i;:::-;20760:39;;;;;;;;;;;;;;;:49;20800:8;20760:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20872:8;20836:55;;20851:19;:17;:19::i;:::-;20836:55;;;20882:8;20836:55;;;;;;:::i;:::-;;;;;;;;20591:308;;:::o;76936:35::-;;;;:::o;21698:396::-;21865:28;21875:4;21881:2;21885:7;21865:9;:28::i;:::-;21926:1;21908:2;:14;;;:19;21904:183;;21947:56;21978:4;21984:2;21988:7;21997:5;21947:30;:56::i;:::-;21942:145;;22031:40;;;;;;;;;;;;;;21942:145;21904:183;21698:396;;;;:::o;78707:309::-;78789:13;78837:16;78845:7;78837;:16::i;:::-;78815:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;78970:7;78979:18;:7;:16;:18::i;:::-;78953:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78939:69;;78707:309;;;:::o;77060:30::-;;;;;;;;;;;;;:::o;79323:86::-;43335:12;:10;:12::i;:::-;43324:23;;:7;:5;:7::i;:::-;:23;;;43316:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79390:11:::1;;;;;;;;;;;79389:12;79375:11;;:26;;;;;;;;;;;;;;;;;;79323:86::o:0;77020:31::-;;;;:::o;77103:33::-;;;;:::o;79417:179::-;43335:12;:10;:12::i;:::-;43324:23;;:7;:5;:7::i;:::-;:23;;;43316:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79529:9:::1;;79520:5;79504:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;79496:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;79562:26;79572:8;79582:5;79562:9;:26::i;:::-;79417:179:::0;;:::o;20970:164::-;21067:4;21091:18;:25;21110:5;21091:25;;;;;;;;;;;;;;;:35;21117:8;21091:35;;;;;;;;;;;;;;;;;;;;;;;;;21084:42;;20970:164;;;;:::o;44013:201::-;43335:12;:10;:12::i;:::-;43324:23;;:7;:5;:7::i;:::-;:23;;;43316:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44122:1:::1;44102:22;;:8;:22;;;;44094:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44178:28;44197:8;44178:18;:28::i;:::-;44013:201:::0;:::o;76899:28::-;;;;:::o;22349:273::-;22406:4;22462:7;22443:15;:13;:15::i;:::-;:26;;:66;;;;;22496:13;;22486:7;:23;22443:66;:152;;;;;22594:1;10022:8;22547:17;:26;22565:7;22547:26;;;;;;;;;;;;:43;:48;22443:152;22423:172;;22349:273;;;:::o;15551:1129::-;15618:7;15638:12;15653:7;15638:22;;15721:4;15702:15;:13;:15::i;:::-;:23;15698:915;;15755:13;;15748:4;:20;15744:869;;;15793:14;15810:17;:23;15828:4;15810:23;;;;;;;;;;;;15793:40;;15926:1;10022:8;15899:6;:23;:28;15895:699;;;16418:113;16435:1;16425:6;:11;16418:113;;;16478:17;:25;16496:6;;;;;;;16478:25;;;;;;;;;;;;16469:34;;16418:113;;;16564:6;16557:13;;;;;;15895:699;15770:843;15744:869;15698:915;16641:31;;;;;;;;;;;;;;15551:1129;;;;:::o;36331:105::-;36391:7;36418:10;36411:17;;36331:105;:::o;11811:92::-;11867:7;11894:1;11887:8;;11811:92;:::o;27588:2515::-;27703:27;27733;27752:7;27733:18;:27::i;:::-;27703:57;;27818:4;27777:45;;27793:19;27777:45;;;27773:86;;27831:28;;;;;;;;;;;;;;27773:86;27872:22;27921:4;27898:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27942:43;27959:4;27965:19;:17;:19::i;:::-;27942:16;:43::i;:::-;27898:87;:147;;;;28026:19;:17;:19::i;:::-;28002:43;;:20;28014:7;28002:11;:20::i;:::-;:43;;;27898:147;27872:174;;28064:17;28059:66;;28090:35;;;;;;;;;;;;;;28059:66;28154:1;28140:16;;:2;:16;;;28136:52;;;28165:23;;;;;;;;;;;;;;28136:52;28201:43;28223:4;28229:2;28233:7;28242:1;28201:21;:43::i;:::-;28317:15;:24;28333:7;28317:24;;;;;;;;;;;;28310:31;;;;;;;;;;;28709:18;:24;28728:4;28709:24;;;;;;;;;;;;;;;;28707:26;;;;;;;;;;;;28778:18;:22;28797:2;28778:22;;;;;;;;;;;;;;;;28776:24;;;;;;;;;;;10304:8;9906:3;29159:15;:41;;29117:21;29135:2;29117:17;:21::i;:::-;:84;:128;29071:17;:26;29089:7;29071:26;;;;;;;;;;;:174;;;;29415:1;10304:8;29365:19;:46;:51;29361:626;;;29437:19;29469:1;29459:7;:11;29437:33;;29626:1;29592:17;:30;29610:11;29592:30;;;;;;;;;;;;:35;29588:384;;;29730:13;;29715:11;:28;29711:242;;29910:19;29877:17;:30;29895:11;29877:30;;;;;;;;;;;:52;;;;29711:242;29588:384;29418:569;29361:626;30034:7;30030:2;30015:27;;30024:4;30015:27;;;;;;;;;;;;30053:42;30074:4;30080:2;30084:7;30093:1;30053:20;:42::i;:::-;27692:2411;;27588:2515;;;:::o;41775:98::-;41828:7;41855:10;41848:17;;41775:98;:::o;44374:191::-;44448:16;44467:6;;;;;;;;;;;44448:25;;44493:8;44484:6;;:17;;;;;;;;;;;;;;;;;;44548:8;44517:40;;44538:8;44517:40;;;;;;;;;;;;44437:128;44374:191;:::o;22706:104::-;22775:27;22785:2;22789:8;22775:27;;;;;;;;;;;;:9;:27::i;:::-;22706:104;;:::o;33800:716::-;33963:4;34009:2;33984:45;;;34030:19;:17;:19::i;:::-;34051:4;34057:7;34066:5;33984:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33980:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34284:1;34267:6;:13;:18;34263:235;;;34313:40;;;;;;;;;;;;;;34263:235;34456:6;34450:13;34441:6;34437:2;34433:15;34426:38;33980:529;34153:54;;;34143:64;;;:6;:64;;;;34136:71;;;33800:716;;;;;;:::o;38976:723::-;39032:13;39262:1;39253:5;:10;39249:53;;;39280:10;;;;;;;;;;;;;;;;;;;;;39249:53;39312:12;39327:5;39312:20;;39343:14;39368:78;39383:1;39375:4;:9;39368:78;;39401:8;;;;;:::i;:::-;;;;39432:2;39424:10;;;;;:::i;:::-;;;39368:78;;;39456:19;39488:6;39478:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39456:39;;39506:154;39522:1;39513:5;:10;39506:154;;39550:1;39540:11;;;;;:::i;:::-;;;39617:2;39609:5;:10;;;;:::i;:::-;39596:2;:24;;;;:::i;:::-;39583:39;;39566:6;39573;39566:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;39646:2;39637:11;;;;;:::i;:::-;;;39506:154;;;39684:6;39670:21;;;;;38976:723;;;;:::o;35164:159::-;;;;;:::o;19336:148::-;19400:14;19461:5;19451:15;;19336:148;;;:::o;35982:158::-;;;;;:::o;23183:2236::-;23306:20;23329:13;;23306:36;;23371:1;23357:16;;:2;:16;;;23353:48;;;23382:19;;;;;;;;;;;;;;23353:48;23428:1;23416:8;:13;23412:44;;;23438:18;;;;;;;;;;;;;;23412:44;23469:61;23499:1;23503:2;23507:12;23521:8;23469:21;:61::i;:::-;24073:1;9389:2;24044:1;:25;;24043:31;24031:8;:44;24005:18;:22;24024:2;24005:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;10169:3;24474:29;24501:1;24489:8;:13;24474:14;:29::i;:::-;:56;;9906:3;24411:15;:41;;24369:21;24387:2;24369:17;:21::i;:::-;:84;:162;24318:17;:31;24336:12;24318:31;;;;;;;;;;;:213;;;;24548:20;24571:12;24548:35;;24598:11;24627:8;24612:12;:23;24598:37;;24674:1;24656:2;:14;;;:19;24652:635;;24696:313;24752:12;24748:2;24727:38;;24744:1;24727:38;;;;;;;;;;;;24793:69;24832:1;24836:2;24840:14;;;;;;24856:5;24793:30;:69::i;:::-;24788:174;;24898:40;;;;;;;;;;;;;;24788:174;25004:3;24989:12;:18;24696:313;;25090:12;25073:13;;:29;25069:43;;25104:8;;;25069:43;24652:635;;;25153:119;25209:14;;;;;;25205:2;25184:40;;25201:1;25184:40;;;;;;;;;;;;25267:3;25252:12;:18;25153:119;;24652:635;25317:12;25301:13;:28;;;;23782:1559;;25351:60;25380:1;25384:2;25388:12;25402:8;25351:20;:60::i;:::-;23295:2124;23183:2236;;;:::o;19571:142::-;19629:14;19690:5;19680:15;;19571:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:365::-;9905:3;9926:66;9990:1;9985:3;9926:66;:::i;:::-;9919:73;;10001:93;10090:3;10001:93;:::i;:::-;10119:2;10114:3;10110:12;10103:19;;9763:365;;;:::o;10134:366::-;10276:3;10297:67;10361:2;10356:3;10297:67;:::i;:::-;10290:74;;10373:93;10462:3;10373:93;:::i;:::-;10491:2;10486:3;10482:12;10475:19;;10134:366;;;:::o;10506:::-;10648:3;10669:67;10733:2;10728:3;10669:67;:::i;:::-;10662:74;;10745:93;10834:3;10745:93;:::i;:::-;10863:2;10858:3;10854:12;10847:19;;10506:366;;;:::o;10878:400::-;11038:3;11059:84;11141:1;11136:3;11059:84;:::i;:::-;11052:91;;11152:93;11241:3;11152:93;:::i;:::-;11270:1;11265:3;11261:11;11254:18;;10878:400;;;:::o;11284:366::-;11426:3;11447:67;11511:2;11506:3;11447:67;:::i;:::-;11440:74;;11523:93;11612:3;11523:93;:::i;:::-;11641:2;11636:3;11632:12;11625:19;;11284:366;;;:::o;11656:::-;11798:3;11819:67;11883:2;11878:3;11819:67;:::i;:::-;11812:74;;11895:93;11984:3;11895:93;:::i;:::-;12013:2;12008:3;12004:12;11997:19;;11656:366;;;:::o;12028:398::-;12187:3;12208:83;12289:1;12284:3;12208:83;:::i;:::-;12201:90;;12300:93;12389:3;12300:93;:::i;:::-;12418:1;12413:3;12409:11;12402:18;;12028:398;;;:::o;12432:366::-;12574:3;12595:67;12659:2;12654:3;12595:67;:::i;:::-;12588:74;;12671:93;12760:3;12671:93;:::i;:::-;12789:2;12784:3;12780:12;12773:19;;12432:366;;;:::o;12804:365::-;12946:3;12967:66;13031:1;13026:3;12967:66;:::i;:::-;12960:73;;13042:93;13131:3;13042:93;:::i;:::-;13160:2;13155:3;13151:12;13144:19;;12804:365;;;:::o;13175:366::-;13317:3;13338:67;13402:2;13397:3;13338:67;:::i;:::-;13331:74;;13414:93;13503:3;13414:93;:::i;:::-;13532:2;13527:3;13523:12;13516:19;;13175:366;;;:::o;13547:118::-;13634:24;13652:5;13634:24;:::i;:::-;13629:3;13622:37;13547:118;;:::o;13671:695::-;13949:3;13971:92;14059:3;14050:6;13971:92;:::i;:::-;13964:99;;14080:95;14171:3;14162:6;14080:95;:::i;:::-;14073:102;;14192:148;14336:3;14192:148;:::i;:::-;14185:155;;14357:3;14350:10;;13671:695;;;;;:::o;14372:379::-;14556:3;14578:147;14721:3;14578:147;:::i;:::-;14571:154;;14742:3;14735:10;;14372:379;;;:::o;14757:222::-;14850:4;14888:2;14877:9;14873:18;14865:26;;14901:71;14969:1;14958:9;14954:17;14945:6;14901:71;:::i;:::-;14757:222;;;;:::o;14985:640::-;15180:4;15218:3;15207:9;15203:19;15195:27;;15232:71;15300:1;15289:9;15285:17;15276:6;15232:71;:::i;:::-;15313:72;15381:2;15370:9;15366:18;15357:6;15313:72;:::i;:::-;15395;15463:2;15452:9;15448:18;15439:6;15395:72;:::i;:::-;15514:9;15508:4;15504:20;15499:2;15488:9;15484:18;15477:48;15542:76;15613:4;15604:6;15542:76;:::i;:::-;15534:84;;14985:640;;;;;;;:::o;15631:210::-;15718:4;15756:2;15745:9;15741:18;15733:26;;15769:65;15831:1;15820:9;15816:17;15807:6;15769:65;:::i;:::-;15631:210;;;;:::o;15847:313::-;15960:4;15998:2;15987:9;15983:18;15975:26;;16047:9;16041:4;16037:20;16033:1;16022:9;16018:17;16011:47;16075:78;16148:4;16139:6;16075:78;:::i;:::-;16067:86;;15847:313;;;;:::o;16166:419::-;16332:4;16370:2;16359:9;16355:18;16347:26;;16419:9;16413:4;16409:20;16405:1;16394:9;16390:17;16383:47;16447:131;16573:4;16447:131;:::i;:::-;16439:139;;16166:419;;;:::o;16591:::-;16757:4;16795:2;16784:9;16780:18;16772:26;;16844:9;16838:4;16834:20;16830:1;16819:9;16815:17;16808:47;16872:131;16998:4;16872:131;:::i;:::-;16864:139;;16591:419;;;:::o;17016:::-;17182:4;17220:2;17209:9;17205:18;17197:26;;17269:9;17263:4;17259:20;17255:1;17244:9;17240:17;17233:47;17297:131;17423:4;17297:131;:::i;:::-;17289:139;;17016:419;;;:::o;17441:::-;17607:4;17645:2;17634:9;17630:18;17622:26;;17694:9;17688:4;17684:20;17680:1;17669:9;17665:17;17658:47;17722:131;17848:4;17722:131;:::i;:::-;17714:139;;17441:419;;;:::o;17866:::-;18032:4;18070:2;18059:9;18055:18;18047:26;;18119:9;18113:4;18109:20;18105:1;18094:9;18090:17;18083:47;18147:131;18273:4;18147:131;:::i;:::-;18139:139;;17866:419;;;:::o;18291:::-;18457:4;18495:2;18484:9;18480:18;18472:26;;18544:9;18538:4;18534:20;18530:1;18519:9;18515:17;18508:47;18572:131;18698:4;18572:131;:::i;:::-;18564:139;;18291:419;;;:::o;18716:::-;18882:4;18920:2;18909:9;18905:18;18897:26;;18969:9;18963:4;18959:20;18955:1;18944:9;18940:17;18933:47;18997:131;19123:4;18997:131;:::i;:::-;18989:139;;18716:419;;;:::o;19141:::-;19307:4;19345:2;19334:9;19330:18;19322:26;;19394:9;19388:4;19384:20;19380:1;19369:9;19365:17;19358:47;19422:131;19548:4;19422:131;:::i;:::-;19414:139;;19141:419;;;:::o;19566:::-;19732:4;19770:2;19759:9;19755:18;19747:26;;19819:9;19813:4;19809:20;19805:1;19794:9;19790:17;19783:47;19847:131;19973:4;19847:131;:::i;:::-;19839:139;;19566:419;;;:::o;19991:222::-;20084:4;20122:2;20111:9;20107:18;20099:26;;20135:71;20203:1;20192:9;20188:17;20179:6;20135:71;:::i;:::-;19991:222;;;;:::o;20219:129::-;20253:6;20280:20;;:::i;:::-;20270:30;;20309:33;20337:4;20329:6;20309:33;:::i;:::-;20219:129;;;:::o;20354:75::-;20387:6;20420:2;20414:9;20404:19;;20354:75;:::o;20435:307::-;20496:4;20586:18;20578:6;20575:30;20572:56;;;20608:18;;:::i;:::-;20572:56;20646:29;20668:6;20646:29;:::i;:::-;20638:37;;20730:4;20724;20720:15;20712:23;;20435:307;;;:::o;20748:308::-;20810:4;20900:18;20892:6;20889:30;20886:56;;;20922:18;;:::i;:::-;20886:56;20960:29;20982:6;20960:29;:::i;:::-;20952:37;;21044:4;21038;21034:15;21026:23;;20748:308;;;:::o;21062:141::-;21111:4;21134:3;21126:11;;21157:3;21154:1;21147:14;21191:4;21188:1;21178:18;21170:26;;21062:141;;;:::o;21209:98::-;21260:6;21294:5;21288:12;21278:22;;21209:98;;;:::o;21313:99::-;21365:6;21399:5;21393:12;21383:22;;21313:99;;;:::o;21418:168::-;21501:11;21535:6;21530:3;21523:19;21575:4;21570:3;21566:14;21551:29;;21418:168;;;;:::o;21592:147::-;21693:11;21730:3;21715:18;;21592:147;;;;:::o;21745:169::-;21829:11;21863:6;21858:3;21851:19;21903:4;21898:3;21894:14;21879:29;;21745:169;;;;:::o;21920:148::-;22022:11;22059:3;22044:18;;21920:148;;;;:::o;22074:305::-;22114:3;22133:20;22151:1;22133:20;:::i;:::-;22128:25;;22167:20;22185:1;22167:20;:::i;:::-;22162:25;;22321:1;22253:66;22249:74;22246:1;22243:81;22240:107;;;22327:18;;:::i;:::-;22240:107;22371:1;22368;22364:9;22357:16;;22074:305;;;;:::o;22385:185::-;22425:1;22442:20;22460:1;22442:20;:::i;:::-;22437:25;;22476:20;22494:1;22476:20;:::i;:::-;22471:25;;22515:1;22505:35;;22520:18;;:::i;:::-;22505:35;22562:1;22559;22555:9;22550:14;;22385:185;;;;:::o;22576:348::-;22616:7;22639:20;22657:1;22639:20;:::i;:::-;22634:25;;22673:20;22691:1;22673:20;:::i;:::-;22668:25;;22861:1;22793:66;22789:74;22786:1;22783:81;22778:1;22771:9;22764:17;22760:105;22757:131;;;22868:18;;:::i;:::-;22757:131;22916:1;22913;22909:9;22898:20;;22576:348;;;;:::o;22930:191::-;22970:4;22990:20;23008:1;22990:20;:::i;:::-;22985:25;;23024:20;23042:1;23024:20;:::i;:::-;23019:25;;23063:1;23060;23057:8;23054:34;;;23068:18;;:::i;:::-;23054:34;23113:1;23110;23106:9;23098:17;;22930:191;;;;:::o;23127:96::-;23164:7;23193:24;23211:5;23193:24;:::i;:::-;23182:35;;23127:96;;;:::o;23229:90::-;23263:7;23306:5;23299:13;23292:21;23281:32;;23229:90;;;:::o;23325:149::-;23361:7;23401:66;23394:5;23390:78;23379:89;;23325:149;;;:::o;23480:126::-;23517:7;23557:42;23550:5;23546:54;23535:65;;23480:126;;;:::o;23612:77::-;23649:7;23678:5;23667:16;;23612:77;;;:::o;23695:154::-;23779:6;23774:3;23769;23756:30;23841:1;23832:6;23827:3;23823:16;23816:27;23695:154;;;:::o;23855:307::-;23923:1;23933:113;23947:6;23944:1;23941:13;23933:113;;;24032:1;24027:3;24023:11;24017:18;24013:1;24008:3;24004:11;23997:39;23969:2;23966:1;23962:10;23957:15;;23933:113;;;24064:6;24061:1;24058:13;24055:101;;;24144:1;24135:6;24130:3;24126:16;24119:27;24055:101;23904:258;23855:307;;;:::o;24168:320::-;24212:6;24249:1;24243:4;24239:12;24229:22;;24296:1;24290:4;24286:12;24317:18;24307:81;;24373:4;24365:6;24361:17;24351:27;;24307:81;24435:2;24427:6;24424:14;24404:18;24401:38;24398:84;;;24454:18;;:::i;:::-;24398:84;24219:269;24168:320;;;:::o;24494:281::-;24577:27;24599:4;24577:27;:::i;:::-;24569:6;24565:40;24707:6;24695:10;24692:22;24671:18;24659:10;24656:34;24653:62;24650:88;;;24718:18;;:::i;:::-;24650:88;24758:10;24754:2;24747:22;24537:238;24494:281;;:::o;24781:233::-;24820:3;24843:24;24861:5;24843:24;:::i;:::-;24834:33;;24889:66;24882:5;24879:77;24876:103;;;24959:18;;:::i;:::-;24876:103;25006:1;24999:5;24995:13;24988:20;;24781:233;;;:::o;25020:176::-;25052:1;25069:20;25087:1;25069:20;:::i;:::-;25064:25;;25103:20;25121:1;25103:20;:::i;:::-;25098:25;;25142:1;25132:35;;25147:18;;:::i;:::-;25132:35;25188:1;25185;25181:9;25176:14;;25020:176;;;;:::o;25202:180::-;25250:77;25247:1;25240:88;25347:4;25344:1;25337:15;25371:4;25368:1;25361:15;25388:180;25436:77;25433:1;25426:88;25533:4;25530:1;25523:15;25557:4;25554:1;25547:15;25574:180;25622:77;25619:1;25612:88;25719:4;25716:1;25709:15;25743:4;25740:1;25733:15;25760:180;25808:77;25805:1;25798:88;25905:4;25902:1;25895:15;25929:4;25926:1;25919:15;25946:180;25994:77;25991:1;25984:88;26091:4;26088:1;26081:15;26115:4;26112:1;26105:15;26132:117;26241:1;26238;26231:12;26255:117;26364:1;26361;26354:12;26378:117;26487:1;26484;26477:12;26501:117;26610:1;26607;26600:12;26624:102;26665:6;26716:2;26712:7;26707:2;26700:5;26696:14;26692:28;26682:38;;26624:102;;;:::o;26732:170::-;26872:22;26868:1;26860:6;26856:14;26849:46;26732:170;:::o;26908:157::-;27048:9;27044:1;27036:6;27032:14;27025:33;26908:157;:::o;27071:225::-;27211:34;27207:1;27199:6;27195:14;27188:58;27280:8;27275:2;27267:6;27263:15;27256:33;27071:225;:::o;27302:182::-;27442:34;27438:1;27430:6;27426:14;27419:58;27302:182;:::o;27490:155::-;27630:7;27626:1;27618:6;27614:14;27607:31;27490:155;:::o;27651:182::-;27791:34;27787:1;27779:6;27775:14;27768:58;27651:182;:::o;27839:234::-;27979:34;27975:1;27967:6;27963:14;27956:58;28048:17;28043:2;28035:6;28031:15;28024:42;27839:234;:::o;28079:114::-;;:::o;28199:166::-;28339:18;28335:1;28327:6;28323:14;28316:42;28199:166;:::o;28371:158::-;28511:10;28507:1;28499:6;28495:14;28488:34;28371:158;:::o;28535:169::-;28675:21;28671:1;28663:6;28659:14;28652:45;28535:169;:::o;28710:122::-;28783:24;28801:5;28783:24;:::i;:::-;28776:5;28773:35;28763:63;;28822:1;28819;28812:12;28763:63;28710:122;:::o;28838:116::-;28908:21;28923:5;28908:21;:::i;:::-;28901:5;28898:32;28888:60;;28944:1;28941;28934:12;28888:60;28838:116;:::o;28960:120::-;29032:23;29049:5;29032:23;:::i;:::-;29025:5;29022:34;29012:62;;29070:1;29067;29060:12;29012:62;28960:120;:::o;29086:122::-;29159:24;29177:5;29159:24;:::i;:::-;29152:5;29149:35;29139:63;;29198:1;29195;29188:12;29139:63;29086:122;:::o

Swarm Source

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