ETH Price: $3,467.91 (+5.89%)
Gas: 6 Gwei

Token

Lunatics Flies NFTs (LFN)
 

Overview

Max Total Supply

1,898 LFN

Holders

660

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0x13b.eth
Balance
2 LFN
0x73beaa2dd24ada65df6da284729558afdd8105ba
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LunaticsFlies

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 12 of 14: LunaticsFlies.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "./Ownable.sol";
import "./ERC2981.sol";
import "./Address.sol";
import "./Strings.sol";
import "./ERC721AQueryable.sol";

enum MintStatus {
    NotStarted,
    WhiteList,
    Publicsale
}

contract LunaticsFlies is ERC2981, ERC721AQueryable, Ownable {
    using Address for address payable;
    using Strings for uint256;

    uint256 public _price;
    uint32 public immutable _maxSupply;
    uint32 public immutable _teamSupply;
    uint32 public  _instantFreeSupply;
    uint32 public immutable _instantFreeWalletLimit;
    uint32 public immutable _walletLimit;
    uint32 public _teamMinted;
    uint32 public _instantFreeMinted;
    uint32 public _maxMintAmount;
    MintStatus public _mintStatus = MintStatus.NotStarted;
    mapping(address => bool) private _whiteList;
    string public _metadataURI;

    struct Status {
        // config
        uint256 price;     
        uint32 maxSupply;  
        uint32 publicSupply; 
        uint32 instantFreeSupply;
        uint32 instantFreeWalletLimit; 
        uint32 walletLimit; 

        // state
        uint32 publicMinted;    
        uint32 instantFreeMintLeft; 
        uint32 userMinted; 
        bool soldout;
        uint32 totalSupply; 
        bool isWhitelisted;
        MintStatus mintStatus; 
    }

    constructor(
        uint256 price,
        uint32 maxSupply,
        uint32 teamSupply,
        uint32 instantFreeWalletLimit,
        uint32 maxMintAmount,
        uint32 walletLimit,
        string memory metadataURI
    ) ERC721A("Lunatics Flies NFTs", "LFN") {
        _price = price;
        _maxSupply = maxSupply;
        _teamSupply = teamSupply;
        _instantFreeWalletLimit = instantFreeWalletLimit;
        _walletLimit = walletLimit;
        _maxMintAmount = maxMintAmount;
        _metadataURI = metadataURI;
        setFeeNumerator(700);
    }

    function _mint(uint32 amount) external payable {
        require(_mintStatus == MintStatus.Publicsale, "LFN  : Public sale is not started yet");
        require(amount <= _maxMintAmount, "LFN : Mint Number too large");
        uint32 publicMinted = _publicMinted();
        uint32 publicSupply = _publicSupply();
        require(amount + publicMinted <= publicSupply, "LFN : Exceed max supply");
        uint32 minted = uint32(_numberMinted(msg.sender));
        require(amount + minted <= _walletLimit, "LFN : Exceed wallet limit");
        require(msg.value >= amount * _price, "LFN: Insufficient fund");
        _safeMint(msg.sender, amount);
    }

    function _mintWhiteListed() external payable {
        require(_mintStatus == MintStatus.WhiteList, "LFN: WhiteList sale is not started yet");
        require(_whiteList[msg.sender],"LFN: No whitelist eligibility");
        uint32 instantFreeWalletLimit = _instantFreeWalletLimit;
        uint32 minted = uint32(_numberMinted(msg.sender));
        require(_instantFreeMinted + instantFreeWalletLimit <= _instantFreeSupply,"LFN: Exceed WhiteList max supply");
        require(minted < instantFreeWalletLimit, "LFN: Lucky Baby You don't stand a chance");
        uint32 amount = minted == 0 ? (instantFreeWalletLimit) : (instantFreeWalletLimit - minted);
        _instantFreeMinted += instantFreeWalletLimit;
        _safeMint(msg.sender, amount);
    }
    
    function _publicMinted() public view returns (uint32) {
        return uint32(_totalMinted()) - _teamMinted - _instantFreeMinted;
    }

    function _publicSupply() public view returns (uint32) {
        return _maxSupply - _teamSupply - _instantFreeSupply;
    }

    function _status(address minter) external view returns (Status memory) {

        uint32 publicSupply = _maxSupply - _teamSupply - _instantFreeSupply;
        uint32 publicMinted = uint32(ERC721A._totalMinted()) - _teamMinted -_instantFreeMinted;

        return Status({
            // config
            price: _price, 
            maxSupply: _maxSupply,
            publicSupply:publicSupply, 
            instantFreeSupply: _instantFreeSupply, 
            instantFreeWalletLimit: _instantFreeWalletLimit, 
            walletLimit: _walletLimit, 

            // state
            publicMinted: publicMinted, 
            instantFreeMintLeft: _instantFreeSupply - _instantFreeMinted, 
            userMinted: uint32(_numberMinted(minter)), 
            soldout:  publicMinted >= publicSupply, 
            totalSupply: uint32(totalSupply()), 
            isWhitelisted: _whiteList[minter] ? (true) : (false),
            mintStatus: _mintStatus 
        });
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _metadataURI;
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC2981, ERC721A) returns (bool) {
        return
            interfaceId == type(IERC2981).interfaceId ||
            interfaceId == type(IERC721).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function devMint(address to, uint32 amount) external onlyOwner {
        require(amount + _teamMinted <= _teamSupply, "LFN: Exceed max supply");
        _teamMinted += amount;
        _safeMint(to, amount);
    }

    function setFeeNumerator(uint96 feeNumerator) public onlyOwner {
        _setDefaultRoyalty(owner(), feeNumerator);
    }

    function setMetadataURI(string memory uri) external onlyOwner {
        _metadataURI = uri;
    }
    
    function setMaxMintAmount(uint32 amount) external onlyOwner {
        _maxMintAmount = amount;
    }

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

    function setMintStatus(MintStatus status) external onlyOwner {
        _mintStatus = status;
        if(_mintStatus == MintStatus.Publicsale) {
            _setLuckyBabyQuantity();
        }
    }

    function _setLuckyBabyQuantity() internal {
        _instantFreeSupply = _instantFreeMinted < _instantFreeSupply ? (_instantFreeMinted) : (_instantFreeSupply);
    }

    function addLuckyBaby(address[] memory _address) public onlyOwner {
       require(_address.length > 0,"LFN: Invalid address");
       for (uint256 i = 0; i < _address.length; i++) {
           address currentAddress = _address[i];
           _whiteList[currentAddress] = true;
           _instantFreeSupply += _instantFreeWalletLimit;
       }
    }

    function removeUnfortunatMan(address[] memory _address) public onlyOwner {
        require(_address.length > 0,"LFN : Invalid address");
        for (uint256 i = 0; i < _address.length; i++) {
           address currentAddress = _address[i];
           _whiteList[currentAddress] = false;
           _instantFreeSupply -= _instantFreeWalletLimit;
       }
    }

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

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 2 of 14: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 3 of 14: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 14: ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC2981.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 5 of 14: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721.sol';
import './IERC721Receiver.sol';
import './IERC721Metadata.sol';
import './Address.sol';
import './Context.sol';
import './Strings.sol';
import './ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _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;

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev 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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _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);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = 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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

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

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

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

File 6 of 14: ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './ERC721A.sol';

error InvalidQueryRange();

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

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

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

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

File 7 of 14: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @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 8 of 14: IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 9 of 14: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

    /**
     * @dev 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 allowed 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 10 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 11 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @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 13 of 14: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

File 14 of 14: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint32","name":"maxSupply","type":"uint32"},{"internalType":"uint32","name":"teamSupply","type":"uint32"},{"internalType":"uint32","name":"instantFreeWalletLimit","type":"uint32"},{"internalType":"uint32","name":"maxMintAmount","type":"uint32"},{"internalType":"uint32","name":"walletLimit","type":"uint32"},{"internalType":"string","name":"metadataURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"_instantFreeMinted","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_instantFreeSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_instantFreeWalletLimit","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintAmount","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_metadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"_mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"_mintStatus","outputs":[{"internalType":"enum MintStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintWhiteListed","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_publicMinted","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_publicSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"_status","outputs":[{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint32","name":"maxSupply","type":"uint32"},{"internalType":"uint32","name":"publicSupply","type":"uint32"},{"internalType":"uint32","name":"instantFreeSupply","type":"uint32"},{"internalType":"uint32","name":"instantFreeWalletLimit","type":"uint32"},{"internalType":"uint32","name":"walletLimit","type":"uint32"},{"internalType":"uint32","name":"publicMinted","type":"uint32"},{"internalType":"uint32","name":"instantFreeMintLeft","type":"uint32"},{"internalType":"uint32","name":"userMinted","type":"uint32"},{"internalType":"bool","name":"soldout","type":"bool"},{"internalType":"uint32","name":"totalSupply","type":"uint32"},{"internalType":"bool","name":"isWhitelisted","type":"bool"},{"internalType":"enum MintStatus","name":"mintStatus","type":"uint8"}],"internalType":"struct LunaticsFlies.Status","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_teamMinted","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_teamSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_walletLimit","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"addLuckyBaby","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"removeUnfortunatMan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setFeeNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum MintStatus","name":"status","type":"uint8"}],"name":"setMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052600c805460ff60801b191690553480156200001f57600080fd5b5060405162003bfb38038062003bfb8339810160408190526200004291620003ef565b604080518082018252601381527f4c756e617469637320466c696573204e4654730000000000000000000000000060208083019182528351808501909452600384526226232760e91b908401528151919291620000a29160049162000319565b508051620000b890600590602084019062000319565b5050600060025550620000cb3362000145565b600b87905563ffffffff80871660805285811660a05284811660c05282811660e052600c80549185166c010000000000000000000000000263ffffffff60601b1990921691909117905580516200012a90600e90602084019062000319565b50620001386102bc62000197565b5050505050505062000572565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001f75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b620002156200020e600a546001600160a01b031690565b8262000218565b50565b6127106001600160601b0382161115620002885760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401620001ee565b6001600160a01b038216620002e05760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001ee565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b828054620003279062000535565b90600052602060002090601f0160209004810192826200034b576000855562000396565b82601f106200036657805160ff191683800117855562000396565b8280016001018555821562000396579182015b828111156200039657825182559160200191906001019062000379565b50620003a4929150620003a8565b5090565b5b80821115620003a45760008155600101620003a9565b805163ffffffff81168114620003d457600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b600080600080600080600060e0888a0312156200040b57600080fd5b8751965060206200041e818a01620003bf565b96506200042e60408a01620003bf565b95506200043e60608a01620003bf565b94506200044e60808a01620003bf565b93506200045e60a08a01620003bf565b60c08a01519093506001600160401b03808211156200047c57600080fd5b818b0191508b601f8301126200049157600080fd5b815181811115620004a657620004a6620003d9565b604051601f8201601f19908116603f01168101908382118183101715620004d157620004d1620003d9565b816040528281528e86848701011115620004ea57600080fd5b600093505b828410156200050e5784840186015181850187015292850192620004ef565b82841115620005205760008684830101525b80965050505050505092959891949750929550565b600181811c908216806200054a57607f821691505b602082108114156200056c57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516135fb620006006000396000818161039901528181610e6701526116a001526000818161087c015281816116780152818161190a01528181611bd90152611f830152600081816102d401528181610ae5015281816115950152611de6015260008181610434015281816115b6015281816116390152611e0701526135fb6000f3fe6080604052600436106102885760003560e01c8063715018a61161015a578063b88d4fde116100c1578063d4a676231161007a578063d4a6762314610830578063dd48f07d14610845578063df6bb5af1461086a578063e04b84971461089e578063e985e9c5146108be578063f2fde38b146108de57600080fd5b8063b88d4fde14610760578063baa3464214610780578063c23dc68f146107a0578063c597fbf6146107cd578063c87b56dd146107fb578063ccd5f6a21461081b57600080fd5b806395d89b411161011357806395d89b41146106c157806399a2557a146106d65780639a7cfa4f146106f6578063a22cb46514610723578063a47d547e14610743578063aa0739071461074b57600080fd5b8063715018a614610601578063750521f514610616578063814c8c55146106365780638462151c146106565780638da5cb5b1461068357806391b7f5ed146106a157600080fd5b80632372bb83116101fe57806342842e0e116101b757806342842e0e146105305780635bbb2177146105505780636352211e1461057d578063653a819e1461059d578063693f3b1a146105bd57806370a08231146105e157600080fd5b80632372bb831461046c57806323b872dd146104895780632a55205a146104a9578063388947bb146104e85780633ccfd60b146105085780634167fb7a1461051d57600080fd5b80630e2351e2116102505780630e2351e21461038757806317a5aced146103bb57806318160ddd146103db5780631a3c4b73146103fe57806322f4596f14610422578063235b6ea11461045657600080fd5b806301ffc9a71461028d5780630517431e146102c257806306fdde031461030b578063081812fc1461032d578063095ea7b314610365575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612c2b565b6108fe565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102f67f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff90911681526020016102b9565b34801561031757600080fd5b50610320610944565b6040516102b99190612ca0565b34801561033957600080fd5b5061034d610348366004612cb3565b6109d6565b6040516001600160a01b0390911681526020016102b9565b34801561037157600080fd5b50610385610380366004612ce8565b610a1a565b005b34801561039357600080fd5b506102f67f000000000000000000000000000000000000000000000000000000000000000081565b3480156103c757600080fd5b506103856103d6366004612d26565b610aa8565b3480156103e757600080fd5b50600354600254035b6040519081526020016102b9565b34801561040a57600080fd5b50600c546102f690600160401b900463ffffffff1681565b34801561042e57600080fd5b506102f67f000000000000000000000000000000000000000000000000000000000000000081565b34801561046257600080fd5b506103f0600b5481565b34801561047857600080fd5b50600c546102f69063ffffffff1681565b34801561049557600080fd5b506103856104a4366004612d59565b610bbb565b3480156104b557600080fd5b506104c96104c4366004612d95565b610bc6565b604080516001600160a01b0390931683526020830191909152016102b9565b3480156104f457600080fd5b50610385610503366004612db7565b610c72565b34801561051457600080fd5b50610385610cc2565b61038561052b366004612db7565b610cf8565b34801561053c57600080fd5b5061038561054b366004612d59565b610f56565b34801561055c57600080fd5b5061057061056b366004612e3b565b610f71565b6040516102b99190612ed0565b34801561058957600080fd5b5061034d610598366004612cb3565b611037565b3480156105a957600080fd5b506103856105b8366004612f3a565b611049565b3480156105c957600080fd5b50600c546102f690600160601b900463ffffffff1681565b3480156105ed57600080fd5b506103f06105fc366004612f63565b611091565b34801561060d57600080fd5b506103856110df565b34801561062257600080fd5b50610385610631366004612fd5565b611113565b34801561064257600080fd5b5061038561065136600461301d565b611150565b34801561066257600080fd5b50610676610671366004612f63565b6111d2565b6040516102b9919061303e565b34801561068f57600080fd5b50600a546001600160a01b031661034d565b3480156106ad57600080fd5b506103856106bc366004612cb3565b61131f565b3480156106cd57600080fd5b5061032061134e565b3480156106e257600080fd5b506106766106f1366004613076565b61135d565b34801561070257600080fd5b50610716610711366004612f63565b611517565b6040516102b991906130e1565b34801561072f57600080fd5b5061038561073e3660046131ec565b611797565b61038561182d565b34801561075757600080fd5b506102f6611a86565b34801561076c57600080fd5b5061038561077b366004613228565b611ac6565b34801561078c57600080fd5b5061038561079b3660046132a3565b611b11565b3480156107ac57600080fd5b506107c06107bb366004612cb3565b611c3e565b6040516102b9919061332f565b3480156107d957600080fd5b50600c546107ee90600160801b900460ff1681565b6040516102b99190613364565b34801561080757600080fd5b50610320610816366004612cb3565b611cec565b34801561082757600080fd5b506102f6611dd5565b34801561083c57600080fd5b50610320611e2b565b34801561085157600080fd5b50600c546102f690640100000000900463ffffffff1681565b34801561087657600080fd5b506102f67f000000000000000000000000000000000000000000000000000000000000000081565b3480156108aa57600080fd5b506103856108b93660046132a3565b611eb9565b3480156108ca57600080fd5b506102ad6108d9366004613372565b611fe8565b3480156108ea57600080fd5b506103856108f9366004612f63565b612016565b60006001600160e01b0319821663152a902d60e11b148061092f57506001600160e01b031982166380ac58cd60e01b145b8061093e575061093e826120ae565b92915050565b6060600480546109539061339c565b80601f016020809104026020016040519081016040528092919081815260200182805461097f9061339c565b80156109cc5780601f106109a1576101008083540402835291602001916109cc565b820191906000526020600020905b8154815290600101906020018083116109af57829003601f168201915b5050505050905090565b60006109e1826120ee565b6109fe576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000610a2582611037565b9050806001600160a01b0316836001600160a01b03161415610a5a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a7a5750610a788133611fe8565b155b15610a98576040516367d9dca160e11b815260040160405180910390fd5b610aa383838361211a565b505050565b600a546001600160a01b03163314610adb5760405162461bcd60e51b8152600401610ad2906133d7565b60405180910390fd5b600c5463ffffffff7f0000000000000000000000000000000000000000000000000000000000000000811691610b1b916401000000009091041683613422565b63ffffffff161115610b685760405162461bcd60e51b81526020600482015260166024820152754c464e3a20457863656564206d617820737570706c7960501b6044820152606401610ad2565b80600c60048282829054906101000a900463ffffffff16610b899190613422565b92506101000a81548163ffffffff021916908363ffffffff160217905550610bb7828263ffffffff16612176565b5050565b610aa3838383612190565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c3b5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610c5a906001600160601b03168761344a565b610c64919061347f565b915196919550909350505050565b600a546001600160a01b03163314610c9c5760405162461bcd60e51b8152600401610ad2906133d7565b600c805463ffffffff909216600160601b0263ffffffff60601b19909216919091179055565b600a546001600160a01b03163314610cec5760405162461bcd60e51b8152600401610ad2906133d7565b610cf6334761237e565b565b6002600c54600160801b900460ff166002811115610d1857610d186130a9565b14610d735760405162461bcd60e51b815260206004820152602560248201527f4c464e20203a205075626c69632073616c65206973206e6f742073746172746560448201526419081e595d60da1b6064820152608401610ad2565b600c5463ffffffff600160601b90910481169082161115610dd65760405162461bcd60e51b815260206004820152601b60248201527f4c464e203a204d696e74204e756d62657220746f6f206c6172676500000000006044820152606401610ad2565b6000610de0611a86565b90506000610dec611dd5565b905063ffffffff8116610dff8385613422565b63ffffffff161115610e535760405162461bcd60e51b815260206004820152601760248201527f4c464e203a20457863656564206d617820737570706c790000000000000000006044820152606401610ad2565b6000610e5e33612497565b905063ffffffff7f000000000000000000000000000000000000000000000000000000000000000016610e918286613422565b63ffffffff161115610ee55760405162461bcd60e51b815260206004820152601960248201527f4c464e203a204578636565642077616c6c6574206c696d6974000000000000006044820152606401610ad2565b600b54610ef89063ffffffff861661344a565b341015610f405760405162461bcd60e51b81526020600482015260166024820152751311938e88125b9cdd59999a58da595b9d08199d5b9960521b6044820152606401610ad2565b610f50338563ffffffff16612176565b50505050565b610aa383838360405180602001604052806000815250611ac6565b80516060906000816001600160401b03811115610f9057610f90612dd2565b604051908082528060200260200182016040528015610fdb57816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610fae5790505b50905060005b82811461102f5761100a858281518110610ffd57610ffd613493565b6020026020010151611c3e565b82828151811061101c5761101c613493565b6020908102919091010152600101610fe1565b509392505050565b6000611042826124c2565b5192915050565b600a546001600160a01b031633146110735760405162461bcd60e51b8152600401610ad2906133d7565b61108e611088600a546001600160a01b031690565b826125dc565b50565b60006001600160a01b0382166110ba576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b600a546001600160a01b031633146111095760405162461bcd60e51b8152600401610ad2906133d7565b610cf660006126d9565b600a546001600160a01b0316331461113d5760405162461bcd60e51b8152600401610ad2906133d7565b8051610bb790600e906020840190612b7c565b600a546001600160a01b0316331461117a5760405162461bcd60e51b8152600401610ad2906133d7565b600c805482919060ff60801b1916600160801b83600281111561119f5761119f6130a9565b02179055506002600c54600160801b900460ff1660028111156111c4576111c46130a9565b141561108e5761108e61272b565b606060008060006111e285611091565b90506000816001600160401b038111156111fe576111fe612dd2565b604051908082528060200260200182016040528015611227578160200160208202803683370190505b50905061124d604080516060810182526000808252602082018190529181019190915290565b60005b83861461131357600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925292506112b65761130b565b81516001600160a01b0316156112cb57815194505b876001600160a01b0316856001600160a01b0316141561130b57808387806001019850815181106112fe576112fe613493565b6020026020010181815250505b600101611250565b50909695505050505050565b600a546001600160a01b031633146113495760405162461bcd60e51b8152600401610ad2906133d7565b600b55565b6060600580546109539061339c565b606081831061137f57604051631960ccad60e11b815260040160405180910390fd5b60025460009080841115611391578093505b600061139c87611091565b9050848610156113bb57858503818110156113b5578091505b506113bf565b5060005b6000816001600160401b038111156113d9576113d9612dd2565b604051908082528060200260200182016040528015611402578160200160208202803683370190505b5090508161141557935061151092505050565b600061142088611c3e565b905060008160400151611431575080515b885b8881141580156114435750848714155b1561150457600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925293506114a7576114fc565b82516001600160a01b0316156114bc57825191505b8a6001600160a01b0316826001600160a01b031614156114fc57808488806001019950815181106114ef576114ef613493565b6020026020010181815250505b600101611433565b50505092835250909150505b9392505050565b611584604080516101a081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810182905261010081018290526101208101829052610140810182905261016081018290529061018082015290565b600c5460009063ffffffff166115da7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006134a9565b6115e491906134a9565b600c5490915060009063ffffffff600160401b820481169164010000000090041661160e60025490565b61161891906134a9565b61162291906134a9565b604080516101a081018252600b54815263ffffffff7f00000000000000000000000000000000000000000000000000000000000000008116602083015285811692820192909252600c54808316606083018190527f0000000000000000000000000000000000000000000000000000000000000000841660808401527f0000000000000000000000000000000000000000000000000000000000000000841660a084015283851660c0840152939450909260e08401926116ea92600160401b900416906134a9565b63ffffffff1681526020016116fe86612497565b63ffffffff1681526020018363ffffffff168363ffffffff1610151515815260200161172d6003546002540390565b63ffffffff1681526001600160a01b0386166000908152600d602090815260409091205491019060ff16611762576000611765565b60015b15158152602001600c60109054906101000a900460ff16600281111561178d5761178d6130a9565b9052949350505050565b6001600160a01b0382163314156117c15760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001600c54600160801b900460ff16600281111561184d5761184d6130a9565b146118a95760405162461bcd60e51b815260206004820152602660248201527f4c464e3a2057686974654c6973742073616c65206973206e6f742073746172746044820152651959081e595d60d21b6064820152608401610ad2565b336000908152600d602052604090205460ff166119085760405162461bcd60e51b815260206004820152601d60248201527f4c464e3a204e6f2077686974656c69737420656c69676962696c6974790000006044820152606401610ad2565b7f0000000000000000000000000000000000000000000000000000000000000000600061193433612497565b600c5490915063ffffffff80821691611956918591600160401b900416613422565b63ffffffff1611156119aa5760405162461bcd60e51b815260206004820181905260248201527f4c464e3a204578636565642057686974654c697374206d617820737570706c796044820152606401610ad2565b8163ffffffff168163ffffffff1610611a165760405162461bcd60e51b815260206004820152602860248201527f4c464e3a204c75636b79204261627920596f7520646f6e2774207374616e642060448201526761206368616e636560c01b6064820152608401610ad2565b600063ffffffff821615611a3357611a2e82846134a9565b611a35565b825b905082600c60088282829054906101000a900463ffffffff16611a589190613422565b92506101000a81548163ffffffff021916908363ffffffff160217905550610aa3338263ffffffff16612176565b600c5460009063ffffffff600160401b8204811691640100000000900416611aad60025490565b611ab791906134a9565b611ac191906134a9565b905090565b611ad1848484612190565b6001600160a01b0383163b15158015611af35750611af18484848461277f565b155b15610f50576040516368d2bf6b60e11b815260040160405180910390fd5b600a546001600160a01b03163314611b3b5760405162461bcd60e51b8152600401610ad2906133d7565b6000815111611b845760405162461bcd60e51b81526020600482015260156024820152744c464e203a20496e76616c6964206164647265737360581b6044820152606401610ad2565b60005b8151811015610bb7576000828281518110611ba457611ba4613493565b6020908102919091018101516001600160a01b0381166000908152600d90925260408220805460ff19169055600c80549193507f0000000000000000000000000000000000000000000000000000000000000000929091611c0c90849063ffffffff166134a9565b92506101000a81548163ffffffff021916908363ffffffff160217905550508080611c36906134ce565b915050611b87565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281018390529091506002548310611c835792915050565b50600082815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290611ce35792915050565b611510836124c2565b6060611cf7826120ee565b611d1457604051630a14c4b560e41b815260040160405180910390fd5b6000600e8054611d239061339c565b80601f0160208091040260200160405190810160405280929190818152602001828054611d4f9061339c565b8015611d9c5780601f10611d7157610100808354040283529160200191611d9c565b820191906000526020600020905b815481529060010190602001808311611d7f57829003601f168201915b5050505050905080611dad84612877565b604051602001611dbe9291906134e9565b604051602081830303815290604052915050919050565b600c5460009063ffffffff16611ab77f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006134a9565b600e8054611e389061339c565b80601f0160208091040260200160405190810160405280929190818152602001828054611e649061339c565b8015611eb15780601f10611e8657610100808354040283529160200191611eb1565b820191906000526020600020905b815481529060010190602001808311611e9457829003601f168201915b505050505081565b600a546001600160a01b03163314611ee35760405162461bcd60e51b8152600401610ad2906133d7565b6000815111611f2b5760405162461bcd60e51b81526020600482015260146024820152734c464e3a20496e76616c6964206164647265737360601b6044820152606401610ad2565b60005b8151811015610bb7576000828281518110611f4b57611f4b613493565b6020908102919091018101516001600160a01b0381166000908152600d90925260408220805460ff19166001179055600c80549193507f0000000000000000000000000000000000000000000000000000000000000000929091611fb690849063ffffffff16613422565b92506101000a81548163ffffffff021916908363ffffffff160217905550508080611fe0906134ce565b915050611f2e565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b031633146120405760405162461bcd60e51b8152600401610ad2906133d7565b6001600160a01b0381166120a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ad2565b61108e816126d9565b60006001600160e01b031982166380ac58cd60e01b14806120df57506001600160e01b03198216635b5e139f60e01b145b8061093e575061093e82612974565b60006002548210801561093e575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610bb78282604051806020016040528060008152506129a9565b600061219b826124c2565b9050836001600160a01b031681600001516001600160a01b0316146121d25760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806121f057506121f08533611fe8565b8061220b575033612200846109d6565b6001600160a01b0316145b90508061222b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661225257604051633a954ecd60e21b815260040160405180910390fd5b61225e6000848761211a565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661233257600254821461233257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156123ce5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610ad2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461241b576040519150601f19603f3d011682016040523d82523d6000602084013e612420565b606091505b5050905080610aa35760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610ad2565b6001600160a01b0316600090815260076020526040902054600160401b90046001600160401b031690565b6040805160608101825260008082526020820181905291810191909152816002548110156125c357600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906125c15780516001600160a01b031615612558579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156125bc579392505050565b612558565b505b604051636f96cda160e11b815260040160405180910390fd5b6127106001600160601b038216111561264a5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610ad2565b6001600160a01b0382166126a05760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610ad2565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600c5463ffffffff808216600160401b909204161061275257600c5463ffffffff16612763565b600c54600160401b900463ffffffff165b600c805463ffffffff191663ffffffff92909216919091179055565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906127b4903390899088908890600401613528565b602060405180830381600087803b1580156127ce57600080fd5b505af19250505080156127fe575060408051601f3d908101601f191682019092526127fb91810190613565565b60015b612859573d80801561282c576040519150601f19603f3d011682016040523d82523d6000602084013e612831565b606091505b508051612851576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161289b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128c557806128af816134ce565b91506128be9050600a8361347f565b915061289f565b6000816001600160401b038111156128df576128df612dd2565b6040519080825280601f01601f191660200182016040528015612909576020820181803683370190505b5090505b841561286f5761291e600183613582565b915061292b600a86613599565b6129369060306135ad565b60f81b81838151811061294b5761294b613493565b60200101906001600160f81b031916908160001a90535061296d600a8661347f565b945061290d565b60006001600160e01b0319821663152a902d60e11b148061093e57506301ffc9a760e01b6001600160e01b031983161461093e565b610aa383838360016002546001600160a01b0385166129da57604051622e076360e81b815260040160405180910390fd5b836129f85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612aa457506001600160a01b0387163b15155b15612b2d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612af5600088848060010195508861277f565b612b12576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612aaa578260025414612b2857600080fd5b612b73565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612b2e575b50600255612377565b828054612b889061339c565b90600052602060002090601f016020900481019282612baa5760008555612bf0565b82601f10612bc357805160ff1916838001178555612bf0565b82800160010185558215612bf0579182015b82811115612bf0578251825591602001919060010190612bd5565b50612bfc929150612c00565b5090565b5b80821115612bfc5760008155600101612c01565b6001600160e01b03198116811461108e57600080fd5b600060208284031215612c3d57600080fd5b813561151081612c15565b60005b83811015612c63578181015183820152602001612c4b565b83811115610f505750506000910152565b60008151808452612c8c816020860160208601612c48565b601f01601f19169290920160200192915050565b6020815260006115106020830184612c74565b600060208284031215612cc557600080fd5b5035919050565b80356001600160a01b0381168114612ce357600080fd5b919050565b60008060408385031215612cfb57600080fd5b612d0483612ccc565b946020939093013593505050565b803563ffffffff81168114612ce357600080fd5b60008060408385031215612d3957600080fd5b612d4283612ccc565b9150612d5060208401612d12565b90509250929050565b600080600060608486031215612d6e57600080fd5b612d7784612ccc565b9250612d8560208501612ccc565b9150604084013590509250925092565b60008060408385031215612da857600080fd5b50508035926020909101359150565b600060208284031215612dc957600080fd5b61151082612d12565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612e1057612e10612dd2565b604052919050565b60006001600160401b03821115612e3157612e31612dd2565b5060051b60200190565b60006020808385031215612e4e57600080fd5b82356001600160401b03811115612e6457600080fd5b8301601f81018513612e7557600080fd5b8035612e88612e8382612e18565b612de8565b81815260059190911b82018301908381019087831115612ea757600080fd5b928401925b82841015612ec557833582529284019290840190612eac565b979650505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561131357612f2783855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612eec565b600060208284031215612f4c57600080fd5b81356001600160601b038116811461151057600080fd5b600060208284031215612f7557600080fd5b61151082612ccc565b60006001600160401b03831115612f9757612f97612dd2565b612faa601f8401601f1916602001612de8565b9050828152838383011115612fbe57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612fe757600080fd5b81356001600160401b03811115612ffd57600080fd5b8201601f8101841361300e57600080fd5b61286f84823560208401612f7e565b60006020828403121561302f57600080fd5b81356003811061151057600080fd5b6020808252825182820181905260009190848201906040850190845b818110156113135783518352928401929184019160010161305a565b60008060006060848603121561308b57600080fd5b61309484612ccc565b95602085013595506040909401359392505050565b634e487b7160e01b600052602160045260246000fd5b600381106130dd57634e487b7160e01b600052602160045260246000fd5b9052565b815181526020808301516101a08301916131029084018263ffffffff169052565b50604083015161311a604084018263ffffffff169052565b506060830151613132606084018263ffffffff169052565b50608083015161314a608084018263ffffffff169052565b5060a083015161316260a084018263ffffffff169052565b5060c083015161317a60c084018263ffffffff169052565b5060e083015161319260e084018263ffffffff169052565b506101008381015163ffffffff9081169184019190915261012080850151151590840152610140808501519091169083015261016080840151151590830152610180808401516131e4828501826130bf565b505092915050565b600080604083850312156131ff57600080fd5b61320883612ccc565b91506020830135801515811461321d57600080fd5b809150509250929050565b6000806000806080858703121561323e57600080fd5b61324785612ccc565b935061325560208601612ccc565b92506040850135915060608501356001600160401b0381111561327757600080fd5b8501601f8101871361328857600080fd5b61329787823560208401612f7e565b91505092959194509250565b600060208083850312156132b657600080fd5b82356001600160401b038111156132cc57600080fd5b8301601f810185136132dd57600080fd5b80356132eb612e8382612e18565b81815260059190911b8201830190838101908783111561330a57600080fd5b928401925b82841015612ec55761332084612ccc565b8252928401929084019061330f565b81516001600160a01b031681526020808301516001600160401b0316908201526040808301511515908201526060810161093e565b6020810161093e82846130bf565b6000806040838503121561338557600080fd5b61338e83612ccc565b9150612d5060208401612ccc565b600181811c908216806133b057607f821691505b602082108114156133d157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600063ffffffff8083168185168083038211156134415761344161340c565b01949350505050565b60008160001904831182151516156134645761346461340c565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261348e5761348e613469565b500490565b634e487b7160e01b600052603260045260246000fd5b600063ffffffff838116908316818110156134c6576134c661340c565b039392505050565b60006000198214156134e2576134e261340c565b5060010190565b600083516134fb818460208801612c48565b83519083019061350f818360208801612c48565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061355b90830184612c74565b9695505050505050565b60006020828403121561357757600080fd5b815161151081612c15565b6000828210156135945761359461340c565b500390565b6000826135a8576135a8613469565b500690565b600082198211156135c0576135c061340c565b50019056fea2646970667358221220d88b0792caedc5413475daba8a07712f9087f1610194a581e193634f79f547a364736f6c634300080900330000000000000000000000000000000000000000000000000018de76816d8000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5866734c386735416a675044324535655539726338686356645332476f665156747337593670766e386441712f00000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c8063715018a61161015a578063b88d4fde116100c1578063d4a676231161007a578063d4a6762314610830578063dd48f07d14610845578063df6bb5af1461086a578063e04b84971461089e578063e985e9c5146108be578063f2fde38b146108de57600080fd5b8063b88d4fde14610760578063baa3464214610780578063c23dc68f146107a0578063c597fbf6146107cd578063c87b56dd146107fb578063ccd5f6a21461081b57600080fd5b806395d89b411161011357806395d89b41146106c157806399a2557a146106d65780639a7cfa4f146106f6578063a22cb46514610723578063a47d547e14610743578063aa0739071461074b57600080fd5b8063715018a614610601578063750521f514610616578063814c8c55146106365780638462151c146106565780638da5cb5b1461068357806391b7f5ed146106a157600080fd5b80632372bb83116101fe57806342842e0e116101b757806342842e0e146105305780635bbb2177146105505780636352211e1461057d578063653a819e1461059d578063693f3b1a146105bd57806370a08231146105e157600080fd5b80632372bb831461046c57806323b872dd146104895780632a55205a146104a9578063388947bb146104e85780633ccfd60b146105085780634167fb7a1461051d57600080fd5b80630e2351e2116102505780630e2351e21461038757806317a5aced146103bb57806318160ddd146103db5780631a3c4b73146103fe57806322f4596f14610422578063235b6ea11461045657600080fd5b806301ffc9a71461028d5780630517431e146102c257806306fdde031461030b578063081812fc1461032d578063095ea7b314610365575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612c2b565b6108fe565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102f67f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff90911681526020016102b9565b34801561031757600080fd5b50610320610944565b6040516102b99190612ca0565b34801561033957600080fd5b5061034d610348366004612cb3565b6109d6565b6040516001600160a01b0390911681526020016102b9565b34801561037157600080fd5b50610385610380366004612ce8565b610a1a565b005b34801561039357600080fd5b506102f67f000000000000000000000000000000000000000000000000000000000000006481565b3480156103c757600080fd5b506103856103d6366004612d26565b610aa8565b3480156103e757600080fd5b50600354600254035b6040519081526020016102b9565b34801561040a57600080fd5b50600c546102f690600160401b900463ffffffff1681565b34801561042e57600080fd5b506102f67f000000000000000000000000000000000000000000000000000000000000271081565b34801561046257600080fd5b506103f0600b5481565b34801561047857600080fd5b50600c546102f69063ffffffff1681565b34801561049557600080fd5b506103856104a4366004612d59565b610bbb565b3480156104b557600080fd5b506104c96104c4366004612d95565b610bc6565b604080516001600160a01b0390931683526020830191909152016102b9565b3480156104f457600080fd5b50610385610503366004612db7565b610c72565b34801561051457600080fd5b50610385610cc2565b61038561052b366004612db7565b610cf8565b34801561053c57600080fd5b5061038561054b366004612d59565b610f56565b34801561055c57600080fd5b5061057061056b366004612e3b565b610f71565b6040516102b99190612ed0565b34801561058957600080fd5b5061034d610598366004612cb3565b611037565b3480156105a957600080fd5b506103856105b8366004612f3a565b611049565b3480156105c957600080fd5b50600c546102f690600160601b900463ffffffff1681565b3480156105ed57600080fd5b506103f06105fc366004612f63565b611091565b34801561060d57600080fd5b506103856110df565b34801561062257600080fd5b50610385610631366004612fd5565b611113565b34801561064257600080fd5b5061038561065136600461301d565b611150565b34801561066257600080fd5b50610676610671366004612f63565b6111d2565b6040516102b9919061303e565b34801561068f57600080fd5b50600a546001600160a01b031661034d565b3480156106ad57600080fd5b506103856106bc366004612cb3565b61131f565b3480156106cd57600080fd5b5061032061134e565b3480156106e257600080fd5b506106766106f1366004613076565b61135d565b34801561070257600080fd5b50610716610711366004612f63565b611517565b6040516102b991906130e1565b34801561072f57600080fd5b5061038561073e3660046131ec565b611797565b61038561182d565b34801561075757600080fd5b506102f6611a86565b34801561076c57600080fd5b5061038561077b366004613228565b611ac6565b34801561078c57600080fd5b5061038561079b3660046132a3565b611b11565b3480156107ac57600080fd5b506107c06107bb366004612cb3565b611c3e565b6040516102b9919061332f565b3480156107d957600080fd5b50600c546107ee90600160801b900460ff1681565b6040516102b99190613364565b34801561080757600080fd5b50610320610816366004612cb3565b611cec565b34801561082757600080fd5b506102f6611dd5565b34801561083c57600080fd5b50610320611e2b565b34801561085157600080fd5b50600c546102f690640100000000900463ffffffff1681565b34801561087657600080fd5b506102f67f000000000000000000000000000000000000000000000000000000000000000281565b3480156108aa57600080fd5b506103856108b93660046132a3565b611eb9565b3480156108ca57600080fd5b506102ad6108d9366004613372565b611fe8565b3480156108ea57600080fd5b506103856108f9366004612f63565b612016565b60006001600160e01b0319821663152a902d60e11b148061092f57506001600160e01b031982166380ac58cd60e01b145b8061093e575061093e826120ae565b92915050565b6060600480546109539061339c565b80601f016020809104026020016040519081016040528092919081815260200182805461097f9061339c565b80156109cc5780601f106109a1576101008083540402835291602001916109cc565b820191906000526020600020905b8154815290600101906020018083116109af57829003601f168201915b5050505050905090565b60006109e1826120ee565b6109fe576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000610a2582611037565b9050806001600160a01b0316836001600160a01b03161415610a5a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a7a5750610a788133611fe8565b155b15610a98576040516367d9dca160e11b815260040160405180910390fd5b610aa383838361211a565b505050565b600a546001600160a01b03163314610adb5760405162461bcd60e51b8152600401610ad2906133d7565b60405180910390fd5b600c5463ffffffff7f0000000000000000000000000000000000000000000000000000000000000000811691610b1b916401000000009091041683613422565b63ffffffff161115610b685760405162461bcd60e51b81526020600482015260166024820152754c464e3a20457863656564206d617820737570706c7960501b6044820152606401610ad2565b80600c60048282829054906101000a900463ffffffff16610b899190613422565b92506101000a81548163ffffffff021916908363ffffffff160217905550610bb7828263ffffffff16612176565b5050565b610aa3838383612190565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c3b5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610c5a906001600160601b03168761344a565b610c64919061347f565b915196919550909350505050565b600a546001600160a01b03163314610c9c5760405162461bcd60e51b8152600401610ad2906133d7565b600c805463ffffffff909216600160601b0263ffffffff60601b19909216919091179055565b600a546001600160a01b03163314610cec5760405162461bcd60e51b8152600401610ad2906133d7565b610cf6334761237e565b565b6002600c54600160801b900460ff166002811115610d1857610d186130a9565b14610d735760405162461bcd60e51b815260206004820152602560248201527f4c464e20203a205075626c69632073616c65206973206e6f742073746172746560448201526419081e595d60da1b6064820152608401610ad2565b600c5463ffffffff600160601b90910481169082161115610dd65760405162461bcd60e51b815260206004820152601b60248201527f4c464e203a204d696e74204e756d62657220746f6f206c6172676500000000006044820152606401610ad2565b6000610de0611a86565b90506000610dec611dd5565b905063ffffffff8116610dff8385613422565b63ffffffff161115610e535760405162461bcd60e51b815260206004820152601760248201527f4c464e203a20457863656564206d617820737570706c790000000000000000006044820152606401610ad2565b6000610e5e33612497565b905063ffffffff7f000000000000000000000000000000000000000000000000000000000000006416610e918286613422565b63ffffffff161115610ee55760405162461bcd60e51b815260206004820152601960248201527f4c464e203a204578636565642077616c6c6574206c696d6974000000000000006044820152606401610ad2565b600b54610ef89063ffffffff861661344a565b341015610f405760405162461bcd60e51b81526020600482015260166024820152751311938e88125b9cdd59999a58da595b9d08199d5b9960521b6044820152606401610ad2565b610f50338563ffffffff16612176565b50505050565b610aa383838360405180602001604052806000815250611ac6565b80516060906000816001600160401b03811115610f9057610f90612dd2565b604051908082528060200260200182016040528015610fdb57816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610fae5790505b50905060005b82811461102f5761100a858281518110610ffd57610ffd613493565b6020026020010151611c3e565b82828151811061101c5761101c613493565b6020908102919091010152600101610fe1565b509392505050565b6000611042826124c2565b5192915050565b600a546001600160a01b031633146110735760405162461bcd60e51b8152600401610ad2906133d7565b61108e611088600a546001600160a01b031690565b826125dc565b50565b60006001600160a01b0382166110ba576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b600a546001600160a01b031633146111095760405162461bcd60e51b8152600401610ad2906133d7565b610cf660006126d9565b600a546001600160a01b0316331461113d5760405162461bcd60e51b8152600401610ad2906133d7565b8051610bb790600e906020840190612b7c565b600a546001600160a01b0316331461117a5760405162461bcd60e51b8152600401610ad2906133d7565b600c805482919060ff60801b1916600160801b83600281111561119f5761119f6130a9565b02179055506002600c54600160801b900460ff1660028111156111c4576111c46130a9565b141561108e5761108e61272b565b606060008060006111e285611091565b90506000816001600160401b038111156111fe576111fe612dd2565b604051908082528060200260200182016040528015611227578160200160208202803683370190505b50905061124d604080516060810182526000808252602082018190529181019190915290565b60005b83861461131357600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925292506112b65761130b565b81516001600160a01b0316156112cb57815194505b876001600160a01b0316856001600160a01b0316141561130b57808387806001019850815181106112fe576112fe613493565b6020026020010181815250505b600101611250565b50909695505050505050565b600a546001600160a01b031633146113495760405162461bcd60e51b8152600401610ad2906133d7565b600b55565b6060600580546109539061339c565b606081831061137f57604051631960ccad60e11b815260040160405180910390fd5b60025460009080841115611391578093505b600061139c87611091565b9050848610156113bb57858503818110156113b5578091505b506113bf565b5060005b6000816001600160401b038111156113d9576113d9612dd2565b604051908082528060200260200182016040528015611402578160200160208202803683370190505b5090508161141557935061151092505050565b600061142088611c3e565b905060008160400151611431575080515b885b8881141580156114435750848714155b1561150457600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925293506114a7576114fc565b82516001600160a01b0316156114bc57825191505b8a6001600160a01b0316826001600160a01b031614156114fc57808488806001019950815181106114ef576114ef613493565b6020026020010181815250505b600101611433565b50505092835250909150505b9392505050565b611584604080516101a081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810182905261010081018290526101208101829052610140810182905261016081018290529061018082015290565b600c5460009063ffffffff166115da7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000027106134a9565b6115e491906134a9565b600c5490915060009063ffffffff600160401b820481169164010000000090041661160e60025490565b61161891906134a9565b61162291906134a9565b604080516101a081018252600b54815263ffffffff7f00000000000000000000000000000000000000000000000000000000000027108116602083015285811692820192909252600c54808316606083018190527f0000000000000000000000000000000000000000000000000000000000000002841660808401527f0000000000000000000000000000000000000000000000000000000000000064841660a084015283851660c0840152939450909260e08401926116ea92600160401b900416906134a9565b63ffffffff1681526020016116fe86612497565b63ffffffff1681526020018363ffffffff168363ffffffff1610151515815260200161172d6003546002540390565b63ffffffff1681526001600160a01b0386166000908152600d602090815260409091205491019060ff16611762576000611765565b60015b15158152602001600c60109054906101000a900460ff16600281111561178d5761178d6130a9565b9052949350505050565b6001600160a01b0382163314156117c15760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6001600c54600160801b900460ff16600281111561184d5761184d6130a9565b146118a95760405162461bcd60e51b815260206004820152602660248201527f4c464e3a2057686974654c6973742073616c65206973206e6f742073746172746044820152651959081e595d60d21b6064820152608401610ad2565b336000908152600d602052604090205460ff166119085760405162461bcd60e51b815260206004820152601d60248201527f4c464e3a204e6f2077686974656c69737420656c69676962696c6974790000006044820152606401610ad2565b7f0000000000000000000000000000000000000000000000000000000000000002600061193433612497565b600c5490915063ffffffff80821691611956918591600160401b900416613422565b63ffffffff1611156119aa5760405162461bcd60e51b815260206004820181905260248201527f4c464e3a204578636565642057686974654c697374206d617820737570706c796044820152606401610ad2565b8163ffffffff168163ffffffff1610611a165760405162461bcd60e51b815260206004820152602860248201527f4c464e3a204c75636b79204261627920596f7520646f6e2774207374616e642060448201526761206368616e636560c01b6064820152608401610ad2565b600063ffffffff821615611a3357611a2e82846134a9565b611a35565b825b905082600c60088282829054906101000a900463ffffffff16611a589190613422565b92506101000a81548163ffffffff021916908363ffffffff160217905550610aa3338263ffffffff16612176565b600c5460009063ffffffff600160401b8204811691640100000000900416611aad60025490565b611ab791906134a9565b611ac191906134a9565b905090565b611ad1848484612190565b6001600160a01b0383163b15158015611af35750611af18484848461277f565b155b15610f50576040516368d2bf6b60e11b815260040160405180910390fd5b600a546001600160a01b03163314611b3b5760405162461bcd60e51b8152600401610ad2906133d7565b6000815111611b845760405162461bcd60e51b81526020600482015260156024820152744c464e203a20496e76616c6964206164647265737360581b6044820152606401610ad2565b60005b8151811015610bb7576000828281518110611ba457611ba4613493565b6020908102919091018101516001600160a01b0381166000908152600d90925260408220805460ff19169055600c80549193507f0000000000000000000000000000000000000000000000000000000000000002929091611c0c90849063ffffffff166134a9565b92506101000a81548163ffffffff021916908363ffffffff160217905550508080611c36906134ce565b915050611b87565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281018390529091506002548310611c835792915050565b50600082815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290611ce35792915050565b611510836124c2565b6060611cf7826120ee565b611d1457604051630a14c4b560e41b815260040160405180910390fd5b6000600e8054611d239061339c565b80601f0160208091040260200160405190810160405280929190818152602001828054611d4f9061339c565b8015611d9c5780601f10611d7157610100808354040283529160200191611d9c565b820191906000526020600020905b815481529060010190602001808311611d7f57829003601f168201915b5050505050905080611dad84612877565b604051602001611dbe9291906134e9565b604051602081830303815290604052915050919050565b600c5460009063ffffffff16611ab77f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000027106134a9565b600e8054611e389061339c565b80601f0160208091040260200160405190810160405280929190818152602001828054611e649061339c565b8015611eb15780601f10611e8657610100808354040283529160200191611eb1565b820191906000526020600020905b815481529060010190602001808311611e9457829003601f168201915b505050505081565b600a546001600160a01b03163314611ee35760405162461bcd60e51b8152600401610ad2906133d7565b6000815111611f2b5760405162461bcd60e51b81526020600482015260146024820152734c464e3a20496e76616c6964206164647265737360601b6044820152606401610ad2565b60005b8151811015610bb7576000828281518110611f4b57611f4b613493565b6020908102919091018101516001600160a01b0381166000908152600d90925260408220805460ff19166001179055600c80549193507f0000000000000000000000000000000000000000000000000000000000000002929091611fb690849063ffffffff16613422565b92506101000a81548163ffffffff021916908363ffffffff160217905550508080611fe0906134ce565b915050611f2e565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b031633146120405760405162461bcd60e51b8152600401610ad2906133d7565b6001600160a01b0381166120a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ad2565b61108e816126d9565b60006001600160e01b031982166380ac58cd60e01b14806120df57506001600160e01b03198216635b5e139f60e01b145b8061093e575061093e82612974565b60006002548210801561093e575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610bb78282604051806020016040528060008152506129a9565b600061219b826124c2565b9050836001600160a01b031681600001516001600160a01b0316146121d25760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806121f057506121f08533611fe8565b8061220b575033612200846109d6565b6001600160a01b0316145b90508061222b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661225257604051633a954ecd60e21b815260040160405180910390fd5b61225e6000848761211a565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661233257600254821461233257805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156123ce5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610ad2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461241b576040519150601f19603f3d011682016040523d82523d6000602084013e612420565b606091505b5050905080610aa35760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610ad2565b6001600160a01b0316600090815260076020526040902054600160401b90046001600160401b031690565b6040805160608101825260008082526020820181905291810191909152816002548110156125c357600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906125c15780516001600160a01b031615612558579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156125bc579392505050565b612558565b505b604051636f96cda160e11b815260040160405180910390fd5b6127106001600160601b038216111561264a5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610ad2565b6001600160a01b0382166126a05760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610ad2565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600c5463ffffffff808216600160401b909204161061275257600c5463ffffffff16612763565b600c54600160401b900463ffffffff165b600c805463ffffffff191663ffffffff92909216919091179055565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906127b4903390899088908890600401613528565b602060405180830381600087803b1580156127ce57600080fd5b505af19250505080156127fe575060408051601f3d908101601f191682019092526127fb91810190613565565b60015b612859573d80801561282c576040519150601f19603f3d011682016040523d82523d6000602084013e612831565b606091505b508051612851576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60608161289b5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156128c557806128af816134ce565b91506128be9050600a8361347f565b915061289f565b6000816001600160401b038111156128df576128df612dd2565b6040519080825280601f01601f191660200182016040528015612909576020820181803683370190505b5090505b841561286f5761291e600183613582565b915061292b600a86613599565b6129369060306135ad565b60f81b81838151811061294b5761294b613493565b60200101906001600160f81b031916908160001a90535061296d600a8661347f565b945061290d565b60006001600160e01b0319821663152a902d60e11b148061093e57506301ffc9a760e01b6001600160e01b031983161461093e565b610aa383838360016002546001600160a01b0385166129da57604051622e076360e81b815260040160405180910390fd5b836129f85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612aa457506001600160a01b0387163b15155b15612b2d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612af5600088848060010195508861277f565b612b12576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612aaa578260025414612b2857600080fd5b612b73565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612b2e575b50600255612377565b828054612b889061339c565b90600052602060002090601f016020900481019282612baa5760008555612bf0565b82601f10612bc357805160ff1916838001178555612bf0565b82800160010185558215612bf0579182015b82811115612bf0578251825591602001919060010190612bd5565b50612bfc929150612c00565b5090565b5b80821115612bfc5760008155600101612c01565b6001600160e01b03198116811461108e57600080fd5b600060208284031215612c3d57600080fd5b813561151081612c15565b60005b83811015612c63578181015183820152602001612c4b565b83811115610f505750506000910152565b60008151808452612c8c816020860160208601612c48565b601f01601f19169290920160200192915050565b6020815260006115106020830184612c74565b600060208284031215612cc557600080fd5b5035919050565b80356001600160a01b0381168114612ce357600080fd5b919050565b60008060408385031215612cfb57600080fd5b612d0483612ccc565b946020939093013593505050565b803563ffffffff81168114612ce357600080fd5b60008060408385031215612d3957600080fd5b612d4283612ccc565b9150612d5060208401612d12565b90509250929050565b600080600060608486031215612d6e57600080fd5b612d7784612ccc565b9250612d8560208501612ccc565b9150604084013590509250925092565b60008060408385031215612da857600080fd5b50508035926020909101359150565b600060208284031215612dc957600080fd5b61151082612d12565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612e1057612e10612dd2565b604052919050565b60006001600160401b03821115612e3157612e31612dd2565b5060051b60200190565b60006020808385031215612e4e57600080fd5b82356001600160401b03811115612e6457600080fd5b8301601f81018513612e7557600080fd5b8035612e88612e8382612e18565b612de8565b81815260059190911b82018301908381019087831115612ea757600080fd5b928401925b82841015612ec557833582529284019290840190612eac565b979650505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561131357612f2783855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612eec565b600060208284031215612f4c57600080fd5b81356001600160601b038116811461151057600080fd5b600060208284031215612f7557600080fd5b61151082612ccc565b60006001600160401b03831115612f9757612f97612dd2565b612faa601f8401601f1916602001612de8565b9050828152838383011115612fbe57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612fe757600080fd5b81356001600160401b03811115612ffd57600080fd5b8201601f8101841361300e57600080fd5b61286f84823560208401612f7e565b60006020828403121561302f57600080fd5b81356003811061151057600080fd5b6020808252825182820181905260009190848201906040850190845b818110156113135783518352928401929184019160010161305a565b60008060006060848603121561308b57600080fd5b61309484612ccc565b95602085013595506040909401359392505050565b634e487b7160e01b600052602160045260246000fd5b600381106130dd57634e487b7160e01b600052602160045260246000fd5b9052565b815181526020808301516101a08301916131029084018263ffffffff169052565b50604083015161311a604084018263ffffffff169052565b506060830151613132606084018263ffffffff169052565b50608083015161314a608084018263ffffffff169052565b5060a083015161316260a084018263ffffffff169052565b5060c083015161317a60c084018263ffffffff169052565b5060e083015161319260e084018263ffffffff169052565b506101008381015163ffffffff9081169184019190915261012080850151151590840152610140808501519091169083015261016080840151151590830152610180808401516131e4828501826130bf565b505092915050565b600080604083850312156131ff57600080fd5b61320883612ccc565b91506020830135801515811461321d57600080fd5b809150509250929050565b6000806000806080858703121561323e57600080fd5b61324785612ccc565b935061325560208601612ccc565b92506040850135915060608501356001600160401b0381111561327757600080fd5b8501601f8101871361328857600080fd5b61329787823560208401612f7e565b91505092959194509250565b600060208083850312156132b657600080fd5b82356001600160401b038111156132cc57600080fd5b8301601f810185136132dd57600080fd5b80356132eb612e8382612e18565b81815260059190911b8201830190838101908783111561330a57600080fd5b928401925b82841015612ec55761332084612ccc565b8252928401929084019061330f565b81516001600160a01b031681526020808301516001600160401b0316908201526040808301511515908201526060810161093e565b6020810161093e82846130bf565b6000806040838503121561338557600080fd5b61338e83612ccc565b9150612d5060208401612ccc565b600181811c908216806133b057607f821691505b602082108114156133d157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600063ffffffff8083168185168083038211156134415761344161340c565b01949350505050565b60008160001904831182151516156134645761346461340c565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261348e5761348e613469565b500490565b634e487b7160e01b600052603260045260246000fd5b600063ffffffff838116908316818110156134c6576134c661340c565b039392505050565b60006000198214156134e2576134e261340c565b5060010190565b600083516134fb818460208801612c48565b83519083019061350f818360208801612c48565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061355b90830184612c74565b9695505050505050565b60006020828403121561357757600080fd5b815161151081612c15565b6000828210156135945761359461340c565b500390565b6000826135a8576135a8613469565b500690565b600082198211156135c0576135c061340c565b50019056fea2646970667358221220d88b0792caedc5413475daba8a07712f9087f1610194a581e193634f79f547a364736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000018de76816d8000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5866734c386735416a675044324535655539726338686356645332476f665156747337593670766e386441712f00000000000000000000

-----Decoded View---------------
Arg [0] : price (uint256): 7000000000000000
Arg [1] : maxSupply (uint32): 10000
Arg [2] : teamSupply (uint32): 0
Arg [3] : instantFreeWalletLimit (uint32): 2
Arg [4] : maxMintAmount (uint32): 10
Arg [5] : walletLimit (uint32): 100
Arg [6] : metadataURI (string): ipfs://QmXfsL8g5AjgPD2E5eU9rc8hcVdS2GofQVts7Y6pvn8dAq/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000018de76816d8000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [6] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5866734c386735416a6750443245356555397263386863
Arg [9] : 56645332476f665156747337593670766e386441712f00000000000000000000


Deployed Bytecode Sourcemap

254:6762:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4863:294;;;;;;;;;;-1:-1:-1;4863:294:11;;;;;:::i;:::-;;:::i;:::-;;;661:14:14;;654:22;636:41;;624:2;609:18;4863:294:11;;;;;;;;459:35;;;;;;;;;;;;;;;;;;961:10:14;949:23;;;931:42;;919:2;904:18;459:35:11;787:192:14;7337:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;8793:200::-;;;;;;;;;;-1:-1:-1;8793:200:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2084:32:14;;;2066:51;;2054:2;2039:18;8793:200:4;1920:203:14;8370:362:4;;;;;;;;;;-1:-1:-1;8370:362:4;;;;;:::i;:::-;;:::i;:::-;;592:36:11;;;;;;;;;;;;;;;5163:212;;;;;;;;;;-1:-1:-1;5163:212:11;;;;;:::i;:::-;;:::i;3580:297:4:-;;;;;;;;;;-1:-1:-1;3830:12:4;;3814:13;;:28;3580:297;;;3142:25:14;;;3130:2;3115:18;3580:297:4;2996:177:14;665:32:11;;;;;;;;;;-1:-1:-1;665:32:11;;;;-1:-1:-1;;;665:32:11;;;;;;419:34;;;;;;;;;;;;;;;392:21;;;;;;;;;;;;;;;;500:33;;;;;;;;;;-1:-1:-1;500:33:11;;;;;;;;9632:164:4;;;;;;;;;;-1:-1:-1;9632:164:4;;;;;:::i;:::-;;:::i;1632:478:3:-;;;;;;;;;;-1:-1:-1;1632:478:3;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3956:32:14;;;3938:51;;4020:2;4005:18;;3998:34;;;;3911:18;1632:478:3;3764:274:14;5615:100:11;;;;;;;;;;-1:-1:-1;5615:100:11;;;;;:::i;:::-;;:::i;6906:108::-;;;;;;;;;;;;;:::i;1906:651::-;;;;;;:::i;:::-;;:::i;9862:179:4:-;;;;;;;;;;-1:-1:-1;9862:179:4;;;;;:::i;:::-;;:::i;1437:450:5:-;;;;;;;;;;-1:-1:-1;1437:450:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7152:123:4:-;;;;;;;;;;-1:-1:-1;7152:123:4;;;;;:::i;:::-;;:::i;5381:121:11:-;;;;;;;;;;-1:-1:-1;5381:121:11;;;;;:::i;:::-;;:::i;703:28::-;;;;;;;;;;-1:-1:-1;703:28:11;;;;-1:-1:-1;;;703:28:11;;;;;;4668:203:4;;;;;;;;;;-1:-1:-1;4668:203:4;;;;;:::i;:::-;;:::i;1661:101:12:-;;;;;;;;;;;;;:::i;5508:97:11:-;;;;;;;;;;-1:-1:-1;5508:97:11;;;;;:::i;:::-;;:::i;5810:196::-;;;;;;;;;;-1:-1:-1;5810:196:11;;;;;:::i;:::-;;:::i;5139:861:5:-;;;;;;;;;;-1:-1:-1;5139:861:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1029:85:12:-;;;;;;;;;;-1:-1:-1;1101:6:12;;-1:-1:-1;;;;;1101:6:12;1029:85;;5721:83:11;;;;;;;;;;-1:-1:-1;5721:83:11;;;;;:::i;:::-;;:::i;7499:102:4:-;;;;;;;;;;;;;:::i;2263:2439:5:-;;;;;;;;;;-1:-1:-1;2263:2439:5;;;;;:::i;:::-;;:::i;3594:967:11:-;;;;;;;;;;-1:-1:-1;3594:967:11;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9060:282:4:-;;;;;;;;;;-1:-1:-1;9060:282:4;;;;;:::i;:::-;;:::i;2563:751:11:-;;;:::i;3324:135::-;;;;;;;;;;;;;:::i;10107:359:4:-;;;;;;;;;;-1:-1:-1;10107:359:4;;;;;:::i;:::-;;:::i;6539:361:11:-;;;;;;;;;;-1:-1:-1;6539:361:11;;;;;:::i;:::-;;:::i;885:399:5:-;;;;;;;;;;-1:-1:-1;885:399:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;737:53:11:-;;;;;;;;;;-1:-1:-1;737:53:11;;;;-1:-1:-1;;;737:53:11;;;;;;;;;;;;;:::i;4567:290::-;;;;;;;;;;-1:-1:-1;4567:290:11;;;;;:::i;:::-;;:::i;3465:123::-;;;;;;;;;;;;;:::i;845:26::-;;;;;;;;;;;;;:::i;634:25::-;;;;;;;;;;-1:-1:-1;634:25:11;;;;;;;;;;;539:47;;;;;;;;;;;;;;;6183:350;;;;;;;;;;-1:-1:-1;6183:350:11;;;;;:::i;:::-;;:::i;9408:162:4:-;;;;;;;;;;-1:-1:-1;9408:162:4;;;;;:::i;:::-;;:::i;1911:198:12:-;;;;;;;;;;-1:-1:-1;1911:198:12;;;;;:::i;:::-;;:::i;4863:294:11:-;4966:4;-1:-1:-1;;;;;;5001:41:11;;-1:-1:-1;;;5001:41:11;;:97;;-1:-1:-1;;;;;;;5058:40:11;;-1:-1:-1;;;5058:40:11;5001:97;:149;;;;5114:36;5138:11;5114:23;:36::i;:::-;4982:168;4863:294;-1:-1:-1;;4863:294:11:o;7337:98:4:-;7391:13;7423:5;7416:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7337:98;:::o;8793:200::-;8861:7;8885:16;8893:7;8885;:16::i;:::-;8880:64;;8910:34;;-1:-1:-1;;;8910:34:4;;;;;;;;;;;8880:64;-1:-1:-1;8962:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;8962:24:4;;8793:200::o;8370:362::-;8442:13;8458:24;8474:7;8458:15;:24::i;:::-;8442:40;;8502:5;-1:-1:-1;;;;;8496:11:4;:2;-1:-1:-1;;;;;8496:11:4;;8492:48;;;8516:24;;-1:-1:-1;;;8516:24:4;;;;;;;;;;;8492:48;719:10:1;-1:-1:-1;;;;;8555:21:4;;;;;;:63;;-1:-1:-1;8581:37:4;8598:5;719:10:1;9408:162:4;:::i;8581:37::-;8580:38;8555:63;8551:136;;;8641:35;;-1:-1:-1;;;8641:35:4;;;;;;;;;;;8551:136;8697:28;8706:2;8710:7;8719:5;8697:8;:28::i;:::-;8432:300;8370:362;;:::o;5163:212:11:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;;;;;;;;;5253:11:11::1;::::0;5244:35:::1;5268:11;5244:35:::0;::::1;::::0;:20:::1;::::0;5253:11;;;::::1;;5244:6:::0;:20:::1;:::i;:::-;:35;;;;5236:70;;;::::0;-1:-1:-1;;;5236:70:11;;15474:2:14;5236:70:11::1;::::0;::::1;15456:21:14::0;15513:2;15493:18;;;15486:30;-1:-1:-1;;;15532:18:14;;;15525:52;15594:18;;5236:70:11::1;15272:346:14::0;5236:70:11::1;5331:6;5316:11;;:21;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;5347;5357:2;5361:6;5347:21;;:9;:21::i;:::-;5163:212:::0;;:::o;9632:164:4:-;9761:28;9771:4;9777:2;9781:7;9761:9;:28::i;1632:478:3:-;1771:7;1832:27;;;:17;:27;;;;;;;;1803:56;;;;;;;;;-1:-1:-1;;;;;1803:56:3;;;;;-1:-1:-1;;;1803:56:3;;;-1:-1:-1;;;;;1803:56:3;;;;;;;;1771:7;;1870:90;;-1:-1:-1;1920:29:3;;;;;;;;;-1:-1:-1;1920:29:3;-1:-1:-1;;;;;1920:29:3;;;;-1:-1:-1;;;1920:29:3;;-1:-1:-1;;;;;1920:29:3;;;;;1870:90;2008:23;;;;1970:21;;2468:5;;1995:36;;-1:-1:-1;;;;;1995:36:3;:10;:36;:::i;:::-;1994:58;;;;:::i;:::-;2071:16;;;;;-1:-1:-1;1632:478:3;;-1:-1:-1;;;;1632:478:3:o;5615:100:11:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;5685:14:11::1;:23:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;5685:23:11::1;-1:-1:-1::0;;;;5685:23:11;;::::1;::::0;;;::::1;::::0;;5615:100::o;6906:108::-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6955:52:11::1;6963:10;6985:21;6955:29;:52::i;:::-;6906:108::o:0;1906:651::-;1986:21;1971:11;;-1:-1:-1;;;1971:11:11;;;;:36;;;;;;;;:::i;:::-;;1963:86;;;;-1:-1:-1;;;1963:86:11;;16255:2:14;1963:86:11;;;16237:21:14;16294:2;16274:18;;;16267:30;16333:34;16313:18;;;16306:62;-1:-1:-1;;;16384:18:14;;;16377:35;16429:19;;1963:86:11;16053:401:14;1963:86:11;2077:14;;;-1:-1:-1;;;2077:14:11;;;;;2067:24;;;;;2059:64;;;;-1:-1:-1;;;2059:64:11;;16661:2:14;2059:64:11;;;16643:21:14;16700:2;16680:18;;;16673:30;16739:29;16719:18;;;16712:57;16786:18;;2059:64:11;16459:351:14;2059:64:11;2133:19;2155:15;:13;:15::i;:::-;2133:37;;2180:19;2202:15;:13;:15::i;:::-;2180:37;-1:-1:-1;2235:37:11;;;:21;2244:12;2235:6;:21;:::i;:::-;:37;;;;2227:73;;;;-1:-1:-1;;;2227:73:11;;17017:2:14;2227:73:11;;;16999:21:14;17056:2;17036:18;;;17029:30;17095:25;17075:18;;;17068:53;17138:18;;2227:73:11;16815:347:14;2227:73:11;2310:13;2333:25;2347:10;2333:13;:25::i;:::-;2310:49;-1:-1:-1;2377:31:11;2396:12;2377:31;:15;2310:49;2377:6;:15;:::i;:::-;:31;;;;2369:69;;;;-1:-1:-1;;;2369:69:11;;17369:2:14;2369:69:11;;;17351:21:14;17408:2;17388:18;;;17381:30;17447:27;17427:18;;;17420:55;17492:18;;2369:69:11;17167:349:14;2369:69:11;2478:6;;2469:15;;;;;;:::i;:::-;2456:9;:28;;2448:63;;;;-1:-1:-1;;;2448:63:11;;17723:2:14;2448:63:11;;;17705:21:14;17762:2;17742:18;;;17735:30;-1:-1:-1;;;17781:18:14;;;17774:52;17843:18;;2448:63:11;17521:346:14;2448:63:11;2521:29;2531:10;2543:6;2521:29;;:9;:29::i;:::-;1953:604;;;1906:651;:::o;9862:179:4:-;9995:39;10012:4;10018:2;10022:7;9995:39;;;;;;;;;;;;:16;:39::i;1437:450:5:-;1601:15;;1517:23;;1576:22;1601:15;-1:-1:-1;;;;;1667:36:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;1667:36:5;;-1:-1:-1;;1667:36:5;;;;;;;;;;;;1630:73;;1722:9;1717:123;1738:14;1733:1;:19;1717:123;;1793:32;1813:8;1822:1;1813:11;;;;;;;;:::i;:::-;;;;;;;1793:19;:32::i;:::-;1777:10;1788:1;1777:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;1754:3;;1717:123;;;-1:-1:-1;1860:10:5;1437:450;-1:-1:-1;;;1437:450:5:o;7152:123:4:-;7216:7;7242:21;7255:7;7242:12;:21::i;:::-;:26;;7152:123;-1:-1:-1;;7152:123:4:o;5381:121:11:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;5454:41:11::1;5473:7;1101:6:12::0;;-1:-1:-1;;;;;1101:6:12;;1029:85;5473:7:11::1;5482:12;5454:18;:41::i;:::-;5381:121:::0;:::o;4668:203:4:-;4732:7;-1:-1:-1;;;;;4755:19:4;;4751:60;;4783:28;;-1:-1:-1;;;4783:28:4;;;;;;;;;;;4751:60;-1:-1:-1;;;;;;4836:19:4;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4836:27:4;;4668:203::o;1661:101:12:-;1101:6;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;5508:97:11:-:0;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;5580:18:11;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;5810:196::-:0;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;5881:11:11::1;:20:::0;;5895:6;;5881:11;-1:-1:-1;;;;5881:20:11::1;-1:-1:-1::0;;;5895:6:11;5881:20:::1;::::0;::::1;;;;;;:::i;:::-;;;::::0;;-1:-1:-1;5929:21:11::1;5914:11;::::0;-1:-1:-1;;;5914:11:11;::::1;;;:36;::::0;::::1;;;;;;:::i;:::-;;5911:89;;;5966:23;:21;:23::i;5139:861:5:-:0;5200:16;5252:19;5285:25;5324:22;5349:16;5359:5;5349:9;:16::i;:::-;5324:41;;5379:25;5421:14;-1:-1:-1;;;;;5407:29:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5407:29:5;;5379:57;;5450:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;5450:31:5;5500:9;5495:460;5544:14;5529:11;:29;5495:460;;5595:14;;;;:11;:14;;;;;;;;;5583:26;;;;;;;;;-1:-1:-1;;;;;5583:26:5;;;;-1:-1:-1;;;5583:26:5;;-1:-1:-1;;;;;5583:26:5;;;;;;;;-1:-1:-1;;;5583:26:5;;;;;;;;;;;;;;;;-1:-1:-1;5627:71:5;;5671:8;;5627:71;5719:14;;-1:-1:-1;;;;;5719:28:5;;5715:109;;5791:14;;;-1:-1:-1;5715:109:5;5866:5;-1:-1:-1;;;;;5845:26:5;:17;-1:-1:-1;;;;;5845:26:5;;5841:100;;;5921:1;5895:8;5904:13;;;;;;5895:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;5841:100;5560:3;;5495:460;;;-1:-1:-1;5975:8:5;;5139:861;-1:-1:-1;;;;;;5139:861:5:o;5721:83:11:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;5783:6:11::1;:14:::0;5721:83::o;7499:102:4:-;7555:13;7587:7;7580:14;;;;;:::i;2263:2439:5:-;2385:16;2450:4;2441:5;:13;2437:45;;2463:19;;-1:-1:-1;;;2463:19:5;;;;;;;;;;;2437:45;2549:13;;2496:19;;2797:9;2790:4;:16;2786:71;;;2833:9;2826:16;;2786:71;2870:25;2898:16;2908:5;2898:9;:16::i;:::-;2870:44;;3089:4;3081:5;:12;3077:271;;;3135:12;;;3169:31;;;3165:109;;;3244:11;3224:31;;3165:109;3095:193;3077:271;;;-1:-1:-1;3332:1:5;3077:271;3361:25;3403:17;-1:-1:-1;;;;;3389:32:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3389:32:5;-1:-1:-1;3361:60:5;-1:-1:-1;3439:22:5;3435:76;;3488:8;-1:-1:-1;3481:15:5;;-1:-1:-1;;;3481:15:5;3435:76;3652:31;3686:26;3706:5;3686:19;:26::i;:::-;3652:60;;3726:25;3968:9;:16;;;3963:90;;-1:-1:-1;4024:14:5;;3963:90;4083:5;4066:466;4095:4;4090:1;:9;;:45;;;;;4118:17;4103:11;:32;;4090:45;4066:466;;;4172:14;;;;:11;:14;;;;;;;;;4160:26;;;;;;;;;-1:-1:-1;;;;;4160:26:5;;;;-1:-1:-1;;;4160:26:5;;-1:-1:-1;;;;;4160:26:5;;;;;;;;-1:-1:-1;;;4160:26:5;;;;;;;;;;;;;;;;-1:-1:-1;4204:71:5;;4248:8;;4204:71;4296:14;;-1:-1:-1;;;;;4296:28:5;;4292:109;;4368:14;;;-1:-1:-1;4292:109:5;4443:5;-1:-1:-1;;;;;4422:26:5;:17;-1:-1:-1;;;;;4422:26:5;;4418:100;;;4498:1;4472:8;4481:13;;;;;;4472:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;4418:100;4137:3;;4066:466;;;-1:-1:-1;;;4614:29:5;;;-1:-1:-1;4621:8:5;;-1:-1:-1;;2263:2439:5;;;;;;:::o;3594:967:11:-;3650:13;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3650:13:11;3725:18;;3676:19;;3725:18;;3698:24;3711:11;3698:10;:24;:::i;:::-;:45;;;;:::i;:::-;3821:18;;3676:67;;-1:-1:-1;3753:19:11;;3821:18;-1:-1:-1;;;3821:18:11;;;;;3808:11;;;;3782:22;4194:13:4;;;3965:277;3782:22:11;3775:44;;;;:::i;:::-;:64;;;;:::i;:::-;3857:697;;;;;;;;3907:6;;3857:697;;;3939:10;3857:697;;;;;;;;;;;;;;;;4022:18;;;;;3857:697;;;;;;4079:23;3857:697;;;;;;4130:12;3857:697;;;;;;;;;;;;;3753:86;;-1:-1:-1;3857:697:11;;;;;;4241:39;;-1:-1:-1;;;4262:18:11;;;;4241:39;:::i;:::-;3857:697;;;;;;4314:21;4328:6;4314:13;:21::i;:::-;3857:697;;;;;;4377:12;4361:28;;:12;:28;;;;3857:697;;;;;;4424:13;3830:12:4;;3814:13;;:28;;3580:297;4424:13:11;3857:697;;;;-1:-1:-1;;;;;4468:18:11;;;;;;:10;3857:697;4468:18;;;;;;;;3857:697;;;4468:18;;:37;;4499:5;4468:37;;;4490:4;4468:37;3857:697;;;;;;4531:11;;;;;;;;;;;3857:697;;;;;;;;:::i;:::-;;;3850:704;3594:967;-1:-1:-1;;;;3594:967:11:o;9060:282:4:-;-1:-1:-1;;;;;9158:24:4;;719:10:1;9158:24:4;9154:54;;;9191:17;;-1:-1:-1;;;9191:17:4;;;;;;;;;;;9154:54;719:10:1;9219:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;9219:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;9219:53:4;;;;;;;;;;9287:48;;636:41:14;;;9219:42:4;;719:10:1;9287:48:4;;609:18:14;9287:48:4;;;;;;;9060:282;;:::o;2563:751:11:-;2641:20;2626:11;;-1:-1:-1;;;2626:11:11;;;;:35;;;;;;;;:::i;:::-;;2618:86;;;;-1:-1:-1;;;2618:86:11;;18432:2:14;2618:86:11;;;18414:21:14;18471:2;18451:18;;;18444:30;18510:34;18490:18;;;18483:62;-1:-1:-1;;;18561:18:14;;;18554:36;18607:19;;2618:86:11;18230:402:14;2618:86:11;2733:10;2722:22;;;;:10;:22;;;;;;;;2714:63;;;;-1:-1:-1;;;2714:63:11;;18839:2:14;2714:63:11;;;18821:21:14;18878:2;18858:18;;;18851:30;18917:31;18897:18;;;18890:59;18966:18;;2714:63:11;18637:353:14;2714:63:11;2819:23;2787:29;2875:25;2889:10;2875:13;:25::i;:::-;2966:18;;2852:49;;-1:-1:-1;2966:18:11;;;;;2919:43;;2940:22;;-1:-1:-1;;;2919:18:11;;;:43;:::i;:::-;:65;;;;2911:109;;;;-1:-1:-1;;;2911:109:11;;19197:2:14;2911:109:11;;;19179:21:14;;;19216:18;;;19209:30;19275:34;19255:18;;;19248:62;19327:18;;2911:109:11;18995:356:14;2911:109:11;3047:22;3038:31;;:6;:31;;;3030:84;;;;-1:-1:-1;;;3030:84:11;;19558:2:14;3030:84:11;;;19540:21:14;19597:2;19577:18;;;19570:30;19636:34;19616:18;;;19609:62;-1:-1:-1;;;19687:18:14;;;19680:38;19735:19;;3030:84:11;19356:404:14;3030:84:11;3124:13;3140:11;;;;:74;;3182:31;3207:6;3182:22;:31;:::i;:::-;3140:74;;;3155:22;3140:74;3124:90;;3246:22;3224:18;;:44;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;3278:29;3288:10;3300:6;3278:29;;:9;:29::i;3324:135::-;3434:18;;3370:6;;3434:18;-1:-1:-1;;;3434:18:11;;;;;3420:11;;;;3402:14;4194:13:4;;;3965:277;3402:14:11;3395:36;;;;:::i;:::-;:57;;;;:::i;:::-;3388:64;;3324:135;:::o;10107:359:4:-;10268:28;10278:4;10284:2;10288:7;10268:9;:28::i;:::-;-1:-1:-1;;;;;10310:13:4;;1465:19:0;:23;;10310:76:4;;;;;10330:56;10361:4;10367:2;10371:7;10380:5;10330:30;:56::i;:::-;10329:57;10310:76;10306:154;;;10409:40;;-1:-1:-1;;;10409:40:4;;;;;;;;;;;6539:361:11;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6648:1:11::1;6630:8;:15;:19;6622:52;;;::::0;-1:-1:-1;;;6622:52:11;;19967:2:14;6622:52:11::1;::::0;::::1;19949:21:14::0;20006:2;19986:18;;;19979:30;-1:-1:-1;;;20025:18:14;;;20018:51;20086:18;;6622:52:11::1;19765:345:14::0;6622:52:11::1;6689:9;6684:210;6708:8;:15;6704:1;:19;6684:210;;;6743:22;6768:8;6777:1;6768:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;6792:26:11;::::1;6821:5;6792:26:::0;;;:10:::1;:26:::0;;;;;;:34;;-1:-1:-1;;6792:34:11::1;::::0;;6839:18:::1;:45:::0;;6768:11;;-1:-1:-1;6861:23:11::1;::::0;6839:18;;:45:::1;::::0;6861:23;;6839:45:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;6730:164;6725:3;;;;;:::i;:::-;;;;6684:210;;885:399:5::0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1030:53:5;1070:13;;1059:7;:24;1026:100;;1106:9;885:399;-1:-1:-1;;885:399:5:o;1026:100::-;-1:-1:-1;1147:20:5;;;;:11;:20;;;;;;;;;1135:32;;;;;;;;;-1:-1:-1;;;;;1135:32:5;;;;-1:-1:-1;;;1135:32:5;;-1:-1:-1;;;;;1135:32:5;;;;;;;;-1:-1:-1;;;1135:32:5;;;;;;;;;;;;;;;;1177:63;;1220:9;885:399;-1:-1:-1;;885:399:5:o;1177:63::-;1256:21;1269:7;1256:12;:21::i;4567:290:11:-;4640:13;4670:16;4678:7;4670;:16::i;:::-;4665:59;;4695:29;;-1:-1:-1;;;4695:29:11;;;;;;;;;;;4665:59;4735:21;4759:12;4735:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4812:7;4821:18;:7;:16;:18::i;:::-;4795:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4781:69;;;4567:290;;;:::o;3465:123::-;3563:18;;3511:6;;3563:18;;3536:24;3549:11;3536:10;:24;:::i;845:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6183:350::-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6284:1:11::1;6266:8;:15;:19;6258:51;;;::::0;-1:-1:-1;;;6258:51:11;;21099:2:14;6258:51:11::1;::::0;::::1;21081:21:14::0;21138:2;21118:18;;;21111:30;-1:-1:-1;;;21157:18:14;;;21150:50;21217:18;;6258:51:11::1;20897:344:14::0;6258:51:11::1;6323:9;6318:209;6342:8;:15;6338:1;:19;6318:209;;;6377:22;6402:8;6411:1;6402:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;6426:26:11;::::1;;::::0;;;:10:::1;:26:::0;;;;;;:33;;-1:-1:-1;;6426:33:11::1;6455:4;6426:33;::::0;;6472:18:::1;:45:::0;;6402:11;;-1:-1:-1;6494:23:11::1;::::0;6472:18;;:45:::1;::::0;6494:23;;6472:45:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;6364:163;6359:3;;;;;:::i;:::-;;;;6318:209;;9408:162:4::0;-1:-1:-1;;;;;9528:25:4;;;9505:4;9528:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;9408:162::o;1911:198:12:-;1101:6;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:12;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:12;;21448:2:14;1991:73:12::1;::::0;::::1;21430:21:14::0;21487:2;21467:18;;;21460:30;21526:34;21506:18;;;21499:62;-1:-1:-1;;;21577:18:14;;;21570:36;21623:19;;1991:73:12::1;21246:402:14::0;1991:73:12::1;2074:28;2093:8;2074:18;:28::i;4309:300:4:-:0;4411:4;-1:-1:-1;;;;;;4446:40:4;;-1:-1:-1;;;4446:40:4;;:104;;-1:-1:-1;;;;;;;4502:48:4;;-1:-1:-1;;;4502:48:4;4446:104;:156;;;;4566:36;4590:11;4566:23;:36::i;10712:172::-;10769:4;10832:13;;10822:7;:23;10792:85;;;;-1:-1:-1;;10850:20:4;;;;:11;:20;;;;;:27;-1:-1:-1;;;10850:27:4;;;;10849:28;;10712:172::o;18652:189::-;18762:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;18762:29:4;-1:-1:-1;;;;;18762:29:4;;;;;;;;;18806:28;;18762:24;;18806:28;;;;;;;18652:189;;;:::o;10890:102::-;10958:27;10968:2;10972:8;10958:27;;;;;;;;;;;;:9;:27::i;13722:2082::-;13832:35;13870:21;13883:7;13870:12;:21::i;:::-;13832:59;;13928:4;-1:-1:-1;;;;;13906:26:4;:13;:18;;;-1:-1:-1;;;;;13906:26:4;;13902:67;;13941:28;;-1:-1:-1;;;13941:28:4;;;;;;;;;;;13902:67;13980:22;719:10:1;-1:-1:-1;;;;;14006:20:4;;;;:72;;-1:-1:-1;14042:36:4;14059:4;719:10:1;9408:162:4;:::i;14042:36::-;14006:124;;;-1:-1:-1;719:10:1;14094:20:4;14106:7;14094:11;:20::i;:::-;-1:-1:-1;;;;;14094:36:4;;14006:124;13980:151;;14147:17;14142:66;;14173:35;;-1:-1:-1;;;14173:35:4;;;;;;;;;;;14142:66;-1:-1:-1;;;;;14222:16:4;;14218:52;;14247:23;;-1:-1:-1;;;14247:23:4;;;;;;;;;;;14218:52;14386:35;14403:1;14407:7;14416:4;14386:8;:35::i;:::-;-1:-1:-1;;;;;14711:18:4;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;14711:31:4;;;-1:-1:-1;;;;;14711:31:4;;;-1:-1:-1;;14711:31:4;;;;;;;14756:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;14756:29:4;;;;;;;;;;;14834:20;;;:11;:20;;;;;;14868:18;;-1:-1:-1;;;;;;14900:49:4;;;;-1:-1:-1;;;14933:15:4;14900:49;;;;;;;;;;15219:11;;15278:24;;;;;15320:13;;14834:20;;15278:24;;15320:13;15316:377;;15527:13;;15512:11;:28;15508:171;;15564:20;;15632:28;;;;-1:-1:-1;;;;;15606:54:4;-1:-1:-1;;;15606:54:4;-1:-1:-1;;;;;;15606:54:4;;;-1:-1:-1;;;;;15564:20:4;;15606:54;;;;15508:171;14687:1016;;;15737:7;15733:2;-1:-1:-1;;;;;15718:27:4;15727:4;-1:-1:-1;;;;;15718:27:4;;;;;;;;;;;15755:42;13822:1982;;13722:2082;;;:::o;2412:312:0:-;2526:6;2501:21;:31;;2493:73;;;;-1:-1:-1;;;2493:73:0;;21855:2:14;2493:73:0;;;21837:21:14;21894:2;21874:18;;;21867:30;21933:31;21913:18;;;21906:59;21982:18;;2493:73:0;21653:353:14;2493:73:0;2578:12;2596:9;-1:-1:-1;;;;;2596:14:0;2618:6;2596:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2577:52;;;2647:7;2639:78;;;;-1:-1:-1;;;2639:78:0;;22423:2:14;2639:78:0;;;22405:21:14;22462:2;22442:18;;;22435:30;22501:34;22481:18;;;22474:62;22572:28;22552:18;;;22545:56;22618:19;;2639:78:0;22221:422:14;4948:135:4;-1:-1:-1;;;;;5043:19:4;5009:7;5043:19;;;:12;:19;;;;;:32;-1:-1:-1;;;5043:32:4;;-1:-1:-1;;;;;5043:32:4;;4948:135::o;6011:1084::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6121:7:4;6201:13;;6194:4;:20;6163:868;;;6234:31;6268:17;;;:11;:17;;;;;;;;;6234:51;;;;;;;;;-1:-1:-1;;;;;6234:51:4;;;;-1:-1:-1;;;6234:51:4;;-1:-1:-1;;;;;6234:51:4;;;;;;;;-1:-1:-1;;;6234:51:4;;;;;;;;;;;;;;6303:714;;6352:14;;-1:-1:-1;;;;;6352:28:4;;6348:99;;6415:9;6011:1084;-1:-1:-1;;;6011:1084:4:o;6348:99::-;-1:-1:-1;;;6783:6:4;6827:17;;;;:11;:17;;;;;;;;;6815:29;;;;;;;;;-1:-1:-1;;;;;6815:29:4;;;;;-1:-1:-1;;;6815:29:4;;-1:-1:-1;;;;;6815:29:4;;;;;;;;-1:-1:-1;;;6815:29:4;;;;;;;;;;;;;6874:28;6870:107;;6941:9;6011:1084;-1:-1:-1;;;6011:1084:4:o;6870:107::-;6744:255;;;6216:815;6163:868;7057:31;;-1:-1:-1;;;7057:31:4;;;;;;;;;;;2741:327:3;2468:5;-1:-1:-1;;;;;2843:33:3;;;;2835:88;;;;-1:-1:-1;;;2835:88:3;;22850:2:14;2835:88:3;;;22832:21:14;22889:2;22869:18;;;22862:30;22928:34;22908:18;;;22901:62;-1:-1:-1;;;22979:18:14;;;22972:40;23029:19;;2835:88:3;22648:406:14;2835:88:3;-1:-1:-1;;;;;2941:22:3;;2933:60;;;;-1:-1:-1;;;2933:60:3;;23261:2:14;2933:60:3;;;23243:21:14;23300:2;23280:18;;;23273:30;23339:27;23319:18;;;23312:55;23384:18;;2933:60:3;23059:349:14;2933:60:3;3026:35;;;;;;;;;-1:-1:-1;;;;;3026:35:3;;;;;;-1:-1:-1;;;;;3026:35:3;;;;;;;;;;-1:-1:-1;;;3004:57:3;;;;-1:-1:-1;3004:57:3;2741:327::o;2263:187:12:-;2355:6;;;-1:-1:-1;;;;;2371:17:12;;;-1:-1:-1;;;;;;2371:17:12;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;6012:165:11:-;6106:18;;;;;;-1:-1:-1;;;6085:18:11;;;;:39;:85;;6151:18;;;;6085:85;;;6128:18;;-1:-1:-1;;;6128:18:11;;;;6085:85;6064:18;:106;;-1:-1:-1;;6064:106:11;;;;;;;;;;;;6012:165::o;19322:650:4:-;19500:72;;-1:-1:-1;;;19500:72:4;;19480:4;;-1:-1:-1;;;;;19500:36:4;;;;;:72;;719:10:1;;19551:4:4;;19557:7;;19566:5;;19500:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19500:72:4;;;;;;;;-1:-1:-1;;19500:72:4;;;;;;;;;;;;:::i;:::-;;;19496:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19731:13:4;;19727:229;;19776:40;;-1:-1:-1;;;19776:40:4;;;;;;;;;;;19727:229;19916:6;19910:13;19901:6;19897:2;19893:15;19886:38;19496:470;-1:-1:-1;;;;;;19618:55:4;-1:-1:-1;;;19618:55:4;;-1:-1:-1;19496:470:4;19322:650;;;;;;:::o;328:703:13:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:13;;;;;;;;;;;;-1:-1:-1;;;627:10:13;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:13;;-1:-1:-1;773:2:13;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;-1:-1:-1;;;;;817:17:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:13;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:13;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:13;;;;;;;;-1:-1:-1;972:11:13;981:2;972:11;;:::i;:::-;;;844:150;;1369:213:3;1471:4;-1:-1:-1;;;;;;1494:41:3;;-1:-1:-1;;;1494:41:3;;:81;;-1:-1:-1;;;;;;;;;;937:40:2;;;1539:36:3;829:155:2;11343:157:4;11461:32;11467:2;11471:8;11481:5;11488:4;11903:13;;-1:-1:-1;;;;;11930:16:4;;11926:48;;11955:19;;-1:-1:-1;;;11955:19:4;;;;;;;;;;;11926:48;11988:13;11984:44;;12010:18;;-1:-1:-1;;;12010:18:4;;;;;;;;;;;11984:44;-1:-1:-1;;;;;12371:16:4;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;12429:49:4;;-1:-1:-1;;;;;12371:44:4;;;;;;;12429:49;;;-1:-1:-1;;;;;12371:44:4;;;;;;12429:49;;;;;;;;;;;;;;;;12493:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;12542:66:4;;;;-1:-1:-1;;;12592:15:4;12542:66;;;;;;;;;;12493:25;12686:23;;;12728:4;:23;;;;-1:-1:-1;;;;;;12736:13:4;;1465:19:0;:23;;12736:15:4;12724:628;;;12771:309;12801:38;;12826:12;;-1:-1:-1;;;;;12801:38:4;;;12818:1;;12801:38;;12818:1;;12801:38;12866:69;12905:1;12909:2;12913:14;;;;;;12929:5;12866:30;:69::i;:::-;12861:172;;12970:40;;-1:-1:-1;;;12970:40:4;;;;;;;;;;;12861:172;13075:3;13059:12;:19;;12771:309;;13159:12;13142:13;;:29;13138:43;;13173:8;;;13138:43;12724:628;;;13220:118;13250:40;;13275:14;;;;;-1:-1:-1;;;;;13250:40:4;;;13267:1;;13250:40;;13267:1;;13250:40;13333:3;13317:12;:19;;13220:118;;12724:628;-1:-1:-1;13365:13:4;:28;13413:60;1906:651:11;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:14;-1:-1:-1;;;;;;88:32:14;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;984:258::-;1056:1;1066:113;1080:6;1077:1;1074:13;1066:113;;;1156:11;;;1150:18;1137:11;;;1130:39;1102:2;1095:10;1066:113;;;1197:6;1194:1;1191:13;1188:48;;;-1:-1:-1;;1232:1:14;1214:16;;1207:27;984:258::o;1247:::-;1289:3;1327:5;1321:12;1354:6;1349:3;1342:19;1370:63;1426:6;1419:4;1414:3;1410:14;1403:4;1396:5;1392:16;1370:63;:::i;:::-;1487:2;1466:15;-1:-1:-1;;1462:29:14;1453:39;;;;1494:4;1449:50;;1247:258;-1:-1:-1;;1247:258:14:o;1510:220::-;1659:2;1648:9;1641:21;1622:4;1679:45;1720:2;1709:9;1705:18;1697:6;1679:45;:::i;1735:180::-;1794:6;1847:2;1835:9;1826:7;1822:23;1818:32;1815:52;;;1863:1;1860;1853:12;1815:52;-1:-1:-1;1886:23:14;;1735:180;-1:-1:-1;1735:180:14:o;2128:173::-;2196:20;;-1:-1:-1;;;;;2245:31:14;;2235:42;;2225:70;;2291:1;2288;2281:12;2225:70;2128:173;;;:::o;2306:254::-;2374:6;2382;2435:2;2423:9;2414:7;2410:23;2406:32;2403:52;;;2451:1;2448;2441:12;2403:52;2474:29;2493:9;2474:29;:::i;:::-;2464:39;2550:2;2535:18;;;;2522:32;;-1:-1:-1;;;2306:254:14:o;2565:163::-;2632:20;;2692:10;2681:22;;2671:33;;2661:61;;2718:1;2715;2708:12;2733:258;2800:6;2808;2861:2;2849:9;2840:7;2836:23;2832:32;2829:52;;;2877:1;2874;2867:12;2829:52;2900:29;2919:9;2900:29;:::i;:::-;2890:39;;2948:37;2981:2;2970:9;2966:18;2948:37;:::i;:::-;2938:47;;2733:258;;;;;:::o;3178:328::-;3255:6;3263;3271;3324:2;3312:9;3303:7;3299:23;3295:32;3292:52;;;3340:1;3337;3330:12;3292:52;3363:29;3382:9;3363:29;:::i;:::-;3353:39;;3411:38;3445:2;3434:9;3430:18;3411:38;:::i;:::-;3401:48;;3496:2;3485:9;3481:18;3468:32;3458:42;;3178:328;;;;;:::o;3511:248::-;3579:6;3587;3640:2;3628:9;3619:7;3615:23;3611:32;3608:52;;;3656:1;3653;3646:12;3608:52;-1:-1:-1;;3679:23:14;;;3749:2;3734:18;;;3721:32;;-1:-1:-1;3511:248:14:o;4043:184::-;4101:6;4154:2;4142:9;4133:7;4129:23;4125:32;4122:52;;;4170:1;4167;4160:12;4122:52;4193:28;4211:9;4193:28;:::i;4232:127::-;4293:10;4288:3;4284:20;4281:1;4274:31;4324:4;4321:1;4314:15;4348:4;4345:1;4338:15;4364:275;4435:2;4429:9;4500:2;4481:13;;-1:-1:-1;;4477:27:14;4465:40;;-1:-1:-1;;;;;4520:34:14;;4556:22;;;4517:62;4514:88;;;4582:18;;:::i;:::-;4618:2;4611:22;4364:275;;-1:-1:-1;4364:275:14:o;4644:183::-;4704:4;-1:-1:-1;;;;;4729:6:14;4726:30;4723:56;;;4759:18;;:::i;:::-;-1:-1:-1;4804:1:14;4800:14;4816:4;4796:25;;4644:183::o;4832:891::-;4916:6;4947:2;4990;4978:9;4969:7;4965:23;4961:32;4958:52;;;5006:1;5003;4996:12;4958:52;5046:9;5033:23;-1:-1:-1;;;;;5071:6:14;5068:30;5065:50;;;5111:1;5108;5101:12;5065:50;5134:22;;5187:4;5179:13;;5175:27;-1:-1:-1;5165:55:14;;5216:1;5213;5206:12;5165:55;5252:2;5239:16;5275:60;5291:43;5331:2;5291:43;:::i;:::-;5275:60;:::i;:::-;5369:15;;;5451:1;5447:10;;;;5439:19;;5435:28;;;5400:12;;;;5475:19;;;5472:39;;;5507:1;5504;5497:12;5472:39;5531:11;;;;5551:142;5567:6;5562:3;5559:15;5551:142;;;5633:17;;5621:30;;5584:12;;;;5671;;;;5551:142;;;5712:5;4832:891;-1:-1:-1;;;;;;;4832:891:14:o;6011:722::-;6244:2;6296:21;;;6366:13;;6269:18;;;6388:22;;;6215:4;;6244:2;6467:15;;;;6441:2;6426:18;;;6215:4;6510:197;6524:6;6521:1;6518:13;6510:197;;;6573:52;6621:3;6612:6;6606:13;5812:12;;-1:-1:-1;;;;;5808:38:14;5796:51;;5900:4;5889:16;;;5883:23;-1:-1:-1;;;;;5879:48:14;5863:14;;;5856:72;5991:4;5980:16;;;5974:23;5967:31;5960:39;5944:14;;5937:63;5728:278;6573:52;6682:15;;;;6654:4;6645:14;;;;;6546:1;6539:9;6510:197;;6738:292;6796:6;6849:2;6837:9;6828:7;6824:23;6820:32;6817:52;;;6865:1;6862;6855:12;6817:52;6904:9;6891:23;-1:-1:-1;;;;;6947:5:14;6943:38;6936:5;6933:49;6923:77;;6996:1;6993;6986:12;7035:186;7094:6;7147:2;7135:9;7126:7;7122:23;7118:32;7115:52;;;7163:1;7160;7153:12;7115:52;7186:29;7205:9;7186:29;:::i;7226:407::-;7291:5;-1:-1:-1;;;;;7317:6:14;7314:30;7311:56;;;7347:18;;:::i;:::-;7385:57;7430:2;7409:15;;-1:-1:-1;;7405:29:14;7436:4;7401:40;7385:57;:::i;:::-;7376:66;;7465:6;7458:5;7451:21;7505:3;7496:6;7491:3;7487:16;7484:25;7481:45;;;7522:1;7519;7512:12;7481:45;7571:6;7566:3;7559:4;7552:5;7548:16;7535:43;7625:1;7618:4;7609:6;7602:5;7598:18;7594:29;7587:40;7226:407;;;;;:::o;7638:451::-;7707:6;7760:2;7748:9;7739:7;7735:23;7731:32;7728:52;;;7776:1;7773;7766:12;7728:52;7816:9;7803:23;-1:-1:-1;;;;;7841:6:14;7838:30;7835:50;;;7881:1;7878;7871:12;7835:50;7904:22;;7957:4;7949:13;;7945:27;-1:-1:-1;7935:55:14;;7986:1;7983;7976:12;7935:55;8009:74;8075:7;8070:2;8057:16;8052:2;8048;8044:11;8009:74;:::i;8094:271::-;8168:6;8221:2;8209:9;8200:7;8196:23;8192:32;8189:52;;;8237:1;8234;8227:12;8189:52;8276:9;8263:23;8315:1;8308:5;8305:12;8295:40;;8331:1;8328;8321:12;8370:632;8541:2;8593:21;;;8663:13;;8566:18;;;8685:22;;;8512:4;;8541:2;8764:15;;;;8738:2;8723:18;;;8512:4;8807:169;8821:6;8818:1;8815:13;8807:169;;;8882:13;;8870:26;;8951:15;;;;8916:12;;;;8843:1;8836:9;8807:169;;9007:322;9084:6;9092;9100;9153:2;9141:9;9132:7;9128:23;9124:32;9121:52;;;9169:1;9166;9159:12;9121:52;9192:29;9211:9;9192:29;:::i;:::-;9182:39;9268:2;9253:18;;9240:32;;-1:-1:-1;9319:2:14;9304:18;;;9291:32;;9007:322;-1:-1:-1;;;9007:322:14:o;9334:127::-;9395:10;9390:3;9386:20;9383:1;9376:31;9426:4;9423:1;9416:15;9450:4;9447:1;9440:15;9466:238;9548:1;9541:5;9538:12;9528:143;;9593:10;9588:3;9584:20;9581:1;9574:31;9628:4;9625:1;9618:15;9656:4;9653:1;9646:15;9528:143;9680:18;;9466:238::o;9709:1771::-;9922:13;;9904:32;;9983:4;9971:17;;;9965:24;9891:3;9876:19;;;9998:53;;10030:20;;9965:24;764:10;753:22;741:35;;688:94;9998:53;;10100:4;10092:6;10088:17;10082:24;10115:55;10164:4;10153:9;10149:20;10133:14;764:10;753:22;741:35;;688:94;10115:55;;10219:4;10211:6;10207:17;10201:24;10234:55;10283:4;10272:9;10268:20;10252:14;764:10;753:22;741:35;;688:94;10234:55;;10338:4;10330:6;10326:17;10320:24;10353:55;10402:4;10391:9;10387:20;10371:14;764:10;753:22;741:35;;688:94;10353:55;;10457:4;10449:6;10445:17;10439:24;10472:55;10521:4;10510:9;10506:20;10490:14;764:10;753:22;741:35;;688:94;10472:55;;10576:4;10568:6;10564:17;10558:24;10591:55;10640:4;10629:9;10625:20;10609:14;764:10;753:22;741:35;;688:94;10591:55;;10695:4;10687:6;10683:17;10677:24;10710:55;10759:4;10748:9;10744:20;10728:14;764:10;753:22;741:35;;688:94;10710:55;-1:-1:-1;10784:6:14;10827:15;;;10821:22;764:10;753:22;;;10886:18;;;741:35;;;;10924:6;10967:15;;;10961:22;470:13;463:21;11024:18;;;451:34;11062:6;11105:15;;;11099:22;753;;;11164:18;;;741:35;11202:6;11246:15;;;11240:22;470:13;463:21;11304:18;;;451:34;11342:6;11386:15;;;11380:22;11411:63;11455:18;;;11380:22;11411:63;:::i;:::-;;;9709:1771;;;;:::o;11485:347::-;11550:6;11558;11611:2;11599:9;11590:7;11586:23;11582:32;11579:52;;;11627:1;11624;11617:12;11579:52;11650:29;11669:9;11650:29;:::i;:::-;11640:39;;11729:2;11718:9;11714:18;11701:32;11776:5;11769:13;11762:21;11755:5;11752:32;11742:60;;11798:1;11795;11788:12;11742:60;11821:5;11811:15;;;11485:347;;;;;:::o;11837:667::-;11932:6;11940;11948;11956;12009:3;11997:9;11988:7;11984:23;11980:33;11977:53;;;12026:1;12023;12016:12;11977:53;12049:29;12068:9;12049:29;:::i;:::-;12039:39;;12097:38;12131:2;12120:9;12116:18;12097:38;:::i;:::-;12087:48;;12182:2;12171:9;12167:18;12154:32;12144:42;;12237:2;12226:9;12222:18;12209:32;-1:-1:-1;;;;;12256:6:14;12253:30;12250:50;;;12296:1;12293;12286:12;12250:50;12319:22;;12372:4;12364:13;;12360:27;-1:-1:-1;12350:55:14;;12401:1;12398;12391:12;12350:55;12424:74;12490:7;12485:2;12472:16;12467:2;12463;12459:11;12424:74;:::i;:::-;12414:84;;;11837:667;;;;;;;:::o;12509:897::-;12593:6;12624:2;12667;12655:9;12646:7;12642:23;12638:32;12635:52;;;12683:1;12680;12673:12;12635:52;12723:9;12710:23;-1:-1:-1;;;;;12748:6:14;12745:30;12742:50;;;12788:1;12785;12778:12;12742:50;12811:22;;12864:4;12856:13;;12852:27;-1:-1:-1;12842:55:14;;12893:1;12890;12883:12;12842:55;12929:2;12916:16;12952:60;12968:43;13008:2;12968:43;:::i;12952:60::-;13046:15;;;13128:1;13124:10;;;;13116:19;;13112:28;;;13077:12;;;;13152:19;;;13149:39;;;13184:1;13181;13174:12;13149:39;13208:11;;;;13228:148;13244:6;13239:3;13236:15;13228:148;;;13310:23;13329:3;13310:23;:::i;:::-;13298:36;;13261:12;;;;13354;;;;13228:148;;13411:265;5812:12;;-1:-1:-1;;;;;5808:38:14;5796:51;;5900:4;5889:16;;;5883:23;-1:-1:-1;;;;;5879:48:14;5863:14;;;5856:72;5991:4;5980:16;;;5974:23;5967:31;5960:39;5944:14;;;5937:63;13607:2;13592:18;;13619:51;5728:278;13681:210;13828:2;13813:18;;13840:45;13817:9;13867:6;13840:45;:::i;13896:260::-;13964:6;13972;14025:2;14013:9;14004:7;14000:23;13996:32;13993:52;;;14041:1;14038;14031:12;13993:52;14064:29;14083:9;14064:29;:::i;:::-;14054:39;;14112:38;14146:2;14135:9;14131:18;14112:38;:::i;14161:380::-;14240:1;14236:12;;;;14283;;;14304:61;;14358:4;14350:6;14346:17;14336:27;;14304:61;14411:2;14403:6;14400:14;14380:18;14377:38;14374:161;;;14457:10;14452:3;14448:20;14445:1;14438:31;14492:4;14489:1;14482:15;14520:4;14517:1;14510:15;14374:161;;14161:380;;;:::o;14546:356::-;14748:2;14730:21;;;14767:18;;;14760:30;14826:34;14821:2;14806:18;;14799:62;14893:2;14878:18;;14546:356::o;14907:127::-;14968:10;14963:3;14959:20;14956:1;14949:31;14999:4;14996:1;14989:15;15023:4;15020:1;15013:15;15039:228;15078:3;15106:10;15143:2;15140:1;15136:10;15173:2;15170:1;15166:10;15204:3;15200:2;15196:12;15191:3;15188:21;15185:47;;;15212:18;;:::i;:::-;15248:13;;15039:228;-1:-1:-1;;;;15039:228:14:o;15623:168::-;15663:7;15729:1;15725;15721:6;15717:14;15714:1;15711:21;15706:1;15699:9;15692:17;15688:45;15685:71;;;15736:18;;:::i;:::-;-1:-1:-1;15776:9:14;;15623:168::o;15796:127::-;15857:10;15852:3;15848:20;15845:1;15838:31;15888:4;15885:1;15878:15;15912:4;15909:1;15902:15;15928:120;15968:1;15994;15984:35;;15999:18;;:::i;:::-;-1:-1:-1;16033:9:14;;15928:120::o;17872:127::-;17933:10;17928:3;17924:20;17921:1;17914:31;17964:4;17961:1;17954:15;17988:4;17985:1;17978:15;18004:221;18043:4;18072:10;18132;;;;18102;;18154:12;;;18151:38;;;18169:18;;:::i;:::-;18206:13;;18004:221;-1:-1:-1;;;18004:221:14:o;20115:135::-;20154:3;-1:-1:-1;;20175:17:14;;20172:43;;;20195:18;;:::i;:::-;-1:-1:-1;20242:1:14;20231:13;;20115:135::o;20255:637::-;20535:3;20573:6;20567:13;20589:53;20635:6;20630:3;20623:4;20615:6;20611:17;20589:53;:::i;:::-;20705:13;;20664:16;;;;20727:57;20705:13;20664:16;20761:4;20749:17;;20727:57;:::i;:::-;-1:-1:-1;;;20806:20:14;;20835:22;;;20884:1;20873:13;;20255:637;-1:-1:-1;;;;20255:637:14:o;23413:489::-;-1:-1:-1;;;;;23682:15:14;;;23664:34;;23734:15;;23729:2;23714:18;;23707:43;23781:2;23766:18;;23759:34;;;23829:3;23824:2;23809:18;;23802:31;;;23607:4;;23850:46;;23876:19;;23868:6;23850:46;:::i;:::-;23842:54;23413:489;-1:-1:-1;;;;;;23413:489:14:o;23907:249::-;23976:6;24029:2;24017:9;24008:7;24004:23;24000:32;23997:52;;;24045:1;24042;24035:12;23997:52;24077:9;24071:16;24096:30;24120:5;24096:30;:::i;24161:125::-;24201:4;24229:1;24226;24223:8;24220:34;;;24234:18;;:::i;:::-;-1:-1:-1;24271:9:14;;24161:125::o;24291:112::-;24323:1;24349;24339:35;;24354:18;;:::i;:::-;-1:-1:-1;24388:9:14;;24291:112::o;24408:128::-;24448:3;24479:1;24475:6;24472:1;24469:13;24466:39;;;24485:18;;:::i;:::-;-1:-1:-1;24521:9:14;;24408:128::o

Swarm Source

ipfs://d88b0792caedc5413475daba8a07712f9087f1610194a581e193634f79f547a3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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