ETH Price: $2,449.29 (-2.46%)

Token

The Chinese (CHINESE)
 

Overview

Max Total Supply

207 CHINESE

Holders

186

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CHINESE
0xC242E5d7E1eE1Bf9273a52F0d1906b785a457a51
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheChinese

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-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: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

    /**
     * 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();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 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.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

    // The 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 tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [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 => address) private _tokenApprovals;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Returns the 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 {
        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;
    }

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

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

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

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

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

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

    /**
     * @dev 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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

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

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

    /**
     * @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))
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // `balance` 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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

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

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

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

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

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

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

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

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

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

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *   - `extraData` = `0`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *   - `extraData` = `<Extra data when token was burned>`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     *   - `extraData` = `<Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}



pragma solidity >=0.8.9 <0.9.0;

contract TheChinese is ERC721AQueryable, Ownable, ReentrancyGuard {
    using Strings for uint256;

    uint256 public maxSupply = 10000;
	uint256 public Ownermint = 5;
    uint256 public maxPerAddress = 100;
	uint256 public maxPerTX = 10;
    uint256 public cost = 0.003 ether;
	mapping(address => bool) public freeMinted; 

    bool public paused = true;

	string public uriPrefix = 'ipfs://QmYtzDL2WLuN1N8t5oYPBiLJ74QF9W7BQVbUCima7p4RG5/';
    string public uriSuffix = '.json';
	
  constructor() ERC721A("The Chinese", "CHINESE") {
      _safeMint(_msgSender(), Ownermint);
  }

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

  function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
  }

  function mint(uint256 _mintAmount) public payable nonReentrant callerIsUser{
        require(!paused, 'haimeikaishi!');
        require(numberMinted(msg.sender) + _mintAmount <= maxPerAddress, 'yijingzuiduola');
        require(_mintAmount > 0 && _mintAmount <= maxPerTX, 'cuowudeshuliang!');
        require(totalSupply() + _mintAmount <= (maxSupply), 'meiyouzaiduole!');
	if (freeMinted[_msgSender()]){
        require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
  }
    else{
		require(msg.value >= cost * _mintAmount - cost, 'Insufficient funds!');
        freeMinted[_msgSender()] = true;
  }

    _safeMint(_msgSender(), _mintAmount);
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  function setPaused() public onlyOwner {
    paused = !paused;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setmaxPerTX(uint256 _maxPerTX) public onlyOwner {
    maxPerTX = _maxPerTX;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }
 
  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","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":"Ownermint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTX","type":"uint256"}],"name":"setmaxPerTX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600a556005600b556064600c55600a600d55660aa87bee538000600e556001601060006101000a81548160ff0219169083151502179055506040518060600160405280603681526020016200491d6036913960119080519060200190620000709291906200076b565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060129080519060200190620000be9291906200076b565b50348015620000cc57600080fd5b506040518060400160405280600b81526020017f546865204368696e6573650000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4348494e455345000000000000000000000000000000000000000000000000008152508160029080519060200190620001519291906200076b565b5080600390805190602001906200016a9291906200076b565b506200017b620001d460201b60201c565b6000819055505050620001a362000197620001dd60201b60201c565b620001e560201b60201c565b6001600981905550620001ce620001bf620001dd60201b60201c565b600b54620002ab60201b60201c565b62000a6c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002cd828260405180602001604052806000815250620002d160201b60201c565b5050565b620002e383836200038260201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200037d57600080549050600083820390505b6200032c60008683806001019450866200058160201b60201c565b62000363576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620003115781600054146200037a57600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620003f0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156200042c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620004416000848385620006e360201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620004d083620004b26000866000620006e960201b60201c565b620004c3856200071960201b60201c565b176200072960201b60201c565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210620004f4578060008190555050506200057c60008483856200075460201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005af6200075a60201b60201c565b8786866040518563ffffffff1660e01b8152600401620005d394939291906200091f565b6020604051808303816000875af19250505080156200061257506040513d601f19601f820116820180604052508101906200060f9190620009d5565b60015b62000690573d806000811462000645576040519150601f19603f3d011682016040523d82523d6000602084013e6200064a565b606091505b5060008151141562000688576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e8620007088686846200076260201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b828054620007799062000a36565b90600052602060002090601f0160209004810192826200079d5760008555620007e9565b82601f10620007b857805160ff1916838001178555620007e9565b82800160010185558215620007e9579182015b82811115620007e8578251825591602001919060010190620007cb565b5b509050620007f89190620007fc565b5090565b5b8082111562000817576000816000905550600101620007fd565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000848826200081b565b9050919050565b6200085a816200083b565b82525050565b6000819050919050565b620008758162000860565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b83811015620008b75780820151818401526020810190506200089a565b83811115620008c7576000848401525b50505050565b6000601f19601f8301169050919050565b6000620008eb826200087b565b620008f7818562000886565b93506200090981856020860162000897565b6200091481620008cd565b840191505092915050565b60006080820190506200093660008301876200084f565b6200094560208301866200084f565b6200095460408301856200086a565b8181036060830152620009688184620008de565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620009af8162000978565b8114620009bb57600080fd5b50565b600081519050620009cf81620009a4565b92915050565b600060208284031215620009ee57620009ed62000973565b5b6000620009fe84828501620009be565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a4f57607f821691505b6020821081141562000a665762000a6562000a07565b5b50919050565b613ea18062000a7c6000396000f3fe6080604052600436106102255760003560e01c8063639814e011610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107fa578063d5abeb0114610837578063dc33e68114610862578063e985e9c51461089f578063f2fde38b146108dc57610225565b8063a0712d6814610724578063a22cb46514610740578063a40d36cd14610769578063b88d4fde14610794578063c23dc68f146107bd57610225565b80638462151c116100f25780638462151c1461062b5780638da5cb5b1461066857806395d89b411461069357806399a2557a146106be5780639b7f13d0146106fb57610225565b8063639814e01461058357806370a08231146105ae578063715018a6146105eb5780637ec4a6591461060257610225565b806337a66d85116101b15780635503a0e8116101755780635503a0e8146104885780635bbb2177146104b35780635c975abb146104f057806362b99ad41461051b5780636352211e1461054657610225565b806337a66d85146103cb578063389fcf06146103e25780633ccfd60b1461041f57806342842e0e1461043657806344a0d68a1461045f57610225565b806313faede6116101f857806313faede6146102f857806316ba10e01461032357806318160ddd1461034c57806323b872dd1461037757806331448007146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612b0c565b610905565b60405161025e9190612b54565b60405180910390f35b34801561027357600080fd5b5061027c610997565b6040516102899190612c08565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612c60565b610a29565b6040516102c69190612cce565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612d15565b610aa5565b005b34801561030457600080fd5b5061030d610be6565b60405161031a9190612d64565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612eb4565b610bec565b005b34801561035857600080fd5b50610361610c0e565b60405161036e9190612d64565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190612efd565b610c25565b005b3480156103ac57600080fd5b506103b5610f4a565b6040516103c29190612d64565b60405180910390f35b3480156103d757600080fd5b506103e0610f50565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612f50565b610f84565b6040516104169190612b54565b60405180910390f35b34801561042b57600080fd5b50610434610fa4565b005b34801561044257600080fd5b5061045d60048036038101906104589190612efd565b610ff5565b005b34801561046b57600080fd5b5061048660048036038101906104819190612c60565b611015565b005b34801561049457600080fd5b5061049d611027565b6040516104aa9190612c08565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190613045565b6110b5565b6040516104e791906131f1565b60405180910390f35b3480156104fc57600080fd5b50610505611176565b6040516105129190612b54565b60405180910390f35b34801561052757600080fd5b50610530611189565b60405161053d9190612c08565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612c60565b611217565b60405161057a9190612cce565b60405180910390f35b34801561058f57600080fd5b50610598611229565b6040516105a59190612d64565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190612f50565b61122f565b6040516105e29190612d64565b60405180910390f35b3480156105f757600080fd5b506106006112e8565b005b34801561060e57600080fd5b5061062960048036038101906106249190612eb4565b6112fc565b005b34801561063757600080fd5b50610652600480360381019061064d9190612f50565b61131e565b60405161065f91906132d1565b60405180910390f35b34801561067457600080fd5b5061067d611468565b60405161068a9190612cce565b60405180910390f35b34801561069f57600080fd5b506106a8611492565b6040516106b59190612c08565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e091906132f3565b611524565b6040516106f291906132d1565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d9190612c60565b611738565b005b61073e60048036038101906107399190612c60565b61174a565b005b34801561074c57600080fd5b5061076760048036038101906107629190613372565b611add565b005b34801561077557600080fd5b5061077e611c55565b60405161078b9190612d64565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b69190613453565b611c5b565b005b3480156107c957600080fd5b506107e460048036038101906107df9190612c60565b611cce565b6040516107f1919061352b565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190612c60565b611d38565b60405161082e9190612c08565b60405180910390f35b34801561084357600080fd5b5061084c611de2565b6040516108599190612d64565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190612f50565b611de8565b6040516108969190612d64565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c19190613546565b611dfa565b6040516108d39190612b54565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe9190612f50565b611e8e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109905750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109a6906135b5565b80601f01602080910402602001604051908101604052809291908181526020018280546109d2906135b5565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b5050505050905090565b6000610a3482611f12565b610a6a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab082611217565b90508073ffffffffffffffffffffffffffffffffffffffff16610ad1611f71565b73ffffffffffffffffffffffffffffffffffffffff1614610b3457610afd81610af8611f71565b611dfa565b610b33576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e5481565b610bf4611f79565b8060129080519060200190610c0a9291906129ae565b5050565b6000610c18611ff7565b6001546000540303905090565b6000610c3082612000565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c97576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ca3846120ce565b91509150610cb98187610cb4611f71565b6120f0565b610d0557610cce86610cc9611f71565b611dfa565b610d04576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d6c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d798686866001612134565b8015610d8457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5285610e2e88888761213a565b7c020000000000000000000000000000000000000000000000000000000017612162565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610eda576000600185019050600060046000838152602001908152602001600020541415610ed8576000548114610ed7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f42868686600161218d565b505050505050565b600b5481565b610f58611f79565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600f6020528060005260406000206000915054906101000a900460ff1681565b610fac611f79565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ff2573d6000803e3d6000fd5b50565b61101083838360405180602001604052806000815250611c5b565b505050565b61101d611f79565b80600e8190555050565b60128054611034906135b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611060906135b5565b80156110ad5780601f10611082576101008083540402835291602001916110ad565b820191906000526020600020905b81548152906001019060200180831161109057829003601f168201915b505050505081565b606060008251905060008167ffffffffffffffff8111156110d9576110d8612d89565b5b60405190808252806020026020018201604052801561111257816020015b6110ff612a34565b8152602001906001900390816110f75790505b50905060005b82811461116b57611142858281518110611135576111346135e7565b5b6020026020010151611cce565b828281518110611155576111546135e7565b5b6020026020010181905250806001019050611118565b508092505050919050565b601060009054906101000a900460ff1681565b60118054611196906135b5565b80601f01602080910402602001604051908101604052809291908181526020018280546111c2906135b5565b801561120f5780601f106111e45761010080835404028352916020019161120f565b820191906000526020600020905b8154815290600101906020018083116111f257829003601f168201915b505050505081565b600061122282612000565b9050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611297576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112f0611f79565b6112fa6000612193565b565b611304611f79565b806011908051906020019061131a9291906129ae565b5050565b6060600080600061132e8561122f565b905060008167ffffffffffffffff81111561134c5761134b612d89565b5b60405190808252806020026020018201604052801561137a5781602001602082028036833780820191505090505b509050611385612a34565b600061138f611ff7565b90505b83861461145a576113a281612259565b91508160400151156113b35761144f565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146113f357816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561144e5780838780600101985081518110611441576114406135e7565b5b6020026020010181815250505b5b806001019050611392565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114a1906135b5565b80601f01602080910402602001604051908101604052809291908181526020018280546114cd906135b5565b801561151a5780601f106114ef5761010080835404028352916020019161151a565b820191906000526020600020905b8154815290600101906020018083116114fd57829003601f168201915b5050505050905090565b606081831061155f576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061156a612284565b9050611574611ff7565b85101561158657611583611ff7565b94505b80841115611592578093505b600061159d8761122f565b9050848610156115c05760008686039050818110156115ba578091505b506115c5565b600090505b60008167ffffffffffffffff8111156115e1576115e0612d89565b5b60405190808252806020026020018201604052801561160f5781602001602082028036833780820191505090505b50905060008214156116275780945050505050611731565b600061163288611cce565b90506000816040015161164757816000015190505b60008990505b88811415801561165d5750848714155b156117235761166b81612259565b925082604001511561167c57611718565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146116bc57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611717578084888060010199508151811061170a576117096135e7565b5b6020026020010181815250505b5b80600101905061164d565b508583528296505050505050505b9392505050565b611740611f79565b80600d8190555050565b60026009541415611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790613662565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd906136ce565b60405180910390fd5b601060009054906101000a900460ff1615611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d9061373a565b60405180910390fd5b600c548161186333611de8565b61186d9190613789565b11156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a59061382b565b60405180910390fd5b6000811180156118c05750600d548111155b6118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f690613897565b60405180910390fd5b600a548161190b610c0e565b6119159190613789565b1115611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90613903565b60405180910390fd5b600f600061196261228d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a045780600e546119bd9190613923565b3410156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906139c9565b60405180910390fd5b611ac1565b600e5481600e54611a159190613923565b611a1f91906139e9565b341015611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a58906139c9565b60405180910390fd5b6001600f6000611a6f61228d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b611ad2611acc61228d565b82612295565b600160098190555050565b611ae5611f71565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b4a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b57611f71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c04611f71565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c499190612b54565b60405180910390a35050565b600d5481565b611c66848484610c25565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cc857611c91848484846122b3565b611cc7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611cd6612a34565b611cde612a34565b611ce6611ff7565b831080611cfa5750611cf6612284565b8310155b15611d085780915050611d33565b611d1183612259565b9050806040015115611d265780915050611d33565b611d2f83612404565b9150505b919050565b6060611d4382611f12565b611d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7990613a8f565b60405180910390fd5b6000611d8c612424565b90506000815111611dac5760405180602001604052806000815250611dda565b80611db6846124b6565b6012604051602001611dca93929190613b7f565b6040516020818303038152906040525b915050919050565b600a5481565b6000611df382612617565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e96611f79565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90613c22565b60405180910390fd5b611f0f81612193565b50565b600081611f1d611ff7565b11158015611f2c575060005482105b8015611f6a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611f8161228d565b73ffffffffffffffffffffffffffffffffffffffff16611f9f611468565b73ffffffffffffffffffffffffffffffffffffffff1614611ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fec90613c8e565b60405180910390fd5b565b60006001905090565b6000808290508061200f611ff7565b11612097576000548110156120965760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612094575b600081141561208a57600460008360019003935083815260200190815260200160002054905061205f565b80925050506120c9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861215186868461266e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612261612a34565b61227d6004600084815260200190815260200160002054612677565b9050919050565b60008054905090565b600033905090565b6122af82826040518060200160405280600081525061272d565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122d9611f71565b8786866040518563ffffffff1660e01b81526004016122fb9493929190613d03565b6020604051808303816000875af192505050801561233757506040513d601f19601f820116820180604052508101906123349190613d64565b60015b6123b1573d8060008114612367576040519150601f19603f3d011682016040523d82523d6000602084013e61236c565b606091505b506000815114156123a9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61240c612a34565b61241d61241883612000565b612677565b9050919050565b606060118054612433906135b5565b80601f016020809104026020016040519081016040528092919081815260200182805461245f906135b5565b80156124ac5780601f10612481576101008083540402835291602001916124ac565b820191906000526020600020905b81548152906001019060200180831161248f57829003601f168201915b5050505050905090565b606060008214156124fe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612612565b600082905060005b6000821461253057808061251990613d91565b915050600a826125299190613e09565b9150612506565b60008167ffffffffffffffff81111561254c5761254b612d89565b5b6040519080825280601f01601f19166020018201604052801561257e5781602001600182028036833780820191505090505b5090505b6000851461260b5760018261259791906139e9565b9150600a856125a69190613e3a565b60306125b29190613789565b60f81b8183815181106125c8576125c76135e7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126049190613e09565b9450612582565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b61267f612a34565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b61273783836127ca565b60008373ffffffffffffffffffffffffffffffffffffffff163b146127c557600080549050600083820390505b61277760008683806001019450866122b3565b6127ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106127645781600054146127c257600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612837576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612872576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61287f6000848385612134565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128f6836128e7600086600061213a565b6128f08561299e565b17612162565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061291a57806000819055505050612999600084838561218d565b505050565b60006001821460e11b9050919050565b8280546129ba906135b5565b90600052602060002090601f0160209004810192826129dc5760008555612a23565b82601f106129f557805160ff1916838001178555612a23565b82800160010185558215612a23579182015b82811115612a22578251825591602001919060010190612a07565b5b509050612a309190612a83565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612a9c576000816000905550600101612a84565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ae981612ab4565b8114612af457600080fd5b50565b600081359050612b0681612ae0565b92915050565b600060208284031215612b2257612b21612aaa565b5b6000612b3084828501612af7565b91505092915050565b60008115159050919050565b612b4e81612b39565b82525050565b6000602082019050612b696000830184612b45565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ba9578082015181840152602081019050612b8e565b83811115612bb8576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bda82612b6f565b612be48185612b7a565b9350612bf4818560208601612b8b565b612bfd81612bbe565b840191505092915050565b60006020820190508181036000830152612c228184612bcf565b905092915050565b6000819050919050565b612c3d81612c2a565b8114612c4857600080fd5b50565b600081359050612c5a81612c34565b92915050565b600060208284031215612c7657612c75612aaa565b5b6000612c8484828501612c4b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cb882612c8d565b9050919050565b612cc881612cad565b82525050565b6000602082019050612ce36000830184612cbf565b92915050565b612cf281612cad565b8114612cfd57600080fd5b50565b600081359050612d0f81612ce9565b92915050565b60008060408385031215612d2c57612d2b612aaa565b5b6000612d3a85828601612d00565b9250506020612d4b85828601612c4b565b9150509250929050565b612d5e81612c2a565b82525050565b6000602082019050612d796000830184612d55565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612dc182612bbe565b810181811067ffffffffffffffff82111715612de057612ddf612d89565b5b80604052505050565b6000612df3612aa0565b9050612dff8282612db8565b919050565b600067ffffffffffffffff821115612e1f57612e1e612d89565b5b612e2882612bbe565b9050602081019050919050565b82818337600083830152505050565b6000612e57612e5284612e04565b612de9565b905082815260208101848484011115612e7357612e72612d84565b5b612e7e848285612e35565b509392505050565b600082601f830112612e9b57612e9a612d7f565b5b8135612eab848260208601612e44565b91505092915050565b600060208284031215612eca57612ec9612aaa565b5b600082013567ffffffffffffffff811115612ee857612ee7612aaf565b5b612ef484828501612e86565b91505092915050565b600080600060608486031215612f1657612f15612aaa565b5b6000612f2486828701612d00565b9350506020612f3586828701612d00565b9250506040612f4686828701612c4b565b9150509250925092565b600060208284031215612f6657612f65612aaa565b5b6000612f7484828501612d00565b91505092915050565b600067ffffffffffffffff821115612f9857612f97612d89565b5b602082029050602081019050919050565b600080fd5b6000612fc1612fbc84612f7d565b612de9565b90508083825260208201905060208402830185811115612fe457612fe3612fa9565b5b835b8181101561300d5780612ff98882612c4b565b845260208401935050602081019050612fe6565b5050509392505050565b600082601f83011261302c5761302b612d7f565b5b813561303c848260208601612fae565b91505092915050565b60006020828403121561305b5761305a612aaa565b5b600082013567ffffffffffffffff81111561307957613078612aaf565b5b61308584828501613017565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130c381612cad565b82525050565b600067ffffffffffffffff82169050919050565b6130e6816130c9565b82525050565b6130f581612b39565b82525050565b600062ffffff82169050919050565b613113816130fb565b82525050565b60808201600082015161312f60008501826130ba565b50602082015161314260208501826130dd565b50604082015161315560408501826130ec565b506060820151613168606085018261310a565b50505050565b600061317a8383613119565b60808301905092915050565b6000602082019050919050565b600061319e8261308e565b6131a88185613099565b93506131b3836130aa565b8060005b838110156131e45781516131cb888261316e565b97506131d683613186565b9250506001810190506131b7565b5085935050505092915050565b6000602082019050818103600083015261320b8184613193565b905092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61324881612c2a565b82525050565b600061325a838361323f565b60208301905092915050565b6000602082019050919050565b600061327e82613213565b613288818561321e565b93506132938361322f565b8060005b838110156132c45781516132ab888261324e565b97506132b683613266565b925050600181019050613297565b5085935050505092915050565b600060208201905081810360008301526132eb8184613273565b905092915050565b60008060006060848603121561330c5761330b612aaa565b5b600061331a86828701612d00565b935050602061332b86828701612c4b565b925050604061333c86828701612c4b565b9150509250925092565b61334f81612b39565b811461335a57600080fd5b50565b60008135905061336c81613346565b92915050565b6000806040838503121561338957613388612aaa565b5b600061339785828601612d00565b92505060206133a88582860161335d565b9150509250929050565b600067ffffffffffffffff8211156133cd576133cc612d89565b5b6133d682612bbe565b9050602081019050919050565b60006133f66133f1846133b2565b612de9565b90508281526020810184848401111561341257613411612d84565b5b61341d848285612e35565b509392505050565b600082601f83011261343a57613439612d7f565b5b813561344a8482602086016133e3565b91505092915050565b6000806000806080858703121561346d5761346c612aaa565b5b600061347b87828801612d00565b945050602061348c87828801612d00565b935050604061349d87828801612c4b565b925050606085013567ffffffffffffffff8111156134be576134bd612aaf565b5b6134ca87828801613425565b91505092959194509250565b6080820160008201516134ec60008501826130ba565b5060208201516134ff60208501826130dd565b50604082015161351260408501826130ec565b506060820151613525606085018261310a565b50505050565b600060808201905061354060008301846134d6565b92915050565b6000806040838503121561355d5761355c612aaa565b5b600061356b85828601612d00565b925050602061357c85828601612d00565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135cd57607f821691505b602082108114156135e1576135e0613586565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061364c601f83612b7a565b915061365782613616565b602082019050919050565b6000602082019050818103600083015261367b8161363f565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006136b8601e83612b7a565b91506136c382613682565b602082019050919050565b600060208201905081810360008301526136e7816136ab565b9050919050565b7f6861696d65696b61697368692100000000000000000000000000000000000000600082015250565b6000613724600d83612b7a565b915061372f826136ee565b602082019050919050565b6000602082019050818103600083015261375381613717565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061379482612c2a565b915061379f83612c2a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137d4576137d361375a565b5b828201905092915050565b7f79696a696e677a756964756f6c61000000000000000000000000000000000000600082015250565b6000613815600e83612b7a565b9150613820826137df565b602082019050919050565b6000602082019050818103600083015261384481613808565b9050919050565b7f63756f777564657368756c69616e672100000000000000000000000000000000600082015250565b6000613881601083612b7a565b915061388c8261384b565b602082019050919050565b600060208201905081810360008301526138b081613874565b9050919050565b7f6d6569796f757a616964756f6c65210000000000000000000000000000000000600082015250565b60006138ed600f83612b7a565b91506138f8826138b7565b602082019050919050565b6000602082019050818103600083015261391c816138e0565b9050919050565b600061392e82612c2a565b915061393983612c2a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139725761397161375a565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006139b3601383612b7a565b91506139be8261397d565b602082019050919050565b600060208201905081810360008301526139e2816139a6565b9050919050565b60006139f482612c2a565b91506139ff83612c2a565b925082821015613a1257613a1161375a565b5b828203905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a79602f83612b7a565b9150613a8482613a1d565b604082019050919050565b60006020820190508181036000830152613aa881613a6c565b9050919050565b600081905092915050565b6000613ac582612b6f565b613acf8185613aaf565b9350613adf818560208601612b8b565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613b0d816135b5565b613b178186613aaf565b94506001821660008114613b325760018114613b4357613b76565b60ff19831686528186019350613b76565b613b4c85613aeb565b60005b83811015613b6e57815481890152600182019150602081019050613b4f565b838801955050505b50505092915050565b6000613b8b8286613aba565b9150613b978285613aba565b9150613ba38284613b00565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c0c602683612b7a565b9150613c1782613bb0565b604082019050919050565b60006020820190508181036000830152613c3b81613bff565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c78602083612b7a565b9150613c8382613c42565b602082019050919050565b60006020820190508181036000830152613ca781613c6b565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cd582613cae565b613cdf8185613cb9565b9350613cef818560208601612b8b565b613cf881612bbe565b840191505092915050565b6000608082019050613d186000830187612cbf565b613d256020830186612cbf565b613d326040830185612d55565b8181036060830152613d448184613cca565b905095945050505050565b600081519050613d5e81612ae0565b92915050565b600060208284031215613d7a57613d79612aaa565b5b6000613d8884828501613d4f565b91505092915050565b6000613d9c82612c2a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dcf57613dce61375a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e1482612c2a565b9150613e1f83612c2a565b925082613e2f57613e2e613dda565b5b828204905092915050565b6000613e4582612c2a565b9150613e5083612c2a565b925082613e6057613e5f613dda565b5b82820690509291505056fea26469706673582212205fec03b87bf83e2537b2179295fa761e076ab24bddc67bfcec3b119e1b05836c64736f6c634300080a0033697066733a2f2f516d59747a444c32574c754e314e3874356f595042694c4a37345146395737425156625543696d613770345247352f

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063639814e011610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146107fa578063d5abeb0114610837578063dc33e68114610862578063e985e9c51461089f578063f2fde38b146108dc57610225565b8063a0712d6814610724578063a22cb46514610740578063a40d36cd14610769578063b88d4fde14610794578063c23dc68f146107bd57610225565b80638462151c116100f25780638462151c1461062b5780638da5cb5b1461066857806395d89b411461069357806399a2557a146106be5780639b7f13d0146106fb57610225565b8063639814e01461058357806370a08231146105ae578063715018a6146105eb5780637ec4a6591461060257610225565b806337a66d85116101b15780635503a0e8116101755780635503a0e8146104885780635bbb2177146104b35780635c975abb146104f057806362b99ad41461051b5780636352211e1461054657610225565b806337a66d85146103cb578063389fcf06146103e25780633ccfd60b1461041f57806342842e0e1461043657806344a0d68a1461045f57610225565b806313faede6116101f857806313faede6146102f857806316ba10e01461032357806318160ddd1461034c57806323b872dd1461037757806331448007146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612b0c565b610905565b60405161025e9190612b54565b60405180910390f35b34801561027357600080fd5b5061027c610997565b6040516102899190612c08565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612c60565b610a29565b6040516102c69190612cce565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612d15565b610aa5565b005b34801561030457600080fd5b5061030d610be6565b60405161031a9190612d64565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612eb4565b610bec565b005b34801561035857600080fd5b50610361610c0e565b60405161036e9190612d64565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190612efd565b610c25565b005b3480156103ac57600080fd5b506103b5610f4a565b6040516103c29190612d64565b60405180910390f35b3480156103d757600080fd5b506103e0610f50565b005b3480156103ee57600080fd5b5061040960048036038101906104049190612f50565b610f84565b6040516104169190612b54565b60405180910390f35b34801561042b57600080fd5b50610434610fa4565b005b34801561044257600080fd5b5061045d60048036038101906104589190612efd565b610ff5565b005b34801561046b57600080fd5b5061048660048036038101906104819190612c60565b611015565b005b34801561049457600080fd5b5061049d611027565b6040516104aa9190612c08565b60405180910390f35b3480156104bf57600080fd5b506104da60048036038101906104d59190613045565b6110b5565b6040516104e791906131f1565b60405180910390f35b3480156104fc57600080fd5b50610505611176565b6040516105129190612b54565b60405180910390f35b34801561052757600080fd5b50610530611189565b60405161053d9190612c08565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612c60565b611217565b60405161057a9190612cce565b60405180910390f35b34801561058f57600080fd5b50610598611229565b6040516105a59190612d64565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190612f50565b61122f565b6040516105e29190612d64565b60405180910390f35b3480156105f757600080fd5b506106006112e8565b005b34801561060e57600080fd5b5061062960048036038101906106249190612eb4565b6112fc565b005b34801561063757600080fd5b50610652600480360381019061064d9190612f50565b61131e565b60405161065f91906132d1565b60405180910390f35b34801561067457600080fd5b5061067d611468565b60405161068a9190612cce565b60405180910390f35b34801561069f57600080fd5b506106a8611492565b6040516106b59190612c08565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e091906132f3565b611524565b6040516106f291906132d1565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d9190612c60565b611738565b005b61073e60048036038101906107399190612c60565b61174a565b005b34801561074c57600080fd5b5061076760048036038101906107629190613372565b611add565b005b34801561077557600080fd5b5061077e611c55565b60405161078b9190612d64565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b69190613453565b611c5b565b005b3480156107c957600080fd5b506107e460048036038101906107df9190612c60565b611cce565b6040516107f1919061352b565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190612c60565b611d38565b60405161082e9190612c08565b60405180910390f35b34801561084357600080fd5b5061084c611de2565b6040516108599190612d64565b60405180910390f35b34801561086e57600080fd5b5061088960048036038101906108849190612f50565b611de8565b6040516108969190612d64565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c19190613546565b611dfa565b6040516108d39190612b54565b60405180910390f35b3480156108e857600080fd5b5061090360048036038101906108fe9190612f50565b611e8e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109905750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109a6906135b5565b80601f01602080910402602001604051908101604052809291908181526020018280546109d2906135b5565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b5050505050905090565b6000610a3482611f12565b610a6a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ab082611217565b90508073ffffffffffffffffffffffffffffffffffffffff16610ad1611f71565b73ffffffffffffffffffffffffffffffffffffffff1614610b3457610afd81610af8611f71565b611dfa565b610b33576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e5481565b610bf4611f79565b8060129080519060200190610c0a9291906129ae565b5050565b6000610c18611ff7565b6001546000540303905090565b6000610c3082612000565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c97576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ca3846120ce565b91509150610cb98187610cb4611f71565b6120f0565b610d0557610cce86610cc9611f71565b611dfa565b610d04576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d6c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d798686866001612134565b8015610d8457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5285610e2e88888761213a565b7c020000000000000000000000000000000000000000000000000000000017612162565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610eda576000600185019050600060046000838152602001908152602001600020541415610ed8576000548114610ed7578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f42868686600161218d565b505050505050565b600b5481565b610f58611f79565b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600f6020528060005260406000206000915054906101000a900460ff1681565b610fac611f79565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ff2573d6000803e3d6000fd5b50565b61101083838360405180602001604052806000815250611c5b565b505050565b61101d611f79565b80600e8190555050565b60128054611034906135b5565b80601f0160208091040260200160405190810160405280929190818152602001828054611060906135b5565b80156110ad5780601f10611082576101008083540402835291602001916110ad565b820191906000526020600020905b81548152906001019060200180831161109057829003601f168201915b505050505081565b606060008251905060008167ffffffffffffffff8111156110d9576110d8612d89565b5b60405190808252806020026020018201604052801561111257816020015b6110ff612a34565b8152602001906001900390816110f75790505b50905060005b82811461116b57611142858281518110611135576111346135e7565b5b6020026020010151611cce565b828281518110611155576111546135e7565b5b6020026020010181905250806001019050611118565b508092505050919050565b601060009054906101000a900460ff1681565b60118054611196906135b5565b80601f01602080910402602001604051908101604052809291908181526020018280546111c2906135b5565b801561120f5780601f106111e45761010080835404028352916020019161120f565b820191906000526020600020905b8154815290600101906020018083116111f257829003601f168201915b505050505081565b600061122282612000565b9050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611297576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112f0611f79565b6112fa6000612193565b565b611304611f79565b806011908051906020019061131a9291906129ae565b5050565b6060600080600061132e8561122f565b905060008167ffffffffffffffff81111561134c5761134b612d89565b5b60405190808252806020026020018201604052801561137a5781602001602082028036833780820191505090505b509050611385612a34565b600061138f611ff7565b90505b83861461145a576113a281612259565b91508160400151156113b35761144f565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146113f357816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561144e5780838780600101985081518110611441576114406135e7565b5b6020026020010181815250505b5b806001019050611392565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114a1906135b5565b80601f01602080910402602001604051908101604052809291908181526020018280546114cd906135b5565b801561151a5780601f106114ef5761010080835404028352916020019161151a565b820191906000526020600020905b8154815290600101906020018083116114fd57829003601f168201915b5050505050905090565b606081831061155f576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061156a612284565b9050611574611ff7565b85101561158657611583611ff7565b94505b80841115611592578093505b600061159d8761122f565b9050848610156115c05760008686039050818110156115ba578091505b506115c5565b600090505b60008167ffffffffffffffff8111156115e1576115e0612d89565b5b60405190808252806020026020018201604052801561160f5781602001602082028036833780820191505090505b50905060008214156116275780945050505050611731565b600061163288611cce565b90506000816040015161164757816000015190505b60008990505b88811415801561165d5750848714155b156117235761166b81612259565b925082604001511561167c57611718565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146116bc57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611717578084888060010199508151811061170a576117096135e7565b5b6020026020010181815250505b5b80600101905061164d565b508583528296505050505050505b9392505050565b611740611f79565b80600d8190555050565b60026009541415611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790613662565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611806576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fd906136ce565b60405180910390fd5b601060009054906101000a900460ff1615611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d9061373a565b60405180910390fd5b600c548161186333611de8565b61186d9190613789565b11156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a59061382b565b60405180910390fd5b6000811180156118c05750600d548111155b6118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f690613897565b60405180910390fd5b600a548161190b610c0e565b6119159190613789565b1115611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90613903565b60405180910390fd5b600f600061196261228d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a045780600e546119bd9190613923565b3410156119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f6906139c9565b60405180910390fd5b611ac1565b600e5481600e54611a159190613923565b611a1f91906139e9565b341015611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a58906139c9565b60405180910390fd5b6001600f6000611a6f61228d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b611ad2611acc61228d565b82612295565b600160098190555050565b611ae5611f71565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b4a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b57611f71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c04611f71565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c499190612b54565b60405180910390a35050565b600d5481565b611c66848484610c25565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611cc857611c91848484846122b3565b611cc7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611cd6612a34565b611cde612a34565b611ce6611ff7565b831080611cfa5750611cf6612284565b8310155b15611d085780915050611d33565b611d1183612259565b9050806040015115611d265780915050611d33565b611d2f83612404565b9150505b919050565b6060611d4382611f12565b611d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7990613a8f565b60405180910390fd5b6000611d8c612424565b90506000815111611dac5760405180602001604052806000815250611dda565b80611db6846124b6565b6012604051602001611dca93929190613b7f565b6040516020818303038152906040525b915050919050565b600a5481565b6000611df382612617565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e96611f79565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efd90613c22565b60405180910390fd5b611f0f81612193565b50565b600081611f1d611ff7565b11158015611f2c575060005482105b8015611f6a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611f8161228d565b73ffffffffffffffffffffffffffffffffffffffff16611f9f611468565b73ffffffffffffffffffffffffffffffffffffffff1614611ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fec90613c8e565b60405180910390fd5b565b60006001905090565b6000808290508061200f611ff7565b11612097576000548110156120965760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612094575b600081141561208a57600460008360019003935083815260200190815260200160002054905061205f565b80925050506120c9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861215186868461266e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612261612a34565b61227d6004600084815260200190815260200160002054612677565b9050919050565b60008054905090565b600033905090565b6122af82826040518060200160405280600081525061272d565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122d9611f71565b8786866040518563ffffffff1660e01b81526004016122fb9493929190613d03565b6020604051808303816000875af192505050801561233757506040513d601f19601f820116820180604052508101906123349190613d64565b60015b6123b1573d8060008114612367576040519150601f19603f3d011682016040523d82523d6000602084013e61236c565b606091505b506000815114156123a9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61240c612a34565b61241d61241883612000565b612677565b9050919050565b606060118054612433906135b5565b80601f016020809104026020016040519081016040528092919081815260200182805461245f906135b5565b80156124ac5780601f10612481576101008083540402835291602001916124ac565b820191906000526020600020905b81548152906001019060200180831161248f57829003601f168201915b5050505050905090565b606060008214156124fe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612612565b600082905060005b6000821461253057808061251990613d91565b915050600a826125299190613e09565b9150612506565b60008167ffffffffffffffff81111561254c5761254b612d89565b5b6040519080825280601f01601f19166020018201604052801561257e5781602001600182028036833780820191505090505b5090505b6000851461260b5760018261259791906139e9565b9150600a856125a69190613e3a565b60306125b29190613789565b60f81b8183815181106125c8576125c76135e7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126049190613e09565b9450612582565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b61267f612a34565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b61273783836127ca565b60008373ffffffffffffffffffffffffffffffffffffffff163b146127c557600080549050600083820390505b61277760008683806001019450866122b3565b6127ad576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106127645781600054146127c257600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612837576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612872576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61287f6000848385612134565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128f6836128e7600086600061213a565b6128f08561299e565b17612162565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061291a57806000819055505050612999600084838561218d565b505050565b60006001821460e11b9050919050565b8280546129ba906135b5565b90600052602060002090601f0160209004810192826129dc5760008555612a23565b82601f106129f557805160ff1916838001178555612a23565b82800160010185558215612a23579182015b82811115612a22578251825591602001919060010190612a07565b5b509050612a309190612a83565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612a9c576000816000905550600101612a84565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ae981612ab4565b8114612af457600080fd5b50565b600081359050612b0681612ae0565b92915050565b600060208284031215612b2257612b21612aaa565b5b6000612b3084828501612af7565b91505092915050565b60008115159050919050565b612b4e81612b39565b82525050565b6000602082019050612b696000830184612b45565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ba9578082015181840152602081019050612b8e565b83811115612bb8576000848401525b50505050565b6000601f19601f8301169050919050565b6000612bda82612b6f565b612be48185612b7a565b9350612bf4818560208601612b8b565b612bfd81612bbe565b840191505092915050565b60006020820190508181036000830152612c228184612bcf565b905092915050565b6000819050919050565b612c3d81612c2a565b8114612c4857600080fd5b50565b600081359050612c5a81612c34565b92915050565b600060208284031215612c7657612c75612aaa565b5b6000612c8484828501612c4b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cb882612c8d565b9050919050565b612cc881612cad565b82525050565b6000602082019050612ce36000830184612cbf565b92915050565b612cf281612cad565b8114612cfd57600080fd5b50565b600081359050612d0f81612ce9565b92915050565b60008060408385031215612d2c57612d2b612aaa565b5b6000612d3a85828601612d00565b9250506020612d4b85828601612c4b565b9150509250929050565b612d5e81612c2a565b82525050565b6000602082019050612d796000830184612d55565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612dc182612bbe565b810181811067ffffffffffffffff82111715612de057612ddf612d89565b5b80604052505050565b6000612df3612aa0565b9050612dff8282612db8565b919050565b600067ffffffffffffffff821115612e1f57612e1e612d89565b5b612e2882612bbe565b9050602081019050919050565b82818337600083830152505050565b6000612e57612e5284612e04565b612de9565b905082815260208101848484011115612e7357612e72612d84565b5b612e7e848285612e35565b509392505050565b600082601f830112612e9b57612e9a612d7f565b5b8135612eab848260208601612e44565b91505092915050565b600060208284031215612eca57612ec9612aaa565b5b600082013567ffffffffffffffff811115612ee857612ee7612aaf565b5b612ef484828501612e86565b91505092915050565b600080600060608486031215612f1657612f15612aaa565b5b6000612f2486828701612d00565b9350506020612f3586828701612d00565b9250506040612f4686828701612c4b565b9150509250925092565b600060208284031215612f6657612f65612aaa565b5b6000612f7484828501612d00565b91505092915050565b600067ffffffffffffffff821115612f9857612f97612d89565b5b602082029050602081019050919050565b600080fd5b6000612fc1612fbc84612f7d565b612de9565b90508083825260208201905060208402830185811115612fe457612fe3612fa9565b5b835b8181101561300d5780612ff98882612c4b565b845260208401935050602081019050612fe6565b5050509392505050565b600082601f83011261302c5761302b612d7f565b5b813561303c848260208601612fae565b91505092915050565b60006020828403121561305b5761305a612aaa565b5b600082013567ffffffffffffffff81111561307957613078612aaf565b5b61308584828501613017565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130c381612cad565b82525050565b600067ffffffffffffffff82169050919050565b6130e6816130c9565b82525050565b6130f581612b39565b82525050565b600062ffffff82169050919050565b613113816130fb565b82525050565b60808201600082015161312f60008501826130ba565b50602082015161314260208501826130dd565b50604082015161315560408501826130ec565b506060820151613168606085018261310a565b50505050565b600061317a8383613119565b60808301905092915050565b6000602082019050919050565b600061319e8261308e565b6131a88185613099565b93506131b3836130aa565b8060005b838110156131e45781516131cb888261316e565b97506131d683613186565b9250506001810190506131b7565b5085935050505092915050565b6000602082019050818103600083015261320b8184613193565b905092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61324881612c2a565b82525050565b600061325a838361323f565b60208301905092915050565b6000602082019050919050565b600061327e82613213565b613288818561321e565b93506132938361322f565b8060005b838110156132c45781516132ab888261324e565b97506132b683613266565b925050600181019050613297565b5085935050505092915050565b600060208201905081810360008301526132eb8184613273565b905092915050565b60008060006060848603121561330c5761330b612aaa565b5b600061331a86828701612d00565b935050602061332b86828701612c4b565b925050604061333c86828701612c4b565b9150509250925092565b61334f81612b39565b811461335a57600080fd5b50565b60008135905061336c81613346565b92915050565b6000806040838503121561338957613388612aaa565b5b600061339785828601612d00565b92505060206133a88582860161335d565b9150509250929050565b600067ffffffffffffffff8211156133cd576133cc612d89565b5b6133d682612bbe565b9050602081019050919050565b60006133f66133f1846133b2565b612de9565b90508281526020810184848401111561341257613411612d84565b5b61341d848285612e35565b509392505050565b600082601f83011261343a57613439612d7f565b5b813561344a8482602086016133e3565b91505092915050565b6000806000806080858703121561346d5761346c612aaa565b5b600061347b87828801612d00565b945050602061348c87828801612d00565b935050604061349d87828801612c4b565b925050606085013567ffffffffffffffff8111156134be576134bd612aaf565b5b6134ca87828801613425565b91505092959194509250565b6080820160008201516134ec60008501826130ba565b5060208201516134ff60208501826130dd565b50604082015161351260408501826130ec565b506060820151613525606085018261310a565b50505050565b600060808201905061354060008301846134d6565b92915050565b6000806040838503121561355d5761355c612aaa565b5b600061356b85828601612d00565b925050602061357c85828601612d00565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806135cd57607f821691505b602082108114156135e1576135e0613586565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061364c601f83612b7a565b915061365782613616565b602082019050919050565b6000602082019050818103600083015261367b8161363f565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006136b8601e83612b7a565b91506136c382613682565b602082019050919050565b600060208201905081810360008301526136e7816136ab565b9050919050565b7f6861696d65696b61697368692100000000000000000000000000000000000000600082015250565b6000613724600d83612b7a565b915061372f826136ee565b602082019050919050565b6000602082019050818103600083015261375381613717565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061379482612c2a565b915061379f83612c2a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137d4576137d361375a565b5b828201905092915050565b7f79696a696e677a756964756f6c61000000000000000000000000000000000000600082015250565b6000613815600e83612b7a565b9150613820826137df565b602082019050919050565b6000602082019050818103600083015261384481613808565b9050919050565b7f63756f777564657368756c69616e672100000000000000000000000000000000600082015250565b6000613881601083612b7a565b915061388c8261384b565b602082019050919050565b600060208201905081810360008301526138b081613874565b9050919050565b7f6d6569796f757a616964756f6c65210000000000000000000000000000000000600082015250565b60006138ed600f83612b7a565b91506138f8826138b7565b602082019050919050565b6000602082019050818103600083015261391c816138e0565b9050919050565b600061392e82612c2a565b915061393983612c2a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139725761397161375a565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006139b3601383612b7a565b91506139be8261397d565b602082019050919050565b600060208201905081810360008301526139e2816139a6565b9050919050565b60006139f482612c2a565b91506139ff83612c2a565b925082821015613a1257613a1161375a565b5b828203905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613a79602f83612b7a565b9150613a8482613a1d565b604082019050919050565b60006020820190508181036000830152613aa881613a6c565b9050919050565b600081905092915050565b6000613ac582612b6f565b613acf8185613aaf565b9350613adf818560208601612b8b565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613b0d816135b5565b613b178186613aaf565b94506001821660008114613b325760018114613b4357613b76565b60ff19831686528186019350613b76565b613b4c85613aeb565b60005b83811015613b6e57815481890152600182019150602081019050613b4f565b838801955050505b50505092915050565b6000613b8b8286613aba565b9150613b978285613aba565b9150613ba38284613b00565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c0c602683612b7a565b9150613c1782613bb0565b604082019050919050565b60006020820190508181036000830152613c3b81613bff565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c78602083612b7a565b9150613c8382613c42565b602082019050919050565b60006020820190508181036000830152613ca781613c6b565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613cd582613cae565b613cdf8185613cb9565b9350613cef818560208601612b8b565b613cf881612bbe565b840191505092915050565b6000608082019050613d186000830187612cbf565b613d256020830186612cbf565b613d326040830185612d55565b8181036060830152613d448184613cca565b905095945050505050565b600081519050613d5e81612ae0565b92915050565b600060208284031215613d7a57613d79612aaa565b5b6000613d8884828501613d4f565b91505092915050565b6000613d9c82612c2a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613dcf57613dce61375a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e1482612c2a565b9150613e1f83612c2a565b925082613e2f57613e2e613dda565b5b828204905092915050565b6000613e4582612c2a565b9150613e5083612c2a565b925082613e6057613e5f613dda565b5b82820690509291505056fea26469706673582212205fec03b87bf83e2537b2179295fa761e076ab24bddc67bfcec3b119e1b05836c64736f6c634300080a0033

Deployed Bytecode Sourcemap

62452:2683:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23476:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29123:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31069:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30617:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62703:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64708:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22530:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40334:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62595:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64352:67;;;;;;;;;;;;;:::i;:::-;;62740:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64814:107;;;;;;;;;;;;;:::i;:::-;;31959:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64425:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62912:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57702:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62792:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62823:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28912:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62630:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24155:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8067:103;;;;;;;;;;;;;:::i;:::-;;64601:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61514:892;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7419:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29292:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58560:2505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64505:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63298:671;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31345:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62668:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32215:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57123:420;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63975:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62559:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63181:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31724:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8325:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23476:615;23561:4;23876:10;23861:25;;:11;:25;;;;:102;;;;23953:10;23938:25;;:11;:25;;;;23861:102;:179;;;;24030:10;24015:25;;:11;:25;;;;23861:179;23841:199;;23476:615;;;:::o;29123:100::-;29177:13;29210:5;29203:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29123:100;:::o;31069:204::-;31137:7;31162:16;31170:7;31162;:16::i;:::-;31157:64;;31187:34;;;;;;;;;;;;;;31157:64;31241:15;:24;31257:7;31241:24;;;;;;;;;;;;;;;;;;;;;31234:31;;31069:204;;;:::o;30617:386::-;30690:13;30706:16;30714:7;30706;:16::i;:::-;30690:32;;30762:5;30739:28;;:19;:17;:19::i;:::-;:28;;;30735:175;;30787:44;30804:5;30811:19;:17;:19::i;:::-;30787:16;:44::i;:::-;30782:128;;30859:35;;;;;;;;;;;;;;30782:128;30735:175;30949:2;30922:15;:24;30938:7;30922:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30987:7;30983:2;30967:28;;30976:5;30967:28;;;;;;;;;;;;30679:324;30617:386;;:::o;62703:33::-;;;;:::o;64708:100::-;7305:13;:11;:13::i;:::-;64792:10:::1;64780:9;:22;;;;;;;;;;;;:::i;:::-;;64708:100:::0;:::o;22530:315::-;22583:7;22811:15;:13;:15::i;:::-;22796:12;;22780:13;;:28;:46;22773:53;;22530:315;:::o;40334:2800::-;40468:27;40498;40517:7;40498:18;:27::i;:::-;40468:57;;40583:4;40542:45;;40558:19;40542:45;;;40538:86;;40596:28;;;;;;;;;;;;;;40538:86;40638:27;40667:23;40694:28;40714:7;40694:19;:28::i;:::-;40637:85;;;;40822:62;40841:15;40858:4;40864:19;:17;:19::i;:::-;40822:18;:62::i;:::-;40817:174;;40904:43;40921:4;40927:19;:17;:19::i;:::-;40904:16;:43::i;:::-;40899:92;;40956:35;;;;;;;;;;;;;;40899:92;40817:174;41022:1;41008:16;;:2;:16;;;41004:52;;;41033:23;;;;;;;;;;;;;;41004:52;41069:43;41091:4;41097:2;41101:7;41110:1;41069:21;:43::i;:::-;41205:15;41202:160;;;41345:1;41324:19;41317:30;41202:160;41740:18;:24;41759:4;41740:24;;;;;;;;;;;;;;;;41738:26;;;;;;;;;;;;41809:18;:22;41828:2;41809:22;;;;;;;;;;;;;;;;41807:24;;;;;;;;;;;42131:145;42168:2;42216:45;42231:4;42237:2;42241:19;42216:14;:45::i;:::-;19758:8;42189:72;42131:18;:145::i;:::-;42102:17;:26;42120:7;42102:26;;;;;;;;;;;:174;;;;42446:1;19758:8;42396:19;:46;:51;42392:626;;;42468:19;42500:1;42490:7;:11;42468:33;;42657:1;42623:17;:30;42641:11;42623:30;;;;;;;;;;;;:35;42619:384;;;42761:13;;42746:11;:28;42742:242;;42941:19;42908:17;:30;42926:11;42908:30;;;;;;;;;;;:52;;;;42742:242;42619:384;42449:569;42392:626;43065:7;43061:2;43046:27;;43055:4;43046:27;;;;;;;;;;;;43084:42;43105:4;43111:2;43115:7;43124:1;43084:20;:42::i;:::-;40457:2677;;;40334:2800;;;:::o;62595:28::-;;;;:::o;64352:67::-;7305:13;:11;:13::i;:::-;64407:6:::1;;;;;;;;;;;64406:7;64397:6;;:16;;;;;;;;;;;;;;;;;;64352:67::o:0;62740:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;64814:107::-;7305:13;:11;:13::i;:::-;64872:10:::1;64864:28;;:51;64893:21;64864:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;64814:107::o:0;31959:185::-;32097:39;32114:4;32120:2;32124:7;32097:39;;;;;;;;;;;;:16;:39::i;:::-;31959:185;;;:::o;64425:74::-;7305:13;:11;:13::i;:::-;64488:5:::1;64481:4;:12;;;;64425:74:::0;:::o;62912:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57702:468::-;57791:23;57852:22;57877:8;:15;57852:40;;57907:34;57965:14;57944:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;57907:73;;58000:9;57995:125;58016:14;58011:1;:19;57995:125;;58072:32;58092:8;58101:1;58092:11;;;;;;;;:::i;:::-;;;;;;;;58072:19;:32::i;:::-;58056:10;58067:1;58056:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;58032:3;;;;;57995:125;;;;58141:10;58134:17;;;;57702:468;;;:::o;62792:25::-;;;;;;;;;;;;;:::o;62823:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28912:144::-;28976:7;29019:27;29038:7;29019:18;:27::i;:::-;28996:52;;28912:144;;;:::o;62630:34::-;;;;:::o;24155:224::-;24219:7;24260:1;24243:19;;:5;:19;;;24239:60;;;24271:28;;;;;;;;;;;;;;24239:60;18710:13;24317:18;:25;24336:5;24317:25;;;;;;;;;;;;;;;;:54;24310:61;;24155:224;;;:::o;8067:103::-;7305:13;:11;:13::i;:::-;8132:30:::1;8159:1;8132:18;:30::i;:::-;8067:103::o:0;64601:100::-;7305:13;:11;:13::i;:::-;64685:10:::1;64673:9;:22;;;;;;;;;;;;:::i;:::-;;64601:100:::0;:::o;61514:892::-;61584:16;61638:19;61672:25;61712:22;61737:16;61747:5;61737:9;:16::i;:::-;61712:41;;61768:25;61810:14;61796:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61768:57;;61840:31;;:::i;:::-;61891:9;61903:15;:13;:15::i;:::-;61891:27;;61886:472;61935:14;61920:11;:29;61886:472;;61987:15;62000:1;61987:12;:15::i;:::-;61975:27;;62025:9;:16;;;62021:73;;;62066:8;;62021:73;62142:1;62116:28;;:9;:14;;;:28;;;62112:111;;62189:9;:14;;;62169:34;;62112:111;62266:5;62245:26;;:17;:26;;;62241:102;;;62322:1;62296:8;62305:13;;;;;;62296:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;62241:102;61886:472;61951:3;;;;;61886:472;;;;62379:8;62372:15;;;;;;;61514:892;;;:::o;7419:87::-;7465:7;7492:6;;;;;;;;;;;7485:13;;7419:87;:::o;29292:104::-;29348:13;29381:7;29374:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29292:104;:::o;58560:2505::-;58695:16;58762:4;58753:5;:13;58749:45;;58775:19;;;;;;;;;;;;;;58749:45;58809:19;58843:17;58863:14;:12;:14::i;:::-;58843:34;;58963:15;:13;:15::i;:::-;58955:5;:23;58951:87;;;59007:15;:13;:15::i;:::-;58999:23;;58951:87;59114:9;59107:4;:16;59103:73;;;59151:9;59144:16;;59103:73;59190:25;59218:16;59228:5;59218:9;:16::i;:::-;59190:44;;59412:4;59404:5;:12;59400:278;;;59437:19;59466:5;59459:4;:12;59437:34;;59508:17;59494:11;:31;59490:111;;;59570:11;59550:31;;59490:111;59418:198;59400:278;;;59661:1;59641:21;;59400:278;59692:25;59734:17;59720:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59692:60;;59792:1;59771:17;:22;59767:78;;;59821:8;59814:15;;;;;;;;59767:78;59989:31;60023:26;60043:5;60023:19;:26::i;:::-;59989:60;;60064:25;60309:9;:16;;;60304:92;;60366:9;:14;;;60346:34;;60304:92;60415:9;60427:5;60415:17;;60410:478;60439:4;60434:1;:9;;:45;;;;;60462:17;60447:11;:32;;60434:45;60410:478;;;60517:15;60530:1;60517:12;:15::i;:::-;60505:27;;60555:9;:16;;;60551:73;;;60596:8;;60551:73;60672:1;60646:28;;:9;:14;;;:28;;;60642:111;;60719:9;:14;;;60699:34;;60642:111;60796:5;60775:26;;:17;:26;;;60771:102;;;60852:1;60826:8;60835:13;;;;;;60826:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;60771:102;60410:478;60481:3;;;;;60410:478;;;;60990:11;60980:8;60973:29;61038:8;61031:15;;;;;;;;58560:2505;;;;;;:::o;64505:90::-;7305:13;:11;:13::i;:::-;64580:9:::1;64569:8;:20;;;;64505:90:::0;:::o;63298:671::-;1845:1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;63112:10:::1;63099:23;;:9;:23;;;63091:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;63393:6:::2;;;;;;;;;;;63392:7;63384:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;63478:13;;63463:11;63436:24;63449:10;63436:12;:24::i;:::-;:38;;;;:::i;:::-;:55;;63428:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;63543:1;63529:11;:15;:42;;;;;63563:8;;63548:11;:23;;63529:42;63521:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;63643:9;;63627:11;63611:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:42;;63603:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;63681:10;:24;63692:12;:10;:12::i;:::-;63681:24;;;;;;;;;;;;;;;;;;;;;;;;;63677:242;;;63745:11;63738:4;;:18;;;;:::i;:::-;63725:9;:31;;63717:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;63677:242;;;63843:4;;63829:11;63822:4;;:18;;;;:::i;:::-;:25;;;;:::i;:::-;63809:9;:38;;63801:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;63909:4;63882:10;:24;63893:12;:10;:12::i;:::-;63882:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;63677:242;63927:36;63937:12;:10;:12::i;:::-;63951:11;63927:9;:36::i;:::-;1801:1:::0;2755:7;:22;;;;63298:671;:::o;31345:308::-;31456:19;:17;:19::i;:::-;31444:31;;:8;:31;;;31440:61;;;31484:17;;;;;;;;;;;;;;31440:61;31566:8;31514:18;:39;31533:19;:17;:19::i;:::-;31514:39;;;;;;;;;;;;;;;:49;31554:8;31514:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31626:8;31590:55;;31605:19;:17;:19::i;:::-;31590:55;;;31636:8;31590:55;;;;;;:::i;:::-;;;;;;;;31345:308;;:::o;62668:28::-;;;;:::o;32215:399::-;32382:31;32395:4;32401:2;32405:7;32382:12;:31::i;:::-;32446:1;32428:2;:14;;;:19;32424:183;;32467:56;32498:4;32504:2;32508:7;32517:5;32467:30;:56::i;:::-;32462:145;;32551:40;;;;;;;;;;;;;;32462:145;32424:183;32215:399;;;;:::o;57123:420::-;57199:21;;:::i;:::-;57233:31;;:::i;:::-;57289:15;:13;:15::i;:::-;57279:7;:25;:54;;;;57319:14;:12;:14::i;:::-;57308:7;:25;;57279:54;57275:103;;;57357:9;57350:16;;;;;57275:103;57400:21;57413:7;57400:12;:21::i;:::-;57388:33;;57436:9;:16;;;57432:65;;;57476:9;57469:16;;;;;57432:65;57514:21;57527:7;57514:12;:21::i;:::-;57507:28;;;57123:420;;;;:::o;63975:371::-;64049:13;64079:17;64087:8;64079:7;:17::i;:::-;64071:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;64155:28;64186:10;:8;:10::i;:::-;64155:41;;64241:1;64216:14;64210:28;:32;:130;;;;;;;;;;;;;;;;;64278:14;64294:19;:8;:17;:19::i;:::-;64315:9;64261:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64210:130;64203:137;;;63975:371;;;:::o;62559:32::-;;;;:::o;63181:111::-;63239:7;63266:20;63280:5;63266:13;:20::i;:::-;63259:27;;63181:111;;;:::o;31724:164::-;31821:4;31845:18;:25;31864:5;31845:25;;;;;;;;;;;;;;;:35;31871:8;31845:35;;;;;;;;;;;;;;;;;;;;;;;;;31838:42;;31724:164;;;;:::o;8325:201::-;7305:13;:11;:13::i;:::-;8434:1:::1;8414:22;;:8;:22;;;;8406:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8490:28;8509:8;8490:18;:28::i;:::-;8325:201:::0;:::o;32869:273::-;32926:4;32982:7;32963:15;:13;:15::i;:::-;:26;;:66;;;;;33016:13;;33006:7;:23;32963:66;:152;;;;;33114:1;19480:8;33067:17;:26;33085:7;33067:26;;;;;;;;;;;;:43;:48;32963:152;32943:172;;32869:273;;;:::o;51430:105::-;51490:7;51517:10;51510:17;;51430:105;:::o;7584:132::-;7659:12;:10;:12::i;:::-;7648:23;;:7;:5;:7::i;:::-;:23;;;7640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7584:132::o;64927:95::-;64992:7;65015:1;65008:8;;64927:95;:::o;25829:1129::-;25896:7;25916:12;25931:7;25916:22;;25999:4;25980:15;:13;:15::i;:::-;:23;25976:915;;26033:13;;26026:4;:20;26022:869;;;26071:14;26088:17;:23;26106:4;26088:23;;;;;;;;;;;;26071:40;;26204:1;19480:8;26177:6;:23;:28;26173:699;;;26696:113;26713:1;26703:6;:11;26696:113;;;26756:17;:25;26774:6;;;;;;;26756:25;;;;;;;;;;;;26747:34;;26696:113;;;26842:6;26835:13;;;;;;26173:699;26048:843;26022:869;25976:915;26919:31;;;;;;;;;;;;;;25829:1129;;;;:::o;38670:652::-;38765:27;38794:23;38835:53;38891:15;38835:71;;39077:7;39071:4;39064:21;39112:22;39106:4;39099:36;39188:4;39182;39172:21;39149:44;;39284:19;39278:26;39259:45;;39015:300;38670:652;;;:::o;39435:645::-;39577:11;39739:15;39733:4;39729:26;39721:34;;39898:15;39887:9;39883:31;39870:44;;40045:15;40034:9;40031:30;40024:4;40013:9;40010:19;40007:55;39997:65;;39435:645;;;;;:::o;50263:159::-;;;;;:::o;48575:309::-;48710:7;48730:16;19881:3;48756:19;:40;;48730:67;;19881:3;48823:31;48834:4;48840:2;48844:9;48823:10;:31::i;:::-;48815:40;;:61;;48808:68;;;48575:309;;;;;:::o;28403:447::-;28483:14;28651:15;28644:5;28640:27;28631:36;;28825:5;28811:11;28787:22;28783:40;28780:51;28773:5;28770:62;28760:72;;28403:447;;;;:::o;51081:158::-;;;;;:::o;8686:191::-;8760:16;8779:6;;;;;;;;;;;8760:25;;8805:8;8796:6;;:17;;;;;;;;;;;;;;;;;;8860:8;8829:40;;8850:8;8829:40;;;;;;;;;;;;8749:128;8686:191;:::o;27506:153::-;27566:21;;:::i;:::-;27607:44;27626:17;:24;27644:5;27626:24;;;;;;;;;;;;27607:18;:44::i;:::-;27600:51;;27506:153;;;:::o;22225:95::-;22272:7;22299:13;;22292:20;;22225:95;:::o;5970:98::-;6023:7;6050:10;6043:17;;5970:98;:::o;33226:104::-;33295:27;33305:2;33309:8;33295:27;;;;;;;;;;;;:9;:27::i;:::-;33226:104;;:::o;47085:716::-;47248:4;47294:2;47269:45;;;47315:19;:17;:19::i;:::-;47336:4;47342:7;47351:5;47269:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47265:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47569:1;47552:6;:13;:18;47548:235;;;47598:40;;;;;;;;;;;;;;47548:235;47741:6;47735:13;47726:6;47722:2;47718:15;47711:38;47265:529;47438:54;;;47428:64;;;:6;:64;;;;47421:71;;;47085:716;;;;;;:::o;28162:158::-;28224:21;;:::i;:::-;28265:47;28284:27;28303:7;28284:18;:27::i;:::-;28265:18;:47::i;:::-;28258:54;;28162:158;;;:::o;65028:104::-;65088:13;65117:9;65110:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65028:104;:::o;3222:723::-;3278:13;3508:1;3499:5;:10;3495:53;;;3526:10;;;;;;;;;;;;;;;;;;;;;3495:53;3558:12;3573:5;3558:20;;3589:14;3614:78;3629:1;3621:4;:9;3614:78;;3647:8;;;;;:::i;:::-;;;;3678:2;3670:10;;;;;:::i;:::-;;;3614:78;;;3702:19;3734:6;3724:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3702:39;;3752:154;3768:1;3759:5;:10;3752:154;;3796:1;3786:11;;;;;:::i;:::-;;;3863:2;3855:5;:10;;;;:::i;:::-;3842:2;:24;;;;:::i;:::-;3829:39;;3812:6;3819;3812:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3892:2;3883:11;;;;;:::i;:::-;;;3752:154;;;3930:6;3916:21;;;;;3222:723;;;;:::o;24461:176::-;24522:7;18710:13;18847:2;24550:18;:25;24569:5;24550:25;;;;;;;;;;;;;;;;:49;;24549:80;24542:87;;24461:176;;;:::o;49460:147::-;49597:6;49460:147;;;;;:::o;27052:363::-;27118:31;;:::i;:::-;27195:6;27162:9;:14;;:41;;;;;;;;;;;19364:3;27248:6;:32;;27214:9;:24;;:67;;;;;;;;;;;27338:1;19480:8;27311:6;:23;:28;;27292:9;:16;;:47;;;;;;;;;;;19881:3;27379:6;:27;;27350:9;:19;;:57;;;;;;;;;;;27052:363;;;:::o;33746:681::-;33869:19;33875:2;33879:8;33869:5;:19::i;:::-;33948:1;33930:2;:14;;;:19;33926:483;;33970:11;33984:13;;33970:27;;34016:13;34038:8;34032:3;:14;34016:30;;34065:233;34096:62;34135:1;34139:2;34143:7;;;;;;34152:5;34096:30;:62::i;:::-;34091:167;;34194:40;;;;;;;;;;;;;;34091:167;34293:3;34285:5;:11;34065:233;;34380:3;34363:13;;:20;34359:34;;34385:8;;;34359:34;33951:458;;33926:483;33746:681;;;:::o;34700:1529::-;34765:20;34788:13;;34765:36;;34830:1;34816:16;;:2;:16;;;34812:48;;;34841:19;;;;;;;;;;;;;;34812:48;34887:1;34875:8;:13;34871:44;;;34897:18;;;;;;;;;;;;;;34871:44;34928:61;34958:1;34962:2;34966:12;34980:8;34928:21;:61::i;:::-;35471:1;18847:2;35442:1;:25;;35441:31;35429:8;:44;35403:18;:22;35422:2;35403:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;35750:139;35787:2;35841:33;35864:1;35868:2;35872:1;35841:14;:33::i;:::-;35808:30;35829:8;35808:20;:30::i;:::-;:66;35750:18;:139::i;:::-;35716:17;:31;35734:12;35716:31;;;;;;;;;;;:173;;;;35906:15;35924:12;35906:30;;35951:11;35980:8;35965:12;:23;35951:37;;36003:101;36055:9;;;;;;36051:2;36030:35;;36047:1;36030:35;;;;;;;;;;;;36099:3;36089:7;:13;36003:101;;36136:3;36120:13;:19;;;;35177:974;;36161:60;36190:1;36194:2;36198:12;36212:8;36161:20;:60::i;:::-;34754:1475;34700:1529;;:::o;30233:322::-;30303:14;30534:1;30524:8;30521:15;30496:23;30492:45;30482:55;;30233:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:311::-;8948:4;9038:18;9030:6;9027:30;9024:56;;;9060:18;;:::i;:::-;9024:56;9110:4;9102:6;9098:17;9090:25;;9170:4;9164;9160:15;9152:23;;8871:311;;;:::o;9188:117::-;9297:1;9294;9287:12;9328:710;9424:5;9449:81;9465:64;9522:6;9465:64;:::i;:::-;9449:81;:::i;:::-;9440:90;;9550:5;9579:6;9572:5;9565:21;9613:4;9606:5;9602:16;9595:23;;9666:4;9658:6;9654:17;9646:6;9642:30;9695:3;9687:6;9684:15;9681:122;;;9714:79;;:::i;:::-;9681:122;9829:6;9812:220;9846:6;9841:3;9838:15;9812:220;;;9921:3;9950:37;9983:3;9971:10;9950:37;:::i;:::-;9945:3;9938:50;10017:4;10012:3;10008:14;10001:21;;9888:144;9872:4;9867:3;9863:14;9856:21;;9812:220;;;9816:21;9430:608;;9328:710;;;;;:::o;10061:370::-;10132:5;10181:3;10174:4;10166:6;10162:17;10158:27;10148:122;;10189:79;;:::i;:::-;10148:122;10306:6;10293:20;10331:94;10421:3;10413:6;10406:4;10398:6;10394:17;10331:94;:::i;:::-;10322:103;;10138:293;10061:370;;;;:::o;10437:539::-;10521:6;10570:2;10558:9;10549:7;10545:23;10541:32;10538:119;;;10576:79;;:::i;:::-;10538:119;10724:1;10713:9;10709:17;10696:31;10754:18;10746:6;10743:30;10740:117;;;10776:79;;:::i;:::-;10740:117;10881:78;10951:7;10942:6;10931:9;10927:22;10881:78;:::i;:::-;10871:88;;10667:302;10437:539;;;;:::o;10982:145::-;11080:6;11114:5;11108:12;11098:22;;10982:145;;;:::o;11133:215::-;11263:11;11297:6;11292:3;11285:19;11337:4;11332:3;11328:14;11313:29;;11133:215;;;;:::o;11354:163::-;11452:4;11475:3;11467:11;;11505:4;11500:3;11496:14;11488:22;;11354:163;;;:::o;11523:108::-;11600:24;11618:5;11600:24;:::i;:::-;11595:3;11588:37;11523:108;;:::o;11637:101::-;11673:7;11713:18;11706:5;11702:30;11691:41;;11637:101;;;:::o;11744:105::-;11819:23;11836:5;11819:23;:::i;:::-;11814:3;11807:36;11744:105;;:::o;11855:99::-;11926:21;11941:5;11926:21;:::i;:::-;11921:3;11914:34;11855:99;;:::o;11960:91::-;11996:7;12036:8;12029:5;12025:20;12014:31;;11960:91;;;:::o;12057:105::-;12132:23;12149:5;12132:23;:::i;:::-;12127:3;12120:36;12057:105;;:::o;12240:864::-;12389:4;12384:3;12380:14;12476:4;12469:5;12465:16;12459:23;12495:63;12552:4;12547:3;12543:14;12529:12;12495:63;:::i;:::-;12404:164;12660:4;12653:5;12649:16;12643:23;12679:61;12734:4;12729:3;12725:14;12711:12;12679:61;:::i;:::-;12578:172;12834:4;12827:5;12823:16;12817:23;12853:57;12904:4;12899:3;12895:14;12881:12;12853:57;:::i;:::-;12760:160;13007:4;13000:5;12996:16;12990:23;13026:61;13081:4;13076:3;13072:14;13058:12;13026:61;:::i;:::-;12930:167;12358:746;12240:864;;:::o;13110:303::-;13241:10;13262:108;13366:3;13358:6;13262:108;:::i;:::-;13402:4;13397:3;13393:14;13379:28;;13110:303;;;;:::o;13419:144::-;13520:4;13552;13547:3;13543:14;13535:22;;13419:144;;;:::o;13645:980::-;13826:3;13855:85;13934:5;13855:85;:::i;:::-;13956:117;14066:6;14061:3;13956:117;:::i;:::-;13949:124;;14097:87;14178:5;14097:87;:::i;:::-;14207:7;14238:1;14223:377;14248:6;14245:1;14242:13;14223:377;;;14324:6;14318:13;14351:125;14472:3;14457:13;14351:125;:::i;:::-;14344:132;;14499:91;14583:6;14499:91;:::i;:::-;14489:101;;14283:317;14270:1;14267;14263:9;14258:14;;14223:377;;;14227:14;14616:3;14609:10;;13831:794;;;13645:980;;;;:::o;14631:497::-;14836:4;14874:2;14863:9;14859:18;14851:26;;14923:9;14917:4;14913:20;14909:1;14898:9;14894:17;14887:47;14951:170;15116:4;15107:6;14951:170;:::i;:::-;14943:178;;14631:497;;;;:::o;15134:114::-;15201:6;15235:5;15229:12;15219:22;;15134:114;;;:::o;15254:184::-;15353:11;15387:6;15382:3;15375:19;15427:4;15422:3;15418:14;15403:29;;15254:184;;;;:::o;15444:132::-;15511:4;15534:3;15526:11;;15564:4;15559:3;15555:14;15547:22;;15444:132;;;:::o;15582:108::-;15659:24;15677:5;15659:24;:::i;:::-;15654:3;15647:37;15582:108;;:::o;15696:179::-;15765:10;15786:46;15828:3;15820:6;15786:46;:::i;:::-;15864:4;15859:3;15855:14;15841:28;;15696:179;;;;:::o;15881:113::-;15951:4;15983;15978:3;15974:14;15966:22;;15881:113;;;:::o;16030:732::-;16149:3;16178:54;16226:5;16178:54;:::i;:::-;16248:86;16327:6;16322:3;16248:86;:::i;:::-;16241:93;;16358:56;16408:5;16358:56;:::i;:::-;16437:7;16468:1;16453:284;16478:6;16475:1;16472:13;16453:284;;;16554:6;16548:13;16581:63;16640:3;16625:13;16581:63;:::i;:::-;16574:70;;16667:60;16720:6;16667:60;:::i;:::-;16657:70;;16513:224;16500:1;16497;16493:9;16488:14;;16453:284;;;16457:14;16753:3;16746:10;;16154:608;;;16030:732;;;;:::o;16768:373::-;16911:4;16949:2;16938:9;16934:18;16926:26;;16998:9;16992:4;16988:20;16984:1;16973:9;16969:17;16962:47;17026:108;17129:4;17120:6;17026:108;:::i;:::-;17018:116;;16768:373;;;;:::o;17147:619::-;17224:6;17232;17240;17289:2;17277:9;17268:7;17264:23;17260:32;17257:119;;;17295:79;;:::i;:::-;17257:119;17415:1;17440:53;17485:7;17476:6;17465:9;17461:22;17440:53;:::i;:::-;17430:63;;17386:117;17542:2;17568:53;17613:7;17604:6;17593:9;17589:22;17568:53;:::i;:::-;17558:63;;17513:118;17670:2;17696:53;17741:7;17732:6;17721:9;17717:22;17696:53;:::i;:::-;17686:63;;17641:118;17147:619;;;;;:::o;17772:116::-;17842:21;17857:5;17842:21;:::i;:::-;17835:5;17832:32;17822:60;;17878:1;17875;17868:12;17822:60;17772:116;:::o;17894:133::-;17937:5;17975:6;17962:20;17953:29;;17991:30;18015:5;17991:30;:::i;:::-;17894:133;;;;:::o;18033:468::-;18098:6;18106;18155:2;18143:9;18134:7;18130:23;18126:32;18123:119;;;18161:79;;:::i;:::-;18123:119;18281:1;18306:53;18351:7;18342:6;18331:9;18327:22;18306:53;:::i;:::-;18296:63;;18252:117;18408:2;18434:50;18476:7;18467:6;18456:9;18452:22;18434:50;:::i;:::-;18424:60;;18379:115;18033:468;;;;;:::o;18507:307::-;18568:4;18658:18;18650:6;18647:30;18644:56;;;18680:18;;:::i;:::-;18644:56;18718:29;18740:6;18718:29;:::i;:::-;18710:37;;18802:4;18796;18792:15;18784:23;;18507:307;;;:::o;18820:410::-;18897:5;18922:65;18938:48;18979:6;18938:48;:::i;:::-;18922:65;:::i;:::-;18913:74;;19010:6;19003:5;18996:21;19048:4;19041:5;19037:16;19086:3;19077:6;19072:3;19068:16;19065:25;19062:112;;;19093:79;;:::i;:::-;19062:112;19183:41;19217:6;19212:3;19207;19183:41;:::i;:::-;18903:327;18820:410;;;;;:::o;19249:338::-;19304:5;19353:3;19346:4;19338:6;19334:17;19330:27;19320:122;;19361:79;;:::i;:::-;19320:122;19478:6;19465:20;19503:78;19577:3;19569:6;19562:4;19554:6;19550:17;19503:78;:::i;:::-;19494:87;;19310:277;19249:338;;;;:::o;19593:943::-;19688:6;19696;19704;19712;19761:3;19749:9;19740:7;19736:23;19732:33;19729:120;;;19768:79;;:::i;:::-;19729:120;19888:1;19913:53;19958:7;19949:6;19938:9;19934:22;19913:53;:::i;:::-;19903:63;;19859:117;20015:2;20041:53;20086:7;20077:6;20066:9;20062:22;20041:53;:::i;:::-;20031:63;;19986:118;20143:2;20169:53;20214:7;20205:6;20194:9;20190:22;20169:53;:::i;:::-;20159:63;;20114:118;20299:2;20288:9;20284:18;20271:32;20330:18;20322:6;20319:30;20316:117;;;20352:79;;:::i;:::-;20316:117;20457:62;20511:7;20502:6;20491:9;20487:22;20457:62;:::i;:::-;20447:72;;20242:287;19593:943;;;;;;;:::o;20614:874::-;20773:4;20768:3;20764:14;20860:4;20853:5;20849:16;20843:23;20879:63;20936:4;20931:3;20927:14;20913:12;20879:63;:::i;:::-;20788:164;21044:4;21037:5;21033:16;21027:23;21063:61;21118:4;21113:3;21109:14;21095:12;21063:61;:::i;:::-;20962:172;21218:4;21211:5;21207:16;21201:23;21237:57;21288:4;21283:3;21279:14;21265:12;21237:57;:::i;:::-;21144:160;21391:4;21384:5;21380:16;21374:23;21410:61;21465:4;21460:3;21456:14;21442:12;21410:61;:::i;:::-;21314:167;20742:746;20614:874;;:::o;21494:347::-;21649:4;21687:3;21676:9;21672:19;21664:27;;21701:133;21831:1;21820:9;21816:17;21807:6;21701:133;:::i;:::-;21494:347;;;;:::o;21847:474::-;21915:6;21923;21972:2;21960:9;21951:7;21947:23;21943:32;21940:119;;;21978:79;;:::i;:::-;21940:119;22098:1;22123:53;22168:7;22159:6;22148:9;22144:22;22123:53;:::i;:::-;22113:63;;22069:117;22225:2;22251:53;22296:7;22287:6;22276:9;22272:22;22251:53;:::i;:::-;22241:63;;22196:118;21847:474;;;;;:::o;22327:180::-;22375:77;22372:1;22365:88;22472:4;22469:1;22462:15;22496:4;22493:1;22486:15;22513:320;22557:6;22594:1;22588:4;22584:12;22574:22;;22641:1;22635:4;22631:12;22662:18;22652:81;;22718:4;22710:6;22706:17;22696:27;;22652:81;22780:2;22772:6;22769:14;22749:18;22746:38;22743:84;;;22799:18;;:::i;:::-;22743:84;22564:269;22513:320;;;:::o;22839:180::-;22887:77;22884:1;22877:88;22984:4;22981:1;22974:15;23008:4;23005:1;22998:15;23025:181;23165:33;23161:1;23153:6;23149:14;23142:57;23025:181;:::o;23212:366::-;23354:3;23375:67;23439:2;23434:3;23375:67;:::i;:::-;23368:74;;23451:93;23540:3;23451:93;:::i;:::-;23569:2;23564:3;23560:12;23553:19;;23212:366;;;:::o;23584:419::-;23750:4;23788:2;23777:9;23773:18;23765:26;;23837:9;23831:4;23827:20;23823:1;23812:9;23808:17;23801:47;23865:131;23991:4;23865:131;:::i;:::-;23857:139;;23584:419;;;:::o;24009:180::-;24149:32;24145:1;24137:6;24133:14;24126:56;24009:180;:::o;24195:366::-;24337:3;24358:67;24422:2;24417:3;24358:67;:::i;:::-;24351:74;;24434:93;24523:3;24434:93;:::i;:::-;24552:2;24547:3;24543:12;24536:19;;24195:366;;;:::o;24567:419::-;24733:4;24771:2;24760:9;24756:18;24748:26;;24820:9;24814:4;24810:20;24806:1;24795:9;24791:17;24784:47;24848:131;24974:4;24848:131;:::i;:::-;24840:139;;24567:419;;;:::o;24992:163::-;25132:15;25128:1;25120:6;25116:14;25109:39;24992:163;:::o;25161:366::-;25303:3;25324:67;25388:2;25383:3;25324:67;:::i;:::-;25317:74;;25400:93;25489:3;25400:93;:::i;:::-;25518:2;25513:3;25509:12;25502:19;;25161:366;;;:::o;25533:419::-;25699:4;25737:2;25726:9;25722:18;25714:26;;25786:9;25780:4;25776:20;25772:1;25761:9;25757:17;25750:47;25814:131;25940:4;25814:131;:::i;:::-;25806:139;;25533:419;;;:::o;25958:180::-;26006:77;26003:1;25996:88;26103:4;26100:1;26093:15;26127:4;26124:1;26117:15;26144:305;26184:3;26203:20;26221:1;26203:20;:::i;:::-;26198:25;;26237:20;26255:1;26237:20;:::i;:::-;26232:25;;26391:1;26323:66;26319:74;26316:1;26313:81;26310:107;;;26397:18;;:::i;:::-;26310:107;26441:1;26438;26434:9;26427:16;;26144:305;;;;:::o;26455:164::-;26595:16;26591:1;26583:6;26579:14;26572:40;26455:164;:::o;26625:366::-;26767:3;26788:67;26852:2;26847:3;26788:67;:::i;:::-;26781:74;;26864:93;26953:3;26864:93;:::i;:::-;26982:2;26977:3;26973:12;26966:19;;26625:366;;;:::o;26997:419::-;27163:4;27201:2;27190:9;27186:18;27178:26;;27250:9;27244:4;27240:20;27236:1;27225:9;27221:17;27214:47;27278:131;27404:4;27278:131;:::i;:::-;27270:139;;26997:419;;;:::o;27422:166::-;27562:18;27558:1;27550:6;27546:14;27539:42;27422:166;:::o;27594:366::-;27736:3;27757:67;27821:2;27816:3;27757:67;:::i;:::-;27750:74;;27833:93;27922:3;27833:93;:::i;:::-;27951:2;27946:3;27942:12;27935:19;;27594:366;;;:::o;27966:419::-;28132:4;28170:2;28159:9;28155:18;28147:26;;28219:9;28213:4;28209:20;28205:1;28194:9;28190:17;28183:47;28247:131;28373:4;28247:131;:::i;:::-;28239:139;;27966:419;;;:::o;28391:165::-;28531:17;28527:1;28519:6;28515:14;28508:41;28391:165;:::o;28562:366::-;28704:3;28725:67;28789:2;28784:3;28725:67;:::i;:::-;28718:74;;28801:93;28890:3;28801:93;:::i;:::-;28919:2;28914:3;28910:12;28903:19;;28562:366;;;:::o;28934:419::-;29100:4;29138:2;29127:9;29123:18;29115:26;;29187:9;29181:4;29177:20;29173:1;29162:9;29158:17;29151:47;29215:131;29341:4;29215:131;:::i;:::-;29207:139;;28934:419;;;:::o;29359:348::-;29399:7;29422:20;29440:1;29422:20;:::i;:::-;29417:25;;29456:20;29474:1;29456:20;:::i;:::-;29451:25;;29644:1;29576:66;29572:74;29569:1;29566:81;29561:1;29554:9;29547:17;29543:105;29540:131;;;29651:18;;:::i;:::-;29540:131;29699:1;29696;29692:9;29681:20;;29359:348;;;;:::o;29713:169::-;29853:21;29849:1;29841:6;29837:14;29830:45;29713:169;:::o;29888:366::-;30030:3;30051:67;30115:2;30110:3;30051:67;:::i;:::-;30044:74;;30127:93;30216:3;30127:93;:::i;:::-;30245:2;30240:3;30236:12;30229:19;;29888:366;;;:::o;30260:419::-;30426:4;30464:2;30453:9;30449:18;30441:26;;30513:9;30507:4;30503:20;30499:1;30488:9;30484:17;30477:47;30541:131;30667:4;30541:131;:::i;:::-;30533:139;;30260:419;;;:::o;30685:191::-;30725:4;30745:20;30763:1;30745:20;:::i;:::-;30740:25;;30779:20;30797:1;30779:20;:::i;:::-;30774:25;;30818:1;30815;30812:8;30809:34;;;30823:18;;:::i;:::-;30809:34;30868:1;30865;30861:9;30853:17;;30685:191;;;;:::o;30882:234::-;31022:34;31018:1;31010:6;31006:14;30999:58;31091:17;31086:2;31078:6;31074:15;31067:42;30882:234;:::o;31122:366::-;31264:3;31285:67;31349:2;31344:3;31285:67;:::i;:::-;31278:74;;31361:93;31450:3;31361:93;:::i;:::-;31479:2;31474:3;31470:12;31463:19;;31122:366;;;:::o;31494:419::-;31660:4;31698:2;31687:9;31683:18;31675:26;;31747:9;31741:4;31737:20;31733:1;31722:9;31718:17;31711:47;31775:131;31901:4;31775:131;:::i;:::-;31767:139;;31494:419;;;:::o;31919:148::-;32021:11;32058:3;32043:18;;31919:148;;;;:::o;32073:377::-;32179:3;32207:39;32240:5;32207:39;:::i;:::-;32262:89;32344:6;32339:3;32262:89;:::i;:::-;32255:96;;32360:52;32405:6;32400:3;32393:4;32386:5;32382:16;32360:52;:::i;:::-;32437:6;32432:3;32428:16;32421:23;;32183:267;32073:377;;;;:::o;32456:141::-;32505:4;32528:3;32520:11;;32551:3;32548:1;32541:14;32585:4;32582:1;32572:18;32564:26;;32456:141;;;:::o;32627:845::-;32730:3;32767:5;32761:12;32796:36;32822:9;32796:36;:::i;:::-;32848:89;32930:6;32925:3;32848:89;:::i;:::-;32841:96;;32968:1;32957:9;32953:17;32984:1;32979:137;;;;33130:1;33125:341;;;;32946:520;;32979:137;33063:4;33059:9;33048;33044:25;33039:3;33032:38;33099:6;33094:3;33090:16;33083:23;;32979:137;;33125:341;33192:38;33224:5;33192:38;:::i;:::-;33252:1;33266:154;33280:6;33277:1;33274:13;33266:154;;;33354:7;33348:14;33344:1;33339:3;33335:11;33328:35;33404:1;33395:7;33391:15;33380:26;;33302:4;33299:1;33295:12;33290:17;;33266:154;;;33449:6;33444:3;33440:16;33433:23;;33132:334;;32946:520;;32734:738;;32627:845;;;;:::o;33478:589::-;33703:3;33725:95;33816:3;33807:6;33725:95;:::i;:::-;33718:102;;33837:95;33928:3;33919:6;33837:95;:::i;:::-;33830:102;;33949:92;34037:3;34028:6;33949:92;:::i;:::-;33942:99;;34058:3;34051:10;;33478:589;;;;;;:::o;34073:225::-;34213:34;34209:1;34201:6;34197:14;34190:58;34282:8;34277:2;34269:6;34265:15;34258:33;34073:225;:::o;34304:366::-;34446:3;34467:67;34531:2;34526:3;34467:67;:::i;:::-;34460:74;;34543:93;34632:3;34543:93;:::i;:::-;34661:2;34656:3;34652:12;34645:19;;34304:366;;;:::o;34676:419::-;34842:4;34880:2;34869:9;34865:18;34857:26;;34929:9;34923:4;34919:20;34915:1;34904:9;34900:17;34893:47;34957:131;35083:4;34957:131;:::i;:::-;34949:139;;34676:419;;;:::o;35101:182::-;35241:34;35237:1;35229:6;35225:14;35218:58;35101:182;:::o;35289:366::-;35431:3;35452:67;35516:2;35511:3;35452:67;:::i;:::-;35445:74;;35528:93;35617:3;35528:93;:::i;:::-;35646:2;35641:3;35637:12;35630:19;;35289:366;;;:::o;35661:419::-;35827:4;35865:2;35854:9;35850:18;35842:26;;35914:9;35908:4;35904:20;35900:1;35889:9;35885:17;35878:47;35942:131;36068:4;35942:131;:::i;:::-;35934:139;;35661:419;;;:::o;36086:98::-;36137:6;36171:5;36165:12;36155:22;;36086:98;;;:::o;36190:168::-;36273:11;36307:6;36302:3;36295:19;36347:4;36342:3;36338:14;36323:29;;36190:168;;;;:::o;36364:360::-;36450:3;36478:38;36510:5;36478:38;:::i;:::-;36532:70;36595:6;36590:3;36532:70;:::i;:::-;36525:77;;36611:52;36656:6;36651:3;36644:4;36637:5;36633:16;36611:52;:::i;:::-;36688:29;36710:6;36688:29;:::i;:::-;36683:3;36679:39;36672:46;;36454:270;36364:360;;;;:::o;36730:640::-;36925:4;36963:3;36952:9;36948:19;36940:27;;36977:71;37045:1;37034:9;37030:17;37021:6;36977:71;:::i;:::-;37058:72;37126:2;37115:9;37111:18;37102:6;37058:72;:::i;:::-;37140;37208:2;37197:9;37193:18;37184:6;37140:72;:::i;:::-;37259:9;37253:4;37249:20;37244:2;37233:9;37229:18;37222:48;37287:76;37358:4;37349:6;37287:76;:::i;:::-;37279:84;;36730:640;;;;;;;:::o;37376:141::-;37432:5;37463:6;37457:13;37448:22;;37479:32;37505:5;37479:32;:::i;:::-;37376:141;;;;:::o;37523:349::-;37592:6;37641:2;37629:9;37620:7;37616:23;37612:32;37609:119;;;37647:79;;:::i;:::-;37609:119;37767:1;37792:63;37847:7;37838:6;37827:9;37823:22;37792:63;:::i;:::-;37782:73;;37738:127;37523:349;;;;:::o;37878:233::-;37917:3;37940:24;37958:5;37940:24;:::i;:::-;37931:33;;37986:66;37979:5;37976:77;37973:103;;;38056:18;;:::i;:::-;37973:103;38103:1;38096:5;38092:13;38085:20;;37878:233;;;:::o;38117:180::-;38165:77;38162:1;38155:88;38262:4;38259:1;38252:15;38286:4;38283:1;38276:15;38303:185;38343:1;38360:20;38378:1;38360:20;:::i;:::-;38355:25;;38394:20;38412:1;38394:20;:::i;:::-;38389:25;;38433:1;38423:35;;38438:18;;:::i;:::-;38423:35;38480:1;38477;38473:9;38468:14;;38303:185;;;;:::o;38494:176::-;38526:1;38543:20;38561:1;38543:20;:::i;:::-;38538:25;;38577:20;38595:1;38577:20;:::i;:::-;38572:25;;38616:1;38606:35;;38621:18;;:::i;:::-;38606:35;38662:1;38659;38655:9;38650:14;;38494:176;;;;:::o

Swarm Source

ipfs://5fec03b87bf83e2537b2179295fa761e076ab24bddc67bfcec3b119e1b05836c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.