ETH Price: $3,592.61 (+4.86%)

Token

Paper Emotion (PAPE)
 

Overview

Max Total Supply

27 PAPE

Holders

10

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PAPE
0x5e27c347eca9dd3b1d4bf443c4c578676329a183
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:
PaperEmotionERC721A

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/paper.sol


pragma solidity ^0.8.12;

//@author Rameur
//@title Paper Emotion





contract PaperEmotionERC721A is Ownable, ERC721A, ReentrancyGuard {

    using Strings for uint;

    enum Step {
        Before,
        PublicSale,
        SoldOut,
        Reveal
    }

    string public baseURI = "ipfs://QmbDKxUPgtwdFppdhsqhRe46G7gtaa6MhiidSpZ1vSt1eY";

    bool public revealed = false;

    Step public sellingStep;

    uint private constant MAX_SUPPLY = 8888;

    uint public publicSalePrice = 0.022 ether;

    mapping(address => uint) public amountNFTsperWallet;

    constructor() ERC721A("Paper Emotion", "PAPE") {
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function publicSaleMint(address _account, uint _quantity) external payable callerIsUser {
        uint price = publicSalePrice;
        require(_quantity <= 5, "You can only mint 5 nfts at once");
        require(price != 0, "Price is 0");
        require(sellingStep == Step.PublicSale, "Public sale is not activated");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "Max supply exceeded");
        require(msg.value >= price * _quantity, "Not enought funds");
        _safeMint(_account, _quantity);
    }

    function setBaseUri(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setBaseUriReveal(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
        revealed = true;
    }

    function setStep(uint _step) external onlyOwner {
        sellingStep = Step(_step);
    }

    function tokenURI(uint _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "This NFT doesn't exist.");
        if(revealed == false) {
            return baseURI;
        }
        
        return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json"));
    }

    function withdrawMoney() external onlyOwner nonReentrant {
        (bool success, ) = 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":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountNFTsperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sellingStep","outputs":[{"internalType":"enum PaperEmotionERC721A.Step","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseUriReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_step","type":"uint256"}],"name":"setStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060600160405280603581526020016200341f60359139600a9080519060200190620000359291906200021f565b506000600b60006101000a81548160ff021916908315150217905550664e28e2290f0000600c553480156200006957600080fd5b506040518060400160405280600d81526020017f506170657220456d6f74696f6e000000000000000000000000000000000000008152506040518060400160405280600481526020017f5041504500000000000000000000000000000000000000000000000000000000815250620000f6620000ea6200014e60201b60201c565b6200015660201b60201c565b81600390805190602001906200010e9291906200021f565b508060049080519060200190620001279291906200021f565b50620001386200021a60201b60201c565b6001819055505050600160098190555062000334565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b8280546200022d90620002fe565b90600052602060002090601f0160209004810192826200025157600085556200029d565b82601f106200026c57805160ff19168380011785556200029d565b828001600101855582156200029d579182015b828111156200029c5782518255916020019190600101906200027f565b5b509050620002ac9190620002b0565b5090565b5b80821115620002cb576000816000905550600101620002b1565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200031757607f821691505b602082108114156200032e576200032d620002cf565b5b50919050565b6130db80620003446000396000f3fe60806040526004361061019c5760003560e01c80638da5cb5b116100ec578063b88d4fde1161008a578063e062eebb11610064578063e062eebb14610573578063e985e9c51461059c578063f2fde38b146105d9578063f8dcbddb146106025761019c565b8063b88d4fde146104ef578063c87b56dd1461050b578063cbccefb2146105485761019c565b8063a0bcfc7f116100c6578063a0bcfc7f1461046a578063a22cb46514610493578063ac446002146104bc578063ac5ae11b146104d35761019c565b80638da5cb5b146103e957806395d89b41146104145780639b6860c81461043f5761019c565b806342842e0e116101595780636352211e116101335780636352211e1461032d5780636c0360eb1461036a57806370a0823114610395578063715018a6146103d25761019c565b806342842e0e146102a9578063499a4687146102c557806351830227146103025761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026257806323b872dd1461028d575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612017565b61062b565b6040516101d5919061205f565b60405180910390f35b3480156101ea57600080fd5b506101f36106bd565b6040516102009190612113565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b919061216b565b61074f565b60405161023d91906121d9565b60405180910390f35b610260600480360381019061025b9190612220565b6107ce565b005b34801561026e57600080fd5b50610277610912565b604051610284919061226f565b60405180910390f35b6102a760048036038101906102a2919061228a565b610929565b005b6102c360048036038101906102be919061228a565b610c4e565b005b3480156102d157600080fd5b506102ec60048036038101906102e791906122dd565b610c6e565b6040516102f9919061226f565b60405180910390f35b34801561030e57600080fd5b50610317610c86565b604051610324919061205f565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f919061216b565b610c99565b60405161036191906121d9565b60405180910390f35b34801561037657600080fd5b5061037f610cab565b60405161038c9190612113565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906122dd565b610d39565b6040516103c9919061226f565b60405180910390f35b3480156103de57600080fd5b506103e7610df2565b005b3480156103f557600080fd5b506103fe610e06565b60405161040b91906121d9565b60405180910390f35b34801561042057600080fd5b50610429610e2f565b6040516104369190612113565b60405180910390f35b34801561044b57600080fd5b50610454610ec1565b604051610461919061226f565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c919061243f565b610ec7565b005b34801561049f57600080fd5b506104ba60048036038101906104b591906124b4565b610ee9565b005b3480156104c857600080fd5b506104d1610ff4565b005b6104ed60048036038101906104e89190612220565b611101565b005b61050960048036038101906105049190612595565b611328565b005b34801561051757600080fd5b50610532600480360381019061052d919061216b565b61139b565b60405161053f9190612113565b60405180910390f35b34801561055457600080fd5b5061055d6114c6565b60405161056a919061268f565b60405180910390f35b34801561057f57600080fd5b5061059a6004803603810190610595919061243f565b6114d9565b005b3480156105a857600080fd5b506105c360048036038101906105be91906126aa565b611516565b6040516105d0919061205f565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb91906122dd565b6115aa565b005b34801561060e57600080fd5b506106296004803603810190610624919061216b565b61162e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106b65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546106cc90612719565b80601f01602080910402602001604051908101604052809291908181526020018280546106f890612719565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b600061075a82611675565b610790576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107d982610c99565b90508073ffffffffffffffffffffffffffffffffffffffff166107fa6116d4565b73ffffffffffffffffffffffffffffffffffffffff161461085d57610826816108216116d4565b611516565b61085c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061091c6116dc565b6002546001540303905090565b6000610934826116e1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461099b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109a7846117af565b915091506109bd81876109b86116d4565b6117d6565b610a09576109d2866109cd6116d4565b611516565b610a08576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a70576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a7d868686600161181a565b8015610a8857600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b5685610b32888887611820565b7c020000000000000000000000000000000000000000000000000000000017611848565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610bde576000600185019050600060056000838152602001908152602001600020541415610bdc576001548114610bdb578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c468686866001611873565b505050505050565b610c6983838360405180602001604052806000815250611328565b505050565b600d6020528060005260406000206000915090505481565b600b60009054906101000a900460ff1681565b6000610ca4826116e1565b9050919050565b600a8054610cb890612719565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce490612719565b8015610d315780601f10610d0657610100808354040283529160200191610d31565b820191906000526020600020905b815481529060010190602001808311610d1457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610dfa611879565b610e0460006118f7565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e3e90612719565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6a90612719565b8015610eb75780601f10610e8c57610100808354040283529160200191610eb7565b820191906000526020600020905b815481529060010190602001808311610e9a57829003601f168201915b5050505050905090565b600c5481565b610ecf611879565b80600a9080519060200190610ee5929190611f08565b5050565b8060086000610ef66116d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fa36116d4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fe8919061205f565b60405180910390a35050565b610ffc611879565b60026009541415611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990612797565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611070906127e8565b60006040518083038185875af1925050503d80600081146110ad576040519150601f19603f3d011682016040523d82523d6000602084013e6110b2565b606091505b50509050806110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90612849565b60405180910390fd5b506001600981905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461116f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611166906128b5565b60405180910390fd5b6000600c54905060058211156111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b190612921565b60405180910390fd5b60008114156111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f59061298d565b60405180910390fd5b6001600381111561121257611211612618565b5b600b60019054906101000a900460ff16600381111561123457611233612618565b5b14611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b906129f9565b60405180910390fd5b6122b882611280610912565b61128a9190612a48565b11156112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290612aea565b60405180910390fd5b81816112d79190612b0a565b341015611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090612bb0565b60405180910390fd5b61132383836119bb565b505050565b611333848484610929565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113955761135e848484846119d9565b611394576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113a682611675565b6113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90612c1c565b60405180910390fd5b60001515600b60009054906101000a900460ff161515141561149357600a805461140e90612719565b80601f016020809104026020016040519081016040528092919081815260200182805461143a90612719565b80156114875780601f1061145c57610100808354040283529160200191611487565b820191906000526020600020905b81548152906001019060200180831161146a57829003601f168201915b505050505090506114c1565b600a61149e83611b2a565b6040516020016114af929190612d58565b60405160208183030381529060405290505b919050565b600b60019054906101000a900460ff1681565b6114e1611879565b80600a90805190602001906114f7929190611f08565b506001600b60006101000a81548160ff02191690831515021790555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b2611879565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990612df9565b60405180910390fd5b61162b816118f7565b50565b611636611879565b80600381111561164957611648612618565b5b600b60016101000a81548160ff0219169083600381111561166d5761166c612618565b5b021790555050565b6000816116806116dc565b1115801561168f575060015482105b80156116cd575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806116f06116dc565b11611778576001548110156117775760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611775575b600081141561176b576005600083600190039350838152602001908152602001600020549050611740565b80925050506117aa565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611837868684611c8b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611881611c94565b73ffffffffffffffffffffffffffffffffffffffff1661189f610e06565b73ffffffffffffffffffffffffffffffffffffffff16146118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90612e65565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119d5828260405180602001604052806000815250611c9c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119ff6116d4565b8786866040518563ffffffff1660e01b8152600401611a219493929190612eda565b6020604051808303816000875af1925050508015611a5d57506040513d601f19601f82011682018060405250810190611a5a9190612f3b565b60015b611ad7573d8060008114611a8d576040519150601f19603f3d011682016040523d82523d6000602084013e611a92565b606091505b50600081511415611acf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611b72576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c86565b600082905060005b60008214611ba4578080611b8d90612f68565b915050600a82611b9d9190612fe0565b9150611b7a565b60008167ffffffffffffffff811115611bc057611bbf612314565b5b6040519080825280601f01601f191660200182016040528015611bf25781602001600182028036833780820191505090505b5090505b60008514611c7f57600182611c0b9190613011565b9150600a85611c1a9190613045565b6030611c269190612a48565b60f81b818381518110611c3c57611c3b613076565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c789190612fe0565b9450611bf6565b8093505050505b919050565b60009392505050565b600033905090565b611ca68383611d3a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d355760006001549050600083820390505b611ce760008683806001019450866119d9565b611d1d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611cd4578160015414611d3257600080fd5b50505b505050565b600060015490506000821415611d7c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d89600084838561181a565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e0083611df16000866000611820565b611dfa85611ef8565b17611848565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ea157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e66565b506000821415611edd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050611ef36000848385611873565b505050565b60006001821460e11b9050919050565b828054611f1490612719565b90600052602060002090601f016020900481019282611f365760008555611f7d565b82601f10611f4f57805160ff1916838001178555611f7d565b82800160010185558215611f7d579182015b82811115611f7c578251825591602001919060010190611f61565b5b509050611f8a9190611f8e565b5090565b5b80821115611fa7576000816000905550600101611f8f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ff481611fbf565b8114611fff57600080fd5b50565b60008135905061201181611feb565b92915050565b60006020828403121561202d5761202c611fb5565b5b600061203b84828501612002565b91505092915050565b60008115159050919050565b61205981612044565b82525050565b60006020820190506120746000830184612050565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120b4578082015181840152602081019050612099565b838111156120c3576000848401525b50505050565b6000601f19601f8301169050919050565b60006120e58261207a565b6120ef8185612085565b93506120ff818560208601612096565b612108816120c9565b840191505092915050565b6000602082019050818103600083015261212d81846120da565b905092915050565b6000819050919050565b61214881612135565b811461215357600080fd5b50565b6000813590506121658161213f565b92915050565b60006020828403121561218157612180611fb5565b5b600061218f84828501612156565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121c382612198565b9050919050565b6121d3816121b8565b82525050565b60006020820190506121ee60008301846121ca565b92915050565b6121fd816121b8565b811461220857600080fd5b50565b60008135905061221a816121f4565b92915050565b6000806040838503121561223757612236611fb5565b5b60006122458582860161220b565b925050602061225685828601612156565b9150509250929050565b61226981612135565b82525050565b60006020820190506122846000830184612260565b92915050565b6000806000606084860312156122a3576122a2611fb5565b5b60006122b18682870161220b565b93505060206122c28682870161220b565b92505060406122d386828701612156565b9150509250925092565b6000602082840312156122f3576122f2611fb5565b5b60006123018482850161220b565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61234c826120c9565b810181811067ffffffffffffffff8211171561236b5761236a612314565b5b80604052505050565b600061237e611fab565b905061238a8282612343565b919050565b600067ffffffffffffffff8211156123aa576123a9612314565b5b6123b3826120c9565b9050602081019050919050565b82818337600083830152505050565b60006123e26123dd8461238f565b612374565b9050828152602081018484840111156123fe576123fd61230f565b5b6124098482856123c0565b509392505050565b600082601f8301126124265761242561230a565b5b81356124368482602086016123cf565b91505092915050565b60006020828403121561245557612454611fb5565b5b600082013567ffffffffffffffff81111561247357612472611fba565b5b61247f84828501612411565b91505092915050565b61249181612044565b811461249c57600080fd5b50565b6000813590506124ae81612488565b92915050565b600080604083850312156124cb576124ca611fb5565b5b60006124d98582860161220b565b92505060206124ea8582860161249f565b9150509250929050565b600067ffffffffffffffff82111561250f5761250e612314565b5b612518826120c9565b9050602081019050919050565b6000612538612533846124f4565b612374565b9050828152602081018484840111156125545761255361230f565b5b61255f8482856123c0565b509392505050565b600082601f83011261257c5761257b61230a565b5b813561258c848260208601612525565b91505092915050565b600080600080608085870312156125af576125ae611fb5565b5b60006125bd8782880161220b565b94505060206125ce8782880161220b565b93505060406125df87828801612156565b925050606085013567ffffffffffffffff811115612600576125ff611fba565b5b61260c87828801612567565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004811061265857612657612618565b5b50565b600081905061266982612647565b919050565b60006126798261265b565b9050919050565b6126898161266e565b82525050565b60006020820190506126a46000830184612680565b92915050565b600080604083850312156126c1576126c0611fb5565b5b60006126cf8582860161220b565b92505060206126e08582860161220b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061273157607f821691505b60208210811415612745576127446126ea565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612781601f83612085565b915061278c8261274b565b602082019050919050565b600060208201905081810360008301526127b081612774565b9050919050565b600081905092915050565b50565b60006127d26000836127b7565b91506127dd826127c2565b600082019050919050565b60006127f3826127c5565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612833601083612085565b915061283e826127fd565b602082019050919050565b6000602082019050818103600083015261286281612826565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b600061289f601e83612085565b91506128aa82612869565b602082019050919050565b600060208201905081810360008301526128ce81612892565b9050919050565b7f596f752063616e206f6e6c79206d696e742035206e667473206174206f6e6365600082015250565b600061290b602083612085565b9150612916826128d5565b602082019050919050565b6000602082019050818103600083015261293a816128fe565b9050919050565b7f5072696365206973203000000000000000000000000000000000000000000000600082015250565b6000612977600a83612085565b915061298282612941565b602082019050919050565b600060208201905081810360008301526129a68161296a565b9050919050565b7f5075626c69632073616c65206973206e6f742061637469766174656400000000600082015250565b60006129e3601c83612085565b91506129ee826129ad565b602082019050919050565b60006020820190508181036000830152612a12816129d6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a5382612135565b9150612a5e83612135565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a9357612a92612a19565b5b828201905092915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000612ad4601383612085565b9150612adf82612a9e565b602082019050919050565b60006020820190508181036000830152612b0381612ac7565b9050919050565b6000612b1582612135565b9150612b2083612135565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b5957612b58612a19565b5b828202905092915050565b7f4e6f7420656e6f756768742066756e6473000000000000000000000000000000600082015250565b6000612b9a601183612085565b9150612ba582612b64565b602082019050919050565b60006020820190508181036000830152612bc981612b8d565b9050919050565b7f54686973204e465420646f65736e27742065786973742e000000000000000000600082015250565b6000612c06601783612085565b9150612c1182612bd0565b602082019050919050565b60006020820190508181036000830152612c3581612bf9565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612c6981612719565b612c738186612c3c565b94506001821660008114612c8e5760018114612c9f57612cd2565b60ff19831686528186019350612cd2565b612ca885612c47565b60005b83811015612cca57815481890152600182019150602081019050612cab565b838801955050505b50505092915050565b6000612ce68261207a565b612cf08185612c3c565b9350612d00818560208601612096565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612d42600583612c3c565b9150612d4d82612d0c565b600582019050919050565b6000612d648285612c5c565b9150612d708284612cdb565b9150612d7b82612d35565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612de3602683612085565b9150612dee82612d87565b604082019050919050565b60006020820190508181036000830152612e1281612dd6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e4f602083612085565b9150612e5a82612e19565b602082019050919050565b60006020820190508181036000830152612e7e81612e42565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612eac82612e85565b612eb68185612e90565b9350612ec6818560208601612096565b612ecf816120c9565b840191505092915050565b6000608082019050612eef60008301876121ca565b612efc60208301866121ca565b612f096040830185612260565b8181036060830152612f1b8184612ea1565b905095945050505050565b600081519050612f3581611feb565b92915050565b600060208284031215612f5157612f50611fb5565b5b6000612f5f84828501612f26565b91505092915050565b6000612f7382612135565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fa657612fa5612a19565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612feb82612135565b9150612ff683612135565b92508261300657613005612fb1565b5b828204905092915050565b600061301c82612135565b915061302783612135565b92508282101561303a57613039612a19565b5b828203905092915050565b600061305082612135565b915061305b83612135565b92508261306b5761306a612fb1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220fa23bd8c0a8fa9b7d1053e96ddf25b800ad483e7b63e40cf0d7fefbde367a10164736f6c634300080c0033697066733a2f2f516d62444b78555067747764467070646873716852653436473767746161364d6869696453705a31765374316559

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80638da5cb5b116100ec578063b88d4fde1161008a578063e062eebb11610064578063e062eebb14610573578063e985e9c51461059c578063f2fde38b146105d9578063f8dcbddb146106025761019c565b8063b88d4fde146104ef578063c87b56dd1461050b578063cbccefb2146105485761019c565b8063a0bcfc7f116100c6578063a0bcfc7f1461046a578063a22cb46514610493578063ac446002146104bc578063ac5ae11b146104d35761019c565b80638da5cb5b146103e957806395d89b41146104145780639b6860c81461043f5761019c565b806342842e0e116101595780636352211e116101335780636352211e1461032d5780636c0360eb1461036a57806370a0823114610395578063715018a6146103d25761019c565b806342842e0e146102a9578063499a4687146102c557806351830227146103025761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806318160ddd1461026257806323b872dd1461028d575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612017565b61062b565b6040516101d5919061205f565b60405180910390f35b3480156101ea57600080fd5b506101f36106bd565b6040516102009190612113565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b919061216b565b61074f565b60405161023d91906121d9565b60405180910390f35b610260600480360381019061025b9190612220565b6107ce565b005b34801561026e57600080fd5b50610277610912565b604051610284919061226f565b60405180910390f35b6102a760048036038101906102a2919061228a565b610929565b005b6102c360048036038101906102be919061228a565b610c4e565b005b3480156102d157600080fd5b506102ec60048036038101906102e791906122dd565b610c6e565b6040516102f9919061226f565b60405180910390f35b34801561030e57600080fd5b50610317610c86565b604051610324919061205f565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f919061216b565b610c99565b60405161036191906121d9565b60405180910390f35b34801561037657600080fd5b5061037f610cab565b60405161038c9190612113565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906122dd565b610d39565b6040516103c9919061226f565b60405180910390f35b3480156103de57600080fd5b506103e7610df2565b005b3480156103f557600080fd5b506103fe610e06565b60405161040b91906121d9565b60405180910390f35b34801561042057600080fd5b50610429610e2f565b6040516104369190612113565b60405180910390f35b34801561044b57600080fd5b50610454610ec1565b604051610461919061226f565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c919061243f565b610ec7565b005b34801561049f57600080fd5b506104ba60048036038101906104b591906124b4565b610ee9565b005b3480156104c857600080fd5b506104d1610ff4565b005b6104ed60048036038101906104e89190612220565b611101565b005b61050960048036038101906105049190612595565b611328565b005b34801561051757600080fd5b50610532600480360381019061052d919061216b565b61139b565b60405161053f9190612113565b60405180910390f35b34801561055457600080fd5b5061055d6114c6565b60405161056a919061268f565b60405180910390f35b34801561057f57600080fd5b5061059a6004803603810190610595919061243f565b6114d9565b005b3480156105a857600080fd5b506105c360048036038101906105be91906126aa565b611516565b6040516105d0919061205f565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb91906122dd565b6115aa565b005b34801561060e57600080fd5b506106296004803603810190610624919061216b565b61162e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106b65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546106cc90612719565b80601f01602080910402602001604051908101604052809291908181526020018280546106f890612719565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b600061075a82611675565b610790576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107d982610c99565b90508073ffffffffffffffffffffffffffffffffffffffff166107fa6116d4565b73ffffffffffffffffffffffffffffffffffffffff161461085d57610826816108216116d4565b611516565b61085c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061091c6116dc565b6002546001540303905090565b6000610934826116e1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461099b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806109a7846117af565b915091506109bd81876109b86116d4565b6117d6565b610a09576109d2866109cd6116d4565b611516565b610a08576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a70576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a7d868686600161181a565b8015610a8857600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b5685610b32888887611820565b7c020000000000000000000000000000000000000000000000000000000017611848565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610bde576000600185019050600060056000838152602001908152602001600020541415610bdc576001548114610bdb578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c468686866001611873565b505050505050565b610c6983838360405180602001604052806000815250611328565b505050565b600d6020528060005260406000206000915090505481565b600b60009054906101000a900460ff1681565b6000610ca4826116e1565b9050919050565b600a8054610cb890612719565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce490612719565b8015610d315780601f10610d0657610100808354040283529160200191610d31565b820191906000526020600020905b815481529060010190602001808311610d1457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610dfa611879565b610e0460006118f7565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610e3e90612719565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6a90612719565b8015610eb75780601f10610e8c57610100808354040283529160200191610eb7565b820191906000526020600020905b815481529060010190602001808311610e9a57829003601f168201915b5050505050905090565b600c5481565b610ecf611879565b80600a9080519060200190610ee5929190611f08565b5050565b8060086000610ef66116d4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fa36116d4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fe8919061205f565b60405180910390a35050565b610ffc611879565b60026009541415611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990612797565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051611070906127e8565b60006040518083038185875af1925050503d80600081146110ad576040519150601f19603f3d011682016040523d82523d6000602084013e6110b2565b606091505b50509050806110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed90612849565b60405180910390fd5b506001600981905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461116f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611166906128b5565b60405180910390fd5b6000600c54905060058211156111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b190612921565b60405180910390fd5b60008114156111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f59061298d565b60405180910390fd5b6001600381111561121257611211612618565b5b600b60019054906101000a900460ff16600381111561123457611233612618565b5b14611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b906129f9565b60405180910390fd5b6122b882611280610912565b61128a9190612a48565b11156112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290612aea565b60405180910390fd5b81816112d79190612b0a565b341015611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090612bb0565b60405180910390fd5b61132383836119bb565b505050565b611333848484610929565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113955761135e848484846119d9565b611394576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113a682611675565b6113e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dc90612c1c565b60405180910390fd5b60001515600b60009054906101000a900460ff161515141561149357600a805461140e90612719565b80601f016020809104026020016040519081016040528092919081815260200182805461143a90612719565b80156114875780601f1061145c57610100808354040283529160200191611487565b820191906000526020600020905b81548152906001019060200180831161146a57829003601f168201915b505050505090506114c1565b600a61149e83611b2a565b6040516020016114af929190612d58565b60405160208183030381529060405290505b919050565b600b60019054906101000a900460ff1681565b6114e1611879565b80600a90805190602001906114f7929190611f08565b506001600b60006101000a81548160ff02191690831515021790555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b2611879565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990612df9565b60405180910390fd5b61162b816118f7565b50565b611636611879565b80600381111561164957611648612618565b5b600b60016101000a81548160ff0219169083600381111561166d5761166c612618565b5b021790555050565b6000816116806116dc565b1115801561168f575060015482105b80156116cd575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806116f06116dc565b11611778576001548110156117775760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611775575b600081141561176b576005600083600190039350838152602001908152602001600020549050611740565b80925050506117aa565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611837868684611c8b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611881611c94565b73ffffffffffffffffffffffffffffffffffffffff1661189f610e06565b73ffffffffffffffffffffffffffffffffffffffff16146118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec90612e65565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119d5828260405180602001604052806000815250611c9c565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119ff6116d4565b8786866040518563ffffffff1660e01b8152600401611a219493929190612eda565b6020604051808303816000875af1925050508015611a5d57506040513d601f19601f82011682018060405250810190611a5a9190612f3b565b60015b611ad7573d8060008114611a8d576040519150601f19603f3d011682016040523d82523d6000602084013e611a92565b606091505b50600081511415611acf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611b72576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c86565b600082905060005b60008214611ba4578080611b8d90612f68565b915050600a82611b9d9190612fe0565b9150611b7a565b60008167ffffffffffffffff811115611bc057611bbf612314565b5b6040519080825280601f01601f191660200182016040528015611bf25781602001600182028036833780820191505090505b5090505b60008514611c7f57600182611c0b9190613011565b9150600a85611c1a9190613045565b6030611c269190612a48565b60f81b818381518110611c3c57611c3b613076565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c789190612fe0565b9450611bf6565b8093505050505b919050565b60009392505050565b600033905090565b611ca68383611d3a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d355760006001549050600083820390505b611ce760008683806001019450866119d9565b611d1d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611cd4578160015414611d3257600080fd5b50505b505050565b600060015490506000821415611d7c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d89600084838561181a565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e0083611df16000866000611820565b611dfa85611ef8565b17611848565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ea157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e66565b506000821415611edd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050611ef36000848385611873565b505050565b60006001821460e11b9050919050565b828054611f1490612719565b90600052602060002090601f016020900481019282611f365760008555611f7d565b82601f10611f4f57805160ff1916838001178555611f7d565b82800160010185558215611f7d579182015b82811115611f7c578251825591602001919060010190611f61565b5b509050611f8a9190611f8e565b5090565b5b80821115611fa7576000816000905550600101611f8f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ff481611fbf565b8114611fff57600080fd5b50565b60008135905061201181611feb565b92915050565b60006020828403121561202d5761202c611fb5565b5b600061203b84828501612002565b91505092915050565b60008115159050919050565b61205981612044565b82525050565b60006020820190506120746000830184612050565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156120b4578082015181840152602081019050612099565b838111156120c3576000848401525b50505050565b6000601f19601f8301169050919050565b60006120e58261207a565b6120ef8185612085565b93506120ff818560208601612096565b612108816120c9565b840191505092915050565b6000602082019050818103600083015261212d81846120da565b905092915050565b6000819050919050565b61214881612135565b811461215357600080fd5b50565b6000813590506121658161213f565b92915050565b60006020828403121561218157612180611fb5565b5b600061218f84828501612156565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121c382612198565b9050919050565b6121d3816121b8565b82525050565b60006020820190506121ee60008301846121ca565b92915050565b6121fd816121b8565b811461220857600080fd5b50565b60008135905061221a816121f4565b92915050565b6000806040838503121561223757612236611fb5565b5b60006122458582860161220b565b925050602061225685828601612156565b9150509250929050565b61226981612135565b82525050565b60006020820190506122846000830184612260565b92915050565b6000806000606084860312156122a3576122a2611fb5565b5b60006122b18682870161220b565b93505060206122c28682870161220b565b92505060406122d386828701612156565b9150509250925092565b6000602082840312156122f3576122f2611fb5565b5b60006123018482850161220b565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61234c826120c9565b810181811067ffffffffffffffff8211171561236b5761236a612314565b5b80604052505050565b600061237e611fab565b905061238a8282612343565b919050565b600067ffffffffffffffff8211156123aa576123a9612314565b5b6123b3826120c9565b9050602081019050919050565b82818337600083830152505050565b60006123e26123dd8461238f565b612374565b9050828152602081018484840111156123fe576123fd61230f565b5b6124098482856123c0565b509392505050565b600082601f8301126124265761242561230a565b5b81356124368482602086016123cf565b91505092915050565b60006020828403121561245557612454611fb5565b5b600082013567ffffffffffffffff81111561247357612472611fba565b5b61247f84828501612411565b91505092915050565b61249181612044565b811461249c57600080fd5b50565b6000813590506124ae81612488565b92915050565b600080604083850312156124cb576124ca611fb5565b5b60006124d98582860161220b565b92505060206124ea8582860161249f565b9150509250929050565b600067ffffffffffffffff82111561250f5761250e612314565b5b612518826120c9565b9050602081019050919050565b6000612538612533846124f4565b612374565b9050828152602081018484840111156125545761255361230f565b5b61255f8482856123c0565b509392505050565b600082601f83011261257c5761257b61230a565b5b813561258c848260208601612525565b91505092915050565b600080600080608085870312156125af576125ae611fb5565b5b60006125bd8782880161220b565b94505060206125ce8782880161220b565b93505060406125df87828801612156565b925050606085013567ffffffffffffffff811115612600576125ff611fba565b5b61260c87828801612567565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004811061265857612657612618565b5b50565b600081905061266982612647565b919050565b60006126798261265b565b9050919050565b6126898161266e565b82525050565b60006020820190506126a46000830184612680565b92915050565b600080604083850312156126c1576126c0611fb5565b5b60006126cf8582860161220b565b92505060206126e08582860161220b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061273157607f821691505b60208210811415612745576127446126ea565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612781601f83612085565b915061278c8261274b565b602082019050919050565b600060208201905081810360008301526127b081612774565b9050919050565b600081905092915050565b50565b60006127d26000836127b7565b91506127dd826127c2565b600082019050919050565b60006127f3826127c5565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612833601083612085565b915061283e826127fd565b602082019050919050565b6000602082019050818103600083015261286281612826565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b600061289f601e83612085565b91506128aa82612869565b602082019050919050565b600060208201905081810360008301526128ce81612892565b9050919050565b7f596f752063616e206f6e6c79206d696e742035206e667473206174206f6e6365600082015250565b600061290b602083612085565b9150612916826128d5565b602082019050919050565b6000602082019050818103600083015261293a816128fe565b9050919050565b7f5072696365206973203000000000000000000000000000000000000000000000600082015250565b6000612977600a83612085565b915061298282612941565b602082019050919050565b600060208201905081810360008301526129a68161296a565b9050919050565b7f5075626c69632073616c65206973206e6f742061637469766174656400000000600082015250565b60006129e3601c83612085565b91506129ee826129ad565b602082019050919050565b60006020820190508181036000830152612a12816129d6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a5382612135565b9150612a5e83612135565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a9357612a92612a19565b5b828201905092915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000612ad4601383612085565b9150612adf82612a9e565b602082019050919050565b60006020820190508181036000830152612b0381612ac7565b9050919050565b6000612b1582612135565b9150612b2083612135565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b5957612b58612a19565b5b828202905092915050565b7f4e6f7420656e6f756768742066756e6473000000000000000000000000000000600082015250565b6000612b9a601183612085565b9150612ba582612b64565b602082019050919050565b60006020820190508181036000830152612bc981612b8d565b9050919050565b7f54686973204e465420646f65736e27742065786973742e000000000000000000600082015250565b6000612c06601783612085565b9150612c1182612bd0565b602082019050919050565b60006020820190508181036000830152612c3581612bf9565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612c6981612719565b612c738186612c3c565b94506001821660008114612c8e5760018114612c9f57612cd2565b60ff19831686528186019350612cd2565b612ca885612c47565b60005b83811015612cca57815481890152600182019150602081019050612cab565b838801955050505b50505092915050565b6000612ce68261207a565b612cf08185612c3c565b9350612d00818560208601612096565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612d42600583612c3c565b9150612d4d82612d0c565b600582019050919050565b6000612d648285612c5c565b9150612d708284612cdb565b9150612d7b82612d35565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612de3602683612085565b9150612dee82612d87565b604082019050919050565b60006020820190508181036000830152612e1281612dd6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e4f602083612085565b9150612e5a82612e19565b602082019050919050565b60006020820190508181036000830152612e7e81612e42565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612eac82612e85565b612eb68185612e90565b9350612ec6818560208601612096565b612ecf816120c9565b840191505092915050565b6000608082019050612eef60008301876121ca565b612efc60208301866121ca565b612f096040830185612260565b8181036060830152612f1b8184612ea1565b905095945050505050565b600081519050612f3581611feb565b92915050565b600060208284031215612f5157612f50611fb5565b5b6000612f5f84828501612f26565b91505092915050565b6000612f7382612135565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fa657612fa5612a19565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612feb82612135565b9150612ff683612135565b92508261300657613005612fb1565b5b828204905092915050565b600061301c82612135565b915061302783612135565b92508282101561303a57613039612a19565b5b828203905092915050565b600061305082612135565b915061305b83612135565b92508261306b5761306a612fb1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220fa23bd8c0a8fa9b7d1053e96ddf25b800ad483e7b63e40cf0d7fefbde367a10164736f6c634300080c0033

Deployed Bytecode Sourcemap

60478:2108:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18484:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19386:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25877:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25310:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15137:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29516:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32437:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60937:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60770:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20779:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60682:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16321:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59547:103;;;;;;;;;;;;;:::i;:::-;;58899:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19562:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60887:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61722:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26435:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62392:191;;;;;;;;;;;;;:::i;:::-;;61189:525;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33228:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62070:314;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60807:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61830:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26826:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59805:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61970:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18484:639;18569:4;18908:10;18893:25;;:11;:25;;;;:102;;;;18985:10;18970:25;;:11;:25;;;;18893:102;:179;;;;19062:10;19047:25;;:11;:25;;;;18893:179;18873:199;;18484:639;;;:::o;19386:100::-;19440:13;19473:5;19466:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19386:100;:::o;25877:218::-;25953:7;25978:16;25986:7;25978;:16::i;:::-;25973:64;;26003:34;;;;;;;;;;;;;;25973:64;26057:15;:24;26073:7;26057:24;;;;;;;;;;;:30;;;;;;;;;;;;26050:37;;25877:218;;;:::o;25310:408::-;25399:13;25415:16;25423:7;25415;:16::i;:::-;25399:32;;25471:5;25448:28;;:19;:17;:19::i;:::-;:28;;;25444:175;;25496:44;25513:5;25520:19;:17;:19::i;:::-;25496:16;:44::i;:::-;25491:128;;25568:35;;;;;;;;;;;;;;25491:128;25444:175;25664:2;25631:15;:24;25647:7;25631:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25702:7;25698:2;25682:28;;25691:5;25682:28;;;;;;;;;;;;25388:330;25310:408;;:::o;15137:323::-;15198:7;15426:15;:13;:15::i;:::-;15411:12;;15395:13;;:28;:46;15388:53;;15137:323;:::o;29516:2825::-;29658:27;29688;29707:7;29688:18;:27::i;:::-;29658:57;;29773:4;29732:45;;29748:19;29732:45;;;29728:86;;29786:28;;;;;;;;;;;;;;29728:86;29828:27;29857:23;29884:35;29911:7;29884:26;:35::i;:::-;29827:92;;;;30019:68;30044:15;30061:4;30067:19;:17;:19::i;:::-;30019:24;:68::i;:::-;30014:180;;30107:43;30124:4;30130:19;:17;:19::i;:::-;30107:16;:43::i;:::-;30102:92;;30159:35;;;;;;;;;;;;;;30102:92;30014:180;30225:1;30211:16;;:2;:16;;;30207:52;;;30236:23;;;;;;;;;;;;;;30207:52;30272:43;30294:4;30300:2;30304:7;30313:1;30272:21;:43::i;:::-;30408:15;30405:160;;;30548:1;30527:19;30520:30;30405:160;30945:18;:24;30964:4;30945:24;;;;;;;;;;;;;;;;30943:26;;;;;;;;;;;;31014:18;:22;31033:2;31014:22;;;;;;;;;;;;;;;;31012:24;;;;;;;;;;;31336:146;31373:2;31422:45;31437:4;31443:2;31447:19;31422:14;:45::i;:::-;11536:8;31394:73;31336:18;:146::i;:::-;31307:17;:26;31325:7;31307:26;;;;;;;;;;;:175;;;;31653:1;11536:8;31602:19;:47;:52;31598:627;;;31675:19;31707:1;31697:7;:11;31675:33;;31864:1;31830:17;:30;31848:11;31830:30;;;;;;;;;;;;:35;31826:384;;;31968:13;;31953:11;:28;31949:242;;32148:19;32115:17;:30;32133:11;32115:30;;;;;;;;;;;:52;;;;31949:242;31826:384;31656:569;31598:627;32272:7;32268:2;32253:27;;32262:4;32253:27;;;;;;;;;;;;32291:42;32312:4;32318:2;32322:7;32331:1;32291:20;:42::i;:::-;29647:2694;;;29516:2825;;;:::o;32437:193::-;32583:39;32600:4;32606:2;32610:7;32583:39;;;;;;;;;;;;:16;:39::i;:::-;32437:193;;;:::o;60937:51::-;;;;;;;;;;;;;;;;;:::o;60770:28::-;;;;;;;;;;;;;:::o;20779:152::-;20851:7;20894:27;20913:7;20894:18;:27::i;:::-;20871:52;;20779:152;;;:::o;60682:79::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16321:233::-;16393:7;16434:1;16417:19;;:5;:19;;;16413:60;;;16445:28;;;;;;;;;;;;;;16413:60;10480:13;16491:18;:25;16510:5;16491:25;;;;;;;;;;;;;;;;:55;16484:62;;16321:233;;;:::o;59547:103::-;58785:13;:11;:13::i;:::-;59612:30:::1;59639:1;59612:18;:30::i;:::-;59547:103::o:0;58899:87::-;58945:7;58972:6;;;;;;;;;;;58965:13;;58899:87;:::o;19562:104::-;19618:13;19651:7;19644:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19562:104;:::o;60887:41::-;;;;:::o;61722:100::-;58785:13;:11;:13::i;:::-;61806:8:::1;61796:7;:18;;;;;;;;;;;;:::i;:::-;;61722:100:::0;:::o;26435:234::-;26582:8;26530:18;:39;26549:19;:17;:19::i;:::-;26530:39;;;;;;;;;;;;;;;:49;26570:8;26530:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26642:8;26606:55;;26621:19;:17;:19::i;:::-;26606:55;;;26652:8;26606:55;;;;;;:::i;:::-;;;;;;;;26435:234;;:::o;62392:191::-;58785:13;:11;:13::i;:::-;53327:1:::1;53925:7;;:19;;53917:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53327:1;54058:7;:18;;;;62461:12:::2;62479:10;:15;;62502:21;62479:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62460:68;;;62547:7;62539:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;62449:134;53283:1:::1;54237:7;:22;;;;62392:191::o:0;61189:525::-;61116:10;61103:23;;:9;:23;;;61095:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;61288:10:::1;61301:15;;61288:28;;61348:1;61335:9;:14;;61327:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;61414:1;61405:5;:10;;61397:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;61464:15;61449:30;;;;;;;;:::i;:::-;;:11;;;;;;;;;;;:30;;;;;;;;:::i;:::-;;;61441:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;60874:4;61547:9;61531:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;61523:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;61634:9;61626:5;:17;;;;:::i;:::-;61613:9;:30;;61605:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;61676:30;61686:8;61696:9;61676;:30::i;:::-;61277:437;61189:525:::0;;:::o;33228:407::-;33403:31;33416:4;33422:2;33426:7;33403:12;:31::i;:::-;33467:1;33449:2;:14;;;:19;33445:183;;33488:56;33519:4;33525:2;33529:7;33538:5;33488:30;:56::i;:::-;33483:145;;33572:40;;;;;;;;;;;;;;33483:145;33445:183;33228:407;;;;:::o;62070:314::-;62133:13;62167:17;62175:8;62167:7;:17::i;:::-;62159:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;62238:5;62226:17;;:8;;;;;;;;;;;:17;;;62223:63;;;62267:7;62260:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62223:63;62337:7;62346:19;:8;:17;:19::i;:::-;62320:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62306:70;;62070:314;;;;:::o;60807:23::-;;;;;;;;;;;;;:::o;61830:132::-;58785:13;:11;:13::i;:::-;61920:8:::1;61910:7;:18;;;;;;;;;;;;:::i;:::-;;61950:4;61939:8;;:15;;;;;;;;;;;;;;;;;;61830:132:::0;:::o;26826:164::-;26923:4;26947:18;:25;26966:5;26947:25;;;;;;;;;;;;;;;:35;26973:8;26947:35;;;;;;;;;;;;;;;;;;;;;;;;;26940:42;;26826:164;;;;:::o;59805:201::-;58785:13;:11;:13::i;:::-;59914:1:::1;59894:22;;:8;:22;;;;59886:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;59970:28;59989:8;59970:18;:28::i;:::-;59805:201:::0;:::o;61970:92::-;58785:13;:11;:13::i;:::-;62048:5:::1;62043:11;;;;;;;;:::i;:::-;;62029;;:25;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;61970:92:::0;:::o;27248:282::-;27313:4;27369:7;27350:15;:13;:15::i;:::-;:26;;:66;;;;;27403:13;;27393:7;:23;27350:66;:153;;;;;27502:1;11256:8;27454:17;:26;27472:7;27454:26;;;;;;;;;;;;:44;:49;27350:153;27330:173;;27248:282;;;:::o;49556:105::-;49616:7;49643:10;49636:17;;49556:105;:::o;14653:92::-;14709:7;14653:92;:::o;21934:1275::-;22001:7;22021:12;22036:7;22021:22;;22104:4;22085:15;:13;:15::i;:::-;:23;22081:1061;;22138:13;;22131:4;:20;22127:1015;;;22176:14;22193:17;:23;22211:4;22193:23;;;;;;;;;;;;22176:40;;22310:1;11256:8;22282:6;:24;:29;22278:845;;;22947:113;22964:1;22954:6;:11;22947:113;;;23007:17;:25;23025:6;;;;;;;23007:25;;;;;;;;;;;;22998:34;;22947:113;;;23093:6;23086:13;;;;;;22278:845;22153:989;22127:1015;22081:1061;23170:31;;;;;;;;;;;;;;21934:1275;;;;:::o;28411:485::-;28513:27;28542:23;28583:38;28624:15;:24;28640:7;28624:24;;;;;;;;;;;28583:65;;28801:18;28778:41;;28858:19;28852:26;28833:45;;28763:126;28411:485;;;:::o;27639:659::-;27788:11;27953:16;27946:5;27942:28;27933:37;;28113:16;28102:9;28098:32;28085:45;;28263:15;28252:9;28249:30;28241:5;28230:9;28227:20;28224:56;28214:66;;27639:659;;;;;:::o;34297:159::-;;;;;:::o;48865:311::-;49000:7;49020:16;11660:3;49046:19;:41;;49020:68;;11660:3;49114:31;49125:4;49131:2;49135:9;49114:10;:31::i;:::-;49106:40;;:62;;49099:69;;;48865:311;;;;;:::o;23757:450::-;23837:14;24005:16;23998:5;23994:28;23985:37;;24182:5;24168:11;24143:23;24139:41;24136:52;24129:5;24126:63;24116:73;;23757:450;;;;:::o;35121:158::-;;;;;:::o;59064:132::-;59139:12;:10;:12::i;:::-;59128:23;;:7;:5;:7::i;:::-;:23;;;59120:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59064:132::o;60166:191::-;60240:16;60259:6;;;;;;;;;;;60240:25;;60285:8;60276:6;;:17;;;;;;;;;;;;;;;;;;60340:8;60309:40;;60330:8;60309:40;;;;;;;;;;;;60229:128;60166:191;:::o;43388:112::-;43465:27;43475:2;43479:8;43465:27;;;;;;;;;;;;:9;:27::i;:::-;43388:112;;:::o;35719:716::-;35882:4;35928:2;35903:45;;;35949:19;:17;:19::i;:::-;35970:4;35976:7;35985:5;35903:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35899:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36203:1;36186:6;:13;:18;36182:235;;;36232:40;;;;;;;;;;;;;;36182:235;36375:6;36369:13;36360:6;36356:2;36352:15;36345:38;35899:529;36072:54;;;36062:64;;;:6;:64;;;;36055:71;;;35719:716;;;;;;:::o;54704:723::-;54760:13;54990:1;54981:5;:10;54977:53;;;55008:10;;;;;;;;;;;;;;;;;;;;;54977:53;55040:12;55055:5;55040:20;;55071:14;55096:78;55111:1;55103:4;:9;55096:78;;55129:8;;;;;:::i;:::-;;;;55160:2;55152:10;;;;;:::i;:::-;;;55096:78;;;55184:19;55216:6;55206:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55184:39;;55234:154;55250:1;55241:5;:10;55234:154;;55278:1;55268:11;;;;;:::i;:::-;;;55345:2;55337:5;:10;;;;:::i;:::-;55324:2;:24;;;;:::i;:::-;55311:39;;55294:6;55301;55294:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;55374:2;55365:11;;;;;:::i;:::-;;;55234:154;;;55412:6;55398:21;;;;;54704:723;;;;:::o;48566:147::-;48703:6;48566:147;;;;;:::o;57450:98::-;57503:7;57530:10;57523:17;;57450:98;:::o;42615:689::-;42746:19;42752:2;42756:8;42746:5;:19::i;:::-;42825:1;42807:2;:14;;;:19;42803:483;;42847:11;42861:13;;42847:27;;42893:13;42915:8;42909:3;:14;42893:30;;42942:233;42973:62;43012:1;43016:2;43020:7;;;;;;43029:5;42973:30;:62::i;:::-;42968:167;;43071:40;;;;;;;;;;;;;;42968:167;43170:3;43162:5;:11;42942:233;;43257:3;43240:13;;:20;43236:34;;43262:8;;;43236:34;42828:458;;42803:483;42615:689;;;:::o;36897:2966::-;36970:20;36993:13;;36970:36;;37033:1;37021:8;:13;37017:44;;;37043:18;;;;;;;;;;;;;;37017:44;37074:61;37104:1;37108:2;37112:12;37126:8;37074:21;:61::i;:::-;37618:1;10618:2;37588:1;:26;;37587:32;37575:8;:45;37549:18;:22;37568:2;37549:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37897:139;37934:2;37988:33;38011:1;38015:2;38019:1;37988:14;:33::i;:::-;37955:30;37976:8;37955:20;:30::i;:::-;:66;37897:18;:139::i;:::-;37863:17;:31;37881:12;37863:31;;;;;;;;;;;:173;;;;38053:16;38084:11;38113:8;38098:12;:23;38084:37;;38634:16;38630:2;38626:25;38614:37;;39006:12;38966:8;38925:1;38863:25;38804:1;38743;38716:335;39377:1;39363:12;39359:20;39317:346;39418:3;39409:7;39406:16;39317:346;;39636:7;39626:8;39623:1;39596:25;39593:1;39590;39585:59;39471:1;39462:7;39458:15;39447:26;;39317:346;;;39321:77;39708:1;39696:8;:13;39692:45;;;39718:19;;;;;;;;;;;;;;39692:45;39770:3;39754:13;:19;;;;37323:2462;;39795:60;39824:1;39828:2;39832:12;39846:8;39795:20;:60::i;:::-;36959:2904;36897:2966;;:::o;24309:324::-;24379:14;24612:1;24602:8;24599:15;24573:24;24569:46;24559:56;;24309:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:180::-;11689:77;11686:1;11679:88;11786:4;11783:1;11776:15;11810:4;11807:1;11800:15;11827:114;11909:1;11902:5;11899:12;11889:46;;11915:18;;:::i;:::-;11889:46;11827:114;:::o;11947:129::-;11993:7;12022:5;12011:16;;12028:42;12064:5;12028:42;:::i;:::-;11947:129;;;:::o;12082:::-;12139:9;12172:33;12199:5;12172:33;:::i;:::-;12159:46;;12082:129;;;:::o;12217:145::-;12311:44;12349:5;12311:44;:::i;:::-;12306:3;12299:57;12217:145;;:::o;12368:236::-;12468:4;12506:2;12495:9;12491:18;12483:26;;12519:78;12594:1;12583:9;12579:17;12570:6;12519:78;:::i;:::-;12368:236;;;;:::o;12610:474::-;12678:6;12686;12735:2;12723:9;12714:7;12710:23;12706:32;12703:119;;;12741:79;;:::i;:::-;12703:119;12861:1;12886:53;12931:7;12922:6;12911:9;12907:22;12886:53;:::i;:::-;12876:63;;12832:117;12988:2;13014:53;13059:7;13050:6;13039:9;13035:22;13014:53;:::i;:::-;13004:63;;12959:118;12610:474;;;;;:::o;13090:180::-;13138:77;13135:1;13128:88;13235:4;13232:1;13225:15;13259:4;13256:1;13249:15;13276:320;13320:6;13357:1;13351:4;13347:12;13337:22;;13404:1;13398:4;13394:12;13425:18;13415:81;;13481:4;13473:6;13469:17;13459:27;;13415:81;13543:2;13535:6;13532:14;13512:18;13509:38;13506:84;;;13562:18;;:::i;:::-;13506:84;13327:269;13276:320;;;:::o;13602:181::-;13742:33;13738:1;13730:6;13726:14;13719:57;13602:181;:::o;13789:366::-;13931:3;13952:67;14016:2;14011:3;13952:67;:::i;:::-;13945:74;;14028:93;14117:3;14028:93;:::i;:::-;14146:2;14141:3;14137:12;14130:19;;13789:366;;;:::o;14161:419::-;14327:4;14365:2;14354:9;14350:18;14342:26;;14414:9;14408:4;14404:20;14400:1;14389:9;14385:17;14378:47;14442:131;14568:4;14442:131;:::i;:::-;14434:139;;14161:419;;;:::o;14586:147::-;14687:11;14724:3;14709:18;;14586:147;;;;:::o;14739:114::-;;:::o;14859:398::-;15018:3;15039:83;15120:1;15115:3;15039:83;:::i;:::-;15032:90;;15131:93;15220:3;15131:93;:::i;:::-;15249:1;15244:3;15240:11;15233:18;;14859:398;;;:::o;15263:379::-;15447:3;15469:147;15612:3;15469:147;:::i;:::-;15462:154;;15633:3;15626:10;;15263:379;;;:::o;15648:166::-;15788:18;15784:1;15776:6;15772:14;15765:42;15648:166;:::o;15820:366::-;15962:3;15983:67;16047:2;16042:3;15983:67;:::i;:::-;15976:74;;16059:93;16148:3;16059:93;:::i;:::-;16177:2;16172:3;16168:12;16161:19;;15820:366;;;:::o;16192:419::-;16358:4;16396:2;16385:9;16381:18;16373:26;;16445:9;16439:4;16435:20;16431:1;16420:9;16416:17;16409:47;16473:131;16599:4;16473:131;:::i;:::-;16465:139;;16192:419;;;:::o;16617:180::-;16757:32;16753:1;16745:6;16741:14;16734:56;16617:180;:::o;16803:366::-;16945:3;16966:67;17030:2;17025:3;16966:67;:::i;:::-;16959:74;;17042:93;17131:3;17042:93;:::i;:::-;17160:2;17155:3;17151:12;17144:19;;16803:366;;;:::o;17175:419::-;17341:4;17379:2;17368:9;17364:18;17356:26;;17428:9;17422:4;17418:20;17414:1;17403:9;17399:17;17392:47;17456:131;17582:4;17456:131;:::i;:::-;17448:139;;17175:419;;;:::o;17600:182::-;17740:34;17736:1;17728:6;17724:14;17717:58;17600:182;:::o;17788:366::-;17930:3;17951:67;18015:2;18010:3;17951:67;:::i;:::-;17944:74;;18027:93;18116:3;18027:93;:::i;:::-;18145:2;18140:3;18136:12;18129:19;;17788:366;;;:::o;18160:419::-;18326:4;18364:2;18353:9;18349:18;18341:26;;18413:9;18407:4;18403:20;18399:1;18388:9;18384:17;18377:47;18441:131;18567:4;18441:131;:::i;:::-;18433:139;;18160:419;;;:::o;18585:160::-;18725:12;18721:1;18713:6;18709:14;18702:36;18585:160;:::o;18751:366::-;18893:3;18914:67;18978:2;18973:3;18914:67;:::i;:::-;18907:74;;18990:93;19079:3;18990:93;:::i;:::-;19108:2;19103:3;19099:12;19092:19;;18751:366;;;:::o;19123:419::-;19289:4;19327:2;19316:9;19312:18;19304:26;;19376:9;19370:4;19366:20;19362:1;19351:9;19347:17;19340:47;19404:131;19530:4;19404:131;:::i;:::-;19396:139;;19123:419;;;:::o;19548:178::-;19688:30;19684:1;19676:6;19672:14;19665:54;19548:178;:::o;19732:366::-;19874:3;19895:67;19959:2;19954:3;19895:67;:::i;:::-;19888:74;;19971:93;20060:3;19971:93;:::i;:::-;20089:2;20084:3;20080:12;20073:19;;19732:366;;;:::o;20104:419::-;20270:4;20308:2;20297:9;20293:18;20285:26;;20357:9;20351:4;20347:20;20343:1;20332:9;20328:17;20321:47;20385:131;20511:4;20385:131;:::i;:::-;20377:139;;20104:419;;;:::o;20529:180::-;20577:77;20574:1;20567:88;20674:4;20671:1;20664:15;20698:4;20695:1;20688:15;20715:305;20755:3;20774:20;20792:1;20774:20;:::i;:::-;20769:25;;20808:20;20826:1;20808:20;:::i;:::-;20803:25;;20962:1;20894:66;20890:74;20887:1;20884:81;20881:107;;;20968:18;;:::i;:::-;20881:107;21012:1;21009;21005:9;20998:16;;20715:305;;;;:::o;21026:169::-;21166:21;21162:1;21154:6;21150:14;21143:45;21026:169;:::o;21201:366::-;21343:3;21364:67;21428:2;21423:3;21364:67;:::i;:::-;21357:74;;21440:93;21529:3;21440:93;:::i;:::-;21558:2;21553:3;21549:12;21542:19;;21201:366;;;:::o;21573:419::-;21739:4;21777:2;21766:9;21762:18;21754:26;;21826:9;21820:4;21816:20;21812:1;21801:9;21797:17;21790:47;21854:131;21980:4;21854:131;:::i;:::-;21846:139;;21573:419;;;:::o;21998:348::-;22038:7;22061:20;22079:1;22061:20;:::i;:::-;22056:25;;22095:20;22113:1;22095:20;:::i;:::-;22090:25;;22283:1;22215:66;22211:74;22208:1;22205:81;22200:1;22193:9;22186:17;22182:105;22179:131;;;22290:18;;:::i;:::-;22179:131;22338:1;22335;22331:9;22320:20;;21998:348;;;;:::o;22352:167::-;22492:19;22488:1;22480:6;22476:14;22469:43;22352:167;:::o;22525:366::-;22667:3;22688:67;22752:2;22747:3;22688:67;:::i;:::-;22681:74;;22764:93;22853:3;22764:93;:::i;:::-;22882:2;22877:3;22873:12;22866:19;;22525:366;;;:::o;22897:419::-;23063:4;23101:2;23090:9;23086:18;23078:26;;23150:9;23144:4;23140:20;23136:1;23125:9;23121:17;23114:47;23178:131;23304:4;23178:131;:::i;:::-;23170:139;;22897:419;;;:::o;23322:173::-;23462:25;23458:1;23450:6;23446:14;23439:49;23322:173;:::o;23501:366::-;23643:3;23664:67;23728:2;23723:3;23664:67;:::i;:::-;23657:74;;23740:93;23829:3;23740:93;:::i;:::-;23858:2;23853:3;23849:12;23842:19;;23501:366;;;:::o;23873:419::-;24039:4;24077:2;24066:9;24062:18;24054:26;;24126:9;24120:4;24116:20;24112:1;24101:9;24097:17;24090:47;24154:131;24280:4;24154:131;:::i;:::-;24146:139;;23873:419;;;:::o;24298:148::-;24400:11;24437:3;24422:18;;24298:148;;;;:::o;24452:141::-;24501:4;24524:3;24516:11;;24547:3;24544:1;24537:14;24581:4;24578:1;24568:18;24560:26;;24452:141;;;:::o;24623:845::-;24726:3;24763:5;24757:12;24792:36;24818:9;24792:36;:::i;:::-;24844:89;24926:6;24921:3;24844:89;:::i;:::-;24837:96;;24964:1;24953:9;24949:17;24980:1;24975:137;;;;25126:1;25121:341;;;;24942:520;;24975:137;25059:4;25055:9;25044;25040:25;25035:3;25028:38;25095:6;25090:3;25086:16;25079:23;;24975:137;;25121:341;25188:38;25220:5;25188:38;:::i;:::-;25248:1;25262:154;25276:6;25273:1;25270:13;25262:154;;;25350:7;25344:14;25340:1;25335:3;25331:11;25324:35;25400:1;25391:7;25387:15;25376:26;;25298:4;25295:1;25291:12;25286:17;;25262:154;;;25445:6;25440:3;25436:16;25429:23;;25128:334;;24942:520;;24730:738;;24623:845;;;;:::o;25474:377::-;25580:3;25608:39;25641:5;25608:39;:::i;:::-;25663:89;25745:6;25740:3;25663:89;:::i;:::-;25656:96;;25761:52;25806:6;25801:3;25794:4;25787:5;25783:16;25761:52;:::i;:::-;25838:6;25833:3;25829:16;25822:23;;25584:267;25474:377;;;;:::o;25857:155::-;25997:7;25993:1;25985:6;25981:14;25974:31;25857:155;:::o;26018:400::-;26178:3;26199:84;26281:1;26276:3;26199:84;:::i;:::-;26192:91;;26292:93;26381:3;26292:93;:::i;:::-;26410:1;26405:3;26401:11;26394:18;;26018:400;;;:::o;26424:695::-;26702:3;26724:92;26812:3;26803:6;26724:92;:::i;:::-;26717:99;;26833:95;26924:3;26915:6;26833:95;:::i;:::-;26826:102;;26945:148;27089:3;26945:148;:::i;:::-;26938:155;;27110:3;27103:10;;26424:695;;;;;:::o;27125:225::-;27265:34;27261:1;27253:6;27249:14;27242:58;27334:8;27329:2;27321:6;27317:15;27310:33;27125:225;:::o;27356:366::-;27498:3;27519:67;27583:2;27578:3;27519:67;:::i;:::-;27512:74;;27595:93;27684:3;27595:93;:::i;:::-;27713:2;27708:3;27704:12;27697:19;;27356:366;;;:::o;27728:419::-;27894:4;27932:2;27921:9;27917:18;27909:26;;27981:9;27975:4;27971:20;27967:1;27956:9;27952:17;27945:47;28009:131;28135:4;28009:131;:::i;:::-;28001:139;;27728:419;;;:::o;28153:182::-;28293:34;28289:1;28281:6;28277:14;28270:58;28153:182;:::o;28341:366::-;28483:3;28504:67;28568:2;28563:3;28504:67;:::i;:::-;28497:74;;28580:93;28669:3;28580:93;:::i;:::-;28698:2;28693:3;28689:12;28682:19;;28341:366;;;:::o;28713:419::-;28879:4;28917:2;28906:9;28902:18;28894:26;;28966:9;28960:4;28956:20;28952:1;28941:9;28937:17;28930:47;28994:131;29120:4;28994:131;:::i;:::-;28986:139;;28713:419;;;:::o;29138:98::-;29189:6;29223:5;29217:12;29207:22;;29138:98;;;:::o;29242:168::-;29325:11;29359:6;29354:3;29347:19;29399:4;29394:3;29390:14;29375:29;;29242:168;;;;:::o;29416:360::-;29502:3;29530:38;29562:5;29530:38;:::i;:::-;29584:70;29647:6;29642:3;29584:70;:::i;:::-;29577:77;;29663:52;29708:6;29703:3;29696:4;29689:5;29685:16;29663:52;:::i;:::-;29740:29;29762:6;29740:29;:::i;:::-;29735:3;29731:39;29724:46;;29506:270;29416:360;;;;:::o;29782:640::-;29977:4;30015:3;30004:9;30000:19;29992:27;;30029:71;30097:1;30086:9;30082:17;30073:6;30029:71;:::i;:::-;30110:72;30178:2;30167:9;30163:18;30154:6;30110:72;:::i;:::-;30192;30260:2;30249:9;30245:18;30236:6;30192:72;:::i;:::-;30311:9;30305:4;30301:20;30296:2;30285:9;30281:18;30274:48;30339:76;30410:4;30401:6;30339:76;:::i;:::-;30331:84;;29782:640;;;;;;;:::o;30428:141::-;30484:5;30515:6;30509:13;30500:22;;30531:32;30557:5;30531:32;:::i;:::-;30428:141;;;;:::o;30575:349::-;30644:6;30693:2;30681:9;30672:7;30668:23;30664:32;30661:119;;;30699:79;;:::i;:::-;30661:119;30819:1;30844:63;30899:7;30890:6;30879:9;30875:22;30844:63;:::i;:::-;30834:73;;30790:127;30575:349;;;;:::o;30930:233::-;30969:3;30992:24;31010:5;30992:24;:::i;:::-;30983:33;;31038:66;31031:5;31028:77;31025:103;;;31108:18;;:::i;:::-;31025:103;31155:1;31148:5;31144:13;31137:20;;30930:233;;;:::o;31169:180::-;31217:77;31214:1;31207:88;31314:4;31311:1;31304:15;31338:4;31335:1;31328:15;31355:185;31395:1;31412:20;31430:1;31412:20;:::i;:::-;31407:25;;31446:20;31464:1;31446:20;:::i;:::-;31441:25;;31485:1;31475:35;;31490:18;;:::i;:::-;31475:35;31532:1;31529;31525:9;31520:14;;31355:185;;;;:::o;31546:191::-;31586:4;31606:20;31624:1;31606:20;:::i;:::-;31601:25;;31640:20;31658:1;31640:20;:::i;:::-;31635:25;;31679:1;31676;31673:8;31670:34;;;31684:18;;:::i;:::-;31670:34;31729:1;31726;31722:9;31714:17;;31546:191;;;;:::o;31743:176::-;31775:1;31792:20;31810:1;31792:20;:::i;:::-;31787:25;;31826:20;31844:1;31826:20;:::i;:::-;31821:25;;31865:1;31855:35;;31870:18;;:::i;:::-;31855:35;31911:1;31908;31904:9;31899:14;;31743:176;;;;:::o;31925:180::-;31973:77;31970:1;31963:88;32070:4;32067:1;32060:15;32094:4;32091:1;32084:15

Swarm Source

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