APE Price: $1.15 (+5.40%)

ReshApe (RA)

Overview

TokenID

6

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
ReshApe

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at apescan.io on 2024-10-30
*/

// File: erc721a/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: erc721a/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/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: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _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) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _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: contracts/reshape.sol


// ERC721A Contracts v4.2.3

pragma solidity ^0.8.18;




contract ReshApe is ERC721A, Ownable{

    using Strings for uint256;
    uint256 public constant MAX_SUPPLY = 5555;
    uint256 public mintPrice = 2.5 ether; 
    uint256 public maxBalance = 50; 
    uint256 public maxMint = 10; 
    bool public _isSaleActive = false; 
    bool public _revealed = true;
    string baseURI;
    string public notRevealedUri;
    string public baseExtension = ".json";
    mapping(uint256 => string) private _tokenURIs;

    constructor(string memory initBaseURI, string memory initNotRevealedUri) 
        ERC721A("ReshApe", "RA") 
    {
        setBaseURI(initBaseURI);
        setNotRevealedURI(initNotRevealedUri);
    }

    function mintOwner(uint256 tokenQuantity) public onlyOwner {
        _safeMint(msg.sender, tokenQuantity);
    }

    function mintPublic(uint256 tokenQuantity) public payable {
        require(_isSaleActive, "Sale must be active to mint NFT");
        require(tokenQuantity <= maxMint, "Mint too many tokens at a time");
        require(
            balanceOf(msg.sender)  + tokenQuantity <= maxBalance, 
            "Sale would exceed max balance"
        );
        require(
            totalSupply() + tokenQuantity <= MAX_SUPPLY,
            "Sale would exceed max supply"
        );
        require(tokenQuantity * mintPrice <= msg.value, "Not enough ether");
        _safeMint(msg.sender, tokenQuantity);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "URI query for nonexistent token"
        );

        if (_revealed == false) {
            return notRevealedUri;
        }

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        if (bytes(base).length == 0) {
            return _tokenURI;
        }

        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return
            string(abi.encodePacked(base, tokenId.toString(), baseExtension));
    }

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

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

    function flipSaleActive() public onlyOwner {
        _isSaleActive = !_isSaleActive;
    }

    function flipReveal() public onlyOwner {
        _revealed = !_revealed;
    }

    function setMintPrice(uint256 _mintPrice) public onlyOwner {
        mintPrice = _mintPrice;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setMaxBalance(uint256 _maxBalance) public onlyOwner {
        maxBalance = _maxBalance;
    }

    function setMaxMint(uint256 _maxMint) public onlyOwner {
        maxMint = _maxMint;
    }

    function withdraw(address to) public onlyOwner {
        uint256 balance = address(this).balance;
        payable(to).transfer(balance);
    }
 
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"string","name":"initNotRevealedUri","type":"string"}],"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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBalance","type":"uint256"}],"name":"setMaxBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","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":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526722b1c8c1227a00006009556032600a55600a600b555f600c5f6101000a81548160ff0219169083151502179055506001600c60016101000a81548160ff0219169083151502179055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f9081610092919061059e565b5034801561009e575f80fd5b506040516139f23803806139f283398181016040528101906100c0919061078d565b6040518060400160405280600781526020017f52657368417065000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f5241000000000000000000000000000000000000000000000000000000000000815250816002908161013b919061059e565b50806003908161014b919061059e565b5061015a6101a260201b60201c565b5f81905550505061017d6101726101a660201b60201c565b6101ad60201b60201c565b61018c8261027060201b60201c565b61019b8161029160201b60201c565b505061087b565b5f90565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61027e6102b260201b60201c565b80600d908161028d919061059e565b5050565b61029f6102b260201b60201c565b80600e90816102ae919061059e565b5050565b6102c06101a660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166102e461033c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161461033a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103319061085d565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806103df57607f821691505b6020821081036103f2576103f161039b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026104547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610419565b61045e8683610419565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6104a261049d61049884610476565b61047f565b610476565b9050919050565b5f819050919050565b6104bb83610488565b6104cf6104c7826104a9565b848454610425565b825550505050565b5f90565b6104e36104d7565b6104ee8184846104b2565b505050565b5b81811015610511576105065f826104db565b6001810190506104f4565b5050565b601f82111561055657610527816103f8565b6105308461040a565b8101602085101561053f578190505b61055361054b8561040a565b8301826104f3565b50505b505050565b5f82821c905092915050565b5f6105765f198460080261055b565b1980831691505092915050565b5f61058e8383610567565b9150826002028217905092915050565b6105a782610364565b67ffffffffffffffff8111156105c0576105bf61036e565b5b6105ca82546103c8565b6105d5828285610515565b5f60209050601f831160018114610606575f84156105f4578287015190505b6105fe8582610583565b865550610665565b601f198416610614866103f8565b5f5b8281101561063b57848901518255600182019150602085019450602081019050610616565b868310156106585784890151610654601f891682610567565b8355505b6001600288020188555050505b505050505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b61069f82610686565b810181811067ffffffffffffffff821117156106be576106bd61036e565b5b80604052505050565b5f6106d061066d565b90506106dc8282610696565b919050565b5f67ffffffffffffffff8211156106fb576106fa61036e565b5b61070482610686565b9050602081019050919050565b8281835e5f83830152505050565b5f61073161072c846106e1565b6106c7565b90508281526020810184848401111561074d5761074c610682565b5b610758848285610711565b509392505050565b5f82601f8301126107745761077361067e565b5b815161078484826020860161071f565b91505092915050565b5f80604083850312156107a3576107a2610676565b5b5f83015167ffffffffffffffff8111156107c0576107bf61067a565b5b6107cc85828601610760565b925050602083015167ffffffffffffffff8111156107ed576107ec61067a565b5b6107f985828601610760565b9150509250929050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f610847602083610803565b915061085282610813565b602082019050919050565b5f6020820190508181035f8301526108748161083b565b9050919050565b61316a806108885f395ff3fe60806040526004361061020e575f3560e01c806370a0823111610117578063c66828621161009f578063e985e9c51161006e578063e985e9c514610700578063efd0cbf91461073c578063f2c4ce1e14610758578063f2fde38b14610780578063f4a0a528146107a85761020e565b8063c66828621461065c578063c87b56dd14610686578063da3ef23f146106c2578063de8b51e1146106ea5761020e565b80638da5cb5b116100e65780638da5cb5b1461059c57806395d89b41146105c65780639d51d9b7146105f0578063a22cb46514610618578063b88d4fde146106405761020e565b806370a08231146104f6578063715018a61461053257806373ad468a146105485780637501f741146105725761020e565b80633b84d9c61161019a57806355f804b31161016957806355f804b3146104145780636352211e1461043c5780636817c76c146104785780636ebeac85146104a25780637080d6fc146104cc5761020e565b80633b84d9c61461039257806342842e0e146103a857806351cff8d9146103c4578063547520fe146103ec5761020e565b8063095ea7b3116101e1578063095ea7b3146102de57806318160ddd146102fa57806323b872dd1461032457806332cb6b0c1461034057806333f88d221461036a5761020e565b806301ffc9a71461021257806306fdde031461024e578063081812fc14610278578063081c8c44146102b4575b5f80fd5b34801561021d575f80fd5b5061023860048036038101906102339190612269565b6107d0565b60405161024591906122ae565b60405180910390f35b348015610259575f80fd5b50610262610861565b60405161026f9190612337565b60405180910390f35b348015610283575f80fd5b5061029e6004803603810190610299919061238a565b6108f1565b6040516102ab91906123f4565b60405180910390f35b3480156102bf575f80fd5b506102c861096b565b6040516102d59190612337565b60405180910390f35b6102f860048036038101906102f39190612437565b6109f7565b005b348015610305575f80fd5b5061030e610b36565b60405161031b9190612484565b60405180910390f35b61033e6004803603810190610339919061249d565b610b4b565b005b34801561034b575f80fd5b50610354610e59565b6040516103619190612484565b60405180910390f35b348015610375575f80fd5b50610390600480360381019061038b919061238a565b610e5f565b005b34801561039d575f80fd5b506103a6610e74565b005b6103c260048036038101906103bd919061249d565b610ea8565b005b3480156103cf575f80fd5b506103ea60048036038101906103e591906124ed565b610ec7565b005b3480156103f7575f80fd5b50610412600480360381019061040d919061238a565b610f1b565b005b34801561041f575f80fd5b5061043a60048036038101906104359190612644565b610f2d565b005b348015610447575f80fd5b50610462600480360381019061045d919061238a565b610f48565b60405161046f91906123f4565b60405180910390f35b348015610483575f80fd5b5061048c610f59565b6040516104999190612484565b60405180910390f35b3480156104ad575f80fd5b506104b6610f5f565b6040516104c391906122ae565b60405180910390f35b3480156104d7575f80fd5b506104e0610f72565b6040516104ed91906122ae565b60405180910390f35b348015610501575f80fd5b5061051c600480360381019061051791906124ed565b610f84565b6040516105299190612484565b60405180910390f35b34801561053d575f80fd5b50610546611039565b005b348015610553575f80fd5b5061055c61104c565b6040516105699190612484565b60405180910390f35b34801561057d575f80fd5b50610586611052565b6040516105939190612484565b60405180910390f35b3480156105a7575f80fd5b506105b0611058565b6040516105bd91906123f4565b60405180910390f35b3480156105d1575f80fd5b506105da611080565b6040516105e79190612337565b60405180910390f35b3480156105fb575f80fd5b506106166004803603810190610611919061238a565b611110565b005b348015610623575f80fd5b5061063e600480360381019061063991906126b5565b611122565b005b61065a60048036038101906106559190612791565b611228565b005b348015610667575f80fd5b5061067061129a565b60405161067d9190612337565b60405180910390f35b348015610691575f80fd5b506106ac60048036038101906106a7919061238a565b611326565b6040516106b99190612337565b60405180910390f35b3480156106cd575f80fd5b506106e860048036038101906106e39190612644565b61153d565b005b3480156106f5575f80fd5b506106fe611558565b005b34801561070b575f80fd5b5061072660048036038101906107219190612811565b61158a565b60405161073391906122ae565b60405180910390f35b6107566004803603810190610751919061238a565b611618565b005b348015610763575f80fd5b5061077e60048036038101906107799190612644565b6117b7565b005b34801561078b575f80fd5b506107a660048036038101906107a191906124ed565b6117d2565b005b3480156107b3575f80fd5b506107ce60048036038101906107c9919061238a565b611854565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108709061287c565b80601f016020809104026020016040519081016040528092919081815260200182805461089c9061287c565b80156108e75780601f106108be576101008083540402835291602001916108e7565b820191905f5260205f20905b8154815290600101906020018083116108ca57829003601f168201915b5050505050905090565b5f6108fb82611866565b610931576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e80546109789061287c565b80601f01602080910402602001604051908101604052809291908181526020018280546109a49061287c565b80156109ef5780601f106109c6576101008083540402835291602001916109ef565b820191905f5260205f20905b8154815290600101906020018083116109d257829003601f168201915b505050505081565b5f610a0182610f48565b90508073ffffffffffffffffffffffffffffffffffffffff16610a226118c0565b73ffffffffffffffffffffffffffffffffffffffff1614610a8557610a4e81610a496118c0565b61158a565b610a84576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610b3f6118c7565b6001545f540303905090565b5f610b55826118cb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bbc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610bc78461198e565b91509150610bdd8187610bd86118c0565b6119b1565b610c2957610bf286610bed6118c0565b61158a565b610c28576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c8e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c9b86868660016119f4565b8015610ca5575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610d6d85610d498888876119fa565b7c020000000000000000000000000000000000000000000000000000000017611a21565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610de9575f6001850190505f60045f8381526020019081526020015f205403610de7575f548114610de6578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e518686866001611a4b565b505050505050565b6115b381565b610e67611a51565b610e713382611acf565b50565b610e7c611a51565b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b610ec283838360405180602001604052805f815250611228565b505050565b610ecf611a51565b5f4790508173ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610f16573d5f803e3d5ffd5b505050565b610f23611a51565b80600b8190555050565b610f35611a51565b80600d9081610f449190612a49565b5050565b5f610f52826118cb565b9050919050565b60095481565b600c60019054906101000a900460ff1681565b600c5f9054906101000a900460ff1681565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fea576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b611041611a51565b61104a5f611aec565b565b600a5481565b600b5481565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461108f9061287c565b80601f01602080910402602001604051908101604052809291908181526020018280546110bb9061287c565b80156111065780601f106110dd57610100808354040283529160200191611106565b820191905f5260205f20905b8154815290600101906020018083116110e957829003601f168201915b5050505050905090565b611118611a51565b80600a8190555050565b8060075f61112e6118c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111d76118c0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161121c91906122ae565b60405180910390a35050565b611233848484610b4b565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146112945761125d84848484611baf565b611293576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f80546112a79061287c565b80601f01602080910402602001604051908101604052809291908181526020018280546112d39061287c565b801561131e5780601f106112f55761010080835404028352916020019161131e565b820191905f5260205f20905b81548152906001019060200180831161130157829003601f168201915b505050505081565b606061133182611866565b611370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136790612b62565b60405180910390fd5b5f1515600c60019054906101000a900460ff1615150361141a57600e80546113979061287c565b80601f01602080910402602001604051908101604052809291908181526020018280546113c39061287c565b801561140e5780601f106113e55761010080835404028352916020019161140e565b820191905f5260205f20905b8154815290600101906020018083116113f157829003601f168201915b50505050509050611538565b5f60105f8481526020019081526020015f2080546114379061287c565b80601f01602080910402602001604051908101604052809291908181526020018280546114639061287c565b80156114ae5780601f10611485576101008083540402835291602001916114ae565b820191905f5260205f20905b81548152906001019060200180831161149157829003601f168201915b505050505090505f6114be611cfa565b90505f8151036114d2578192505050611538565b5f825111156115065780826040516020016114ee929190612bba565b60405160208183030381529060405292505050611538565b8061151085611d8a565b600f60405160200161152493929190612c5d565b604051602081830303815290604052925050505b919050565b611545611a51565b80600f90816115549190612a49565b5050565b611560611a51565b600c5f9054906101000a900460ff1615600c5f6101000a81548160ff021916908315150217905550565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600c5f9054906101000a900460ff16611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90612cd7565b60405180910390fd5b600b548111156116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a290612d3f565b60405180910390fd5b600a54816116b833610f84565b6116c29190612d8a565b1115611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90612e07565b60405180910390fd5b6115b38161170f610b36565b6117199190612d8a565b111561175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190612e6f565b60405180910390fd5b34600954826117699190612e8d565b11156117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a190612f18565b60405180910390fd5b6117b43382611acf565b50565b6117bf611a51565b80600e90816117ce9190612a49565b5050565b6117da611a51565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f90612fa6565b60405180910390fd5b61185181611aec565b50565b61185c611a51565b8060098190555050565b5f816118706118c7565b1115801561187e57505f5482105b80156118b957505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f90565b5f80829050806118d96118c7565b11611957575f54811015611956575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611954575b5f810361194a5760045f836001900393508381526020019081526020015f20549050611923565b8092505050611989565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611a10868684611e54565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611a59611e5c565b73ffffffffffffffffffffffffffffffffffffffff16611a77611058565b73ffffffffffffffffffffffffffffffffffffffff1614611acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac49061300e565b60405180910390fd5b565b611ae8828260405180602001604052805f815250611e63565b5050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bd46118c0565b8786866040518563ffffffff1660e01b8152600401611bf6949392919061307e565b6020604051808303815f875af1925050508015611c3157506040513d601f19601f82011682018060405250810190611c2e91906130dc565b60015b611ca7573d805f8114611c5f576040519150601f19603f3d011682016040523d82523d5f602084013e611c64565b606091505b505f815103611c9f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611d099061287c565b80601f0160208091040260200160405190810160405280929190818152602001828054611d359061287c565b8015611d805780601f10611d5757610100808354040283529160200191611d80565b820191905f5260205f20905b815481529060010190602001808311611d6357829003601f168201915b5050505050905090565b60605f6001611d9884611efa565b0190505f8167ffffffffffffffff811115611db657611db5612520565b5b6040519080825280601f01601f191660200182016040528015611de85781602001600182028036833780820191505090505b5090505f82602001820190505b600115611e49578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611e3e57611e3d613107565b5b0494505f8503611df5575b819350505050919050565b5f9392505050565b5f33905090565b611e6d838361204b565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611ef5575f805490505f83820390505b611ea95f868380600101945086611baf565b611edf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e9757815f5414611ef2575f80fd5b50505b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611f56577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611f4c57611f4b613107565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611f93576d04ee2d6d415b85acef81000000008381611f8957611f88613107565b5b0492506020810190505b662386f26fc100008310611fc257662386f26fc100008381611fb857611fb7613107565b5b0492506010810190505b6305f5e1008310611feb576305f5e1008381611fe157611fe0613107565b5b0492506008810190505b612710831061201057612710838161200657612005613107565b5b0492506004810190505b60648310612033576064838161202957612028613107565b5b0492506002810190505b600a8310612042576001810190505b80915050919050565b5f805490505f8203612089576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120955f8483856119f4565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612107836120f85f865f6119fa565b612101856121f4565b17611a21565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146121a15780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612168565b505f82036121db576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506121ef5f848385611a4b565b505050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61224881612214565b8114612252575f80fd5b50565b5f813590506122638161223f565b92915050565b5f6020828403121561227e5761227d61220c565b5b5f61228b84828501612255565b91505092915050565b5f8115159050919050565b6122a881612294565b82525050565b5f6020820190506122c15f83018461229f565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612309826122c7565b61231381856122d1565b93506123238185602086016122e1565b61232c816122ef565b840191505092915050565b5f6020820190508181035f83015261234f81846122ff565b905092915050565b5f819050919050565b61236981612357565b8114612373575f80fd5b50565b5f8135905061238481612360565b92915050565b5f6020828403121561239f5761239e61220c565b5b5f6123ac84828501612376565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6123de826123b5565b9050919050565b6123ee816123d4565b82525050565b5f6020820190506124075f8301846123e5565b92915050565b612416816123d4565b8114612420575f80fd5b50565b5f813590506124318161240d565b92915050565b5f806040838503121561244d5761244c61220c565b5b5f61245a85828601612423565b925050602061246b85828601612376565b9150509250929050565b61247e81612357565b82525050565b5f6020820190506124975f830184612475565b92915050565b5f805f606084860312156124b4576124b361220c565b5b5f6124c186828701612423565b93505060206124d286828701612423565b92505060406124e386828701612376565b9150509250925092565b5f602082840312156125025761250161220c565b5b5f61250f84828501612423565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612556826122ef565b810181811067ffffffffffffffff8211171561257557612574612520565b5b80604052505050565b5f612587612203565b9050612593828261254d565b919050565b5f67ffffffffffffffff8211156125b2576125b1612520565b5b6125bb826122ef565b9050602081019050919050565b828183375f83830152505050565b5f6125e86125e384612598565b61257e565b9050828152602081018484840111156126045761260361251c565b5b61260f8482856125c8565b509392505050565b5f82601f83011261262b5761262a612518565b5b813561263b8482602086016125d6565b91505092915050565b5f602082840312156126595761265861220c565b5b5f82013567ffffffffffffffff81111561267657612675612210565b5b61268284828501612617565b91505092915050565b61269481612294565b811461269e575f80fd5b50565b5f813590506126af8161268b565b92915050565b5f80604083850312156126cb576126ca61220c565b5b5f6126d885828601612423565b92505060206126e9858286016126a1565b9150509250929050565b5f67ffffffffffffffff82111561270d5761270c612520565b5b612716826122ef565b9050602081019050919050565b5f612735612730846126f3565b61257e565b9050828152602081018484840111156127515761275061251c565b5b61275c8482856125c8565b509392505050565b5f82601f83011261277857612777612518565b5b8135612788848260208601612723565b91505092915050565b5f805f80608085870312156127a9576127a861220c565b5b5f6127b687828801612423565b94505060206127c787828801612423565b93505060406127d887828801612376565b925050606085013567ffffffffffffffff8111156127f9576127f8612210565b5b61280587828801612764565b91505092959194509250565b5f80604083850312156128275761282661220c565b5b5f61283485828601612423565b925050602061284585828601612423565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061289357607f821691505b6020821081036128a6576128a561284f565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026129087fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826128cd565b61291286836128cd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61294d61294861294384612357565b61292a565b612357565b9050919050565b5f819050919050565b61296683612933565b61297a61297282612954565b8484546128d9565b825550505050565b5f90565b61298e612982565b61299981848461295d565b505050565b5b818110156129bc576129b15f82612986565b60018101905061299f565b5050565b601f821115612a01576129d2816128ac565b6129db846128be565b810160208510156129ea578190505b6129fe6129f6856128be565b83018261299e565b50505b505050565b5f82821c905092915050565b5f612a215f1984600802612a06565b1980831691505092915050565b5f612a398383612a12565b9150826002028217905092915050565b612a52826122c7565b67ffffffffffffffff811115612a6b57612a6a612520565b5b612a75825461287c565b612a808282856129c0565b5f60209050601f831160018114612ab1575f8415612a9f578287015190505b612aa98582612a2e565b865550612b10565b601f198416612abf866128ac565b5f5b82811015612ae657848901518255600182019150602085019450602081019050612ac1565b86831015612b035784890151612aff601f891682612a12565b8355505b6001600288020188555050505b505050505050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e005f82015250565b5f612b4c601f836122d1565b9150612b5782612b18565b602082019050919050565b5f6020820190508181035f830152612b7981612b40565b9050919050565b5f81905092915050565b5f612b94826122c7565b612b9e8185612b80565b9350612bae8185602086016122e1565b80840191505092915050565b5f612bc58285612b8a565b9150612bd18284612b8a565b91508190509392505050565b5f8154612be98161287c565b612bf38186612b80565b9450600182165f8114612c0d5760018114612c2257612c54565b60ff1983168652811515820286019350612c54565b612c2b856128ac565b5f5b83811015612c4c57815481890152600182019150602081019050612c2d565b838801955050505b50505092915050565b5f612c688286612b8a565b9150612c748285612b8a565b9150612c808284612bdd565b9150819050949350505050565b7f53616c65206d7573742062652061637469766520746f206d696e74204e4654005f82015250565b5f612cc1601f836122d1565b9150612ccc82612c8d565b602082019050919050565b5f6020820190508181035f830152612cee81612cb5565b9050919050565b7f4d696e7420746f6f206d616e7920746f6b656e7320617420612074696d6500005f82015250565b5f612d29601e836122d1565b9150612d3482612cf5565b602082019050919050565b5f6020820190508181035f830152612d5681612d1d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612d9482612357565b9150612d9f83612357565b9250828201905080821115612db757612db6612d5d565b5b92915050565b7f53616c6520776f756c6420657863656564206d61782062616c616e63650000005f82015250565b5f612df1601d836122d1565b9150612dfc82612dbd565b602082019050919050565b5f6020820190508181035f830152612e1e81612de5565b9050919050565b7f53616c6520776f756c6420657863656564206d617820737570706c79000000005f82015250565b5f612e59601c836122d1565b9150612e6482612e25565b602082019050919050565b5f6020820190508181035f830152612e8681612e4d565b9050919050565b5f612e9782612357565b9150612ea283612357565b9250828202612eb081612357565b91508282048414831517612ec757612ec6612d5d565b5b5092915050565b7f4e6f7420656e6f756768206574686572000000000000000000000000000000005f82015250565b5f612f026010836122d1565b9150612f0d82612ece565b602082019050919050565b5f6020820190508181035f830152612f2f81612ef6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612f906026836122d1565b9150612f9b82612f36565b604082019050919050565b5f6020820190508181035f830152612fbd81612f84565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612ff86020836122d1565b915061300382612fc4565b602082019050919050565b5f6020820190508181035f83015261302581612fec565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6130508261302c565b61305a8185613036565b935061306a8185602086016122e1565b613073816122ef565b840191505092915050565b5f6080820190506130915f8301876123e5565b61309e60208301866123e5565b6130ab6040830185612475565b81810360608301526130bd8184613046565b905095945050505050565b5f815190506130d68161223f565b92915050565b5f602082840312156130f1576130f061220c565b5b5f6130fe848285016130c8565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea264697066735822122086348c6f3183b04d117940dfa0741231b8bdd8e078c95cdac0a718bd1c438f4864736f6c634300081a00330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020e575f3560e01c806370a0823111610117578063c66828621161009f578063e985e9c51161006e578063e985e9c514610700578063efd0cbf91461073c578063f2c4ce1e14610758578063f2fde38b14610780578063f4a0a528146107a85761020e565b8063c66828621461065c578063c87b56dd14610686578063da3ef23f146106c2578063de8b51e1146106ea5761020e565b80638da5cb5b116100e65780638da5cb5b1461059c57806395d89b41146105c65780639d51d9b7146105f0578063a22cb46514610618578063b88d4fde146106405761020e565b806370a08231146104f6578063715018a61461053257806373ad468a146105485780637501f741146105725761020e565b80633b84d9c61161019a57806355f804b31161016957806355f804b3146104145780636352211e1461043c5780636817c76c146104785780636ebeac85146104a25780637080d6fc146104cc5761020e565b80633b84d9c61461039257806342842e0e146103a857806351cff8d9146103c4578063547520fe146103ec5761020e565b8063095ea7b3116101e1578063095ea7b3146102de57806318160ddd146102fa57806323b872dd1461032457806332cb6b0c1461034057806333f88d221461036a5761020e565b806301ffc9a71461021257806306fdde031461024e578063081812fc14610278578063081c8c44146102b4575b5f80fd5b34801561021d575f80fd5b5061023860048036038101906102339190612269565b6107d0565b60405161024591906122ae565b60405180910390f35b348015610259575f80fd5b50610262610861565b60405161026f9190612337565b60405180910390f35b348015610283575f80fd5b5061029e6004803603810190610299919061238a565b6108f1565b6040516102ab91906123f4565b60405180910390f35b3480156102bf575f80fd5b506102c861096b565b6040516102d59190612337565b60405180910390f35b6102f860048036038101906102f39190612437565b6109f7565b005b348015610305575f80fd5b5061030e610b36565b60405161031b9190612484565b60405180910390f35b61033e6004803603810190610339919061249d565b610b4b565b005b34801561034b575f80fd5b50610354610e59565b6040516103619190612484565b60405180910390f35b348015610375575f80fd5b50610390600480360381019061038b919061238a565b610e5f565b005b34801561039d575f80fd5b506103a6610e74565b005b6103c260048036038101906103bd919061249d565b610ea8565b005b3480156103cf575f80fd5b506103ea60048036038101906103e591906124ed565b610ec7565b005b3480156103f7575f80fd5b50610412600480360381019061040d919061238a565b610f1b565b005b34801561041f575f80fd5b5061043a60048036038101906104359190612644565b610f2d565b005b348015610447575f80fd5b50610462600480360381019061045d919061238a565b610f48565b60405161046f91906123f4565b60405180910390f35b348015610483575f80fd5b5061048c610f59565b6040516104999190612484565b60405180910390f35b3480156104ad575f80fd5b506104b6610f5f565b6040516104c391906122ae565b60405180910390f35b3480156104d7575f80fd5b506104e0610f72565b6040516104ed91906122ae565b60405180910390f35b348015610501575f80fd5b5061051c600480360381019061051791906124ed565b610f84565b6040516105299190612484565b60405180910390f35b34801561053d575f80fd5b50610546611039565b005b348015610553575f80fd5b5061055c61104c565b6040516105699190612484565b60405180910390f35b34801561057d575f80fd5b50610586611052565b6040516105939190612484565b60405180910390f35b3480156105a7575f80fd5b506105b0611058565b6040516105bd91906123f4565b60405180910390f35b3480156105d1575f80fd5b506105da611080565b6040516105e79190612337565b60405180910390f35b3480156105fb575f80fd5b506106166004803603810190610611919061238a565b611110565b005b348015610623575f80fd5b5061063e600480360381019061063991906126b5565b611122565b005b61065a60048036038101906106559190612791565b611228565b005b348015610667575f80fd5b5061067061129a565b60405161067d9190612337565b60405180910390f35b348015610691575f80fd5b506106ac60048036038101906106a7919061238a565b611326565b6040516106b99190612337565b60405180910390f35b3480156106cd575f80fd5b506106e860048036038101906106e39190612644565b61153d565b005b3480156106f5575f80fd5b506106fe611558565b005b34801561070b575f80fd5b5061072660048036038101906107219190612811565b61158a565b60405161073391906122ae565b60405180910390f35b6107566004803603810190610751919061238a565b611618565b005b348015610763575f80fd5b5061077e60048036038101906107799190612644565b6117b7565b005b34801561078b575f80fd5b506107a660048036038101906107a191906124ed565b6117d2565b005b3480156107b3575f80fd5b506107ce60048036038101906107c9919061238a565b611854565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108709061287c565b80601f016020809104026020016040519081016040528092919081815260200182805461089c9061287c565b80156108e75780601f106108be576101008083540402835291602001916108e7565b820191905f5260205f20905b8154815290600101906020018083116108ca57829003601f168201915b5050505050905090565b5f6108fb82611866565b610931576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e80546109789061287c565b80601f01602080910402602001604051908101604052809291908181526020018280546109a49061287c565b80156109ef5780601f106109c6576101008083540402835291602001916109ef565b820191905f5260205f20905b8154815290600101906020018083116109d257829003601f168201915b505050505081565b5f610a0182610f48565b90508073ffffffffffffffffffffffffffffffffffffffff16610a226118c0565b73ffffffffffffffffffffffffffffffffffffffff1614610a8557610a4e81610a496118c0565b61158a565b610a84576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610b3f6118c7565b6001545f540303905090565b5f610b55826118cb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bbc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610bc78461198e565b91509150610bdd8187610bd86118c0565b6119b1565b610c2957610bf286610bed6118c0565b61158a565b610c28576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c8e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c9b86868660016119f4565b8015610ca5575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610d6d85610d498888876119fa565b7c020000000000000000000000000000000000000000000000000000000017611a21565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610de9575f6001850190505f60045f8381526020019081526020015f205403610de7575f548114610de6578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e518686866001611a4b565b505050505050565b6115b381565b610e67611a51565b610e713382611acf565b50565b610e7c611a51565b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b610ec283838360405180602001604052805f815250611228565b505050565b610ecf611a51565b5f4790508173ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610f16573d5f803e3d5ffd5b505050565b610f23611a51565b80600b8190555050565b610f35611a51565b80600d9081610f449190612a49565b5050565b5f610f52826118cb565b9050919050565b60095481565b600c60019054906101000a900460ff1681565b600c5f9054906101000a900460ff1681565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fea576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b611041611a51565b61104a5f611aec565b565b600a5481565b600b5481565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461108f9061287c565b80601f01602080910402602001604051908101604052809291908181526020018280546110bb9061287c565b80156111065780601f106110dd57610100808354040283529160200191611106565b820191905f5260205f20905b8154815290600101906020018083116110e957829003601f168201915b5050505050905090565b611118611a51565b80600a8190555050565b8060075f61112e6118c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111d76118c0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161121c91906122ae565b60405180910390a35050565b611233848484610b4b565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146112945761125d84848484611baf565b611293576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f80546112a79061287c565b80601f01602080910402602001604051908101604052809291908181526020018280546112d39061287c565b801561131e5780601f106112f55761010080835404028352916020019161131e565b820191905f5260205f20905b81548152906001019060200180831161130157829003601f168201915b505050505081565b606061133182611866565b611370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136790612b62565b60405180910390fd5b5f1515600c60019054906101000a900460ff1615150361141a57600e80546113979061287c565b80601f01602080910402602001604051908101604052809291908181526020018280546113c39061287c565b801561140e5780601f106113e55761010080835404028352916020019161140e565b820191905f5260205f20905b8154815290600101906020018083116113f157829003601f168201915b50505050509050611538565b5f60105f8481526020019081526020015f2080546114379061287c565b80601f01602080910402602001604051908101604052809291908181526020018280546114639061287c565b80156114ae5780601f10611485576101008083540402835291602001916114ae565b820191905f5260205f20905b81548152906001019060200180831161149157829003601f168201915b505050505090505f6114be611cfa565b90505f8151036114d2578192505050611538565b5f825111156115065780826040516020016114ee929190612bba565b60405160208183030381529060405292505050611538565b8061151085611d8a565b600f60405160200161152493929190612c5d565b604051602081830303815290604052925050505b919050565b611545611a51565b80600f90816115549190612a49565b5050565b611560611a51565b600c5f9054906101000a900460ff1615600c5f6101000a81548160ff021916908315150217905550565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600c5f9054906101000a900460ff16611666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165d90612cd7565b60405180910390fd5b600b548111156116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a290612d3f565b60405180910390fd5b600a54816116b833610f84565b6116c29190612d8a565b1115611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90612e07565b60405180910390fd5b6115b38161170f610b36565b6117199190612d8a565b111561175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190612e6f565b60405180910390fd5b34600954826117699190612e8d565b11156117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a190612f18565b60405180910390fd5b6117b43382611acf565b50565b6117bf611a51565b80600e90816117ce9190612a49565b5050565b6117da611a51565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f90612fa6565b60405180910390fd5b61185181611aec565b50565b61185c611a51565b8060098190555050565b5f816118706118c7565b1115801561187e57505f5482105b80156118b957505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f90565b5f80829050806118d96118c7565b11611957575f54811015611956575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611954575b5f810361194a5760045f836001900393508381526020019081526020015f20549050611923565b8092505050611989565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e8611a10868684611e54565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611a59611e5c565b73ffffffffffffffffffffffffffffffffffffffff16611a77611058565b73ffffffffffffffffffffffffffffffffffffffff1614611acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac49061300e565b60405180910390fd5b565b611ae8828260405180602001604052805f815250611e63565b5050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bd46118c0565b8786866040518563ffffffff1660e01b8152600401611bf6949392919061307e565b6020604051808303815f875af1925050508015611c3157506040513d601f19601f82011682018060405250810190611c2e91906130dc565b60015b611ca7573d805f8114611c5f576040519150601f19603f3d011682016040523d82523d5f602084013e611c64565b606091505b505f815103611c9f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611d099061287c565b80601f0160208091040260200160405190810160405280929190818152602001828054611d359061287c565b8015611d805780601f10611d5757610100808354040283529160200191611d80565b820191905f5260205f20905b815481529060010190602001808311611d6357829003601f168201915b5050505050905090565b60605f6001611d9884611efa565b0190505f8167ffffffffffffffff811115611db657611db5612520565b5b6040519080825280601f01601f191660200182016040528015611de85781602001600182028036833780820191505090505b5090505f82602001820190505b600115611e49578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611e3e57611e3d613107565b5b0494505f8503611df5575b819350505050919050565b5f9392505050565b5f33905090565b611e6d838361204b565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611ef5575f805490505f83820390505b611ea95f868380600101945086611baf565b611edf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e9757815f5414611ef2575f80fd5b50505b505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611f56577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611f4c57611f4b613107565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611f93576d04ee2d6d415b85acef81000000008381611f8957611f88613107565b5b0492506020810190505b662386f26fc100008310611fc257662386f26fc100008381611fb857611fb7613107565b5b0492506010810190505b6305f5e1008310611feb576305f5e1008381611fe157611fe0613107565b5b0492506008810190505b612710831061201057612710838161200657612005613107565b5b0492506004810190505b60648310612033576064838161202957612028613107565b5b0492506002810190505b600a8310612042576001810190505b80915050919050565b5f805490505f8203612089576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120955f8483856119f4565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612107836120f85f865f6119fa565b612101856121f4565b17611a21565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b8181146121a15780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612168565b505f82036121db576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f8190555050506121ef5f848385611a4b565b505050565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61224881612214565b8114612252575f80fd5b50565b5f813590506122638161223f565b92915050565b5f6020828403121561227e5761227d61220c565b5b5f61228b84828501612255565b91505092915050565b5f8115159050919050565b6122a881612294565b82525050565b5f6020820190506122c15f83018461229f565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612309826122c7565b61231381856122d1565b93506123238185602086016122e1565b61232c816122ef565b840191505092915050565b5f6020820190508181035f83015261234f81846122ff565b905092915050565b5f819050919050565b61236981612357565b8114612373575f80fd5b50565b5f8135905061238481612360565b92915050565b5f6020828403121561239f5761239e61220c565b5b5f6123ac84828501612376565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6123de826123b5565b9050919050565b6123ee816123d4565b82525050565b5f6020820190506124075f8301846123e5565b92915050565b612416816123d4565b8114612420575f80fd5b50565b5f813590506124318161240d565b92915050565b5f806040838503121561244d5761244c61220c565b5b5f61245a85828601612423565b925050602061246b85828601612376565b9150509250929050565b61247e81612357565b82525050565b5f6020820190506124975f830184612475565b92915050565b5f805f606084860312156124b4576124b361220c565b5b5f6124c186828701612423565b93505060206124d286828701612423565b92505060406124e386828701612376565b9150509250925092565b5f602082840312156125025761250161220c565b5b5f61250f84828501612423565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612556826122ef565b810181811067ffffffffffffffff8211171561257557612574612520565b5b80604052505050565b5f612587612203565b9050612593828261254d565b919050565b5f67ffffffffffffffff8211156125b2576125b1612520565b5b6125bb826122ef565b9050602081019050919050565b828183375f83830152505050565b5f6125e86125e384612598565b61257e565b9050828152602081018484840111156126045761260361251c565b5b61260f8482856125c8565b509392505050565b5f82601f83011261262b5761262a612518565b5b813561263b8482602086016125d6565b91505092915050565b5f602082840312156126595761265861220c565b5b5f82013567ffffffffffffffff81111561267657612675612210565b5b61268284828501612617565b91505092915050565b61269481612294565b811461269e575f80fd5b50565b5f813590506126af8161268b565b92915050565b5f80604083850312156126cb576126ca61220c565b5b5f6126d885828601612423565b92505060206126e9858286016126a1565b9150509250929050565b5f67ffffffffffffffff82111561270d5761270c612520565b5b612716826122ef565b9050602081019050919050565b5f612735612730846126f3565b61257e565b9050828152602081018484840111156127515761275061251c565b5b61275c8482856125c8565b509392505050565b5f82601f83011261277857612777612518565b5b8135612788848260208601612723565b91505092915050565b5f805f80608085870312156127a9576127a861220c565b5b5f6127b687828801612423565b94505060206127c787828801612423565b93505060406127d887828801612376565b925050606085013567ffffffffffffffff8111156127f9576127f8612210565b5b61280587828801612764565b91505092959194509250565b5f80604083850312156128275761282661220c565b5b5f61283485828601612423565b925050602061284585828601612423565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061289357607f821691505b6020821081036128a6576128a561284f565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026129087fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826128cd565b61291286836128cd565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61294d61294861294384612357565b61292a565b612357565b9050919050565b5f819050919050565b61296683612933565b61297a61297282612954565b8484546128d9565b825550505050565b5f90565b61298e612982565b61299981848461295d565b505050565b5b818110156129bc576129b15f82612986565b60018101905061299f565b5050565b601f821115612a01576129d2816128ac565b6129db846128be565b810160208510156129ea578190505b6129fe6129f6856128be565b83018261299e565b50505b505050565b5f82821c905092915050565b5f612a215f1984600802612a06565b1980831691505092915050565b5f612a398383612a12565b9150826002028217905092915050565b612a52826122c7565b67ffffffffffffffff811115612a6b57612a6a612520565b5b612a75825461287c565b612a808282856129c0565b5f60209050601f831160018114612ab1575f8415612a9f578287015190505b612aa98582612a2e565b865550612b10565b601f198416612abf866128ac565b5f5b82811015612ae657848901518255600182019150602085019450602081019050612ac1565b86831015612b035784890151612aff601f891682612a12565b8355505b6001600288020188555050505b505050505050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e005f82015250565b5f612b4c601f836122d1565b9150612b5782612b18565b602082019050919050565b5f6020820190508181035f830152612b7981612b40565b9050919050565b5f81905092915050565b5f612b94826122c7565b612b9e8185612b80565b9350612bae8185602086016122e1565b80840191505092915050565b5f612bc58285612b8a565b9150612bd18284612b8a565b91508190509392505050565b5f8154612be98161287c565b612bf38186612b80565b9450600182165f8114612c0d5760018114612c2257612c54565b60ff1983168652811515820286019350612c54565b612c2b856128ac565b5f5b83811015612c4c57815481890152600182019150602081019050612c2d565b838801955050505b50505092915050565b5f612c688286612b8a565b9150612c748285612b8a565b9150612c808284612bdd565b9150819050949350505050565b7f53616c65206d7573742062652061637469766520746f206d696e74204e4654005f82015250565b5f612cc1601f836122d1565b9150612ccc82612c8d565b602082019050919050565b5f6020820190508181035f830152612cee81612cb5565b9050919050565b7f4d696e7420746f6f206d616e7920746f6b656e7320617420612074696d6500005f82015250565b5f612d29601e836122d1565b9150612d3482612cf5565b602082019050919050565b5f6020820190508181035f830152612d5681612d1d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612d9482612357565b9150612d9f83612357565b9250828201905080821115612db757612db6612d5d565b5b92915050565b7f53616c6520776f756c6420657863656564206d61782062616c616e63650000005f82015250565b5f612df1601d836122d1565b9150612dfc82612dbd565b602082019050919050565b5f6020820190508181035f830152612e1e81612de5565b9050919050565b7f53616c6520776f756c6420657863656564206d617820737570706c79000000005f82015250565b5f612e59601c836122d1565b9150612e6482612e25565b602082019050919050565b5f6020820190508181035f830152612e8681612e4d565b9050919050565b5f612e9782612357565b9150612ea283612357565b9250828202612eb081612357565b91508282048414831517612ec757612ec6612d5d565b5b5092915050565b7f4e6f7420656e6f756768206574686572000000000000000000000000000000005f82015250565b5f612f026010836122d1565b9150612f0d82612ece565b602082019050919050565b5f6020820190508181035f830152612f2f81612ef6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612f906026836122d1565b9150612f9b82612f36565b604082019050919050565b5f6020820190508181035f830152612fbd81612f84565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612ff86020836122d1565b915061300382612fc4565b602082019050919050565b5f6020820190508181035f83015261302581612fec565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6130508261302c565b61305a8185613036565b935061306a8185602086016122e1565b613073816122ef565b840191505092915050565b5f6080820190506130915f8301876123e5565b61309e60208301866123e5565b6130ab6040830185612475565b81810360608301526130bd8184613046565b905095945050505050565b5f815190506130d68161223f565b92915050565b5f602082840312156130f1576130f061220c565b5b5f6130fe848285016130c8565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea264697066735822122086348c6f3183b04d117940dfa0741231b8bdd8e078c95cdac0a718bd1c438f4864736f6c634300081a0033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string):
Arg [1] : initNotRevealedUri (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

70328:3354:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18404:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19306:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25797:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70667:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25230:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15057:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29436:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70405:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71012:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72830:80;;;;;;;;;;;;;:::i;:::-;;32357:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73531:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73431:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72618:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20699:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70453:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70611:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70570:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16241:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54211:103;;;;;;;;;;;;;:::i;:::-;;70497:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70535:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53563:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19482:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26355:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33148:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70702:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71754:740;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73160:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72730:92;;;;;;;;;;;;;:::i;:::-;;26746:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71134:612;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73026:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54469:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72918:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18404:639;18489:4;18828:10;18813:25;;:11;:25;;;;:102;;;;18905:10;18890:25;;:11;:25;;;;18813:102;:179;;;;18982:10;18967:25;;:11;:25;;;;18813:179;18793:199;;18404:639;;;:::o;19306:100::-;19360:13;19393:5;19386:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19306:100;:::o;25797:218::-;25873:7;25898:16;25906:7;25898;:16::i;:::-;25893:64;;25923:34;;;;;;;;;;;;;;25893:64;25977:15;:24;25993:7;25977:24;;;;;;;;;;;:30;;;;;;;;;;;;25970:37;;25797:218;;;:::o;70667:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25230:408::-;25319:13;25335:16;25343:7;25335;:16::i;:::-;25319:32;;25391:5;25368:28;;:19;:17;:19::i;:::-;:28;;;25364:175;;25416:44;25433:5;25440:19;:17;:19::i;:::-;25416:16;:44::i;:::-;25411:128;;25488:35;;;;;;;;;;;;;;25411:128;25364:175;25584:2;25551:15;:24;25567:7;25551:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25622:7;25618:2;25602:28;;25611:5;25602:28;;;;;;;;;;;;25308:330;25230:408;;:::o;15057:323::-;15118:7;15346:15;:13;:15::i;:::-;15331:12;;15315:13;;:28;:46;15308:53;;15057:323;:::o;29436:2825::-;29578:27;29608;29627:7;29608:18;:27::i;:::-;29578:57;;29693:4;29652:45;;29668:19;29652:45;;;29648:86;;29706:28;;;;;;;;;;;;;;29648:86;29748:27;29777:23;29804:35;29831:7;29804:26;:35::i;:::-;29747:92;;;;29939:68;29964:15;29981:4;29987:19;:17;:19::i;:::-;29939:24;:68::i;:::-;29934:180;;30027:43;30044:4;30050:19;:17;:19::i;:::-;30027:16;:43::i;:::-;30022:92;;30079:35;;;;;;;;;;;;;;30022:92;29934:180;30145:1;30131:16;;:2;:16;;;30127:52;;30156:23;;;;;;;;;;;;;;30127:52;30192:43;30214:4;30220:2;30224:7;30233:1;30192:21;:43::i;:::-;30328:15;30325:160;;;30468:1;30447:19;30440:30;30325:160;30865:18;:24;30884:4;30865:24;;;;;;;;;;;;;;;;30863:26;;;;;;;;;;;;30934:18;:22;30953:2;30934:22;;;;;;;;;;;;;;;;30932:24;;;;;;;;;;;31256:146;31293:2;31342:45;31357:4;31363:2;31367:19;31342:14;:45::i;:::-;11456:8;31314:73;31256:18;:146::i;:::-;31227:17;:26;31245:7;31227:26;;;;;;;;;;;:175;;;;31573:1;11456:8;31522:19;:47;:52;31518:627;;31595:19;31627:1;31617:7;:11;31595:33;;31784:1;31750:17;:30;31768:11;31750:30;;;;;;;;;;;;:35;31746:384;;31888:13;;31873:11;:28;31869:242;;32068:19;32035:17;:30;32053:11;32035:30;;;;;;;;;;;:52;;;;31869:242;31746:384;31576:569;31518:627;32192:7;32188:2;32173:27;;32182:4;32173:27;;;;;;;;;;;;32211:42;32232:4;32238:2;32242:7;32251:1;32211:20;:42::i;:::-;29567:2694;;;29436:2825;;;:::o;70405:41::-;70442:4;70405:41;:::o;71012:114::-;53449:13;:11;:13::i;:::-;71082:36:::1;71092:10;71104:13;71082:9;:36::i;:::-;71012:114:::0;:::o;72830:80::-;53449:13;:11;:13::i;:::-;72893:9:::1;;;;;;;;;;;72892:10;72880:9;;:22;;;;;;;;;;;;;;;;;;72830:80::o:0;32357:193::-;32503:39;32520:4;32526:2;32530:7;32503:39;;;;;;;;;;;;:16;:39::i;:::-;32357:193;;;:::o;73531:145::-;53449:13;:11;:13::i;:::-;73589:15:::1;73607:21;73589:39;;73647:2;73639:20;;:29;73660:7;73639:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;73578:98;73531:145:::0;:::o;73431:92::-;53449:13;:11;:13::i;:::-;73507:8:::1;73497:7;:18;;;;73431:92:::0;:::o;72618:104::-;53449:13;:11;:13::i;:::-;72703:11:::1;72693:7;:21;;;;;;:::i;:::-;;72618:104:::0;:::o;20699:152::-;20771:7;20814:27;20833:7;20814:18;:27::i;:::-;20791:52;;20699:152;;;:::o;70453:36::-;;;;:::o;70611:28::-;;;;;;;;;;;;;:::o;70570:33::-;;;;;;;;;;;;;:::o;16241:233::-;16313:7;16354:1;16337:19;;:5;:19;;;16333:60;;16365:28;;;;;;;;;;;;;;16333:60;10400:13;16411:18;:25;16430:5;16411:25;;;;;;;;;;;;;;;;:55;16404:62;;16241:233;;;:::o;54211:103::-;53449:13;:11;:13::i;:::-;54276:30:::1;54303:1;54276:18;:30::i;:::-;54211:103::o:0;70497:30::-;;;;:::o;70535:27::-;;;;:::o;53563:87::-;53609:7;53636:6;;;;;;;;;;;53629:13;;53563:87;:::o;19482:104::-;19538:13;19571:7;19564:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19482:104;:::o;73319:::-;53449:13;:11;:13::i;:::-;73404:11:::1;73391:10;:24;;;;73319:104:::0;:::o;26355:234::-;26502:8;26450:18;:39;26469:19;:17;:19::i;:::-;26450:39;;;;;;;;;;;;;;;:49;26490:8;26450:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26562:8;26526:55;;26541:19;:17;:19::i;:::-;26526:55;;;26572:8;26526:55;;;;;;:::i;:::-;;;;;;;;26355:234;;:::o;33148:407::-;33323:31;33336:4;33342:2;33346:7;33323:12;:31::i;:::-;33387:1;33369:2;:14;;;:19;33365:183;;33408:56;33439:4;33445:2;33449:7;33458:5;33408:30;:56::i;:::-;33403:145;;33492:40;;;;;;;;;;;;;;33403:145;33365:183;33148:407;;;;:::o;70702:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71754:740::-;71872:13;71925:16;71933:7;71925;:16::i;:::-;71903:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;72030:5;72017:18;;:9;;;;;;;;;;;:18;;;72013:72;;72059:14;72052:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72013:72;72097:23;72123:10;:19;72134:7;72123:19;;;;;;;;;;;72097:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72153:18;72174:10;:8;:10::i;:::-;72153:31;;72223:1;72207:4;72201:18;:23;72197:72;;72248:9;72241:16;;;;;;72197:72;72311:1;72291:9;72285:23;:27;72281:108;;;72360:4;72366:9;72343:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72329:48;;;;;;72281:108;72445:4;72451:18;:7;:16;:18::i;:::-;72471:13;72428:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72401:85;;;;71754:740;;;;:::o;73160:151::-;53449:13;:11;:13::i;:::-;73286:17:::1;73270:13;:33;;;;;;:::i;:::-;;73160:151:::0;:::o;72730:92::-;53449:13;:11;:13::i;:::-;72801::::1;;;;;;;;;;;72800:14;72784:13;;:30;;;;;;;;;;;;;;;;;;72730:92::o:0;26746:164::-;26843:4;26867:18;:25;26886:5;26867:25;;;;;;;;;;;;;;;:35;26893:8;26867:35;;;;;;;;;;;;;;;;;;;;;;;;;26860:42;;26746:164;;;;:::o;71134:612::-;71211:13;;;;;;;;;;;71203:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;71296:7;;71279:13;:24;;71271:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;71413:10;;71396:13;71371:21;71381:10;71371:9;:21::i;:::-;:38;;;;:::i;:::-;:52;;71349:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;70442:4;71530:13;71514;:11;:13::i;:::-;:29;;;;:::i;:::-;:43;;71492:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;71661:9;71648;;71632:13;:25;;;;:::i;:::-;:38;;71624:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;71702:36;71712:10;71724:13;71702:9;:36::i;:::-;71134:612;:::o;73026:126::-;53449:13;:11;:13::i;:::-;73129:15:::1;73112:14;:32;;;;;;:::i;:::-;;73026:126:::0;:::o;54469:201::-;53449:13;:11;:13::i;:::-;54578:1:::1;54558:22;;:8;:22;;::::0;54550:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;54634:28;54653:8;54634:18;:28::i;:::-;54469:201:::0;:::o;72918:100::-;53449:13;:11;:13::i;:::-;73000:10:::1;72988:9;:22;;;;72918:100:::0;:::o;27168:282::-;27233:4;27289:7;27270:15;:13;:15::i;:::-;:26;;:66;;;;;27323:13;;27313:7;:23;27270:66;:153;;;;;27422:1;11176:8;27374:17;:26;27392:7;27374:26;;;;;;;;;;;;:44;:49;27270:153;27250:173;;27168:282;;;:::o;49476:105::-;49536:7;49563:10;49556:17;;49476:105;:::o;14573:92::-;14629:7;14573:92;:::o;21854:1275::-;21921:7;21941:12;21956:7;21941:22;;22024:4;22005:15;:13;:15::i;:::-;:23;22001:1061;;22058:13;;22051:4;:20;22047:1015;;;22096:14;22113:17;:23;22131:4;22113:23;;;;;;;;;;;;22096:40;;22230:1;11176:8;22202:6;:24;:29;22198:845;;22867:113;22884:1;22874:6;:11;22867:113;;22927:17;:25;22945:6;;;;;;;22927:25;;;;;;;;;;;;22918:34;;22867:113;;;23013:6;23006:13;;;;;;22198:845;22073:989;22047:1015;22001:1061;23090:31;;;;;;;;;;;;;;21854:1275;;;;:::o;28331:485::-;28433:27;28462:23;28503:38;28544:15;:24;28560:7;28544:24;;;;;;;;;;;28503:65;;28721:18;28698:41;;28778:19;28772:26;28753:45;;28683:126;28331:485;;;:::o;27559:659::-;27708:11;27873:16;27866:5;27862:28;27853:37;;28033:16;28022:9;28018:32;28005:45;;28183:15;28172:9;28169:30;28161:5;28150:9;28147:20;28144:56;28134:66;;27559:659;;;;;:::o;34217:159::-;;;;;:::o;48785:311::-;48920:7;48940:16;11580:3;48966:19;:41;;48940:68;;11580:3;49034:31;49045:4;49051:2;49055:9;49034:10;:31::i;:::-;49026:40;;:62;;49019:69;;;48785:311;;;;;:::o;23677:450::-;23757:14;23925:16;23918:5;23914:28;23905:37;;24102:5;24088:11;24063:23;24059:41;24056:52;24049:5;24046:63;24036:73;;23677:450;;;;:::o;35041:158::-;;;;;:::o;53728:132::-;53803:12;:10;:12::i;:::-;53792:23;;:7;:5;:7::i;:::-;:23;;;53784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53728:132::o;43308:112::-;43385:27;43395:2;43399:8;43385:27;;;;;;;;;;;;:9;:27::i;:::-;43308:112;;:::o;54830:191::-;54904:16;54923:6;;;;;;;;;;;54904:25;;54949:8;54940:6;;:17;;;;;;;;;;;;;;;;;;55004:8;54973:40;;54994:8;54973:40;;;;;;;;;;;;54893:128;54830:191;:::o;35639:716::-;35802:4;35848:2;35823:45;;;35869:19;:17;:19::i;:::-;35890:4;35896:7;35905:5;35823:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36123:1;36106:6;:13;:18;36102:235;;36152:40;;;;;;;;;;;;;;36102:235;36295:6;36289:13;36280:6;36276:2;36272:15;36265:38;35819:529;35992:54;;;35982:64;;;:6;:64;;;;35975:71;;;35639:716;;;;;;:::o;72502:108::-;72562:13;72595:7;72588:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72502:108;:::o;68333:716::-;68389:13;68440:14;68477:1;68457:17;68468:5;68457:10;:17::i;:::-;:21;68440:38;;68493:20;68527:6;68516:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68493:41;;68549:11;68678:6;68674:2;68670:15;68662:6;68658:28;68651:35;;68715:288;68722:4;68715:288;;;68747:5;;;;;;;;68889:8;68884:2;68877:5;68873:14;68868:30;68863:3;68855:44;68945:2;68936:11;;;;;;:::i;:::-;;;;;68979:1;68970:5;:10;68715:288;68966:21;68715:288;69024:6;69017:13;;;;;68333:716;;;:::o;48486:147::-;48623:6;48486:147;;;;;:::o;52114:98::-;52167:7;52194:10;52187:17;;52114:98;:::o;42535:689::-;42666:19;42672:2;42676:8;42666:5;:19::i;:::-;42745:1;42727:2;:14;;;:19;42723:483;;42767:11;42781:13;;42767:27;;42813:13;42835:8;42829:3;:14;42813:30;;42862:233;42893:62;42932:1;42936:2;42940:7;;;;;;42949:5;42893:30;:62::i;:::-;42888:167;;42991:40;;;;;;;;;;;;;;42888:167;43090:3;43082:5;:11;42862:233;;43177:3;43160:13;;:20;43156:34;;43182:8;;;43156:34;42748:458;;42723:483;42535:689;;;:::o;65199:922::-;65252:7;65272:14;65289:1;65272:18;;65339:6;65330:5;:15;65326:102;;65375:6;65366:15;;;;;;:::i;:::-;;;;;65410:2;65400:12;;;;65326:102;65455:6;65446:5;:15;65442:102;;65491:6;65482:15;;;;;;:::i;:::-;;;;;65526:2;65516:12;;;;65442:102;65571:6;65562:5;:15;65558:102;;65607:6;65598:15;;;;;;:::i;:::-;;;;;65642:2;65632:12;;;;65558:102;65687:5;65678;:14;65674:99;;65722:5;65713:14;;;;;;:::i;:::-;;;;;65756:1;65746:11;;;;65674:99;65800:5;65791;:14;65787:99;;65835:5;65826:14;;;;;;:::i;:::-;;;;;65869:1;65859:11;;;;65787:99;65913:5;65904;:14;65900:99;;65948:5;65939:14;;;;;;:::i;:::-;;;;;65982:1;65972:11;;;;65900:99;66026:5;66017;:14;66013:66;;66062:1;66052:11;;;;66013:66;66107:6;66100:13;;;65199:922;;;:::o;36817:2966::-;36890:20;36913:13;;36890:36;;36953:1;36941:8;:13;36937:44;;36963:18;;;;;;;;;;;;;;36937:44;36994:61;37024:1;37028:2;37032:12;37046:8;36994:21;:61::i;:::-;37538:1;10538:2;37508:1;:26;;37507:32;37495:8;:45;37469:18;:22;37488:2;37469:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37817:139;37854:2;37908:33;37931:1;37935:2;37939:1;37908:14;:33::i;:::-;37875:30;37896:8;37875:20;:30::i;:::-;:66;37817:18;:139::i;:::-;37783:17;:31;37801:12;37783:31;;;;;;;;;;;:173;;;;37973:16;38004:11;38033:8;38018:12;:23;38004:37;;38554:16;38550:2;38546:25;38534:37;;38926:12;38886:8;38845:1;38783:25;38724:1;38663;38636:335;39297:1;39283:12;39279:20;39237:346;39338:3;39329:7;39326:16;39237:346;;39556:7;39546:8;39543:1;39516:25;39513:1;39510;39505:59;39391:1;39382:7;39378:15;39367:26;;39237:346;;;39241:77;39628:1;39616:8;:13;39612:45;;39638:19;;;;;;;;;;;;;;39612:45;39690:3;39674:13;:19;;;;37243:2462;;39715:60;39744:1;39748:2;39752:12;39766:8;39715:20;:60::i;:::-;36879:2904;36817:2966;;:::o;24229:324::-;24299:14;24532:1;24522:8;24519:15;24493:24;24489:46;24479:56;;24229:324;;;:::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:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:118::-;4870:24;4888:5;4870:24;:::i;:::-;4865:3;4858:37;4783:118;;:::o;4907:222::-;5000:4;5038:2;5027:9;5023:18;5015:26;;5051:71;5119:1;5108:9;5104:17;5095:6;5051:71;:::i;:::-;4907:222;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:329::-;5819:6;5868:2;5856:9;5847:7;5843:23;5839:32;5836:119;;;5874:79;;:::i;:::-;5836:119;5994:1;6019:53;6064:7;6055:6;6044:9;6040:22;6019:53;:::i;:::-;6009:63;;5965:117;5760:329;;;;:::o;6095:117::-;6204:1;6201;6194:12;6218:117;6327:1;6324;6317:12;6341:180;6389:77;6386:1;6379:88;6486:4;6483:1;6476:15;6510:4;6507:1;6500:15;6527:281;6610:27;6632:4;6610:27;:::i;:::-;6602:6;6598:40;6740:6;6728:10;6725:22;6704:18;6692:10;6689:34;6686:62;6683:88;;;6751:18;;:::i;:::-;6683:88;6791:10;6787:2;6780:22;6570:238;6527:281;;:::o;6814:129::-;6848:6;6875:20;;:::i;:::-;6865:30;;6904:33;6932:4;6924:6;6904:33;:::i;:::-;6814:129;;;:::o;6949:308::-;7011:4;7101:18;7093:6;7090:30;7087:56;;;7123:18;;:::i;:::-;7087:56;7161:29;7183:6;7161:29;:::i;:::-;7153:37;;7245:4;7239;7235:15;7227:23;;6949:308;;;:::o;7263:148::-;7361:6;7356:3;7351;7338:30;7402:1;7393:6;7388:3;7384:16;7377:27;7263:148;;;:::o;7417:425::-;7495:5;7520:66;7536:49;7578:6;7536:49;:::i;:::-;7520:66;:::i;:::-;7511:75;;7609:6;7602:5;7595:21;7647:4;7640:5;7636:16;7685:3;7676:6;7671:3;7667:16;7664:25;7661:112;;;7692:79;;:::i;:::-;7661:112;7782:54;7829:6;7824:3;7819;7782:54;:::i;:::-;7501:341;7417:425;;;;;:::o;7862:340::-;7918:5;7967:3;7960:4;7952:6;7948:17;7944:27;7934:122;;7975:79;;:::i;:::-;7934:122;8092:6;8079:20;8117:79;8192:3;8184:6;8177:4;8169:6;8165:17;8117:79;:::i;:::-;8108:88;;7924:278;7862:340;;;;:::o;8208:509::-;8277:6;8326:2;8314:9;8305:7;8301:23;8297:32;8294:119;;;8332:79;;:::i;:::-;8294:119;8480:1;8469:9;8465:17;8452:31;8510:18;8502:6;8499:30;8496:117;;;8532:79;;:::i;:::-;8496:117;8637:63;8692:7;8683:6;8672:9;8668:22;8637:63;:::i;:::-;8627:73;;8423:287;8208:509;;;;:::o;8723:116::-;8793:21;8808:5;8793:21;:::i;:::-;8786:5;8783:32;8773:60;;8829:1;8826;8819:12;8773:60;8723:116;:::o;8845:133::-;8888:5;8926:6;8913:20;8904:29;;8942:30;8966:5;8942:30;:::i;:::-;8845:133;;;;:::o;8984:468::-;9049:6;9057;9106:2;9094:9;9085:7;9081:23;9077:32;9074:119;;;9112:79;;:::i;:::-;9074:119;9232:1;9257:53;9302:7;9293:6;9282:9;9278:22;9257:53;:::i;:::-;9247:63;;9203:117;9359:2;9385:50;9427:7;9418:6;9407:9;9403:22;9385:50;:::i;:::-;9375:60;;9330:115;8984:468;;;;;:::o;9458:307::-;9519:4;9609:18;9601:6;9598:30;9595:56;;;9631:18;;:::i;:::-;9595:56;9669:29;9691:6;9669:29;:::i;:::-;9661:37;;9753:4;9747;9743:15;9735:23;;9458:307;;;:::o;9771:423::-;9848:5;9873:65;9889:48;9930:6;9889:48;:::i;:::-;9873:65;:::i;:::-;9864:74;;9961:6;9954:5;9947:21;9999:4;9992:5;9988:16;10037:3;10028:6;10023:3;10019:16;10016:25;10013:112;;;10044:79;;:::i;:::-;10013:112;10134:54;10181:6;10176:3;10171;10134:54;:::i;:::-;9854:340;9771:423;;;;;:::o;10213:338::-;10268:5;10317:3;10310:4;10302:6;10298:17;10294:27;10284:122;;10325:79;;:::i;:::-;10284:122;10442:6;10429:20;10467:78;10541:3;10533:6;10526:4;10518:6;10514:17;10467:78;:::i;:::-;10458:87;;10274:277;10213:338;;;;:::o;10557:943::-;10652:6;10660;10668;10676;10725:3;10713:9;10704:7;10700:23;10696:33;10693:120;;;10732:79;;:::i;:::-;10693:120;10852:1;10877:53;10922:7;10913:6;10902:9;10898:22;10877:53;:::i;:::-;10867:63;;10823:117;10979:2;11005:53;11050:7;11041:6;11030:9;11026:22;11005:53;:::i;:::-;10995:63;;10950:118;11107:2;11133:53;11178:7;11169:6;11158:9;11154:22;11133:53;:::i;:::-;11123:63;;11078:118;11263:2;11252:9;11248:18;11235:32;11294:18;11286:6;11283:30;11280:117;;;11316:79;;:::i;:::-;11280:117;11421:62;11475:7;11466:6;11455:9;11451:22;11421:62;:::i;:::-;11411:72;;11206:287;10557:943;;;;;;;:::o;11506:474::-;11574:6;11582;11631:2;11619:9;11610:7;11606:23;11602:32;11599:119;;;11637:79;;:::i;:::-;11599:119;11757:1;11782:53;11827:7;11818:6;11807:9;11803:22;11782:53;:::i;:::-;11772:63;;11728:117;11884:2;11910:53;11955:7;11946:6;11935:9;11931:22;11910:53;:::i;:::-;11900:63;;11855:118;11506:474;;;;;:::o;11986:180::-;12034:77;12031:1;12024:88;12131:4;12128:1;12121:15;12155:4;12152:1;12145:15;12172:320;12216:6;12253:1;12247:4;12243:12;12233:22;;12300:1;12294:4;12290:12;12321:18;12311:81;;12377:4;12369:6;12365:17;12355:27;;12311:81;12439:2;12431:6;12428:14;12408:18;12405:38;12402:84;;12458:18;;:::i;:::-;12402:84;12223:269;12172:320;;;:::o;12498:141::-;12547:4;12570:3;12562:11;;12593:3;12590:1;12583:14;12627:4;12624:1;12614:18;12606:26;;12498:141;;;:::o;12645:93::-;12682:6;12729:2;12724;12717:5;12713:14;12709:23;12699:33;;12645:93;;;:::o;12744:107::-;12788:8;12838:5;12832:4;12828:16;12807:37;;12744:107;;;;:::o;12857:393::-;12926:6;12976:1;12964:10;12960:18;12999:97;13029:66;13018:9;12999:97;:::i;:::-;13117:39;13147:8;13136:9;13117:39;:::i;:::-;13105:51;;13189:4;13185:9;13178:5;13174:21;13165:30;;13238:4;13228:8;13224:19;13217:5;13214:30;13204:40;;12933:317;;12857:393;;;;;:::o;13256:60::-;13284:3;13305:5;13298:12;;13256:60;;;:::o;13322:142::-;13372:9;13405:53;13423:34;13432:24;13450:5;13432:24;:::i;:::-;13423:34;:::i;:::-;13405:53;:::i;:::-;13392:66;;13322:142;;;:::o;13470:75::-;13513:3;13534:5;13527:12;;13470:75;;;:::o;13551:269::-;13661:39;13692:7;13661:39;:::i;:::-;13722:91;13771:41;13795:16;13771:41;:::i;:::-;13763:6;13756:4;13750:11;13722:91;:::i;:::-;13716:4;13709:105;13627:193;13551:269;;;:::o;13826:73::-;13871:3;13826:73;:::o;13905:189::-;13982:32;;:::i;:::-;14023:65;14081:6;14073;14067:4;14023:65;:::i;:::-;13958:136;13905:189;;:::o;14100:186::-;14160:120;14177:3;14170:5;14167:14;14160:120;;;14231:39;14268:1;14261:5;14231:39;:::i;:::-;14204:1;14197:5;14193:13;14184:22;;14160:120;;;14100:186;;:::o;14292:543::-;14393:2;14388:3;14385:11;14382:446;;;14427:38;14459:5;14427:38;:::i;:::-;14511:29;14529:10;14511:29;:::i;:::-;14501:8;14497:44;14694:2;14682:10;14679:18;14676:49;;;14715:8;14700:23;;14676:49;14738:80;14794:22;14812:3;14794:22;:::i;:::-;14784:8;14780:37;14767:11;14738:80;:::i;:::-;14397:431;;14382:446;14292:543;;;:::o;14841:117::-;14895:8;14945:5;14939:4;14935:16;14914:37;;14841:117;;;;:::o;14964:169::-;15008:6;15041:51;15089:1;15085:6;15077:5;15074:1;15070:13;15041:51;:::i;:::-;15037:56;15122:4;15116;15112:15;15102:25;;15015:118;14964:169;;;;:::o;15138:295::-;15214:4;15360:29;15385:3;15379:4;15360:29;:::i;:::-;15352:37;;15422:3;15419:1;15415:11;15409:4;15406:21;15398:29;;15138:295;;;;:::o;15438:1395::-;15555:37;15588:3;15555:37;:::i;:::-;15657:18;15649:6;15646:30;15643:56;;;15679:18;;:::i;:::-;15643:56;15723:38;15755:4;15749:11;15723:38;:::i;:::-;15808:67;15868:6;15860;15854:4;15808:67;:::i;:::-;15902:1;15926:4;15913:17;;15958:2;15950:6;15947:14;15975:1;15970:618;;;;16632:1;16649:6;16646:77;;;16698:9;16693:3;16689:19;16683:26;16674:35;;16646:77;16749:67;16809:6;16802:5;16749:67;:::i;:::-;16743:4;16736:81;16605:222;15940:887;;15970:618;16022:4;16018:9;16010:6;16006:22;16056:37;16088:4;16056:37;:::i;:::-;16115:1;16129:208;16143:7;16140:1;16137:14;16129:208;;;16222:9;16217:3;16213:19;16207:26;16199:6;16192:42;16273:1;16265:6;16261:14;16251:24;;16320:2;16309:9;16305:18;16292:31;;16166:4;16163:1;16159:12;16154:17;;16129:208;;;16365:6;16356:7;16353:19;16350:179;;;16423:9;16418:3;16414:19;16408:26;16466:48;16508:4;16500:6;16496:17;16485:9;16466:48;:::i;:::-;16458:6;16451:64;16373:156;16350:179;16575:1;16571;16563:6;16559:14;16555:22;16549:4;16542:36;15977:611;;;15940:887;;15530:1303;;;15438:1395;;:::o;16839:181::-;16979:33;16975:1;16967:6;16963:14;16956:57;16839:181;:::o;17026:366::-;17168:3;17189:67;17253:2;17248:3;17189:67;:::i;:::-;17182:74;;17265:93;17354:3;17265:93;:::i;:::-;17383:2;17378:3;17374:12;17367:19;;17026:366;;;:::o;17398:419::-;17564:4;17602:2;17591:9;17587:18;17579:26;;17651:9;17645:4;17641:20;17637:1;17626:9;17622:17;17615:47;17679:131;17805:4;17679:131;:::i;:::-;17671:139;;17398:419;;;:::o;17823:148::-;17925:11;17962:3;17947:18;;17823:148;;;;:::o;17977:390::-;18083:3;18111:39;18144:5;18111:39;:::i;:::-;18166:89;18248:6;18243:3;18166:89;:::i;:::-;18159:96;;18264:65;18322:6;18317:3;18310:4;18303:5;18299:16;18264:65;:::i;:::-;18354:6;18349:3;18345:16;18338:23;;18087:280;17977:390;;;;:::o;18373:435::-;18553:3;18575:95;18666:3;18657:6;18575:95;:::i;:::-;18568:102;;18687:95;18778:3;18769:6;18687:95;:::i;:::-;18680:102;;18799:3;18792:10;;18373:435;;;;;:::o;18838:874::-;18941:3;18978:5;18972:12;19007:36;19033:9;19007:36;:::i;:::-;19059:89;19141:6;19136:3;19059:89;:::i;:::-;19052:96;;19179:1;19168:9;19164:17;19195:1;19190:166;;;;19370:1;19365:341;;;;19157:549;;19190:166;19274:4;19270:9;19259;19255:25;19250:3;19243:38;19336:6;19329:14;19322:22;19314:6;19310:35;19305:3;19301:45;19294:52;;19190:166;;19365:341;19432:38;19464:5;19432:38;:::i;:::-;19492:1;19506:154;19520:6;19517:1;19514:13;19506:154;;;19594:7;19588:14;19584:1;19579:3;19575:11;19568:35;19644:1;19635:7;19631:15;19620:26;;19542:4;19539:1;19535:12;19530:17;;19506:154;;;19689:6;19684:3;19680:16;19673:23;;19372:334;;19157:549;;18945:767;;18838:874;;;;:::o;19718:589::-;19943:3;19965:95;20056:3;20047:6;19965:95;:::i;:::-;19958:102;;20077:95;20168:3;20159:6;20077:95;:::i;:::-;20070:102;;20189:92;20277:3;20268:6;20189:92;:::i;:::-;20182:99;;20298:3;20291:10;;19718:589;;;;;;:::o;20313:181::-;20453:33;20449:1;20441:6;20437:14;20430:57;20313:181;:::o;20500:366::-;20642:3;20663:67;20727:2;20722:3;20663:67;:::i;:::-;20656:74;;20739:93;20828:3;20739:93;:::i;:::-;20857:2;20852:3;20848:12;20841:19;;20500:366;;;:::o;20872:419::-;21038:4;21076:2;21065:9;21061:18;21053:26;;21125:9;21119:4;21115:20;21111:1;21100:9;21096:17;21089:47;21153:131;21279:4;21153:131;:::i;:::-;21145:139;;20872:419;;;:::o;21297:180::-;21437:32;21433:1;21425:6;21421:14;21414:56;21297:180;:::o;21483:366::-;21625:3;21646:67;21710:2;21705:3;21646:67;:::i;:::-;21639:74;;21722:93;21811:3;21722:93;:::i;:::-;21840:2;21835:3;21831:12;21824:19;;21483:366;;;:::o;21855:419::-;22021:4;22059:2;22048:9;22044:18;22036:26;;22108:9;22102:4;22098:20;22094:1;22083:9;22079:17;22072:47;22136:131;22262:4;22136:131;:::i;:::-;22128:139;;21855:419;;;:::o;22280:180::-;22328:77;22325:1;22318:88;22425:4;22422:1;22415:15;22449:4;22446:1;22439:15;22466:191;22506:3;22525:20;22543:1;22525:20;:::i;:::-;22520:25;;22559:20;22577:1;22559:20;:::i;:::-;22554:25;;22602:1;22599;22595:9;22588:16;;22623:3;22620:1;22617:10;22614:36;;;22630:18;;:::i;:::-;22614:36;22466:191;;;;:::o;22663:179::-;22803:31;22799:1;22791:6;22787:14;22780:55;22663:179;:::o;22848:366::-;22990:3;23011:67;23075:2;23070:3;23011:67;:::i;:::-;23004:74;;23087:93;23176:3;23087:93;:::i;:::-;23205:2;23200:3;23196:12;23189:19;;22848:366;;;:::o;23220:419::-;23386:4;23424:2;23413:9;23409:18;23401:26;;23473:9;23467:4;23463:20;23459:1;23448:9;23444:17;23437:47;23501:131;23627:4;23501:131;:::i;:::-;23493:139;;23220:419;;;:::o;23645:178::-;23785:30;23781:1;23773:6;23769:14;23762:54;23645:178;:::o;23829:366::-;23971:3;23992:67;24056:2;24051:3;23992:67;:::i;:::-;23985:74;;24068:93;24157:3;24068:93;:::i;:::-;24186:2;24181:3;24177:12;24170:19;;23829:366;;;:::o;24201:419::-;24367:4;24405:2;24394:9;24390:18;24382:26;;24454:9;24448:4;24444:20;24440:1;24429:9;24425:17;24418:47;24482:131;24608:4;24482:131;:::i;:::-;24474:139;;24201:419;;;:::o;24626:410::-;24666:7;24689:20;24707:1;24689:20;:::i;:::-;24684:25;;24723:20;24741:1;24723:20;:::i;:::-;24718:25;;24778:1;24775;24771:9;24800:30;24818:11;24800:30;:::i;:::-;24789:41;;24979:1;24970:7;24966:15;24963:1;24960:22;24940:1;24933:9;24913:83;24890:139;;25009:18;;:::i;:::-;24890:139;24674:362;24626:410;;;;:::o;25042:166::-;25182:18;25178:1;25170:6;25166:14;25159:42;25042:166;:::o;25214:366::-;25356:3;25377:67;25441:2;25436:3;25377:67;:::i;:::-;25370:74;;25453:93;25542:3;25453:93;:::i;:::-;25571:2;25566:3;25562:12;25555:19;;25214:366;;;:::o;25586:419::-;25752:4;25790:2;25779:9;25775:18;25767:26;;25839:9;25833:4;25829:20;25825:1;25814:9;25810:17;25803:47;25867:131;25993:4;25867:131;:::i;:::-;25859:139;;25586:419;;;:::o;26011:225::-;26151:34;26147:1;26139:6;26135:14;26128:58;26220:8;26215:2;26207:6;26203:15;26196:33;26011:225;:::o;26242:366::-;26384:3;26405:67;26469:2;26464:3;26405:67;:::i;:::-;26398:74;;26481:93;26570:3;26481:93;:::i;:::-;26599:2;26594:3;26590:12;26583:19;;26242:366;;;:::o;26614:419::-;26780:4;26818:2;26807:9;26803:18;26795:26;;26867:9;26861:4;26857:20;26853:1;26842:9;26838:17;26831:47;26895:131;27021:4;26895:131;:::i;:::-;26887:139;;26614:419;;;:::o;27039:182::-;27179:34;27175:1;27167:6;27163:14;27156:58;27039:182;:::o;27227:366::-;27369:3;27390:67;27454:2;27449:3;27390:67;:::i;:::-;27383:74;;27466:93;27555:3;27466:93;:::i;:::-;27584:2;27579:3;27575:12;27568:19;;27227:366;;;:::o;27599:419::-;27765:4;27803:2;27792:9;27788:18;27780:26;;27852:9;27846:4;27842:20;27838:1;27827:9;27823:17;27816:47;27880:131;28006:4;27880:131;:::i;:::-;27872:139;;27599:419;;;:::o;28024:98::-;28075:6;28109:5;28103:12;28093:22;;28024:98;;;:::o;28128:168::-;28211:11;28245:6;28240:3;28233:19;28285:4;28280:3;28276:14;28261:29;;28128:168;;;;:::o;28302:373::-;28388:3;28416:38;28448:5;28416:38;:::i;:::-;28470:70;28533:6;28528:3;28470:70;:::i;:::-;28463:77;;28549:65;28607:6;28602:3;28595:4;28588:5;28584:16;28549:65;:::i;:::-;28639:29;28661:6;28639:29;:::i;:::-;28634:3;28630:39;28623:46;;28392:283;28302:373;;;;:::o;28681:640::-;28876:4;28914:3;28903:9;28899:19;28891:27;;28928:71;28996:1;28985:9;28981:17;28972:6;28928:71;:::i;:::-;29009:72;29077:2;29066:9;29062:18;29053:6;29009:72;:::i;:::-;29091;29159:2;29148:9;29144:18;29135:6;29091:72;:::i;:::-;29210:9;29204:4;29200:20;29195:2;29184:9;29180:18;29173:48;29238:76;29309:4;29300:6;29238:76;:::i;:::-;29230:84;;28681:640;;;;;;;:::o;29327:141::-;29383:5;29414:6;29408:13;29399:22;;29430:32;29456:5;29430:32;:::i;:::-;29327:141;;;;:::o;29474:349::-;29543:6;29592:2;29580:9;29571:7;29567:23;29563:32;29560:119;;;29598:79;;:::i;:::-;29560:119;29718:1;29743:63;29798:7;29789:6;29778:9;29774:22;29743:63;:::i;:::-;29733:73;;29689:127;29474:349;;;;:::o;29829:180::-;29877:77;29874:1;29867:88;29974:4;29971:1;29964:15;29998:4;29995:1;29988:15

Swarm Source

ipfs://86348c6f3183b04d117940dfa0741231b8bdd8e078c95cdac0a718bd1c438f48
[ 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.