ETH Price: $3,393.79 (-1.24%)
Gas: 2 Gwei

Mystery Box (INMB)
 

Overview

TokenID

5101

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The inBetweeners Mystery Box is a tool that puts bear holders in the position of power to redeem a bonus gift that suits their needs and wants. Over time, a variety of rewards can be found within the box - available to be redeemed at different opportunities. Keep in mind, when...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MysteryBox

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: 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/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/MysteryBox.sol

pragma solidity >=0.8.0 <0.9.0;


contract MysteryBox is ERC721A, Ownable {
    using Strings for uint256;

    /// Supply
    uint256 public constant MAX_SUPPLY = 10877;
    uint256 public PRICE = 0 ether;

    /// Status
    enum Status {
        NOT_LIVE,
        TOKEN_MINT,
        BURN,
        ENDED
    }

    /// Minting Variables
    IERC721Enumerable constant inBetweenersTokenContract = IERC721Enumerable(0x94638Cbf3c54c1f956a5F05cBC0F9aFb6822020d);
    Status public state;
    address private burnerContract;

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

    mapping(uint256 => bool) public inBetweenersTokenClaimed;

    constructor() ERC721A("Mystery Box", "INMB") {
    }

    function setBurnerContract(address _address) external onlyOwner {
        burnerContract = _address;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
    }

    function ownerMint(uint256 _amount) external onlyOwner {
        require(state == Status.NOT_LIVE || state == Status.TOKEN_MINT);
        require(totalSupply() + _amount <= MAX_SUPPLY, "Mystery Box claim amount exceeds supply");
        _safeMint(msg.sender, _amount);
    }

    function checkClaimed(uint256 _tokenId) external view returns (bool) { //added
        return inBetweenersTokenClaimed[_tokenId];
    }

    function getRemainingSupply() external view returns (uint256) {
        return MAX_SUPPLY - totalSupply();
    }

    function claimMysteryBox(uint256[] memory tokenIds) external payable {
        require(state == Status.TOKEN_MINT, "Claim Not Live");
        require(inBetweenersTokenContract.balanceOf(msg.sender) >= tokenIds.length, "Caller does not own enough inBetweeners");
        require (totalSupply() + tokenIds.length <= MAX_SUPPLY, "Mystery Box claim amount exceeds supply"); //added


        uint256 mintCounter;  
        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(inBetweenersTokenClaimed[tokenIds[i]]==false,"inBetweeners tokenid claimed already"); //added
            require(msg.sender == inBetweenersTokenContract.ownerOf(tokenIds[i]), "Message sender is not owner of tokenid");
            inBetweenersTokenClaimed[tokenIds[i]] = true;
            mintCounter++;
        }
        _safeMint(msg.sender, mintCounter);
    }

    function setState(Status _state) external onlyOwner {
        state = _state;
    }
    
    function setURI(string calldata _newURI) external onlyOwner {
        baseURI = _newURI;
    }

    function userBurn(uint256 tokenId) external {
        require(state == Status.BURN, "Burn state not live");
        require(msg.sender == ownerOf(tokenId), "Caller does not own token");
        _burn(tokenId, true);
    }

    function ownerBurn(uint256 tokenId) external onlyOwner {
        require(state == Status.BURN, "Burn state not live");
        _burn(tokenId, true);
    }

    function contractBurn(uint256 tokenId) external onlyOwner {
        require(state == Status.BURN, "Burn state not live");
        require(msg.sender == burnerContract, "Caller does not own token");
        _burn(tokenId, true);
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"checkClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claimMysteryBox","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"contractBurn","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":[],"name":"getRemainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"inBetweenersTokenClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","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":"address","name":"_address","type":"address"}],"name":"setBurnerContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum MysteryBox.Status","name":"_state","type":"uint8"}],"name":"setState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"state","outputs":[{"internalType":"enum MysteryBox.Status","name":"","type":"uint8"}],"stateMutability":"view","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":"uint256","name":"tokenId","type":"uint256"}],"name":"userBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060095560405180606001604052806036815260200162003d7960369139600b90805190602001906200003a929190620001f8565b503480156200004857600080fd5b506040518060400160405280600b81526020017f4d79737465727920426f780000000000000000000000000000000000000000008152506040518060400160405280600481526020017f494e4d42000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000cd929190620001f8565b508060039080519060200190620000e6929190620001f8565b50620000f76200012560201b60201c565b60008190555050506200011f620001136200012a60201b60201c565b6200013260201b60201c565b6200030d565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020690620002a8565b90600052602060002090601f0160209004810192826200022a576000855562000276565b82601f106200024557805160ff191683800117855562000276565b8280016001018555821562000276579182015b828111156200027557825182559160200191906001019062000258565b5b50905062000285919062000289565b5090565b5b80821115620002a45760008160009055506001016200028a565b5090565b60006002820490506001821680620002c157607f821691505b60208210811415620002d857620002d7620002de565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613a5c806200031d6000396000f3fe6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063b88d4fde116100a0578063e4b7fb731161006f578063e4b7fb7314610692578063e985e9c5146106bd578063f19e75d4146106fa578063f2fde38b14610723578063f500acc21461074c576101ee565b8063b88d4fde146105f2578063c19d93fb1461060e578063c87b56dd14610639578063cb284c9f14610676576101ee565b80638da5cb5b116100dc5780638da5cb5b1461055c57806395d89b4114610587578063a22cb465146105b2578063ac446002146105db576101ee565b80636c0360eb146104b257806370a08231146104dd578063715018a61461051a5780638d859f3e14610531576101ee565b806332cb6b0c11610185578063496409191161015457806349640919146103fa57806356de96db146104235780636352211e1461044c578063674ca52214610489576101ee565b806332cb6b0c1461034d57806335a55caa146103785780633a4b3664146103b557806342842e0e146103de576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806312e250b4146102dd57806318160ddd1461030657806323b872dd14610331576101ee565b806301ffc9a7146101f357806302fe53051461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612c4a565b610789565b60405161022791906130f7565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612cd1565b61081b565b005b34801561026557600080fd5b5061026e610839565b60405161027b919061312d565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612d1e565b6108cb565b6040516102b89190613090565b60405180910390f35b6102db60048036038101906102d69190612bc1565b61094a565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190612d1e565b610a8e565b005b34801561031257600080fd5b5061031b610baa565b604051610328919061328f565b60405180910390f35b61034b60048036038101906103469190612aab565b610bc1565b005b34801561035957600080fd5b50610362610ee6565b60405161036f919061328f565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190612d1e565b610eec565b6040516103ac91906130f7565b60405180910390f35b3480156103c157600080fd5b506103dc60048036038101906103d79190612d1e565b610f16565b005b6103f860048036038101906103f39190612aab565b610fa2565b005b34801561040657600080fd5b50610421600480360381019061041c9190612d1e565b610fc2565b005b34801561042f57600080fd5b5061044a60048036038101906104459190612ca4565b6110bc565b005b34801561045857600080fd5b50610473600480360381019061046e9190612d1e565b6110f1565b6040516104809190613090565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190612a11565b611103565b005b3480156104be57600080fd5b506104c761114f565b6040516104d4919061312d565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190612a11565b6111dd565b604051610511919061328f565b60405180910390f35b34801561052657600080fd5b5061052f611296565b005b34801561053d57600080fd5b506105466112aa565b604051610553919061328f565b60405180910390f35b34801561056857600080fd5b506105716112b0565b60405161057e9190613090565b60405180910390f35b34801561059357600080fd5b5061059c6112da565b6040516105a9919061312d565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190612b81565b61136c565b005b3480156105e757600080fd5b506105f0611477565b005b61060c60048036038101906106079190612afe565b61152e565b005b34801561061a57600080fd5b506106236115a1565b6040516106309190613112565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b9190612d1e565b6115b4565b60405161066d919061312d565b60405180910390f35b610690600480360381019061068b9190612c01565b611654565b005b34801561069e57600080fd5b506106a7611a2e565b6040516106b4919061328f565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df9190612a6b565b611a4a565b6040516106f191906130f7565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190612d1e565b611ade565b005b34801561072f57600080fd5b5061074a60048036038101906107459190612a11565b611bc8565b005b34801561075857600080fd5b50610773600480360381019061076e9190612d1e565b611c4c565b60405161078091906130f7565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108145750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610823611c6c565b8181600b9190610834929190612762565b505050565b60606002805461084890613525565b80601f016020809104026020016040519081016040528092919081815260200182805461087490613525565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d682611cea565b61090c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610955826110f1565b90508073ffffffffffffffffffffffffffffffffffffffff16610976611d49565b73ffffffffffffffffffffffffffffffffffffffff16146109d9576109a28161099d611d49565b611a4a565b6109d8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a96611c6c565b60026003811115610aaa57610aa9613660565b5b600a60009054906101000a900460ff166003811115610acc57610acb613660565b5b14610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b039061320f565b60405180910390fd5b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b93906131ef565b60405180910390fd5b610ba7816001611d51565b50565b6000610bb4611fa5565b6001546000540303905090565b6000610bcc82611faa565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c33576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3f84612078565b91509150610c558187610c50611d49565b61209f565b610ca157610c6a86610c65611d49565b611a4a565b610ca0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d08576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d1586868660016120e3565b8015610d2057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dee85610dca8888876120e9565b7c020000000000000000000000000000000000000000000000000000000017612111565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e76576000600185019050600060046000838152602001908152602001600020541415610e74576000548114610e73578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ede868686600161213c565b505050505050565b612a7d81565b6000600c600083815260200190815260200160002060009054906101000a900460ff169050919050565b610f1e611c6c565b60026003811115610f3257610f31613660565b5b600a60009054906101000a900460ff166003811115610f5457610f53613660565b5b14610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b9061320f565b60405180910390fd5b610f9f816001611d51565b50565b610fbd8383836040518060200160405280600081525061152e565b505050565b60026003811115610fd657610fd5613660565b5b600a60009054906101000a900460ff166003811115610ff857610ff7613660565b5b14611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f9061320f565b60405180910390fd5b611041816110f1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a5906131ef565b60405180910390fd5b6110b9816001611d51565b50565b6110c4611c6c565b80600a60006101000a81548160ff021916908360038111156110e9576110e8613660565b5b021790555050565b60006110fc82611faa565b9050919050565b61110b611c6c565b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b805461115c90613525565b80601f016020809104026020016040519081016040528092919081815260200182805461118890613525565b80156111d55780601f106111aa576101008083540402835291602001916111d5565b820191906000526020600020905b8154815290600101906020018083116111b857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611245576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61129e611c6c565b6112a86000612142565b565b60095481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112e990613525565b80601f016020809104026020016040519081016040528092919081815260200182805461131590613525565b80156113625780601f1061133757610100808354040283529160200191611362565b820191906000526020600020905b81548152906001019060200180831161134557829003601f168201915b5050505050905090565b8060076000611379611d49565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611426611d49565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161146b91906130f7565b60405180910390a35050565b61147f611c6c565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516114a59061307b565b60006040518083038185875af1925050503d80600081146114e2576040519150601f19603f3d011682016040523d82523d6000602084013e6114e7565b606091505b505090508061152b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611522906131cf565b60405180910390fd5b50565b611539848484610bc1565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461159b5761156484848484612208565b61159a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a60009054906101000a900460ff1681565b60606115bf82611cea565b6115f5576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600b805461160490613525565b90501415611621576040518060200160405280600081525061164d565b600b61162c83612368565b60405160200161163d929190613057565b6040516020818303038152906040525b9050919050565b6001600381111561166857611667613660565b5b600a60009054906101000a900460ff16600381111561168a57611689613660565b5b146116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c19061314f565b60405180910390fd5b80517394638cbf3c54c1f956a5f05cbc0f9afb6822020d73ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016117199190613090565b60206040518083038186803b15801561173157600080fd5b505afa158015611745573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117699190612d4b565b10156117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a19061326f565b60405180910390fd5b612a7d81516117b7610baa565b6117c1919061338f565b1115611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f99061318f565b60405180910390fd5b600080600090505b8251811015611a1f5760001515600c600085848151811061182e5761182d6136be565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16151514611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b906131af565b60405180910390fd5b7394638cbf3c54c1f956a5f05cbc0f9afb6822020d73ffffffffffffffffffffffffffffffffffffffff16636352211e8483815181106118d7576118d66136be565b5b60200260200101516040518263ffffffff1660e01b81526004016118fb919061328f565b60206040518083038186803b15801561191357600080fd5b505afa158015611927573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194b9190612a3e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af9061324f565b60405180910390fd5b6001600c60008584815181106119d1576119d06136be565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508180611a0990613588565b9250508080611a1790613588565b91505061180a565b50611a2a33826124c9565b5050565b6000611a38610baa565b612a7d611a459190613416565b905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ae6611c6c565b60006003811115611afa57611af9613660565b5b600a60009054906101000a900460ff166003811115611b1c57611b1b613660565b5b1480611b5b575060016003811115611b3757611b36613660565b5b600a60009054906101000a900460ff166003811115611b5957611b58613660565b5b145b611b6457600080fd5b612a7d81611b70610baa565b611b7a919061338f565b1115611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb29061318f565b60405180910390fd5b611bc533826124c9565b50565b611bd0611c6c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c379061316f565b60405180910390fd5b611c4981612142565b50565b600c6020528060005260406000206000915054906101000a900460ff1681565b611c746124e7565b73ffffffffffffffffffffffffffffffffffffffff16611c926112b0565b73ffffffffffffffffffffffffffffffffffffffff1614611ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdf9061322f565b60405180910390fd5b565b600081611cf5611fa5565b11158015611d04575060005482105b8015611d42575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000611d5c83611faa565b90506000819050600080611d6f86612078565b915091508415611dd857611d8b8184611d86611d49565b61209f565b611dd757611da083611d9b611d49565b611a4a565b611dd6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611de68360008860016120e3565b8015611df157600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e9983611e56856000886120e9565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612111565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415611f21576000600187019050600060046000838152602001908152602001600020541415611f1f576000548114611f1e578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f8b83600088600161213c565b600160008154809291906001019190505550505050505050565b600090565b60008082905080611fb9611fa5565b11612041576000548110156120405760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561203e575b6000811415612034576004600083600190039350838152602001908152602001600020549050612009565b8092505050612073565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86121008686846124ef565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261222e611d49565b8786866040518563ffffffff1660e01b815260040161225094939291906130ab565b602060405180830381600087803b15801561226a57600080fd5b505af192505050801561229b57506040513d601f19601f820116820180604052508101906122989190612c77565b60015b612315573d80600081146122cb576040519150601f19603f3d011682016040523d82523d6000602084013e6122d0565b606091505b5060008151141561230d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156123b0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124c4565b600082905060005b600082146123e25780806123cb90613588565b915050600a826123db91906133e5565b91506123b8565b60008167ffffffffffffffff8111156123fe576123fd6136ed565b5b6040519080825280601f01601f1916602001820160405280156124305781602001600182028036833780820191505090505b5090505b600085146124bd576001826124499190613416565b9150600a8561245891906135d1565b6030612464919061338f565b60f81b81838151811061247a576124796136be565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124b691906133e5565b9450612434565b8093505050505b919050565b6124e38282604051806020016040528060008152506124f8565b5050565b600033905090565b60009392505050565b6125028383612595565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461259057600080549050600083820390505b6125426000868380600101945086612208565b612578576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061252f57816000541461258d57600080fd5b50505b505050565b60008054905060008214156125d6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125e360008483856120e3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061265a8361264b60008660006120e9565b61265485612752565b17612111565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126fb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126c0565b506000821415612737576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061274d600084838561213c565b505050565b60006001821460e11b9050919050565b82805461276e90613525565b90600052602060002090601f01602090048101928261279057600085556127d7565b82601f106127a957803560ff19168380011785556127d7565b828001600101855582156127d7579182015b828111156127d65782358255916020019190600101906127bb565b5b5090506127e491906127e8565b5090565b5b808211156128015760008160009055506001016127e9565b5090565b6000612818612813846132cf565b6132aa565b9050808382526020820190508285602086028201111561283b5761283a613726565b5b60005b8581101561286b578161285188826129e7565b84526020840193506020830192505060018101905061283e565b5050509392505050565b6000612888612883846132fb565b6132aa565b9050828152602081018484840111156128a4576128a361372b565b5b6128af8482856134e3565b509392505050565b6000813590506128c6816139ba565b92915050565b6000815190506128db816139ba565b92915050565b600082601f8301126128f6576128f5613721565b5b8135612906848260208601612805565b91505092915050565b60008135905061291e816139d1565b92915050565b600081359050612933816139e8565b92915050565b600081519050612948816139e8565b92915050565b600082601f83011261296357612962613721565b5b8135612973848260208601612875565b91505092915050565b60008135905061298b816139ff565b92915050565b60008083601f8401126129a7576129a6613721565b5b8235905067ffffffffffffffff8111156129c4576129c361371c565b5b6020830191508360018202830111156129e0576129df613726565b5b9250929050565b6000813590506129f681613a0f565b92915050565b600081519050612a0b81613a0f565b92915050565b600060208284031215612a2757612a26613735565b5b6000612a35848285016128b7565b91505092915050565b600060208284031215612a5457612a53613735565b5b6000612a62848285016128cc565b91505092915050565b60008060408385031215612a8257612a81613735565b5b6000612a90858286016128b7565b9250506020612aa1858286016128b7565b9150509250929050565b600080600060608486031215612ac457612ac3613735565b5b6000612ad2868287016128b7565b9350506020612ae3868287016128b7565b9250506040612af4868287016129e7565b9150509250925092565b60008060008060808587031215612b1857612b17613735565b5b6000612b26878288016128b7565b9450506020612b37878288016128b7565b9350506040612b48878288016129e7565b925050606085013567ffffffffffffffff811115612b6957612b68613730565b5b612b758782880161294e565b91505092959194509250565b60008060408385031215612b9857612b97613735565b5b6000612ba6858286016128b7565b9250506020612bb78582860161290f565b9150509250929050565b60008060408385031215612bd857612bd7613735565b5b6000612be6858286016128b7565b9250506020612bf7858286016129e7565b9150509250929050565b600060208284031215612c1757612c16613735565b5b600082013567ffffffffffffffff811115612c3557612c34613730565b5b612c41848285016128e1565b91505092915050565b600060208284031215612c6057612c5f613735565b5b6000612c6e84828501612924565b91505092915050565b600060208284031215612c8d57612c8c613735565b5b6000612c9b84828501612939565b91505092915050565b600060208284031215612cba57612cb9613735565b5b6000612cc88482850161297c565b91505092915050565b60008060208385031215612ce857612ce7613735565b5b600083013567ffffffffffffffff811115612d0657612d05613730565b5b612d1285828601612991565b92509250509250929050565b600060208284031215612d3457612d33613735565b5b6000612d42848285016129e7565b91505092915050565b600060208284031215612d6157612d60613735565b5b6000612d6f848285016129fc565b91505092915050565b612d818161344a565b82525050565b612d908161345c565b82525050565b6000612da182613341565b612dab8185613357565b9350612dbb8185602086016134f2565b612dc48161373a565b840191505092915050565b612dd8816134d1565b82525050565b6000612de98261334c565b612df38185613373565b9350612e038185602086016134f2565b612e0c8161373a565b840191505092915050565b6000612e228261334c565b612e2c8185613384565b9350612e3c8185602086016134f2565b80840191505092915050565b60008154612e5581613525565b612e5f8186613384565b94506001821660008114612e7a5760018114612e8b57612ebe565b60ff19831686528186019350612ebe565b612e948561332c565b60005b83811015612eb657815481890152600182019150602081019050612e97565b838801955050505b50505092915050565b6000612ed4600e83613373565b9150612edf8261374b565b602082019050919050565b6000612ef7602683613373565b9150612f0282613774565b604082019050919050565b6000612f1a602783613373565b9150612f25826137c3565b604082019050919050565b6000612f3d602483613373565b9150612f4882613812565b604082019050919050565b6000612f60601083613373565b9150612f6b82613861565b602082019050919050565b6000612f83601983613373565b9150612f8e8261388a565b602082019050919050565b6000612fa6601383613373565b9150612fb1826138b3565b602082019050919050565b6000612fc9602083613373565b9150612fd4826138dc565b602082019050919050565b6000612fec602683613373565b9150612ff782613905565b604082019050919050565b600061300f602783613373565b915061301a82613954565b604082019050919050565b6000613032600083613368565b915061303d826139a3565b600082019050919050565b613051816134c7565b82525050565b60006130638285612e48565b915061306f8284612e17565b91508190509392505050565b600061308682613025565b9150819050919050565b60006020820190506130a56000830184612d78565b92915050565b60006080820190506130c06000830187612d78565b6130cd6020830186612d78565b6130da6040830185613048565b81810360608301526130ec8184612d96565b905095945050505050565b600060208201905061310c6000830184612d87565b92915050565b60006020820190506131276000830184612dcf565b92915050565b600060208201905081810360008301526131478184612dde565b905092915050565b6000602082019050818103600083015261316881612ec7565b9050919050565b6000602082019050818103600083015261318881612eea565b9050919050565b600060208201905081810360008301526131a881612f0d565b9050919050565b600060208201905081810360008301526131c881612f30565b9050919050565b600060208201905081810360008301526131e881612f53565b9050919050565b6000602082019050818103600083015261320881612f76565b9050919050565b6000602082019050818103600083015261322881612f99565b9050919050565b6000602082019050818103600083015261324881612fbc565b9050919050565b6000602082019050818103600083015261326881612fdf565b9050919050565b6000602082019050818103600083015261328881613002565b9050919050565b60006020820190506132a46000830184613048565b92915050565b60006132b46132c5565b90506132c08282613557565b919050565b6000604051905090565b600067ffffffffffffffff8211156132ea576132e96136ed565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613316576133156136ed565b5b61331f8261373a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061339a826134c7565b91506133a5836134c7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133da576133d9613602565b5b828201905092915050565b60006133f0826134c7565b91506133fb836134c7565b92508261340b5761340a613631565b5b828204905092915050565b6000613421826134c7565b915061342c836134c7565b92508282101561343f5761343e613602565b5b828203905092915050565b6000613455826134a7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506134a2826139a6565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006134dc82613494565b9050919050565b82818337600083830152505050565b60005b838110156135105780820151818401526020810190506134f5565b8381111561351f576000848401525b50505050565b6000600282049050600182168061353d57607f821691505b602082108114156135515761355061368f565b5b50919050565b6135608261373a565b810181811067ffffffffffffffff8211171561357f5761357e6136ed565b5b80604052505050565b6000613593826134c7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135c6576135c5613602565b5b600182019050919050565b60006135dc826134c7565b91506135e7836134c7565b9250826135f7576135f6613631565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f436c61696d204e6f74204c697665000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d79737465727920426f7820636c61696d20616d6f756e74206578636565647360008201527f20737570706c7900000000000000000000000000000000000000000000000000602082015250565b7f696e4265747765656e65727320746f6b656e696420636c61696d656420616c7260008201527f6561647900000000000000000000000000000000000000000000000000000000602082015250565b7f5769746864726177206661696c65642e00000000000000000000000000000000600082015250565b7f43616c6c657220646f6573206e6f74206f776e20746f6b656e00000000000000600082015250565b7f4275726e207374617465206e6f74206c69766500000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6573736167652073656e646572206973206e6f74206f776e6572206f66207460008201527f6f6b656e69640000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c657220646f6573206e6f74206f776e20656e6f75676820696e42657460008201527f7765656e65727300000000000000000000000000000000000000000000000000602082015250565b50565b600481106139b7576139b6613660565b5b50565b6139c38161344a565b81146139ce57600080fd5b50565b6139da8161345c565b81146139e557600080fd5b50565b6139f181613468565b81146139fc57600080fd5b50565b60048110613a0c57600080fd5b50565b613a18816134c7565b8114613a2357600080fd5b5056fea264697066735822122030750995b4d18551317bba504fc16c660a2c6650d6be28b712c5590a6eae5ead64736f6c63430008070033697066733a2f2f516d63694b354a714b4c4e654b467079685a51796b4d656850326a55557861523732346f48524b733258624574462f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063b88d4fde116100a0578063e4b7fb731161006f578063e4b7fb7314610692578063e985e9c5146106bd578063f19e75d4146106fa578063f2fde38b14610723578063f500acc21461074c576101ee565b8063b88d4fde146105f2578063c19d93fb1461060e578063c87b56dd14610639578063cb284c9f14610676576101ee565b80638da5cb5b116100dc5780638da5cb5b1461055c57806395d89b4114610587578063a22cb465146105b2578063ac446002146105db576101ee565b80636c0360eb146104b257806370a08231146104dd578063715018a61461051a5780638d859f3e14610531576101ee565b806332cb6b0c11610185578063496409191161015457806349640919146103fa57806356de96db146104235780636352211e1461044c578063674ca52214610489576101ee565b806332cb6b0c1461034d57806335a55caa146103785780633a4b3664146103b557806342842e0e146103de576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806312e250b4146102dd57806318160ddd1461030657806323b872dd14610331576101ee565b806301ffc9a7146101f357806302fe53051461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612c4a565b610789565b60405161022791906130f7565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612cd1565b61081b565b005b34801561026557600080fd5b5061026e610839565b60405161027b919061312d565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190612d1e565b6108cb565b6040516102b89190613090565b60405180910390f35b6102db60048036038101906102d69190612bc1565b61094a565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190612d1e565b610a8e565b005b34801561031257600080fd5b5061031b610baa565b604051610328919061328f565b60405180910390f35b61034b60048036038101906103469190612aab565b610bc1565b005b34801561035957600080fd5b50610362610ee6565b60405161036f919061328f565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190612d1e565b610eec565b6040516103ac91906130f7565b60405180910390f35b3480156103c157600080fd5b506103dc60048036038101906103d79190612d1e565b610f16565b005b6103f860048036038101906103f39190612aab565b610fa2565b005b34801561040657600080fd5b50610421600480360381019061041c9190612d1e565b610fc2565b005b34801561042f57600080fd5b5061044a60048036038101906104459190612ca4565b6110bc565b005b34801561045857600080fd5b50610473600480360381019061046e9190612d1e565b6110f1565b6040516104809190613090565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190612a11565b611103565b005b3480156104be57600080fd5b506104c761114f565b6040516104d4919061312d565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff9190612a11565b6111dd565b604051610511919061328f565b60405180910390f35b34801561052657600080fd5b5061052f611296565b005b34801561053d57600080fd5b506105466112aa565b604051610553919061328f565b60405180910390f35b34801561056857600080fd5b506105716112b0565b60405161057e9190613090565b60405180910390f35b34801561059357600080fd5b5061059c6112da565b6040516105a9919061312d565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190612b81565b61136c565b005b3480156105e757600080fd5b506105f0611477565b005b61060c60048036038101906106079190612afe565b61152e565b005b34801561061a57600080fd5b506106236115a1565b6040516106309190613112565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b9190612d1e565b6115b4565b60405161066d919061312d565b60405180910390f35b610690600480360381019061068b9190612c01565b611654565b005b34801561069e57600080fd5b506106a7611a2e565b6040516106b4919061328f565b60405180910390f35b3480156106c957600080fd5b506106e460048036038101906106df9190612a6b565b611a4a565b6040516106f191906130f7565b60405180910390f35b34801561070657600080fd5b50610721600480360381019061071c9190612d1e565b611ade565b005b34801561072f57600080fd5b5061074a60048036038101906107459190612a11565b611bc8565b005b34801561075857600080fd5b50610773600480360381019061076e9190612d1e565b611c4c565b60405161078091906130f7565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108145750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610823611c6c565b8181600b9190610834929190612762565b505050565b60606002805461084890613525565b80601f016020809104026020016040519081016040528092919081815260200182805461087490613525565b80156108c15780601f10610896576101008083540402835291602001916108c1565b820191906000526020600020905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b60006108d682611cea565b61090c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610955826110f1565b90508073ffffffffffffffffffffffffffffffffffffffff16610976611d49565b73ffffffffffffffffffffffffffffffffffffffff16146109d9576109a28161099d611d49565b611a4a565b6109d8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610a96611c6c565b60026003811115610aaa57610aa9613660565b5b600a60009054906101000a900460ff166003811115610acc57610acb613660565b5b14610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b039061320f565b60405180910390fd5b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b93906131ef565b60405180910390fd5b610ba7816001611d51565b50565b6000610bb4611fa5565b6001546000540303905090565b6000610bcc82611faa565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c33576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3f84612078565b91509150610c558187610c50611d49565b61209f565b610ca157610c6a86610c65611d49565b611a4a565b610ca0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d08576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d1586868660016120e3565b8015610d2057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dee85610dca8888876120e9565b7c020000000000000000000000000000000000000000000000000000000017612111565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e76576000600185019050600060046000838152602001908152602001600020541415610e74576000548114610e73578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ede868686600161213c565b505050505050565b612a7d81565b6000600c600083815260200190815260200160002060009054906101000a900460ff169050919050565b610f1e611c6c565b60026003811115610f3257610f31613660565b5b600a60009054906101000a900460ff166003811115610f5457610f53613660565b5b14610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b9061320f565b60405180910390fd5b610f9f816001611d51565b50565b610fbd8383836040518060200160405280600081525061152e565b505050565b60026003811115610fd657610fd5613660565b5b600a60009054906101000a900460ff166003811115610ff857610ff7613660565b5b14611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f9061320f565b60405180910390fd5b611041816110f1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a5906131ef565b60405180910390fd5b6110b9816001611d51565b50565b6110c4611c6c565b80600a60006101000a81548160ff021916908360038111156110e9576110e8613660565b5b021790555050565b60006110fc82611faa565b9050919050565b61110b611c6c565b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b805461115c90613525565b80601f016020809104026020016040519081016040528092919081815260200182805461118890613525565b80156111d55780601f106111aa576101008083540402835291602001916111d5565b820191906000526020600020905b8154815290600101906020018083116111b857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611245576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61129e611c6c565b6112a86000612142565b565b60095481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112e990613525565b80601f016020809104026020016040519081016040528092919081815260200182805461131590613525565b80156113625780601f1061133757610100808354040283529160200191611362565b820191906000526020600020905b81548152906001019060200180831161134557829003601f168201915b5050505050905090565b8060076000611379611d49565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611426611d49565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161146b91906130f7565b60405180910390a35050565b61147f611c6c565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516114a59061307b565b60006040518083038185875af1925050503d80600081146114e2576040519150601f19603f3d011682016040523d82523d6000602084013e6114e7565b606091505b505090508061152b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611522906131cf565b60405180910390fd5b50565b611539848484610bc1565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461159b5761156484848484612208565b61159a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a60009054906101000a900460ff1681565b60606115bf82611cea565b6115f5576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600b805461160490613525565b90501415611621576040518060200160405280600081525061164d565b600b61162c83612368565b60405160200161163d929190613057565b6040516020818303038152906040525b9050919050565b6001600381111561166857611667613660565b5b600a60009054906101000a900460ff16600381111561168a57611689613660565b5b146116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c19061314f565b60405180910390fd5b80517394638cbf3c54c1f956a5f05cbc0f9afb6822020d73ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016117199190613090565b60206040518083038186803b15801561173157600080fd5b505afa158015611745573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117699190612d4b565b10156117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a19061326f565b60405180910390fd5b612a7d81516117b7610baa565b6117c1919061338f565b1115611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f99061318f565b60405180910390fd5b600080600090505b8251811015611a1f5760001515600c600085848151811061182e5761182d6136be565b5b6020026020010151815260200190815260200160002060009054906101000a900460ff16151514611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b906131af565b60405180910390fd5b7394638cbf3c54c1f956a5f05cbc0f9afb6822020d73ffffffffffffffffffffffffffffffffffffffff16636352211e8483815181106118d7576118d66136be565b5b60200260200101516040518263ffffffff1660e01b81526004016118fb919061328f565b60206040518083038186803b15801561191357600080fd5b505afa158015611927573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194b9190612a3e565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af9061324f565b60405180910390fd5b6001600c60008584815181106119d1576119d06136be565b5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055508180611a0990613588565b9250508080611a1790613588565b91505061180a565b50611a2a33826124c9565b5050565b6000611a38610baa565b612a7d611a459190613416565b905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ae6611c6c565b60006003811115611afa57611af9613660565b5b600a60009054906101000a900460ff166003811115611b1c57611b1b613660565b5b1480611b5b575060016003811115611b3757611b36613660565b5b600a60009054906101000a900460ff166003811115611b5957611b58613660565b5b145b611b6457600080fd5b612a7d81611b70610baa565b611b7a919061338f565b1115611bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb29061318f565b60405180910390fd5b611bc533826124c9565b50565b611bd0611c6c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c379061316f565b60405180910390fd5b611c4981612142565b50565b600c6020528060005260406000206000915054906101000a900460ff1681565b611c746124e7565b73ffffffffffffffffffffffffffffffffffffffff16611c926112b0565b73ffffffffffffffffffffffffffffffffffffffff1614611ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdf9061322f565b60405180910390fd5b565b600081611cf5611fa5565b11158015611d04575060005482105b8015611d42575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6000611d5c83611faa565b90506000819050600080611d6f86612078565b915091508415611dd857611d8b8184611d86611d49565b61209f565b611dd757611da083611d9b611d49565b611a4a565b611dd6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611de68360008860016120e3565b8015611df157600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e9983611e56856000886120e9565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717612111565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415611f21576000600187019050600060046000838152602001908152602001600020541415611f1f576000548114611f1e578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f8b83600088600161213c565b600160008154809291906001019190505550505050505050565b600090565b60008082905080611fb9611fa5565b11612041576000548110156120405760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561203e575b6000811415612034576004600083600190039350838152602001908152602001600020549050612009565b8092505050612073565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86121008686846124ef565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261222e611d49565b8786866040518563ffffffff1660e01b815260040161225094939291906130ab565b602060405180830381600087803b15801561226a57600080fd5b505af192505050801561229b57506040513d601f19601f820116820180604052508101906122989190612c77565b60015b612315573d80600081146122cb576040519150601f19603f3d011682016040523d82523d6000602084013e6122d0565b606091505b5060008151141561230d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156123b0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124c4565b600082905060005b600082146123e25780806123cb90613588565b915050600a826123db91906133e5565b91506123b8565b60008167ffffffffffffffff8111156123fe576123fd6136ed565b5b6040519080825280601f01601f1916602001820160405280156124305781602001600182028036833780820191505090505b5090505b600085146124bd576001826124499190613416565b9150600a8561245891906135d1565b6030612464919061338f565b60f81b81838151811061247a576124796136be565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124b691906133e5565b9450612434565b8093505050505b919050565b6124e38282604051806020016040528060008152506124f8565b5050565b600033905090565b60009392505050565b6125028383612595565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461259057600080549050600083820390505b6125426000868380600101945086612208565b612578576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061252f57816000541461258d57600080fd5b50505b505050565b60008054905060008214156125d6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125e360008483856120e3565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061265a8361264b60008660006120e9565b61265485612752565b17612111565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126fb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126c0565b506000821415612737576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061274d600084838561213c565b505050565b60006001821460e11b9050919050565b82805461276e90613525565b90600052602060002090601f01602090048101928261279057600085556127d7565b82601f106127a957803560ff19168380011785556127d7565b828001600101855582156127d7579182015b828111156127d65782358255916020019190600101906127bb565b5b5090506127e491906127e8565b5090565b5b808211156128015760008160009055506001016127e9565b5090565b6000612818612813846132cf565b6132aa565b9050808382526020820190508285602086028201111561283b5761283a613726565b5b60005b8581101561286b578161285188826129e7565b84526020840193506020830192505060018101905061283e565b5050509392505050565b6000612888612883846132fb565b6132aa565b9050828152602081018484840111156128a4576128a361372b565b5b6128af8482856134e3565b509392505050565b6000813590506128c6816139ba565b92915050565b6000815190506128db816139ba565b92915050565b600082601f8301126128f6576128f5613721565b5b8135612906848260208601612805565b91505092915050565b60008135905061291e816139d1565b92915050565b600081359050612933816139e8565b92915050565b600081519050612948816139e8565b92915050565b600082601f83011261296357612962613721565b5b8135612973848260208601612875565b91505092915050565b60008135905061298b816139ff565b92915050565b60008083601f8401126129a7576129a6613721565b5b8235905067ffffffffffffffff8111156129c4576129c361371c565b5b6020830191508360018202830111156129e0576129df613726565b5b9250929050565b6000813590506129f681613a0f565b92915050565b600081519050612a0b81613a0f565b92915050565b600060208284031215612a2757612a26613735565b5b6000612a35848285016128b7565b91505092915050565b600060208284031215612a5457612a53613735565b5b6000612a62848285016128cc565b91505092915050565b60008060408385031215612a8257612a81613735565b5b6000612a90858286016128b7565b9250506020612aa1858286016128b7565b9150509250929050565b600080600060608486031215612ac457612ac3613735565b5b6000612ad2868287016128b7565b9350506020612ae3868287016128b7565b9250506040612af4868287016129e7565b9150509250925092565b60008060008060808587031215612b1857612b17613735565b5b6000612b26878288016128b7565b9450506020612b37878288016128b7565b9350506040612b48878288016129e7565b925050606085013567ffffffffffffffff811115612b6957612b68613730565b5b612b758782880161294e565b91505092959194509250565b60008060408385031215612b9857612b97613735565b5b6000612ba6858286016128b7565b9250506020612bb78582860161290f565b9150509250929050565b60008060408385031215612bd857612bd7613735565b5b6000612be6858286016128b7565b9250506020612bf7858286016129e7565b9150509250929050565b600060208284031215612c1757612c16613735565b5b600082013567ffffffffffffffff811115612c3557612c34613730565b5b612c41848285016128e1565b91505092915050565b600060208284031215612c6057612c5f613735565b5b6000612c6e84828501612924565b91505092915050565b600060208284031215612c8d57612c8c613735565b5b6000612c9b84828501612939565b91505092915050565b600060208284031215612cba57612cb9613735565b5b6000612cc88482850161297c565b91505092915050565b60008060208385031215612ce857612ce7613735565b5b600083013567ffffffffffffffff811115612d0657612d05613730565b5b612d1285828601612991565b92509250509250929050565b600060208284031215612d3457612d33613735565b5b6000612d42848285016129e7565b91505092915050565b600060208284031215612d6157612d60613735565b5b6000612d6f848285016129fc565b91505092915050565b612d818161344a565b82525050565b612d908161345c565b82525050565b6000612da182613341565b612dab8185613357565b9350612dbb8185602086016134f2565b612dc48161373a565b840191505092915050565b612dd8816134d1565b82525050565b6000612de98261334c565b612df38185613373565b9350612e038185602086016134f2565b612e0c8161373a565b840191505092915050565b6000612e228261334c565b612e2c8185613384565b9350612e3c8185602086016134f2565b80840191505092915050565b60008154612e5581613525565b612e5f8186613384565b94506001821660008114612e7a5760018114612e8b57612ebe565b60ff19831686528186019350612ebe565b612e948561332c565b60005b83811015612eb657815481890152600182019150602081019050612e97565b838801955050505b50505092915050565b6000612ed4600e83613373565b9150612edf8261374b565b602082019050919050565b6000612ef7602683613373565b9150612f0282613774565b604082019050919050565b6000612f1a602783613373565b9150612f25826137c3565b604082019050919050565b6000612f3d602483613373565b9150612f4882613812565b604082019050919050565b6000612f60601083613373565b9150612f6b82613861565b602082019050919050565b6000612f83601983613373565b9150612f8e8261388a565b602082019050919050565b6000612fa6601383613373565b9150612fb1826138b3565b602082019050919050565b6000612fc9602083613373565b9150612fd4826138dc565b602082019050919050565b6000612fec602683613373565b9150612ff782613905565b604082019050919050565b600061300f602783613373565b915061301a82613954565b604082019050919050565b6000613032600083613368565b915061303d826139a3565b600082019050919050565b613051816134c7565b82525050565b60006130638285612e48565b915061306f8284612e17565b91508190509392505050565b600061308682613025565b9150819050919050565b60006020820190506130a56000830184612d78565b92915050565b60006080820190506130c06000830187612d78565b6130cd6020830186612d78565b6130da6040830185613048565b81810360608301526130ec8184612d96565b905095945050505050565b600060208201905061310c6000830184612d87565b92915050565b60006020820190506131276000830184612dcf565b92915050565b600060208201905081810360008301526131478184612dde565b905092915050565b6000602082019050818103600083015261316881612ec7565b9050919050565b6000602082019050818103600083015261318881612eea565b9050919050565b600060208201905081810360008301526131a881612f0d565b9050919050565b600060208201905081810360008301526131c881612f30565b9050919050565b600060208201905081810360008301526131e881612f53565b9050919050565b6000602082019050818103600083015261320881612f76565b9050919050565b6000602082019050818103600083015261322881612f99565b9050919050565b6000602082019050818103600083015261324881612fbc565b9050919050565b6000602082019050818103600083015261326881612fdf565b9050919050565b6000602082019050818103600083015261328881613002565b9050919050565b60006020820190506132a46000830184613048565b92915050565b60006132b46132c5565b90506132c08282613557565b919050565b6000604051905090565b600067ffffffffffffffff8211156132ea576132e96136ed565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613316576133156136ed565b5b61331f8261373a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061339a826134c7565b91506133a5836134c7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133da576133d9613602565b5b828201905092915050565b60006133f0826134c7565b91506133fb836134c7565b92508261340b5761340a613631565b5b828204905092915050565b6000613421826134c7565b915061342c836134c7565b92508282101561343f5761343e613602565b5b828203905092915050565b6000613455826134a7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60008190506134a2826139a6565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006134dc82613494565b9050919050565b82818337600083830152505050565b60005b838110156135105780820151818401526020810190506134f5565b8381111561351f576000848401525b50505050565b6000600282049050600182168061353d57607f821691505b602082108114156135515761355061368f565b5b50919050565b6135608261373a565b810181811067ffffffffffffffff8211171561357f5761357e6136ed565b5b80604052505050565b6000613593826134c7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135c6576135c5613602565b5b600182019050919050565b60006135dc826134c7565b91506135e7836134c7565b9250826135f7576135f6613631565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f436c61696d204e6f74204c697665000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d79737465727920426f7820636c61696d20616d6f756e74206578636565647360008201527f20737570706c7900000000000000000000000000000000000000000000000000602082015250565b7f696e4265747765656e65727320746f6b656e696420636c61696d656420616c7260008201527f6561647900000000000000000000000000000000000000000000000000000000602082015250565b7f5769746864726177206661696c65642e00000000000000000000000000000000600082015250565b7f43616c6c657220646f6573206e6f74206f776e20746f6b656e00000000000000600082015250565b7f4275726e207374617465206e6f74206c69766500000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6573736167652073656e646572206973206e6f74206f776e6572206f66207460008201527f6f6b656e69640000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c657220646f6573206e6f74206f776e20656e6f75676820696e42657460008201527f7765656e65727300000000000000000000000000000000000000000000000000602082015250565b50565b600481106139b7576139b6613660565b5b50565b6139c38161344a565b81146139ce57600080fd5b50565b6139da8161345c565b81146139e557600080fd5b50565b6139f181613468565b81146139fc57600080fd5b50565b60048110613a0c57600080fd5b50565b613a18816134c7565b8114613a2357600080fd5b5056fea264697066735822122030750995b4d18551317bba504fc16c660a2c6650d6be28b712c5590a6eae5ead64736f6c63430008070033

Deployed Bytecode Sourcemap

67335:3576:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21269:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69981:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22171:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28662:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28095:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70483:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17922:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32301:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67432:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68745:137;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70318:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35222:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70085:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69884:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23564:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68064:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67849:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19106:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66444:103;;;;;;;;;;;;;:::i;:::-;;67481:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65796:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22347:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29220:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70728:178;;;;;;;;;;;;;:::i;:::-;;36013:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67784:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68180:271;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69012:864;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68890:114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29611:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68459:278;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66702:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67938:56;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21269:639;21354:4;21693:10;21678:25;;:11;:25;;;;:102;;;;21770:10;21755:25;;:11;:25;;;;21678:102;:179;;;;21847:10;21832:25;;:11;:25;;;;21678:179;21658:199;;21269:639;;;:::o;69981:96::-;65682:13;:11;:13::i;:::-;70062:7:::1;;70052;:17;;;;;;;:::i;:::-;;69981:96:::0;;:::o;22171:100::-;22225:13;22258:5;22251:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22171:100;:::o;28662:218::-;28738:7;28763:16;28771:7;28763;:16::i;:::-;28758:64;;28788:34;;;;;;;;;;;;;;28758:64;28842:15;:24;28858:7;28842:24;;;;;;;;;;;:30;;;;;;;;;;;;28835:37;;28662:218;;;:::o;28095:408::-;28184:13;28200:16;28208:7;28200;:16::i;:::-;28184:32;;28256:5;28233:28;;:19;:17;:19::i;:::-;:28;;;28229:175;;28281:44;28298:5;28305:19;:17;:19::i;:::-;28281:16;:44::i;:::-;28276:128;;28353:35;;;;;;;;;;;;;;28276:128;28229:175;28449:2;28416:15;:24;28432:7;28416:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28487:7;28483:2;28467:28;;28476:5;28467:28;;;;;;;;;;;;28173:330;28095:408;;:::o;70483:237::-;65682:13;:11;:13::i;:::-;70569:11:::1;70560:20;;;;;;;;:::i;:::-;;:5;;;;;;;;;;;:20;;;;;;;;:::i;:::-;;;70552:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;70637:14;;;;;;;;;;;70623:28;;:10;:28;;;70615:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;70692:20;70698:7;70707:4;70692:5;:20::i;:::-;70483:237:::0;:::o;17922:323::-;17983:7;18211:15;:13;:15::i;:::-;18196:12;;18180:13;;:28;:46;18173:53;;17922:323;:::o;32301:2825::-;32443:27;32473;32492:7;32473:18;:27::i;:::-;32443:57;;32558:4;32517:45;;32533:19;32517:45;;;32513:86;;32571:28;;;;;;;;;;;;;;32513:86;32613:27;32642:23;32669:35;32696:7;32669:26;:35::i;:::-;32612:92;;;;32804:68;32829:15;32846:4;32852:19;:17;:19::i;:::-;32804:24;:68::i;:::-;32799:180;;32892:43;32909:4;32915:19;:17;:19::i;:::-;32892:16;:43::i;:::-;32887:92;;32944:35;;;;;;;;;;;;;;32887:92;32799:180;33010:1;32996:16;;:2;:16;;;32992:52;;;33021:23;;;;;;;;;;;;;;32992:52;33057:43;33079:4;33085:2;33089:7;33098:1;33057:21;:43::i;:::-;33193:15;33190:160;;;33333:1;33312:19;33305:30;33190:160;33730:18;:24;33749:4;33730:24;;;;;;;;;;;;;;;;33728:26;;;;;;;;;;;;33799:18;:22;33818:2;33799:22;;;;;;;;;;;;;;;;33797:24;;;;;;;;;;;34121:146;34158:2;34207:45;34222:4;34228:2;34232:19;34207:14;:45::i;:::-;14321:8;34179:73;34121:18;:146::i;:::-;34092:17;:26;34110:7;34092:26;;;;;;;;;;;:175;;;;34438:1;14321:8;34387:19;:47;:52;34383:627;;;34460:19;34492:1;34482:7;:11;34460:33;;34649:1;34615:17;:30;34633:11;34615:30;;;;;;;;;;;;:35;34611:384;;;34753:13;;34738:11;:28;34734:242;;34933:19;34900:17;:30;34918:11;34900:30;;;;;;;;;;;:52;;;;34734:242;34611:384;34441:569;34383:627;35057:7;35053:2;35038:27;;35047:4;35038:27;;;;;;;;;;;;35076:42;35097:4;35103:2;35107:7;35116:1;35076:20;:42::i;:::-;32432:2694;;;32301:2825;;;:::o;67432:42::-;67469:5;67432:42;:::o;68745:137::-;68808:4;68840:24;:34;68865:8;68840:34;;;;;;;;;;;;;;;;;;;;;68833:41;;68745:137;;;:::o;70318:157::-;65682:13;:11;:13::i;:::-;70401:11:::1;70392:20;;;;;;;;:::i;:::-;;:5;;;;;;;;;;;:20;;;;;;;;:::i;:::-;;;70384:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;70447:20;70453:7;70462:4;70447:5;:20::i;:::-;70318:157:::0;:::o;35222:193::-;35368:39;35385:4;35391:2;35395:7;35368:39;;;;;;;;;;;;:16;:39::i;:::-;35222:193;;;:::o;70085:225::-;70157:11;70148:20;;;;;;;;:::i;:::-;;:5;;;;;;;;;;;:20;;;;;;;;:::i;:::-;;;70140:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;70225:16;70233:7;70225;:16::i;:::-;70211:30;;:10;:30;;;70203:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70282:20;70288:7;70297:4;70282:5;:20::i;:::-;70085:225;:::o;69884:85::-;65682:13;:11;:13::i;:::-;69955:6:::1;69947:5;;:14;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;69884:85:::0;:::o;23564:152::-;23636:7;23679:27;23698:7;23679:18;:27::i;:::-;23656:52;;23564:152;;;:::o;68064:108::-;65682:13;:11;:13::i;:::-;68156:8:::1;68139:14;;:25;;;;;;;;;;;;;;;;;;68064:108:::0;:::o;67849:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19106:233::-;19178:7;19219:1;19202:19;;:5;:19;;;19198:60;;;19230:28;;;;;;;;;;;;;;19198:60;13265:13;19276:18;:25;19295:5;19276:25;;;;;;;;;;;;;;;;:55;19269:62;;19106:233;;;:::o;66444:103::-;65682:13;:11;:13::i;:::-;66509:30:::1;66536:1;66509:18;:30::i;:::-;66444:103::o:0;67481:30::-;;;;:::o;65796:87::-;65842:7;65869:6;;;;;;;;;;;65862:13;;65796:87;:::o;22347:104::-;22403:13;22436:7;22429:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22347:104;:::o;29220:234::-;29367:8;29315:18;:39;29334:19;:17;:19::i;:::-;29315:39;;;;;;;;;;;;;;;:49;29355:8;29315:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29427:8;29391:55;;29406:19;:17;:19::i;:::-;29391:55;;;29437:8;29391:55;;;;;;:::i;:::-;;;;;;;;29220:234;;:::o;70728:178::-;65682:13;:11;:13::i;:::-;70784:12:::1;70802:10;:15;;70825:21;70802:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70783:68;;;70870:7;70862:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;70772:134;70728:178::o:0;36013:407::-;36188:31;36201:4;36207:2;36211:7;36188:12;:31::i;:::-;36252:1;36234:2;:14;;;:19;36230:183;;36273:56;36304:4;36310:2;36314:7;36323:5;36273:30;:56::i;:::-;36268:145;;36357:40;;;;;;;;;;;;;;36268:145;36230:183;36013:407;;;;:::o;67784:19::-;;;;;;;;;;;;;:::o;68180:271::-;68253:13;68284:16;68292:7;68284;:16::i;:::-;68279:59;;68309:29;;;;;;;;;;;;;;68279:59;68381:1;68362:7;68356:21;;;;;:::i;:::-;;;:26;;:87;;;;;;;;;;;;;;;;;68409:7;68418:18;:7;:16;:18::i;:::-;68392:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68356:87;68349:94;;68180:271;;;:::o;69012:864::-;69109:17;69100:26;;;;;;;;:::i;:::-;;:5;;;;;;;;;;;:26;;;;;;;;:::i;:::-;;;69092:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;69215:8;:15;67734:42;69164:35;;;69200:10;69164:47;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:66;;69156:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;67469:5;69310:8;:15;69294:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:45;;69285:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;69406:19;69443:9;69455:1;69443:13;;69438:386;69462:8;:15;69458:1;:19;69438:386;;;69546:5;69507:44;;:24;:37;69532:8;69541:1;69532:11;;;;;;;;:::i;:::-;;;;;;;;69507:37;;;;;;;;;;;;;;;;;;;;;:44;;;69499:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;67734:42;69636:33;;;69670:8;69679:1;69670:11;;;;;;;;:::i;:::-;;;;;;;;69636:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;69622:60;;:10;:60;;;69614:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;69780:4;69740:24;:37;69765:8;69774:1;69765:11;;;;;;;;:::i;:::-;;;;;;;;69740:37;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;69799:13;;;;;:::i;:::-;;;;69479:3;;;;;:::i;:::-;;;;69438:386;;;;69834:34;69844:10;69856:11;69834:9;:34::i;:::-;69081:795;69012:864;:::o;68890:114::-;68943:7;68983:13;:11;:13::i;:::-;67469:5;68970:26;;;;:::i;:::-;68963:33;;68890:114;:::o;29611:164::-;29708:4;29732:18;:25;29751:5;29732:25;;;;;;;;;;;;;;;:35;29758:8;29732:35;;;;;;;;;;;;;;;;;;;;;;;;;29725:42;;29611:164;;;;:::o;68459:278::-;65682:13;:11;:13::i;:::-;68542:15:::1;68533:24;;;;;;;;:::i;:::-;;:5;;;;;;;;;;;:24;;;;;;;;:::i;:::-;;;:54;;;;68570:17;68561:26;;;;;;;;:::i;:::-;;:5;;;;;;;;;;;:26;;;;;;;;:::i;:::-;;;68533:54;68525:63;;;::::0;::::1;;67469:5;68623:7;68607:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:37;;68599:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;68699:30;68709:10;68721:7;68699:9;:30::i;:::-;68459:278:::0;:::o;66702:201::-;65682:13;:11;:13::i;:::-;66811:1:::1;66791:22;;:8;:22;;;;66783:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66867:28;66886:8;66867:18;:28::i;:::-;66702:201:::0;:::o;67938:56::-;;;;;;;;;;;;;;;;;;;;;;:::o;65961:132::-;66036:12;:10;:12::i;:::-;66025:23;;:7;:5;:7::i;:::-;:23;;;66017:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65961:132::o;30033:282::-;30098:4;30154:7;30135:15;:13;:15::i;:::-;:26;;:66;;;;;30188:13;;30178:7;:23;30135:66;:153;;;;;30287:1;14041:8;30239:17;:26;30257:7;30239:26;;;;;;;;;;;;:44;:49;30135:153;30115:173;;30033:282;;;:::o;52341:105::-;52401:7;52428:10;52421:17;;52341:105;:::o;46870:3081::-;46950:27;46980;46999:7;46980:18;:27::i;:::-;46950:57;;47020:12;47051:19;47020:52;;47086:27;47115:23;47142:35;47169:7;47142:26;:35::i;:::-;47085:92;;;;47194:13;47190:316;;;47315:68;47340:15;47357:4;47363:19;:17;:19::i;:::-;47315:24;:68::i;:::-;47310:184;;47407:43;47424:4;47430:19;:17;:19::i;:::-;47407:16;:43::i;:::-;47402:92;;47459:35;;;;;;;;;;;;;;47402:92;47310:184;47190:316;47518:51;47540:4;47554:1;47558:7;47567:1;47518:21;:51::i;:::-;47662:15;47659:160;;;47802:1;47781:19;47774:30;47659:160;48480:1;13530:3;48450:1;:26;;48449:32;48421:18;:24;48440:4;48421:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;48748:176;48785:4;48856:53;48871:4;48885:1;48889:19;48856:14;:53::i;:::-;14321:8;14041;48809:43;48808:101;48748:18;:176::i;:::-;48719:17;:26;48737:7;48719:26;;;;;;;;;;;:205;;;;49095:1;14321:8;49044:19;:47;:52;49040:627;;;49117:19;49149:1;49139:7;:11;49117:33;;49306:1;49272:17;:30;49290:11;49272:30;;;;;;;;;;;;:35;49268:384;;;49410:13;;49395:11;:28;49391:242;;49590:19;49557:17;:30;49575:11;49557:30;;;;;;;;;;;:52;;;;49391:242;49268:384;49098:569;49040:627;49722:7;49718:1;49695:35;;49704:4;49695:35;;;;;;;;;;;;49741:50;49762:4;49776:1;49780:7;49789:1;49741:20;:50::i;:::-;49918:12;;:14;;;;;;;;;;;;;46939:3012;;;;46870:3081;;:::o;17438:92::-;17494:7;17438:92;:::o;24719:1275::-;24786:7;24806:12;24821:7;24806:22;;24889:4;24870:15;:13;:15::i;:::-;:23;24866:1061;;24923:13;;24916:4;:20;24912:1015;;;24961:14;24978:17;:23;24996:4;24978:23;;;;;;;;;;;;24961:40;;25095:1;14041:8;25067:6;:24;:29;25063:845;;;25732:113;25749:1;25739:6;:11;25732:113;;;25792:17;:25;25810:6;;;;;;;25792:25;;;;;;;;;;;;25783:34;;25732:113;;;25878:6;25871:13;;;;;;25063:845;24938:989;24912:1015;24866:1061;25955:31;;;;;;;;;;;;;;24719:1275;;;;:::o;31196:485::-;31298:27;31327:23;31368:38;31409:15;:24;31425:7;31409:24;;;;;;;;;;;31368:65;;31586:18;31563:41;;31643:19;31637:26;31618:45;;31548:126;31196:485;;;:::o;30424:659::-;30573:11;30738:16;30731:5;30727:28;30718:37;;30898:16;30887:9;30883:32;30870:45;;31048:15;31037:9;31034:30;31026:5;31015:9;31012:20;31009:56;30999:66;;30424:659;;;;;:::o;37082:159::-;;;;;:::o;51650:311::-;51785:7;51805:16;14445:3;51831:19;:41;;51805:68;;14445:3;51899:31;51910:4;51916:2;51920:9;51899:10;:31::i;:::-;51891:40;;:62;;51884:69;;;51650:311;;;;;:::o;26542:450::-;26622:14;26790:16;26783:5;26779:28;26770:37;;26967:5;26953:11;26928:23;26924:41;26921:52;26914:5;26911:63;26901:73;;26542:450;;;;:::o;37906:158::-;;;;;:::o;67063:191::-;67137:16;67156:6;;;;;;;;;;;67137:25;;67182:8;67173:6;;:17;;;;;;;;;;;;;;;;;;67237:8;67206:40;;67227:8;67206:40;;;;;;;;;;;;67126:128;67063:191;:::o;38504:716::-;38667:4;38713:2;38688:45;;;38734:19;:17;:19::i;:::-;38755:4;38761:7;38770:5;38688:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38684:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38988:1;38971:6;:13;:18;38967:235;;;39017:40;;;;;;;;;;;;;;38967:235;39160:6;39154:13;39145:6;39141:2;39137:15;39130:38;38684:529;38857:54;;;38847:64;;;:6;:64;;;;38840:71;;;38504:716;;;;;;:::o;54730:723::-;54786:13;55016:1;55007:5;:10;55003:53;;;55034:10;;;;;;;;;;;;;;;;;;;;;55003:53;55066:12;55081:5;55066:20;;55097:14;55122:78;55137:1;55129:4;:9;55122:78;;55155:8;;;;;:::i;:::-;;;;55186:2;55178:10;;;;;:::i;:::-;;;55122:78;;;55210:19;55242:6;55232:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55210:39;;55260:154;55276:1;55267:5;:10;55260:154;;55304:1;55294:11;;;;;:::i;:::-;;;55371:2;55363:5;:10;;;;:::i;:::-;55350:2;:24;;;;:::i;:::-;55337:39;;55320:6;55327;55320:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;55400:2;55391:11;;;;;:::i;:::-;;;55260:154;;;55438:6;55424:21;;;;;54730:723;;;;:::o;46173:112::-;46250:27;46260:2;46264:8;46250:27;;;;;;;;;;;;:9;:27::i;:::-;46173:112;;:::o;64347:98::-;64400:7;64427:10;64420:17;;64347:98;:::o;51351:147::-;51488:6;51351:147;;;;;:::o;45400:689::-;45531:19;45537:2;45541:8;45531:5;:19::i;:::-;45610:1;45592:2;:14;;;:19;45588:483;;45632:11;45646:13;;45632:27;;45678:13;45700:8;45694:3;:14;45678:30;;45727:233;45758:62;45797:1;45801:2;45805:7;;;;;;45814:5;45758:30;:62::i;:::-;45753:167;;45856:40;;;;;;;;;;;;;;45753:167;45955:3;45947:5;:11;45727:233;;46042:3;46025:13;;:20;46021:34;;46047:8;;;46021:34;45613:458;;45588:483;45400:689;;;:::o;39682:2966::-;39755:20;39778:13;;39755:36;;39818:1;39806:8;:13;39802:44;;;39828:18;;;;;;;;;;;;;;39802:44;39859:61;39889:1;39893:2;39897:12;39911:8;39859:21;:61::i;:::-;40403:1;13403:2;40373:1;:26;;40372:32;40360:8;:45;40334:18;:22;40353:2;40334:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;40682:139;40719:2;40773:33;40796:1;40800:2;40804:1;40773:14;:33::i;:::-;40740:30;40761:8;40740:20;:30::i;:::-;:66;40682:18;:139::i;:::-;40648:17;:31;40666:12;40648:31;;;;;;;;;;;:173;;;;40838:16;40869:11;40898:8;40883:12;:23;40869:37;;41419:16;41415:2;41411:25;41399:37;;41791:12;41751:8;41710:1;41648:25;41589:1;41528;41501:335;42162:1;42148:12;42144:20;42102:346;42203:3;42194:7;42191:16;42102:346;;42421:7;42411:8;42408:1;42381:25;42378:1;42375;42370:59;42256:1;42247:7;42243:15;42232:26;;42102:346;;;42106:77;42493:1;42481:8;:13;42477:45;;;42503:19;;;;;;;;;;;;;;42477:45;42555:3;42539:13;:19;;;;40108:2462;;42580:60;42609:1;42613:2;42617:12;42631:8;42580:20;:60::i;:::-;39744:2904;39682:2966;;:::o;27094:324::-;27164:14;27397:1;27387:8;27384:15;27358:24;27354:46;27344:56;;27094:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:139::-;1214:5;1252:6;1239:20;1230:29;;1268:33;1295:5;1268:33;:::i;:::-;1168:139;;;;:::o;1313:143::-;1370:5;1401:6;1395:13;1386:22;;1417:33;1444:5;1417:33;:::i;:::-;1313:143;;;;:::o;1479:370::-;1550:5;1599:3;1592:4;1584:6;1580:17;1576:27;1566:122;;1607:79;;:::i;:::-;1566:122;1724:6;1711:20;1749:94;1839:3;1831:6;1824:4;1816:6;1812:17;1749:94;:::i;:::-;1740:103;;1556:293;1479:370;;;;:::o;1855:133::-;1898:5;1936:6;1923:20;1914:29;;1952:30;1976:5;1952:30;:::i;:::-;1855:133;;;;:::o;1994:137::-;2039:5;2077:6;2064:20;2055:29;;2093:32;2119:5;2093:32;:::i;:::-;1994:137;;;;:::o;2137:141::-;2193:5;2224:6;2218:13;2209:22;;2240:32;2266:5;2240:32;:::i;:::-;2137:141;;;;:::o;2297:338::-;2352:5;2401:3;2394:4;2386:6;2382:17;2378:27;2368:122;;2409:79;;:::i;:::-;2368:122;2526:6;2513:20;2551:78;2625:3;2617:6;2610:4;2602:6;2598:17;2551:78;:::i;:::-;2542:87;;2358:277;2297:338;;;;:::o;2641:161::-;2698:5;2736:6;2723:20;2714:29;;2752:44;2790:5;2752:44;:::i;:::-;2641:161;;;;:::o;2822:553::-;2880:8;2890:6;2940:3;2933:4;2925:6;2921:17;2917:27;2907:122;;2948:79;;:::i;:::-;2907:122;3061:6;3048:20;3038:30;;3091:18;3083:6;3080:30;3077:117;;;3113:79;;:::i;:::-;3077:117;3227:4;3219:6;3215:17;3203:29;;3281:3;3273:4;3265:6;3261:17;3251:8;3247:32;3244:41;3241:128;;;3288:79;;:::i;:::-;3241:128;2822:553;;;;;:::o;3381:139::-;3427:5;3465:6;3452:20;3443:29;;3481:33;3508:5;3481:33;:::i;:::-;3381:139;;;;:::o;3526:143::-;3583:5;3614:6;3608:13;3599:22;;3630:33;3657:5;3630:33;:::i;:::-;3526:143;;;;:::o;3675:329::-;3734:6;3783:2;3771:9;3762:7;3758:23;3754:32;3751:119;;;3789:79;;:::i;:::-;3751:119;3909:1;3934:53;3979:7;3970:6;3959:9;3955:22;3934:53;:::i;:::-;3924:63;;3880:117;3675:329;;;;:::o;4010:351::-;4080:6;4129:2;4117:9;4108:7;4104:23;4100:32;4097:119;;;4135:79;;:::i;:::-;4097:119;4255:1;4280:64;4336:7;4327:6;4316:9;4312:22;4280:64;:::i;:::-;4270:74;;4226:128;4010:351;;;;:::o;4367:474::-;4435:6;4443;4492:2;4480:9;4471:7;4467:23;4463:32;4460:119;;;4498:79;;:::i;:::-;4460:119;4618:1;4643:53;4688:7;4679:6;4668:9;4664:22;4643:53;:::i;:::-;4633:63;;4589:117;4745:2;4771:53;4816:7;4807:6;4796:9;4792:22;4771:53;:::i;:::-;4761:63;;4716:118;4367:474;;;;;:::o;4847:619::-;4924:6;4932;4940;4989:2;4977:9;4968:7;4964:23;4960:32;4957:119;;;4995:79;;:::i;:::-;4957:119;5115:1;5140:53;5185:7;5176:6;5165:9;5161:22;5140:53;:::i;:::-;5130:63;;5086:117;5242:2;5268:53;5313:7;5304:6;5293:9;5289:22;5268:53;:::i;:::-;5258:63;;5213:118;5370:2;5396:53;5441:7;5432:6;5421:9;5417:22;5396:53;:::i;:::-;5386:63;;5341:118;4847:619;;;;;:::o;5472:943::-;5567:6;5575;5583;5591;5640:3;5628:9;5619:7;5615:23;5611:33;5608:120;;;5647:79;;:::i;:::-;5608:120;5767:1;5792:53;5837:7;5828:6;5817:9;5813:22;5792:53;:::i;:::-;5782:63;;5738:117;5894:2;5920:53;5965:7;5956:6;5945:9;5941:22;5920:53;:::i;:::-;5910:63;;5865:118;6022:2;6048:53;6093:7;6084:6;6073:9;6069:22;6048:53;:::i;:::-;6038:63;;5993:118;6178:2;6167:9;6163:18;6150:32;6209:18;6201:6;6198:30;6195:117;;;6231:79;;:::i;:::-;6195:117;6336:62;6390:7;6381:6;6370:9;6366:22;6336:62;:::i;:::-;6326:72;;6121:287;5472:943;;;;;;;:::o;6421:468::-;6486:6;6494;6543:2;6531:9;6522:7;6518:23;6514:32;6511:119;;;6549:79;;:::i;:::-;6511:119;6669:1;6694:53;6739:7;6730:6;6719:9;6715:22;6694:53;:::i;:::-;6684:63;;6640:117;6796:2;6822:50;6864:7;6855:6;6844:9;6840:22;6822:50;:::i;:::-;6812:60;;6767:115;6421:468;;;;;:::o;6895:474::-;6963:6;6971;7020:2;7008:9;6999:7;6995:23;6991:32;6988:119;;;7026:79;;:::i;:::-;6988:119;7146:1;7171:53;7216:7;7207:6;7196:9;7192:22;7171:53;:::i;:::-;7161:63;;7117:117;7273:2;7299:53;7344:7;7335:6;7324:9;7320:22;7299:53;:::i;:::-;7289:63;;7244:118;6895:474;;;;;:::o;7375:539::-;7459:6;7508:2;7496:9;7487:7;7483:23;7479:32;7476:119;;;7514:79;;:::i;:::-;7476:119;7662:1;7651:9;7647:17;7634:31;7692:18;7684:6;7681:30;7678:117;;;7714:79;;:::i;:::-;7678:117;7819:78;7889:7;7880:6;7869:9;7865:22;7819:78;:::i;:::-;7809:88;;7605:302;7375:539;;;;:::o;7920:327::-;7978:6;8027:2;8015:9;8006:7;8002:23;7998:32;7995:119;;;8033:79;;:::i;:::-;7995:119;8153:1;8178:52;8222:7;8213:6;8202:9;8198:22;8178:52;:::i;:::-;8168:62;;8124:116;7920:327;;;;:::o;8253:349::-;8322:6;8371:2;8359:9;8350:7;8346:23;8342:32;8339:119;;;8377:79;;:::i;:::-;8339:119;8497:1;8522:63;8577:7;8568:6;8557:9;8553:22;8522:63;:::i;:::-;8512:73;;8468:127;8253:349;;;;:::o;8608:351::-;8678:6;8727:2;8715:9;8706:7;8702:23;8698:32;8695:119;;;8733:79;;:::i;:::-;8695:119;8853:1;8878:64;8934:7;8925:6;8914:9;8910:22;8878:64;:::i;:::-;8868:74;;8824:128;8608:351;;;;:::o;8965:529::-;9036:6;9044;9093:2;9081:9;9072:7;9068:23;9064:32;9061:119;;;9099:79;;:::i;:::-;9061:119;9247:1;9236:9;9232:17;9219:31;9277:18;9269:6;9266:30;9263:117;;;9299:79;;:::i;:::-;9263:117;9412:65;9469:7;9460:6;9449:9;9445:22;9412:65;:::i;:::-;9394:83;;;;9190:297;8965:529;;;;;:::o;9500:329::-;9559:6;9608:2;9596:9;9587:7;9583:23;9579:32;9576:119;;;9614:79;;:::i;:::-;9576:119;9734:1;9759:53;9804:7;9795:6;9784:9;9780:22;9759:53;:::i;:::-;9749:63;;9705:117;9500:329;;;;:::o;9835:351::-;9905:6;9954:2;9942:9;9933:7;9929:23;9925:32;9922:119;;;9960:79;;:::i;:::-;9922:119;10080:1;10105:64;10161:7;10152:6;10141:9;10137:22;10105:64;:::i;:::-;10095:74;;10051:128;9835:351;;;;:::o;10192:118::-;10279:24;10297:5;10279:24;:::i;:::-;10274:3;10267:37;10192:118;;:::o;10316:109::-;10397:21;10412:5;10397:21;:::i;:::-;10392:3;10385:34;10316:109;;:::o;10431:360::-;10517:3;10545:38;10577:5;10545:38;:::i;:::-;10599:70;10662:6;10657:3;10599:70;:::i;:::-;10592:77;;10678:52;10723:6;10718:3;10711:4;10704:5;10700:16;10678:52;:::i;:::-;10755:29;10777:6;10755:29;:::i;:::-;10750:3;10746:39;10739:46;;10521:270;10431:360;;;;:::o;10797:149::-;10893:46;10933:5;10893:46;:::i;:::-;10888:3;10881:59;10797:149;;:::o;10952:364::-;11040:3;11068:39;11101:5;11068:39;:::i;:::-;11123:71;11187:6;11182:3;11123:71;:::i;:::-;11116:78;;11203:52;11248:6;11243:3;11236:4;11229:5;11225:16;11203:52;:::i;:::-;11280:29;11302:6;11280:29;:::i;:::-;11275:3;11271:39;11264:46;;11044:272;10952:364;;;;:::o;11322:377::-;11428:3;11456:39;11489:5;11456:39;:::i;:::-;11511:89;11593:6;11588:3;11511:89;:::i;:::-;11504:96;;11609:52;11654:6;11649:3;11642:4;11635:5;11631:16;11609:52;:::i;:::-;11686:6;11681:3;11677:16;11670:23;;11432:267;11322:377;;;;:::o;11729:845::-;11832:3;11869:5;11863:12;11898:36;11924:9;11898:36;:::i;:::-;11950:89;12032:6;12027:3;11950:89;:::i;:::-;11943:96;;12070:1;12059:9;12055:17;12086:1;12081:137;;;;12232:1;12227:341;;;;12048:520;;12081:137;12165:4;12161:9;12150;12146:25;12141:3;12134:38;12201:6;12196:3;12192:16;12185:23;;12081:137;;12227:341;12294:38;12326:5;12294:38;:::i;:::-;12354:1;12368:154;12382:6;12379:1;12376:13;12368:154;;;12456:7;12450:14;12446:1;12441:3;12437:11;12430:35;12506:1;12497:7;12493:15;12482:26;;12404:4;12401:1;12397:12;12392:17;;12368:154;;;12551:6;12546:3;12542:16;12535:23;;12234:334;;12048:520;;11836:738;;11729:845;;;;:::o;12580:366::-;12722:3;12743:67;12807:2;12802:3;12743:67;:::i;:::-;12736:74;;12819:93;12908:3;12819:93;:::i;:::-;12937:2;12932:3;12928:12;12921:19;;12580:366;;;:::o;12952:::-;13094:3;13115:67;13179:2;13174:3;13115:67;:::i;:::-;13108:74;;13191:93;13280:3;13191:93;:::i;:::-;13309:2;13304:3;13300:12;13293:19;;12952:366;;;:::o;13324:::-;13466:3;13487:67;13551:2;13546:3;13487:67;:::i;:::-;13480:74;;13563:93;13652:3;13563:93;:::i;:::-;13681:2;13676:3;13672:12;13665:19;;13324:366;;;:::o;13696:::-;13838:3;13859:67;13923:2;13918:3;13859:67;:::i;:::-;13852:74;;13935:93;14024:3;13935:93;:::i;:::-;14053:2;14048:3;14044:12;14037:19;;13696:366;;;:::o;14068:::-;14210:3;14231:67;14295:2;14290:3;14231:67;:::i;:::-;14224:74;;14307:93;14396:3;14307:93;:::i;:::-;14425:2;14420:3;14416:12;14409:19;;14068:366;;;:::o;14440:::-;14582:3;14603:67;14667:2;14662:3;14603:67;:::i;:::-;14596:74;;14679:93;14768:3;14679:93;:::i;:::-;14797:2;14792:3;14788:12;14781:19;;14440:366;;;:::o;14812:::-;14954:3;14975:67;15039:2;15034:3;14975:67;:::i;:::-;14968:74;;15051:93;15140:3;15051:93;:::i;:::-;15169:2;15164:3;15160:12;15153:19;;14812:366;;;:::o;15184:::-;15326:3;15347:67;15411:2;15406:3;15347:67;:::i;:::-;15340:74;;15423:93;15512:3;15423:93;:::i;:::-;15541:2;15536:3;15532:12;15525:19;;15184:366;;;:::o;15556:::-;15698:3;15719:67;15783:2;15778:3;15719:67;:::i;:::-;15712:74;;15795:93;15884:3;15795:93;:::i;:::-;15913:2;15908:3;15904:12;15897:19;;15556:366;;;:::o;15928:::-;16070:3;16091:67;16155:2;16150:3;16091:67;:::i;:::-;16084:74;;16167:93;16256:3;16167:93;:::i;:::-;16285:2;16280:3;16276:12;16269:19;;15928:366;;;:::o;16300:398::-;16459:3;16480:83;16561:1;16556:3;16480:83;:::i;:::-;16473:90;;16572:93;16661:3;16572:93;:::i;:::-;16690:1;16685:3;16681:11;16674:18;;16300:398;;;:::o;16704:118::-;16791:24;16809:5;16791:24;:::i;:::-;16786:3;16779:37;16704:118;;:::o;16828:429::-;17005:3;17027:92;17115:3;17106:6;17027:92;:::i;:::-;17020:99;;17136:95;17227:3;17218:6;17136:95;:::i;:::-;17129:102;;17248:3;17241:10;;16828:429;;;;;:::o;17263:379::-;17447:3;17469:147;17612:3;17469:147;:::i;:::-;17462:154;;17633:3;17626:10;;17263:379;;;:::o;17648:222::-;17741:4;17779:2;17768:9;17764:18;17756:26;;17792:71;17860:1;17849:9;17845:17;17836:6;17792:71;:::i;:::-;17648:222;;;;:::o;17876:640::-;18071:4;18109:3;18098:9;18094:19;18086:27;;18123:71;18191:1;18180:9;18176:17;18167:6;18123:71;:::i;:::-;18204:72;18272:2;18261:9;18257:18;18248:6;18204:72;:::i;:::-;18286;18354:2;18343:9;18339:18;18330:6;18286:72;:::i;:::-;18405:9;18399:4;18395:20;18390:2;18379:9;18375:18;18368:48;18433:76;18504:4;18495:6;18433:76;:::i;:::-;18425:84;;17876:640;;;;;;;:::o;18522:210::-;18609:4;18647:2;18636:9;18632:18;18624:26;;18660:65;18722:1;18711:9;18707:17;18698:6;18660:65;:::i;:::-;18522:210;;;;:::o;18738:240::-;18840:4;18878:2;18867:9;18863:18;18855:26;;18891:80;18968:1;18957:9;18953:17;18944:6;18891:80;:::i;:::-;18738:240;;;;:::o;18984:313::-;19097:4;19135:2;19124:9;19120:18;19112:26;;19184:9;19178:4;19174:20;19170:1;19159:9;19155:17;19148:47;19212:78;19285:4;19276:6;19212:78;:::i;:::-;19204:86;;18984:313;;;;:::o;19303:419::-;19469:4;19507:2;19496:9;19492:18;19484:26;;19556:9;19550:4;19546:20;19542:1;19531:9;19527:17;19520:47;19584:131;19710:4;19584:131;:::i;:::-;19576:139;;19303:419;;;:::o;19728:::-;19894:4;19932:2;19921:9;19917:18;19909:26;;19981:9;19975:4;19971:20;19967:1;19956:9;19952:17;19945:47;20009:131;20135:4;20009:131;:::i;:::-;20001:139;;19728:419;;;:::o;20153:::-;20319:4;20357:2;20346:9;20342:18;20334:26;;20406:9;20400:4;20396:20;20392:1;20381:9;20377:17;20370:47;20434:131;20560:4;20434:131;:::i;:::-;20426:139;;20153:419;;;:::o;20578:::-;20744:4;20782:2;20771:9;20767:18;20759:26;;20831:9;20825:4;20821:20;20817:1;20806:9;20802:17;20795:47;20859:131;20985:4;20859:131;:::i;:::-;20851:139;;20578:419;;;:::o;21003:::-;21169:4;21207:2;21196:9;21192:18;21184:26;;21256:9;21250:4;21246:20;21242:1;21231:9;21227:17;21220:47;21284:131;21410:4;21284:131;:::i;:::-;21276:139;;21003:419;;;:::o;21428:::-;21594:4;21632:2;21621:9;21617:18;21609:26;;21681:9;21675:4;21671:20;21667:1;21656:9;21652:17;21645:47;21709:131;21835:4;21709:131;:::i;:::-;21701:139;;21428:419;;;:::o;21853:::-;22019:4;22057:2;22046:9;22042:18;22034:26;;22106:9;22100:4;22096:20;22092:1;22081:9;22077:17;22070:47;22134:131;22260:4;22134:131;:::i;:::-;22126:139;;21853:419;;;:::o;22278:::-;22444:4;22482:2;22471:9;22467:18;22459:26;;22531:9;22525:4;22521:20;22517:1;22506:9;22502:17;22495:47;22559:131;22685:4;22559:131;:::i;:::-;22551:139;;22278:419;;;:::o;22703:::-;22869:4;22907:2;22896:9;22892:18;22884:26;;22956:9;22950:4;22946:20;22942:1;22931:9;22927:17;22920:47;22984:131;23110:4;22984:131;:::i;:::-;22976:139;;22703:419;;;:::o;23128:::-;23294:4;23332:2;23321:9;23317:18;23309:26;;23381:9;23375:4;23371:20;23367:1;23356:9;23352:17;23345:47;23409:131;23535:4;23409:131;:::i;:::-;23401:139;;23128:419;;;:::o;23553:222::-;23646:4;23684:2;23673:9;23669:18;23661:26;;23697:71;23765:1;23754:9;23750:17;23741:6;23697:71;:::i;:::-;23553:222;;;;:::o;23781:129::-;23815:6;23842:20;;:::i;:::-;23832:30;;23871:33;23899:4;23891:6;23871:33;:::i;:::-;23781:129;;;:::o;23916:75::-;23949:6;23982:2;23976:9;23966:19;;23916:75;:::o;23997:311::-;24074:4;24164:18;24156:6;24153:30;24150:56;;;24186:18;;:::i;:::-;24150:56;24236:4;24228:6;24224:17;24216:25;;24296:4;24290;24286:15;24278:23;;23997:311;;;:::o;24314:307::-;24375:4;24465:18;24457:6;24454:30;24451:56;;;24487:18;;:::i;:::-;24451:56;24525:29;24547:6;24525:29;:::i;:::-;24517:37;;24609:4;24603;24599:15;24591:23;;24314:307;;;:::o;24627:141::-;24676:4;24699:3;24691:11;;24722:3;24719:1;24712:14;24756:4;24753:1;24743:18;24735:26;;24627:141;;;:::o;24774:98::-;24825:6;24859:5;24853:12;24843:22;;24774:98;;;:::o;24878:99::-;24930:6;24964:5;24958:12;24948:22;;24878:99;;;:::o;24983:168::-;25066:11;25100:6;25095:3;25088:19;25140:4;25135:3;25131:14;25116:29;;24983:168;;;;:::o;25157:147::-;25258:11;25295:3;25280:18;;25157:147;;;;:::o;25310:169::-;25394:11;25428:6;25423:3;25416:19;25468:4;25463:3;25459:14;25444:29;;25310:169;;;;:::o;25485:148::-;25587:11;25624:3;25609:18;;25485:148;;;;:::o;25639:305::-;25679:3;25698:20;25716:1;25698:20;:::i;:::-;25693:25;;25732:20;25750:1;25732:20;:::i;:::-;25727:25;;25886:1;25818:66;25814:74;25811:1;25808:81;25805:107;;;25892:18;;:::i;:::-;25805:107;25936:1;25933;25929:9;25922:16;;25639:305;;;;:::o;25950:185::-;25990:1;26007:20;26025:1;26007:20;:::i;:::-;26002:25;;26041:20;26059:1;26041:20;:::i;:::-;26036:25;;26080:1;26070:35;;26085:18;;:::i;:::-;26070:35;26127:1;26124;26120:9;26115:14;;25950:185;;;;:::o;26141:191::-;26181:4;26201:20;26219:1;26201:20;:::i;:::-;26196:25;;26235:20;26253:1;26235:20;:::i;:::-;26230:25;;26274:1;26271;26268:8;26265:34;;;26279:18;;:::i;:::-;26265:34;26324:1;26321;26317:9;26309:17;;26141:191;;;;:::o;26338:96::-;26375:7;26404:24;26422:5;26404:24;:::i;:::-;26393:35;;26338:96;;;:::o;26440:90::-;26474:7;26517:5;26510:13;26503:21;26492:32;;26440:90;;;:::o;26536:149::-;26572:7;26612:66;26605:5;26601:78;26590:89;;26536:149;;;:::o;26691:133::-;26739:7;26768:5;26757:16;;26774:44;26812:5;26774:44;:::i;:::-;26691:133;;;:::o;26830:126::-;26867:7;26907:42;26900:5;26896:54;26885:65;;26830:126;;;:::o;26962:77::-;26999:7;27028:5;27017:16;;26962:77;;;:::o;27045:133::-;27104:9;27137:35;27166:5;27137:35;:::i;:::-;27124:48;;27045:133;;;:::o;27184:154::-;27268:6;27263:3;27258;27245:30;27330:1;27321:6;27316:3;27312:16;27305:27;27184:154;;;:::o;27344:307::-;27412:1;27422:113;27436:6;27433:1;27430:13;27422:113;;;27521:1;27516:3;27512:11;27506:18;27502:1;27497:3;27493:11;27486:39;27458:2;27455:1;27451:10;27446:15;;27422:113;;;27553:6;27550:1;27547:13;27544:101;;;27633:1;27624:6;27619:3;27615:16;27608:27;27544:101;27393:258;27344:307;;;:::o;27657:320::-;27701:6;27738:1;27732:4;27728:12;27718:22;;27785:1;27779:4;27775:12;27806:18;27796:81;;27862:4;27854:6;27850:17;27840:27;;27796:81;27924:2;27916:6;27913:14;27893:18;27890:38;27887:84;;;27943:18;;:::i;:::-;27887:84;27708:269;27657:320;;;:::o;27983:281::-;28066:27;28088:4;28066:27;:::i;:::-;28058:6;28054:40;28196:6;28184:10;28181:22;28160:18;28148:10;28145:34;28142:62;28139:88;;;28207:18;;:::i;:::-;28139:88;28247:10;28243:2;28236:22;28026:238;27983:281;;:::o;28270:233::-;28309:3;28332:24;28350:5;28332:24;:::i;:::-;28323:33;;28378:66;28371:5;28368:77;28365:103;;;28448:18;;:::i;:::-;28365:103;28495:1;28488:5;28484:13;28477:20;;28270:233;;;:::o;28509:176::-;28541:1;28558:20;28576:1;28558:20;:::i;:::-;28553:25;;28592:20;28610:1;28592:20;:::i;:::-;28587:25;;28631:1;28621:35;;28636:18;;:::i;:::-;28621:35;28677:1;28674;28670:9;28665:14;;28509:176;;;;:::o;28691:180::-;28739:77;28736:1;28729:88;28836:4;28833:1;28826:15;28860:4;28857:1;28850:15;28877:180;28925:77;28922:1;28915:88;29022:4;29019:1;29012:15;29046:4;29043:1;29036:15;29063:180;29111:77;29108:1;29101:88;29208:4;29205:1;29198:15;29232:4;29229:1;29222:15;29249:180;29297:77;29294:1;29287:88;29394:4;29391:1;29384:15;29418:4;29415:1;29408:15;29435:180;29483:77;29480:1;29473:88;29580:4;29577:1;29570:15;29604:4;29601:1;29594:15;29621:180;29669:77;29666:1;29659:88;29766:4;29763:1;29756:15;29790:4;29787:1;29780:15;29807:117;29916:1;29913;29906:12;29930:117;30039:1;30036;30029:12;30053:117;30162:1;30159;30152:12;30176:117;30285:1;30282;30275:12;30299:117;30408:1;30405;30398:12;30422:117;30531:1;30528;30521:12;30545:102;30586:6;30637:2;30633:7;30628:2;30621:5;30617:14;30613:28;30603:38;;30545:102;;;:::o;30653:164::-;30793:16;30789:1;30781:6;30777:14;30770:40;30653:164;:::o;30823:225::-;30963:34;30959:1;30951:6;30947:14;30940:58;31032:8;31027:2;31019:6;31015:15;31008:33;30823:225;:::o;31054:226::-;31194:34;31190:1;31182:6;31178:14;31171:58;31263:9;31258:2;31250:6;31246:15;31239:34;31054:226;:::o;31286:223::-;31426:34;31422:1;31414:6;31410:14;31403:58;31495:6;31490:2;31482:6;31478:15;31471:31;31286:223;:::o;31515:166::-;31655:18;31651:1;31643:6;31639:14;31632:42;31515:166;:::o;31687:175::-;31827:27;31823:1;31815:6;31811:14;31804:51;31687:175;:::o;31868:169::-;32008:21;32004:1;31996:6;31992:14;31985:45;31868:169;:::o;32043:182::-;32183:34;32179:1;32171:6;32167:14;32160:58;32043:182;:::o;32231:225::-;32371:34;32367:1;32359:6;32355:14;32348:58;32440:8;32435:2;32427:6;32423:15;32416:33;32231:225;:::o;32462:226::-;32602:34;32598:1;32590:6;32586:14;32579:58;32671:9;32666:2;32658:6;32654:15;32647:34;32462:226;:::o;32694:114::-;;:::o;32814:116::-;32898:1;32891:5;32888:12;32878:46;;32904:18;;:::i;:::-;32878:46;32814:116;:::o;32936:122::-;33009:24;33027:5;33009:24;:::i;:::-;33002:5;32999:35;32989:63;;33048:1;33045;33038:12;32989:63;32936:122;:::o;33064:116::-;33134:21;33149:5;33134:21;:::i;:::-;33127:5;33124:32;33114:60;;33170:1;33167;33160:12;33114:60;33064:116;:::o;33186:120::-;33258:23;33275:5;33258:23;:::i;:::-;33251:5;33248:34;33238:62;;33296:1;33293;33286:12;33238:62;33186:120;:::o;33312:110::-;33396:1;33389:5;33386:12;33376:40;;33412:1;33409;33402:12;33376:40;33312:110;:::o;33428:122::-;33501:24;33519:5;33501:24;:::i;:::-;33494:5;33491:35;33481:63;;33540:1;33537;33530:12;33481:63;33428:122;:::o

Swarm Source

ipfs://30750995b4d18551317bba504fc16c660a2c6650d6be28b712c5590a6eae5ead
Loading...
Loading
Loading...
Loading
[ 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.