ETH Price: $2,494.75 (+0.39%)

Token

1ETH Raffle by Ugly Orcs (ERUO)
 

Overview

Max Total Supply

325 ERUO

Holders

258

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ERUO
0x83ea14c82782f0d6b64b2d1bcf6b8f34ca70e434
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:
ETHRaffle

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 1 ETH Raffle by Ugly Orcs
/*

░░███╗░░  ███████╗████████╗██╗░░██╗  ██████╗░░█████╗░███████╗███████╗██╗░░░░░███████╗
░████║░░  ██╔════╝╚══██╔══╝██║░░██║  ██╔══██╗██╔══██╗██╔════╝██╔════╝██║░░░░░██╔════╝
██╔██║░░  █████╗░░░░░██║░░░███████║  ██████╔╝███████║█████╗░░█████╗░░██║░░░░░█████╗░░
╚═╝██║░░  ██╔══╝░░░░░██║░░░██╔══██║  ██╔══██╗██╔══██║██╔══╝░░██╔══╝░░██║░░░░░██╔══╝░░
███████╗  ███████╗░░░██║░░░██║░░██║  ██║░░██║██║░░██║██║░░░░░██║░░░░░███████╗███████╗
╚══════╝  ╚══════╝░░░╚═╝░░░╚═╝░░╚═╝  ╚═╝░░╚═╝╚═╝░░╚═╝╚═╝░░░░░╚═╝░░░░░╚══════╝╚══════╝
*/

// SPDX-License-Identifier: MIT
// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/extensions/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: erc721a/contracts/extensions/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/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/1ETHRaffle.sol



pragma solidity ^0.8.4;



contract ETHRaffle is ERC721AQueryable, Ownable {

    string public BaseURIRaffle = "ipfs://QmPTMPBDY7SZjAFrR33RjsAJmHmuZXcSeqpcyK3AKqRnww/";
    uint256 public price = 0.002 ether;
    uint256 public maxPerTx = 1;
    uint256 public totalFree = 200; //first 200 free
    uint256 public maxSupply = 1000;
    uint256 public maxPerWallet = 10;
    bool public paused = true;

    constructor() ERC721A("1ETH Raffle by Ugly Orcs", "ERUO") {
    }

    function mint(uint256 _mintAmount) external payable {
        uint256 cost = price;
        if (totalSupply() + _mintAmount < totalFree + 1) {
            cost = 0;
        }

        require(msg.value >= _mintAmount * cost, "Not enough ETH.");
        require(totalSupply() + _mintAmount < maxSupply + 1, "No more supply");
        require(!paused, "Minting is not live yet, hold on.");
        require(_mintAmount < maxPerTx + 1, "Max per TX reached.");
        require(
            _numberMinted(msg.sender) + _mintAmount <= maxPerWallet,
            "Too many per wallet!"
        );

        _safeMint(msg.sender, _mintAmount);
    }


	function tokenURI(uint256 _tokenId) public view virtual override returns(string memory) {
		require(_exists(_tokenId), "URI query for non-existent token");
		return string(abi.encodePacked(BaseURIRaffle));
	}

    function setFreeAmount(uint256 _amount) external onlyOwner {
        totalFree = _amount;
    }

    function setMaxPerWallet(uint256 _maxPerWallet) external onlyOwner {
        maxPerWallet = _maxPerWallet;
    }
    
    function setMaxPerTx(uint256 _maxPerTx) public onlyOwner {
        maxPerTx = _maxPerTx;
    }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
        maxSupply = _maxSupply;
    }

    function teamMint(uint256 _mintAmount, address _receiver) public onlyOwner {
        _safeMint(_receiver, _mintAmount);
    }


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

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }
    
    function setBaseURIRaffle(string memory _BaseURIRaffle) public onlyOwner {
        BaseURIRaffle = _BaseURIRaffle;
    }

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

    function withdraw() public onlyOwner {
      (bool os, ) = payable(owner()).call{value: address(this).balance}('');
      require(os);
      
  }
}

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"},{"inputs":[],"name":"BaseURIRaffle","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_BaseURIRaffle","type":"string"}],"name":"setBaseURIRaffle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806036815260200162003b2060369139600990805190602001906200003592919062000232565b5066071afd498d0000600a556001600b5560c8600c556103e8600d55600a600e556001600f60006101000a81548160ff0219169083151502179055503480156200007e57600080fd5b506040518060400160405280601881526020017f3145544820526166666c652062792055676c79204f72637300000000000000008152506040518060400160405280600481526020017f4552554f0000000000000000000000000000000000000000000000000000000081525081600290805190602001906200010392919062000232565b5080600390805190602001906200011c92919062000232565b506200012d6200015b60201b60201c565b600081905550505062000155620001496200016460201b60201c565b6200016c60201b60201c565b62000347565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024090620002e2565b90600052602060002090601f016020900481019282620002645760008555620002b0565b82601f106200027f57805160ff1916838001178555620002b0565b82800160010185558215620002b0579182015b82811115620002af57825182559160200191906001019062000292565b5b509050620002bf9190620002c3565b5090565b5b80821115620002de576000816000905550600101620002c4565b5090565b60006002820490506001821680620002fb57607f821691505b6020821081141562000312576200031162000318565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6137c980620003576000396000f3fe6080604052600436106102255760003560e01c80638da5cb5b11610123578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb01146107d4578063e268e4d3146107ff578063e985e9c514610828578063f2fde38b14610865578063f968adbe1461088e57610225565b8063b88d4fde146106ec578063bfa457bc14610708578063c23dc68f14610731578063c6f6f2161461076e578063c87b56dd1461079757610225565b806399a2557a116100f257806399a2557a14610614578063a035b1fe14610651578063a0712d681461067c578063a22cb46514610698578063b6b4cbe4146106c157610225565b80638da5cb5b1461056c57806391b7f5ed1461059757806392910eec146105c057806395d89b41146105e957610225565b806342842e0e116101b15780636352211e116101755780636352211e146104755780636f8b44b0146104b257806370a08231146104db578063715018a6146105185780638462151c1461052f57610225565b806342842e0e1461039d578063453c2310146103b95780634cf70452146103e45780635bbb21771461040d5780635c975abb1461044a57610225565b806316c38b3c116101f857806316c38b3c146102eb57806318160ddd1461031457806323b872dd1461033f578063333e44e61461035b5780633ccfd60b1461038657610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906129d9565b6108b9565b60405161025e9190612ffa565b60405180910390f35b34801561027357600080fd5b5061027c61094b565b6040516102899190613015565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612a7c565b6109dd565b6040516102c69190612f4f565b60405180910390f35b6102e960048036038101906102e491906128cc565b610a5c565b005b3480156102f757600080fd5b50610312600480360381019061030d91906129ac565b610ba0565b005b34801561032057600080fd5b50610329610bc5565b6040516103369190613152565b60405180910390f35b610359600480360381019061035491906127b6565b610bdc565b005b34801561036757600080fd5b50610370610f01565b60405161037d9190613152565b60405180910390f35b34801561039257600080fd5b5061039b610f07565b005b6103b760048036038101906103b291906127b6565b610f8f565b005b3480156103c557600080fd5b506103ce610faf565b6040516103db9190613152565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190612a33565b610fb5565b005b34801561041957600080fd5b50610434600480360381019061042f919061295f565b610fd7565b6040516104419190612fb6565b60405180910390f35b34801561045657600080fd5b5061045f61109a565b60405161046c9190612ffa565b60405180910390f35b34801561048157600080fd5b5061049c60048036038101906104979190612a7c565b6110ad565b6040516104a99190612f4f565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190612a7c565b6110bf565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190612749565b6110d1565b60405161050f9190613152565b60405180910390f35b34801561052457600080fd5b5061052d61118a565b005b34801561053b57600080fd5b5061055660048036038101906105519190612749565b61119e565b6040516105639190612fd8565b60405180910390f35b34801561057857600080fd5b506105816112e8565b60405161058e9190612f4f565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b99190612a7c565b611312565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612a7c565b611324565b005b3480156105f557600080fd5b506105fe611336565b60405161060b9190613015565b60405180910390f35b34801561062057600080fd5b5061063b6004803603810190610636919061290c565b6113c8565b6040516106489190612fd8565b60405180910390f35b34801561065d57600080fd5b506106666115dc565b6040516106739190613152565b60405180910390f35b61069660048036038101906106919190612a7c565b6115e2565b005b3480156106a457600080fd5b506106bf60048036038101906106ba919061288c565b6117cc565b005b3480156106cd57600080fd5b506106d66118d7565b6040516106e39190613015565b60405180910390f35b61070660048036038101906107019190612809565b611965565b005b34801561071457600080fd5b5061072f600480360381019061072a9190612aa9565b6119d8565b005b34801561073d57600080fd5b5061075860048036038101906107539190612a7c565b6119ee565b6040516107659190613137565b60405180910390f35b34801561077a57600080fd5b5061079560048036038101906107909190612a7c565b611a58565b005b3480156107a357600080fd5b506107be60048036038101906107b99190612a7c565b611a6a565b6040516107cb9190613015565b60405180910390f35b3480156107e057600080fd5b506107e9611adc565b6040516107f69190613152565b60405180910390f35b34801561080b57600080fd5b5061082660048036038101906108219190612a7c565b611ae2565b005b34801561083457600080fd5b5061084f600480360381019061084a9190612776565b611af4565b60405161085c9190612ffa565b60405180910390f35b34801561087157600080fd5b5061088c60048036038101906108879190612749565b611b88565b005b34801561089a57600080fd5b506108a3611c0c565b6040516108b09190613152565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109445750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461095a90613452565b80601f016020809104026020016040519081016040528092919081815260200182805461098690613452565b80156109d35780601f106109a8576101008083540402835291602001916109d3565b820191906000526020600020905b8154815290600101906020018083116109b657829003601f168201915b5050505050905090565b60006109e882611c12565b610a1e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a67826110ad565b90508073ffffffffffffffffffffffffffffffffffffffff16610a88611c71565b73ffffffffffffffffffffffffffffffffffffffff1614610aeb57610ab481610aaf611c71565b611af4565b610aea576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ba8611c79565b80600f60006101000a81548160ff02191690831515021790555050565b6000610bcf611cf7565b6001546000540303905090565b6000610be782611d00565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c5a84611dce565b91509150610c708187610c6b611c71565b611df5565b610cbc57610c8586610c80611c71565b611af4565b610cbb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d23576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d308686866001611e39565b8015610d3b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e0985610de5888887611e3f565b7c020000000000000000000000000000000000000000000000000000000017611e67565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e91576000600185019050600060046000838152602001908152602001600020541415610e8f576000548114610e8e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ef98686866001611e92565b505050505050565b600c5481565b610f0f611c79565b6000610f196112e8565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f3c90612f3a565b60006040518083038185875af1925050503d8060008114610f79576040519150601f19603f3d011682016040523d82523d6000602084013e610f7e565b606091505b5050905080610f8c57600080fd5b50565b610faa83838360405180602001604052806000815250611965565b505050565b600e5481565b610fbd611c79565b8060099080519060200190610fd39291906124b8565b5050565b6060600083839050905060008167ffffffffffffffff811115610ffd57610ffc613542565b5b60405190808252806020026020018201604052801561103657816020015b61102361253e565b81526020019060019003908161101b5790505b50905060005b82811461108e5761106586868381811061105957611058613513565b5b905060200201356119ee565b82828151811061107857611077613513565b5b602002602001018190525080600101905061103c565b50809250505092915050565b600f60009054906101000a900460ff1681565b60006110b882611d00565b9050919050565b6110c7611c79565b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611139576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611192611c79565b61119c6000611e98565b565b606060008060006111ae856110d1565b905060008167ffffffffffffffff8111156111cc576111cb613542565b5b6040519080825280602002602001820160405280156111fa5781602001602082028036833780820191505090505b50905061120561253e565b600061120f611cf7565b90505b8386146112da5761122281611f5e565b9150816040015115611233576112cf565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461127357816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156112ce57808387806001019850815181106112c1576112c0613513565b5b6020026020010181815250505b5b806001019050611212565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61131a611c79565b80600a8190555050565b61132c611c79565b80600c8190555050565b60606003805461134590613452565b80601f016020809104026020016040519081016040528092919081815260200182805461137190613452565b80156113be5780601f10611393576101008083540402835291602001916113be565b820191906000526020600020905b8154815290600101906020018083116113a157829003601f168201915b5050505050905090565b6060818310611403576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061140e611f89565b9050611418611cf7565b85101561142a57611427611cf7565b94505b80841115611436578093505b6000611441876110d1565b90508486101561146457600086860390508181101561145e578091505b50611469565b600090505b60008167ffffffffffffffff81111561148557611484613542565b5b6040519080825280602002602001820160405280156114b35781602001602082028036833780820191505090505b50905060008214156114cb57809450505050506115d5565b60006114d6886119ee565b9050600081604001516114eb57816000015190505b60008990505b8881141580156115015750848714155b156115c75761150f81611f5e565b9250826040015115611520576115bc565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461156057826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115bb57808488806001019950815181106115ae576115ad613513565b5b6020026020010181815250505b5b8060010190506114f1565b508583528296505050505050505b9392505050565b600a5481565b6000600a5490506001600c546115f891906132c9565b82611601610bc5565b61160b91906132c9565b101561161657600090505b8082611622919061331f565b341015611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b906130d7565b60405180910390fd5b6001600d5461167391906132c9565b8261167c610bc5565b61168691906132c9565b106116c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd90613117565b60405180910390fd5b600f60009054906101000a900460ff1615611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906130b7565b60405180910390fd5b6001600b5461172591906132c9565b8210611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d906130f7565b60405180910390fd5b600e548261177333611f92565b61177d91906132c9565b11156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590613077565b60405180910390fd5b6117c83383611fe9565b5050565b80600760006117d9611c71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611886611c71565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118cb9190612ffa565b60405180910390a35050565b600980546118e490613452565b80601f016020809104026020016040519081016040528092919081815260200182805461191090613452565b801561195d5780601f106119325761010080835404028352916020019161195d565b820191906000526020600020905b81548152906001019060200180831161194057829003601f168201915b505050505081565b611970848484610bdc565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119d25761199b84848484612007565b6119d1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6119e0611c79565b6119ea8183611fe9565b5050565b6119f661253e565b6119fe61253e565b611a06611cf7565b831080611a1a5750611a16611f89565b8310155b15611a285780915050611a53565b611a3183611f5e565b9050806040015115611a465780915050611a53565b611a4f83612167565b9150505b919050565b611a60611c79565b80600b8190555050565b6060611a7582611c12565b611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab90613037565b60405180910390fd5b6009604051602001611ac69190612f23565b6040516020818303038152906040529050919050565b600d5481565b611aea611c79565b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b90611c79565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf790613057565b60405180910390fd5b611c0981611e98565b50565b600b5481565b600081611c1d611cf7565b11158015611c2c575060005482105b8015611c6a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611c81612187565b73ffffffffffffffffffffffffffffffffffffffff16611c9f6112e8565b73ffffffffffffffffffffffffffffffffffffffff1614611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec90613097565b60405180910390fd5b565b60006001905090565b60008082905080611d0f611cf7565b11611d9757600054811015611d965760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d94575b6000811415611d8a576004600083600190039350838152602001908152602001600020549050611d5f565b8092505050611dc9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e5686868461218f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f6661253e565b611f826004600084815260200190815260200160002054612198565b9050919050565b60008054905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b61200382826040518060200160405280600081525061224e565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261202d611c71565b8786866040518563ffffffff1660e01b815260040161204f9493929190612f6a565b602060405180830381600087803b15801561206957600080fd5b505af192505050801561209a57506040513d601f19601f820116820180604052508101906120979190612a06565b60015b612114573d80600081146120ca576040519150601f19603f3d011682016040523d82523d6000602084013e6120cf565b606091505b5060008151141561210c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61216f61253e565b61218061217b83611d00565b612198565b9050919050565b600033905090565b60009392505050565b6121a061253e565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b61225883836122eb565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122e657600080549050600083820390505b6122986000868380600101945086612007565b6122ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122855781600054146122e357600080fd5b50505b505050565b600080549050600082141561232c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123396000848385611e39565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123b0836123a16000866000611e3f565b6123aa856124a8565b17611e67565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461245157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612416565b50600082141561248d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124a36000848385611e92565b505050565b60006001821460e11b9050919050565b8280546124c490613452565b90600052602060002090601f0160209004810192826124e6576000855561252d565b82601f106124ff57805160ff191683800117855561252d565b8280016001018555821561252d579182015b8281111561252c578251825591602001919060010190612511565b5b50905061253a919061258d565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b808211156125a657600081600090555060010161258e565b5090565b60006125bd6125b884613192565b61316d565b9050828152602081018484840111156125d9576125d8613580565b5b6125e4848285613410565b509392505050565b60006125ff6125fa846131c3565b61316d565b90508281526020810184848401111561261b5761261a613580565b5b612626848285613410565b509392505050565b60008135905061263d81613737565b92915050565b60008083601f84011261265957612658613576565b5b8235905067ffffffffffffffff81111561267657612675613571565b5b6020830191508360208202830111156126925761269161357b565b5b9250929050565b6000813590506126a88161374e565b92915050565b6000813590506126bd81613765565b92915050565b6000815190506126d281613765565b92915050565b600082601f8301126126ed576126ec613576565b5b81356126fd8482602086016125aa565b91505092915050565b600082601f83011261271b5761271a613576565b5b813561272b8482602086016125ec565b91505092915050565b6000813590506127438161377c565b92915050565b60006020828403121561275f5761275e61358a565b5b600061276d8482850161262e565b91505092915050565b6000806040838503121561278d5761278c61358a565b5b600061279b8582860161262e565b92505060206127ac8582860161262e565b9150509250929050565b6000806000606084860312156127cf576127ce61358a565b5b60006127dd8682870161262e565b93505060206127ee8682870161262e565b92505060406127ff86828701612734565b9150509250925092565b600080600080608085870312156128235761282261358a565b5b60006128318782880161262e565b94505060206128428782880161262e565b935050604061285387828801612734565b925050606085013567ffffffffffffffff81111561287457612873613585565b5b612880878288016126d8565b91505092959194509250565b600080604083850312156128a3576128a261358a565b5b60006128b18582860161262e565b92505060206128c285828601612699565b9150509250929050565b600080604083850312156128e3576128e261358a565b5b60006128f18582860161262e565b925050602061290285828601612734565b9150509250929050565b6000806000606084860312156129255761292461358a565b5b60006129338682870161262e565b935050602061294486828701612734565b925050604061295586828701612734565b9150509250925092565b600080602083850312156129765761297561358a565b5b600083013567ffffffffffffffff81111561299457612993613585565b5b6129a085828601612643565b92509250509250929050565b6000602082840312156129c2576129c161358a565b5b60006129d084828501612699565b91505092915050565b6000602082840312156129ef576129ee61358a565b5b60006129fd848285016126ae565b91505092915050565b600060208284031215612a1c57612a1b61358a565b5b6000612a2a848285016126c3565b91505092915050565b600060208284031215612a4957612a4861358a565b5b600082013567ffffffffffffffff811115612a6757612a66613585565b5b612a7384828501612706565b91505092915050565b600060208284031215612a9257612a9161358a565b5b6000612aa084828501612734565b91505092915050565b60008060408385031215612ac057612abf61358a565b5b6000612ace85828601612734565b9250506020612adf8582860161262e565b9150509250929050565b6000612af58383612e3d565b60808301905092915050565b6000612b0d8383612ef6565b60208301905092915050565b612b2281613379565b82525050565b612b3181613379565b82525050565b6000612b4282613229565b612b4c818561326f565b9350612b57836131f4565b8060005b83811015612b88578151612b6f8882612ae9565b9750612b7a83613255565b925050600181019050612b5b565b5085935050505092915050565b6000612ba082613234565b612baa8185613280565b9350612bb583613204565b8060005b83811015612be6578151612bcd8882612b01565b9750612bd883613262565b925050600181019050612bb9565b5085935050505092915050565b612bfc8161338b565b82525050565b612c0b8161338b565b82525050565b6000612c1c8261323f565b612c268185613291565b9350612c3681856020860161341f565b612c3f8161358f565b840191505092915050565b6000612c558261324a565b612c5f81856132ad565b9350612c6f81856020860161341f565b612c788161358f565b840191505092915050565b60008154612c9081613452565b612c9a81866132be565b94506001821660008114612cb55760018114612cc657612cf9565b60ff19831686528186019350612cf9565b612ccf85613214565b60005b83811015612cf157815481890152600182019150602081019050612cd2565b838801955050505b50505092915050565b6000612d0f6020836132ad565b9150612d1a826135a0565b602082019050919050565b6000612d326026836132ad565b9150612d3d826135c9565b604082019050919050565b6000612d556014836132ad565b9150612d6082613618565b602082019050919050565b6000612d786020836132ad565b9150612d8382613641565b602082019050919050565b6000612d9b6021836132ad565b9150612da68261366a565b604082019050919050565b6000612dbe600f836132ad565b9150612dc9826136b9565b602082019050919050565b6000612de16000836132a2565b9150612dec826136e2565b600082019050919050565b6000612e046013836132ad565b9150612e0f826136e5565b602082019050919050565b6000612e27600e836132ad565b9150612e328261370e565b602082019050919050565b608082016000820151612e536000850182612b19565b506020820151612e666020850182612f14565b506040820151612e796040850182612bf3565b506060820151612e8c6060850182612ee7565b50505050565b608082016000820151612ea86000850182612b19565b506020820151612ebb6020850182612f14565b506040820151612ece6040850182612bf3565b506060820151612ee16060850182612ee7565b50505050565b612ef0816133e3565b82525050565b612eff816133f2565b82525050565b612f0e816133f2565b82525050565b612f1d816133fc565b82525050565b6000612f2f8284612c83565b915081905092915050565b6000612f4582612dd4565b9150819050919050565b6000602082019050612f646000830184612b28565b92915050565b6000608082019050612f7f6000830187612b28565b612f8c6020830186612b28565b612f996040830185612f05565b8181036060830152612fab8184612c11565b905095945050505050565b60006020820190508181036000830152612fd08184612b37565b905092915050565b60006020820190508181036000830152612ff28184612b95565b905092915050565b600060208201905061300f6000830184612c02565b92915050565b6000602082019050818103600083015261302f8184612c4a565b905092915050565b6000602082019050818103600083015261305081612d02565b9050919050565b6000602082019050818103600083015261307081612d25565b9050919050565b6000602082019050818103600083015261309081612d48565b9050919050565b600060208201905081810360008301526130b081612d6b565b9050919050565b600060208201905081810360008301526130d081612d8e565b9050919050565b600060208201905081810360008301526130f081612db1565b9050919050565b6000602082019050818103600083015261311081612df7565b9050919050565b6000602082019050818103600083015261313081612e1a565b9050919050565b600060808201905061314c6000830184612e92565b92915050565b60006020820190506131676000830184612f05565b92915050565b6000613177613188565b90506131838282613484565b919050565b6000604051905090565b600067ffffffffffffffff8211156131ad576131ac613542565b5b6131b68261358f565b9050602081019050919050565b600067ffffffffffffffff8211156131de576131dd613542565b5b6131e78261358f565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132d4826133f2565b91506132df836133f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613314576133136134b5565b5b828201905092915050565b600061332a826133f2565b9150613335836133f2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561336e5761336d6134b5565b5b828202905092915050565b6000613384826133c3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561343d578082015181840152602081019050613422565b8381111561344c576000848401525b50505050565b6000600282049050600182168061346a57607f821691505b6020821081141561347e5761347d6134e4565b5b50919050565b61348d8261358f565b810181811067ffffffffffffffff821117156134ac576134ab613542565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f55524920717565727920666f72206e6f6e2d6578697374656e7420746f6b656e600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482e0000000000000000000000000000000000600082015250565b50565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f4e6f206d6f726520737570706c79000000000000000000000000000000000000600082015250565b61374081613379565b811461374b57600080fd5b50565b6137578161338b565b811461376257600080fd5b50565b61376e81613397565b811461377957600080fd5b50565b613785816133f2565b811461379057600080fd5b5056fea2646970667358221220b8168f50fe457595c0291c3142572884718460fbbcd30c450f0446ffe8b1cf6364736f6c63430008070033697066733a2f2f516d50544d5042445937535a6a414672523333526a73414a6d486d755a58635365717063794b33414b71526e77772f

Deployed Bytecode

0x6080604052600436106102255760003560e01c80638da5cb5b11610123578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb01146107d4578063e268e4d3146107ff578063e985e9c514610828578063f2fde38b14610865578063f968adbe1461088e57610225565b8063b88d4fde146106ec578063bfa457bc14610708578063c23dc68f14610731578063c6f6f2161461076e578063c87b56dd1461079757610225565b806399a2557a116100f257806399a2557a14610614578063a035b1fe14610651578063a0712d681461067c578063a22cb46514610698578063b6b4cbe4146106c157610225565b80638da5cb5b1461056c57806391b7f5ed1461059757806392910eec146105c057806395d89b41146105e957610225565b806342842e0e116101b15780636352211e116101755780636352211e146104755780636f8b44b0146104b257806370a08231146104db578063715018a6146105185780638462151c1461052f57610225565b806342842e0e1461039d578063453c2310146103b95780634cf70452146103e45780635bbb21771461040d5780635c975abb1461044a57610225565b806316c38b3c116101f857806316c38b3c146102eb57806318160ddd1461031457806323b872dd1461033f578063333e44e61461035b5780633ccfd60b1461038657610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906129d9565b6108b9565b60405161025e9190612ffa565b60405180910390f35b34801561027357600080fd5b5061027c61094b565b6040516102899190613015565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612a7c565b6109dd565b6040516102c69190612f4f565b60405180910390f35b6102e960048036038101906102e491906128cc565b610a5c565b005b3480156102f757600080fd5b50610312600480360381019061030d91906129ac565b610ba0565b005b34801561032057600080fd5b50610329610bc5565b6040516103369190613152565b60405180910390f35b610359600480360381019061035491906127b6565b610bdc565b005b34801561036757600080fd5b50610370610f01565b60405161037d9190613152565b60405180910390f35b34801561039257600080fd5b5061039b610f07565b005b6103b760048036038101906103b291906127b6565b610f8f565b005b3480156103c557600080fd5b506103ce610faf565b6040516103db9190613152565b60405180910390f35b3480156103f057600080fd5b5061040b60048036038101906104069190612a33565b610fb5565b005b34801561041957600080fd5b50610434600480360381019061042f919061295f565b610fd7565b6040516104419190612fb6565b60405180910390f35b34801561045657600080fd5b5061045f61109a565b60405161046c9190612ffa565b60405180910390f35b34801561048157600080fd5b5061049c60048036038101906104979190612a7c565b6110ad565b6040516104a99190612f4f565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190612a7c565b6110bf565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190612749565b6110d1565b60405161050f9190613152565b60405180910390f35b34801561052457600080fd5b5061052d61118a565b005b34801561053b57600080fd5b5061055660048036038101906105519190612749565b61119e565b6040516105639190612fd8565b60405180910390f35b34801561057857600080fd5b506105816112e8565b60405161058e9190612f4f565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b99190612a7c565b611312565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612a7c565b611324565b005b3480156105f557600080fd5b506105fe611336565b60405161060b9190613015565b60405180910390f35b34801561062057600080fd5b5061063b6004803603810190610636919061290c565b6113c8565b6040516106489190612fd8565b60405180910390f35b34801561065d57600080fd5b506106666115dc565b6040516106739190613152565b60405180910390f35b61069660048036038101906106919190612a7c565b6115e2565b005b3480156106a457600080fd5b506106bf60048036038101906106ba919061288c565b6117cc565b005b3480156106cd57600080fd5b506106d66118d7565b6040516106e39190613015565b60405180910390f35b61070660048036038101906107019190612809565b611965565b005b34801561071457600080fd5b5061072f600480360381019061072a9190612aa9565b6119d8565b005b34801561073d57600080fd5b5061075860048036038101906107539190612a7c565b6119ee565b6040516107659190613137565b60405180910390f35b34801561077a57600080fd5b5061079560048036038101906107909190612a7c565b611a58565b005b3480156107a357600080fd5b506107be60048036038101906107b99190612a7c565b611a6a565b6040516107cb9190613015565b60405180910390f35b3480156107e057600080fd5b506107e9611adc565b6040516107f69190613152565b60405180910390f35b34801561080b57600080fd5b5061082660048036038101906108219190612a7c565b611ae2565b005b34801561083457600080fd5b5061084f600480360381019061084a9190612776565b611af4565b60405161085c9190612ffa565b60405180910390f35b34801561087157600080fd5b5061088c60048036038101906108879190612749565b611b88565b005b34801561089a57600080fd5b506108a3611c0c565b6040516108b09190613152565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109445750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461095a90613452565b80601f016020809104026020016040519081016040528092919081815260200182805461098690613452565b80156109d35780601f106109a8576101008083540402835291602001916109d3565b820191906000526020600020905b8154815290600101906020018083116109b657829003601f168201915b5050505050905090565b60006109e882611c12565b610a1e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a67826110ad565b90508073ffffffffffffffffffffffffffffffffffffffff16610a88611c71565b73ffffffffffffffffffffffffffffffffffffffff1614610aeb57610ab481610aaf611c71565b611af4565b610aea576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ba8611c79565b80600f60006101000a81548160ff02191690831515021790555050565b6000610bcf611cf7565b6001546000540303905090565b6000610be782611d00565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c4e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c5a84611dce565b91509150610c708187610c6b611c71565b611df5565b610cbc57610c8586610c80611c71565b611af4565b610cbb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d23576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d308686866001611e39565b8015610d3b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e0985610de5888887611e3f565b7c020000000000000000000000000000000000000000000000000000000017611e67565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e91576000600185019050600060046000838152602001908152602001600020541415610e8f576000548114610e8e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ef98686866001611e92565b505050505050565b600c5481565b610f0f611c79565b6000610f196112e8565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f3c90612f3a565b60006040518083038185875af1925050503d8060008114610f79576040519150601f19603f3d011682016040523d82523d6000602084013e610f7e565b606091505b5050905080610f8c57600080fd5b50565b610faa83838360405180602001604052806000815250611965565b505050565b600e5481565b610fbd611c79565b8060099080519060200190610fd39291906124b8565b5050565b6060600083839050905060008167ffffffffffffffff811115610ffd57610ffc613542565b5b60405190808252806020026020018201604052801561103657816020015b61102361253e565b81526020019060019003908161101b5790505b50905060005b82811461108e5761106586868381811061105957611058613513565b5b905060200201356119ee565b82828151811061107857611077613513565b5b602002602001018190525080600101905061103c565b50809250505092915050565b600f60009054906101000a900460ff1681565b60006110b882611d00565b9050919050565b6110c7611c79565b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611139576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611192611c79565b61119c6000611e98565b565b606060008060006111ae856110d1565b905060008167ffffffffffffffff8111156111cc576111cb613542565b5b6040519080825280602002602001820160405280156111fa5781602001602082028036833780820191505090505b50905061120561253e565b600061120f611cf7565b90505b8386146112da5761122281611f5e565b9150816040015115611233576112cf565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461127357816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156112ce57808387806001019850815181106112c1576112c0613513565b5b6020026020010181815250505b5b806001019050611212565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61131a611c79565b80600a8190555050565b61132c611c79565b80600c8190555050565b60606003805461134590613452565b80601f016020809104026020016040519081016040528092919081815260200182805461137190613452565b80156113be5780601f10611393576101008083540402835291602001916113be565b820191906000526020600020905b8154815290600101906020018083116113a157829003601f168201915b5050505050905090565b6060818310611403576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061140e611f89565b9050611418611cf7565b85101561142a57611427611cf7565b94505b80841115611436578093505b6000611441876110d1565b90508486101561146457600086860390508181101561145e578091505b50611469565b600090505b60008167ffffffffffffffff81111561148557611484613542565b5b6040519080825280602002602001820160405280156114b35781602001602082028036833780820191505090505b50905060008214156114cb57809450505050506115d5565b60006114d6886119ee565b9050600081604001516114eb57816000015190505b60008990505b8881141580156115015750848714155b156115c75761150f81611f5e565b9250826040015115611520576115bc565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff161461156057826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115bb57808488806001019950815181106115ae576115ad613513565b5b6020026020010181815250505b5b8060010190506114f1565b508583528296505050505050505b9392505050565b600a5481565b6000600a5490506001600c546115f891906132c9565b82611601610bc5565b61160b91906132c9565b101561161657600090505b8082611622919061331f565b341015611664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165b906130d7565b60405180910390fd5b6001600d5461167391906132c9565b8261167c610bc5565b61168691906132c9565b106116c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd90613117565b60405180910390fd5b600f60009054906101000a900460ff1615611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906130b7565b60405180910390fd5b6001600b5461172591906132c9565b8210611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d906130f7565b60405180910390fd5b600e548261177333611f92565b61177d91906132c9565b11156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590613077565b60405180910390fd5b6117c83383611fe9565b5050565b80600760006117d9611c71565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611886611c71565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118cb9190612ffa565b60405180910390a35050565b600980546118e490613452565b80601f016020809104026020016040519081016040528092919081815260200182805461191090613452565b801561195d5780601f106119325761010080835404028352916020019161195d565b820191906000526020600020905b81548152906001019060200180831161194057829003601f168201915b505050505081565b611970848484610bdc565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119d25761199b84848484612007565b6119d1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6119e0611c79565b6119ea8183611fe9565b5050565b6119f661253e565b6119fe61253e565b611a06611cf7565b831080611a1a5750611a16611f89565b8310155b15611a285780915050611a53565b611a3183611f5e565b9050806040015115611a465780915050611a53565b611a4f83612167565b9150505b919050565b611a60611c79565b80600b8190555050565b6060611a7582611c12565b611ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aab90613037565b60405180910390fd5b6009604051602001611ac69190612f23565b6040516020818303038152906040529050919050565b600d5481565b611aea611c79565b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b90611c79565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf790613057565b60405180910390fd5b611c0981611e98565b50565b600b5481565b600081611c1d611cf7565b11158015611c2c575060005482105b8015611c6a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611c81612187565b73ffffffffffffffffffffffffffffffffffffffff16611c9f6112e8565b73ffffffffffffffffffffffffffffffffffffffff1614611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec90613097565b60405180910390fd5b565b60006001905090565b60008082905080611d0f611cf7565b11611d9757600054811015611d965760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d94575b6000811415611d8a576004600083600190039350838152602001908152602001600020549050611d5f565b8092505050611dc9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e5686868461218f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f6661253e565b611f826004600084815260200190815260200160002054612198565b9050919050565b60008054905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b61200382826040518060200160405280600081525061224e565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261202d611c71565b8786866040518563ffffffff1660e01b815260040161204f9493929190612f6a565b602060405180830381600087803b15801561206957600080fd5b505af192505050801561209a57506040513d601f19601f820116820180604052508101906120979190612a06565b60015b612114573d80600081146120ca576040519150601f19603f3d011682016040523d82523d6000602084013e6120cf565b606091505b5060008151141561210c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b61216f61253e565b61218061217b83611d00565b612198565b9050919050565b600033905090565b60009392505050565b6121a061253e565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b61225883836122eb565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122e657600080549050600083820390505b6122986000868380600101945086612007565b6122ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122855781600054146122e357600080fd5b50505b505050565b600080549050600082141561232c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123396000848385611e39565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506123b0836123a16000866000611e3f565b6123aa856124a8565b17611e67565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461245157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612416565b50600082141561248d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506124a36000848385611e92565b505050565b60006001821460e11b9050919050565b8280546124c490613452565b90600052602060002090601f0160209004810192826124e6576000855561252d565b82601f106124ff57805160ff191683800117855561252d565b8280016001018555821561252d579182015b8281111561252c578251825591602001919060010190612511565b5b50905061253a919061258d565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b808211156125a657600081600090555060010161258e565b5090565b60006125bd6125b884613192565b61316d565b9050828152602081018484840111156125d9576125d8613580565b5b6125e4848285613410565b509392505050565b60006125ff6125fa846131c3565b61316d565b90508281526020810184848401111561261b5761261a613580565b5b612626848285613410565b509392505050565b60008135905061263d81613737565b92915050565b60008083601f84011261265957612658613576565b5b8235905067ffffffffffffffff81111561267657612675613571565b5b6020830191508360208202830111156126925761269161357b565b5b9250929050565b6000813590506126a88161374e565b92915050565b6000813590506126bd81613765565b92915050565b6000815190506126d281613765565b92915050565b600082601f8301126126ed576126ec613576565b5b81356126fd8482602086016125aa565b91505092915050565b600082601f83011261271b5761271a613576565b5b813561272b8482602086016125ec565b91505092915050565b6000813590506127438161377c565b92915050565b60006020828403121561275f5761275e61358a565b5b600061276d8482850161262e565b91505092915050565b6000806040838503121561278d5761278c61358a565b5b600061279b8582860161262e565b92505060206127ac8582860161262e565b9150509250929050565b6000806000606084860312156127cf576127ce61358a565b5b60006127dd8682870161262e565b93505060206127ee8682870161262e565b92505060406127ff86828701612734565b9150509250925092565b600080600080608085870312156128235761282261358a565b5b60006128318782880161262e565b94505060206128428782880161262e565b935050604061285387828801612734565b925050606085013567ffffffffffffffff81111561287457612873613585565b5b612880878288016126d8565b91505092959194509250565b600080604083850312156128a3576128a261358a565b5b60006128b18582860161262e565b92505060206128c285828601612699565b9150509250929050565b600080604083850312156128e3576128e261358a565b5b60006128f18582860161262e565b925050602061290285828601612734565b9150509250929050565b6000806000606084860312156129255761292461358a565b5b60006129338682870161262e565b935050602061294486828701612734565b925050604061295586828701612734565b9150509250925092565b600080602083850312156129765761297561358a565b5b600083013567ffffffffffffffff81111561299457612993613585565b5b6129a085828601612643565b92509250509250929050565b6000602082840312156129c2576129c161358a565b5b60006129d084828501612699565b91505092915050565b6000602082840312156129ef576129ee61358a565b5b60006129fd848285016126ae565b91505092915050565b600060208284031215612a1c57612a1b61358a565b5b6000612a2a848285016126c3565b91505092915050565b600060208284031215612a4957612a4861358a565b5b600082013567ffffffffffffffff811115612a6757612a66613585565b5b612a7384828501612706565b91505092915050565b600060208284031215612a9257612a9161358a565b5b6000612aa084828501612734565b91505092915050565b60008060408385031215612ac057612abf61358a565b5b6000612ace85828601612734565b9250506020612adf8582860161262e565b9150509250929050565b6000612af58383612e3d565b60808301905092915050565b6000612b0d8383612ef6565b60208301905092915050565b612b2281613379565b82525050565b612b3181613379565b82525050565b6000612b4282613229565b612b4c818561326f565b9350612b57836131f4565b8060005b83811015612b88578151612b6f8882612ae9565b9750612b7a83613255565b925050600181019050612b5b565b5085935050505092915050565b6000612ba082613234565b612baa8185613280565b9350612bb583613204565b8060005b83811015612be6578151612bcd8882612b01565b9750612bd883613262565b925050600181019050612bb9565b5085935050505092915050565b612bfc8161338b565b82525050565b612c0b8161338b565b82525050565b6000612c1c8261323f565b612c268185613291565b9350612c3681856020860161341f565b612c3f8161358f565b840191505092915050565b6000612c558261324a565b612c5f81856132ad565b9350612c6f81856020860161341f565b612c788161358f565b840191505092915050565b60008154612c9081613452565b612c9a81866132be565b94506001821660008114612cb55760018114612cc657612cf9565b60ff19831686528186019350612cf9565b612ccf85613214565b60005b83811015612cf157815481890152600182019150602081019050612cd2565b838801955050505b50505092915050565b6000612d0f6020836132ad565b9150612d1a826135a0565b602082019050919050565b6000612d326026836132ad565b9150612d3d826135c9565b604082019050919050565b6000612d556014836132ad565b9150612d6082613618565b602082019050919050565b6000612d786020836132ad565b9150612d8382613641565b602082019050919050565b6000612d9b6021836132ad565b9150612da68261366a565b604082019050919050565b6000612dbe600f836132ad565b9150612dc9826136b9565b602082019050919050565b6000612de16000836132a2565b9150612dec826136e2565b600082019050919050565b6000612e046013836132ad565b9150612e0f826136e5565b602082019050919050565b6000612e27600e836132ad565b9150612e328261370e565b602082019050919050565b608082016000820151612e536000850182612b19565b506020820151612e666020850182612f14565b506040820151612e796040850182612bf3565b506060820151612e8c6060850182612ee7565b50505050565b608082016000820151612ea86000850182612b19565b506020820151612ebb6020850182612f14565b506040820151612ece6040850182612bf3565b506060820151612ee16060850182612ee7565b50505050565b612ef0816133e3565b82525050565b612eff816133f2565b82525050565b612f0e816133f2565b82525050565b612f1d816133fc565b82525050565b6000612f2f8284612c83565b915081905092915050565b6000612f4582612dd4565b9150819050919050565b6000602082019050612f646000830184612b28565b92915050565b6000608082019050612f7f6000830187612b28565b612f8c6020830186612b28565b612f996040830185612f05565b8181036060830152612fab8184612c11565b905095945050505050565b60006020820190508181036000830152612fd08184612b37565b905092915050565b60006020820190508181036000830152612ff28184612b95565b905092915050565b600060208201905061300f6000830184612c02565b92915050565b6000602082019050818103600083015261302f8184612c4a565b905092915050565b6000602082019050818103600083015261305081612d02565b9050919050565b6000602082019050818103600083015261307081612d25565b9050919050565b6000602082019050818103600083015261309081612d48565b9050919050565b600060208201905081810360008301526130b081612d6b565b9050919050565b600060208201905081810360008301526130d081612d8e565b9050919050565b600060208201905081810360008301526130f081612db1565b9050919050565b6000602082019050818103600083015261311081612df7565b9050919050565b6000602082019050818103600083015261313081612e1a565b9050919050565b600060808201905061314c6000830184612e92565b92915050565b60006020820190506131676000830184612f05565b92915050565b6000613177613188565b90506131838282613484565b919050565b6000604051905090565b600067ffffffffffffffff8211156131ad576131ac613542565b5b6131b68261358f565b9050602081019050919050565b600067ffffffffffffffff8211156131de576131dd613542565b5b6131e78261358f565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006132d4826133f2565b91506132df836133f2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613314576133136134b5565b5b828201905092915050565b600061332a826133f2565b9150613335836133f2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561336e5761336d6134b5565b5b828202905092915050565b6000613384826133c3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062ffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561343d578082015181840152602081019050613422565b8381111561344c576000848401525b50505050565b6000600282049050600182168061346a57607f821691505b6020821081141561347e5761347d6134e4565b5b50919050565b61348d8261358f565b810181811067ffffffffffffffff821117156134ac576134ab613542565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f55524920717565727920666f72206e6f6e2d6578697374656e7420746f6b656e600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e60008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482e0000000000000000000000000000000000600082015250565b50565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f4e6f206d6f726520737570706c79000000000000000000000000000000000000600082015250565b61374081613379565b811461374b57600080fd5b50565b6137578161338b565b811461376257600080fd5b50565b61376e81613397565b811461377957600080fd5b50565b613785816133f2565b811461379057600080fd5b5056fea2646970667358221220b8168f50fe457595c0291c3142572884718460fbbcd30c450f0446ffe8b1cf6364736f6c63430008070033

Deployed Bytecode Sourcemap

65692:2510:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20021:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20923:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27414:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26847:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67716:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16674:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31053:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65917:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68050:149;;;;;;;;;;;;;:::i;:::-;;33974:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66009:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67811:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57244:528;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66048:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22316:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67371:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17858:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64803:103;;;;;;;;;;;;;:::i;:::-;;61120:900;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64155:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67616:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67036:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21099:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58160:2513;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65842:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66156:654;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27972:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65749:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34765:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67479:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56657:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67267:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66817:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65971:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67141:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28363:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65061:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65883:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20021:639;20106:4;20445:10;20430:25;;:11;:25;;;;:102;;;;20522:10;20507:25;;:11;:25;;;;20430:102;:179;;;;20599:10;20584:25;;:11;:25;;;;20430:179;20410:199;;20021:639;;;:::o;20923:100::-;20977:13;21010:5;21003:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20923:100;:::o;27414:218::-;27490:7;27515:16;27523:7;27515;:16::i;:::-;27510:64;;27540:34;;;;;;;;;;;;;;27510:64;27594:15;:24;27610:7;27594:24;;;;;;;;;;;:30;;;;;;;;;;;;27587:37;;27414:218;;;:::o;26847:408::-;26936:13;26952:16;26960:7;26952;:16::i;:::-;26936:32;;27008:5;26985:28;;:19;:17;:19::i;:::-;:28;;;26981:175;;27033:44;27050:5;27057:19;:17;:19::i;:::-;27033:16;:44::i;:::-;27028:128;;27105:35;;;;;;;;;;;;;;27028:128;26981:175;27201:2;27168:15;:24;27184:7;27168:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;27239:7;27235:2;27219:28;;27228:5;27219:28;;;;;;;;;;;;26925:330;26847:408;;:::o;67716:83::-;64041:13;:11;:13::i;:::-;67785:6:::1;67776;;:15;;;;;;;;;;;;;;;;;;67716:83:::0;:::o;16674:323::-;16735:7;16963:15;:13;:15::i;:::-;16948:12;;16932:13;;:28;:46;16925:53;;16674:323;:::o;31053:2825::-;31195:27;31225;31244:7;31225:18;:27::i;:::-;31195:57;;31310:4;31269:45;;31285:19;31269:45;;;31265:86;;31323:28;;;;;;;;;;;;;;31265:86;31365:27;31394:23;31421:35;31448:7;31421:26;:35::i;:::-;31364:92;;;;31556:68;31581:15;31598:4;31604:19;:17;:19::i;:::-;31556:24;:68::i;:::-;31551:180;;31644:43;31661:4;31667:19;:17;:19::i;:::-;31644:16;:43::i;:::-;31639:92;;31696:35;;;;;;;;;;;;;;31639:92;31551:180;31762:1;31748:16;;:2;:16;;;31744:52;;;31773:23;;;;;;;;;;;;;;31744:52;31809:43;31831:4;31837:2;31841:7;31850:1;31809:21;:43::i;:::-;31945:15;31942:160;;;32085:1;32064:19;32057:30;31942:160;32482:18;:24;32501:4;32482:24;;;;;;;;;;;;;;;;32480:26;;;;;;;;;;;;32551:18;:22;32570:2;32551:22;;;;;;;;;;;;;;;;32549:24;;;;;;;;;;;32873:146;32910:2;32959:45;32974:4;32980:2;32984:19;32959:14;:45::i;:::-;13073:8;32931:73;32873:18;:146::i;:::-;32844:17;:26;32862:7;32844:26;;;;;;;;;;;:175;;;;33190:1;13073:8;33139:19;:47;:52;33135:627;;;33212:19;33244:1;33234:7;:11;33212:33;;33401:1;33367:17;:30;33385:11;33367:30;;;;;;;;;;;;:35;33363:384;;;33505:13;;33490:11;:28;33486:242;;33685:19;33652:17;:30;33670:11;33652:30;;;;;;;;;;;:52;;;;33486:242;33363:384;33193:569;33135:627;33809:7;33805:2;33790:27;;33799:4;33790:27;;;;;;;;;;;;33828:42;33849:4;33855:2;33859:7;33868:1;33828:20;:42::i;:::-;31184:2694;;;31053:2825;;;:::o;65917:30::-;;;;:::o;68050:149::-;64041:13;:11;:13::i;:::-;68097:7:::1;68118;:5;:7::i;:::-;68110:21;;68139;68110:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68096:69;;;68182:2;68174:11;;;::::0;::::1;;68087:112;68050:149::o:0;33974:193::-;34120:39;34137:4;34143:2;34147:7;34120:39;;;;;;;;;;;;:16;:39::i;:::-;33974:193;;;:::o;66009:32::-;;;;:::o;67811:122::-;64041:13;:11;:13::i;:::-;67911:14:::1;67895:13;:30;;;;;;;;;;;;:::i;:::-;;67811:122:::0;:::o;57244:528::-;57388:23;57454:22;57479:8;;:15;;57454:40;;57509:34;57567:14;57546:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;57509:73;;57602:9;57597:125;57618:14;57613:1;:19;57597:125;;57674:32;57694:8;;57703:1;57694:11;;;;;;;:::i;:::-;;;;;;;;57674:19;:32::i;:::-;57658:10;57669:1;57658:13;;;;;;;;:::i;:::-;;;;;;;:48;;;;57634:3;;;;;57597:125;;;;57743:10;57736:17;;;;57244:528;;;;:::o;66048:25::-;;;;;;;;;;;;;:::o;22316:152::-;22388:7;22431:27;22450:7;22431:18;:27::i;:::-;22408:52;;22316:152;;;:::o;67371:100::-;64041:13;:11;:13::i;:::-;67453:10:::1;67441:9;:22;;;;67371:100:::0;:::o;17858:233::-;17930:7;17971:1;17954:19;;:5;:19;;;17950:60;;;17982:28;;;;;;;;;;;;;;17950:60;12017:13;18028:18;:25;18047:5;18028:25;;;;;;;;;;;;;;;;:55;18021:62;;17858:233;;;:::o;64803:103::-;64041:13;:11;:13::i;:::-;64868:30:::1;64895:1;64868:18;:30::i;:::-;64803:103::o:0;61120:900::-;61198:16;61252:19;61286:25;61326:22;61351:16;61361:5;61351:9;:16::i;:::-;61326:41;;61382:25;61424:14;61410:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61382:57;;61454:31;;:::i;:::-;61505:9;61517:15;:13;:15::i;:::-;61505:27;;61500:472;61549:14;61534:11;:29;61500:472;;61601:15;61614:1;61601:12;:15::i;:::-;61589:27;;61639:9;:16;;;61635:73;;;61680:8;;61635:73;61756:1;61730:28;;:9;:14;;;:28;;;61726:111;;61803:9;:14;;;61783:34;;61726:111;61880:5;61859:26;;:17;:26;;;61855:102;;;61936:1;61910:8;61919:13;;;;;;61910:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;61855:102;61500:472;61565:3;;;;;61500:472;;;;61993:8;61986:15;;;;;;;61120:900;;;:::o;64155:87::-;64201:7;64228:6;;;;;;;;;;;64221:13;;64155:87;:::o;67616:92::-;64041:13;:11;:13::i;:::-;67691:9:::1;67683:5;:17;;;;67616:92:::0;:::o;67036:97::-;64041:13;:11;:13::i;:::-;67118:7:::1;67106:9;:19;;;;67036:97:::0;:::o;21099:104::-;21155:13;21188:7;21181:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21099:104;:::o;58160:2513::-;58303:16;58370:4;58361:5;:13;58357:45;;58383:19;;;;;;;;;;;;;;58357:45;58417:19;58451:17;58471:14;:12;:14::i;:::-;58451:34;;58571:15;:13;:15::i;:::-;58563:5;:23;58559:87;;;58615:15;:13;:15::i;:::-;58607:23;;58559:87;58722:9;58715:4;:16;58711:73;;;58759:9;58752:16;;58711:73;58798:25;58826:16;58836:5;58826:9;:16::i;:::-;58798:44;;59020:4;59012:5;:12;59008:278;;;59045:19;59074:5;59067:4;:12;59045:34;;59116:17;59102:11;:31;59098:111;;;59178:11;59158:31;;59098:111;59026:198;59008:278;;;59269:1;59249:21;;59008:278;59300:25;59342:17;59328:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59300:60;;59400:1;59379:17;:22;59375:78;;;59429:8;59422:15;;;;;;;;59375:78;59597:31;59631:26;59651:5;59631:19;:26::i;:::-;59597:60;;59672:25;59917:9;:16;;;59912:92;;59974:9;:14;;;59954:34;;59912:92;60023:9;60035:5;60023:17;;60018:478;60047:4;60042:1;:9;;:45;;;;;60070:17;60055:11;:32;;60042:45;60018:478;;;60125:15;60138:1;60125:12;:15::i;:::-;60113:27;;60163:9;:16;;;60159:73;;;60204:8;;60159:73;60280:1;60254:28;;:9;:14;;;:28;;;60250:111;;60327:9;:14;;;60307:34;;60250:111;60404:5;60383:26;;:17;:26;;;60379:102;;;60460:1;60434:8;60443:13;;;;;;60434:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;60379:102;60018:478;60089:3;;;;;60018:478;;;;60598:11;60588:8;60581:29;60646:8;60639:15;;;;;;;;58160:2513;;;;;;:::o;65842:34::-;;;;:::o;66156:654::-;66219:12;66234:5;;66219:20;;66296:1;66284:9;;:13;;;;:::i;:::-;66270:11;66254:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:43;66250:84;;;66321:1;66314:8;;66250:84;66381:4;66367:11;:18;;;;:::i;:::-;66354:9;:31;;66346:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;66466:1;66454:9;;:13;;;;:::i;:::-;66440:11;66424:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:43;66416:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;66506:6;;;;;;;;;;;66505:7;66497:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;66594:1;66583:8;;:12;;;;:::i;:::-;66569:11;:26;66561:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;66695:12;;66680:11;66652:25;66666:10;66652:13;:25::i;:::-;:39;;;;:::i;:::-;:55;;66630:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;66768:34;66778:10;66790:11;66768:9;:34::i;:::-;66208:602;66156:654;:::o;27972:234::-;28119:8;28067:18;:39;28086:19;:17;:19::i;:::-;28067:39;;;;;;;;;;;;;;;:49;28107:8;28067:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28179:8;28143:55;;28158:19;:17;:19::i;:::-;28143:55;;;28189:8;28143:55;;;;;;:::i;:::-;;;;;;;;27972:234;;:::o;65749:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34765:407::-;34940:31;34953:4;34959:2;34963:7;34940:12;:31::i;:::-;35004:1;34986:2;:14;;;:19;34982:183;;35025:56;35056:4;35062:2;35066:7;35075:5;35025:30;:56::i;:::-;35020:145;;35109:40;;;;;;;;;;;;;;35020:145;34982:183;34765:407;;;;:::o;67479:127::-;64041:13;:11;:13::i;:::-;67565:33:::1;67575:9;67586:11;67565:9;:33::i;:::-;67479:127:::0;;:::o;56657:428::-;56741:21;;:::i;:::-;56775:31;;:::i;:::-;56831:15;:13;:15::i;:::-;56821:7;:25;:54;;;;56861:14;:12;:14::i;:::-;56850:7;:25;;56821:54;56817:103;;;56899:9;56892:16;;;;;56817:103;56942:21;56955:7;56942:12;:21::i;:::-;56930:33;;56978:9;:16;;;56974:65;;;57018:9;57011:16;;;;;56974:65;57056:21;57069:7;57056:12;:21::i;:::-;57049:28;;;56657:428;;;;:::o;67267:96::-;64041:13;:11;:13::i;:::-;67346:9:::1;67335:8;:20;;;;67267:96:::0;:::o;66817:211::-;66890:13;66918:17;66926:8;66918:7;:17::i;:::-;66910:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;67008:13;66991:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;66977:46;;66817:211;;;:::o;65971:31::-;;;;:::o;67141:114::-;64041:13;:11;:13::i;:::-;67234::::1;67219:12;:28;;;;67141:114:::0;:::o;28363:164::-;28460:4;28484:18;:25;28503:5;28484:25;;;;;;;;;;;;;;;:35;28510:8;28484:35;;;;;;;;;;;;;;;;;;;;;;;;;28477:42;;28363:164;;;;:::o;65061:201::-;64041:13;:11;:13::i;:::-;65170:1:::1;65150:22;;:8;:22;;;;65142:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;65226:28;65245:8;65226:18;:28::i;:::-;65061:201:::0;:::o;65883:27::-;;;;:::o;28785:282::-;28850:4;28906:7;28887:15;:13;:15::i;:::-;:26;;:66;;;;;28940:13;;28930:7;:23;28887:66;:153;;;;;29039:1;12793:8;28991:17;:26;29009:7;28991:26;;;;;;;;;;;;:44;:49;28887:153;28867:173;;28785:282;;;:::o;51093:105::-;51153:7;51180:10;51173:17;;51093:105;:::o;64320:132::-;64395:12;:10;:12::i;:::-;64384:23;;:7;:5;:7::i;:::-;:23;;;64376:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64320:132::o;67941:101::-;68006:7;68033:1;68026:8;;67941:101;:::o;23471:1275::-;23538:7;23558:12;23573:7;23558:22;;23641:4;23622:15;:13;:15::i;:::-;:23;23618:1061;;23675:13;;23668:4;:20;23664:1015;;;23713:14;23730:17;:23;23748:4;23730:23;;;;;;;;;;;;23713:40;;23847:1;12793:8;23819:6;:24;:29;23815:845;;;24484:113;24501:1;24491:6;:11;24484:113;;;24544:17;:25;24562:6;;;;;;;24544:25;;;;;;;;;;;;24535:34;;24484:113;;;24630:6;24623:13;;;;;;23815:845;23690:989;23664:1015;23618:1061;24707:31;;;;;;;;;;;;;;23471:1275;;;;:::o;29948:485::-;30050:27;30079:23;30120:38;30161:15;:24;30177:7;30161:24;;;;;;;;;;;30120:65;;30338:18;30315:41;;30395:19;30389:26;30370:45;;30300:126;29948:485;;;:::o;29176:659::-;29325:11;29490:16;29483:5;29479:28;29470:37;;29650:16;29639:9;29635:32;29622:45;;29800:15;29789:9;29786:30;29778:5;29767:9;29764:20;29761:56;29751:66;;29176:659;;;;;:::o;35834:159::-;;;;;:::o;50402:311::-;50537:7;50557:16;13197:3;50583:19;:41;;50557:68;;13197:3;50651:31;50662:4;50668:2;50672:9;50651:10;:31::i;:::-;50643:40;;:62;;50636:69;;;50402:311;;;;;:::o;25294:450::-;25374:14;25542:16;25535:5;25531:28;25522:37;;25719:5;25705:11;25680:23;25676:41;25673:52;25666:5;25663:63;25653:73;;25294:450;;;;:::o;36658:158::-;;;;;:::o;65422:191::-;65496:16;65515:6;;;;;;;;;;;65496:25;;65541:8;65532:6;;:17;;;;;;;;;;;;;;;;;;65596:8;65565:40;;65586:8;65565:40;;;;;;;;;;;;65485:128;65422:191;:::o;22919:161::-;22987:21;;:::i;:::-;23028:44;23047:17;:24;23065:5;23047:24;;;;;;;;;;;;23028:18;:44::i;:::-;23021:51;;22919:161;;;:::o;16361:103::-;16416:7;16443:13;;16436:20;;16361:103;:::o;18173:178::-;18234:7;12017:13;12155:2;18262:18;:25;18281:5;18262:25;;;;;;;;;;;;;;;;:50;;18261:82;18254:89;;18173:178;;;:::o;44925:112::-;45002:27;45012:2;45016:8;45002:27;;;;;;;;;;;;:9;:27::i;:::-;44925:112;;:::o;37256:716::-;37419:4;37465:2;37440:45;;;37486:19;:17;:19::i;:::-;37507:4;37513:7;37522:5;37440:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37436:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37740:1;37723:6;:13;:18;37719:235;;;37769:40;;;;;;;;;;;;;;37719:235;37912:6;37906:13;37897:6;37893:2;37889:15;37882:38;37436:529;37609:54;;;37599:64;;;:6;:64;;;;37592:71;;;37256:716;;;;;;:::o;22657:166::-;22727:21;;:::i;:::-;22768:47;22787:27;22806:7;22787:18;:27::i;:::-;22768:18;:47::i;:::-;22761:54;;22657:166;;;:::o;62706:98::-;62759:7;62786:10;62779:17;;62706:98;:::o;50103:147::-;50240:6;50103:147;;;;;:::o;24845:366::-;24911:31;;:::i;:::-;24988:6;24955:9;:14;;:41;;;;;;;;;;;12676:3;25041:6;:33;;25007:9;:24;;:68;;;;;;;;;;;25133:1;12793:8;25105:6;:24;:29;;25086:9;:16;;:48;;;;;;;;;;;13197:3;25174:6;:28;;25145:9;:19;;:58;;;;;;;;;;;24845:366;;;:::o;44152:689::-;44283:19;44289:2;44293:8;44283:5;:19::i;:::-;44362:1;44344:2;:14;;;:19;44340:483;;44384:11;44398:13;;44384:27;;44430:13;44452:8;44446:3;:14;44430:30;;44479:233;44510:62;44549:1;44553:2;44557:7;;;;;;44566:5;44510:30;:62::i;:::-;44505:167;;44608:40;;;;;;;;;;;;;;44505:167;44707:3;44699:5;:11;44479:233;;44794:3;44777:13;;:20;44773:34;;44799:8;;;44773:34;44365:458;;44340:483;44152:689;;;:::o;38434:2966::-;38507:20;38530:13;;38507:36;;38570:1;38558:8;:13;38554:44;;;38580:18;;;;;;;;;;;;;;38554:44;38611:61;38641:1;38645:2;38649:12;38663:8;38611:21;:61::i;:::-;39155:1;12155:2;39125:1;:26;;39124:32;39112:8;:45;39086:18;:22;39105:2;39086:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;39434:139;39471:2;39525:33;39548:1;39552:2;39556:1;39525:14;:33::i;:::-;39492:30;39513:8;39492:20;:30::i;:::-;:66;39434:18;:139::i;:::-;39400:17;:31;39418:12;39400:31;;;;;;;;;;;:173;;;;39590:16;39621:11;39650:8;39635:12;:23;39621:37;;40171:16;40167:2;40163:25;40151:37;;40543:12;40503:8;40462:1;40400:25;40341:1;40280;40253:335;40914:1;40900:12;40896:20;40854:346;40955:3;40946:7;40943:16;40854:346;;41173:7;41163:8;41160:1;41133:25;41130:1;41127;41122:59;41008:1;40999:7;40995:15;40984:26;;40854:346;;;40858:77;41245:1;41233:8;:13;41229:45;;;41255:19;;;;;;;;;;;;;;41229:45;41307:3;41291:13;:19;;;;38860:2462;;41332:60;41361:1;41365:2;41369:12;41383:8;41332:20;:60::i;:::-;38496:2904;38434:2966;;:::o;25846:324::-;25916:14;26149:1;26139:8;26136:15;26110:24;26106:46;26096:56;;25846:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;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:474::-;9336:6;9344;9393:2;9381:9;9372:7;9368:23;9364:32;9361:119;;;9399:79;;:::i;:::-;9361:119;9519:1;9544:53;9589:7;9580:6;9569:9;9565:22;9544:53;:::i;:::-;9534:63;;9490:117;9646:2;9672:53;9717:7;9708:6;9697:9;9693:22;9672:53;:::i;:::-;9662:63;;9617:118;9268:474;;;;;:::o;9748:299::-;9877:10;9898:106;10000:3;9992:6;9898:106;:::i;:::-;10036:4;10031:3;10027:14;10013:28;;9748:299;;;;:::o;10053:179::-;10122:10;10143:46;10185:3;10177:6;10143:46;:::i;:::-;10221:4;10216:3;10212:14;10198:28;;10053:179;;;;:::o;10238:108::-;10315:24;10333:5;10315:24;:::i;:::-;10310:3;10303:37;10238:108;;:::o;10352:118::-;10439:24;10457:5;10439:24;:::i;:::-;10434:3;10427:37;10352:118;;:::o;10552:972::-;10731:3;10760:84;10838:5;10760:84;:::i;:::-;10860:116;10969:6;10964:3;10860:116;:::i;:::-;10853:123;;11000:86;11080:5;11000:86;:::i;:::-;11109:7;11140:1;11125:374;11150:6;11147:1;11144:13;11125:374;;;11226:6;11220:13;11253:123;11372:3;11357:13;11253:123;:::i;:::-;11246:130;;11399:90;11482:6;11399:90;:::i;:::-;11389:100;;11185:314;11172:1;11169;11165:9;11160:14;;11125:374;;;11129:14;11515:3;11508:10;;10736:788;;;10552:972;;;;:::o;11560:732::-;11679:3;11708:54;11756:5;11708:54;:::i;:::-;11778:86;11857:6;11852:3;11778:86;:::i;:::-;11771:93;;11888:56;11938:5;11888:56;:::i;:::-;11967:7;11998:1;11983:284;12008:6;12005:1;12002:13;11983:284;;;12084:6;12078:13;12111:63;12170:3;12155:13;12111:63;:::i;:::-;12104:70;;12197:60;12250:6;12197:60;:::i;:::-;12187:70;;12043:224;12030:1;12027;12023:9;12018:14;;11983:284;;;11987:14;12283:3;12276:10;;11684:608;;;11560:732;;;;:::o;12298:99::-;12369:21;12384:5;12369:21;:::i;:::-;12364:3;12357:34;12298:99;;:::o;12403:109::-;12484:21;12499:5;12484:21;:::i;:::-;12479:3;12472:34;12403:109;;:::o;12518:360::-;12604:3;12632:38;12664:5;12632:38;:::i;:::-;12686:70;12749:6;12744:3;12686:70;:::i;:::-;12679:77;;12765:52;12810:6;12805:3;12798:4;12791:5;12787:16;12765:52;:::i;:::-;12842:29;12864:6;12842:29;:::i;:::-;12837:3;12833:39;12826:46;;12608:270;12518:360;;;;:::o;12884:364::-;12972:3;13000:39;13033:5;13000:39;:::i;:::-;13055:71;13119:6;13114:3;13055:71;:::i;:::-;13048:78;;13135:52;13180:6;13175:3;13168:4;13161:5;13157:16;13135:52;:::i;:::-;13212:29;13234:6;13212:29;:::i;:::-;13207:3;13203:39;13196:46;;12976:272;12884:364;;;;:::o;13278:845::-;13381:3;13418:5;13412:12;13447:36;13473:9;13447:36;:::i;:::-;13499:89;13581:6;13576:3;13499:89;:::i;:::-;13492:96;;13619:1;13608:9;13604:17;13635:1;13630:137;;;;13781:1;13776:341;;;;13597:520;;13630:137;13714:4;13710:9;13699;13695:25;13690:3;13683:38;13750:6;13745:3;13741:16;13734:23;;13630:137;;13776:341;13843:38;13875:5;13843:38;:::i;:::-;13903:1;13917:154;13931:6;13928:1;13925:13;13917:154;;;14005:7;13999:14;13995:1;13990:3;13986:11;13979:35;14055:1;14046:7;14042:15;14031:26;;13953:4;13950:1;13946:12;13941:17;;13917:154;;;14100:6;14095:3;14091:16;14084:23;;13783:334;;13597:520;;13385:738;;13278:845;;;;:::o;14129:366::-;14271:3;14292:67;14356:2;14351:3;14292:67;:::i;:::-;14285:74;;14368:93;14457:3;14368:93;:::i;:::-;14486:2;14481:3;14477:12;14470:19;;14129:366;;;:::o;14501:::-;14643:3;14664:67;14728:2;14723:3;14664:67;:::i;:::-;14657:74;;14740:93;14829:3;14740:93;:::i;:::-;14858:2;14853:3;14849:12;14842:19;;14501:366;;;:::o;14873:::-;15015:3;15036:67;15100:2;15095:3;15036:67;:::i;:::-;15029:74;;15112:93;15201:3;15112:93;:::i;:::-;15230:2;15225:3;15221:12;15214:19;;14873:366;;;:::o;15245:::-;15387:3;15408:67;15472:2;15467:3;15408:67;:::i;:::-;15401:74;;15484:93;15573:3;15484:93;:::i;:::-;15602:2;15597:3;15593:12;15586:19;;15245:366;;;:::o;15617:::-;15759:3;15780:67;15844:2;15839:3;15780:67;:::i;:::-;15773:74;;15856:93;15945:3;15856:93;:::i;:::-;15974:2;15969:3;15965:12;15958:19;;15617:366;;;:::o;15989:::-;16131:3;16152:67;16216:2;16211:3;16152:67;:::i;:::-;16145:74;;16228:93;16317:3;16228:93;:::i;:::-;16346:2;16341:3;16337:12;16330:19;;15989:366;;;:::o;16361:398::-;16520:3;16541:83;16622:1;16617:3;16541:83;:::i;:::-;16534:90;;16633:93;16722:3;16633:93;:::i;:::-;16751:1;16746:3;16742:11;16735:18;;16361:398;;;:::o;16765:366::-;16907:3;16928:67;16992:2;16987:3;16928:67;:::i;:::-;16921:74;;17004:93;17093:3;17004:93;:::i;:::-;17122:2;17117:3;17113:12;17106:19;;16765:366;;;:::o;17137:::-;17279:3;17300:67;17364:2;17359:3;17300:67;:::i;:::-;17293:74;;17376:93;17465:3;17376:93;:::i;:::-;17494:2;17489:3;17485:12;17478:19;;17137:366;;;:::o;17581:862::-;17728:4;17723:3;17719:14;17815:4;17808:5;17804:16;17798:23;17834:63;17891:4;17886:3;17882:14;17868:12;17834:63;:::i;:::-;17743:164;17999:4;17992:5;17988:16;17982:23;18018:61;18073:4;18068:3;18064:14;18050:12;18018:61;:::i;:::-;17917:172;18173:4;18166:5;18162:16;18156:23;18192:57;18243:4;18238:3;18234:14;18220:12;18192:57;:::i;:::-;18099:160;18346:4;18339:5;18335:16;18329:23;18365:61;18420:4;18415:3;18411:14;18397:12;18365:61;:::i;:::-;18269:167;17697:746;17581:862;;:::o;18521:872::-;18678:4;18673:3;18669:14;18765:4;18758:5;18754:16;18748:23;18784:63;18841:4;18836:3;18832:14;18818:12;18784:63;:::i;:::-;18693:164;18949:4;18942:5;18938:16;18932:23;18968:61;19023:4;19018:3;19014:14;19000:12;18968:61;:::i;:::-;18867:172;19123:4;19116:5;19112:16;19106:23;19142:57;19193:4;19188:3;19184:14;19170:12;19142:57;:::i;:::-;19049:160;19296:4;19289:5;19285:16;19279:23;19315:61;19370:4;19365:3;19361:14;19347:12;19315:61;:::i;:::-;19219:167;18647:746;18521:872;;:::o;19399:105::-;19474:23;19491:5;19474:23;:::i;:::-;19469:3;19462:36;19399:105;;:::o;19510:108::-;19587:24;19605:5;19587:24;:::i;:::-;19582:3;19575:37;19510:108;;:::o;19624:118::-;19711:24;19729:5;19711:24;:::i;:::-;19706:3;19699:37;19624:118;;:::o;19748:105::-;19823:23;19840:5;19823:23;:::i;:::-;19818:3;19811:36;19748:105;;:::o;19859:269::-;19988:3;20010:92;20098:3;20089:6;20010:92;:::i;:::-;20003:99;;20119:3;20112:10;;19859:269;;;;:::o;20134:379::-;20318:3;20340:147;20483:3;20340:147;:::i;:::-;20333:154;;20504:3;20497:10;;20134:379;;;:::o;20519:222::-;20612:4;20650:2;20639:9;20635:18;20627:26;;20663:71;20731:1;20720:9;20716:17;20707:6;20663:71;:::i;:::-;20519:222;;;;:::o;20747:640::-;20942:4;20980:3;20969:9;20965:19;20957:27;;20994:71;21062:1;21051:9;21047:17;21038:6;20994:71;:::i;:::-;21075:72;21143:2;21132:9;21128:18;21119:6;21075:72;:::i;:::-;21157;21225:2;21214:9;21210:18;21201:6;21157:72;:::i;:::-;21276:9;21270:4;21266:20;21261:2;21250:9;21246:18;21239:48;21304:76;21375:4;21366:6;21304:76;:::i;:::-;21296:84;;20747:640;;;;;;;:::o;21393:493::-;21596:4;21634:2;21623:9;21619:18;21611:26;;21683:9;21677:4;21673:20;21669:1;21658:9;21654:17;21647:47;21711:168;21874:4;21865:6;21711:168;:::i;:::-;21703:176;;21393:493;;;;:::o;21892:373::-;22035:4;22073:2;22062:9;22058:18;22050:26;;22122:9;22116:4;22112:20;22108:1;22097:9;22093:17;22086:47;22150:108;22253:4;22244:6;22150:108;:::i;:::-;22142:116;;21892:373;;;;:::o;22271:210::-;22358:4;22396:2;22385:9;22381:18;22373:26;;22409:65;22471:1;22460:9;22456:17;22447:6;22409:65;:::i;:::-;22271:210;;;;:::o;22487:313::-;22600:4;22638:2;22627:9;22623:18;22615:26;;22687:9;22681:4;22677:20;22673:1;22662:9;22658:17;22651:47;22715:78;22788:4;22779:6;22715:78;:::i;:::-;22707:86;;22487:313;;;;:::o;22806:419::-;22972:4;23010:2;22999:9;22995:18;22987:26;;23059:9;23053:4;23049:20;23045:1;23034:9;23030:17;23023:47;23087:131;23213:4;23087:131;:::i;:::-;23079:139;;22806:419;;;:::o;23231:::-;23397:4;23435:2;23424:9;23420:18;23412:26;;23484:9;23478:4;23474:20;23470:1;23459:9;23455:17;23448:47;23512:131;23638:4;23512:131;:::i;:::-;23504:139;;23231:419;;;:::o;23656:::-;23822:4;23860:2;23849:9;23845:18;23837:26;;23909:9;23903:4;23899:20;23895:1;23884:9;23880:17;23873:47;23937:131;24063:4;23937:131;:::i;:::-;23929:139;;23656:419;;;:::o;24081:::-;24247:4;24285:2;24274:9;24270:18;24262:26;;24334:9;24328:4;24324:20;24320:1;24309:9;24305:17;24298:47;24362:131;24488:4;24362:131;:::i;:::-;24354:139;;24081:419;;;:::o;24506:::-;24672:4;24710:2;24699:9;24695:18;24687:26;;24759:9;24753:4;24749:20;24745:1;24734:9;24730:17;24723:47;24787:131;24913:4;24787:131;:::i;:::-;24779:139;;24506:419;;;:::o;24931:::-;25097:4;25135:2;25124:9;25120:18;25112:26;;25184:9;25178:4;25174:20;25170:1;25159:9;25155:17;25148:47;25212:131;25338:4;25212:131;:::i;:::-;25204:139;;24931:419;;;:::o;25356:::-;25522:4;25560:2;25549:9;25545:18;25537:26;;25609:9;25603:4;25599:20;25595:1;25584:9;25580:17;25573:47;25637:131;25763:4;25637:131;:::i;:::-;25629:139;;25356:419;;;:::o;25781:::-;25947:4;25985:2;25974:9;25970:18;25962:26;;26034:9;26028:4;26024:20;26020:1;26009:9;26005:17;25998:47;26062:131;26188:4;26062:131;:::i;:::-;26054:139;;25781:419;;;:::o;26206:343::-;26359:4;26397:3;26386:9;26382:19;26374:27;;26411:131;26539:1;26528:9;26524:17;26515:6;26411:131;:::i;:::-;26206:343;;;;:::o;26555:222::-;26648:4;26686:2;26675:9;26671:18;26663:26;;26699:71;26767:1;26756:9;26752:17;26743:6;26699:71;:::i;:::-;26555:222;;;;:::o;26783:129::-;26817:6;26844:20;;:::i;:::-;26834:30;;26873:33;26901:4;26893:6;26873:33;:::i;:::-;26783:129;;;:::o;26918:75::-;26951:6;26984:2;26978:9;26968:19;;26918:75;:::o;26999:307::-;27060:4;27150:18;27142:6;27139:30;27136:56;;;27172:18;;:::i;:::-;27136:56;27210:29;27232:6;27210:29;:::i;:::-;27202:37;;27294:4;27288;27284:15;27276:23;;26999:307;;;:::o;27312:308::-;27374:4;27464:18;27456:6;27453:30;27450:56;;;27486:18;;:::i;:::-;27450:56;27524:29;27546:6;27524:29;:::i;:::-;27516:37;;27608:4;27602;27598:15;27590:23;;27312:308;;;:::o;27626:162::-;27723:4;27746:3;27738:11;;27776:4;27771:3;27767:14;27759:22;;27626:162;;;:::o;27794:132::-;27861:4;27884:3;27876:11;;27914:4;27909:3;27905:14;27897:22;;27794:132;;;:::o;27932:141::-;27981:4;28004:3;27996:11;;28027:3;28024:1;28017:14;28061:4;28058:1;28048:18;28040:26;;27932:141;;;:::o;28079:144::-;28176:6;28210:5;28204:12;28194:22;;28079:144;;;:::o;28229:114::-;28296:6;28330:5;28324:12;28314:22;;28229:114;;;:::o;28349:98::-;28400:6;28434:5;28428:12;28418:22;;28349:98;;;:::o;28453:99::-;28505:6;28539:5;28533:12;28523:22;;28453:99;;;:::o;28558:143::-;28658:4;28690;28685:3;28681:14;28673:22;;28558:143;;;:::o;28707:113::-;28777:4;28809;28804:3;28800:14;28792:22;;28707:113;;;:::o;28826:214::-;28955:11;28989:6;28984:3;28977:19;29029:4;29024:3;29020:14;29005:29;;28826:214;;;;:::o;29046:184::-;29145:11;29179:6;29174:3;29167:19;29219:4;29214:3;29210:14;29195:29;;29046:184;;;;:::o;29236:168::-;29319:11;29353:6;29348:3;29341:19;29393:4;29388:3;29384:14;29369:29;;29236:168;;;;:::o;29410:147::-;29511:11;29548:3;29533:18;;29410:147;;;;:::o;29563:169::-;29647:11;29681:6;29676:3;29669:19;29721:4;29716:3;29712:14;29697:29;;29563:169;;;;:::o;29738:148::-;29840:11;29877:3;29862:18;;29738:148;;;;:::o;29892:305::-;29932:3;29951:20;29969:1;29951:20;:::i;:::-;29946:25;;29985:20;30003:1;29985:20;:::i;:::-;29980:25;;30139:1;30071:66;30067:74;30064:1;30061:81;30058:107;;;30145:18;;:::i;:::-;30058:107;30189:1;30186;30182:9;30175:16;;29892:305;;;;:::o;30203:348::-;30243:7;30266:20;30284:1;30266:20;:::i;:::-;30261:25;;30300:20;30318:1;30300:20;:::i;:::-;30295:25;;30488:1;30420:66;30416:74;30413:1;30410:81;30405:1;30398:9;30391:17;30387:105;30384:131;;;30495:18;;:::i;:::-;30384:131;30543:1;30540;30536:9;30525:20;;30203:348;;;;:::o;30557:96::-;30594:7;30623:24;30641:5;30623:24;:::i;:::-;30612:35;;30557:96;;;:::o;30659:90::-;30693:7;30736:5;30729:13;30722:21;30711:32;;30659:90;;;:::o;30755:149::-;30791:7;30831:66;30824:5;30820:78;30809:89;;30755:149;;;:::o;30910:126::-;30947:7;30987:42;30980:5;30976:54;30965:65;;30910:126;;;:::o;31042:91::-;31078:7;31118:8;31111:5;31107:20;31096:31;;31042:91;;;:::o;31139:77::-;31176:7;31205:5;31194:16;;31139:77;;;:::o;31222:101::-;31258:7;31298:18;31291:5;31287:30;31276:41;;31222:101;;;:::o;31329:154::-;31413:6;31408:3;31403;31390:30;31475:1;31466:6;31461:3;31457:16;31450:27;31329:154;;;:::o;31489:307::-;31557:1;31567:113;31581:6;31578:1;31575:13;31567:113;;;31666:1;31661:3;31657:11;31651:18;31647:1;31642:3;31638:11;31631:39;31603:2;31600:1;31596:10;31591:15;;31567:113;;;31698:6;31695:1;31692:13;31689:101;;;31778:1;31769:6;31764:3;31760:16;31753:27;31689:101;31538:258;31489:307;;;:::o;31802:320::-;31846:6;31883:1;31877:4;31873:12;31863:22;;31930:1;31924:4;31920:12;31951:18;31941:81;;32007:4;31999:6;31995:17;31985:27;;31941:81;32069:2;32061:6;32058:14;32038:18;32035:38;32032:84;;;32088:18;;:::i;:::-;32032:84;31853:269;31802:320;;;:::o;32128:281::-;32211:27;32233:4;32211:27;:::i;:::-;32203:6;32199:40;32341:6;32329:10;32326:22;32305:18;32293:10;32290:34;32287:62;32284:88;;;32352:18;;:::i;:::-;32284:88;32392:10;32388:2;32381:22;32171:238;32128:281;;:::o;32415:180::-;32463:77;32460:1;32453:88;32560:4;32557:1;32550:15;32584:4;32581:1;32574:15;32601:180;32649:77;32646:1;32639:88;32746:4;32743:1;32736:15;32770:4;32767:1;32760:15;32787:180;32835:77;32832:1;32825:88;32932:4;32929:1;32922:15;32956:4;32953:1;32946:15;32973:180;33021:77;33018:1;33011:88;33118:4;33115:1;33108:15;33142:4;33139:1;33132:15;33159:117;33268:1;33265;33258:12;33282:117;33391:1;33388;33381:12;33405:117;33514:1;33511;33504:12;33528:117;33637:1;33634;33627:12;33651:117;33760:1;33757;33750:12;33774:117;33883:1;33880;33873:12;33897:102;33938:6;33989:2;33985:7;33980:2;33973:5;33969:14;33965:28;33955:38;;33897:102;;;:::o;34005:182::-;34145:34;34141:1;34133:6;34129:14;34122:58;34005:182;:::o;34193:225::-;34333:34;34329:1;34321:6;34317:14;34310:58;34402:8;34397:2;34389:6;34385:15;34378:33;34193:225;:::o;34424:170::-;34564:22;34560:1;34552:6;34548:14;34541:46;34424:170;:::o;34600:182::-;34740:34;34736:1;34728:6;34724:14;34717:58;34600:182;:::o;34788:220::-;34928:34;34924:1;34916:6;34912:14;34905:58;34997:3;34992:2;34984:6;34980:15;34973:28;34788:220;:::o;35014:165::-;35154:17;35150:1;35142:6;35138:14;35131:41;35014:165;:::o;35185:114::-;;:::o;35305:169::-;35445:21;35441:1;35433:6;35429:14;35422:45;35305:169;:::o;35480:164::-;35620:16;35616:1;35608:6;35604:14;35597:40;35480:164;:::o;35650:122::-;35723:24;35741:5;35723:24;:::i;:::-;35716:5;35713:35;35703:63;;35762:1;35759;35752:12;35703:63;35650:122;:::o;35778:116::-;35848:21;35863:5;35848:21;:::i;:::-;35841:5;35838:32;35828:60;;35884:1;35881;35874:12;35828:60;35778:116;:::o;35900:120::-;35972:23;35989:5;35972:23;:::i;:::-;35965:5;35962:34;35952:62;;36010:1;36007;36000:12;35952:62;35900:120;:::o;36026:122::-;36099:24;36117:5;36099:24;:::i;:::-;36092:5;36089:35;36079:63;;36138:1;36135;36128:12;36079:63;36026:122;:::o

Swarm Source

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