ETH Price: $3,094.64 (+0.78%)
Gas: 6 Gwei

Token

MOON LIZZYS (MLIZ)
 

Overview

Max Total Supply

9,999 MLIZ

Holders

2,254

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 MLIZ
0xe632c58b8a3ffc068c6c4777f3ce63eb31f2cb92
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:
MOONLIZZYS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 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.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

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

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

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


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
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`
     * - `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) 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 collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

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


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

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @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 virtual 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[] calldata tokenIds)
        external
        view
        virtual
        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 virtual 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 collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual 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;
        }
    }
}

// File: contracts/MOONLIZZY-A.sol


pragma solidity ^0.8.4;




contract MOONLIZZYS is ERC721AQueryable, Ownable, Pausable {
    uint256 public MAX_MINTS = 100;
    uint256 public MAX_SUPPLY = 4999;
    uint256 public price = 0.005 ether;
    bool public freemint = true;
    uint256 freeQuantity = 3;

    string public baseURI;

    mapping (address => bool) public claimedFree;
    uint256 public claimCounter;

    constructor() ERC721A("MOON LIZZYS", "MLIZ") {}

    function mint(uint256 quantity) external payable {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "mint: Exceeded the limit per wallet");
        require(totalSupply() + quantity <= MAX_SUPPLY, "mint: Not enough tokens left");
        require(msg.value >= (price * quantity), "mint: Not enough ether sent");

        _safeMint(msg.sender, quantity);
    }

    function freeMint() external {
        require(claimedFree[msg.sender] == false, "freeMint: wallet already claimed");
        require(freemint == true, "freeMint: Free mint is not active");
        claimedFree[msg.sender] = true;
        claimCounter += freeQuantity;
        _safeMint(msg.sender, freeQuantity);
    }

    function airDrop(address[] calldata addrs, uint256 quantity) external onlyOwner {
        uint256 len = addrs.length;
        require(totalSupply() + (quantity * len) <= MAX_SUPPLY, "airDrop: Not enough tokens to airdrop");
        for (uint256 i = 0; i < len; i++) {
            _safeMint(addrs[i], quantity);
        }
    }

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

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

    function setMaxMint(uint256 _max) external onlyOwner {
        MAX_MINTS = _max;
    }

    function toggleFreeMint() external onlyOwner {
        freemint = !freemint;
    }

    function toggleAllMintPause() external onlyOwner {
        paused() ? _unpause() : _pause();
    }

    function setBaseURI(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }

    function updateFreeQuantity(uint256 _num) external onlyOwner {
        freeQuantity = _num;
    }

    function updateMaxSupply(uint256 _max) external onlyOwner {
        MAX_SUPPLY = _max;
    }

    function withdraw() external onlyOwner {
        require(address(this).balance > 0, "withdraw: contract balance must be greater than 0"); 
        uint256 balance = address(this).balance; 
        payable(msg.sender).transfer(balance);
    }

}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freemint","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleAllMintPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"updateFreeQuantity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526064600955611387600a556611c37937e08000600b556001600c60006101000a81548160ff0219169083151502179055506003600d553480156200004757600080fd5b506040518060400160405280600b81526020017f4d4f4f4e204c495a5a59530000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4c495a000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000cc92919062000212565b508060039080519060200190620000e592919062000212565b50620000f66200013f60201b60201c565b60008190555050506200011e620001126200014460201b60201c565b6200014c60201b60201c565b6000600860146101000a81548160ff02191690831515021790555062000327565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022090620002c2565b90600052602060002090601f01602090048101928262000244576000855562000290565b82601f106200025f57805160ff191683800117855562000290565b8280016001018555821562000290579182015b828111156200028f57825182559160200191906001019062000272565b5b5090506200029f9190620002a3565b5090565b5b80821115620002be576000816000905550600101620002a4565b5090565b60006002820490506001821680620002db57607f821691505b60208210811415620002f257620002f1620002f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613e6a80620003376000396000f3fe60806040526004361061023b5760003560e01c806372c0fa541161012e578063ac47e8a6116100ab578063e985e9c51161006f578063e985e9c514610850578063f103b4331461088d578063f2fde38b146108b6578063f9cb63ac146108df578063fd1fc4a01461090a5761023b565b8063ac47e8a614610745578063b88d4fde14610782578063c23dc68f146107ab578063c87b56dd146107e8578063cce132d1146108255761023b565b806399a2557a116100f257806399a2557a1461066f578063a035b1fe146106ac578063a0712d68146106d7578063a22cb465146106f3578063a4d0e8641461071c5761023b565b806372c0fa541461059c5780638462151c146105b35780638da5cb5b146105f057806391b7f5ed1461061b57806395d89b41146106445761023b565b80634efa8f17116101bc5780635c975abb116101805780635c975abb146104b55780636352211e146104e05780636c0360eb1461051d57806370a0823114610548578063715018a6146105855761023b565b80634efa8f17146103e4578063547520fe1461040f57806355f804b3146104385780635b70ea9f146104615780635bbb2177146104785761023b565b806323b872dd1161020357806323b872dd14610339578063274a32d31461036257806332cb6b0c146103795780633ccfd60b146103a457806342842e0e146103bb5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612f57565b610933565b6040516102749190613528565b60405180910390f35b34801561028957600080fd5b506102926109c5565b60405161029f9190613543565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612ffa565b610a57565b6040516102dc919061347d565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612e17565b610ad6565b005b34801561031a57600080fd5b50610323610c1a565b60405161033091906136e0565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190612d01565b610c31565b005b34801561036e57600080fd5b50610377610f56565b005b34801561038557600080fd5b5061038e610f82565b60405161039b91906136e0565b60405180910390f35b3480156103b057600080fd5b506103b9610f88565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190612d01565b611022565b005b3480156103f057600080fd5b506103f9611042565b60405161040691906136e0565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612ffa565b611048565b005b34801561044457600080fd5b5061045f600480360381019061045a9190612fb1565b61105a565b005b34801561046d57600080fd5b5061047661107c565b005b34801561048457600080fd5b5061049f600480360381019061049a9190612f0a565b6111e6565b6040516104ac91906134e4565b60405180910390f35b3480156104c157600080fd5b506104ca6112a9565b6040516104d79190613528565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190612ffa565b6112c0565b604051610514919061347d565b60405180910390f35b34801561052957600080fd5b506105326112d2565b60405161053f9190613543565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612c94565b611360565b60405161057c91906136e0565b60405180910390f35b34801561059157600080fd5b5061059a611419565b005b3480156105a857600080fd5b506105b161142d565b005b3480156105bf57600080fd5b506105da60048036038101906105d59190612c94565b611461565b6040516105e79190613506565b60405180910390f35b3480156105fc57600080fd5b506106056115ab565b604051610612919061347d565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190612ffa565b6115d5565b005b34801561065057600080fd5b506106596115e7565b6040516106669190613543565b60405180910390f35b34801561067b57600080fd5b5061069660048036038101906106919190612e57565b611679565b6040516106a39190613506565b60405180910390f35b3480156106b857600080fd5b506106c161188d565b6040516106ce91906136e0565b60405180910390f35b6106f160048036038101906106ec9190612ffa565b611893565b005b3480156106ff57600080fd5b5061071a60048036038101906107159190612dd7565b61199f565b005b34801561072857600080fd5b50610743600480360381019061073e9190612ffa565b611b17565b005b34801561075157600080fd5b5061076c60048036038101906107679190612c94565b611b29565b6040516107799190613528565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a49190612d54565b611b49565b005b3480156107b757600080fd5b506107d260048036038101906107cd9190612ffa565b611bbc565b6040516107df91906136c5565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190612ffa565b611c26565b60405161081c9190613543565b60405180910390f35b34801561083157600080fd5b5061083a611cc5565b60405161084791906136e0565b60405180910390f35b34801561085c57600080fd5b5061087760048036038101906108729190612cc1565b611ccb565b6040516108849190613528565b60405180910390f35b34801561089957600080fd5b506108b460048036038101906108af9190612ffa565b611d5f565b005b3480156108c257600080fd5b506108dd60048036038101906108d89190612c94565b611d71565b005b3480156108eb57600080fd5b506108f4611df5565b6040516109019190613528565b60405180910390f35b34801561091657600080fd5b50610931600480360381019061092c9190612eaa565b611e08565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109be5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109d4906139c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a00906139c0565b8015610a4d5780601f10610a2257610100808354040283529160200191610a4d565b820191906000526020600020905b815481529060010190602001808311610a3057829003601f168201915b5050505050905090565b6000610a6282611ed0565b610a98576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae1826112c0565b90508073ffffffffffffffffffffffffffffffffffffffff16610b02611f2f565b73ffffffffffffffffffffffffffffffffffffffff1614610b6557610b2e81610b29611f2f565b611ccb565b610b64576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c24611f37565b6001546000540303905090565b6000610c3c82611f3c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ca3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610caf8461200a565b91509150610cc58187610cc0611f2f565b612031565b610d1157610cda86610cd5611f2f565b611ccb565b610d10576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d78576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d858686866001612075565b8015610d9057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5e85610e3a88888761207b565b7c0200000000000000000000000000000000000000000000000000000000176120a3565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ee6576000600185019050600060046000838152602001908152602001600020541415610ee4576000548114610ee3578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f4e86868660016120ce565b505050505050565b610f5e6120d4565b610f666112a9565b610f7757610f72612152565b610f80565b610f7f6121b5565b5b565b600a5481565b610f906120d4565b60004711610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca906136a5565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561101e573d6000803e3d6000fd5b5050565b61103d83838360405180602001604052806000815250611b49565b505050565b60105481565b6110506120d4565b8060098190555050565b6110626120d4565b80600e90805190602001906110789291906129ad565b5050565b60001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690613685565b60405180910390fd5b60011515600c60009054906101000a900460ff16151514611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c90613565565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600d54601060008282546111d19190613837565b925050819055506111e433600d54612218565b565b6060600083839050905060008167ffffffffffffffff81111561120c5761120b613af9565b5b60405190808252806020026020018201604052801561124557816020015b611232612a33565b81526020019060019003908161122a5790505b50905060005b82811461129d5761127486868381811061126857611267613aca565b5b90506020020135611bbc565b82828151811061128757611286613aca565b5b602002602001018190525080600101905061124b565b50809250505092915050565b6000600860149054906101000a900460ff16905090565b60006112cb82611f3c565b9050919050565b600e80546112df906139c0565b80601f016020809104026020016040519081016040528092919081815260200182805461130b906139c0565b80156113585780601f1061132d57610100808354040283529160200191611358565b820191906000526020600020905b81548152906001019060200180831161133b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114216120d4565b61142b6000612236565b565b6114356120d4565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6060600080600061147185611360565b905060008167ffffffffffffffff81111561148f5761148e613af9565b5b6040519080825280602002602001820160405280156114bd5781602001602082028036833780820191505090505b5090506114c8612a33565b60006114d2611f37565b90505b83861461159d576114e5816122fc565b91508160400151156114f657611592565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461153657816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611591578083878060010198508151811061158457611583613aca565b5b6020026020010181815250505b5b8060010190506114d5565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115dd6120d4565b80600b8190555050565b6060600380546115f6906139c0565b80601f0160208091040260200160405190810160405280929190818152602001828054611622906139c0565b801561166f5780601f106116445761010080835404028352916020019161166f565b820191906000526020600020905b81548152906001019060200180831161165257829003601f168201915b5050505050905090565b60608183106116b4576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116bf612327565b90506116c9611f37565b8510156116db576116d8611f37565b94505b808411156116e7578093505b60006116f287611360565b90508486101561171557600086860390508181101561170f578091505b5061171a565b600090505b60008167ffffffffffffffff81111561173657611735613af9565b5b6040519080825280602002602001820160405280156117645781602001602082028036833780820191505090505b509050600082141561177c5780945050505050611886565b600061178788611bbc565b90506000816040015161179c57816000015190505b60008990505b8881141580156117b25750848714155b15611878576117c0816122fc565b92508260400151156117d15761186d565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461181157826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561186c578084888060010199508151811061185f5761185e613aca565b5b6020026020010181815250505b5b8060010190506117a2565b508583528296505050505050505b9392505050565b600b5481565b60095461189f33612330565b826118aa9190613837565b11156118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e2906135e5565b60405180910390fd5b600a54816118f7610c1a565b6119019190613837565b1115611942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193990613625565b60405180910390fd5b80600b54611950919061388d565b341015611992576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611989906135c5565b60405180910390fd5b61199c3382612218565b50565b6119a7611f2f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a19611f2f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac6611f2f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b0b9190613528565b60405180910390a35050565b611b1f6120d4565b80600d8190555050565b600f6020528060005260406000206000915054906101000a900460ff1681565b611b54848484610c31565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bb657611b7f84848484612387565b611bb5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611bc4612a33565b611bcc612a33565b611bd4611f37565b831080611be85750611be4612327565b8310155b15611bf65780915050611c21565b611bff836122fc565b9050806040015115611c145780915050611c21565b611c1d836124e7565b9150505b919050565b6060611c3182611ed0565b611c67576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c71612507565b9050600081511415611c925760405180602001604052806000815250611cbd565b80611c9c84612599565b604051602001611cad929190613459565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d676120d4565b80600a8190555050565b611d796120d4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de0906135a5565b60405180910390fd5b611df281612236565b50565b600c60009054906101000a900460ff1681565b611e106120d4565b6000838390509050600a548183611e27919061388d565b611e2f610c1a565b611e399190613837565b1115611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7190613645565b60405180910390fd5b60005b81811015611ec957611eb6858583818110611e9b57611e9a613aca565b5b9050602002016020810190611eb09190612c94565b84612218565b8080611ec190613a23565b915050611e7d565b5050505050565b600081611edb611f37565b11158015611eea575060005482105b8015611f28575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611f4b611f37565b11611fd357600054811015611fd25760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611fd0575b6000811415611fc6576004600083600190039350838152602001908152602001600020549050611f9b565b8092505050612005565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86120928686846125e9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6120dc6125f2565b73ffffffffffffffffffffffffffffffffffffffff166120fa6115ab565b73ffffffffffffffffffffffffffffffffffffffff1614612150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214790613665565b60405180910390fd5b565b61215a6125fa565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861219e6125f2565b6040516121ab919061347d565b60405180910390a1565b6121bd612644565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6122016125f2565b60405161220e919061347d565b60405180910390a1565b61223282826040518060200160405280600081525061268d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612304612a33565b612320600460008481526020019081526020016000205461272a565b9050919050565b60008054905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123ad611f2f565b8786866040518563ffffffff1660e01b81526004016123cf9493929190613498565b602060405180830381600087803b1580156123e957600080fd5b505af192505050801561241a57506040513d601f19601f820116820180604052508101906124179190612f84565b60015b612494573d806000811461244a576040519150601f19603f3d011682016040523d82523d6000602084013e61244f565b606091505b5060008151141561248c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6124ef612a33565b6125006124fb83611f3c565b61272a565b9050919050565b6060600e8054612516906139c0565b80601f0160208091040260200160405190810160405280929190818152602001828054612542906139c0565b801561258f5780601f106125645761010080835404028352916020019161258f565b820191906000526020600020905b81548152906001019060200180831161257257829003601f168201915b5050505050905090565b606060806040510190508060405280825b6001156125d557600183039250600a81066030018353600a81049050806125d0576125d5565b6125aa565b508181036020830392508083525050919050565b60009392505050565b600033905090565b6126026112a9565b15612642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263990613605565b60405180910390fd5b565b61264c6112a9565b61268b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268290613585565b60405180910390fd5b565b61269783836127e0565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461272557600080549050600083820390505b6126d76000868380600101945086612387565b61270d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126c457816000541461272257600080fd5b50505b505050565b612732612a33565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000805490506000821415612821576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61282e6000848385612075565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128a583612896600086600061207b565b61289f8561299d565b176120a3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461294657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061290b565b506000821415612982576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061299860008483856120ce565b505050565b60006001821460e11b9050919050565b8280546129b9906139c0565b90600052602060002090601f0160209004810192826129db5760008555612a22565b82601f106129f457805160ff1916838001178555612a22565b82800160010185558215612a22579182015b82811115612a21578251825591602001919060010190612a06565b5b509050612a2f9190612a82565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612a9b576000816000905550600101612a83565b5090565b6000612ab2612aad84613720565b6136fb565b905082815260208101848484011115612ace57612acd613b37565b5b612ad984828561397e565b509392505050565b6000612af4612aef84613751565b6136fb565b905082815260208101848484011115612b1057612b0f613b37565b5b612b1b84828561397e565b509392505050565b600081359050612b3281613dd8565b92915050565b60008083601f840112612b4e57612b4d613b2d565b5b8235905067ffffffffffffffff811115612b6b57612b6a613b28565b5b602083019150836020820283011115612b8757612b86613b32565b5b9250929050565b60008083601f840112612ba457612ba3613b2d565b5b8235905067ffffffffffffffff811115612bc157612bc0613b28565b5b602083019150836020820283011115612bdd57612bdc613b32565b5b9250929050565b600081359050612bf381613def565b92915050565b600081359050612c0881613e06565b92915050565b600081519050612c1d81613e06565b92915050565b600082601f830112612c3857612c37613b2d565b5b8135612c48848260208601612a9f565b91505092915050565b600082601f830112612c6657612c65613b2d565b5b8135612c76848260208601612ae1565b91505092915050565b600081359050612c8e81613e1d565b92915050565b600060208284031215612caa57612ca9613b41565b5b6000612cb884828501612b23565b91505092915050565b60008060408385031215612cd857612cd7613b41565b5b6000612ce685828601612b23565b9250506020612cf785828601612b23565b9150509250929050565b600080600060608486031215612d1a57612d19613b41565b5b6000612d2886828701612b23565b9350506020612d3986828701612b23565b9250506040612d4a86828701612c7f565b9150509250925092565b60008060008060808587031215612d6e57612d6d613b41565b5b6000612d7c87828801612b23565b9450506020612d8d87828801612b23565b9350506040612d9e87828801612c7f565b925050606085013567ffffffffffffffff811115612dbf57612dbe613b3c565b5b612dcb87828801612c23565b91505092959194509250565b60008060408385031215612dee57612ded613b41565b5b6000612dfc85828601612b23565b9250506020612e0d85828601612be4565b9150509250929050565b60008060408385031215612e2e57612e2d613b41565b5b6000612e3c85828601612b23565b9250506020612e4d85828601612c7f565b9150509250929050565b600080600060608486031215612e7057612e6f613b41565b5b6000612e7e86828701612b23565b9350506020612e8f86828701612c7f565b9250506040612ea086828701612c7f565b9150509250925092565b600080600060408486031215612ec357612ec2613b41565b5b600084013567ffffffffffffffff811115612ee157612ee0613b3c565b5b612eed86828701612b38565b93509350506020612f0086828701612c7f565b9150509250925092565b60008060208385031215612f2157612f20613b41565b5b600083013567ffffffffffffffff811115612f3f57612f3e613b3c565b5b612f4b85828601612b8e565b92509250509250929050565b600060208284031215612f6d57612f6c613b41565b5b6000612f7b84828501612bf9565b91505092915050565b600060208284031215612f9a57612f99613b41565b5b6000612fa884828501612c0e565b91505092915050565b600060208284031215612fc757612fc6613b41565b5b600082013567ffffffffffffffff811115612fe557612fe4613b3c565b5b612ff184828501612c51565b91505092915050565b6000602082840312156130105761300f613b41565b5b600061301e84828501612c7f565b91505092915050565b60006130338383613373565b60808301905092915050565b600061304b838361342c565b60208301905092915050565b613060816138e7565b82525050565b61306f816138e7565b82525050565b6000613080826137a2565b61308a81856137e8565b935061309583613782565b8060005b838110156130c65781516130ad8882613027565b97506130b8836137ce565b925050600181019050613099565b5085935050505092915050565b60006130de826137ad565b6130e881856137f9565b93506130f383613792565b8060005b8381101561312457815161310b888261303f565b9750613116836137db565b9250506001810190506130f7565b5085935050505092915050565b61313a816138f9565b82525050565b613149816138f9565b82525050565b600061315a826137b8565b613164818561380a565b935061317481856020860161398d565b61317d81613b46565b840191505092915050565b6000613193826137c3565b61319d818561381b565b93506131ad81856020860161398d565b6131b681613b46565b840191505092915050565b60006131cc826137c3565b6131d6818561382c565b93506131e681856020860161398d565b80840191505092915050565b60006131ff60218361381b565b915061320a82613b57565b604082019050919050565b600061322260148361381b565b915061322d82613ba6565b602082019050919050565b600061324560268361381b565b915061325082613bcf565b604082019050919050565b6000613268601b8361381b565b915061327382613c1e565b602082019050919050565b600061328b60238361381b565b915061329682613c47565b604082019050919050565b60006132ae60108361381b565b91506132b982613c96565b602082019050919050565b60006132d1601c8361381b565b91506132dc82613cbf565b602082019050919050565b60006132f460258361381b565b91506132ff82613ce8565b604082019050919050565b600061331760208361381b565b915061332282613d37565b602082019050919050565b600061333a60208361381b565b915061334582613d60565b602082019050919050565b600061335d60318361381b565b915061336882613d89565b604082019050919050565b6080820160008201516133896000850182613057565b50602082015161339c602085018261344a565b5060408201516133af6040850182613131565b5060608201516133c2606085018261341d565b50505050565b6080820160008201516133de6000850182613057565b5060208201516133f1602085018261344a565b5060408201516134046040850182613131565b506060820151613417606085018261341d565b50505050565b61342681613951565b82525050565b61343581613960565b82525050565b61344481613960565b82525050565b6134538161396a565b82525050565b600061346582856131c1565b915061347182846131c1565b91508190509392505050565b60006020820190506134926000830184613066565b92915050565b60006080820190506134ad6000830187613066565b6134ba6020830186613066565b6134c7604083018561343b565b81810360608301526134d9818461314f565b905095945050505050565b600060208201905081810360008301526134fe8184613075565b905092915050565b6000602082019050818103600083015261352081846130d3565b905092915050565b600060208201905061353d6000830184613140565b92915050565b6000602082019050818103600083015261355d8184613188565b905092915050565b6000602082019050818103600083015261357e816131f2565b9050919050565b6000602082019050818103600083015261359e81613215565b9050919050565b600060208201905081810360008301526135be81613238565b9050919050565b600060208201905081810360008301526135de8161325b565b9050919050565b600060208201905081810360008301526135fe8161327e565b9050919050565b6000602082019050818103600083015261361e816132a1565b9050919050565b6000602082019050818103600083015261363e816132c4565b9050919050565b6000602082019050818103600083015261365e816132e7565b9050919050565b6000602082019050818103600083015261367e8161330a565b9050919050565b6000602082019050818103600083015261369e8161332d565b9050919050565b600060208201905081810360008301526136be81613350565b9050919050565b60006080820190506136da60008301846133c8565b92915050565b60006020820190506136f5600083018461343b565b92915050565b6000613705613716565b905061371182826139f2565b919050565b6000604051905090565b600067ffffffffffffffff82111561373b5761373a613af9565b5b61374482613b46565b9050602081019050919050565b600067ffffffffffffffff82111561376c5761376b613af9565b5b61377582613b46565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061384282613960565b915061384d83613960565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561388257613881613a6c565b5b828201905092915050565b600061389882613960565b91506138a383613960565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138dc576138db613a6c565b5b828202905092915050565b60006138f282613931565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156139ab578082015181840152602081019050613990565b838111156139ba576000848401525b50505050565b600060028204905060018216806139d857607f821691505b602082108114156139ec576139eb613a9b565b5b50919050565b6139fb82613b46565b810181811067ffffffffffffffff82111715613a1a57613a19613af9565b5b80604052505050565b6000613a2e82613960565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a6157613a60613a6c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f667265654d696e743a2046726565206d696e74206973206e6f7420616374697660008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d696e743a204e6f7420656e6f7567682065746865722073656e740000000000600082015250565b7f6d696e743a20457863656564656420746865206c696d6974207065722077616c60008201527f6c65740000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f6d696e743a204e6f7420656e6f75676820746f6b656e73206c65667400000000600082015250565b7f61697244726f703a204e6f7420656e6f75676820746f6b656e7320746f20616960008201527f7264726f70000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f667265654d696e743a2077616c6c657420616c726561647920636c61696d6564600082015250565b7f77697468647261773a20636f6e74726163742062616c616e6365206d7573742060008201527f62652067726561746572207468616e2030000000000000000000000000000000602082015250565b613de1816138e7565b8114613dec57600080fd5b50565b613df8816138f9565b8114613e0357600080fd5b50565b613e0f81613905565b8114613e1a57600080fd5b50565b613e2681613960565b8114613e3157600080fd5b5056fea2646970667358221220a83e51df29dfaf641683650004fc8201e02b770ff4db6326ac2df297d993c1d464736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806372c0fa541161012e578063ac47e8a6116100ab578063e985e9c51161006f578063e985e9c514610850578063f103b4331461088d578063f2fde38b146108b6578063f9cb63ac146108df578063fd1fc4a01461090a5761023b565b8063ac47e8a614610745578063b88d4fde14610782578063c23dc68f146107ab578063c87b56dd146107e8578063cce132d1146108255761023b565b806399a2557a116100f257806399a2557a1461066f578063a035b1fe146106ac578063a0712d68146106d7578063a22cb465146106f3578063a4d0e8641461071c5761023b565b806372c0fa541461059c5780638462151c146105b35780638da5cb5b146105f057806391b7f5ed1461061b57806395d89b41146106445761023b565b80634efa8f17116101bc5780635c975abb116101805780635c975abb146104b55780636352211e146104e05780636c0360eb1461051d57806370a0823114610548578063715018a6146105855761023b565b80634efa8f17146103e4578063547520fe1461040f57806355f804b3146104385780635b70ea9f146104615780635bbb2177146104785761023b565b806323b872dd1161020357806323b872dd14610339578063274a32d31461036257806332cb6b0c146103795780633ccfd60b146103a457806342842e0e146103bb5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612f57565b610933565b6040516102749190613528565b60405180910390f35b34801561028957600080fd5b506102926109c5565b60405161029f9190613543565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612ffa565b610a57565b6040516102dc919061347d565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612e17565b610ad6565b005b34801561031a57600080fd5b50610323610c1a565b60405161033091906136e0565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190612d01565b610c31565b005b34801561036e57600080fd5b50610377610f56565b005b34801561038557600080fd5b5061038e610f82565b60405161039b91906136e0565b60405180910390f35b3480156103b057600080fd5b506103b9610f88565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190612d01565b611022565b005b3480156103f057600080fd5b506103f9611042565b60405161040691906136e0565b60405180910390f35b34801561041b57600080fd5b5061043660048036038101906104319190612ffa565b611048565b005b34801561044457600080fd5b5061045f600480360381019061045a9190612fb1565b61105a565b005b34801561046d57600080fd5b5061047661107c565b005b34801561048457600080fd5b5061049f600480360381019061049a9190612f0a565b6111e6565b6040516104ac91906134e4565b60405180910390f35b3480156104c157600080fd5b506104ca6112a9565b6040516104d79190613528565b60405180910390f35b3480156104ec57600080fd5b5061050760048036038101906105029190612ffa565b6112c0565b604051610514919061347d565b60405180910390f35b34801561052957600080fd5b506105326112d2565b60405161053f9190613543565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612c94565b611360565b60405161057c91906136e0565b60405180910390f35b34801561059157600080fd5b5061059a611419565b005b3480156105a857600080fd5b506105b161142d565b005b3480156105bf57600080fd5b506105da60048036038101906105d59190612c94565b611461565b6040516105e79190613506565b60405180910390f35b3480156105fc57600080fd5b506106056115ab565b604051610612919061347d565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190612ffa565b6115d5565b005b34801561065057600080fd5b506106596115e7565b6040516106669190613543565b60405180910390f35b34801561067b57600080fd5b5061069660048036038101906106919190612e57565b611679565b6040516106a39190613506565b60405180910390f35b3480156106b857600080fd5b506106c161188d565b6040516106ce91906136e0565b60405180910390f35b6106f160048036038101906106ec9190612ffa565b611893565b005b3480156106ff57600080fd5b5061071a60048036038101906107159190612dd7565b61199f565b005b34801561072857600080fd5b50610743600480360381019061073e9190612ffa565b611b17565b005b34801561075157600080fd5b5061076c60048036038101906107679190612c94565b611b29565b6040516107799190613528565b60405180910390f35b34801561078e57600080fd5b506107a960048036038101906107a49190612d54565b611b49565b005b3480156107b757600080fd5b506107d260048036038101906107cd9190612ffa565b611bbc565b6040516107df91906136c5565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190612ffa565b611c26565b60405161081c9190613543565b60405180910390f35b34801561083157600080fd5b5061083a611cc5565b60405161084791906136e0565b60405180910390f35b34801561085c57600080fd5b5061087760048036038101906108729190612cc1565b611ccb565b6040516108849190613528565b60405180910390f35b34801561089957600080fd5b506108b460048036038101906108af9190612ffa565b611d5f565b005b3480156108c257600080fd5b506108dd60048036038101906108d89190612c94565b611d71565b005b3480156108eb57600080fd5b506108f4611df5565b6040516109019190613528565b60405180910390f35b34801561091657600080fd5b50610931600480360381019061092c9190612eaa565b611e08565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109be5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109d4906139c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610a00906139c0565b8015610a4d5780601f10610a2257610100808354040283529160200191610a4d565b820191906000526020600020905b815481529060010190602001808311610a3057829003601f168201915b5050505050905090565b6000610a6282611ed0565b610a98576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae1826112c0565b90508073ffffffffffffffffffffffffffffffffffffffff16610b02611f2f565b73ffffffffffffffffffffffffffffffffffffffff1614610b6557610b2e81610b29611f2f565b611ccb565b610b64576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c24611f37565b6001546000540303905090565b6000610c3c82611f3c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ca3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610caf8461200a565b91509150610cc58187610cc0611f2f565b612031565b610d1157610cda86610cd5611f2f565b611ccb565b610d10576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d78576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d858686866001612075565b8015610d9057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5e85610e3a88888761207b565b7c0200000000000000000000000000000000000000000000000000000000176120a3565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ee6576000600185019050600060046000838152602001908152602001600020541415610ee4576000548114610ee3578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f4e86868660016120ce565b505050505050565b610f5e6120d4565b610f666112a9565b610f7757610f72612152565b610f80565b610f7f6121b5565b5b565b600a5481565b610f906120d4565b60004711610fd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fca906136a5565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561101e573d6000803e3d6000fd5b5050565b61103d83838360405180602001604052806000815250611b49565b505050565b60105481565b6110506120d4565b8060098190555050565b6110626120d4565b80600e90805190602001906110789291906129ad565b5050565b60001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690613685565b60405180910390fd5b60011515600c60009054906101000a900460ff16151514611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c90613565565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600d54601060008282546111d19190613837565b925050819055506111e433600d54612218565b565b6060600083839050905060008167ffffffffffffffff81111561120c5761120b613af9565b5b60405190808252806020026020018201604052801561124557816020015b611232612a33565b81526020019060019003908161122a5790505b50905060005b82811461129d5761127486868381811061126857611267613aca565b5b90506020020135611bbc565b82828151811061128757611286613aca565b5b602002602001018190525080600101905061124b565b50809250505092915050565b6000600860149054906101000a900460ff16905090565b60006112cb82611f3c565b9050919050565b600e80546112df906139c0565b80601f016020809104026020016040519081016040528092919081815260200182805461130b906139c0565b80156113585780601f1061132d57610100808354040283529160200191611358565b820191906000526020600020905b81548152906001019060200180831161133b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114216120d4565b61142b6000612236565b565b6114356120d4565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6060600080600061147185611360565b905060008167ffffffffffffffff81111561148f5761148e613af9565b5b6040519080825280602002602001820160405280156114bd5781602001602082028036833780820191505090505b5090506114c8612a33565b60006114d2611f37565b90505b83861461159d576114e5816122fc565b91508160400151156114f657611592565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461153657816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611591578083878060010198508151811061158457611583613aca565b5b6020026020010181815250505b5b8060010190506114d5565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115dd6120d4565b80600b8190555050565b6060600380546115f6906139c0565b80601f0160208091040260200160405190810160405280929190818152602001828054611622906139c0565b801561166f5780601f106116445761010080835404028352916020019161166f565b820191906000526020600020905b81548152906001019060200180831161165257829003601f168201915b5050505050905090565b60608183106116b4576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116bf612327565b90506116c9611f37565b8510156116db576116d8611f37565b94505b808411156116e7578093505b60006116f287611360565b90508486101561171557600086860390508181101561170f578091505b5061171a565b600090505b60008167ffffffffffffffff81111561173657611735613af9565b5b6040519080825280602002602001820160405280156117645781602001602082028036833780820191505090505b509050600082141561177c5780945050505050611886565b600061178788611bbc565b90506000816040015161179c57816000015190505b60008990505b8881141580156117b25750848714155b15611878576117c0816122fc565b92508260400151156117d15761186d565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461181157826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561186c578084888060010199508151811061185f5761185e613aca565b5b6020026020010181815250505b5b8060010190506117a2565b508583528296505050505050505b9392505050565b600b5481565b60095461189f33612330565b826118aa9190613837565b11156118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e2906135e5565b60405180910390fd5b600a54816118f7610c1a565b6119019190613837565b1115611942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193990613625565b60405180910390fd5b80600b54611950919061388d565b341015611992576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611989906135c5565b60405180910390fd5b61199c3382612218565b50565b6119a7611f2f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a19611f2f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac6611f2f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b0b9190613528565b60405180910390a35050565b611b1f6120d4565b80600d8190555050565b600f6020528060005260406000206000915054906101000a900460ff1681565b611b54848484610c31565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bb657611b7f84848484612387565b611bb5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611bc4612a33565b611bcc612a33565b611bd4611f37565b831080611be85750611be4612327565b8310155b15611bf65780915050611c21565b611bff836122fc565b9050806040015115611c145780915050611c21565b611c1d836124e7565b9150505b919050565b6060611c3182611ed0565b611c67576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c71612507565b9050600081511415611c925760405180602001604052806000815250611cbd565b80611c9c84612599565b604051602001611cad929190613459565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d676120d4565b80600a8190555050565b611d796120d4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de0906135a5565b60405180910390fd5b611df281612236565b50565b600c60009054906101000a900460ff1681565b611e106120d4565b6000838390509050600a548183611e27919061388d565b611e2f610c1a565b611e399190613837565b1115611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7190613645565b60405180910390fd5b60005b81811015611ec957611eb6858583818110611e9b57611e9a613aca565b5b9050602002016020810190611eb09190612c94565b84612218565b8080611ec190613a23565b915050611e7d565b5050505050565b600081611edb611f37565b11158015611eea575060005482105b8015611f28575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611f4b611f37565b11611fd357600054811015611fd25760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611fd0575b6000811415611fc6576004600083600190039350838152602001908152602001600020549050611f9b565b8092505050612005565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86120928686846125e9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6120dc6125f2565b73ffffffffffffffffffffffffffffffffffffffff166120fa6115ab565b73ffffffffffffffffffffffffffffffffffffffff1614612150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214790613665565b60405180910390fd5b565b61215a6125fa565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861219e6125f2565b6040516121ab919061347d565b60405180910390a1565b6121bd612644565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6122016125f2565b60405161220e919061347d565b60405180910390a1565b61223282826040518060200160405280600081525061268d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612304612a33565b612320600460008481526020019081526020016000205461272a565b9050919050565b60008054905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123ad611f2f565b8786866040518563ffffffff1660e01b81526004016123cf9493929190613498565b602060405180830381600087803b1580156123e957600080fd5b505af192505050801561241a57506040513d601f19601f820116820180604052508101906124179190612f84565b60015b612494573d806000811461244a576040519150601f19603f3d011682016040523d82523d6000602084013e61244f565b606091505b5060008151141561248c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6124ef612a33565b6125006124fb83611f3c565b61272a565b9050919050565b6060600e8054612516906139c0565b80601f0160208091040260200160405190810160405280929190818152602001828054612542906139c0565b801561258f5780601f106125645761010080835404028352916020019161258f565b820191906000526020600020905b81548152906001019060200180831161257257829003601f168201915b5050505050905090565b606060806040510190508060405280825b6001156125d557600183039250600a81066030018353600a81049050806125d0576125d5565b6125aa565b508181036020830392508083525050919050565b60009392505050565b600033905090565b6126026112a9565b15612642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263990613605565b60405180910390fd5b565b61264c6112a9565b61268b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268290613585565b60405180910390fd5b565b61269783836127e0565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461272557600080549050600083820390505b6126d76000868380600101945086612387565b61270d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126c457816000541461272257600080fd5b50505b505050565b612732612a33565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000805490506000821415612821576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61282e6000848385612075565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128a583612896600086600061207b565b61289f8561299d565b176120a3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461294657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061290b565b506000821415612982576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061299860008483856120ce565b505050565b60006001821460e11b9050919050565b8280546129b9906139c0565b90600052602060002090601f0160209004810192826129db5760008555612a22565b82601f106129f457805160ff1916838001178555612a22565b82800160010185558215612a22579182015b82811115612a21578251825591602001919060010190612a06565b5b509050612a2f9190612a82565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612a9b576000816000905550600101612a83565b5090565b6000612ab2612aad84613720565b6136fb565b905082815260208101848484011115612ace57612acd613b37565b5b612ad984828561397e565b509392505050565b6000612af4612aef84613751565b6136fb565b905082815260208101848484011115612b1057612b0f613b37565b5b612b1b84828561397e565b509392505050565b600081359050612b3281613dd8565b92915050565b60008083601f840112612b4e57612b4d613b2d565b5b8235905067ffffffffffffffff811115612b6b57612b6a613b28565b5b602083019150836020820283011115612b8757612b86613b32565b5b9250929050565b60008083601f840112612ba457612ba3613b2d565b5b8235905067ffffffffffffffff811115612bc157612bc0613b28565b5b602083019150836020820283011115612bdd57612bdc613b32565b5b9250929050565b600081359050612bf381613def565b92915050565b600081359050612c0881613e06565b92915050565b600081519050612c1d81613e06565b92915050565b600082601f830112612c3857612c37613b2d565b5b8135612c48848260208601612a9f565b91505092915050565b600082601f830112612c6657612c65613b2d565b5b8135612c76848260208601612ae1565b91505092915050565b600081359050612c8e81613e1d565b92915050565b600060208284031215612caa57612ca9613b41565b5b6000612cb884828501612b23565b91505092915050565b60008060408385031215612cd857612cd7613b41565b5b6000612ce685828601612b23565b9250506020612cf785828601612b23565b9150509250929050565b600080600060608486031215612d1a57612d19613b41565b5b6000612d2886828701612b23565b9350506020612d3986828701612b23565b9250506040612d4a86828701612c7f565b9150509250925092565b60008060008060808587031215612d6e57612d6d613b41565b5b6000612d7c87828801612b23565b9450506020612d8d87828801612b23565b9350506040612d9e87828801612c7f565b925050606085013567ffffffffffffffff811115612dbf57612dbe613b3c565b5b612dcb87828801612c23565b91505092959194509250565b60008060408385031215612dee57612ded613b41565b5b6000612dfc85828601612b23565b9250506020612e0d85828601612be4565b9150509250929050565b60008060408385031215612e2e57612e2d613b41565b5b6000612e3c85828601612b23565b9250506020612e4d85828601612c7f565b9150509250929050565b600080600060608486031215612e7057612e6f613b41565b5b6000612e7e86828701612b23565b9350506020612e8f86828701612c7f565b9250506040612ea086828701612c7f565b9150509250925092565b600080600060408486031215612ec357612ec2613b41565b5b600084013567ffffffffffffffff811115612ee157612ee0613b3c565b5b612eed86828701612b38565b93509350506020612f0086828701612c7f565b9150509250925092565b60008060208385031215612f2157612f20613b41565b5b600083013567ffffffffffffffff811115612f3f57612f3e613b3c565b5b612f4b85828601612b8e565b92509250509250929050565b600060208284031215612f6d57612f6c613b41565b5b6000612f7b84828501612bf9565b91505092915050565b600060208284031215612f9a57612f99613b41565b5b6000612fa884828501612c0e565b91505092915050565b600060208284031215612fc757612fc6613b41565b5b600082013567ffffffffffffffff811115612fe557612fe4613b3c565b5b612ff184828501612c51565b91505092915050565b6000602082840312156130105761300f613b41565b5b600061301e84828501612c7f565b91505092915050565b60006130338383613373565b60808301905092915050565b600061304b838361342c565b60208301905092915050565b613060816138e7565b82525050565b61306f816138e7565b82525050565b6000613080826137a2565b61308a81856137e8565b935061309583613782565b8060005b838110156130c65781516130ad8882613027565b97506130b8836137ce565b925050600181019050613099565b5085935050505092915050565b60006130de826137ad565b6130e881856137f9565b93506130f383613792565b8060005b8381101561312457815161310b888261303f565b9750613116836137db565b9250506001810190506130f7565b5085935050505092915050565b61313a816138f9565b82525050565b613149816138f9565b82525050565b600061315a826137b8565b613164818561380a565b935061317481856020860161398d565b61317d81613b46565b840191505092915050565b6000613193826137c3565b61319d818561381b565b93506131ad81856020860161398d565b6131b681613b46565b840191505092915050565b60006131cc826137c3565b6131d6818561382c565b93506131e681856020860161398d565b80840191505092915050565b60006131ff60218361381b565b915061320a82613b57565b604082019050919050565b600061322260148361381b565b915061322d82613ba6565b602082019050919050565b600061324560268361381b565b915061325082613bcf565b604082019050919050565b6000613268601b8361381b565b915061327382613c1e565b602082019050919050565b600061328b60238361381b565b915061329682613c47565b604082019050919050565b60006132ae60108361381b565b91506132b982613c96565b602082019050919050565b60006132d1601c8361381b565b91506132dc82613cbf565b602082019050919050565b60006132f460258361381b565b91506132ff82613ce8565b604082019050919050565b600061331760208361381b565b915061332282613d37565b602082019050919050565b600061333a60208361381b565b915061334582613d60565b602082019050919050565b600061335d60318361381b565b915061336882613d89565b604082019050919050565b6080820160008201516133896000850182613057565b50602082015161339c602085018261344a565b5060408201516133af6040850182613131565b5060608201516133c2606085018261341d565b50505050565b6080820160008201516133de6000850182613057565b5060208201516133f1602085018261344a565b5060408201516134046040850182613131565b506060820151613417606085018261341d565b50505050565b61342681613951565b82525050565b61343581613960565b82525050565b61344481613960565b82525050565b6134538161396a565b82525050565b600061346582856131c1565b915061347182846131c1565b91508190509392505050565b60006020820190506134926000830184613066565b92915050565b60006080820190506134ad6000830187613066565b6134ba6020830186613066565b6134c7604083018561343b565b81810360608301526134d9818461314f565b905095945050505050565b600060208201905081810360008301526134fe8184613075565b905092915050565b6000602082019050818103600083015261352081846130d3565b905092915050565b600060208201905061353d6000830184613140565b92915050565b6000602082019050818103600083015261355d8184613188565b905092915050565b6000602082019050818103600083015261357e816131f2565b9050919050565b6000602082019050818103600083015261359e81613215565b9050919050565b600060208201905081810360008301526135be81613238565b9050919050565b600060208201905081810360008301526135de8161325b565b9050919050565b600060208201905081810360008301526135fe8161327e565b9050919050565b6000602082019050818103600083015261361e816132a1565b9050919050565b6000602082019050818103600083015261363e816132c4565b9050919050565b6000602082019050818103600083015261365e816132e7565b9050919050565b6000602082019050818103600083015261367e8161330a565b9050919050565b6000602082019050818103600083015261369e8161332d565b9050919050565b600060208201905081810360008301526136be81613350565b9050919050565b60006080820190506136da60008301846133c8565b92915050565b60006020820190506136f5600083018461343b565b92915050565b6000613705613716565b905061371182826139f2565b919050565b6000604051905090565b600067ffffffffffffffff82111561373b5761373a613af9565b5b61374482613b46565b9050602081019050919050565b600067ffffffffffffffff82111561376c5761376b613af9565b5b61377582613b46565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061384282613960565b915061384d83613960565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561388257613881613a6c565b5b828201905092915050565b600061389882613960565b91506138a383613960565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138dc576138db613a6c565b5b828202905092915050565b60006138f282613931565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156139ab578082015181840152602081019050613990565b838111156139ba576000848401525b50505050565b600060028204905060018216806139d857607f821691505b602082108114156139ec576139eb613a9b565b5b50919050565b6139fb82613b46565b810181811067ffffffffffffffff82111715613a1a57613a19613af9565b5b80604052505050565b6000613a2e82613960565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613a6157613a60613a6c565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f667265654d696e743a2046726565206d696e74206973206e6f7420616374697660008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f6d696e743a204e6f7420656e6f7567682065746865722073656e740000000000600082015250565b7f6d696e743a20457863656564656420746865206c696d6974207065722077616c60008201527f6c65740000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f6d696e743a204e6f7420656e6f75676820746f6b656e73206c65667400000000600082015250565b7f61697244726f703a204e6f7420656e6f75676820746f6b656e7320746f20616960008201527f7264726f70000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f667265654d696e743a2077616c6c657420616c726561647920636c61696d6564600082015250565b7f77697468647261773a20636f6e74726163742062616c616e6365206d7573742060008201527f62652067726561746572207468616e2030000000000000000000000000000000602082015250565b613de1816138e7565b8114613dec57600080fd5b50565b613df8816138f9565b8114613e0357600080fd5b50565b613e0f81613905565b8114613e1a57600080fd5b50565b613e2681613960565b8114613e3157600080fd5b5056fea2646970667358221220a83e51df29dfaf641683650004fc8201e02b770ff4db6326ac2df297d993c1d464736f6c63430008070033

Deployed Bytecode Sourcemap

66122:2620:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24683:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25585:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32068:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31509:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21336:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35775:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68075:100;;;;;;;;;;;;;:::i;:::-;;66225:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68492:245;;;;;;;;;;;;;:::i;:::-;;38688:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66453:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67887:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68183:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67013:324;;;;;;;;;;;;;:::i;:::-;;61266:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2566:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26978:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66372:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22520:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5431:103;;;;;;;;;;;;;:::i;:::-;;67983:84;;;;;;;;;;;;;:::i;:::-;;65142:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4783:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67793:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25761:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62182:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66264:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66544:461;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32626:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68283:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66402:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39471:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60679:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25971:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66188:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33091:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68390:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5689:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66305:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67345:332;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24683:639;24768:4;25107:10;25092:25;;:11;:25;;;;:102;;;;25184:10;25169:25;;:11;:25;;;;25092:102;:179;;;;25261:10;25246:25;;:11;:25;;;;25092:179;25072:199;;24683:639;;;:::o;25585:100::-;25639:13;25672:5;25665:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25585:100;:::o;32068:218::-;32144:7;32169:16;32177:7;32169;:16::i;:::-;32164:64;;32194:34;;;;;;;;;;;;;;32164:64;32248:15;:24;32264:7;32248:24;;;;;;;;;;;:30;;;;;;;;;;;;32241:37;;32068:218;;;:::o;31509:400::-;31590:13;31606:16;31614:7;31606;:16::i;:::-;31590:32;;31662:5;31639:28;;:19;:17;:19::i;:::-;:28;;;31635:175;;31687:44;31704:5;31711:19;:17;:19::i;:::-;31687:16;:44::i;:::-;31682:128;;31759:35;;;;;;;;;;;;;;31682:128;31635:175;31855:2;31822:15;:24;31838:7;31822:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31893:7;31889:2;31873:28;;31882:5;31873:28;;;;;;;;;;;;31579:330;31509:400;;:::o;21336:323::-;21397:7;21625:15;:13;:15::i;:::-;21610:12;;21594:13;;:28;:46;21587:53;;21336:323;:::o;35775:2817::-;35909:27;35939;35958:7;35939:18;:27::i;:::-;35909:57;;36024:4;35983:45;;35999:19;35983:45;;;35979:86;;36037:28;;;;;;;;;;;;;;35979:86;36079:27;36108:23;36135:35;36162:7;36135:26;:35::i;:::-;36078:92;;;;36270:68;36295:15;36312:4;36318:19;:17;:19::i;:::-;36270:24;:68::i;:::-;36265:180;;36358:43;36375:4;36381:19;:17;:19::i;:::-;36358:16;:43::i;:::-;36353:92;;36410:35;;;;;;;;;;;;;;36353:92;36265:180;36476:1;36462:16;;:2;:16;;;36458:52;;;36487:23;;;;;;;;;;;;;;36458:52;36523:43;36545:4;36551:2;36555:7;36564:1;36523:21;:43::i;:::-;36659:15;36656:160;;;36799:1;36778:19;36771:30;36656:160;37196:18;:24;37215:4;37196:24;;;;;;;;;;;;;;;;37194:26;;;;;;;;;;;;37265:18;:22;37284:2;37265:22;;;;;;;;;;;;;;;;37263:24;;;;;;;;;;;37587:146;37624:2;37673:45;37688:4;37694:2;37698:19;37673:14;:45::i;:::-;17735:8;37645:73;37587:18;:146::i;:::-;37558:17;:26;37576:7;37558:26;;;;;;;;;;;:175;;;;37904:1;17735:8;37853:19;:47;:52;37849:627;;;37926:19;37958:1;37948:7;:11;37926:33;;38115:1;38081:17;:30;38099:11;38081:30;;;;;;;;;;;;:35;38077:384;;;38219:13;;38204:11;:28;38200:242;;38399:19;38366:17;:30;38384:11;38366:30;;;;;;;;;;;:52;;;;38200:242;38077:384;37907:569;37849:627;38523:7;38519:2;38504:27;;38513:4;38504:27;;;;;;;;;;;;38542:42;38563:4;38569:2;38573:7;38582:1;38542:20;:42::i;:::-;35898:2694;;;35775:2817;;;:::o;68075:100::-;4669:13;:11;:13::i;:::-;68135:8:::1;:6;:8::i;:::-;:32;;68159:8;:6;:8::i;:::-;68135:32;;;68146:10;:8;:10::i;:::-;68135:32;68075:100::o:0;66225:32::-;;;;:::o;68492:245::-;4669:13;:11;:13::i;:::-;68574:1:::1;68550:21;:25;68542:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;68641:15;68659:21;68641:39;;68700:10;68692:28;;:37;68721:7;68692:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;68531:206;68492:245::o:0;38688:185::-;38826:39;38843:4;38849:2;38853:7;38826:39;;;;;;;;;;;;:16;:39::i;:::-;38688:185;;;:::o;66453:27::-;;;;:::o;67887:88::-;4669:13;:11;:13::i;:::-;67963:4:::1;67951:9;:16;;;;67887:88:::0;:::o;68183:92::-;4669:13;:11;:13::i;:::-;68263:4:::1;68253:7;:14;;;;;;;;;;;;:::i;:::-;;68183:92:::0;:::o;67013:324::-;67088:5;67061:32;;:11;:23;67073:10;67061:23;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;67053:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;67161:4;67149:16;;:8;;;;;;;;;;;:16;;;67141:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;67240:4;67214:11;:23;67226:10;67214:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;67271:12;;67255;;:28;;;;;;;:::i;:::-;;;;;;;;67294:35;67304:10;67316:12;;67294:9;:35::i;:::-;67013:324::o;61266:528::-;61410:23;61476:22;61501:8;;:15;;61476:40;;61531:34;61589:14;61568:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;61531:73;;61624:9;61619:125;61640:14;61635:1;:19;61619:125;;61696:32;61716:8;;61725:1;61716:11;;;;;;;:::i;:::-;;;;;;;;61696:19;:32::i;:::-;61680:10;61691:1;61680:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;61656:3;;;;;61619:125;;;;61765:10;61758:17;;;;61266:528;;;;:::o;2566:86::-;2613:4;2637:7;;;;;;;;;;;2630:14;;2566:86;:::o;26978:152::-;27050:7;27093:27;27112:7;27093:18;:27::i;:::-;27070:52;;26978:152;;;:::o;66372:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22520:233::-;22592:7;22633:1;22616:19;;:5;:19;;;22612:60;;;22644:28;;;;;;;;;;;;;;22612:60;16679:13;22690:18;:25;22709:5;22690:25;;;;;;;;;;;;;;;;:55;22683:62;;22520:233;;;:::o;5431:103::-;4669:13;:11;:13::i;:::-;5496:30:::1;5523:1;5496:18;:30::i;:::-;5431:103::o:0;67983:84::-;4669:13;:11;:13::i;:::-;68051:8:::1;;;;;;;;;;;68050:9;68039:8;;:20;;;;;;;;;;;;;;;;;;67983:84::o:0;65142:900::-;65220:16;65274:19;65308:25;65348:22;65373:16;65383:5;65373:9;:16::i;:::-;65348:41;;65404:25;65446:14;65432:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65404:57;;65476:31;;:::i;:::-;65527:9;65539:15;:13;:15::i;:::-;65527:27;;65522:472;65571:14;65556:11;:29;65522:472;;65623:15;65636:1;65623:12;:15::i;:::-;65611:27;;65661:9;:16;;;65657:73;;;65702:8;;65657:73;65778:1;65752:28;;:9;:14;;;:28;;;65748:111;;65825:9;:14;;;65805:34;;65748:111;65902:5;65881:26;;:17;:26;;;65877:102;;;65958:1;65932:8;65941:13;;;;;;65932:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;65877:102;65522:472;65587:3;;;;;65522:472;;;;66015:8;66008:15;;;;;;;65142:900;;;:::o;4783:87::-;4829:7;4856:6;;;;;;;;;;;4849:13;;4783:87;:::o;67793:86::-;4669:13;:11;:13::i;:::-;67865:6:::1;67857:5;:14;;;;67793:86:::0;:::o;25761:104::-;25817:13;25850:7;25843:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25761:104;:::o;62182:2513::-;62325:16;62392:4;62383:5;:13;62379:45;;62405:19;;;;;;;;;;;;;;62379:45;62439:19;62473:17;62493:14;:12;:14::i;:::-;62473:34;;62593:15;:13;:15::i;:::-;62585:5;:23;62581:87;;;62637:15;:13;:15::i;:::-;62629:23;;62581:87;62744:9;62737:4;:16;62733:73;;;62781:9;62774:16;;62733:73;62820:25;62848:16;62858:5;62848:9;:16::i;:::-;62820:44;;63042:4;63034:5;:12;63030:278;;;63067:19;63096:5;63089:4;:12;63067:34;;63138:17;63124:11;:31;63120:111;;;63200:11;63180:31;;63120:111;63048:198;63030:278;;;63291:1;63271:21;;63030:278;63322:25;63364:17;63350:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63322:60;;63422:1;63401:17;:22;63397:78;;;63451:8;63444:15;;;;;;;;63397:78;63619:31;63653:26;63673:5;63653:19;:26::i;:::-;63619:60;;63694:25;63939:9;:16;;;63934:92;;63996:9;:14;;;63976:34;;63934:92;64045:9;64057:5;64045:17;;64040:478;64069:4;64064:1;:9;;:45;;;;;64092:17;64077:11;:32;;64064:45;64040:478;;;64147:15;64160:1;64147:12;:15::i;:::-;64135:27;;64185:9;:16;;;64181:73;;;64226:8;;64181:73;64302:1;64276:28;;:9;:14;;;:28;;;64272:111;;64349:9;:14;;;64329:34;;64272:111;64426:5;64405:26;;:17;:26;;;64401:102;;;64482:1;64456:8;64465:13;;;;;;64456:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;64401:102;64040:478;64111:3;;;;;64040:478;;;;64620:11;64610:8;64603:29;64668:8;64661:15;;;;;;;;62182:2513;;;;;;:::o;66264:34::-;;;;:::o;66544:461::-;66732:9;;66703:25;66717:10;66703:13;:25::i;:::-;66692:8;:36;;;;:::i;:::-;:49;;66684:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;66828:10;;66816:8;66800:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;66792:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;66912:8;66904:5;;:16;;;;:::i;:::-;66890:9;:31;;66882:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;66966:31;66976:10;66988:8;66966:9;:31::i;:::-;66544:461;:::o;32626:308::-;32737:19;:17;:19::i;:::-;32725:31;;:8;:31;;;32721:61;;;32765:17;;;;;;;;;;;;;;32721:61;32847:8;32795:18;:39;32814:19;:17;:19::i;:::-;32795:39;;;;;;;;;;;;;;;:49;32835:8;32795:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32907:8;32871:55;;32886:19;:17;:19::i;:::-;32871:55;;;32917:8;32871:55;;;;;;:::i;:::-;;;;;;;;32626:308;;:::o;68283:99::-;4669:13;:11;:13::i;:::-;68370:4:::1;68355:12;:19;;;;68283:99:::0;:::o;66402:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;39471:399::-;39638:31;39651:4;39657:2;39661:7;39638:12;:31::i;:::-;39702:1;39684:2;:14;;;:19;39680:183;;39723:56;39754:4;39760:2;39764:7;39773:5;39723:30;:56::i;:::-;39718:145;;39807:40;;;;;;;;;;;;;;39718:145;39680:183;39471:399;;;;:::o;60679:428::-;60763:21;;:::i;:::-;60797:31;;:::i;:::-;60853:15;:13;:15::i;:::-;60843:7;:25;:54;;;;60883:14;:12;:14::i;:::-;60872:7;:25;;60843:54;60839:103;;;60921:9;60914:16;;;;;60839:103;60964:21;60977:7;60964:12;:21::i;:::-;60952:33;;61000:9;:16;;;60996:65;;;61040:9;61033:16;;;;;60996:65;61078:21;61091:7;61078:12;:21::i;:::-;61071:28;;;60679:428;;;;:::o;25971:318::-;26044:13;26075:16;26083:7;26075;:16::i;:::-;26070:59;;26100:29;;;;;;;;;;;;;;26070:59;26142:21;26166:10;:8;:10::i;:::-;26142:34;;26219:1;26200:7;26194:21;:26;;:87;;;;;;;;;;;;;;;;;26247:7;26256:18;26266:7;26256:9;:18::i;:::-;26230:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26194:87;26187:94;;;25971:318;;;:::o;66188:30::-;;;;:::o;33091:164::-;33188:4;33212:18;:25;33231:5;33212:25;;;;;;;;;;;;;;;:35;33238:8;33212:35;;;;;;;;;;;;;;;;;;;;;;;;;33205:42;;33091:164;;;;:::o;68390:94::-;4669:13;:11;:13::i;:::-;68472:4:::1;68459:10;:17;;;;68390:94:::0;:::o;5689:201::-;4669:13;:11;:13::i;:::-;5798:1:::1;5778:22;;:8;:22;;;;5770:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5854:28;5873:8;5854:18;:28::i;:::-;5689:201:::0;:::o;66305:27::-;;;;;;;;;;;;;:::o;67345:332::-;4669:13;:11;:13::i;:::-;67436:11:::1;67450:5;;:12;;67436:26;;67517:10;;67509:3;67498:8;:14;;;;:::i;:::-;67481:13;:11;:13::i;:::-;:32;;;;:::i;:::-;:46;;67473:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;67585:9;67580:90;67604:3;67600:1;:7;67580:90;;;67629:29;67639:5;;67645:1;67639:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;67649;67629:9;:29::i;:::-;67609:3;;;;;:::i;:::-;;;;67580:90;;;;67425:252;67345:332:::0;;;:::o;33513:282::-;33578:4;33634:7;33615:15;:13;:15::i;:::-;:26;;:66;;;;;33668:13;;33658:7;:23;33615:66;:153;;;;;33767:1;17455:8;33719:17;:26;33737:7;33719:26;;;;;;;;;;;;:44;:49;33615:153;33595:173;;33513:282;;;:::o;55279:105::-;55339:7;55366:10;55359:17;;55279:105;:::o;20852:92::-;20908:7;20852:92;:::o;28133:1275::-;28200:7;28220:12;28235:7;28220:22;;28303:4;28284:15;:13;:15::i;:::-;:23;28280:1061;;28337:13;;28330:4;:20;28326:1015;;;28375:14;28392:17;:23;28410:4;28392:23;;;;;;;;;;;;28375:40;;28509:1;17455:8;28481:6;:24;:29;28477:845;;;29146:113;29163:1;29153:6;:11;29146:113;;;29206:17;:25;29224:6;;;;;;;29206:25;;;;;;;;;;;;29197:34;;29146:113;;;29292:6;29285:13;;;;;;28477:845;28352:989;28326:1015;28280:1061;29369:31;;;;;;;;;;;;;;28133:1275;;;;:::o;34676:479::-;34778:27;34807:23;34848:38;34889:15;:24;34905:7;34889:24;;;;;;;;;;;34848:65;;35060:18;35037:41;;35117:19;35111:26;35092:45;;35022:126;34676:479;;;:::o;33904:659::-;34053:11;34218:16;34211:5;34207:28;34198:37;;34378:16;34367:9;34363:32;34350:45;;34528:15;34517:9;34514:30;34506:5;34495:9;34492:20;34489:56;34479:66;;33904:659;;;;;:::o;40532:159::-;;;;;:::o;54588:311::-;54723:7;54743:16;17859:3;54769:19;:41;;54743:68;;17859:3;54837:31;54848:4;54854:2;54858:9;54837:10;:31::i;:::-;54829:40;;:62;;54822:69;;;54588:311;;;;;:::o;29956:450::-;30036:14;30204:16;30197:5;30193:28;30184:37;;30381:5;30367:11;30342:23;30338:41;30335:52;30328:5;30325:63;30315:73;;29956:450;;;;:::o;41356:158::-;;;;;:::o;4948:132::-;5023:12;:10;:12::i;:::-;5012:23;;:7;:5;:7::i;:::-;:23;;;5004:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4948:132::o;3162:118::-;2171:19;:17;:19::i;:::-;3232:4:::1;3222:7;;:14;;;;;;;;;;;;;;;;;;3252:20;3259:12;:10;:12::i;:::-;3252:20;;;;;;:::i;:::-;;;;;;;;3162:118::o:0;3421:120::-;2430:16;:14;:16::i;:::-;3490:5:::1;3480:7;;:15;;;;;;;;;;;;;;;;;;3511:22;3520:12;:10;:12::i;:::-;3511:22;;;;;;:::i;:::-;;;;;;;;3421:120::o:0;49111:112::-;49188:27;49198:2;49202:8;49188:27;;;;;;;;;;;;:9;:27::i;:::-;49111:112;;:::o;6050:191::-;6124:16;6143:6;;;;;;;;;;;6124:25;;6169:8;6160:6;;:17;;;;;;;;;;;;;;;;;;6224:8;6193:40;;6214:8;6193:40;;;;;;;;;;;;6113:128;6050:191;:::o;27581:161::-;27649:21;;:::i;:::-;27690:44;27709:17;:24;27727:5;27709:24;;;;;;;;;;;;27690:18;:44::i;:::-;27683:51;;27581:161;;;:::o;21023:103::-;21078:7;21105:13;;21098:20;;21023:103;:::o;22835:178::-;22896:7;16679:13;16817:2;22924:18;:25;22943:5;22924:25;;;;;;;;;;;;;;;;:50;;22923:82;22916:89;;22835:178;;;:::o;41954:716::-;42117:4;42163:2;42138:45;;;42184:19;:17;:19::i;:::-;42205:4;42211:7;42220:5;42138:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42134:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42438:1;42421:6;:13;:18;42417:235;;;42467:40;;;;;;;;;;;;;;42417:235;42610:6;42604:13;42595:6;42591:2;42587:15;42580:38;42134:529;42307:54;;;42297:64;;;:6;:64;;;;42290:71;;;41954:716;;;;;;:::o;27319:166::-;27389:21;;:::i;:::-;27430:47;27449:27;27468:7;27449:18;:27::i;:::-;27430:18;:47::i;:::-;27423:54;;27319:166;;;:::o;67685:100::-;67737:13;67770:7;67763:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67685:100;:::o;55486:1581::-;55551:17;55976:4;55969;55963:11;55959:22;55952:29;;56068:3;56062:4;56055:17;56174:3;56413:5;56395:428;56421:1;56395:428;;;56461:1;56456:3;56452:11;56445:18;;56632:2;56626:4;56622:13;56618:2;56614:22;56609:3;56601:36;56726:2;56720:4;56716:13;56708:21;;56793:4;56783:25;;56801:5;;56783:25;56395:428;;;56399:21;56862:3;56857;56853:13;56977:4;56972:3;56968:14;56961:21;;57042:6;57037:3;57030:19;55590:1470;;55486:1581;;;:::o;54289:147::-;54426:6;54289:147;;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;2725:108::-;2796:8;:6;:8::i;:::-;2795:9;2787:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;2725:108::o;2910:::-;2977:8;:6;:8::i;:::-;2969:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2910:108::o;48338:689::-;48469:19;48475:2;48479:8;48469:5;:19::i;:::-;48548:1;48530:2;:14;;;:19;48526:483;;48570:11;48584:13;;48570:27;;48616:13;48638:8;48632:3;:14;48616:30;;48665:233;48696:62;48735:1;48739:2;48743:7;;;;;;48752:5;48696:30;:62::i;:::-;48691:167;;48794:40;;;;;;;;;;;;;;48691:167;48893:3;48885:5;:11;48665:233;;48980:3;48963:13;;:20;48959:34;;48985:8;;;48959:34;48551:458;;48526:483;48338:689;;;:::o;29507:366::-;29573:31;;:::i;:::-;29650:6;29617:9;:14;;:41;;;;;;;;;;;17338:3;29703:6;:33;;29669:9;:24;;:68;;;;;;;;;;;29795:1;17455:8;29767:6;:24;:29;;29748:9;:16;;:48;;;;;;;;;;;17859:3;29836:6;:28;;29807:9;:19;;:58;;;;;;;;;;;29507:366;;;:::o;43132:2454::-;43205:20;43228:13;;43205:36;;43268:1;43256:8;:13;43252:44;;;43278:18;;;;;;;;;;;;;;43252:44;43309:61;43339:1;43343:2;43347:12;43361:8;43309:21;:61::i;:::-;43853:1;16817:2;43823:1;:26;;43822:32;43810:8;:45;43784:18;:22;43803:2;43784:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44132:139;44169:2;44223:33;44246:1;44250:2;44254:1;44223:14;:33::i;:::-;44190:30;44211:8;44190:20;:30::i;:::-;:66;44132:18;:139::i;:::-;44098:17;:31;44116:12;44098:31;;;;;;;;;;;:173;;;;44288:16;44319:11;44348:8;44333:12;:23;44319:37;;44603:16;44599:2;44595:25;44583:37;;44975:12;44935:8;44894:1;44832:25;44773:1;44712;44685:335;45100:1;45086:12;45082:20;45040:346;45141:3;45132:7;45129:16;45040:346;;45359:7;45349:8;45346:1;45319:25;45316:1;45313;45308:59;45194:1;45185:7;45181:15;45170:26;;45040:346;;;45044:77;45431:1;45419:8;:13;45415:45;;;45441:19;;;;;;;;;;;;;;45415:45;45493:3;45477:13;:19;;;;43558:1950;;45518:60;45547:1;45551:2;45555:12;45569:8;45518:20;:60::i;:::-;43194:2392;43132:2454;;:::o;30508:324::-;30578:14;30811:1;30801:8;30798:15;30772:24;30768:46;30758:56;;30508:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1594:::-;1667:8;1677:6;1727:3;1720:4;1712:6;1708:17;1704:27;1694:122;;1735:79;;:::i;:::-;1694:122;1848:6;1835:20;1825:30;;1878:18;1870:6;1867:30;1864:117;;;1900:79;;:::i;:::-;1864:117;2014:4;2006:6;2002:17;1990:29;;2068:3;2060:4;2052:6;2048:17;2038:8;2034:32;2031:41;2028:128;;;2075:79;;:::i;:::-;2028:128;1594:568;;;;;:::o;2168:133::-;2211:5;2249:6;2236:20;2227:29;;2265:30;2289:5;2265:30;:::i;:::-;2168:133;;;;:::o;2307:137::-;2352:5;2390:6;2377:20;2368:29;;2406:32;2432:5;2406:32;:::i;:::-;2307:137;;;;:::o;2450:141::-;2506:5;2537:6;2531:13;2522:22;;2553:32;2579:5;2553:32;:::i;:::-;2450:141;;;;:::o;2610:338::-;2665:5;2714:3;2707:4;2699:6;2695:17;2691:27;2681:122;;2722:79;;:::i;:::-;2681:122;2839:6;2826:20;2864:78;2938:3;2930:6;2923:4;2915:6;2911:17;2864:78;:::i;:::-;2855:87;;2671:277;2610:338;;;;:::o;2968:340::-;3024:5;3073:3;3066:4;3058:6;3054:17;3050:27;3040:122;;3081:79;;:::i;:::-;3040:122;3198:6;3185:20;3223:79;3298:3;3290:6;3283:4;3275:6;3271:17;3223:79;:::i;:::-;3214:88;;3030:278;2968:340;;;;:::o;3314:139::-;3360:5;3398:6;3385:20;3376:29;;3414:33;3441:5;3414:33;:::i;:::-;3314:139;;;;:::o;3459:329::-;3518:6;3567:2;3555:9;3546:7;3542:23;3538:32;3535:119;;;3573:79;;:::i;:::-;3535:119;3693:1;3718:53;3763:7;3754:6;3743:9;3739:22;3718:53;:::i;:::-;3708:63;;3664:117;3459:329;;;;:::o;3794:474::-;3862:6;3870;3919:2;3907:9;3898:7;3894:23;3890:32;3887:119;;;3925:79;;:::i;:::-;3887:119;4045:1;4070:53;4115:7;4106:6;4095:9;4091:22;4070:53;:::i;:::-;4060:63;;4016:117;4172:2;4198:53;4243:7;4234:6;4223:9;4219:22;4198:53;:::i;:::-;4188:63;;4143:118;3794:474;;;;;:::o;4274:619::-;4351:6;4359;4367;4416:2;4404:9;4395:7;4391:23;4387:32;4384:119;;;4422:79;;:::i;:::-;4384:119;4542:1;4567:53;4612:7;4603:6;4592:9;4588:22;4567:53;:::i;:::-;4557:63;;4513:117;4669:2;4695:53;4740:7;4731:6;4720:9;4716:22;4695:53;:::i;:::-;4685:63;;4640:118;4797:2;4823:53;4868:7;4859:6;4848:9;4844:22;4823:53;:::i;:::-;4813:63;;4768:118;4274:619;;;;;:::o;4899:943::-;4994:6;5002;5010;5018;5067:3;5055:9;5046:7;5042:23;5038:33;5035:120;;;5074:79;;:::i;:::-;5035:120;5194:1;5219:53;5264:7;5255:6;5244:9;5240:22;5219:53;:::i;:::-;5209:63;;5165:117;5321:2;5347:53;5392:7;5383:6;5372:9;5368:22;5347:53;:::i;:::-;5337:63;;5292:118;5449:2;5475:53;5520:7;5511:6;5500:9;5496:22;5475:53;:::i;:::-;5465:63;;5420:118;5605:2;5594:9;5590:18;5577:32;5636:18;5628:6;5625:30;5622:117;;;5658:79;;:::i;:::-;5622:117;5763:62;5817:7;5808:6;5797:9;5793:22;5763:62;:::i;:::-;5753:72;;5548:287;4899:943;;;;;;;:::o;5848:468::-;5913:6;5921;5970:2;5958:9;5949:7;5945:23;5941:32;5938:119;;;5976:79;;:::i;:::-;5938:119;6096:1;6121:53;6166:7;6157:6;6146:9;6142:22;6121:53;:::i;:::-;6111:63;;6067:117;6223:2;6249:50;6291:7;6282:6;6271:9;6267:22;6249:50;:::i;:::-;6239:60;;6194:115;5848:468;;;;;:::o;6322:474::-;6390:6;6398;6447:2;6435:9;6426:7;6422:23;6418:32;6415:119;;;6453:79;;:::i;:::-;6415:119;6573:1;6598:53;6643:7;6634:6;6623:9;6619:22;6598:53;:::i;:::-;6588:63;;6544:117;6700:2;6726:53;6771:7;6762:6;6751:9;6747:22;6726:53;:::i;:::-;6716:63;;6671:118;6322:474;;;;;:::o;6802:619::-;6879:6;6887;6895;6944:2;6932:9;6923:7;6919:23;6915:32;6912:119;;;6950:79;;:::i;:::-;6912:119;7070:1;7095:53;7140:7;7131:6;7120:9;7116:22;7095:53;:::i;:::-;7085:63;;7041:117;7197:2;7223:53;7268:7;7259:6;7248:9;7244:22;7223:53;:::i;:::-;7213:63;;7168:118;7325:2;7351:53;7396:7;7387:6;7376:9;7372:22;7351:53;:::i;:::-;7341:63;;7296:118;6802:619;;;;;:::o;7427:704::-;7522:6;7530;7538;7587:2;7575:9;7566:7;7562:23;7558:32;7555:119;;;7593:79;;:::i;:::-;7555:119;7741:1;7730:9;7726:17;7713:31;7771:18;7763:6;7760:30;7757:117;;;7793:79;;:::i;:::-;7757:117;7906:80;7978:7;7969:6;7958:9;7954:22;7906:80;:::i;:::-;7888:98;;;;7684:312;8035:2;8061:53;8106:7;8097:6;8086:9;8082:22;8061:53;:::i;:::-;8051:63;;8006:118;7427:704;;;;;:::o;8137:559::-;8223:6;8231;8280:2;8268:9;8259:7;8255:23;8251:32;8248:119;;;8286:79;;:::i;:::-;8248:119;8434:1;8423:9;8419:17;8406:31;8464:18;8456:6;8453:30;8450:117;;;8486:79;;:::i;:::-;8450:117;8599:80;8671:7;8662:6;8651:9;8647:22;8599:80;:::i;:::-;8581:98;;;;8377:312;8137:559;;;;;:::o;8702:327::-;8760:6;8809:2;8797:9;8788:7;8784:23;8780:32;8777:119;;;8815:79;;:::i;:::-;8777:119;8935:1;8960:52;9004:7;8995:6;8984:9;8980:22;8960:52;:::i;:::-;8950:62;;8906:116;8702:327;;;;:::o;9035:349::-;9104:6;9153:2;9141:9;9132:7;9128:23;9124:32;9121:119;;;9159:79;;:::i;:::-;9121:119;9279:1;9304:63;9359:7;9350:6;9339:9;9335:22;9304:63;:::i;:::-;9294:73;;9250:127;9035:349;;;;:::o;9390:509::-;9459:6;9508:2;9496:9;9487:7;9483:23;9479:32;9476:119;;;9514:79;;:::i;:::-;9476:119;9662:1;9651:9;9647:17;9634:31;9692:18;9684:6;9681:30;9678:117;;;9714:79;;:::i;:::-;9678:117;9819:63;9874:7;9865:6;9854:9;9850:22;9819:63;:::i;:::-;9809:73;;9605:287;9390:509;;;;:::o;9905:329::-;9964:6;10013:2;10001:9;9992:7;9988:23;9984:32;9981:119;;;10019:79;;:::i;:::-;9981:119;10139:1;10164:53;10209:7;10200:6;10189:9;10185:22;10164:53;:::i;:::-;10154:63;;10110:117;9905:329;;;;:::o;10240:303::-;10371:10;10392:108;10496:3;10488:6;10392:108;:::i;:::-;10532:4;10527:3;10523:14;10509:28;;10240:303;;;;:::o;10549:179::-;10618:10;10639:46;10681:3;10673:6;10639:46;:::i;:::-;10717:4;10712:3;10708:14;10694:28;;10549:179;;;;:::o;10734:108::-;10811:24;10829:5;10811:24;:::i;:::-;10806:3;10799:37;10734:108;;:::o;10848:118::-;10935:24;10953:5;10935:24;:::i;:::-;10930:3;10923:37;10848:118;;:::o;11048:980::-;11229:3;11258:85;11337:5;11258:85;:::i;:::-;11359:117;11469:6;11464:3;11359:117;:::i;:::-;11352:124;;11500:87;11581:5;11500:87;:::i;:::-;11610:7;11641:1;11626:377;11651:6;11648:1;11645:13;11626:377;;;11727:6;11721:13;11754:125;11875:3;11860:13;11754:125;:::i;:::-;11747:132;;11902:91;11986:6;11902:91;:::i;:::-;11892:101;;11686:317;11673:1;11670;11666:9;11661:14;;11626:377;;;11630:14;12019:3;12012:10;;11234:794;;;11048:980;;;;:::o;12064:732::-;12183:3;12212:54;12260:5;12212:54;:::i;:::-;12282:86;12361:6;12356:3;12282:86;:::i;:::-;12275:93;;12392:56;12442:5;12392:56;:::i;:::-;12471:7;12502:1;12487:284;12512:6;12509:1;12506:13;12487:284;;;12588:6;12582:13;12615:63;12674:3;12659:13;12615:63;:::i;:::-;12608:70;;12701:60;12754:6;12701:60;:::i;:::-;12691:70;;12547:224;12534:1;12531;12527:9;12522:14;;12487:284;;;12491:14;12787:3;12780:10;;12188:608;;;12064:732;;;;:::o;12802:99::-;12873:21;12888:5;12873:21;:::i;:::-;12868:3;12861:34;12802:99;;:::o;12907:109::-;12988:21;13003:5;12988:21;:::i;:::-;12983:3;12976:34;12907:109;;:::o;13022:360::-;13108:3;13136:38;13168:5;13136:38;:::i;:::-;13190:70;13253:6;13248:3;13190:70;:::i;:::-;13183:77;;13269:52;13314:6;13309:3;13302:4;13295:5;13291:16;13269:52;:::i;:::-;13346:29;13368:6;13346:29;:::i;:::-;13341:3;13337:39;13330:46;;13112:270;13022:360;;;;:::o;13388:364::-;13476:3;13504:39;13537:5;13504:39;:::i;:::-;13559:71;13623:6;13618:3;13559:71;:::i;:::-;13552:78;;13639:52;13684:6;13679:3;13672:4;13665:5;13661:16;13639:52;:::i;:::-;13716:29;13738:6;13716:29;:::i;:::-;13711:3;13707:39;13700:46;;13480:272;13388:364;;;;:::o;13758:377::-;13864:3;13892:39;13925:5;13892:39;:::i;:::-;13947:89;14029:6;14024:3;13947:89;:::i;:::-;13940:96;;14045:52;14090:6;14085:3;14078:4;14071:5;14067:16;14045:52;:::i;:::-;14122:6;14117:3;14113:16;14106:23;;13868:267;13758:377;;;;:::o;14141:366::-;14283:3;14304:67;14368:2;14363:3;14304:67;:::i;:::-;14297:74;;14380:93;14469:3;14380:93;:::i;:::-;14498:2;14493:3;14489:12;14482:19;;14141:366;;;:::o;14513:::-;14655:3;14676:67;14740:2;14735:3;14676:67;:::i;:::-;14669:74;;14752:93;14841:3;14752:93;:::i;:::-;14870:2;14865:3;14861:12;14854:19;;14513:366;;;:::o;14885:::-;15027:3;15048:67;15112:2;15107:3;15048:67;:::i;:::-;15041:74;;15124:93;15213:3;15124:93;:::i;:::-;15242:2;15237:3;15233:12;15226:19;;14885:366;;;:::o;15257:::-;15399:3;15420:67;15484:2;15479:3;15420:67;:::i;:::-;15413:74;;15496:93;15585:3;15496:93;:::i;:::-;15614:2;15609:3;15605:12;15598:19;;15257:366;;;:::o;15629:::-;15771:3;15792:67;15856:2;15851:3;15792:67;:::i;:::-;15785:74;;15868:93;15957:3;15868:93;:::i;:::-;15986:2;15981:3;15977:12;15970:19;;15629:366;;;:::o;16001:::-;16143:3;16164:67;16228:2;16223:3;16164:67;:::i;:::-;16157:74;;16240:93;16329:3;16240:93;:::i;:::-;16358:2;16353:3;16349:12;16342:19;;16001:366;;;:::o;16373:::-;16515:3;16536:67;16600:2;16595:3;16536:67;:::i;:::-;16529:74;;16612:93;16701:3;16612:93;:::i;:::-;16730:2;16725:3;16721:12;16714:19;;16373:366;;;:::o;16745:::-;16887:3;16908:67;16972:2;16967:3;16908:67;:::i;:::-;16901:74;;16984:93;17073:3;16984:93;:::i;:::-;17102:2;17097:3;17093:12;17086:19;;16745:366;;;:::o;17117:::-;17259:3;17280:67;17344:2;17339:3;17280:67;:::i;:::-;17273:74;;17356:93;17445:3;17356:93;:::i;:::-;17474:2;17469:3;17465:12;17458:19;;17117:366;;;:::o;17489:::-;17631:3;17652:67;17716:2;17711:3;17652:67;:::i;:::-;17645:74;;17728:93;17817:3;17728:93;:::i;:::-;17846:2;17841:3;17837:12;17830:19;;17489:366;;;:::o;17861:::-;18003:3;18024:67;18088:2;18083:3;18024:67;:::i;:::-;18017:74;;18100:93;18189:3;18100:93;:::i;:::-;18218:2;18213:3;18209:12;18202:19;;17861:366;;;:::o;18305:864::-;18454:4;18449:3;18445:14;18541:4;18534:5;18530:16;18524:23;18560:63;18617:4;18612:3;18608:14;18594:12;18560:63;:::i;:::-;18469:164;18725:4;18718:5;18714:16;18708:23;18744:61;18799:4;18794:3;18790:14;18776:12;18744:61;:::i;:::-;18643:172;18899:4;18892:5;18888:16;18882:23;18918:57;18969:4;18964:3;18960:14;18946:12;18918:57;:::i;:::-;18825:160;19072:4;19065:5;19061:16;19055:23;19091:61;19146:4;19141:3;19137:14;19123:12;19091:61;:::i;:::-;18995:167;18423:746;18305:864;;:::o;19247:874::-;19406:4;19401:3;19397:14;19493:4;19486:5;19482:16;19476:23;19512:63;19569:4;19564:3;19560:14;19546:12;19512:63;:::i;:::-;19421:164;19677:4;19670:5;19666:16;19660:23;19696:61;19751:4;19746:3;19742:14;19728:12;19696:61;:::i;:::-;19595:172;19851:4;19844:5;19840:16;19834:23;19870:57;19921:4;19916:3;19912:14;19898:12;19870:57;:::i;:::-;19777:160;20024:4;20017:5;20013:16;20007:23;20043:61;20098:4;20093:3;20089:14;20075:12;20043:61;:::i;:::-;19947:167;19375:746;19247:874;;:::o;20127:105::-;20202:23;20219:5;20202:23;:::i;:::-;20197:3;20190:36;20127:105;;:::o;20238:108::-;20315:24;20333:5;20315:24;:::i;:::-;20310:3;20303:37;20238:108;;:::o;20352:118::-;20439:24;20457:5;20439:24;:::i;:::-;20434:3;20427:37;20352:118;;:::o;20476:105::-;20551:23;20568:5;20551:23;:::i;:::-;20546:3;20539:36;20476:105;;:::o;20587:435::-;20767:3;20789:95;20880:3;20871:6;20789:95;:::i;:::-;20782:102;;20901:95;20992:3;20983:6;20901:95;:::i;:::-;20894:102;;21013:3;21006:10;;20587:435;;;;;:::o;21028:222::-;21121:4;21159:2;21148:9;21144:18;21136:26;;21172:71;21240:1;21229:9;21225:17;21216:6;21172:71;:::i;:::-;21028:222;;;;:::o;21256:640::-;21451:4;21489:3;21478:9;21474:19;21466:27;;21503:71;21571:1;21560:9;21556:17;21547:6;21503:71;:::i;:::-;21584:72;21652:2;21641:9;21637:18;21628:6;21584:72;:::i;:::-;21666;21734:2;21723:9;21719:18;21710:6;21666:72;:::i;:::-;21785:9;21779:4;21775:20;21770:2;21759:9;21755:18;21748:48;21813:76;21884:4;21875:6;21813:76;:::i;:::-;21805:84;;21256:640;;;;;;;:::o;21902:497::-;22107:4;22145:2;22134:9;22130:18;22122:26;;22194:9;22188:4;22184:20;22180:1;22169:9;22165:17;22158:47;22222:170;22387:4;22378:6;22222:170;:::i;:::-;22214:178;;21902:497;;;;:::o;22405:373::-;22548:4;22586:2;22575:9;22571:18;22563:26;;22635:9;22629:4;22625:20;22621:1;22610:9;22606:17;22599:47;22663:108;22766:4;22757:6;22663:108;:::i;:::-;22655:116;;22405:373;;;;:::o;22784:210::-;22871:4;22909:2;22898:9;22894:18;22886:26;;22922:65;22984:1;22973:9;22969:17;22960:6;22922:65;:::i;:::-;22784:210;;;;:::o;23000:313::-;23113:4;23151:2;23140:9;23136:18;23128:26;;23200:9;23194:4;23190:20;23186:1;23175:9;23171:17;23164:47;23228:78;23301:4;23292:6;23228:78;:::i;:::-;23220:86;;23000:313;;;;:::o;23319:419::-;23485:4;23523:2;23512:9;23508:18;23500:26;;23572:9;23566:4;23562:20;23558:1;23547:9;23543:17;23536:47;23600:131;23726:4;23600:131;:::i;:::-;23592:139;;23319:419;;;:::o;23744:::-;23910:4;23948:2;23937:9;23933:18;23925:26;;23997:9;23991:4;23987:20;23983:1;23972:9;23968:17;23961:47;24025:131;24151:4;24025:131;:::i;:::-;24017:139;;23744:419;;;:::o;24169:::-;24335:4;24373:2;24362:9;24358:18;24350:26;;24422:9;24416:4;24412:20;24408:1;24397:9;24393:17;24386:47;24450:131;24576:4;24450:131;:::i;:::-;24442:139;;24169:419;;;:::o;24594:::-;24760:4;24798:2;24787:9;24783:18;24775:26;;24847:9;24841:4;24837:20;24833:1;24822:9;24818:17;24811:47;24875:131;25001:4;24875:131;:::i;:::-;24867:139;;24594:419;;;:::o;25019:::-;25185:4;25223:2;25212:9;25208:18;25200:26;;25272:9;25266:4;25262:20;25258:1;25247:9;25243:17;25236:47;25300:131;25426:4;25300:131;:::i;:::-;25292:139;;25019:419;;;:::o;25444:::-;25610:4;25648:2;25637:9;25633:18;25625:26;;25697:9;25691:4;25687:20;25683:1;25672:9;25668:17;25661:47;25725:131;25851:4;25725:131;:::i;:::-;25717:139;;25444:419;;;:::o;25869:::-;26035:4;26073:2;26062:9;26058:18;26050:26;;26122:9;26116:4;26112:20;26108:1;26097:9;26093:17;26086:47;26150:131;26276:4;26150:131;:::i;:::-;26142:139;;25869:419;;;:::o;26294:::-;26460:4;26498:2;26487:9;26483:18;26475:26;;26547:9;26541:4;26537:20;26533:1;26522:9;26518:17;26511:47;26575:131;26701:4;26575:131;:::i;:::-;26567:139;;26294:419;;;:::o;26719:::-;26885:4;26923:2;26912:9;26908:18;26900:26;;26972:9;26966:4;26962:20;26958:1;26947:9;26943:17;26936:47;27000:131;27126:4;27000:131;:::i;:::-;26992:139;;26719:419;;;:::o;27144:::-;27310:4;27348:2;27337:9;27333:18;27325:26;;27397:9;27391:4;27387:20;27383:1;27372:9;27368:17;27361:47;27425:131;27551:4;27425:131;:::i;:::-;27417:139;;27144:419;;;:::o;27569:::-;27735:4;27773:2;27762:9;27758:18;27750:26;;27822:9;27816:4;27812:20;27808:1;27797:9;27793:17;27786:47;27850:131;27976:4;27850:131;:::i;:::-;27842:139;;27569:419;;;:::o;27994:347::-;28149:4;28187:3;28176:9;28172:19;28164:27;;28201:133;28331:1;28320:9;28316:17;28307:6;28201:133;:::i;:::-;27994:347;;;;:::o;28347:222::-;28440:4;28478:2;28467:9;28463:18;28455:26;;28491:71;28559:1;28548:9;28544:17;28535:6;28491:71;:::i;:::-;28347:222;;;;:::o;28575:129::-;28609:6;28636:20;;:::i;:::-;28626:30;;28665:33;28693:4;28685:6;28665:33;:::i;:::-;28575:129;;;:::o;28710:75::-;28743:6;28776:2;28770:9;28760:19;;28710:75;:::o;28791:307::-;28852:4;28942:18;28934:6;28931:30;28928:56;;;28964:18;;:::i;:::-;28928:56;29002:29;29024:6;29002:29;:::i;:::-;28994:37;;29086:4;29080;29076:15;29068:23;;28791:307;;;:::o;29104:308::-;29166:4;29256:18;29248:6;29245:30;29242:56;;;29278:18;;:::i;:::-;29242:56;29316:29;29338:6;29316:29;:::i;:::-;29308:37;;29400:4;29394;29390:15;29382:23;;29104:308;;;:::o;29418:163::-;29516:4;29539:3;29531:11;;29569:4;29564:3;29560:14;29552:22;;29418:163;;;:::o;29587:132::-;29654:4;29677:3;29669:11;;29707:4;29702:3;29698:14;29690:22;;29587:132;;;:::o;29725:145::-;29823:6;29857:5;29851:12;29841:22;;29725:145;;;:::o;29876:114::-;29943:6;29977:5;29971:12;29961:22;;29876:114;;;:::o;29996:98::-;30047:6;30081:5;30075:12;30065:22;;29996:98;;;:::o;30100:99::-;30152:6;30186:5;30180:12;30170:22;;30100:99;;;:::o;30205:144::-;30306:4;30338;30333:3;30329:14;30321:22;;30205:144;;;:::o;30355:113::-;30425:4;30457;30452:3;30448:14;30440:22;;30355:113;;;:::o;30474:215::-;30604:11;30638:6;30633:3;30626:19;30678:4;30673:3;30669:14;30654:29;;30474:215;;;;:::o;30695:184::-;30794:11;30828:6;30823:3;30816:19;30868:4;30863:3;30859:14;30844:29;;30695:184;;;;:::o;30885:168::-;30968:11;31002:6;30997:3;30990:19;31042:4;31037:3;31033:14;31018:29;;30885:168;;;;:::o;31059:169::-;31143:11;31177:6;31172:3;31165:19;31217:4;31212:3;31208:14;31193:29;;31059:169;;;;:::o;31234:148::-;31336:11;31373:3;31358:18;;31234:148;;;;:::o;31388:305::-;31428:3;31447:20;31465:1;31447:20;:::i;:::-;31442:25;;31481:20;31499:1;31481:20;:::i;:::-;31476:25;;31635:1;31567:66;31563:74;31560:1;31557:81;31554:107;;;31641:18;;:::i;:::-;31554:107;31685:1;31682;31678:9;31671:16;;31388:305;;;;:::o;31699:348::-;31739:7;31762:20;31780:1;31762:20;:::i;:::-;31757:25;;31796:20;31814:1;31796:20;:::i;:::-;31791:25;;31984:1;31916:66;31912:74;31909:1;31906:81;31901:1;31894:9;31887:17;31883:105;31880:131;;;31991:18;;:::i;:::-;31880:131;32039:1;32036;32032:9;32021:20;;31699:348;;;;:::o;32053:96::-;32090:7;32119:24;32137:5;32119:24;:::i;:::-;32108:35;;32053:96;;;:::o;32155:90::-;32189:7;32232:5;32225:13;32218:21;32207:32;;32155:90;;;:::o;32251:149::-;32287:7;32327:66;32320:5;32316:78;32305:89;;32251:149;;;:::o;32406:126::-;32443:7;32483:42;32476:5;32472:54;32461:65;;32406:126;;;:::o;32538:91::-;32574:7;32614:8;32607:5;32603:20;32592:31;;32538:91;;;:::o;32635:77::-;32672:7;32701:5;32690:16;;32635:77;;;:::o;32718:101::-;32754:7;32794:18;32787:5;32783:30;32772:41;;32718:101;;;:::o;32825:154::-;32909:6;32904:3;32899;32886:30;32971:1;32962:6;32957:3;32953:16;32946:27;32825:154;;;:::o;32985:307::-;33053:1;33063:113;33077:6;33074:1;33071:13;33063:113;;;33162:1;33157:3;33153:11;33147:18;33143:1;33138:3;33134:11;33127:39;33099:2;33096:1;33092:10;33087:15;;33063:113;;;33194:6;33191:1;33188:13;33185:101;;;33274:1;33265:6;33260:3;33256:16;33249:27;33185:101;33034:258;32985:307;;;:::o;33298:320::-;33342:6;33379:1;33373:4;33369:12;33359:22;;33426:1;33420:4;33416:12;33447:18;33437:81;;33503:4;33495:6;33491:17;33481:27;;33437:81;33565:2;33557:6;33554:14;33534:18;33531:38;33528:84;;;33584:18;;:::i;:::-;33528:84;33349:269;33298:320;;;:::o;33624:281::-;33707:27;33729:4;33707:27;:::i;:::-;33699:6;33695:40;33837:6;33825:10;33822:22;33801:18;33789:10;33786:34;33783:62;33780:88;;;33848:18;;:::i;:::-;33780:88;33888:10;33884:2;33877:22;33667:238;33624:281;;:::o;33911:233::-;33950:3;33973:24;33991:5;33973:24;:::i;:::-;33964:33;;34019:66;34012:5;34009:77;34006:103;;;34089:18;;:::i;:::-;34006:103;34136:1;34129:5;34125:13;34118:20;;33911:233;;;:::o;34150:180::-;34198:77;34195:1;34188:88;34295:4;34292:1;34285:15;34319:4;34316:1;34309:15;34336:180;34384:77;34381:1;34374:88;34481:4;34478:1;34471:15;34505:4;34502:1;34495:15;34522:180;34570:77;34567:1;34560:88;34667:4;34664:1;34657:15;34691:4;34688:1;34681:15;34708:180;34756:77;34753:1;34746:88;34853:4;34850:1;34843:15;34877:4;34874:1;34867:15;34894:117;35003:1;35000;34993:12;35017:117;35126:1;35123;35116:12;35140:117;35249:1;35246;35239:12;35263:117;35372:1;35369;35362:12;35386:117;35495:1;35492;35485:12;35509:117;35618:1;35615;35608:12;35632:102;35673:6;35724:2;35720:7;35715:2;35708:5;35704:14;35700:28;35690:38;;35632:102;;;:::o;35740:220::-;35880:34;35876:1;35868:6;35864:14;35857:58;35949:3;35944:2;35936:6;35932:15;35925:28;35740:220;:::o;35966:170::-;36106:22;36102:1;36094:6;36090:14;36083:46;35966:170;:::o;36142:225::-;36282:34;36278:1;36270:6;36266:14;36259:58;36351:8;36346:2;36338:6;36334:15;36327:33;36142:225;:::o;36373:177::-;36513:29;36509:1;36501:6;36497:14;36490:53;36373:177;:::o;36556:222::-;36696:34;36692:1;36684:6;36680:14;36673:58;36765:5;36760:2;36752:6;36748:15;36741:30;36556:222;:::o;36784:166::-;36924:18;36920:1;36912:6;36908:14;36901:42;36784:166;:::o;36956:178::-;37096:30;37092:1;37084:6;37080:14;37073:54;36956:178;:::o;37140:224::-;37280:34;37276:1;37268:6;37264:14;37257:58;37349:7;37344:2;37336:6;37332:15;37325:32;37140:224;:::o;37370:182::-;37510:34;37506:1;37498:6;37494:14;37487:58;37370:182;:::o;37558:::-;37698:34;37694:1;37686:6;37682:14;37675:58;37558:182;:::o;37746:236::-;37886:34;37882:1;37874:6;37870:14;37863:58;37955:19;37950:2;37942:6;37938:15;37931:44;37746:236;:::o;37988:122::-;38061:24;38079:5;38061:24;:::i;:::-;38054:5;38051:35;38041:63;;38100:1;38097;38090:12;38041:63;37988:122;:::o;38116:116::-;38186:21;38201:5;38186:21;:::i;:::-;38179:5;38176:32;38166:60;;38222:1;38219;38212:12;38166:60;38116:116;:::o;38238:120::-;38310:23;38327:5;38310:23;:::i;:::-;38303:5;38300:34;38290:62;;38348:1;38345;38338:12;38290:62;38238:120;:::o;38364:122::-;38437:24;38455:5;38437:24;:::i;:::-;38430:5;38427:35;38417:63;;38476:1;38473;38466:12;38417:63;38364:122;:::o

Swarm Source

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