ETH Price: $3,552.54 (-0.60%)
Gas: 30 Gwei

Contract

0x73d10536915d5837135D884490eab6070B065870
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
0x5dd146490ef29b002c30efff4beccde251d8728f12f8b94c8ccf15223029ebbdMint NFT(pending)2024-03-29 5:57:247 hrs ago1711691844IN
Lucky Lion Club: LLC Token
0.2 ETH(Pending)(Pending)
Set Approval For...195397322024-03-29 12:42:591 hr ago1711716179IN
Lucky Lion Club: LLC Token
0 ETH0.0011359424.53383696
Transfer From195168432024-03-26 6:30:353 days ago1711434635IN
Lucky Lion Club: LLC Token
0 ETH0.0017088626.1382302
Set Approval For...195168412024-03-26 6:30:113 days ago1711434611IN
Lucky Lion Club: LLC Token
0 ETH0.0009337520.15139984
Set Approval For...195071322024-03-24 21:42:354 days ago1711316555IN
Lucky Lion Club: LLC Token
0 ETH0.0007877316.98258041
Set Approval For...194673142024-03-19 7:29:1110 days ago1710833351IN
Lucky Lion Club: LLC Token
0 ETH0.000741628.09013335
Set Approval For...194673132024-03-19 7:28:5910 days ago1710833339IN
Lucky Lion Club: LLC Token
0 ETH0.0013548529.26194279
Transfer From194552322024-03-17 14:44:1111 days ago1710686651IN
Lucky Lion Club: LLC Token
0 ETH0.0026912442.99803789
Set Approval For...194508042024-03-16 23:46:3512 days ago1710632795IN
Lucky Lion Club: LLC Token
0 ETH0.001199325.90227758
Set Approval For...194508022024-03-16 23:46:1112 days ago1710632771IN
Lucky Lion Club: LLC Token
0 ETH0.0012902927.81711094
Set Approval For...194507682024-03-16 23:39:2312 days ago1710632363IN
Lucky Lion Club: LLC Token
0 ETH0.0013535429.23352899
Set Approval For...193637312024-03-04 18:56:2324 days ago1709578583IN
Lucky Lion Club: LLC Token
0 ETH0.00486899105.15966765
Set Approval For...193619162024-03-04 12:51:5925 days ago1709556719IN
Lucky Lion Club: LLC Token
0 ETH0.0029565463.85481594
Set Approval For...193477662024-03-02 13:25:3527 days ago1709385935IN
Lucky Lion Club: LLC Token
0 ETH0.0021649946.75912101
Safe Transfer Fr...192511712024-02-18 0:35:1140 days ago1708216511IN
Lucky Lion Club: LLC Token
0 ETH0.000977314.94058904
Set Approval For...192416902024-02-16 16:38:3541 days ago1708101515IN
Lucky Lion Club: LLC Token
0 ETH0.0015554533.59434997
Set Approval For...192021972024-02-11 3:36:5947 days ago1707622619IN
Lucky Lion Club: LLC Token
0 ETH0.0011856825.60818515
Set Approval For...191694092024-02-06 13:10:4752 days ago1707225047IN
Lucky Lion Club: LLC Token
0 ETH0.0011250345.97060453
Set Approval For...191532522024-02-04 6:44:5954 days ago1707029099IN
Lucky Lion Club: LLC Token
0 ETH0.0006149813.2823636
Set Approval For...191306762024-02-01 2:38:5957 days ago1706755139IN
Lucky Lion Club: LLC Token
0 ETH0.0005442822.24014263
Set Approval For...190788712024-01-24 20:26:5964 days ago1706128019IN
Lucky Lion Club: LLC Token
0 ETH0.0003139112.82693412
Set Approval For...190680282024-01-23 7:56:2366 days ago1705996583IN
Lucky Lion Club: LLC Token
0 ETH0.0003041211.51945791
Set Approval For...190680282024-01-23 7:56:2366 days ago1705996583IN
Lucky Lion Club: LLC Token
0 ETH0.0005333611.51945791
Set Approval For...190661642024-01-23 1:39:2366 days ago1705973963IN
Lucky Lion Club: LLC Token
0 ETH0.000226049.23649932
Set Approval For...190661632024-01-23 1:39:1166 days ago1705973951IN
Lucky Lion Club: LLC Token
0 ETH0.000230789.46255845
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Txn Hash Block From To Value
141427132022-02-05 0:04:38783 days ago1644019478
Lucky Lion Club: LLC Token
740.6 ETH
141401272022-02-04 14:45:34783 days ago1643985934
Lucky Lion Club: LLC Token
0.2 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
LLC

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity 0.8.0;




// File @openzeppelin/contracts/utils/[email protected]

/**
 * @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/[email protected]

/**
 * @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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}




// File @openzeppelin/contracts/utils/introspection/[email protected]

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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 whiteed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

    /**
     * @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 if the `operator` is whiteed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}


// File @openzeppelin/contracts/utils/[email protected]

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File @openzeppelin/contracts/utils/[email protected]

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File @openzeppelin/contracts/token/ERC721/[email protected]

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is whiteed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this whites for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// File @openzeppelin/contracts/utils/math/[email protected]


// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}




/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable maxBatchSize;

  // 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 ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return currentIndex;
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  function walletOfOwner(address owner) public view returns(uint256[] memory) {
    uint256 tokenCount = balanceOf(owner);

    uint256[] memory tokenIds = new uint256[](tokenCount);
    if (tokenCount == 0)
    {
      return tokenIds;
    }

    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        tokenIds[tokenIdsIdx] = i;
        tokenIdsIdx++;
        if (tokenIdsIdx == tokenCount) {
          return tokenIds;
        }
      }
    }
    revert("ERC721A: unable to get walletOfOwner");
  }

  /**
   * @dev See {IERC165-supportsInterface}.
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC165, IERC165)
    returns (bool)
  {
    return
      interfaceId == type(IERC721).interfaceId ||
      interfaceId == type(IERC721Metadata).interfaceId ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
  }

  /**
   * @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, can be overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "ERC721A: approve caller is not owner nor approved for all"
    );

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public virtual override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

    // Clear approvals from the previous owner
    _approve(address(0), tokenId, prevOwnership.addr);

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

  /**
   * @dev Approve `to` to operate on `tokenId`
   *
   * Emits a {Approval} event.
   */
  function _approve(
    address to,
    uint256 tokenId,
    address owner
  ) private {
    _tokenApprovals[tokenId] = to;
    emit Approval(owner, to, tokenId);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * 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`.
   */
  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.
   *
   * 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` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

contract LLC is ERC721A, Ownable {
  constructor() ERC721A("Lucky Lion CLub", "LLC",10) {}

using SafeMath for uint256;
    using Strings for uint256;

    string private baseURI;
    string private blindURI;
    uint256 public constant BUY_LIMIT_PER_TX = 5;
    uint256 public constant MAX_NFT_PUBLIC = 9637;
    uint256 private constant MAX_NFT = 9777;
    uint256 public NFTPrice = 200000000000000000;  // 0.2 ETH
    bool public reveal;
    bool public isActive;
    bool public isPresaleActive;
    bool private freeMintActive;
    bytes32 public root;
    uint256 public WHITELIST_MAX_MINT = 2;
    mapping(address => uint256) public whiteListClaimed;
    mapping(address => bool) private giveawayMintClaimed;


    /*
     * Function to reveal all Lucky Lion Club
    */
    function revealNow() 
        external 
        onlyOwner 
    {
        reveal = true;
    }
    
    
    /*
     * Function setIsActive to activate/desactivate the smart contract
    */
    function setIsActive(
        bool _isActive
    ) 
        external 
        onlyOwner 
    {
        isActive = _isActive;
    }
    
    /*
     * Function setPresaleActive to activate/desactivate the whitelist/raffle presale  
    */
    function setPresaleActive(
        bool _isActive
    ) 
        external 
        onlyOwner 
    {
        isPresaleActive = _isActive;
    }

    /*
     * Function setFreeMintActive to activate/desactivate the free mint capability  
    */
    function setFreeMintActive(
        bool _isActive
    ) 
        external 
        onlyOwner 
    {
        freeMintActive = _isActive;
    }
    
    /*
     * Function to set Base and Blind URI 
    */
    function setURIs(
        string memory _blindURI, 
        string memory _URI
    ) 
        external 
        onlyOwner 
    {
        blindURI = _blindURI;
        baseURI = _URI;
    }
    
    /*
     * Function to withdraw collected amount during minting by the owner
    */
    function withdraw(
    ) 
        public 
        onlyOwner 
    {
        uint balance = address(this).balance;
        require(balance > 0, "Balance should be more then zero");
        payable(address(0xC83f89F6933238Cb85d1DdCd796Ab8f1C4e9e32c)).transfer(balance);
    }
    
    /*
     * Function to mint new NFTs during the public sale
     * It is payable. Amount is calculated as per (NFTPrice.mul(_numOfTokens))
    */
    function mintNFT(
        uint256 _numOfTokens
    )
        public
        payable
    {
        require(isActive, 'Contract is not active');
        require(!isPresaleActive, 'Presale is still active');
        require(_numOfTokens <= BUY_LIMIT_PER_TX, "Cannot mint above limit");
        require(totalSupply().add(_numOfTokens) <= MAX_NFT_PUBLIC, "Purchase would exceed max public supply of NFTs");
        require(NFTPrice.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");
        
            _safeMint(msg.sender, _numOfTokens);
    }

    /*
     * Function to mint new NFTs during the presale
     * It is payable. Amount is calculated as per (NFTPrice.mul(_numOfTokens))
    */ 
    function mintNFTDuringPresale(
        uint256 _numOfTokens,
        bytes32[] memory _proof
    ) 
        public 
        payable
    {
        require(isActive, 'Sale is not active');
        require(isPresaleActive, 'Whitelist is not active');
        require(verify(_proof, bytes32(uint256(uint160(msg.sender)))), "Not whitelisted");
        if (!freeMintActive){
            require(totalSupply() < MAX_NFT_PUBLIC, 'All public tokens have been minted');
            require(_numOfTokens <= WHITELIST_MAX_MINT, 'Cannot purchase this many tokens');
            require(totalSupply().add(_numOfTokens) <= MAX_NFT_PUBLIC, 'Purchase would exceed max public supply of NFTs');
            require(whiteListClaimed[msg.sender].add(_numOfTokens) <= WHITELIST_MAX_MINT, 'Purchase exceeds max whitelisted');
            require(NFTPrice.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");
            whiteListClaimed[msg.sender] += _numOfTokens;
            _safeMint(msg.sender, _numOfTokens);
        }
        else{
            require(totalSupply() <= MAX_NFT, 'All tokens have been minted');
            require(_numOfTokens == 1, 'Cannot purchase this many tokens');
            require(!giveawayMintClaimed[msg.sender], 'Already claimed giveaway');
            giveawayMintClaimed[msg.sender] = true;
            _safeMint(msg.sender, _numOfTokens);
        }
    }
    
    /*
     * Function to mint NFTs for giveaway and partnerships
    */
    function mintByOwner(
        address _to
    )
        public 
        onlyOwner
    {
        require(totalSupply()+1 <= MAX_NFT, "Tokens number to mint cannot exceed number of MAX tokens");
        _safeMint(msg.sender, 1);
    }
    
    /*
     * Function to mint all NFTs for giveaway and partnerships
    */
    function mintMultipleByOwner(
        address[] memory _to
    )
        public
        onlyOwner
    {
  
        for(uint256 i = 0; i < _to.length; i++){
            require(totalSupply()+1 <= MAX_NFT, "Tokens number to mint cannot exceed number of MAX tokens");
            _safeMint(_to[i], 1);
        }
    }

    /*
     * Function to get token URI of given token ID
     * URI will be blank untill totalSupply reaches MAX_NFT_PUBLIC
    */
    function tokenURI(
        uint256 _tokenId
    )
        public 
        view 
        virtual 
        override 
        returns (string memory) 
    {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (!reveal) {
            return string(abi.encodePacked(blindURI));
        } else {
            return string(abi.encodePacked(baseURI, _tokenId.toString()));
        }
    }
    
    // Set Root for whitelist and raffle to participate in presale
    function setRootAndMax(uint256 _root,uint256 _max) onlyOwner() public {
        root = bytes32(_root);
        WHITELIST_MAX_MINT=_max;
    }

    // Verify MerkleProof
    function verify(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = sha256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = sha256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }

   
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"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":"BUY_LIMIT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"mintMultipleByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintNFTDuringPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_root","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setRootAndMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_blindURI","type":"string"},{"internalType":"string","name":"_URI","type":"string"}],"name":"setURIs","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526000805560006007556702c68af0bb140000600b556002600e553480156200002b57600080fd5b506040518060400160405280600f81526020016e263ab1b5bc902634b7b71021a63ab160891b815250604051806040016040528060038152602001624c4c4360e81b815250600a600081116200009e5760405162461bcd60e51b81526004016200009590620001e6565b60405180910390fd5b8251620000b390600190602086019062000140565b508151620000c990600290602085019062000140565b5060805250620000e49050620000de620000ea565b620000ee565b6200026a565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014e906200022d565b90600052602060002090601f016020900481019282620001725760008555620001bd565b82601f106200018d57805160ff1916838001178555620001bd565b82800160010185558215620001bd579182015b82811115620001bd578251825591602001919060010190620001a0565b50620001cb929150620001cf565b5090565b5b80821115620001cb5760008155600101620001d0565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6002810460018216806200024257607f821691505b602082108114156200026457634e487b7160e01b600052602260045260246000fd5b50919050565b6080516133776200029460003960008181611b1401528181611b3e0152611eed01526133776000f3fe6080604052600436106102515760003560e01c8063715018a611610139578063b533731d116100b6578063e748e07c1161007a578063e748e07c1461066e578063e825417414610683578063e985e9c5146106a3578063ebf0c717146106c3578063f2fde38b146106d8578063f37484e3146106f857610251565b8063b533731d146105e4578063b88d4fde14610604578063c87b56dd14610624578063d1d80f3014610644578063d7224ba01461065957610251565b8063972a2a62116100fd578063972a2a6214610565578063a22cb46514610585578063a38bffda146105a5578063a475b5dd146105ba578063aeb16768146105cf57610251565b8063715018a6146105005780638da5cb5b146105155780638f76696c1461052a578063926427441461053d57806395d89b411461055057610251565b80633ccfd60b116101d25780634f6ccce7116101965780634f6ccce7146104565780634f9b563c146104765780635f0f45b21461049657806360d938dc146104ab5780636352211e146104c057806370a08231146104e057610251565b80633ccfd60b146103b45780633f8121a2146103c957806342842e0e146103e9578063438b6300146104095780634cdb44001461043657610251565b806322f3e2d41161021957806322f3e2d41461031f5780632333f3c41461033457806323b872dd146103545780632750fc78146103745780632f745c591461039457610251565b806301ffc9a71461025657806306fdde031461028c578063081812fc146102ae578063095ea7b3146102db57806318160ddd146102fd575b600080fd5b34801561026257600080fd5b50610276610271366004612524565b610718565b60405161028391906127e3565b60405180910390f35b34801561029857600080fd5b506102a161077b565b60405161028391906127f7565b3480156102ba57600080fd5b506102ce6102c93660046125bc565b61080d565b604051610283919061274e565b3480156102e757600080fd5b506102fb6102f63660046123f1565b610859565b005b34801561030957600080fd5b506103126108f2565b60405161028391906127ee565b34801561032b57600080fd5b506102766108f8565b34801561034057600080fd5b5061031261034f3660046122c9565b610906565b34801561036057600080fd5b506102fb61036f366004612315565b610918565b34801561038057600080fd5b506102fb61038f3660046124f2565b610923565b3480156103a057600080fd5b506103126103af3660046123f1565b61097c565b3480156103c057600080fd5b506102fb610a77565b3480156103d557600080fd5b506102fb6103e43660046124f2565b610b19565b3480156103f557600080fd5b506102fb610404366004612315565b610b74565b34801561041557600080fd5b506104296104243660046122c9565b610b8f565b604051610283919061279f565b34801561044257600080fd5b506102fb61045136600461241a565b610cfa565b34801561046257600080fd5b506103126104713660046125bc565b610dbd565b34801561048257600080fd5b506102fb6104913660046124f2565b610de9565b3480156104a257600080fd5b506102fb610e46565b3480156104b757600080fd5b50610276610e94565b3480156104cc57600080fd5b506102ce6104db3660046125bc565b610ea3565b3480156104ec57600080fd5b506103126104fb3660046122c9565b610eb5565b34801561050c57600080fd5b506102fb610f02565b34801561052157600080fd5b506102ce610f4d565b6102fb6105383660046125d4565b610f5c565b6102fb61054b3660046125bc565b611197565b34801561055c57600080fd5b506102a161126e565b34801561057157600080fd5b506102766105803660046124b0565b61127d565b34801561059157600080fd5b506102fb6105a03660046123c8565b6113c5565b3480156105b157600080fd5b50610312611493565b3480156105c657600080fd5b50610276611499565b3480156105db57600080fd5b506103126114a2565b3480156105f057600080fd5b506102fb6105ff3660046122c9565b6114a8565b34801561061057600080fd5b506102fb61061f366004612350565b611526565b34801561063057600080fd5b506102a161063f3660046125bc565b61155f565b34801561065057600080fd5b506103126115d4565b34801561066557600080fd5b506103126115da565b34801561067a57600080fd5b506103126115e0565b34801561068f57600080fd5b506102fb61069e36600461255c565b6115e5565b3480156106af57600080fd5b506102766106be3660046122e3565b61164b565b3480156106cf57600080fd5b50610312611679565b3480156106e457600080fd5b506102fb6106f33660046122c9565b61167f565b34801561070457600080fd5b506102fb61071336600461260e565b6116ed565b60006001600160e01b031982166380ac58cd60e01b148061074957506001600160e01b03198216635b5e139f60e01b145b8061076457506001600160e01b0319821663780e9d6360e01b145b80610773575061077382611737565b90505b919050565b60606001805461078a9061327f565b80601f01602080910402602001604051908101604052809291908181526020018280546107b69061327f565b80156108035780601f106107d857610100808354040283529160200191610803565b820191906000526020600020905b8154815290600101906020018083116107e657829003601f168201915b5050505050905090565b600061081882611750565b61083d5760405162461bcd60e51b81526004016108349061303d565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061086482610ea3565b9050806001600160a01b0316836001600160a01b031614156108985760405162461bcd60e51b815260040161083490612dae565b806001600160a01b03166108aa611757565b6001600160a01b031614806108c657506108c6816106be611757565b6108e25760405162461bcd60e51b815260040161083490612ad7565b6108ed83838361175b565b505050565b60005490565b600c54610100900460ff1681565b600f6020526000908152604090205481565b6108ed8383836117b7565b61092b611757565b6001600160a01b031661093c610f4d565b6001600160a01b0316146109625760405162461bcd60e51b815260040161083490612c52565b600c80549115156101000261ff0019909216919091179055565b600061098783610eb5565b82106109a55760405162461bcd60e51b81526004016108349061280a565b60006109af6108f2565b905060008060005b83811015610a58576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610a0957805192505b876001600160a01b0316836001600160a01b03161415610a455786841415610a3757509350610a7192505050565b83610a41816132ba565b9450505b5080610a50816132ba565b9150506109b7565b5060405162461bcd60e51b815260040161083490612ef0565b92915050565b610a7f611757565b6001600160a01b0316610a90610f4d565b6001600160a01b031614610ab65760405162461bcd60e51b815260040161083490612c52565b4780610ad45760405162461bcd60e51b815260040161083490612a79565b60405173c83f89f6933238cb85d1ddcd796ab8f1c4e9e32c9082156108fc029083906000818181858888f19350505050158015610b15573d6000803e3d6000fd5b5050565b610b21611757565b6001600160a01b0316610b32610f4d565b6001600160a01b031614610b585760405162461bcd60e51b815260040161083490612c52565b600c8054911515620100000262ff000019909216919091179055565b6108ed83838360405180602001604052806000815250611526565b60606000610b9c83610eb5565b90506000816001600160401b03811115610bc657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610bef578160200160208202803683370190505b50905081610c005791506107769050565b6000610c0a6108f2565b905060008060005b83811015610ce1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610c6457805192505b886001600160a01b0316836001600160a01b03161415610cce5781868581518110610c9f57634e487b7160e01b600052603260045260246000fd5b602090810291909101015283610cb4816132ba565b94505086841415610cce5785975050505050505050610776565b5080610cd9816132ba565b915050610c12565b5060405162461bcd60e51b81526004016108349061298d565b610d02611757565b6001600160a01b0316610d13610f4d565b6001600160a01b031614610d395760405162461bcd60e51b815260040161083490612c52565b60005b8151811015610b1557612631610d506108f2565b610d5b9060016131b2565b1115610d795760405162461bcd60e51b815260040161083490612b34565b610dab828281518110610d9c57634e487b7160e01b600052603260045260246000fd5b60200260200101516001611ac9565b80610db5816132ba565b915050610d3c565b6000610dc76108f2565b8210610de55760405162461bcd60e51b81526004016108349061294a565b5090565b610df1611757565b6001600160a01b0316610e02610f4d565b6001600160a01b031614610e285760405162461bcd60e51b815260040161083490612c52565b600c805491151563010000000263ff00000019909216919091179055565b610e4e611757565b6001600160a01b0316610e5f610f4d565b6001600160a01b031614610e855760405162461bcd60e51b815260040161083490612c52565b600c805460ff19166001179055565b600c5462010000900460ff1681565b6000610eae82611ae3565b5192915050565b60006001600160a01b038216610edd5760405162461bcd60e51b815260040161083490612b91565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610f0a611757565b6001600160a01b0316610f1b610f4d565b6001600160a01b031614610f415760405162461bcd60e51b815260040161083490612c52565b610f4b6000611bf5565b565b6008546001600160a01b031690565b600c54610100900460ff16610f835760405162461bcd60e51b815260040161083490612a16565b600c5462010000900460ff16610fab5760405162461bcd60e51b81526004016108349061284c565b610fb5813361127d565b610fd15760405162461bcd60e51b815260040161083490612aae565b600c546301000000900460ff166110fa576125a5610fed6108f2565b1061100a5760405162461bcd60e51b815260040161083490612f75565b600e5482111561102c5760405162461bcd60e51b815260040161083490613103565b6125a56110418361103b6108f2565b90611c47565b111561105f5760405162461bcd60e51b815260040161083490612d5f565b600e54336000908152600f602052604090205461107c9084611c47565b111561109a5760405162461bcd60e51b815260040161083490612e7a565b600b5434906110a99084611c5a565b146110c65760405162461bcd60e51b815260040161083490612a42565b336000908152600f6020526040812080548492906110e59084906131b2565b909155506110f590503383611ac9565b610b15565b6126316111056108f2565b11156111235760405162461bcd60e51b815260040161083490613006565b816001146111435760405162461bcd60e51b815260040161083490613103565b3360009081526010602052604090205460ff16156111735760405162461bcd60e51b8152600401610834906130cc565b336000818152601060205260409020805460ff19166001179055610b159083611ac9565b600c54610100900460ff166111be5760405162461bcd60e51b815260040161083490612bdc565b600c5462010000900460ff16156111e75760405162461bcd60e51b815260040161083490612f3e565b60058111156112085760405162461bcd60e51b815260040161083490612913565b6125a56112178261103b6108f2565b11156112355760405162461bcd60e51b815260040161083490612d5f565b600b5434906112449083611c5a565b146112615760405162461bcd60e51b815260040161083490612a42565b61126b3382611ac9565b50565b60606002805461078a9061327f565b600081815b84518110156113b95760008582815181106112ad57634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161133457600283826040516020016112d39291906126f3565b60408051601f19818403018152908290526112ed91612701565b602060405180830381855afa15801561130a573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061132d919061250c565b92506113a6565b600281846040516020016113499291906126f3565b60408051601f198184030181529082905261136391612701565b602060405180830381855afa158015611380573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906113a3919061250c565b92505b50806113b1816132ba565b915050611282565b50600d54149392505050565b6113cd611757565b6001600160a01b0316826001600160a01b031614156113fe5760405162461bcd60e51b815260040161083490612cd6565b806006600061140b611757565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561144f611757565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161148791906127e3565b60405180910390a35050565b600b5481565b600c5460ff1681565b600e5481565b6114b0611757565b6001600160a01b03166114c1610f4d565b6001600160a01b0316146114e75760405162461bcd60e51b815260040161083490612c52565b6126316114f26108f2565b6114fd9060016131b2565b111561151b5760405162461bcd60e51b815260040161083490612b34565b61126b336001611ac9565b6115318484846117b7565b61153d84848484611c66565b6115595760405162461bcd60e51b815260040161083490612df0565b50505050565b606061156a82611750565b6115865760405162461bcd60e51b815260040161083490612c87565b600c5460ff166115b857600a6040516020016115a2919061271d565b6040516020818303038152906040529050610776565b60096115c383611d82565b6040516020016115a2929190612729565b6125a581565b60075481565b600581565b6115ed611757565b6001600160a01b03166115fe610f4d565b6001600160a01b0316146116245760405162461bcd60e51b815260040161083490612c52565b815161163790600a906020850190612114565b5080516108ed906009906020840190612114565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600d5481565b611687611757565b6001600160a01b0316611698610f4d565b6001600160a01b0316146116be5760405162461bcd60e51b815260040161083490612c52565b6001600160a01b0381166116e45760405162461bcd60e51b815260040161083490612883565b61126b81611bf5565b6116f5611757565b6001600160a01b0316611706610f4d565b6001600160a01b03161461172c5760405162461bcd60e51b815260040161083490612c52565b600d91909155600e55565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117c282611ae3565b9050600081600001516001600160a01b03166117dc611757565b6001600160a01b0316148061181157506117f4611757565b6001600160a01b03166118068461080d565b6001600160a01b0316145b8061182557508151611825906106be611757565b9050806118445760405162461bcd60e51b815260040161083490612d0d565b846001600160a01b031682600001516001600160a01b0316146118795760405162461bcd60e51b815260040161083490612c0c565b6001600160a01b03841661189f5760405162461bcd60e51b8152600401610834906129d1565b6118ac8585856001611559565b6118bc600084846000015161175b565b6001600160a01b03851660009081526004602052604081208054600192906118ee9084906001600160801b03166131fd565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261193a91859116613190565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b031990911617161790556119cf8460016131b2565b6000818152600360205260409020549091506001600160a01b0316611a73576119f781611750565b15611a735760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ac18686866001611559565b505050505050565b610b15828260405180602001604052806000815250611e9c565b611aeb612194565b611af482611750565b611b105760405162461bcd60e51b8152600401610834906128c9565b60007f00000000000000000000000000000000000000000000000000000000000000008310611b7157611b637f000000000000000000000000000000000000000000000000000000000000000084613225565b611b6e9060016131b2565b90505b825b818110611bdc576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611bc9579250610776915050565b5080611bd481613268565b915050611b73565b5060405162461bcd60e51b815260040161083490612fb7565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611c5382846131b2565b9392505050565b6000611c5382846131de565b6000611c7a846001600160a01b031661210e565b15611d7657836001600160a01b031663150b7a02611c96611757565b8786866040518563ffffffff1660e01b8152600401611cb89493929190612762565b602060405180830381600087803b158015611cd257600080fd5b505af1925050508015611d02575060408051601f3d908101601f19168201909252611cff91810190612540565b60015b611d5c573d808015611d30576040519150601f19603f3d011682016040523d82523d6000602084013e611d35565b606091505b508051611d545760405162461bcd60e51b815260040161083490612df0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d7a565b5060015b949350505050565b606081611da757506040805180820190915260018152600360fc1b6020820152610776565b8160005b8115611dd15780611dbb816132ba565b9150611dca9050600a836131ca565b9150611dab565b6000816001600160401b03811115611df957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e23576020820181803683370190505b5090505b8415611d7a57611e38600183613225565b9150611e45600a866132d5565b611e509060306131b2565b60f81b818381518110611e7357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e95600a866131ca565b9450611e27565b6000546001600160a01b038416611ec55760405162461bcd60e51b815260040161083490612eaf565b611ece81611750565b15611eeb5760405162461bcd60e51b815260040161083490612e43565b7f0000000000000000000000000000000000000000000000000000000000000000831115611f2b5760405162461bcd60e51b81526004016108349061308a565b611f386000858386611559565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611f94908790613190565b6001600160801b03168152602001858360200151611fb29190613190565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156120fc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120c06000888488611c66565b6120dc5760405162461bcd60e51b815260040161083490612df0565b816120e6816132ba565b92505080806120f4906132ba565b915050612073565b506000818155611ac190878588611559565b3b151590565b8280546121209061327f565b90600052602060002090601f0160209004810192826121425760008555612188565b82601f1061215b57805160ff1916838001178555612188565b82800160010185558215612188579182015b8281111561218857825182559160200191906001019061216d565b50610de59291506121ab565b604080518082019091526000808252602082015290565b5b80821115610de557600081556001016121ac565b60006001600160401b038311156121d9576121d9613315565b6121ec601f8401601f1916602001613138565b905082815283838301111561220057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461077657600080fd5b600082601f83011261223e578081fd5b8135602061225361224e83613161565b613138565b828152818101908583018385028701840188101561226f578586fd5b855b8581101561228d57813584529284019290840190600101612271565b5090979650505050505050565b8035801515811461077657600080fd5b600082601f8301126122ba578081fd5b611c53838335602085016121c0565b6000602082840312156122da578081fd5b611c5382612217565b600080604083850312156122f5578081fd5b6122fe83612217565b915061230c60208401612217565b90509250929050565b600080600060608486031215612329578081fd5b61233284612217565b925061234060208501612217565b9150604084013590509250925092565b60008060008060808587031215612365578081fd5b61236e85612217565b935061237c60208601612217565b92506040850135915060608501356001600160401b0381111561239d578182fd5b8501601f810187136123ad578182fd5b6123bc878235602084016121c0565b91505092959194509250565b600080604083850312156123da578182fd5b6123e383612217565b915061230c6020840161229a565b60008060408385031215612403578182fd5b61240c83612217565b946020939093013593505050565b6000602080838503121561242c578182fd5b82356001600160401b03811115612441578283fd5b8301601f81018513612451578283fd5b803561245f61224e82613161565b818152838101908385018584028501860189101561247b578687fd5b8694505b838510156124a45761249081612217565b83526001949094019391850191850161247f565b50979650505050505050565b600080604083850312156124c2578182fd5b82356001600160401b038111156124d7578283fd5b6124e38582860161222e565b95602094909401359450505050565b600060208284031215612503578081fd5b611c538261229a565b60006020828403121561251d578081fd5b5051919050565b600060208284031215612535578081fd5b8135611c538161332b565b600060208284031215612551578081fd5b8151611c538161332b565b6000806040838503121561256e578182fd5b82356001600160401b0380821115612584578384fd5b612590868387016122aa565b935060208501359150808211156125a5578283fd5b506125b2858286016122aa565b9150509250929050565b6000602082840312156125cd578081fd5b5035919050565b600080604083850312156125e6578182fd5b8235915060208301356001600160401b03811115612602578182fd5b6125b28582860161222e565b60008060408385031215612620578182fd5b50508035926020909101359150565b6000815180845261264781602086016020860161323c565b601f01601f19169290920160200192915050565b80546000906002810460018083168061267557607f831692505b602080841082141561269557634e487b7160e01b86526022600452602486fd5b8180156126a957600181146126ba576126e7565b60ff198616895284890196506126e7565b6126c388613184565b60005b868110156126df5781548b8201529085019083016126c6565b505084890196505b50505050505092915050565b918252602082015260400190565b6000825161271381846020870161323c565b9190910192915050565b6000611c53828461265b565b6000612735828561265b565b835161274581836020880161323c565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127959083018461262f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127d7578351835292840192918401916001016127bb565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611c53602083018461262f565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526017908201527f57686974656c697374206973206e6f7420616374697665000000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526017908201527f43616e6e6f74206d696e742061626f7665206c696d6974000000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526024908201527f455243373231413a20756e61626c6520746f206765742077616c6c65744f664f6040820152633bb732b960e11b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252818101527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f604082015260600190565b6020808252600f908201526e139bdd081dda1a5d195b1a5cdd1959608a1b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602f908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526e20737570706c79206f66204e46547360881b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252818101527f50757263686173652065786365656473206d61782077686974656c6973746564604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526017908201527f50726573616c65206973207374696c6c20616374697665000000000000000000604082015260600190565b60208082526022908201527f416c6c207075626c696320746f6b656e732068617665206265656e206d696e74604082015261195960f21b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b60208082526018908201527f416c726561647920636c61696d65642067697665617761790000000000000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b6040518181016001600160401b038111828210171561315957613159613315565b604052919050565b60006001600160401b0382111561317a5761317a613315565b5060209081020190565b60009081526020902090565b60006001600160801b03808316818516808303821115612745576127456132e9565b600082198211156131c5576131c56132e9565b500190565b6000826131d9576131d96132ff565b500490565b60008160001904831182151516156131f8576131f86132e9565b500290565b60006001600160801b038381169083168181101561321d5761321d6132e9565b039392505050565b600082821015613237576132376132e9565b500390565b60005b8381101561325757818101518382015260200161323f565b838111156115595750506000910152565b600081613277576132776132e9565b506000190190565b60028104600182168061329357607f821691505b602082108114156132b457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132ce576132ce6132e9565b5060010190565b6000826132e4576132e46132ff565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461126b57600080fdfea26469706673582212203b530889fe5db784a9f4b7c6758c1970a4ceee58c67d24a40c9f0de7fd0ec4af64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102515760003560e01c8063715018a611610139578063b533731d116100b6578063e748e07c1161007a578063e748e07c1461066e578063e825417414610683578063e985e9c5146106a3578063ebf0c717146106c3578063f2fde38b146106d8578063f37484e3146106f857610251565b8063b533731d146105e4578063b88d4fde14610604578063c87b56dd14610624578063d1d80f3014610644578063d7224ba01461065957610251565b8063972a2a62116100fd578063972a2a6214610565578063a22cb46514610585578063a38bffda146105a5578063a475b5dd146105ba578063aeb16768146105cf57610251565b8063715018a6146105005780638da5cb5b146105155780638f76696c1461052a578063926427441461053d57806395d89b411461055057610251565b80633ccfd60b116101d25780634f6ccce7116101965780634f6ccce7146104565780634f9b563c146104765780635f0f45b21461049657806360d938dc146104ab5780636352211e146104c057806370a08231146104e057610251565b80633ccfd60b146103b45780633f8121a2146103c957806342842e0e146103e9578063438b6300146104095780634cdb44001461043657610251565b806322f3e2d41161021957806322f3e2d41461031f5780632333f3c41461033457806323b872dd146103545780632750fc78146103745780632f745c591461039457610251565b806301ffc9a71461025657806306fdde031461028c578063081812fc146102ae578063095ea7b3146102db57806318160ddd146102fd575b600080fd5b34801561026257600080fd5b50610276610271366004612524565b610718565b60405161028391906127e3565b60405180910390f35b34801561029857600080fd5b506102a161077b565b60405161028391906127f7565b3480156102ba57600080fd5b506102ce6102c93660046125bc565b61080d565b604051610283919061274e565b3480156102e757600080fd5b506102fb6102f63660046123f1565b610859565b005b34801561030957600080fd5b506103126108f2565b60405161028391906127ee565b34801561032b57600080fd5b506102766108f8565b34801561034057600080fd5b5061031261034f3660046122c9565b610906565b34801561036057600080fd5b506102fb61036f366004612315565b610918565b34801561038057600080fd5b506102fb61038f3660046124f2565b610923565b3480156103a057600080fd5b506103126103af3660046123f1565b61097c565b3480156103c057600080fd5b506102fb610a77565b3480156103d557600080fd5b506102fb6103e43660046124f2565b610b19565b3480156103f557600080fd5b506102fb610404366004612315565b610b74565b34801561041557600080fd5b506104296104243660046122c9565b610b8f565b604051610283919061279f565b34801561044257600080fd5b506102fb61045136600461241a565b610cfa565b34801561046257600080fd5b506103126104713660046125bc565b610dbd565b34801561048257600080fd5b506102fb6104913660046124f2565b610de9565b3480156104a257600080fd5b506102fb610e46565b3480156104b757600080fd5b50610276610e94565b3480156104cc57600080fd5b506102ce6104db3660046125bc565b610ea3565b3480156104ec57600080fd5b506103126104fb3660046122c9565b610eb5565b34801561050c57600080fd5b506102fb610f02565b34801561052157600080fd5b506102ce610f4d565b6102fb6105383660046125d4565b610f5c565b6102fb61054b3660046125bc565b611197565b34801561055c57600080fd5b506102a161126e565b34801561057157600080fd5b506102766105803660046124b0565b61127d565b34801561059157600080fd5b506102fb6105a03660046123c8565b6113c5565b3480156105b157600080fd5b50610312611493565b3480156105c657600080fd5b50610276611499565b3480156105db57600080fd5b506103126114a2565b3480156105f057600080fd5b506102fb6105ff3660046122c9565b6114a8565b34801561061057600080fd5b506102fb61061f366004612350565b611526565b34801561063057600080fd5b506102a161063f3660046125bc565b61155f565b34801561065057600080fd5b506103126115d4565b34801561066557600080fd5b506103126115da565b34801561067a57600080fd5b506103126115e0565b34801561068f57600080fd5b506102fb61069e36600461255c565b6115e5565b3480156106af57600080fd5b506102766106be3660046122e3565b61164b565b3480156106cf57600080fd5b50610312611679565b3480156106e457600080fd5b506102fb6106f33660046122c9565b61167f565b34801561070457600080fd5b506102fb61071336600461260e565b6116ed565b60006001600160e01b031982166380ac58cd60e01b148061074957506001600160e01b03198216635b5e139f60e01b145b8061076457506001600160e01b0319821663780e9d6360e01b145b80610773575061077382611737565b90505b919050565b60606001805461078a9061327f565b80601f01602080910402602001604051908101604052809291908181526020018280546107b69061327f565b80156108035780601f106107d857610100808354040283529160200191610803565b820191906000526020600020905b8154815290600101906020018083116107e657829003601f168201915b5050505050905090565b600061081882611750565b61083d5760405162461bcd60e51b81526004016108349061303d565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061086482610ea3565b9050806001600160a01b0316836001600160a01b031614156108985760405162461bcd60e51b815260040161083490612dae565b806001600160a01b03166108aa611757565b6001600160a01b031614806108c657506108c6816106be611757565b6108e25760405162461bcd60e51b815260040161083490612ad7565b6108ed83838361175b565b505050565b60005490565b600c54610100900460ff1681565b600f6020526000908152604090205481565b6108ed8383836117b7565b61092b611757565b6001600160a01b031661093c610f4d565b6001600160a01b0316146109625760405162461bcd60e51b815260040161083490612c52565b600c80549115156101000261ff0019909216919091179055565b600061098783610eb5565b82106109a55760405162461bcd60e51b81526004016108349061280a565b60006109af6108f2565b905060008060005b83811015610a58576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610a0957805192505b876001600160a01b0316836001600160a01b03161415610a455786841415610a3757509350610a7192505050565b83610a41816132ba565b9450505b5080610a50816132ba565b9150506109b7565b5060405162461bcd60e51b815260040161083490612ef0565b92915050565b610a7f611757565b6001600160a01b0316610a90610f4d565b6001600160a01b031614610ab65760405162461bcd60e51b815260040161083490612c52565b4780610ad45760405162461bcd60e51b815260040161083490612a79565b60405173c83f89f6933238cb85d1ddcd796ab8f1c4e9e32c9082156108fc029083906000818181858888f19350505050158015610b15573d6000803e3d6000fd5b5050565b610b21611757565b6001600160a01b0316610b32610f4d565b6001600160a01b031614610b585760405162461bcd60e51b815260040161083490612c52565b600c8054911515620100000262ff000019909216919091179055565b6108ed83838360405180602001604052806000815250611526565b60606000610b9c83610eb5565b90506000816001600160401b03811115610bc657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610bef578160200160208202803683370190505b50905081610c005791506107769050565b6000610c0a6108f2565b905060008060005b83811015610ce1576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610c6457805192505b886001600160a01b0316836001600160a01b03161415610cce5781868581518110610c9f57634e487b7160e01b600052603260045260246000fd5b602090810291909101015283610cb4816132ba565b94505086841415610cce5785975050505050505050610776565b5080610cd9816132ba565b915050610c12565b5060405162461bcd60e51b81526004016108349061298d565b610d02611757565b6001600160a01b0316610d13610f4d565b6001600160a01b031614610d395760405162461bcd60e51b815260040161083490612c52565b60005b8151811015610b1557612631610d506108f2565b610d5b9060016131b2565b1115610d795760405162461bcd60e51b815260040161083490612b34565b610dab828281518110610d9c57634e487b7160e01b600052603260045260246000fd5b60200260200101516001611ac9565b80610db5816132ba565b915050610d3c565b6000610dc76108f2565b8210610de55760405162461bcd60e51b81526004016108349061294a565b5090565b610df1611757565b6001600160a01b0316610e02610f4d565b6001600160a01b031614610e285760405162461bcd60e51b815260040161083490612c52565b600c805491151563010000000263ff00000019909216919091179055565b610e4e611757565b6001600160a01b0316610e5f610f4d565b6001600160a01b031614610e855760405162461bcd60e51b815260040161083490612c52565b600c805460ff19166001179055565b600c5462010000900460ff1681565b6000610eae82611ae3565b5192915050565b60006001600160a01b038216610edd5760405162461bcd60e51b815260040161083490612b91565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610f0a611757565b6001600160a01b0316610f1b610f4d565b6001600160a01b031614610f415760405162461bcd60e51b815260040161083490612c52565b610f4b6000611bf5565b565b6008546001600160a01b031690565b600c54610100900460ff16610f835760405162461bcd60e51b815260040161083490612a16565b600c5462010000900460ff16610fab5760405162461bcd60e51b81526004016108349061284c565b610fb5813361127d565b610fd15760405162461bcd60e51b815260040161083490612aae565b600c546301000000900460ff166110fa576125a5610fed6108f2565b1061100a5760405162461bcd60e51b815260040161083490612f75565b600e5482111561102c5760405162461bcd60e51b815260040161083490613103565b6125a56110418361103b6108f2565b90611c47565b111561105f5760405162461bcd60e51b815260040161083490612d5f565b600e54336000908152600f602052604090205461107c9084611c47565b111561109a5760405162461bcd60e51b815260040161083490612e7a565b600b5434906110a99084611c5a565b146110c65760405162461bcd60e51b815260040161083490612a42565b336000908152600f6020526040812080548492906110e59084906131b2565b909155506110f590503383611ac9565b610b15565b6126316111056108f2565b11156111235760405162461bcd60e51b815260040161083490613006565b816001146111435760405162461bcd60e51b815260040161083490613103565b3360009081526010602052604090205460ff16156111735760405162461bcd60e51b8152600401610834906130cc565b336000818152601060205260409020805460ff19166001179055610b159083611ac9565b600c54610100900460ff166111be5760405162461bcd60e51b815260040161083490612bdc565b600c5462010000900460ff16156111e75760405162461bcd60e51b815260040161083490612f3e565b60058111156112085760405162461bcd60e51b815260040161083490612913565b6125a56112178261103b6108f2565b11156112355760405162461bcd60e51b815260040161083490612d5f565b600b5434906112449083611c5a565b146112615760405162461bcd60e51b815260040161083490612a42565b61126b3382611ac9565b50565b60606002805461078a9061327f565b600081815b84518110156113b95760008582815181106112ad57634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161133457600283826040516020016112d39291906126f3565b60408051601f19818403018152908290526112ed91612701565b602060405180830381855afa15801561130a573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061132d919061250c565b92506113a6565b600281846040516020016113499291906126f3565b60408051601f198184030181529082905261136391612701565b602060405180830381855afa158015611380573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906113a3919061250c565b92505b50806113b1816132ba565b915050611282565b50600d54149392505050565b6113cd611757565b6001600160a01b0316826001600160a01b031614156113fe5760405162461bcd60e51b815260040161083490612cd6565b806006600061140b611757565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561144f611757565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161148791906127e3565b60405180910390a35050565b600b5481565b600c5460ff1681565b600e5481565b6114b0611757565b6001600160a01b03166114c1610f4d565b6001600160a01b0316146114e75760405162461bcd60e51b815260040161083490612c52565b6126316114f26108f2565b6114fd9060016131b2565b111561151b5760405162461bcd60e51b815260040161083490612b34565b61126b336001611ac9565b6115318484846117b7565b61153d84848484611c66565b6115595760405162461bcd60e51b815260040161083490612df0565b50505050565b606061156a82611750565b6115865760405162461bcd60e51b815260040161083490612c87565b600c5460ff166115b857600a6040516020016115a2919061271d565b6040516020818303038152906040529050610776565b60096115c383611d82565b6040516020016115a2929190612729565b6125a581565b60075481565b600581565b6115ed611757565b6001600160a01b03166115fe610f4d565b6001600160a01b0316146116245760405162461bcd60e51b815260040161083490612c52565b815161163790600a906020850190612114565b5080516108ed906009906020840190612114565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600d5481565b611687611757565b6001600160a01b0316611698610f4d565b6001600160a01b0316146116be5760405162461bcd60e51b815260040161083490612c52565b6001600160a01b0381166116e45760405162461bcd60e51b815260040161083490612883565b61126b81611bf5565b6116f5611757565b6001600160a01b0316611706610f4d565b6001600160a01b03161461172c5760405162461bcd60e51b815260040161083490612c52565b600d91909155600e55565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117c282611ae3565b9050600081600001516001600160a01b03166117dc611757565b6001600160a01b0316148061181157506117f4611757565b6001600160a01b03166118068461080d565b6001600160a01b0316145b8061182557508151611825906106be611757565b9050806118445760405162461bcd60e51b815260040161083490612d0d565b846001600160a01b031682600001516001600160a01b0316146118795760405162461bcd60e51b815260040161083490612c0c565b6001600160a01b03841661189f5760405162461bcd60e51b8152600401610834906129d1565b6118ac8585856001611559565b6118bc600084846000015161175b565b6001600160a01b03851660009081526004602052604081208054600192906118ee9084906001600160801b03166131fd565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261193a91859116613190565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b031990911617161790556119cf8460016131b2565b6000818152600360205260409020549091506001600160a01b0316611a73576119f781611750565b15611a735760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ac18686866001611559565b505050505050565b610b15828260405180602001604052806000815250611e9c565b611aeb612194565b611af482611750565b611b105760405162461bcd60e51b8152600401610834906128c9565b60007f000000000000000000000000000000000000000000000000000000000000000a8310611b7157611b637f000000000000000000000000000000000000000000000000000000000000000a84613225565b611b6e9060016131b2565b90505b825b818110611bdc576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611bc9579250610776915050565b5080611bd481613268565b915050611b73565b5060405162461bcd60e51b815260040161083490612fb7565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611c5382846131b2565b9392505050565b6000611c5382846131de565b6000611c7a846001600160a01b031661210e565b15611d7657836001600160a01b031663150b7a02611c96611757565b8786866040518563ffffffff1660e01b8152600401611cb89493929190612762565b602060405180830381600087803b158015611cd257600080fd5b505af1925050508015611d02575060408051601f3d908101601f19168201909252611cff91810190612540565b60015b611d5c573d808015611d30576040519150601f19603f3d011682016040523d82523d6000602084013e611d35565b606091505b508051611d545760405162461bcd60e51b815260040161083490612df0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d7a565b5060015b949350505050565b606081611da757506040805180820190915260018152600360fc1b6020820152610776565b8160005b8115611dd15780611dbb816132ba565b9150611dca9050600a836131ca565b9150611dab565b6000816001600160401b03811115611df957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e23576020820181803683370190505b5090505b8415611d7a57611e38600183613225565b9150611e45600a866132d5565b611e509060306131b2565b60f81b818381518110611e7357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e95600a866131ca565b9450611e27565b6000546001600160a01b038416611ec55760405162461bcd60e51b815260040161083490612eaf565b611ece81611750565b15611eeb5760405162461bcd60e51b815260040161083490612e43565b7f000000000000000000000000000000000000000000000000000000000000000a831115611f2b5760405162461bcd60e51b81526004016108349061308a565b611f386000858386611559565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611f94908790613190565b6001600160801b03168152602001858360200151611fb29190613190565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156120fc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120c06000888488611c66565b6120dc5760405162461bcd60e51b815260040161083490612df0565b816120e6816132ba565b92505080806120f4906132ba565b915050612073565b506000818155611ac190878588611559565b3b151590565b8280546121209061327f565b90600052602060002090601f0160209004810192826121425760008555612188565b82601f1061215b57805160ff1916838001178555612188565b82800160010185558215612188579182015b8281111561218857825182559160200191906001019061216d565b50610de59291506121ab565b604080518082019091526000808252602082015290565b5b80821115610de557600081556001016121ac565b60006001600160401b038311156121d9576121d9613315565b6121ec601f8401601f1916602001613138565b905082815283838301111561220057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461077657600080fd5b600082601f83011261223e578081fd5b8135602061225361224e83613161565b613138565b828152818101908583018385028701840188101561226f578586fd5b855b8581101561228d57813584529284019290840190600101612271565b5090979650505050505050565b8035801515811461077657600080fd5b600082601f8301126122ba578081fd5b611c53838335602085016121c0565b6000602082840312156122da578081fd5b611c5382612217565b600080604083850312156122f5578081fd5b6122fe83612217565b915061230c60208401612217565b90509250929050565b600080600060608486031215612329578081fd5b61233284612217565b925061234060208501612217565b9150604084013590509250925092565b60008060008060808587031215612365578081fd5b61236e85612217565b935061237c60208601612217565b92506040850135915060608501356001600160401b0381111561239d578182fd5b8501601f810187136123ad578182fd5b6123bc878235602084016121c0565b91505092959194509250565b600080604083850312156123da578182fd5b6123e383612217565b915061230c6020840161229a565b60008060408385031215612403578182fd5b61240c83612217565b946020939093013593505050565b6000602080838503121561242c578182fd5b82356001600160401b03811115612441578283fd5b8301601f81018513612451578283fd5b803561245f61224e82613161565b818152838101908385018584028501860189101561247b578687fd5b8694505b838510156124a45761249081612217565b83526001949094019391850191850161247f565b50979650505050505050565b600080604083850312156124c2578182fd5b82356001600160401b038111156124d7578283fd5b6124e38582860161222e565b95602094909401359450505050565b600060208284031215612503578081fd5b611c538261229a565b60006020828403121561251d578081fd5b5051919050565b600060208284031215612535578081fd5b8135611c538161332b565b600060208284031215612551578081fd5b8151611c538161332b565b6000806040838503121561256e578182fd5b82356001600160401b0380821115612584578384fd5b612590868387016122aa565b935060208501359150808211156125a5578283fd5b506125b2858286016122aa565b9150509250929050565b6000602082840312156125cd578081fd5b5035919050565b600080604083850312156125e6578182fd5b8235915060208301356001600160401b03811115612602578182fd5b6125b28582860161222e565b60008060408385031215612620578182fd5b50508035926020909101359150565b6000815180845261264781602086016020860161323c565b601f01601f19169290920160200192915050565b80546000906002810460018083168061267557607f831692505b602080841082141561269557634e487b7160e01b86526022600452602486fd5b8180156126a957600181146126ba576126e7565b60ff198616895284890196506126e7565b6126c388613184565b60005b868110156126df5781548b8201529085019083016126c6565b505084890196505b50505050505092915050565b918252602082015260400190565b6000825161271381846020870161323c565b9190910192915050565b6000611c53828461265b565b6000612735828561265b565b835161274581836020880161323c565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127959083018461262f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127d7578351835292840192918401916001016127bb565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611c53602083018461262f565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526017908201527f57686974656c697374206973206e6f7420616374697665000000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526017908201527f43616e6e6f74206d696e742061626f7665206c696d6974000000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526024908201527f455243373231413a20756e61626c6520746f206765742077616c6c65744f664f6040820152633bb732b960e11b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252818101527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f604082015260600190565b6020808252600f908201526e139bdd081dda1a5d195b1a5cdd1959608a1b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b602080825260169082015275436f6e7472616374206973206e6f742061637469766560501b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252602f908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526e20737570706c79206f66204e46547360881b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252818101527f50757263686173652065786365656473206d61782077686974656c6973746564604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526017908201527f50726573616c65206973207374696c6c20616374697665000000000000000000604082015260600190565b60208082526022908201527f416c6c207075626c696320746f6b656e732068617665206265656e206d696e74604082015261195960f21b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b60208082526018908201527f416c726561647920636c61696d65642067697665617761790000000000000000604082015260600190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b6040518181016001600160401b038111828210171561315957613159613315565b604052919050565b60006001600160401b0382111561317a5761317a613315565b5060209081020190565b60009081526020902090565b60006001600160801b03808316818516808303821115612745576127456132e9565b600082198211156131c5576131c56132e9565b500190565b6000826131d9576131d96132ff565b500490565b60008160001904831182151516156131f8576131f86132e9565b500290565b60006001600160801b038381169083168181101561321d5761321d6132e9565b039392505050565b600082821015613237576132376132e9565b500390565b60005b8381101561325757818101518382015260200161323f565b838111156115595750506000910152565b600081613277576132776132e9565b506000190190565b60028104600182168061329357607f821691505b602082108114156132b457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132ce576132ce6132e9565b5060010190565b6000826132e4576132e46132ff565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461126b57600080fdfea26469706673582212203b530889fe5db784a9f4b7c6758c1970a4ceee58c67d24a40c9f0de7fd0ec4af64736f6c63430008000033

Deployed Bytecode Sourcemap

66177:7013:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53937:370;;;;;;;;;;-1:-1:-1;53937:370:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55663:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57188:204::-;;;;;;;;;;-1:-1:-1;57188:204:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56751:379::-;;;;;;;;;;-1:-1:-1;56751:379:0;;;;;:::i;:::-;;:::i;:::-;;51664:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;66635:20::-;;;;;;;;;;;;;:::i;66800:51::-;;;;;;;;;;-1:-1:-1;66800:51:0;;;;;:::i;:::-;;:::i;58038:150::-;;;;;;;;;;-1:-1:-1;58038:150:0;;;;;:::i;:::-;;:::i;67188:137::-;;;;;;;;;;-1:-1:-1;67188:137:0;;;;;:::i;:::-;;:::i;52292:744::-;;;;;;;;;;-1:-1:-1;52292:744:0;;;;;:::i;:::-;;:::i;68221:280::-;;;;;;;;;;;;;:::i;67442:149::-;;;;;;;;;;-1:-1:-1;67442:149:0;;;;;:::i;:::-;;:::i;58251:165::-;;;;;;;;;;-1:-1:-1;58251:165:0;;;;;:::i;:::-;;:::i;53042:831::-;;;;;;;;;;-1:-1:-1;53042:831:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;71225:325::-;;;;;;;;;;-1:-1:-1;71225:325:0;;;;;:::i;:::-;;:::i;51827:177::-;;;;;;;;;;-1:-1:-1;51827:177:0;;;;;:::i;:::-;;:::i;67701:149::-;;;;;;;;;;-1:-1:-1;67701:149:0;;;;;:::i;:::-;;:::i;66984:98::-;;;;;;;;;;;;;:::i;66662:27::-;;;;;;;;;;;;;:::i;55486:118::-;;;;;;;;;;-1:-1:-1;55486:118:0;;;;;:::i;:::-;;:::i;54363:211::-;;;;;;;;;;-1:-1:-1;54363:211:0;;;;;:::i;:::-;;:::i;2503:94::-;;;;;;;;;;;;;:::i;1852:87::-;;;;;;;;;;;;;:::i;69395:1410::-;;;;;;:::i;:::-;;:::i;68666:571::-;;;;;;:::i;:::-;;:::i;55818:98::-;;;;;;;;;;;;;:::i;72394:786::-;;;;;;;;;;-1:-1:-1;72394:786:0;;;;;:::i;:::-;;:::i;57456:274::-;;;;;;;;;;-1:-1:-1;57456:274:0;;;;;:::i;:::-;;:::i;66547:44::-;;;;;;;;;;;;;:::i;66610:18::-;;;;;;;;;;;;;:::i;66756:37::-;;;;;;;;;;;;;:::i;70893:240::-;;;;;;;;;;-1:-1:-1;70893:240:0;;;;;:::i;:::-;;:::i;58479:319::-;;;;;;;;;;-1:-1:-1;58479:319:0;;;;;:::i;:::-;;:::i;71694:441::-;;;;;;;;;;-1:-1:-1;71694:441:0;;;;;:::i;:::-;;:::i;66449:45::-;;;;;;;;;;;;;:::i;62818:43::-;;;;;;;;;;;;;:::i;66398:44::-;;;;;;;;;;;;;:::i;67922:197::-;;;;;;;;;;-1:-1:-1;67922:197:0;;;;;:::i;:::-;;:::i;57793:186::-;;;;;;;;;;-1:-1:-1;57793:186:0;;;;;:::i;:::-;;:::i;66730:19::-;;;;;;;;;;;;;:::i;2752:192::-;;;;;;;;;;-1:-1:-1;2752:192:0;;;;;:::i;:::-;;:::i;72215:144::-;;;;;;;;;;-1:-1:-1;72215:144:0;;;;;:::i;:::-;;:::i;53937:370::-;54064:4;-1:-1:-1;;;;;;54094:40:0;;-1:-1:-1;;;54094:40:0;;:99;;-1:-1:-1;;;;;;;54145:48:0;;-1:-1:-1;;;54145:48:0;54094:99;:160;;;-1:-1:-1;;;;;;;54204:50:0;;-1:-1:-1;;;54204:50:0;54094:160;:207;;;;54265:36;54289:11;54265:23;:36::i;:::-;54080:221;;53937:370;;;;:::o;55663:94::-;55717:13;55746:5;55739:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55663:94;:::o;57188:204::-;57256:7;57280:16;57288:7;57280;:16::i;:::-;57272:74;;;;-1:-1:-1;;;57272:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;57362:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;57362:24:0;;57188:204::o;56751:379::-;56820:13;56836:24;56852:7;56836:15;:24::i;:::-;56820:40;;56881:5;-1:-1:-1;;;;;56875:11:0;:2;-1:-1:-1;;;;;56875:11:0;;;56867:58;;;;-1:-1:-1;;;56867:58:0;;;;;;;:::i;:::-;56966:5;-1:-1:-1;;;;;56950:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;56950:21:0;;:62;;;;56975:37;56992:5;56999:12;:10;:12::i;56975:37::-;56934:153;;;;-1:-1:-1;;;56934:153:0;;;;;;;:::i;:::-;57096:28;57105:2;57109:7;57118:5;57096:8;:28::i;:::-;56751:379;;;:::o;51664:94::-;51717:7;51740:12;51664:94;:::o;66635:20::-;;;;;;;;;:::o;66800:51::-;;;;;;;;;;;;;:::o;58038:150::-;58154:28;58164:4;58170:2;58174:7;58154:9;:28::i;67188:137::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;67297:8:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;67297:20:0;;::::1;::::0;;;::::1;::::0;;67188:137::o;52292:744::-;52401:7;52436:16;52446:5;52436:9;:16::i;:::-;52428:5;:24;52420:71;;;;-1:-1:-1;;;52420:71:0;;;;;;;:::i;:::-;52498:22;52523:13;:11;:13::i;:::-;52498:38;;52543:19;52573:25;52623:9;52618:350;52642:14;52638:1;:18;52618:350;;;52672:31;52706:14;;;:11;:14;;;;;;;;;52672:48;;;;;;;;;-1:-1:-1;;;;;52672:48:0;;;;;-1:-1:-1;;;52672:48:0;;;-1:-1:-1;;;;;52672:48:0;;;;;;;;52733:28;52729:89;;52794:14;;;-1:-1:-1;52729:89:0;52851:5;-1:-1:-1;;;;;52830:26:0;:17;-1:-1:-1;;;;;52830:26:0;;52826:135;;;52888:5;52873:11;:20;52869:59;;;-1:-1:-1;52915:1:0;-1:-1:-1;52908:8:0;;-1:-1:-1;;;52908:8:0;52869:59;52938:13;;;;:::i;:::-;;;;52826:135;-1:-1:-1;52658:3:0;;;;:::i;:::-;;;;52618:350;;;;52974:56;;-1:-1:-1;;;52974:56:0;;;;;;;:::i;52292:744::-;;;;;:::o;68221:280::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;68316:21:::1;68356:11:::0;68348:56:::1;;;;-1:-1:-1::0;;;68348:56:0::1;;;;;;;:::i;:::-;68415:78;::::0;68431:42:::1;::::0;68415:78;::::1;;;::::0;68485:7;;68415:78:::1;::::0;;;68485:7;68431:42;68415:78;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2143:1;68221:280::o:0;67442:149::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;67556:15:::1;:27:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;67556:27:0;;::::1;::::0;;;::::1;::::0;;67442:149::o;58251:165::-;58371:39;58388:4;58394:2;58398:7;58371:39;;;;;;;;;;;;:16;:39::i;53042:831::-;53100:16;53125:18;53146:16;53156:5;53146:9;:16::i;:::-;53125:37;;53171:25;53213:10;-1:-1:-1;;;;;53199:25:0;;;;;-1:-1:-1;;;53199:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53199:25:0;-1:-1:-1;53171:53:0;-1:-1:-1;53235:15:0;53231:58;;53273:8;-1:-1:-1;53266:15:0;;-1:-1:-1;53266:15:0;53231:58;53297:22;53322:13;:11;:13::i;:::-;53297:38;;53342:19;53372:25;53422:9;53417:398;53441:14;53437:1;:18;53417:398;;;53471:31;53505:14;;;:11;:14;;;;;;;;;53471:48;;;;;;;;;-1:-1:-1;;;;;53471:48:0;;;;;-1:-1:-1;;;53471:48:0;;;-1:-1:-1;;;;;53471:48:0;;;;;;;;53532:28;53528:89;;53593:14;;;-1:-1:-1;53528:89:0;53650:5;-1:-1:-1;;;;;53629:26:0;:17;-1:-1:-1;;;;;53629:26:0;;53625:183;;;53692:1;53668:8;53677:11;53668:21;;;;;;-1:-1:-1;;;53668:21:0;;;;;;;;;;;;;;;;;;:25;53704:13;;;;:::i;:::-;;;;53747:10;53732:11;:25;53728:71;;;53779:8;53772:15;;;;;;;;;;;53728:71;-1:-1:-1;53457:3:0;;;;:::i;:::-;;;;53417:398;;;;53821:46;;-1:-1:-1;;;53821:46:0;;;;;;;:::i;71225:325::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;71351:9:::1;71347:196;71370:3;:10;71366:1;:14;71347:196;;;66536:4;71409:13;:11;:13::i;:::-;:15;::::0;71423:1:::1;71409:15;:::i;:::-;:26;;71401:95;;;;-1:-1:-1::0;;;71401:95:0::1;;;;;;;:::i;:::-;71511:20;71521:3;71525:1;71521:6;;;;;;-1:-1:-1::0;;;71521:6:0::1;;;;;;;;;;;;;;;71529:1;71511:9;:20::i;:::-;71382:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71347:196;;51827:177:::0;51894:7;51926:13;:11;:13::i;:::-;51918:5;:21;51910:69;;;;-1:-1:-1;;;51910:69:0;;;;;;;:::i;:::-;-1:-1:-1;51993:5:0;51827:177::o;67701:149::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;67816:14:::1;:26:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;67816:26:0;;::::1;::::0;;;::::1;::::0;;67701:149::o;66984:98::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;67061:6:::1;:13:::0;;-1:-1:-1;;67061:13:0::1;67070:4;67061:13;::::0;;66984:98::o;66662:27::-;;;;;;;;;:::o;55486:118::-;55550:7;55573:20;55585:7;55573:11;:20::i;:::-;:25;;55486:118;-1:-1:-1;;55486:118:0:o;54363:211::-;54427:7;-1:-1:-1;;;;;54451:19:0;;54443:75;;;;-1:-1:-1;;;54443:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;54540:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;54540:27:0;;54363:211::o;2503:94::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;2568:21:::1;2586:1;2568:9;:21::i;:::-;2503:94::o:0;1852:87::-;1925:6;;-1:-1:-1;;;;;1925:6:0;1852:87;:::o;69395:1410::-;69556:8;;;;;;;69548:39;;;;-1:-1:-1;;;69548:39:0;;;;;;;:::i;:::-;69606:15;;;;;;;69598:51;;;;-1:-1:-1;;;69598:51:0;;;;;;;:::i;:::-;69668:53;69675:6;69707:10;69668:6;:53::i;:::-;69660:81;;;;-1:-1:-1;;;69660:81:0;;;;;;;:::i;:::-;69757:14;;;;;;;69752:1046;;66490:4;69795:13;:11;:13::i;:::-;:30;69787:77;;;;-1:-1:-1;;;69787:77:0;;;;;;;:::i;:::-;69903:18;;69887:12;:34;;69879:79;;;;-1:-1:-1;;;69879:79:0;;;;;;;:::i;:::-;66490:4;69981:31;69999:12;69981:13;:11;:13::i;:::-;:17;;:31::i;:::-;:49;;69973:109;;;;-1:-1:-1;;;69973:109:0;;;;;;;:::i;:::-;70155:18;;70122:10;70105:28;;;;:16;:28;;;;;;:46;;70138:12;70105:32;:46::i;:::-;:68;;70097:113;;;;-1:-1:-1;;;70097:113:0;;;;;;;:::i;:::-;70233:8;;70263:9;;70233:26;;70246:12;70233;:26::i;:::-;:39;70225:83;;;;-1:-1:-1;;;70225:83:0;;;;;;;:::i;:::-;70340:10;70323:28;;;;:16;:28;;;;;:44;;70355:12;;70323:28;:44;;70355:12;;70323:44;:::i;:::-;;;;-1:-1:-1;70382:35:0;;-1:-1:-1;70392:10:0;70404:12;70382:9;:35::i;:::-;69752:1046;;;66536:4;70466:13;:11;:13::i;:::-;:24;;70458:64;;;;-1:-1:-1;;;70458:64:0;;;;;;;:::i;:::-;70545:12;70561:1;70545:17;70537:62;;;;-1:-1:-1;;;70537:62:0;;;;;;;:::i;:::-;70643:10;70623:31;;;;:19;:31;;;;;;;;70622:32;70614:69;;;;-1:-1:-1;;;70614:69:0;;;;;;;:::i;:::-;70718:10;70698:31;;;;:19;:31;;;;;:38;;-1:-1:-1;;70698:38:0;70732:4;70698:38;;;70751:35;;70773:12;70751:9;:35::i;68666:571::-;68778:8;;;;;;;68770:43;;;;-1:-1:-1;;;68770:43:0;;;;;;;:::i;:::-;68833:15;;;;;;;68832:16;68824:52;;;;-1:-1:-1;;;68824:52:0;;;;;;;:::i;:::-;66441:1;68895:12;:32;;68887:68;;;;-1:-1:-1;;;68887:68:0;;;;;;;:::i;:::-;66490:4;68974:31;68992:12;68974:13;:11;:13::i;:31::-;:49;;68966:109;;;;-1:-1:-1;;;68966:109:0;;;;;;;:::i;:::-;69094:8;;69124:9;;69094:26;;69107:12;69094;:26::i;:::-;:39;69086:83;;;;-1:-1:-1;;;69086:83:0;;;;;;;:::i;:::-;69194:35;69204:10;69216:12;69194:9;:35::i;:::-;68666:571;:::o;55818:98::-;55874:13;55903:7;55896:14;;;;;:::i;72394:786::-;72469:4;72509;72469;72526:531;72550:5;:12;72546:1;:16;72526:531;;;72584:20;72607:5;72613:1;72607:8;;;;;;-1:-1:-1;;;72607:8:0;;;;;;;;;;;;;;;72584:31;;72664:12;72648;:28;72644:402;;72791:52;72815:12;72829;72798:44;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;72798:44:0;;;;;;;;;;72791:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72776:67;;72644:402;;;72978:52;73002:12;73016;72985:44;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;72985:44:0;;;;;;;;;;72978:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72963:67;;72644:402;-1:-1:-1;72564:3:0;;;;:::i;:::-;;;;72526:531;;;-1:-1:-1;73168:4:0;;73152:20;;72394:786;-1:-1:-1;;;72394:786:0:o;57456:274::-;57559:12;:10;:12::i;:::-;-1:-1:-1;;;;;57547:24:0;:8;-1:-1:-1;;;;;57547:24:0;;;57539:63;;;;-1:-1:-1;;;57539:63:0;;;;;;;:::i;:::-;57656:8;57611:18;:32;57630:12;:10;:12::i;:::-;-1:-1:-1;;;;;57611:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;57611:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;57611:53:0;;;;;;;;;;;57691:12;:10;:12::i;:::-;-1:-1:-1;;;;;57676:48:0;;57715:8;57676:48;;;;;;:::i;:::-;;;;;;;;57456:274;;:::o;66547:44::-;;;;:::o;66610:18::-;;;;;;:::o;66756:37::-;;;;:::o;70893:240::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;66536:4:::1;71003:13;:11;:13::i;:::-;:15;::::0;71017:1:::1;71003:15;:::i;:::-;:26;;70995:95;;;;-1:-1:-1::0;;;70995:95:0::1;;;;;;;:::i;:::-;71101:24;71111:10;71123:1;71101:9;:24::i;58479:319::-:0;58624:28;58634:4;58640:2;58644:7;58624:9;:28::i;:::-;58675:48;58698:4;58704:2;58708:7;58717:5;58675:22;:48::i;:::-;58659:133;;;;-1:-1:-1;;;58659:133:0;;;;;;;:::i;:::-;58479:319;;;;:::o;71694:441::-;71833:13;71873:17;71881:8;71873:7;:17::i;:::-;71865:77;;;;-1:-1:-1;;;71865:77:0;;;;;;;:::i;:::-;71958:6;;;;71953:175;;72012:8;71995:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;71981:41;;;;71953:175;72086:7;72095:19;:8;:17;:19::i;:::-;72069:46;;;;;;;;;:::i;66449:45::-;66490:4;66449:45;:::o;62818:43::-;;;;:::o;66398:44::-;66441:1;66398:44;:::o;67922:197::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;68066:20;;::::1;::::0;:8:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;68097:14:0;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;57793:186::-:0;-1:-1:-1;;;;;57938:25:0;;;57915:4;57938:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57793:186::o;66730:19::-;;;;:::o;2752:192::-;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2841:22:0;::::1;2833:73;;;;-1:-1:-1::0;;;2833:73:0::1;;;;;;;:::i;:::-;2917:19;2927:8;2917:9;:19::i;72215:144::-:0;2083:12;:10;:12::i;:::-;-1:-1:-1;;;;;2072:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;2072:23:0;;2064:68;;;;-1:-1:-1;;;2064:68:0;;;;;;;:::i;:::-;72296:4:::1;:21:::0;;;;72328:18:::1;:23:::0;72215:144::o;21277:157::-;-1:-1:-1;;;;;;21386:40:0;;-1:-1:-1;;;21386:40:0;21277:157;;;:::o;59037:105::-;59094:4;59124:12;-1:-1:-1;59114:22:0;59037:105::o;665:98::-;745:10;665:98;:::o;62640:172::-;62737:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;62737:29:0;-1:-1:-1;;;;;62737:29:0;;;;;;;;;62778:28;;62737:24;;62778:28;;;;;;;62640:172;;;:::o;61005:1529::-;61102:35;61140:20;61152:7;61140:11;:20::i;:::-;61102:58;;61169:22;61211:13;:18;;;-1:-1:-1;;;;;61195:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;61195:34:0;;:81;;;;61264:12;:10;:12::i;:::-;-1:-1:-1;;;;;61240:36:0;:20;61252:7;61240:11;:20::i;:::-;-1:-1:-1;;;;;61240:36:0;;61195:81;:142;;;-1:-1:-1;61304:18:0;;61287:50;;61324:12;:10;:12::i;61287:50::-;61169:169;;61363:17;61347:101;;;;-1:-1:-1;;;61347:101:0;;;;;;;:::i;:::-;61495:4;-1:-1:-1;;;;;61473:26:0;:13;:18;;;-1:-1:-1;;;;;61473:26:0;;61457:98;;;;-1:-1:-1;;;61457:98:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61570:16:0;;61562:66;;;;-1:-1:-1;;;61562:66:0;;;;;;;:::i;:::-;61637:43;61659:4;61665:2;61669:7;61678:1;61637:21;:43::i;:::-;61737:49;61754:1;61758:7;61767:13;:18;;;61737:8;:49::i;:::-;-1:-1:-1;;;;;61795:18:0;;;;;;:12;:18;;;;;:31;;61825:1;;61795:18;:31;;61825:1;;-1:-1:-1;;;;;61795:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;61795:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;61833:16:0;;-1:-1:-1;61833:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;61833:16:0;;:29;;-1:-1:-1;;61833:29:0;;:::i;:::-;;;-1:-1:-1;;;;;61833:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61892:43:0;;;;;;;;-1:-1:-1;;;;;61892:43:0;;;;;-1:-1:-1;;;;;61918:15:0;61892:43;;;;;;;;;-1:-1:-1;61869:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;61869:66:0;-1:-1:-1;;;;61869:66:0;;;;-1:-1:-1;;;;;;61869:66:0;;;;;;;;62185:11;61881:7;-1:-1:-1;62185:11:0;:::i;:::-;62248:1;62207:24;;;:11;:24;;;;;:29;62163:33;;-1:-1:-1;;;;;;62207:29:0;62203:236;;62265:20;62273:11;62265:7;:20::i;:::-;62261:171;;;62325:97;;;;;;;;62352:18;;-1:-1:-1;;;;;62325:97:0;;;;;;62383:28;;;;-1:-1:-1;;;;;62325:97:0;;;;;;;;;-1:-1:-1;62298:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;62298:124:0;;;;;;;;;-1:-1:-1;;;;62298:124:0;-1:-1:-1;;;62298:124:0;;;;;;;;;;;;;;62261:171;62471:7;62467:2;-1:-1:-1;;;;;62452:27:0;62461:4;-1:-1:-1;;;;;62452:27:0;;;;;;;;;;;62486:42;62507:4;62513:2;62517:7;62526:1;62486:20;:42::i;:::-;61005:1529;;;;;;:::o;59148:98::-;59213:27;59223:2;59227:8;59213:27;;;;;;;;;;;;:9;:27::i;54826:606::-;54902:21;;:::i;:::-;54943:16;54951:7;54943;:16::i;:::-;54935:71;;;;-1:-1:-1;;;54935:71:0;;;;;;;:::i;:::-;55015:26;55063:12;55052:7;:23;55048:93;;55107:22;55117:12;55107:7;:22;:::i;:::-;:26;;55132:1;55107:26;:::i;:::-;55086:47;;55048:93;55169:7;55149:212;55186:18;55178:4;:26;55149:212;;55223:31;55257:17;;;:11;:17;;;;;;;;;55223:51;;;;;;;;;-1:-1:-1;;;;;55223:51:0;;;;;-1:-1:-1;;;55223:51:0;;;-1:-1:-1;;;;;55223:51:0;;;;;;;;55287:28;55283:71;;55335:9;-1:-1:-1;55328:16:0;;-1:-1:-1;;55328:16:0;55283:71;-1:-1:-1;55206:6:0;;;;:::i;:::-;;;;55149:212;;;;55369:57;;-1:-1:-1;;;55369:57:0;;;;;;;:::i;2952:173::-;3027:6;;;-1:-1:-1;;;;;3044:17:0;;;-1:-1:-1;;;;;;3044:17:0;;;;;;;3077:40;;3027:6;;;3044:17;3027:6;;3077:40;;3008:16;;3077:40;2952:173;;:::o;45649:98::-;45707:7;45734:5;45738:1;45734;:5;:::i;:::-;45727:12;45649:98;-1:-1:-1;;;45649:98:0:o;46387:::-;46445:7;46472:5;46476:1;46472;:5;:::i;64351:690::-;64488:4;64505:15;:2;-1:-1:-1;;;;;64505:13:0;;:15::i;:::-;64501:535;;;64560:2;-1:-1:-1;;;;;64544:36:0;;64581:12;:10;:12::i;:::-;64595:4;64601:7;64610:5;64544:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64544:72:0;;;;;;;;-1:-1:-1;;64544:72:0;;;;;;;;;;;;:::i;:::-;;;64531:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64775:13:0;;64771:215;;64808:61;;-1:-1:-1;;;64808:61:0;;;;;;;:::i;64771:215::-;64954:6;64948:13;64939:6;64935:2;64931:15;64924:38;64531:464;-1:-1:-1;;;;;;64666:55:0;-1:-1:-1;;;64666:55:0;;-1:-1:-1;64659:62:0;;64501:535;-1:-1:-1;65024:4:0;64501:535;64351:690;;;;;;:::o;18745:723::-;18801:13;19022:10;19018:53;;-1:-1:-1;19049:10:0;;;;;;;;;;;;-1:-1:-1;;;19049:10:0;;;;;;19018:53;19096:5;19081:12;19137:78;19144:9;;19137:78;;19170:8;;;;:::i;:::-;;-1:-1:-1;19193:10:0;;-1:-1:-1;19201:2:0;19193:10;;:::i;:::-;;;19137:78;;;19225:19;19257:6;-1:-1:-1;;;;;19247:17:0;;;;;-1:-1:-1;;;19247:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19247:17:0;;19225:39;;19275:154;19282:10;;19275:154;;19309:11;19319:1;19309:11;;:::i;:::-;;-1:-1:-1;19378:10:0;19386:2;19378:5;:10;:::i;:::-;19365:24;;:2;:24;:::i;:::-;19352:39;;19335:6;19342;19335:14;;;;;;-1:-1:-1;;;19335:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;19335:56:0;;;;;;;;-1:-1:-1;19406:11:0;19415:2;19406:11;;:::i;:::-;;;19275:154;;59501:1272;59606:20;59629:12;-1:-1:-1;;;;;59656:16:0;;59648:62;;;;-1:-1:-1;;;59648:62:0;;;;;;;:::i;:::-;59847:21;59855:12;59847:7;:21::i;:::-;59846:22;59838:64;;;;-1:-1:-1;;;59838:64:0;;;;;;;:::i;:::-;59929:12;59917:8;:24;;59909:71;;;;-1:-1:-1;;;59909:71:0;;;;;;;:::i;:::-;59989:61;60019:1;60023:2;60027:12;60041:8;59989:21;:61::i;:::-;-1:-1:-1;;;;;60092:16:0;;60059:30;60092:16;;;:12;:16;;;;;;;;;60059:49;;;;;;;;;-1:-1:-1;;;;;60059:49:0;;;;;-1:-1:-1;;;60059:49:0;;;;;;;;;;;60134:119;;;;;;;;60154:19;;60059:49;;60134:119;;;60154:39;;60184:8;;60154:39;:::i;:::-;-1:-1:-1;;;;;60134:119:0;;;;;60237:8;60202:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;60134:119:0;;;;;;-1:-1:-1;;;;;60115:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;60115:138:0;;;;-1:-1:-1;;60115:138:0;;;;;;;;;;;;;;;;;60288:43;;;;;;;;;;-1:-1:-1;;;;;60314:15:0;60288:43;;;;;;;;60260:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;60260:71:0;-1:-1:-1;;;;60260:71:0;;;;-1:-1:-1;;;;;;60260:71:0;;;;;;;;;;;;;;;60272:12;;60384:281;60408:8;60404:1;:12;60384:281;;;60437:38;;60462:12;;-1:-1:-1;;;;;60437:38:0;;;60454:1;;60437:38;;60454:1;;60437:38;60502:59;60533:1;60537:2;60541:12;60555:5;60502:22;:59::i;:::-;60484:150;;;;-1:-1:-1;;;60484:150:0;;;;;;;:::i;:::-;60643:14;;;;:::i;:::-;;;;60418:3;;;;;:::i;:::-;;;;60384:281;;;-1:-1:-1;60673:12:0;:27;;;60707:60;;60740:2;60744:12;60758:8;60707:20;:60::i;11128:387::-;11451:20;11499:8;;;11128:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;-1:-1:-1;;;;;106:6:1;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:705;;721:3;714:4;706:6;702:17;698:27;688:2;;743:5;736;729:20;688:2;783:6;770:20;809:4;833:65;848:49;894:2;848:49;:::i;:::-;833:65;:::i;:::-;932:15;;;963:12;;;;995:15;;;1041:11;;;1029:24;;1025:33;;1022:42;-1:-1:-1;1019:2:1;;;1081:5;1074;1067:20;1019:2;1107:5;1121:163;1135:2;1132:1;1129:9;1121:163;;;1192:17;;1180:30;;1230:12;;;;1262;;;;1153:1;1146:9;1121:163;;;-1:-1:-1;1302:5:1;;678:635;-1:-1:-1;;;;;;;678:635:1:o;1318:162::-;1385:20;;1441:13;;1434:21;1424:32;;1414:2;;1470:1;1467;1460:12;1485:233;;1583:3;1576:4;1568:6;1564:17;1560:27;1550:2;;1605:5;1598;1591:20;1550:2;1631:81;1708:3;1699:6;1686:20;1679:4;1671:6;1667:17;1631:81;:::i;1723:198::-;;1835:2;1823:9;1814:7;1810:23;1806:32;1803:2;;;1856:6;1848;1841:22;1803:2;1884:31;1905:9;1884:31;:::i;1926:274::-;;;2055:2;2043:9;2034:7;2030:23;2026:32;2023:2;;;2076:6;2068;2061:22;2023:2;2104:31;2125:9;2104:31;:::i;:::-;2094:41;;2154:40;2190:2;2179:9;2175:18;2154:40;:::i;:::-;2144:50;;2013:187;;;;;:::o;2205:342::-;;;;2351:2;2339:9;2330:7;2326:23;2322:32;2319:2;;;2372:6;2364;2357:22;2319:2;2400:31;2421:9;2400:31;:::i;:::-;2390:41;;2450:40;2486:2;2475:9;2471:18;2450:40;:::i;:::-;2440:50;;2537:2;2526:9;2522:18;2509:32;2499:42;;2309:238;;;;;:::o;2552:702::-;;;;;2724:3;2712:9;2703:7;2699:23;2695:33;2692:2;;;2746:6;2738;2731:22;2692:2;2774:31;2795:9;2774:31;:::i;:::-;2764:41;;2824:40;2860:2;2849:9;2845:18;2824:40;:::i;:::-;2814:50;;2911:2;2900:9;2896:18;2883:32;2873:42;;2966:2;2955:9;2951:18;2938:32;-1:-1:-1;;;;;2985:6:1;2982:30;2979:2;;;3030:6;3022;3015:22;2979:2;3058:22;;3111:4;3103:13;;3099:27;-1:-1:-1;3089:2:1;;3145:6;3137;3130:22;3089:2;3173:75;3240:7;3235:2;3222:16;3217:2;3213;3209:11;3173:75;:::i;:::-;3163:85;;;2682:572;;;;;;;:::o;3259:268::-;;;3385:2;3373:9;3364:7;3360:23;3356:32;3353:2;;;3406:6;3398;3391:22;3353:2;3434:31;3455:9;3434:31;:::i;:::-;3424:41;;3484:37;3517:2;3506:9;3502:18;3484:37;:::i;3532:266::-;;;3661:2;3649:9;3640:7;3636:23;3632:32;3629:2;;;3682:6;3674;3667:22;3629:2;3710:31;3731:9;3710:31;:::i;:::-;3700:41;3788:2;3773:18;;;;3760:32;;-1:-1:-1;;;3619:179:1:o;3803:961::-;;3918:2;3961;3949:9;3940:7;3936:23;3932:32;3929:2;;;3982:6;3974;3967:22;3929:2;4027:9;4014:23;-1:-1:-1;;;;;4052:6:1;4049:30;4046:2;;;4097:6;4089;4082:22;4046:2;4125:22;;4178:4;4170:13;;4166:27;-1:-1:-1;4156:2:1;;4212:6;4204;4197:22;4156:2;4253;4240:16;4276:65;4291:49;4337:2;4291:49;:::i;4276:65::-;4375:15;;;4406:12;;;;4438:11;;;4476;;;4468:20;;4464:29;;4461:42;-1:-1:-1;4458:2:1;;;4521:6;4513;4506:22;4458:2;4548:6;4539:15;;4563:171;4577:2;4574:1;4571:9;4563:171;;;4634:25;4655:3;4634:25;:::i;:::-;4622:38;;4595:1;4588:9;;;;;4680:12;;;;4712;;4563:171;;;-1:-1:-1;4753:5:1;3898:866;-1:-1:-1;;;;;;;3898:866:1:o;4769:442::-;;;4923:2;4911:9;4902:7;4898:23;4894:32;4891:2;;;4944:6;4936;4929:22;4891:2;4989:9;4976:23;-1:-1:-1;;;;;5014:6:1;5011:30;5008:2;;;5059:6;5051;5044:22;5008:2;5087:67;5146:7;5137:6;5126:9;5122:22;5087:67;:::i;:::-;5077:77;5201:2;5186:18;;;;5173:32;;-1:-1:-1;;;;4881:330:1:o;5216:192::-;;5325:2;5313:9;5304:7;5300:23;5296:32;5293:2;;;5346:6;5338;5331:22;5293:2;5374:28;5392:9;5374:28;:::i;5413:194::-;;5536:2;5524:9;5515:7;5511:23;5507:32;5504:2;;;5557:6;5549;5542:22;5504:2;-1:-1:-1;5585:16:1;;5494:113;-1:-1:-1;5494:113:1:o;5612:257::-;;5723:2;5711:9;5702:7;5698:23;5694:32;5691:2;;;5744:6;5736;5729:22;5691:2;5788:9;5775:23;5807:32;5833:5;5807:32;:::i;5874:261::-;;5996:2;5984:9;5975:7;5971:23;5967:32;5964:2;;;6017:6;6009;6002:22;5964:2;6054:9;6048:16;6073:32;6099:5;6073:32;:::i;6140:577::-;;;6289:2;6277:9;6268:7;6264:23;6260:32;6257:2;;;6310:6;6302;6295:22;6257:2;6355:9;6342:23;-1:-1:-1;;;;;6425:2:1;6417:6;6414:14;6411:2;;;6446:6;6438;6431:22;6411:2;6474:52;6518:7;6509:6;6498:9;6494:22;6474:52;:::i;:::-;6464:62;;6579:2;6568:9;6564:18;6551:32;6535:48;;6608:2;6598:8;6595:16;6592:2;;;6629:6;6621;6614:22;6592:2;;6657:54;6703:7;6692:8;6681:9;6677:24;6657:54;:::i;:::-;6647:64;;;6247:470;;;;;:::o;6722:190::-;;6834:2;6822:9;6813:7;6809:23;6805:32;6802:2;;;6855:6;6847;6840:22;6802:2;-1:-1:-1;6883:23:1;;6792:120;-1:-1:-1;6792:120:1:o;6917:442::-;;;7071:2;7059:9;7050:7;7046:23;7042:32;7039:2;;;7092:6;7084;7077:22;7039:2;7133:9;7120:23;7110:33;;7194:2;7183:9;7179:18;7166:32;-1:-1:-1;;;;;7213:6:1;7210:30;7207:2;;;7258:6;7250;7243:22;7207:2;7286:67;7345:7;7336:6;7325:9;7321:22;7286:67;:::i;7364:258::-;;;7493:2;7481:9;7472:7;7468:23;7464:32;7461:2;;;7514:6;7506;7499:22;7461:2;-1:-1:-1;;7542:23:1;;;7612:2;7597:18;;;7584:32;;-1:-1:-1;7451:171:1:o;7627:259::-;;7708:5;7702:12;7735:6;7730:3;7723:19;7751:63;7807:6;7800:4;7795:3;7791:14;7784:4;7777:5;7773:16;7751:63;:::i;:::-;7868:2;7847:15;-1:-1:-1;;7843:29:1;7834:39;;;;7875:4;7830:50;;7678:208;-1:-1:-1;;7678:208:1:o;7891:982::-;7978:12;;7891:982;;8050:1;8035:17;;8071:1;8107:18;;;;8134:2;;8188:4;8180:6;8176:17;8166:27;;8134:2;8214;8262;8254:6;8251:14;8231:18;8228:38;8225:2;;;-1:-1:-1;;;8289:33:1;;8345:4;8342:1;8335:15;8375:4;8296:3;8363:17;8225:2;8406:18;8433:104;;;;8551:1;8546:321;;;;8399:468;;8433:104;-1:-1:-1;;8466:24:1;;8454:37;;8511:16;;;;-1:-1:-1;8433:104:1;;8546:321;8582:38;8614:5;8582:38;:::i;:::-;8642:1;8656:165;8670:6;8667:1;8664:13;8656:165;;;8748:14;;8735:11;;;8728:35;8791:16;;;;8685:10;;8656:165;;;8660:3;;8850:6;8845:3;8841:16;8834:23;;8399:468;;;;;;;7951:922;;;;:::o;8878:247::-;9035:19;;;9079:2;9070:12;;9063:28;9116:2;9107:12;;9025:100::o;9130:274::-;;9297:6;9291:13;9313:53;9359:6;9354:3;9347:4;9339:6;9335:17;9313:53;:::i;:::-;9382:16;;;;;9267:137;-1:-1:-1;;9267:137:1:o;9409:199::-;;9562:40;9598:3;9590:6;9562:40;:::i;9613:378::-;;9817:40;9853:3;9845:6;9817:40;:::i;:::-;9886:6;9880:13;9902:52;9947:6;9943:2;9936:4;9928:6;9924:17;9902:52;:::i;:::-;9970:15;;9797:194;-1:-1:-1;;;;9797:194:1:o;9996:203::-;-1:-1:-1;;;;;10160:32:1;;;;10142:51;;10130:2;10115:18;;10097:102::o;10204:490::-;-1:-1:-1;;;;;10473:15:1;;;10455:34;;10525:15;;10520:2;10505:18;;10498:43;10572:2;10557:18;;10550:34;;;10620:3;10615:2;10600:18;;10593:31;;;10204:490;;10641:47;;10668:19;;10660:6;10641:47;:::i;:::-;10633:55;10407:287;-1:-1:-1;;;;;;10407:287:1:o;10699:635::-;10870:2;10922:21;;;10992:13;;10895:18;;;11014:22;;;10699:635;;10870:2;11093:15;;;;11067:2;11052:18;;;10699:635;11139:169;11153:6;11150:1;11147:13;11139:169;;;11214:13;;11202:26;;11283:15;;;;11248:12;;;;11175:1;11168:9;11139:169;;;-1:-1:-1;11325:3:1;;10850:484;-1:-1:-1;;;;;;10850:484:1:o;11339:187::-;11504:14;;11497:22;11479:41;;11467:2;11452:18;;11434:92::o;11531:177::-;11677:25;;;11665:2;11650:18;;11632:76::o;11713:221::-;;11862:2;11851:9;11844:21;11882:46;11924:2;11913:9;11909:18;11901:6;11882:46;:::i;11939:398::-;12141:2;12123:21;;;12180:2;12160:18;;;12153:30;12219:34;12214:2;12199:18;;12192:62;-1:-1:-1;;;12285:2:1;12270:18;;12263:32;12327:3;12312:19;;12113:224::o;12342:347::-;12544:2;12526:21;;;12583:2;12563:18;;;12556:30;12622:25;12617:2;12602:18;;12595:53;12680:2;12665:18;;12516:173::o;12694:402::-;12896:2;12878:21;;;12935:2;12915:18;;;12908:30;12974:34;12969:2;12954:18;;12947:62;-1:-1:-1;;;13040:2:1;13025:18;;13018:36;13086:3;13071:19;;12868:228::o;13101:406::-;13303:2;13285:21;;;13342:2;13322:18;;;13315:30;13381:34;13376:2;13361:18;;13354:62;-1:-1:-1;;;13447:2:1;13432:18;;13425:40;13497:3;13482:19;;13275:232::o;13512:347::-;13714:2;13696:21;;;13753:2;13733:18;;;13726:30;13792:25;13787:2;13772:18;;13765:53;13850:2;13835:18;;13686:173::o;13864:399::-;14066:2;14048:21;;;14105:2;14085:18;;;14078:30;14144:34;14139:2;14124:18;;14117:62;-1:-1:-1;;;14210:2:1;14195:18;;14188:33;14253:3;14238:19;;14038:225::o;14268:400::-;14470:2;14452:21;;;14509:2;14489:18;;;14482:30;14548:34;14543:2;14528:18;;14521:62;-1:-1:-1;;;14614:2:1;14599:18;;14592:34;14658:3;14643:19;;14442:226::o;14673:401::-;14875:2;14857:21;;;14914:2;14894:18;;;14887:30;14953:34;14948:2;14933:18;;14926:62;-1:-1:-1;;;15019:2:1;15004:18;;14997:35;15064:3;15049:19;;14847:227::o;15079:342::-;15281:2;15263:21;;;15320:2;15300:18;;;15293:30;-1:-1:-1;;;15354:2:1;15339:18;;15332:48;15412:2;15397:18;;15253:168::o;15426:355::-;15628:2;15610:21;;;15667:2;15647:18;;;15640:30;15706:33;15701:2;15686:18;;15679:61;15772:2;15757:18;;15600:181::o;15786:356::-;15988:2;15970:21;;;16007:18;;;16000:30;16066:34;16061:2;16046:18;;16039:62;16133:2;16118:18;;15960:182::o;16147:339::-;16349:2;16331:21;;;16388:2;16368:18;;;16361:30;-1:-1:-1;;;16422:2:1;16407:18;;16400:45;16477:2;16462:18;;16321:165::o;16491:421::-;16693:2;16675:21;;;16732:2;16712:18;;;16705:30;16771:34;16766:2;16751:18;;16744:62;16842:27;16837:2;16822:18;;16815:55;16902:3;16887:19;;16665:247::o;16917:420::-;17119:2;17101:21;;;17158:2;17138:18;;;17131:30;17197:34;17192:2;17177:18;;17170:62;17268:26;17263:2;17248:18;;17241:54;17327:3;17312:19;;17091:246::o;17342:407::-;17544:2;17526:21;;;17583:2;17563:18;;;17556:30;17622:34;17617:2;17602:18;;17595:62;-1:-1:-1;;;17688:2:1;17673:18;;17666:41;17739:3;17724:19;;17516:233::o;17754:346::-;17956:2;17938:21;;;17995:2;17975:18;;;17968:30;-1:-1:-1;;;18029:2:1;18014:18;;18007:52;18091:2;18076:18;;17928:172::o;18105:402::-;18307:2;18289:21;;;18346:2;18326:18;;;18319:30;18385:34;18380:2;18365:18;;18358:62;-1:-1:-1;;;18451:2:1;18436:18;;18429:36;18497:3;18482:19;;18279:228::o;18512:356::-;18714:2;18696:21;;;18733:18;;;18726:30;18792:34;18787:2;18772:18;;18765:62;18859:2;18844:18;;18686:182::o;18873:411::-;19075:2;19057:21;;;19114:2;19094:18;;;19087:30;19153:34;19148:2;19133:18;;19126:62;-1:-1:-1;;;19219:2:1;19204:18;;19197:45;19274:3;19259:19;;19047:237::o;19289:350::-;19491:2;19473:21;;;19530:2;19510:18;;;19503:30;19569:28;19564:2;19549:18;;19542:56;19630:2;19615:18;;19463:176::o;19644:414::-;19846:2;19828:21;;;19885:2;19865:18;;;19858:30;19924:34;19919:2;19904:18;;19897:62;-1:-1:-1;;;19990:2:1;19975:18;;19968:48;20048:3;20033:19;;19818:240::o;20063:411::-;20265:2;20247:21;;;20304:2;20284:18;;;20277:30;20343:34;20338:2;20323:18;;20316:62;-1:-1:-1;;;20409:2:1;20394:18;;20387:45;20464:3;20449:19;;20237:237::o;20479:398::-;20681:2;20663:21;;;20720:2;20700:18;;;20693:30;20759:34;20754:2;20739:18;;20732:62;-1:-1:-1;;;20825:2:1;20810:18;;20803:32;20867:3;20852:19;;20653:224::o;20882:415::-;21084:2;21066:21;;;21123:2;21103:18;;;21096:30;21162:34;21157:2;21142:18;;21135:62;-1:-1:-1;;;21228:2:1;21213:18;;21206:49;21287:3;21272:19;;21056:241::o;21302:353::-;21504:2;21486:21;;;21543:2;21523:18;;;21516:30;21582:31;21577:2;21562:18;;21555:59;21646:2;21631:18;;21476:179::o;21660:356::-;21862:2;21844:21;;;21881:18;;;21874:30;21940:34;21935:2;21920:18;;21913:62;22007:2;21992:18;;21834:182::o;22021:397::-;22223:2;22205:21;;;22262:2;22242:18;;;22235:30;22301:34;22296:2;22281:18;;22274:62;-1:-1:-1;;;22367:2:1;22352:18;;22345:31;22408:3;22393:19;;22195:223::o;22423:410::-;22625:2;22607:21;;;22664:2;22644:18;;;22637:30;22703:34;22698:2;22683:18;;22676:62;-1:-1:-1;;;22769:2:1;22754:18;;22747:44;22823:3;22808:19;;22597:236::o;22838:347::-;23040:2;23022:21;;;23079:2;23059:18;;;23052:30;23118:25;23113:2;23098:18;;23091:53;23176:2;23161:18;;23012:173::o;23190:398::-;23392:2;23374:21;;;23431:2;23411:18;;;23404:30;23470:34;23465:2;23450:18;;23443:62;-1:-1:-1;;;23536:2:1;23521:18;;23514:32;23578:3;23563:19;;23364:224::o;23593:411::-;23795:2;23777:21;;;23834:2;23814:18;;;23807:30;23873:34;23868:2;23853:18;;23846:62;-1:-1:-1;;;23939:2:1;23924:18;;23917:45;23994:3;23979:19;;23767:237::o;24009:351::-;24211:2;24193:21;;;24250:2;24230:18;;;24223:30;24289:29;24284:2;24269:18;;24262:57;24351:2;24336:18;;24183:177::o;24365:409::-;24567:2;24549:21;;;24606:2;24586:18;;;24579:30;24645:34;24640:2;24625:18;;24618:62;-1:-1:-1;;;24711:2:1;24696:18;;24689:43;24764:3;24749:19;;24539:235::o;24779:398::-;24981:2;24963:21;;;25020:2;25000:18;;;24993:30;25059:34;25054:2;25039:18;;25032:62;-1:-1:-1;;;25125:2:1;25110:18;;25103:32;25167:3;25152:19;;24953:224::o;25182:348::-;25384:2;25366:21;;;25423:2;25403:18;;;25396:30;25462:26;25457:2;25442:18;;25435:54;25521:2;25506:18;;25356:174::o;25535:356::-;25737:2;25719:21;;;25756:18;;;25749:30;25815:34;25810:2;25795:18;;25788:62;25882:2;25867:18;;25709:182::o;26078:251::-;26148:2;26142:9;26178:17;;;-1:-1:-1;;;;;26210:34:1;;26246:22;;;26207:62;26204:2;;;26272:18;;:::i;:::-;26308:2;26301:22;26122:207;;-1:-1:-1;26122:207:1:o;26334:192::-;;-1:-1:-1;;;;;26425:6:1;26422:30;26419:2;;;26455:18;;:::i;:::-;-1:-1:-1;26515:4:1;26496:17;;;26492:28;;26409:117::o;26531:129::-;;26599:17;;;26649:4;26633:21;;;26589:71::o;26665:253::-;;-1:-1:-1;;;;;26794:2:1;26791:1;26787:10;26824:2;26821:1;26817:10;26855:3;26851:2;26847:12;26842:3;26839:21;26836:2;;;26863:18;;:::i;26923:128::-;;26994:1;26990:6;26987:1;26984:13;26981:2;;;27000:18;;:::i;:::-;-1:-1:-1;27036:9:1;;26971:80::o;27056:120::-;;27122:1;27112:2;;27127:18;;:::i;:::-;-1:-1:-1;27161:9:1;;27102:74::o;27181:168::-;;27287:1;27283;27279:6;27275:14;27272:1;27269:21;27264:1;27257:9;27250:17;27246:45;27243:2;;;27294:18;;:::i;:::-;-1:-1:-1;27334:9:1;;27233:116::o;27354:246::-;;-1:-1:-1;;;;;27507:10:1;;;;27477;;27529:12;;;27526:2;;;27544:18;;:::i;:::-;27581:13;;27403:197;-1:-1:-1;;;27403:197:1:o;27605:125::-;;27673:1;27670;27667:8;27664:2;;;27678:18;;:::i;:::-;-1:-1:-1;27715:9:1;;27654:76::o;27735:258::-;27807:1;27817:113;27831:6;27828:1;27825:13;27817:113;;;27907:11;;;27901:18;27888:11;;;27881:39;27853:2;27846:10;27817:113;;;27948:6;27945:1;27942:13;27939:2;;;-1:-1:-1;;27983:1:1;27965:16;;27958:27;27788:205::o;27998:136::-;;28065:5;28055:2;;28074:18;;:::i;:::-;-1:-1:-1;;;28110:18:1;;28045:89::o;28139:380::-;28224:1;28214:12;;28271:1;28261:12;;;28282:2;;28336:4;28328:6;28324:17;28314:27;;28282:2;28389;28381:6;28378:14;28358:18;28355:38;28352:2;;;28435:10;28430:3;28426:20;28423:1;28416:31;28470:4;28467:1;28460:15;28498:4;28495:1;28488:15;28352:2;;28194:325;;;:::o;28524:135::-;;-1:-1:-1;;28584:17:1;;28581:2;;;28604:18;;:::i;:::-;-1:-1:-1;28651:1:1;28640:13;;28571:88::o;28664:112::-;;28722:1;28712:2;;28727:18;;:::i;:::-;-1:-1:-1;28761:9:1;;28702:74::o;28781:127::-;28842:10;28837:3;28833:20;28830:1;28823:31;28873:4;28870:1;28863:15;28897:4;28894:1;28887:15;28913:127;28974:10;28969:3;28965:20;28962:1;28955:31;29005:4;29002:1;28995:15;29029:4;29026:1;29019:15;29045:127;29106:10;29101:3;29097:20;29094:1;29087:31;29137:4;29134:1;29127:15;29161:4;29158:1;29151:15;29177:133;-1:-1:-1;;;;;;29253:32:1;;29243:43;;29233:2;;29300:1;29297;29290:12

Swarm Source

ipfs://3b530889fe5db784a9f4b7c6758c1970a4ceee58c67d24a40c9f0de7fd0ec4af

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

The Lucky Lion Club is a collection of 3,845 unique 8K NFTs crafted by world-renowned artist Joel Best. By owning a Lucky Lion, you will have access to a private and exclusive community of high-net-worth individuals spread across the world.

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.