ETH Price: $3,261.26 (+2.85%)
Gas: 1 Gwei

Token

The Blinkless: Holidaze (BLHLD)
 

Overview

Max Total Supply

500 BLHLD

Holders

131

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 BLHLD
0x00aa0901456090851c617b7c65d7351f64ebf8e2
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:
Holidaze

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-11-20
*/

// SPDX-License-Identifier: MIT

// File: contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// ERC721A Contracts v4.2.3
// 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: contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// ERC721A Contracts v4.2.3
// 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: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/Holidaze.sol


pragma solidity ^0.8.4;





contract Holidaze is ERC721AQueryable, Ownable {

    uint256 public maxSupply = 500;
    address public projectWallet = 0xf794E26f81831028a9b54314722224B9D7BD9Af3; //project wallet
    address public payoutWallet = 0xeD2faa60373eC70E57B39152aeE5Ce4ed7C333c7; //wallet for payouts
    uint256 public mintPrice = 0.03 ether;
    bool public isMinting = false;
    string public metadataPath = 'https://theblinkless.s3.amazonaws.com/holidazejson/';

    constructor() ERC721A("The Blinkless: Holidaze", "BLHLD") {
        _mint(address(projectWallet),50);
    }


    /*
    * Ensures the caller is not a proxy contract or bot, but is an actual wallet.
    */
    modifier callerIsUser() {
        //we only want to mint to real people
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    /*
    * Contract owner can mint
    */
    function ownerMint(uint256 _amount) public onlyOwner{
        require(totalSupply() + _amount <= maxSupply,"Too many");
        _mint(address(projectWallet),_amount);
    }

    /*
    * Public mint
    */
    function mint(uint256 _amount) public payable callerIsUser{
        require(isMinting, "Mint disabled.");
        require(_amount <= 10, "Max of 10 per transaction.");
        require(msg.value >= _amount * mintPrice, "Not enough eth.");
        require(totalSupply() + _amount <= maxSupply,"Too many");

        _mint(address(msg.sender),_amount);
    }

    /*
    * Update mint price
    */
    function updateMintPrice(uint256 _price) external onlyOwner{
        mintPrice = _price;
    }

    /*
    * Update mint status
    */
    function updateIsMinting(bool _isMinting) external onlyOwner{
        isMinting = _isMinting;
    }

    /**
    * Update the base URI for metadata
    */
    function updateBaseURI(string memory baseURI) external onlyOwner{
        //set the path to the metadata
         metadataPath = baseURI;
    }

    /**
    * Return metadata path
    */
    function tokenURI(uint tokenId) override(ERC721A) public view returns(string memory _uri){
        return string(abi.encodePacked(metadataPath,Strings.toString(tokenId),".json"));
    } 

    /**
    * Update the project wallet address
    */
    function updateProjectWallet(address _projectWallet) public onlyOwner{
        projectWallet = _projectWallet;
    }

    /**
    * Update the payout wallet address
    */
    function updatePayoutWallet(address _payoutWallet) public onlyOwner{
        payoutWallet = _payoutWallet;
    }

     /*
    * Withdraw by owner
    */
    function withdraw() external onlyOwner {
        (bool success, ) = payable(payoutWallet).call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }


    /*
    * These are here to receive ETH sent to the contract address
    */
    receive() external payable {}

    fallback() external payable {}

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataPath","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payoutWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"_uri","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isMinting","type":"bool"}],"name":"updateIsMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"updateMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_payoutWallet","type":"address"}],"name":"updatePayoutWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_projectWallet","type":"address"}],"name":"updateProjectWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526101f460095573f794e26f81831028a9b54314722224b9d7bd9af3600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ed2faa60373ec70e57b39152aee5ce4ed7c333c7600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550666a94d74f430000600c556000600d60006101000a81548160ff0219169083151502179055506040518060600160405280603381526020016200402660339139600e90805190602001906200010b92919062000567565b503480156200011957600080fd5b506040518060400160405280601781526020017f54686520426c696e6b6c6573733a20486f6c6964617a650000000000000000008152506040518060400160405280600581526020017f424c484c4400000000000000000000000000000000000000000000000000000081525081600290805190602001906200019e92919062000567565b508060039080519060200190620001b792919062000567565b50620001c86200022b60201b60201c565b6000819055505050620001f0620001e46200023060201b60201c565b6200023860201b60201c565b62000225600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166032620002fe60201b60201c565b6200067c565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600082141562000340576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003556000848385620004e760201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620003e483620003c66000866000620004ed60201b60201c565b620003d7856200051d60201b60201c565b176200052d60201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200048757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506200044a565b506000821415620004c4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620004e260008483856200055860201b60201c565b505050565b50505050565b60008060e883901c905060e86200050c8686846200055e60201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60009392505050565b828054620005759062000617565b90600052602060002090601f016020900481019282620005995760008555620005e5565b82601f10620005b457805160ff1916838001178555620005e5565b82800160010185558215620005e5579182015b82811115620005e4578251825591602001919060010190620005c7565b5b509050620005f49190620005f8565b5090565b5b8082111562000613576000816000905550600101620005f9565b5090565b600060028204905060018216806200063057607f821691505b602082108114156200064757620006466200064d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61399a806200068c6000396000f3fe6080604052600436106102075760003560e01c80638462151c11610118578063beb08ab9116100a0578063e88a8f4a1161006f578063e88a8f4a1461073f578063e985e9c514610768578063f19e75d4146107a5578063f2fde38b146107ce578063fb28a540146107f75761020e565b8063beb08ab91461066f578063c23dc68f1461069a578063c87b56dd146106d7578063d5abeb01146107145761020e565b806395d89b41116100e757806395d89b41146105a657806399a2557a146105d1578063a0712d681461060e578063a22cb4651461062a578063b88d4fde146106535761020e565b80638462151c146104ea5780638488bb4e146105275780638da5cb5b14610552578063931688cb1461057d5761020e565b80633ccfd60b1161019b5780636352211e1161016a5780636352211e146104055780636817c76c1461044257806370a082311461046d578063715018a6146104aa57806371927628146104c15761020e565b80633ccfd60b1461036c57806342842e0e146103835780635bbb21771461039f5780635c3d25ca146103dc5761020e565b8063095ea7b3116101d7578063095ea7b3146102de57806318160ddd146102fa57806323b872dd146103255780632a8092df146103415761020e565b8062728e461461021057806301ffc9a71461023957806306fdde0314610276578063081812fc146102a15761020e565b3661020e57005b005b34801561021c57600080fd5b5061023760048036038101906102329190612b10565b610822565b005b34801561024557600080fd5b50610260600480360381019061025b9190612a6d565b610834565b60405161026d91906130ba565b60405180910390f35b34801561028257600080fd5b5061028b6108c6565b60405161029891906130d5565b60405180910390f35b3480156102ad57600080fd5b506102c860048036038101906102c39190612b10565b610958565b6040516102d5919061300f565b60405180910390f35b6102f860048036038101906102f39190612960565b6109d7565b005b34801561030657600080fd5b5061030f610b1b565b60405161031c9190613212565b60405180910390f35b61033f600480360381019061033a919061284a565b610b32565b005b34801561034d57600080fd5b50610356610e57565b60405161036391906130ba565b60405180910390f35b34801561037857600080fd5b50610381610e6a565b005b61039d6004803603810190610398919061284a565b610f43565b005b3480156103ab57600080fd5b506103c660048036038101906103c191906129f3565b610f63565b6040516103d39190613076565b60405180910390f35b3480156103e857600080fd5b5061040360048036038101906103fe91906127dd565b611026565b005b34801561041157600080fd5b5061042c60048036038101906104279190612b10565b611072565b604051610439919061300f565b60405180910390f35b34801561044e57600080fd5b50610457611084565b6040516104649190613212565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f91906127dd565b61108a565b6040516104a19190613212565b60405180910390f35b3480156104b657600080fd5b506104bf611143565b005b3480156104cd57600080fd5b506104e860048036038101906104e391906127dd565b611157565b005b3480156104f657600080fd5b50610511600480360381019061050c91906127dd565b6111a3565b60405161051e9190613098565b60405180910390f35b34801561053357600080fd5b5061053c6112ed565b604051610549919061300f565b60405180910390f35b34801561055e57600080fd5b50610567611313565b604051610574919061300f565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190612ac7565b61133d565b005b3480156105b257600080fd5b506105bb61135f565b6040516105c891906130d5565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f391906129a0565b6113f1565b6040516106059190613098565b60405180910390f35b61062860048036038101906106239190612b10565b611605565b005b34801561063657600080fd5b50610651600480360381019061064c9190612920565b6117ba565b005b61066d6004803603810190610668919061289d565b6118c5565b005b34801561067b57600080fd5b50610684611938565b604051610691919061300f565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190612b10565b61195e565b6040516106ce91906131f7565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f99190612b10565b6119c8565b60405161070b91906130d5565b60405180910390f35b34801561072057600080fd5b506107296119fc565b6040516107369190613212565b60405180910390f35b34801561074b57600080fd5b5061076660048036038101906107619190612a40565b611a02565b005b34801561077457600080fd5b5061078f600480360381019061078a919061280a565b611a27565b60405161079c91906130ba565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c79190612b10565b611abb565b005b3480156107da57600080fd5b506107f560048036038101906107f091906127dd565b611b49565b005b34801561080357600080fd5b5061080c611bcd565b60405161081991906130d5565b60405180910390f35b61082a611c5b565b80600c8190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108bf5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108d590613577565b80601f016020809104026020016040519081016040528092919081815260200182805461090190613577565b801561094e5780601f106109235761010080835404028352916020019161094e565b820191906000526020600020905b81548152906001019060200180831161093157829003601f168201915b5050505050905090565b600061096382611cd9565b610999576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e282611072565b90508073ffffffffffffffffffffffffffffffffffffffff16610a03611d38565b73ffffffffffffffffffffffffffffffffffffffff1614610a6657610a2f81610a2a611d38565b611a27565b610a65576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b25611d40565b6001546000540303905090565b6000610b3d82611d45565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ba4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bb084611e13565b91509150610bc68187610bc1611d38565b611e3a565b610c1257610bdb86610bd6611d38565b611a27565b610c11576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c79576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c868686866001611e7e565b8015610c9157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d5f85610d3b888887611e84565b7c020000000000000000000000000000000000000000000000000000000017611eac565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610de7576000600185019050600060046000838152602001908152602001600020541415610de5576000548114610de4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e4f8686866001611ed7565b505050505050565b600d60009054906101000a900460ff1681565b610e72611c5b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610eba90612ffa565b60006040518083038185875af1925050503d8060008114610ef7576040519150601f19603f3d011682016040523d82523d6000602084013e610efc565b606091505b5050905080610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f37906131b7565b60405180910390fd5b50565b610f5e838383604051806020016040528060008152506118c5565b505050565b6060600083839050905060008167ffffffffffffffff811115610f8957610f88613710565b5b604051908082528060200260200182016040528015610fc257816020015b610faf61254c565b815260200190600190039081610fa75790505b50905060005b82811461101a57610ff1868683818110610fe557610fe46136e1565b5b9050602002013561195e565b828281518110611004576110036136e1565b5b6020026020010181905250806001019050610fc8565b50809250505092915050565b61102e611c5b565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061107d82611d45565b9050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61114b611c5b565b6111556000611edd565b565b61115f611c5b565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008060006111b38561108a565b905060008167ffffffffffffffff8111156111d1576111d0613710565b5b6040519080825280602002602001820160405280156111ff5781602001602082028036833780820191505090505b50905061120a61254c565b6000611214611d40565b90505b8386146112df5761122781611fa3565b9150816040015115611238576112d4565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461127857816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156112d357808387806001019850815181106112c6576112c56136e1565b5b6020026020010181815250505b5b806001019050611217565b508195505050505050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611345611c5b565b80600e908051906020019061135b92919061259b565b5050565b60606003805461136e90613577565b80601f016020809104026020016040519081016040528092919081815260200182805461139a90613577565b80156113e75780601f106113bc576101008083540402835291602001916113e7565b820191906000526020600020905b8154815290600101906020018083116113ca57829003601f168201915b5050505050905090565b606081831061142c576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611437611fce565b9050611441611d40565b85101561145357611450611d40565b94505b8084111561145f578093505b600061146a8761108a565b90508486101561148d576000868603905081811015611487578091505b50611492565b600090505b60008167ffffffffffffffff8111156114ae576114ad613710565b5b6040519080825280602002602001820160405280156114dc5781602001602082028036833780820191505090505b50905060008214156114f457809450505050506115fe565b60006114ff8861195e565b90506000816040015161151457816000015190505b60008990505b88811415801561152a5750848714155b156115f05761153881611fa3565b9250826040015115611549576115e5565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461158957826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e457808488806001019950815181106115d7576115d66136e1565b5b6020026020010181815250505b5b80600101905061151a565b508583528296505050505050505b9392505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90613137565b60405180910390fd5b600d60009054906101000a900460ff166116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b990613117565b60405180910390fd5b600a811115611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd906131d7565b60405180910390fd5b600c54816117149190613410565b341015611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90613157565b60405180910390fd5b60095481611762610b1b565b61176c9190613389565b11156117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a490613177565b60405180910390fd5b6117b73382611fd7565b50565b80600760006117c7611d38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611874611d38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118b991906130ba565b60405180910390a35050565b6118d0848484610b32565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611932576118fb84848484612194565b611931576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61196661254c565b61196e61254c565b611976611d40565b83108061198a5750611986611fce565b8310155b1561199857809150506119c3565b6119a183611fa3565b90508060400151156119b657809150506119c3565b6119bf836122f4565b9150505b919050565b6060600e6119d583612314565b6040516020016119e6929190612fcb565b6040516020818303038152906040529050919050565b60095481565b611a0a611c5b565b80600d60006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ac3611c5b565b60095481611acf610b1b565b611ad99190613389565b1115611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1190613177565b60405180910390fd5b611b46600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611fd7565b50565b611b51611c5b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb8906130f7565b60405180910390fd5b611bca81611edd565b50565b600e8054611bda90613577565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0690613577565b8015611c535780601f10611c2857610100808354040283529160200191611c53565b820191906000526020600020905b815481529060010190602001808311611c3657829003601f168201915b505050505081565b611c63612475565b73ffffffffffffffffffffffffffffffffffffffff16611c81611313565b73ffffffffffffffffffffffffffffffffffffffff1614611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90613197565b60405180910390fd5b565b600081611ce4611d40565b11158015611cf3575060005482105b8015611d31575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611d54611d40565b11611ddc57600054811015611ddb5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611dd9575b6000811415611dcf576004600083600190039350838152602001908152602001600020549050611da4565b8092505050611e0e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e9b86868461247d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fab61254c565b611fc76004600084815260200190815260200160002054612486565b9050919050565b60008054905090565b6000805490506000821415612018576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120256000848385611e7e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061209c8361208d6000866000611e84565b6120968561253c565b17611eac565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461213d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612102565b506000821415612179576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061218f6000848385611ed7565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121ba611d38565b8786866040518563ffffffff1660e01b81526004016121dc949392919061302a565b602060405180830381600087803b1580156121f657600080fd5b505af192505050801561222757506040513d601f19601f820116820180604052508101906122249190612a9a565b60015b6122a1573d8060008114612257576040519150601f19603f3d011682016040523d82523d6000602084013e61225c565b606091505b50600081511415612299576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6122fc61254c565b61230d61230883611d45565b612486565b9050919050565b6060600082141561235c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612470565b600082905060005b6000821461238e578080612377906135da565b915050600a8261238791906133df565b9150612364565b60008167ffffffffffffffff8111156123aa576123a9613710565b5b6040519080825280601f01601f1916602001820160405280156123dc5781602001600182028036833780820191505090505b5090505b60008514612469576001826123f5919061346a565b9150600a856124049190613623565b60306124109190613389565b60f81b818381518110612426576124256136e1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561246291906133df565b94506123e0565b8093505050505b919050565b600033905090565b60009392505050565b61248e61254c565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b8280546125a790613577565b90600052602060002090601f0160209004810192826125c95760008555612610565b82601f106125e257805160ff1916838001178555612610565b82800160010185558215612610579182015b8281111561260f5782518255916020019190600101906125f4565b5b50905061261d9190612621565b5090565b5b8082111561263a576000816000905550600101612622565b5090565b600061265161264c84613252565b61322d565b90508281526020810184848401111561266d5761266c61374e565b5b612678848285613535565b509392505050565b600061269361268e84613283565b61322d565b9050828152602081018484840111156126af576126ae61374e565b5b6126ba848285613535565b509392505050565b6000813590506126d181613908565b92915050565b60008083601f8401126126ed576126ec613744565b5b8235905067ffffffffffffffff81111561270a5761270961373f565b5b60208301915083602082028301111561272657612725613749565b5b9250929050565b60008135905061273c8161391f565b92915050565b60008135905061275181613936565b92915050565b60008151905061276681613936565b92915050565b600082601f83011261278157612780613744565b5b813561279184826020860161263e565b91505092915050565b600082601f8301126127af576127ae613744565b5b81356127bf848260208601612680565b91505092915050565b6000813590506127d78161394d565b92915050565b6000602082840312156127f3576127f2613758565b5b6000612801848285016126c2565b91505092915050565b6000806040838503121561282157612820613758565b5b600061282f858286016126c2565b9250506020612840858286016126c2565b9150509250929050565b60008060006060848603121561286357612862613758565b5b6000612871868287016126c2565b9350506020612882868287016126c2565b9250506040612893868287016127c8565b9150509250925092565b600080600080608085870312156128b7576128b6613758565b5b60006128c5878288016126c2565b94505060206128d6878288016126c2565b93505060406128e7878288016127c8565b925050606085013567ffffffffffffffff81111561290857612907613753565b5b6129148782880161276c565b91505092959194509250565b6000806040838503121561293757612936613758565b5b6000612945858286016126c2565b92505060206129568582860161272d565b9150509250929050565b6000806040838503121561297757612976613758565b5b6000612985858286016126c2565b9250506020612996858286016127c8565b9150509250929050565b6000806000606084860312156129b9576129b8613758565b5b60006129c7868287016126c2565b93505060206129d8868287016127c8565b92505060406129e9868287016127c8565b9150509250925092565b60008060208385031215612a0a57612a09613758565b5b600083013567ffffffffffffffff811115612a2857612a27613753565b5b612a34858286016126d7565b92509250509250929050565b600060208284031215612a5657612a55613758565b5b6000612a648482850161272d565b91505092915050565b600060208284031215612a8357612a82613758565b5b6000612a9184828501612742565b91505092915050565b600060208284031215612ab057612aaf613758565b5b6000612abe84828501612757565b91505092915050565b600060208284031215612add57612adc613758565b5b600082013567ffffffffffffffff811115612afb57612afa613753565b5b612b078482850161279a565b91505092915050565b600060208284031215612b2657612b25613758565b5b6000612b34848285016127c8565b91505092915050565b6000612b498383612ee5565b60808301905092915050565b6000612b618383612f9e565b60208301905092915050565b612b768161349e565b82525050565b612b858161349e565b82525050565b6000612b96826132e9565b612ba0818561332f565b9350612bab836132b4565b8060005b83811015612bdc578151612bc38882612b3d565b9750612bce83613315565b925050600181019050612baf565b5085935050505092915050565b6000612bf4826132f4565b612bfe8185613340565b9350612c09836132c4565b8060005b83811015612c3a578151612c218882612b55565b9750612c2c83613322565b925050600181019050612c0d565b5085935050505092915050565b612c50816134b0565b82525050565b612c5f816134b0565b82525050565b6000612c70826132ff565b612c7a8185613351565b9350612c8a818560208601613544565b612c938161375d565b840191505092915050565b6000612ca98261330a565b612cb3818561336d565b9350612cc3818560208601613544565b612ccc8161375d565b840191505092915050565b6000612ce28261330a565b612cec818561337e565b9350612cfc818560208601613544565b80840191505092915050565b60008154612d1581613577565b612d1f818661337e565b94506001821660008114612d3a5760018114612d4b57612d7e565b60ff19831686528186019350612d7e565b612d54856132d4565b60005b83811015612d7657815481890152600182019150602081019050612d57565b838801955050505b50505092915050565b6000612d9460268361336d565b9150612d9f8261376e565b604082019050919050565b6000612db7600e8361336d565b9150612dc2826137bd565b602082019050919050565b6000612dda601e8361336d565b9150612de5826137e6565b602082019050919050565b6000612dfd600f8361336d565b9150612e088261380f565b602082019050919050565b6000612e2060058361337e565b9150612e2b82613838565b600582019050919050565b6000612e4360088361336d565b9150612e4e82613861565b602082019050919050565b6000612e6660208361336d565b9150612e718261388a565b602082019050919050565b6000612e89600083613362565b9150612e94826138b3565b600082019050919050565b6000612eac60108361336d565b9150612eb7826138b6565b602082019050919050565b6000612ecf601a8361336d565b9150612eda826138df565b602082019050919050565b608082016000820151612efb6000850182612b6d565b506020820151612f0e6020850182612fbc565b506040820151612f216040850182612c47565b506060820151612f346060850182612f8f565b50505050565b608082016000820151612f506000850182612b6d565b506020820151612f636020850182612fbc565b506040820151612f766040850182612c47565b506060820151612f896060850182612f8f565b50505050565b612f9881613508565b82525050565b612fa781613517565b82525050565b612fb681613517565b82525050565b612fc581613521565b82525050565b6000612fd78285612d08565b9150612fe38284612cd7565b9150612fee82612e13565b91508190509392505050565b600061300582612e7c565b9150819050919050565b60006020820190506130246000830184612b7c565b92915050565b600060808201905061303f6000830187612b7c565b61304c6020830186612b7c565b6130596040830185612fad565b818103606083015261306b8184612c65565b905095945050505050565b600060208201905081810360008301526130908184612b8b565b905092915050565b600060208201905081810360008301526130b28184612be9565b905092915050565b60006020820190506130cf6000830184612c56565b92915050565b600060208201905081810360008301526130ef8184612c9e565b905092915050565b6000602082019050818103600083015261311081612d87565b9050919050565b6000602082019050818103600083015261313081612daa565b9050919050565b6000602082019050818103600083015261315081612dcd565b9050919050565b6000602082019050818103600083015261317081612df0565b9050919050565b6000602082019050818103600083015261319081612e36565b9050919050565b600060208201905081810360008301526131b081612e59565b9050919050565b600060208201905081810360008301526131d081612e9f565b9050919050565b600060208201905081810360008301526131f081612ec2565b9050919050565b600060808201905061320c6000830184612f3a565b92915050565b60006020820190506132276000830184612fad565b92915050565b6000613237613248565b905061324382826135a9565b919050565b6000604051905090565b600067ffffffffffffffff82111561326d5761326c613710565b5b6132768261375d565b9050602081019050919050565b600067ffffffffffffffff82111561329e5761329d613710565b5b6132a78261375d565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061339482613517565b915061339f83613517565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133d4576133d3613654565b5b828201905092915050565b60006133ea82613517565b91506133f583613517565b92508261340557613404613683565b5b828204905092915050565b600061341b82613517565b915061342683613517565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561345f5761345e613654565b5b828202905092915050565b600061347582613517565b915061348083613517565b92508282101561349357613492613654565b5b828203905092915050565b60006134a9826134e8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613562578082015181840152602081019050613547565b83811115613571576000848401525b50505050565b6000600282049050600182168061358f57607f821691505b602082108114156135a3576135a26136b2565b5b50919050565b6135b28261375d565b810181811067ffffffffffffffff821117156135d1576135d0613710565b5b80604052505050565b60006135e582613517565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561361857613617613654565b5b600182019050919050565b600061362e82613517565b915061363983613517565b92508261364957613648613683565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742064697361626c65642e000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4e6f7420656e6f756768206574682e0000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d6178206f6620313020706572207472616e73616374696f6e2e000000000000600082015250565b6139118161349e565b811461391c57600080fd5b50565b613928816134b0565b811461393357600080fd5b50565b61393f816134bc565b811461394a57600080fd5b50565b61395681613517565b811461396157600080fd5b5056fea2646970667358221220307a42808dbc138e6e6efbb32a4d2b91b7609338753e61923179bd6483bcd71f64736f6c6343000807003368747470733a2f2f746865626c696e6b6c6573732e73332e616d617a6f6e6177732e636f6d2f686f6c6964617a656a736f6e2f

Deployed Bytecode

0x6080604052600436106102075760003560e01c80638462151c11610118578063beb08ab9116100a0578063e88a8f4a1161006f578063e88a8f4a1461073f578063e985e9c514610768578063f19e75d4146107a5578063f2fde38b146107ce578063fb28a540146107f75761020e565b8063beb08ab91461066f578063c23dc68f1461069a578063c87b56dd146106d7578063d5abeb01146107145761020e565b806395d89b41116100e757806395d89b41146105a657806399a2557a146105d1578063a0712d681461060e578063a22cb4651461062a578063b88d4fde146106535761020e565b80638462151c146104ea5780638488bb4e146105275780638da5cb5b14610552578063931688cb1461057d5761020e565b80633ccfd60b1161019b5780636352211e1161016a5780636352211e146104055780636817c76c1461044257806370a082311461046d578063715018a6146104aa57806371927628146104c15761020e565b80633ccfd60b1461036c57806342842e0e146103835780635bbb21771461039f5780635c3d25ca146103dc5761020e565b8063095ea7b3116101d7578063095ea7b3146102de57806318160ddd146102fa57806323b872dd146103255780632a8092df146103415761020e565b8062728e461461021057806301ffc9a71461023957806306fdde0314610276578063081812fc146102a15761020e565b3661020e57005b005b34801561021c57600080fd5b5061023760048036038101906102329190612b10565b610822565b005b34801561024557600080fd5b50610260600480360381019061025b9190612a6d565b610834565b60405161026d91906130ba565b60405180910390f35b34801561028257600080fd5b5061028b6108c6565b60405161029891906130d5565b60405180910390f35b3480156102ad57600080fd5b506102c860048036038101906102c39190612b10565b610958565b6040516102d5919061300f565b60405180910390f35b6102f860048036038101906102f39190612960565b6109d7565b005b34801561030657600080fd5b5061030f610b1b565b60405161031c9190613212565b60405180910390f35b61033f600480360381019061033a919061284a565b610b32565b005b34801561034d57600080fd5b50610356610e57565b60405161036391906130ba565b60405180910390f35b34801561037857600080fd5b50610381610e6a565b005b61039d6004803603810190610398919061284a565b610f43565b005b3480156103ab57600080fd5b506103c660048036038101906103c191906129f3565b610f63565b6040516103d39190613076565b60405180910390f35b3480156103e857600080fd5b5061040360048036038101906103fe91906127dd565b611026565b005b34801561041157600080fd5b5061042c60048036038101906104279190612b10565b611072565b604051610439919061300f565b60405180910390f35b34801561044e57600080fd5b50610457611084565b6040516104649190613212565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f91906127dd565b61108a565b6040516104a19190613212565b60405180910390f35b3480156104b657600080fd5b506104bf611143565b005b3480156104cd57600080fd5b506104e860048036038101906104e391906127dd565b611157565b005b3480156104f657600080fd5b50610511600480360381019061050c91906127dd565b6111a3565b60405161051e9190613098565b60405180910390f35b34801561053357600080fd5b5061053c6112ed565b604051610549919061300f565b60405180910390f35b34801561055e57600080fd5b50610567611313565b604051610574919061300f565b60405180910390f35b34801561058957600080fd5b506105a4600480360381019061059f9190612ac7565b61133d565b005b3480156105b257600080fd5b506105bb61135f565b6040516105c891906130d5565b60405180910390f35b3480156105dd57600080fd5b506105f860048036038101906105f391906129a0565b6113f1565b6040516106059190613098565b60405180910390f35b61062860048036038101906106239190612b10565b611605565b005b34801561063657600080fd5b50610651600480360381019061064c9190612920565b6117ba565b005b61066d6004803603810190610668919061289d565b6118c5565b005b34801561067b57600080fd5b50610684611938565b604051610691919061300f565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190612b10565b61195e565b6040516106ce91906131f7565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f99190612b10565b6119c8565b60405161070b91906130d5565b60405180910390f35b34801561072057600080fd5b506107296119fc565b6040516107369190613212565b60405180910390f35b34801561074b57600080fd5b5061076660048036038101906107619190612a40565b611a02565b005b34801561077457600080fd5b5061078f600480360381019061078a919061280a565b611a27565b60405161079c91906130ba565b60405180910390f35b3480156107b157600080fd5b506107cc60048036038101906107c79190612b10565b611abb565b005b3480156107da57600080fd5b506107f560048036038101906107f091906127dd565b611b49565b005b34801561080357600080fd5b5061080c611bcd565b60405161081991906130d5565b60405180910390f35b61082a611c5b565b80600c8190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108bf5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108d590613577565b80601f016020809104026020016040519081016040528092919081815260200182805461090190613577565b801561094e5780601f106109235761010080835404028352916020019161094e565b820191906000526020600020905b81548152906001019060200180831161093157829003601f168201915b5050505050905090565b600061096382611cd9565b610999576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e282611072565b90508073ffffffffffffffffffffffffffffffffffffffff16610a03611d38565b73ffffffffffffffffffffffffffffffffffffffff1614610a6657610a2f81610a2a611d38565b611a27565b610a65576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b25611d40565b6001546000540303905090565b6000610b3d82611d45565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ba4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bb084611e13565b91509150610bc68187610bc1611d38565b611e3a565b610c1257610bdb86610bd6611d38565b611a27565b610c11576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c79576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c868686866001611e7e565b8015610c9157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d5f85610d3b888887611e84565b7c020000000000000000000000000000000000000000000000000000000017611eac565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610de7576000600185019050600060046000838152602001908152602001600020541415610de5576000548114610de4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e4f8686866001611ed7565b505050505050565b600d60009054906101000a900460ff1681565b610e72611c5b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610eba90612ffa565b60006040518083038185875af1925050503d8060008114610ef7576040519150601f19603f3d011682016040523d82523d6000602084013e610efc565b606091505b5050905080610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f37906131b7565b60405180910390fd5b50565b610f5e838383604051806020016040528060008152506118c5565b505050565b6060600083839050905060008167ffffffffffffffff811115610f8957610f88613710565b5b604051908082528060200260200182016040528015610fc257816020015b610faf61254c565b815260200190600190039081610fa75790505b50905060005b82811461101a57610ff1868683818110610fe557610fe46136e1565b5b9050602002013561195e565b828281518110611004576110036136e1565b5b6020026020010181905250806001019050610fc8565b50809250505092915050565b61102e611c5b565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600061107d82611d45565b9050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61114b611c5b565b6111556000611edd565b565b61115f611c5b565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008060006111b38561108a565b905060008167ffffffffffffffff8111156111d1576111d0613710565b5b6040519080825280602002602001820160405280156111ff5781602001602082028036833780820191505090505b50905061120a61254c565b6000611214611d40565b90505b8386146112df5761122781611fa3565b9150816040015115611238576112d4565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461127857816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156112d357808387806001019850815181106112c6576112c56136e1565b5b6020026020010181815250505b5b806001019050611217565b508195505050505050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611345611c5b565b80600e908051906020019061135b92919061259b565b5050565b60606003805461136e90613577565b80601f016020809104026020016040519081016040528092919081815260200182805461139a90613577565b80156113e75780601f106113bc576101008083540402835291602001916113e7565b820191906000526020600020905b8154815290600101906020018083116113ca57829003601f168201915b5050505050905090565b606081831061142c576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611437611fce565b9050611441611d40565b85101561145357611450611d40565b94505b8084111561145f578093505b600061146a8761108a565b90508486101561148d576000868603905081811015611487578091505b50611492565b600090505b60008167ffffffffffffffff8111156114ae576114ad613710565b5b6040519080825280602002602001820160405280156114dc5781602001602082028036833780820191505090505b50905060008214156114f457809450505050506115fe565b60006114ff8861195e565b90506000816040015161151457816000015190505b60008990505b88811415801561152a5750848714155b156115f05761153881611fa3565b9250826040015115611549576115e5565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461158957826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e457808488806001019950815181106115d7576115d66136e1565b5b6020026020010181815250505b5b80600101905061151a565b508583528296505050505050505b9392505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90613137565b60405180910390fd5b600d60009054906101000a900460ff166116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b990613117565b60405180910390fd5b600a811115611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd906131d7565b60405180910390fd5b600c54816117149190613410565b341015611756576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174d90613157565b60405180910390fd5b60095481611762610b1b565b61176c9190613389565b11156117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a490613177565b60405180910390fd5b6117b73382611fd7565b50565b80600760006117c7611d38565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611874611d38565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118b991906130ba565b60405180910390a35050565b6118d0848484610b32565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611932576118fb84848484612194565b611931576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61196661254c565b61196e61254c565b611976611d40565b83108061198a5750611986611fce565b8310155b1561199857809150506119c3565b6119a183611fa3565b90508060400151156119b657809150506119c3565b6119bf836122f4565b9150505b919050565b6060600e6119d583612314565b6040516020016119e6929190612fcb565b6040516020818303038152906040529050919050565b60095481565b611a0a611c5b565b80600d60006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ac3611c5b565b60095481611acf610b1b565b611ad99190613389565b1115611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1190613177565b60405180910390fd5b611b46600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611fd7565b50565b611b51611c5b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb8906130f7565b60405180910390fd5b611bca81611edd565b50565b600e8054611bda90613577565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0690613577565b8015611c535780601f10611c2857610100808354040283529160200191611c53565b820191906000526020600020905b815481529060010190602001808311611c3657829003601f168201915b505050505081565b611c63612475565b73ffffffffffffffffffffffffffffffffffffffff16611c81611313565b73ffffffffffffffffffffffffffffffffffffffff1614611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce90613197565b60405180910390fd5b565b600081611ce4611d40565b11158015611cf3575060005482105b8015611d31575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611d54611d40565b11611ddc57600054811015611ddb5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611dd9575b6000811415611dcf576004600083600190039350838152602001908152602001600020549050611da4565b8092505050611e0e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e9b86868461247d565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fab61254c565b611fc76004600084815260200190815260200160002054612486565b9050919050565b60008054905090565b6000805490506000821415612018576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120256000848385611e7e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061209c8361208d6000866000611e84565b6120968561253c565b17611eac565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461213d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612102565b506000821415612179576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061218f6000848385611ed7565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121ba611d38565b8786866040518563ffffffff1660e01b81526004016121dc949392919061302a565b602060405180830381600087803b1580156121f657600080fd5b505af192505050801561222757506040513d601f19601f820116820180604052508101906122249190612a9a565b60015b6122a1573d8060008114612257576040519150601f19603f3d011682016040523d82523d6000602084013e61225c565b606091505b50600081511415612299576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6122fc61254c565b61230d61230883611d45565b612486565b9050919050565b6060600082141561235c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612470565b600082905060005b6000821461238e578080612377906135da565b915050600a8261238791906133df565b9150612364565b60008167ffffffffffffffff8111156123aa576123a9613710565b5b6040519080825280601f01601f1916602001820160405280156123dc5781602001600182028036833780820191505090505b5090505b60008514612469576001826123f5919061346a565b9150600a856124049190613623565b60306124109190613389565b60f81b818381518110612426576124256136e1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561246291906133df565b94506123e0565b8093505050505b919050565b600033905090565b60009392505050565b61248e61254c565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b8280546125a790613577565b90600052602060002090601f0160209004810192826125c95760008555612610565b82601f106125e257805160ff1916838001178555612610565b82800160010185558215612610579182015b8281111561260f5782518255916020019190600101906125f4565b5b50905061261d9190612621565b5090565b5b8082111561263a576000816000905550600101612622565b5090565b600061265161264c84613252565b61322d565b90508281526020810184848401111561266d5761266c61374e565b5b612678848285613535565b509392505050565b600061269361268e84613283565b61322d565b9050828152602081018484840111156126af576126ae61374e565b5b6126ba848285613535565b509392505050565b6000813590506126d181613908565b92915050565b60008083601f8401126126ed576126ec613744565b5b8235905067ffffffffffffffff81111561270a5761270961373f565b5b60208301915083602082028301111561272657612725613749565b5b9250929050565b60008135905061273c8161391f565b92915050565b60008135905061275181613936565b92915050565b60008151905061276681613936565b92915050565b600082601f83011261278157612780613744565b5b813561279184826020860161263e565b91505092915050565b600082601f8301126127af576127ae613744565b5b81356127bf848260208601612680565b91505092915050565b6000813590506127d78161394d565b92915050565b6000602082840312156127f3576127f2613758565b5b6000612801848285016126c2565b91505092915050565b6000806040838503121561282157612820613758565b5b600061282f858286016126c2565b9250506020612840858286016126c2565b9150509250929050565b60008060006060848603121561286357612862613758565b5b6000612871868287016126c2565b9350506020612882868287016126c2565b9250506040612893868287016127c8565b9150509250925092565b600080600080608085870312156128b7576128b6613758565b5b60006128c5878288016126c2565b94505060206128d6878288016126c2565b93505060406128e7878288016127c8565b925050606085013567ffffffffffffffff81111561290857612907613753565b5b6129148782880161276c565b91505092959194509250565b6000806040838503121561293757612936613758565b5b6000612945858286016126c2565b92505060206129568582860161272d565b9150509250929050565b6000806040838503121561297757612976613758565b5b6000612985858286016126c2565b9250506020612996858286016127c8565b9150509250929050565b6000806000606084860312156129b9576129b8613758565b5b60006129c7868287016126c2565b93505060206129d8868287016127c8565b92505060406129e9868287016127c8565b9150509250925092565b60008060208385031215612a0a57612a09613758565b5b600083013567ffffffffffffffff811115612a2857612a27613753565b5b612a34858286016126d7565b92509250509250929050565b600060208284031215612a5657612a55613758565b5b6000612a648482850161272d565b91505092915050565b600060208284031215612a8357612a82613758565b5b6000612a9184828501612742565b91505092915050565b600060208284031215612ab057612aaf613758565b5b6000612abe84828501612757565b91505092915050565b600060208284031215612add57612adc613758565b5b600082013567ffffffffffffffff811115612afb57612afa613753565b5b612b078482850161279a565b91505092915050565b600060208284031215612b2657612b25613758565b5b6000612b34848285016127c8565b91505092915050565b6000612b498383612ee5565b60808301905092915050565b6000612b618383612f9e565b60208301905092915050565b612b768161349e565b82525050565b612b858161349e565b82525050565b6000612b96826132e9565b612ba0818561332f565b9350612bab836132b4565b8060005b83811015612bdc578151612bc38882612b3d565b9750612bce83613315565b925050600181019050612baf565b5085935050505092915050565b6000612bf4826132f4565b612bfe8185613340565b9350612c09836132c4565b8060005b83811015612c3a578151612c218882612b55565b9750612c2c83613322565b925050600181019050612c0d565b5085935050505092915050565b612c50816134b0565b82525050565b612c5f816134b0565b82525050565b6000612c70826132ff565b612c7a8185613351565b9350612c8a818560208601613544565b612c938161375d565b840191505092915050565b6000612ca98261330a565b612cb3818561336d565b9350612cc3818560208601613544565b612ccc8161375d565b840191505092915050565b6000612ce28261330a565b612cec818561337e565b9350612cfc818560208601613544565b80840191505092915050565b60008154612d1581613577565b612d1f818661337e565b94506001821660008114612d3a5760018114612d4b57612d7e565b60ff19831686528186019350612d7e565b612d54856132d4565b60005b83811015612d7657815481890152600182019150602081019050612d57565b838801955050505b50505092915050565b6000612d9460268361336d565b9150612d9f8261376e565b604082019050919050565b6000612db7600e8361336d565b9150612dc2826137bd565b602082019050919050565b6000612dda601e8361336d565b9150612de5826137e6565b602082019050919050565b6000612dfd600f8361336d565b9150612e088261380f565b602082019050919050565b6000612e2060058361337e565b9150612e2b82613838565b600582019050919050565b6000612e4360088361336d565b9150612e4e82613861565b602082019050919050565b6000612e6660208361336d565b9150612e718261388a565b602082019050919050565b6000612e89600083613362565b9150612e94826138b3565b600082019050919050565b6000612eac60108361336d565b9150612eb7826138b6565b602082019050919050565b6000612ecf601a8361336d565b9150612eda826138df565b602082019050919050565b608082016000820151612efb6000850182612b6d565b506020820151612f0e6020850182612fbc565b506040820151612f216040850182612c47565b506060820151612f346060850182612f8f565b50505050565b608082016000820151612f506000850182612b6d565b506020820151612f636020850182612fbc565b506040820151612f766040850182612c47565b506060820151612f896060850182612f8f565b50505050565b612f9881613508565b82525050565b612fa781613517565b82525050565b612fb681613517565b82525050565b612fc581613521565b82525050565b6000612fd78285612d08565b9150612fe38284612cd7565b9150612fee82612e13565b91508190509392505050565b600061300582612e7c565b9150819050919050565b60006020820190506130246000830184612b7c565b92915050565b600060808201905061303f6000830187612b7c565b61304c6020830186612b7c565b6130596040830185612fad565b818103606083015261306b8184612c65565b905095945050505050565b600060208201905081810360008301526130908184612b8b565b905092915050565b600060208201905081810360008301526130b28184612be9565b905092915050565b60006020820190506130cf6000830184612c56565b92915050565b600060208201905081810360008301526130ef8184612c9e565b905092915050565b6000602082019050818103600083015261311081612d87565b9050919050565b6000602082019050818103600083015261313081612daa565b9050919050565b6000602082019050818103600083015261315081612dcd565b9050919050565b6000602082019050818103600083015261317081612df0565b9050919050565b6000602082019050818103600083015261319081612e36565b9050919050565b600060208201905081810360008301526131b081612e59565b9050919050565b600060208201905081810360008301526131d081612e9f565b9050919050565b600060208201905081810360008301526131f081612ec2565b9050919050565b600060808201905061320c6000830184612f3a565b92915050565b60006020820190506132276000830184612fad565b92915050565b6000613237613248565b905061324382826135a9565b919050565b6000604051905090565b600067ffffffffffffffff82111561326d5761326c613710565b5b6132768261375d565b9050602081019050919050565b600067ffffffffffffffff82111561329e5761329d613710565b5b6132a78261375d565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061339482613517565b915061339f83613517565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133d4576133d3613654565b5b828201905092915050565b60006133ea82613517565b91506133f583613517565b92508261340557613404613683565b5b828204905092915050565b600061341b82613517565b915061342683613517565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561345f5761345e613654565b5b828202905092915050565b600061347582613517565b915061348083613517565b92508282101561349357613492613654565b5b828203905092915050565b60006134a9826134e8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613562578082015181840152602081019050613547565b83811115613571576000848401525b50505050565b6000600282049050600182168061358f57607f821691505b602082108114156135a3576135a26136b2565b5b50919050565b6135b28261375d565b810181811067ffffffffffffffff821117156135d1576135d0613710565b5b80604052505050565b60006135e582613517565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561361857613617613654565b5b600182019050919050565b600061362e82613517565b915061363983613517565b92508261364957613648613683565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e742064697361626c65642e000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4e6f7420656e6f756768206574682e0000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d6178206f6620313020706572207472616e73616374696f6e2e000000000000600082015250565b6139118161349e565b811461391c57600080fd5b50565b613928816134b0565b811461393357600080fd5b50565b61393f816134bc565b811461394a57600080fd5b50565b61395681613517565b811461396157600080fd5b5056fea2646970667358221220307a42808dbc138e6e6efbb32a4d2b91b7609338753e61923179bd6483bcd71f64736f6c63430008070033

Deployed Bytecode Sourcemap

66545:2990:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68075:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20924:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21826:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28317:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27750:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17577:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31956:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66879:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69187:184;;;;;;;;;;;;;:::i;:::-;;34877:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55602:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69023:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23219:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66835:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18761:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65656:103;;;;;;;;;;;;;:::i;:::-;;68840:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59478:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66735:72;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65008:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68387:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22002:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56518:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67665:361;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28875:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35668:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66638:73;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55015:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68586:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66601:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68221:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29266:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67447:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65914:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66915:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68075:96;64894:13;:11;:13::i;:::-;68157:6:::1;68145:9;:18;;;;68075:96:::0;:::o;20924:639::-;21009:4;21348:10;21333:25;;:11;:25;;;;:102;;;;21425:10;21410:25;;:11;:25;;;;21333:102;:179;;;;21502:10;21487:25;;:11;:25;;;;21333:179;21313:199;;20924:639;;;:::o;21826:100::-;21880:13;21913:5;21906:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21826:100;:::o;28317:218::-;28393:7;28418:16;28426:7;28418;:16::i;:::-;28413:64;;28443:34;;;;;;;;;;;;;;28413:64;28497:15;:24;28513:7;28497:24;;;;;;;;;;;:30;;;;;;;;;;;;28490:37;;28317:218;;;:::o;27750:408::-;27839:13;27855:16;27863:7;27855;:16::i;:::-;27839:32;;27911:5;27888:28;;:19;:17;:19::i;:::-;:28;;;27884:175;;27936:44;27953:5;27960:19;:17;:19::i;:::-;27936:16;:44::i;:::-;27931:128;;28008:35;;;;;;;;;;;;;;27931:128;27884:175;28104:2;28071:15;:24;28087:7;28071:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28142:7;28138:2;28122:28;;28131:5;28122:28;;;;;;;;;;;;27828:330;27750:408;;:::o;17577:323::-;17638:7;17866:15;:13;:15::i;:::-;17851:12;;17835:13;;:28;:46;17828:53;;17577:323;:::o;31956:2825::-;32098:27;32128;32147:7;32128:18;:27::i;:::-;32098:57;;32213:4;32172:45;;32188:19;32172:45;;;32168:86;;32226:28;;;;;;;;;;;;;;32168:86;32268:27;32297:23;32324:35;32351:7;32324:26;:35::i;:::-;32267:92;;;;32459:68;32484:15;32501:4;32507:19;:17;:19::i;:::-;32459:24;:68::i;:::-;32454:180;;32547:43;32564:4;32570:19;:17;:19::i;:::-;32547:16;:43::i;:::-;32542:92;;32599:35;;;;;;;;;;;;;;32542:92;32454:180;32665:1;32651:16;;:2;:16;;;32647:52;;;32676:23;;;;;;;;;;;;;;32647:52;32712:43;32734:4;32740:2;32744:7;32753:1;32712:21;:43::i;:::-;32848:15;32845:160;;;32988:1;32967:19;32960:30;32845:160;33385:18;:24;33404:4;33385:24;;;;;;;;;;;;;;;;33383:26;;;;;;;;;;;;33454:18;:22;33473:2;33454:22;;;;;;;;;;;;;;;;33452:24;;;;;;;;;;;33776:146;33813:2;33862:45;33877:4;33883:2;33887:19;33862:14;:45::i;:::-;13976:8;33834:73;33776:18;:146::i;:::-;33747:17;:26;33765:7;33747:26;;;;;;;;;;;:175;;;;34093:1;13976:8;34042:19;:47;:52;34038:627;;;34115:19;34147:1;34137:7;:11;34115:33;;34304:1;34270:17;:30;34288:11;34270:30;;;;;;;;;;;;:35;34266:384;;;34408:13;;34393:11;:28;34389:242;;34588:19;34555:17;:30;34573:11;34555:30;;;;;;;;;;;:52;;;;34389:242;34266:384;34096:569;34038:627;34712:7;34708:2;34693:27;;34702:4;34693:27;;;;;;;;;;;;34731:42;34752:4;34758:2;34762:7;34771:1;34731:20;:42::i;:::-;32087:2694;;;31956:2825;;;:::o;66879:29::-;;;;;;;;;;;;;:::o;69187:184::-;64894:13;:11;:13::i;:::-;69238:12:::1;69264;;;;;;;;;;;69256:26;;69290:21;69256:60;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69237:79;;;69335:7;69327:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;69226:145;69187:184::o:0;34877:193::-;35023:39;35040:4;35046:2;35050:7;35023:39;;;;;;;;;;;;:16;:39::i;:::-;34877:193;;;:::o;55602:528::-;55746:23;55812:22;55837:8;;:15;;55812:40;;55867:34;55925:14;55904:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;55867:73;;55960:9;55955:125;55976:14;55971:1;:19;55955:125;;56032:32;56052:8;;56061:1;56052:11;;;;;;;:::i;:::-;;;;;;;;56032:19;:32::i;:::-;56016:10;56027:1;56016:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;55992:3;;;;;55955:125;;;;56101:10;56094:17;;;;55602:528;;;;:::o;69023:114::-;64894:13;:11;:13::i;:::-;69116::::1;69101:12;;:28;;;;;;;;;;;;;;;;;;69023:114:::0;:::o;23219:152::-;23291:7;23334:27;23353:7;23334:18;:27::i;:::-;23311:52;;23219:152;;;:::o;66835:37::-;;;;:::o;18761:233::-;18833:7;18874:1;18857:19;;:5;:19;;;18853:60;;;18885:28;;;;;;;;;;;;;;18853:60;12920:13;18931:18;:25;18950:5;18931:25;;;;;;;;;;;;;;;;:55;18924:62;;18761:233;;;:::o;65656:103::-;64894:13;:11;:13::i;:::-;65721:30:::1;65748:1;65721:18;:30::i;:::-;65656:103::o:0;68840:118::-;64894:13;:11;:13::i;:::-;68936:14:::1;68920:13;;:30;;;;;;;;;;;;;;;;;;68840:118:::0;:::o;59478:900::-;59556:16;59610:19;59644:25;59684:22;59709:16;59719:5;59709:9;:16::i;:::-;59684:41;;59740:25;59782:14;59768:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59740:57;;59812:31;;:::i;:::-;59863:9;59875:15;:13;:15::i;:::-;59863:27;;59858:472;59907:14;59892:11;:29;59858:472;;59959:15;59972:1;59959:12;:15::i;:::-;59947:27;;59997:9;:16;;;59993:73;;;60038:8;;59993:73;60114:1;60088:28;;:9;:14;;;:28;;;60084:111;;60161:9;:14;;;60141:34;;60084:111;60238:5;60217:26;;:17;:26;;;60213:102;;;60294:1;60268:8;60277:13;;;;;;60268:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;60213:102;59858:472;59923:3;;;;;59858:472;;;;60351:8;60344:15;;;;;;;59478:900;;;:::o;66735:72::-;;;;;;;;;;;;;:::o;65008:87::-;65054:7;65081:6;;;;;;;;;;;65074:13;;65008:87;:::o;68387:146::-;64894:13;:11;:13::i;:::-;68518:7:::1;68503:12;:22;;;;;;;;;;;;:::i;:::-;;68387:146:::0;:::o;22002:104::-;22058:13;22091:7;22084:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22002:104;:::o;56518:2513::-;56661:16;56728:4;56719:5;:13;56715:45;;56741:19;;;;;;;;;;;;;;56715:45;56775:19;56809:17;56829:14;:12;:14::i;:::-;56809:34;;56929:15;:13;:15::i;:::-;56921:5;:23;56917:87;;;56973:15;:13;:15::i;:::-;56965:23;;56917:87;57080:9;57073:4;:16;57069:73;;;57117:9;57110:16;;57069:73;57156:25;57184:16;57194:5;57184:9;:16::i;:::-;57156:44;;57378:4;57370:5;:12;57366:278;;;57403:19;57432:5;57425:4;:12;57403:34;;57474:17;57460:11;:31;57456:111;;;57536:11;57516:31;;57456:111;57384:198;57366:278;;;57627:1;57607:21;;57366:278;57658:25;57700:17;57686:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57658:60;;57758:1;57737:17;:22;57733:78;;;57787:8;57780:15;;;;;;;;57733:78;57955:31;57989:26;58009:5;57989:19;:26::i;:::-;57955:60;;58030:25;58275:9;:16;;;58270:92;;58332:9;:14;;;58312:34;;58270:92;58381:9;58393:5;58381:17;;58376:478;58405:4;58400:1;:9;;:45;;;;;58428:17;58413:11;:32;;58400:45;58376:478;;;58483:15;58496:1;58483:12;:15::i;:::-;58471:27;;58521:9;:16;;;58517:73;;;58562:8;;58517:73;58638:1;58612:28;;:9;:14;;;:28;;;58608:111;;58685:9;:14;;;58665:34;;58608:111;58762:5;58741:26;;:17;:26;;;58737:102;;;58818:1;58792:8;58801:13;;;;;;58792:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;58737:102;58376:478;58447:3;;;;;58376:478;;;;58956:11;58946:8;58939:29;59004:8;58997:15;;;;;;;;56518:2513;;;;;;:::o;67665:361::-;67327:10;67314:23;;:9;:23;;;67306:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;67742:9:::1;;;;;;;;;;;67734:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;67800:2;67789:7;:13;;67781:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;67875:9;;67865:7;:19;;;;:::i;:::-;67852:9;:32;;67844:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;67950:9;;67939:7;67923:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;;67915:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;67984:34;67998:10;68010:7;67984:5;:34::i;:::-;67665:361:::0;:::o;28875:234::-;29022:8;28970:18;:39;28989:19;:17;:19::i;:::-;28970:39;;;;;;;;;;;;;;;:49;29010:8;28970:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29082:8;29046:55;;29061:19;:17;:19::i;:::-;29046:55;;;29092:8;29046:55;;;;;;:::i;:::-;;;;;;;;28875:234;;:::o;35668:407::-;35843:31;35856:4;35862:2;35866:7;35843:12;:31::i;:::-;35907:1;35889:2;:14;;;:19;35885:183;;35928:56;35959:4;35965:2;35969:7;35978:5;35928:30;:56::i;:::-;35923:145;;36012:40;;;;;;;;;;;;;;35923:145;35885:183;35668:407;;;;:::o;66638:73::-;;;;;;;;;;;;;:::o;55015:428::-;55099:21;;:::i;:::-;55133:31;;:::i;:::-;55189:15;:13;:15::i;:::-;55179:7;:25;:54;;;;55219:14;:12;:14::i;:::-;55208:7;:25;;55179:54;55175:103;;;55257:9;55250:16;;;;;55175:103;55300:21;55313:7;55300:12;:21::i;:::-;55288:33;;55336:9;:16;;;55332:65;;;55376:9;55369:16;;;;;55332:65;55414:21;55427:7;55414:12;:21::i;:::-;55407:28;;;55015:428;;;;:::o;68586:187::-;68656:18;68717:12;68730:25;68747:7;68730:16;:25::i;:::-;68700:64;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68686:79;;68586:187;;;:::o;66601:30::-;;;;:::o;68221:101::-;64894:13;:11;:13::i;:::-;68304:10:::1;68292:9;;:22;;;;;;;;;;;;;;;;;;68221:101:::0;:::o;29266:164::-;29363:4;29387:18;:25;29406:5;29387:25;;;;;;;;;;;;;;;:35;29413:8;29387:35;;;;;;;;;;;;;;;;;;;;;;;;;29380:42;;29266:164;;;;:::o;67447:175::-;64894:13;:11;:13::i;:::-;67545:9:::1;;67534:7;67518:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;;67510:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;67577:37;67591:13;;;;;;;;;;;67606:7;67577:5;:37::i;:::-;67447:175:::0;:::o;65914:201::-;64894:13;:11;:13::i;:::-;66023:1:::1;66003:22;;:8;:22;;;;65995:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;66079:28;66098:8;66079:18;:28::i;:::-;65914:201:::0;:::o;66915:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65173:132::-;65248:12;:10;:12::i;:::-;65237:23;;:7;:5;:7::i;:::-;:23;;;65229:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65173:132::o;29688:282::-;29753:4;29809:7;29790:15;:13;:15::i;:::-;:26;;:66;;;;;29843:13;;29833:7;:23;29790:66;:153;;;;;29942:1;13696:8;29894:17;:26;29912:7;29894:26;;;;;;;;;;;;:44;:49;29790:153;29770:173;;29688:282;;;:::o;51996:105::-;52056:7;52083:10;52076:17;;51996:105;:::o;17093:92::-;17149:7;17093:92;:::o;24374:1275::-;24441:7;24461:12;24476:7;24461:22;;24544:4;24525:15;:13;:15::i;:::-;:23;24521:1061;;24578:13;;24571:4;:20;24567:1015;;;24616:14;24633:17;:23;24651:4;24633:23;;;;;;;;;;;;24616:40;;24750:1;13696:8;24722:6;:24;:29;24718:845;;;25387:113;25404:1;25394:6;:11;25387:113;;;25447:17;:25;25465:6;;;;;;;25447:25;;;;;;;;;;;;25438:34;;25387:113;;;25533:6;25526:13;;;;;;24718:845;24593:989;24567:1015;24521:1061;25610:31;;;;;;;;;;;;;;24374:1275;;;;:::o;30851:485::-;30953:27;30982:23;31023:38;31064:15;:24;31080:7;31064:24;;;;;;;;;;;31023:65;;31241:18;31218:41;;31298:19;31292:26;31273:45;;31203:126;30851:485;;;:::o;30079:659::-;30228:11;30393:16;30386:5;30382:28;30373:37;;30553:16;30542:9;30538:32;30525:45;;30703:15;30692:9;30689:30;30681:5;30670:9;30667:20;30664:56;30654:66;;30079:659;;;;;:::o;36737:159::-;;;;;:::o;51305:311::-;51440:7;51460:16;14100:3;51486:19;:41;;51460:68;;14100:3;51554:31;51565:4;51571:2;51575:9;51554:10;:31::i;:::-;51546:40;;:62;;51539:69;;;51305:311;;;;;:::o;26197:450::-;26277:14;26445:16;26438:5;26434:28;26425:37;;26622:5;26608:11;26583:23;26579:41;26576:52;26569:5;26566:63;26556:73;;26197:450;;;;:::o;37561:158::-;;;;;:::o;66275:191::-;66349:16;66368:6;;;;;;;;;;;66349:25;;66394:8;66385:6;;:17;;;;;;;;;;;;;;;;;;66449:8;66418:40;;66439:8;66418:40;;;;;;;;;;;;66338:128;66275:191;:::o;23822:161::-;23890:21;;:::i;:::-;23931:44;23950:17;:24;23968:5;23950:24;;;;;;;;;;;;23931:18;:44::i;:::-;23924:51;;23822:161;;;:::o;17264:103::-;17319:7;17346:13;;17339:20;;17264:103;:::o;39337:2966::-;39410:20;39433:13;;39410:36;;39473:1;39461:8;:13;39457:44;;;39483:18;;;;;;;;;;;;;;39457:44;39514:61;39544:1;39548:2;39552:12;39566:8;39514:21;:61::i;:::-;40058:1;13058:2;40028:1;:26;;40027:32;40015:8;:45;39989:18;:22;40008:2;39989:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;40337:139;40374:2;40428:33;40451:1;40455:2;40459:1;40428:14;:33::i;:::-;40395:30;40416:8;40395:20;:30::i;:::-;:66;40337:18;:139::i;:::-;40303:17;:31;40321:12;40303:31;;;;;;;;;;;:173;;;;40493:16;40524:11;40553:8;40538:12;:23;40524:37;;41074:16;41070:2;41066:25;41054:37;;41446:12;41406:8;41365:1;41303:25;41244:1;41183;41156:335;41817:1;41803:12;41799:20;41757:346;41858:3;41849:7;41846:16;41757:346;;42076:7;42066:8;42063:1;42036:25;42033:1;42030;42025:59;41911:1;41902:7;41898:15;41887:26;;41757:346;;;41761:77;42148:1;42136:8;:13;42132:45;;;42158:19;;;;;;;;;;;;;;42132:45;42210:3;42194:13;:19;;;;39763:2462;;42235:60;42264:1;42268:2;42272:12;42286:8;42235:20;:60::i;:::-;39399:2904;39337:2966;;:::o;38159:716::-;38322:4;38368:2;38343:45;;;38389:19;:17;:19::i;:::-;38410:4;38416:7;38425:5;38343:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38339:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38643:1;38626:6;:13;:18;38622:235;;;38672:40;;;;;;;;;;;;;;38622:235;38815:6;38809:13;38800:6;38796:2;38792:15;38785:38;38339:529;38512:54;;;38502:64;;;:6;:64;;;;38495:71;;;38159:716;;;;;;:::o;23560:166::-;23630:21;;:::i;:::-;23671:47;23690:27;23709:7;23690:18;:27::i;:::-;23671:18;:47::i;:::-;23664:54;;23560:166;;;:::o;60813:723::-;60869:13;61099:1;61090:5;:10;61086:53;;;61117:10;;;;;;;;;;;;;;;;;;;;;61086:53;61149:12;61164:5;61149:20;;61180:14;61205:78;61220:1;61212:4;:9;61205:78;;61238:8;;;;;:::i;:::-;;;;61269:2;61261:10;;;;;:::i;:::-;;;61205:78;;;61293:19;61325:6;61315:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61293:39;;61343:154;61359:1;61350:5;:10;61343:154;;61387:1;61377:11;;;;;:::i;:::-;;;61454:2;61446:5;:10;;;;:::i;:::-;61433:2;:24;;;;:::i;:::-;61420:39;;61403:6;61410;61403:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;61483:2;61474:11;;;;;:::i;:::-;;;61343:154;;;61521:6;61507:21;;;;;60813:723;;;;:::o;63559:98::-;63612:7;63639:10;63632:17;;63559:98;:::o;51006:147::-;51143:6;51006:147;;;;;:::o;25748:366::-;25814:31;;:::i;:::-;25891:6;25858:9;:14;;:41;;;;;;;;;;;13579:3;25944:6;:33;;25910:9;:24;;:68;;;;;;;;;;;26036:1;13696:8;26008:6;:24;:29;;25989:9;:16;;:48;;;;;;;;;;;14100:3;26077:6;:28;;26048:9;:19;;:58;;;;;;;;;;;25748:366;;;:::o;26749:324::-;26819:14;27052:1;27042:8;27039:15;27013:24;27009:46;26999:56;;26749:324;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:619::-;6288:6;6296;6304;6353:2;6341:9;6332:7;6328:23;6324:32;6321:119;;;6359:79;;:::i;:::-;6321:119;6479:1;6504:53;6549:7;6540:6;6529:9;6525:22;6504:53;:::i;:::-;6494:63;;6450:117;6606:2;6632:53;6677:7;6668:6;6657:9;6653:22;6632:53;:::i;:::-;6622:63;;6577:118;6734:2;6760:53;6805:7;6796:6;6785:9;6781:22;6760:53;:::i;:::-;6750:63;;6705:118;6211:619;;;;;:::o;6836:559::-;6922:6;6930;6979:2;6967:9;6958:7;6954:23;6950:32;6947:119;;;6985:79;;:::i;:::-;6947:119;7133:1;7122:9;7118:17;7105:31;7163:18;7155:6;7152:30;7149:117;;;7185:79;;:::i;:::-;7149:117;7298:80;7370:7;7361:6;7350:9;7346:22;7298:80;:::i;:::-;7280:98;;;;7076:312;6836:559;;;;;:::o;7401:323::-;7457:6;7506:2;7494:9;7485:7;7481:23;7477:32;7474:119;;;7512:79;;:::i;:::-;7474:119;7632:1;7657:50;7699:7;7690:6;7679:9;7675:22;7657:50;:::i;:::-;7647:60;;7603:114;7401:323;;;;:::o;7730:327::-;7788:6;7837:2;7825:9;7816:7;7812:23;7808:32;7805:119;;;7843:79;;:::i;:::-;7805:119;7963:1;7988:52;8032:7;8023:6;8012:9;8008:22;7988:52;:::i;:::-;7978:62;;7934:116;7730:327;;;;:::o;8063:349::-;8132:6;8181:2;8169:9;8160:7;8156:23;8152:32;8149:119;;;8187:79;;:::i;:::-;8149:119;8307:1;8332:63;8387:7;8378:6;8367:9;8363:22;8332:63;:::i;:::-;8322:73;;8278:127;8063:349;;;;:::o;8418:509::-;8487:6;8536:2;8524:9;8515:7;8511:23;8507:32;8504:119;;;8542:79;;:::i;:::-;8504:119;8690:1;8679:9;8675:17;8662:31;8720:18;8712:6;8709:30;8706:117;;;8742:79;;:::i;:::-;8706:117;8847:63;8902:7;8893:6;8882:9;8878:22;8847:63;:::i;:::-;8837:73;;8633:287;8418:509;;;;:::o;8933:329::-;8992:6;9041:2;9029:9;9020:7;9016:23;9012:32;9009:119;;;9047:79;;:::i;:::-;9009:119;9167:1;9192:53;9237:7;9228:6;9217:9;9213:22;9192:53;:::i;:::-;9182:63;;9138:117;8933:329;;;;:::o;9268:299::-;9397:10;9418:106;9520:3;9512:6;9418:106;:::i;:::-;9556:4;9551:3;9547:14;9533:28;;9268:299;;;;:::o;9573:179::-;9642:10;9663:46;9705:3;9697:6;9663:46;:::i;:::-;9741:4;9736:3;9732:14;9718:28;;9573:179;;;;:::o;9758:108::-;9835:24;9853:5;9835:24;:::i;:::-;9830:3;9823:37;9758:108;;:::o;9872:118::-;9959:24;9977:5;9959:24;:::i;:::-;9954:3;9947:37;9872:118;;:::o;10072:972::-;10251:3;10280:84;10358:5;10280:84;:::i;:::-;10380:116;10489:6;10484:3;10380:116;:::i;:::-;10373:123;;10520:86;10600:5;10520:86;:::i;:::-;10629:7;10660:1;10645:374;10670:6;10667:1;10664:13;10645:374;;;10746:6;10740:13;10773:123;10892:3;10877:13;10773:123;:::i;:::-;10766:130;;10919:90;11002:6;10919:90;:::i;:::-;10909:100;;10705:314;10692:1;10689;10685:9;10680:14;;10645:374;;;10649:14;11035:3;11028:10;;10256:788;;;10072:972;;;;:::o;11080:732::-;11199:3;11228:54;11276:5;11228:54;:::i;:::-;11298:86;11377:6;11372:3;11298:86;:::i;:::-;11291:93;;11408:56;11458:5;11408:56;:::i;:::-;11487:7;11518:1;11503:284;11528:6;11525:1;11522:13;11503:284;;;11604:6;11598:13;11631:63;11690:3;11675:13;11631:63;:::i;:::-;11624:70;;11717:60;11770:6;11717:60;:::i;:::-;11707:70;;11563:224;11550:1;11547;11543:9;11538:14;;11503:284;;;11507:14;11803:3;11796:10;;11204:608;;;11080:732;;;;:::o;11818:99::-;11889:21;11904:5;11889:21;:::i;:::-;11884:3;11877:34;11818:99;;:::o;11923:109::-;12004:21;12019:5;12004:21;:::i;:::-;11999:3;11992:34;11923:109;;:::o;12038:360::-;12124:3;12152:38;12184:5;12152:38;:::i;:::-;12206:70;12269:6;12264:3;12206:70;:::i;:::-;12199:77;;12285:52;12330:6;12325:3;12318:4;12311:5;12307:16;12285:52;:::i;:::-;12362:29;12384:6;12362:29;:::i;:::-;12357:3;12353:39;12346:46;;12128:270;12038:360;;;;:::o;12404:364::-;12492:3;12520:39;12553:5;12520:39;:::i;:::-;12575:71;12639:6;12634:3;12575:71;:::i;:::-;12568:78;;12655:52;12700:6;12695:3;12688:4;12681:5;12677:16;12655:52;:::i;:::-;12732:29;12754:6;12732:29;:::i;:::-;12727:3;12723:39;12716:46;;12496:272;12404:364;;;;:::o;12774:377::-;12880:3;12908:39;12941:5;12908:39;:::i;:::-;12963:89;13045:6;13040:3;12963:89;:::i;:::-;12956:96;;13061:52;13106:6;13101:3;13094:4;13087:5;13083:16;13061:52;:::i;:::-;13138:6;13133:3;13129:16;13122:23;;12884:267;12774:377;;;;:::o;13181:845::-;13284:3;13321:5;13315:12;13350:36;13376:9;13350:36;:::i;:::-;13402:89;13484:6;13479:3;13402:89;:::i;:::-;13395:96;;13522:1;13511:9;13507:17;13538:1;13533:137;;;;13684:1;13679:341;;;;13500:520;;13533:137;13617:4;13613:9;13602;13598:25;13593:3;13586:38;13653:6;13648:3;13644:16;13637:23;;13533:137;;13679:341;13746:38;13778:5;13746:38;:::i;:::-;13806:1;13820:154;13834:6;13831:1;13828:13;13820:154;;;13908:7;13902:14;13898:1;13893:3;13889:11;13882:35;13958:1;13949:7;13945:15;13934:26;;13856:4;13853:1;13849:12;13844:17;;13820:154;;;14003:6;13998:3;13994:16;13987:23;;13686:334;;13500:520;;13288:738;;13181:845;;;;:::o;14032:366::-;14174:3;14195:67;14259:2;14254:3;14195:67;:::i;:::-;14188:74;;14271:93;14360:3;14271:93;:::i;:::-;14389:2;14384:3;14380:12;14373:19;;14032:366;;;:::o;14404:::-;14546:3;14567:67;14631:2;14626:3;14567:67;:::i;:::-;14560:74;;14643:93;14732:3;14643:93;:::i;:::-;14761:2;14756:3;14752:12;14745:19;;14404:366;;;:::o;14776:::-;14918:3;14939:67;15003:2;14998:3;14939:67;:::i;:::-;14932:74;;15015:93;15104:3;15015:93;:::i;:::-;15133:2;15128:3;15124:12;15117:19;;14776:366;;;:::o;15148:::-;15290:3;15311:67;15375:2;15370:3;15311:67;:::i;:::-;15304:74;;15387:93;15476:3;15387:93;:::i;:::-;15505:2;15500:3;15496:12;15489:19;;15148:366;;;:::o;15520:400::-;15680:3;15701:84;15783:1;15778:3;15701:84;:::i;:::-;15694:91;;15794:93;15883:3;15794:93;:::i;:::-;15912:1;15907:3;15903:11;15896:18;;15520:400;;;:::o;15926:365::-;16068:3;16089:66;16153:1;16148:3;16089:66;:::i;:::-;16082:73;;16164:93;16253:3;16164:93;:::i;:::-;16282:2;16277:3;16273:12;16266:19;;15926:365;;;:::o;16297:366::-;16439:3;16460:67;16524:2;16519:3;16460:67;:::i;:::-;16453:74;;16536:93;16625:3;16536:93;:::i;:::-;16654:2;16649:3;16645:12;16638:19;;16297:366;;;:::o;16669:398::-;16828:3;16849:83;16930:1;16925:3;16849:83;:::i;:::-;16842:90;;16941:93;17030:3;16941:93;:::i;:::-;17059:1;17054:3;17050:11;17043:18;;16669:398;;;:::o;17073:366::-;17215:3;17236:67;17300:2;17295:3;17236:67;:::i;:::-;17229:74;;17312:93;17401:3;17312:93;:::i;:::-;17430:2;17425:3;17421:12;17414:19;;17073:366;;;:::o;17445:::-;17587:3;17608:67;17672:2;17667:3;17608:67;:::i;:::-;17601:74;;17684:93;17773:3;17684:93;:::i;:::-;17802:2;17797:3;17793:12;17786:19;;17445:366;;;:::o;17889:862::-;18036:4;18031:3;18027:14;18123:4;18116:5;18112:16;18106:23;18142:63;18199:4;18194:3;18190:14;18176:12;18142:63;:::i;:::-;18051:164;18307:4;18300:5;18296:16;18290:23;18326:61;18381:4;18376:3;18372:14;18358:12;18326:61;:::i;:::-;18225:172;18481:4;18474:5;18470:16;18464:23;18500:57;18551:4;18546:3;18542:14;18528:12;18500:57;:::i;:::-;18407:160;18654:4;18647:5;18643:16;18637:23;18673:61;18728:4;18723:3;18719:14;18705:12;18673:61;:::i;:::-;18577:167;18005:746;17889:862;;:::o;18829:872::-;18986:4;18981:3;18977:14;19073:4;19066:5;19062:16;19056:23;19092:63;19149:4;19144:3;19140:14;19126:12;19092:63;:::i;:::-;19001:164;19257:4;19250:5;19246:16;19240:23;19276:61;19331:4;19326:3;19322:14;19308:12;19276:61;:::i;:::-;19175:172;19431:4;19424:5;19420:16;19414:23;19450:57;19501:4;19496:3;19492:14;19478:12;19450:57;:::i;:::-;19357:160;19604:4;19597:5;19593:16;19587:23;19623:61;19678:4;19673:3;19669:14;19655:12;19623:61;:::i;:::-;19527:167;18955:746;18829:872;;:::o;19707:105::-;19782:23;19799:5;19782:23;:::i;:::-;19777:3;19770:36;19707:105;;:::o;19818:108::-;19895:24;19913:5;19895:24;:::i;:::-;19890:3;19883:37;19818:108;;:::o;19932:118::-;20019:24;20037:5;20019:24;:::i;:::-;20014:3;20007:37;19932:118;;:::o;20056:105::-;20131:23;20148:5;20131:23;:::i;:::-;20126:3;20119:36;20056:105;;:::o;20167:695::-;20445:3;20467:92;20555:3;20546:6;20467:92;:::i;:::-;20460:99;;20576:95;20667:3;20658:6;20576:95;:::i;:::-;20569:102;;20688:148;20832:3;20688:148;:::i;:::-;20681:155;;20853:3;20846:10;;20167:695;;;;;:::o;20868:379::-;21052:3;21074:147;21217:3;21074:147;:::i;:::-;21067:154;;21238:3;21231:10;;20868:379;;;:::o;21253:222::-;21346:4;21384:2;21373:9;21369:18;21361:26;;21397:71;21465:1;21454:9;21450:17;21441:6;21397:71;:::i;:::-;21253:222;;;;:::o;21481:640::-;21676:4;21714:3;21703:9;21699:19;21691:27;;21728:71;21796:1;21785:9;21781:17;21772:6;21728:71;:::i;:::-;21809:72;21877:2;21866:9;21862:18;21853:6;21809:72;:::i;:::-;21891;21959:2;21948:9;21944:18;21935:6;21891:72;:::i;:::-;22010:9;22004:4;22000:20;21995:2;21984:9;21980:18;21973:48;22038:76;22109:4;22100:6;22038:76;:::i;:::-;22030:84;;21481:640;;;;;;;:::o;22127:493::-;22330:4;22368:2;22357:9;22353:18;22345:26;;22417:9;22411:4;22407:20;22403:1;22392:9;22388:17;22381:47;22445:168;22608:4;22599:6;22445:168;:::i;:::-;22437:176;;22127:493;;;;:::o;22626:373::-;22769:4;22807:2;22796:9;22792:18;22784:26;;22856:9;22850:4;22846:20;22842:1;22831:9;22827:17;22820:47;22884:108;22987:4;22978:6;22884:108;:::i;:::-;22876:116;;22626:373;;;;:::o;23005:210::-;23092:4;23130:2;23119:9;23115:18;23107:26;;23143:65;23205:1;23194:9;23190:17;23181:6;23143:65;:::i;:::-;23005:210;;;;:::o;23221:313::-;23334:4;23372:2;23361:9;23357:18;23349:26;;23421:9;23415:4;23411:20;23407:1;23396:9;23392:17;23385:47;23449:78;23522:4;23513:6;23449:78;:::i;:::-;23441:86;;23221:313;;;;:::o;23540:419::-;23706:4;23744:2;23733:9;23729:18;23721:26;;23793:9;23787:4;23783:20;23779:1;23768:9;23764:17;23757:47;23821:131;23947:4;23821:131;:::i;:::-;23813:139;;23540:419;;;:::o;23965:::-;24131:4;24169:2;24158:9;24154:18;24146:26;;24218:9;24212:4;24208:20;24204:1;24193:9;24189:17;24182:47;24246:131;24372:4;24246:131;:::i;:::-;24238:139;;23965:419;;;:::o;24390:::-;24556:4;24594:2;24583:9;24579:18;24571:26;;24643:9;24637:4;24633:20;24629:1;24618:9;24614:17;24607:47;24671:131;24797:4;24671:131;:::i;:::-;24663:139;;24390:419;;;:::o;24815:::-;24981:4;25019:2;25008:9;25004:18;24996:26;;25068:9;25062:4;25058:20;25054:1;25043:9;25039:17;25032:47;25096:131;25222:4;25096:131;:::i;:::-;25088:139;;24815:419;;;:::o;25240:::-;25406:4;25444:2;25433:9;25429:18;25421:26;;25493:9;25487:4;25483:20;25479:1;25468:9;25464:17;25457:47;25521:131;25647:4;25521:131;:::i;:::-;25513:139;;25240:419;;;:::o;25665:::-;25831:4;25869:2;25858:9;25854:18;25846:26;;25918:9;25912:4;25908:20;25904:1;25893:9;25889:17;25882:47;25946:131;26072:4;25946:131;:::i;:::-;25938:139;;25665:419;;;:::o;26090:::-;26256:4;26294:2;26283:9;26279:18;26271:26;;26343:9;26337:4;26333:20;26329:1;26318:9;26314:17;26307:47;26371:131;26497:4;26371:131;:::i;:::-;26363:139;;26090:419;;;:::o;26515:::-;26681:4;26719:2;26708:9;26704:18;26696:26;;26768:9;26762:4;26758:20;26754:1;26743:9;26739:17;26732:47;26796:131;26922:4;26796:131;:::i;:::-;26788:139;;26515:419;;;:::o;26940:343::-;27093:4;27131:3;27120:9;27116:19;27108:27;;27145:131;27273:1;27262:9;27258:17;27249:6;27145:131;:::i;:::-;26940:343;;;;:::o;27289:222::-;27382:4;27420:2;27409:9;27405:18;27397:26;;27433:71;27501:1;27490:9;27486:17;27477:6;27433:71;:::i;:::-;27289:222;;;;:::o;27517:129::-;27551:6;27578:20;;:::i;:::-;27568:30;;27607:33;27635:4;27627:6;27607:33;:::i;:::-;27517:129;;;:::o;27652:75::-;27685:6;27718:2;27712:9;27702:19;;27652:75;:::o;27733:307::-;27794:4;27884:18;27876:6;27873:30;27870:56;;;27906:18;;:::i;:::-;27870:56;27944:29;27966:6;27944:29;:::i;:::-;27936:37;;28028:4;28022;28018:15;28010:23;;27733:307;;;:::o;28046:308::-;28108:4;28198:18;28190:6;28187:30;28184:56;;;28220:18;;:::i;:::-;28184:56;28258:29;28280:6;28258:29;:::i;:::-;28250:37;;28342:4;28336;28332:15;28324:23;;28046:308;;;:::o;28360:162::-;28457:4;28480:3;28472:11;;28510:4;28505:3;28501:14;28493:22;;28360:162;;;:::o;28528:132::-;28595:4;28618:3;28610:11;;28648:4;28643:3;28639:14;28631:22;;28528:132;;;:::o;28666:141::-;28715:4;28738:3;28730:11;;28761:3;28758:1;28751:14;28795:4;28792:1;28782:18;28774:26;;28666:141;;;:::o;28813:144::-;28910:6;28944:5;28938:12;28928:22;;28813:144;;;:::o;28963:114::-;29030:6;29064:5;29058:12;29048:22;;28963:114;;;:::o;29083:98::-;29134:6;29168:5;29162:12;29152:22;;29083:98;;;:::o;29187:99::-;29239:6;29273:5;29267:12;29257:22;;29187:99;;;:::o;29292:143::-;29392:4;29424;29419:3;29415:14;29407:22;;29292:143;;;:::o;29441:113::-;29511:4;29543;29538:3;29534:14;29526:22;;29441:113;;;:::o;29560:214::-;29689:11;29723:6;29718:3;29711:19;29763:4;29758:3;29754:14;29739:29;;29560:214;;;;:::o;29780:184::-;29879:11;29913:6;29908:3;29901:19;29953:4;29948:3;29944:14;29929:29;;29780:184;;;;:::o;29970:168::-;30053:11;30087:6;30082:3;30075:19;30127:4;30122:3;30118:14;30103:29;;29970:168;;;;:::o;30144:147::-;30245:11;30282:3;30267:18;;30144:147;;;;:::o;30297:169::-;30381:11;30415:6;30410:3;30403:19;30455:4;30450:3;30446:14;30431:29;;30297:169;;;;:::o;30472:148::-;30574:11;30611:3;30596:18;;30472:148;;;;:::o;30626:305::-;30666:3;30685:20;30703:1;30685:20;:::i;:::-;30680:25;;30719:20;30737:1;30719:20;:::i;:::-;30714:25;;30873:1;30805:66;30801:74;30798:1;30795:81;30792:107;;;30879:18;;:::i;:::-;30792:107;30923:1;30920;30916:9;30909:16;;30626:305;;;;:::o;30937:185::-;30977:1;30994:20;31012:1;30994:20;:::i;:::-;30989:25;;31028:20;31046:1;31028:20;:::i;:::-;31023:25;;31067:1;31057:35;;31072:18;;:::i;:::-;31057:35;31114:1;31111;31107:9;31102:14;;30937:185;;;;:::o;31128:348::-;31168:7;31191:20;31209:1;31191:20;:::i;:::-;31186:25;;31225:20;31243:1;31225:20;:::i;:::-;31220:25;;31413:1;31345:66;31341:74;31338:1;31335:81;31330:1;31323:9;31316:17;31312:105;31309:131;;;31420:18;;:::i;:::-;31309:131;31468:1;31465;31461:9;31450:20;;31128:348;;;;:::o;31482:191::-;31522:4;31542:20;31560:1;31542:20;:::i;:::-;31537:25;;31576:20;31594:1;31576:20;:::i;:::-;31571:25;;31615:1;31612;31609:8;31606:34;;;31620:18;;:::i;:::-;31606:34;31665:1;31662;31658:9;31650:17;;31482:191;;;;:::o;31679:96::-;31716:7;31745:24;31763:5;31745:24;:::i;:::-;31734:35;;31679:96;;;:::o;31781:90::-;31815:7;31858:5;31851:13;31844:21;31833:32;;31781:90;;;:::o;31877:149::-;31913:7;31953:66;31946:5;31942:78;31931:89;;31877:149;;;:::o;32032:126::-;32069:7;32109:42;32102:5;32098:54;32087:65;;32032:126;;;:::o;32164:91::-;32200:7;32240:8;32233:5;32229:20;32218:31;;32164:91;;;:::o;32261:77::-;32298:7;32327:5;32316:16;;32261:77;;;:::o;32344:101::-;32380:7;32420:18;32413:5;32409:30;32398:41;;32344:101;;;:::o;32451:154::-;32535:6;32530:3;32525;32512:30;32597:1;32588:6;32583:3;32579:16;32572:27;32451:154;;;:::o;32611:307::-;32679:1;32689:113;32703:6;32700:1;32697:13;32689:113;;;32788:1;32783:3;32779:11;32773:18;32769:1;32764:3;32760:11;32753:39;32725:2;32722:1;32718:10;32713:15;;32689:113;;;32820:6;32817:1;32814:13;32811:101;;;32900:1;32891:6;32886:3;32882:16;32875:27;32811:101;32660:258;32611:307;;;:::o;32924:320::-;32968:6;33005:1;32999:4;32995:12;32985:22;;33052:1;33046:4;33042:12;33073:18;33063:81;;33129:4;33121:6;33117:17;33107:27;;33063:81;33191:2;33183:6;33180:14;33160:18;33157:38;33154:84;;;33210:18;;:::i;:::-;33154:84;32975:269;32924:320;;;:::o;33250:281::-;33333:27;33355:4;33333:27;:::i;:::-;33325:6;33321:40;33463:6;33451:10;33448:22;33427:18;33415:10;33412:34;33409:62;33406:88;;;33474:18;;:::i;:::-;33406:88;33514:10;33510:2;33503:22;33293:238;33250:281;;:::o;33537:233::-;33576:3;33599:24;33617:5;33599:24;:::i;:::-;33590:33;;33645:66;33638:5;33635:77;33632:103;;;33715:18;;:::i;:::-;33632:103;33762:1;33755:5;33751:13;33744:20;;33537:233;;;:::o;33776:176::-;33808:1;33825:20;33843:1;33825:20;:::i;:::-;33820:25;;33859:20;33877:1;33859:20;:::i;:::-;33854:25;;33898:1;33888:35;;33903:18;;:::i;:::-;33888:35;33944:1;33941;33937:9;33932:14;;33776:176;;;;:::o;33958:180::-;34006:77;34003:1;33996:88;34103:4;34100:1;34093:15;34127:4;34124:1;34117:15;34144:180;34192:77;34189:1;34182:88;34289:4;34286:1;34279:15;34313:4;34310:1;34303:15;34330:180;34378:77;34375:1;34368:88;34475:4;34472:1;34465:15;34499:4;34496:1;34489:15;34516:180;34564:77;34561:1;34554:88;34661:4;34658:1;34651:15;34685:4;34682:1;34675:15;34702:180;34750:77;34747:1;34740:88;34847:4;34844:1;34837:15;34871:4;34868:1;34861:15;34888:117;34997:1;34994;34987:12;35011:117;35120:1;35117;35110:12;35134:117;35243:1;35240;35233:12;35257:117;35366:1;35363;35356:12;35380:117;35489:1;35486;35479:12;35503:117;35612:1;35609;35602:12;35626:102;35667:6;35718:2;35714:7;35709:2;35702:5;35698:14;35694:28;35684:38;;35626:102;;;:::o;35734:225::-;35874:34;35870:1;35862:6;35858:14;35851:58;35943:8;35938:2;35930:6;35926:15;35919:33;35734:225;:::o;35965:164::-;36105:16;36101:1;36093:6;36089:14;36082:40;35965:164;:::o;36135:180::-;36275:32;36271:1;36263:6;36259:14;36252:56;36135:180;:::o;36321:165::-;36461:17;36457:1;36449:6;36445:14;36438:41;36321:165;:::o;36492:155::-;36632:7;36628:1;36620:6;36616:14;36609:31;36492:155;:::o;36653:158::-;36793:10;36789:1;36781:6;36777:14;36770:34;36653:158;:::o;36817:182::-;36957:34;36953:1;36945:6;36941:14;36934:58;36817:182;:::o;37005:114::-;;:::o;37125:166::-;37265:18;37261:1;37253:6;37249:14;37242:42;37125:166;:::o;37297:176::-;37437:28;37433:1;37425:6;37421:14;37414:52;37297:176;:::o;37479:122::-;37552:24;37570:5;37552:24;:::i;:::-;37545:5;37542:35;37532:63;;37591:1;37588;37581:12;37532:63;37479:122;:::o;37607:116::-;37677:21;37692:5;37677:21;:::i;:::-;37670:5;37667:32;37657:60;;37713:1;37710;37703:12;37657:60;37607:116;:::o;37729:120::-;37801:23;37818:5;37801:23;:::i;:::-;37794:5;37791:34;37781:62;;37839:1;37836;37829:12;37781:62;37729:120;:::o;37855:122::-;37928:24;37946:5;37928:24;:::i;:::-;37921:5;37918:35;37908:63;;37967:1;37964;37957:12;37908:63;37855:122;:::o

Swarm Source

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