ETH Price: $2,909.55 (-3.98%)
Gas: 2 Gwei

Token

A piles of rubbish (Rubbish)
 

Overview

Max Total Supply

10,000 Rubbish

Holders

1,128

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
xpub.eth
Balance
5 Rubbish
0xd80f0d03579d1cae085ba34c3e909c33e710a52d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Fxxk off to put all those terrible events into landfill to join the real piles of rubbish.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Rubbish

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 13 of 14: rubbish.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";

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

    event LuckyShit(address minter, uint32 amount);

    bytes32 public immutable _lotterySalt;
    uint256 public immutable _price;
    uint32 public immutable _maxSupply;
    uint32 public immutable _teamSupply;
    uint32 public immutable _instantFreeSupply;
    uint32 public immutable _randomFreeSupply;
    uint32 public immutable _instantFreeWalletLimit;
    uint32 public immutable _walletLimit;

    uint32 public _teamMinted;
    uint32 public _randomFreeMinted;
    uint32 public _instantFreeMinted;
    bool public _started;
    string public _metadataURI = "https://gateway.pinata.cloud/ipfs/QmWfQYWj89UwtE6kdukLASoAQW2UxQbLf7Ab2w19x9sCKp/";

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

        // state
        uint32 publicMinted;
        uint32 instantFreeMintLeft;
        uint32 randomFreeMintLeft;
        uint32 userMinted;
        bool soldout;
        bool started;
    }

    constructor(
        uint256 price,
        uint32 maxSupply,
        uint32 teamSupply,
        uint32 instantFreeSupply,
        uint32 randomFreeSupply,
        uint32 instantFreeWalletLimit,
        uint32 walletLimit
    ) ERC721A("A piles of rubbish", "Rubbish") {
        require(maxSupply >= teamSupply + instantFreeSupply);
        require(maxSupply - teamSupply - instantFreeSupply >= randomFreeSupply);

        _lotterySalt = keccak256(abi.encodePacked(address(this), block.timestamp));
        _price = price;
        _maxSupply = maxSupply;
        _teamSupply = teamSupply;
        _instantFreeSupply = instantFreeSupply;
        _instantFreeWalletLimit = instantFreeWalletLimit;
        _randomFreeSupply = randomFreeSupply;
        _walletLimit = walletLimit;

        setFeeNumerator(750);
    }

    function mint(uint32 amount) external payable {
        require(_started, "Rubbish: Sale is not started");

        uint32 publicMinted = _publicMinted();
        uint32 publicSupply = _publicSupply();
        require(amount + publicMinted <= _publicSupply(), "Rubbish: Exceed max supply");

        uint32 minted = uint32(_numberMinted(msg.sender));
        require(amount + minted <= _walletLimit, "Rubbish: Exceed wallet limit");

        uint32 instantFreeWalletLimit = _instantFreeWalletLimit;
        uint32 freeAmount = 0;
        if (minted < instantFreeWalletLimit) {
            uint32 quota = instantFreeWalletLimit - minted;
            freeAmount += quota > amount ? amount : quota;
        }

        if (minted + amount > instantFreeWalletLimit) {
            uint32 enterLotteryAmount = amount - instantFreeWalletLimit;
            uint32 randomFreeAmount = 0;
            uint32 randomFreeMinted = _randomFreeMinted;
            uint32 quota = _randomFreeSupply - randomFreeMinted;

            if (quota > 0) {
                uint256 randomSeed = uint256(keccak256(abi.encodePacked(
                    msg.sender,
                    publicMinted,
                    block.difficulty,
                    _lotterySalt)));

                for (uint256 i = 0; i < enterLotteryAmount && quota > 0; ) {
                    if (uint16((randomSeed & 0xFFFF) % publicSupply) < quota) {
                        randomFreeAmount += 1;
                        quota -= 1;
                    }

                    unchecked {
                        i++;
                        randomSeed = randomSeed >> 16;
                    }
                }

                if (randomFreeAmount > 0) {
                    freeAmount += randomFreeAmount;
                    _randomFreeMinted += randomFreeAmount;
                    emit LuckyShit(msg.sender, randomFreeAmount);
                }
            }
        }

        uint256 requiredValue = (amount - freeAmount) * _price;
        require(msg.value >= requiredValue, "Rubbish: Insufficient fund");

        _safeMint(msg.sender, amount);
        if (msg.value > requiredValue) {
            payable(msg.sender).sendValue(msg.value - requiredValue);
        }
    }

    function _publicMinted() public view returns (uint32) {
        return uint32(_totalMinted()) - _teamMinted;
    }

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

    function _status(address minter) external view returns (Status memory) {
        uint32 publicSupply = _maxSupply - _teamSupply;
        uint32 publicMinted = uint32(ERC721A._totalMinted()) - _teamMinted;

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

            // state
            publicMinted: publicMinted,
            instantFreeMintLeft: _instantFreeSupply - _instantFreeMinted,
            randomFreeMintLeft: _randomFreeSupply - _randomFreeMinted,
            soldout:  publicMinted >= publicSupply,
            userMinted: uint32(_numberMinted(minter)),
            started: _started
        });
    }

    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 {
        _teamMinted += amount;
        require(_teamMinted <= _teamSupply, "Rubbish: Exceed max supply");
        _safeMint(to, amount);
    }

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

    function setStarted(bool started) external onlyOwner {
        _started = started;
    }

    function setMetadataURI(string memory uri) external onlyOwner {
        _metadataURI = uri;
    }

    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 12 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":"instantFreeSupply","type":"uint32"},{"internalType":"uint32","name":"randomFreeSupply","type":"uint32"},{"internalType":"uint32","name":"instantFreeWalletLimit","type":"uint32"},{"internalType":"uint32","name":"walletLimit","type":"uint32"}],"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":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint32","name":"amount","type":"uint32"}],"name":"LuckyShit","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":"_lotterySalt","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[],"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":[],"name":"_randomFreeMinted","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_randomFreeSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"randomFreeSupply","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":"randomFreeMintLeft","type":"uint32"},{"internalType":"uint32","name":"userMinted","type":"uint32"},{"internalType":"bool","name":"soldout","type":"bool"},{"internalType":"bool","name":"started","type":"bool"}],"internalType":"struct Rubbish.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":"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":[{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"string","name":"uri","type":"string"}],"name":"setMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"started","type":"bool"}],"name":"setStarted","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"}]

610200604052605161018081815290620038016101a03980516200002c91600c916020909101906200038f565b503480156200003a57600080fd5b5060405162003852380380620038528339810160408190526200005d916200044f565b604080518082018252601281527108240e0d2d8cae640decc40e4eac4c4d2e6d60731b6020808301918252835180850190945260078452660a4eac4c4d2e6d60cb1b908401528151919291620000b6916004916200038f565b508051620000cc9060059060208401906200038f565b5050600060025550620000df33620001bb565b620000eb8486620004f1565b63ffffffff168663ffffffff1610156200010457600080fd5b63ffffffff8316846200011887896200051c565b6200012491906200051c565b63ffffffff1610156200013657600080fd5b6040516001600160601b03193060601b16602082015242603482015260540160408051601f19818403018152919052805160209091012060805260a087905263ffffffff80871660c05285811660e052848116610100528281166101405283811661012052811661016052620001ae6102ee6200020d565b5050505050505062000581565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200026d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6200028b62000284600a546001600160a01b031690565b826200028e565b50565b6127106001600160601b0382161115620002fe5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840162000264565b6001600160a01b038216620003565760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000264565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b8280546200039d9062000544565b90600052602060002090601f016020900481019282620003c157600085556200040c565b82601f10620003dc57805160ff19168380011785556200040c565b828001600101855582156200040c579182015b828111156200040c578251825591602001919060010190620003ef565b506200041a9291506200041e565b5090565b5b808211156200041a57600081556001016200041f565b805163ffffffff811681146200044a57600080fd5b919050565b600080600080600080600060e0888a0312156200046b57600080fd5b875196506200047d6020890162000435565b95506200048d6040890162000435565b94506200049d6060890162000435565b9350620004ad6080890162000435565b9250620004bd60a0890162000435565b9150620004cd60c0890162000435565b905092959891949750929550565b634e487b7160e01b600052601160045260246000fd5b600063ffffffff808316818516808303821115620005135762000513620004db565b01949350505050565b600063ffffffff838116908316818110156200053c576200053c620004db565b039392505050565b600181811c908216806200055957607f821691505b602082108114156200057b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516101005161012051610140516101605161319c62000665600039600081816103780152818161136601526116230152600081816108370152818161133a01526116a30152600081816105420152818161130e015281816113fa015261175201526000818161047b015281816112e201526113b10152600081816102b301528181610afb015281816112060152611bec01526000818161041301528181611227015281816112aa0152611c0d01526000818161044701528181611284015261191201526000818161050e01526117bb015261319c6000f3fe6080604052600436106102675760003560e01c806370a0823111610144578063b88d4fde116100b6578063dd48f07d1161007a578063dd48f07d14610801578063df6bb5af14610825578063e985e9c514610859578063ef6b141a14610879578063f2fde38b14610899578063f493c25f146108b957600080fd5b8063b88d4fde1461076a578063c23dc68f1461078a578063c87b56dd146107b7578063ccd5f6a2146107d7578063d4a67623146107ec57600080fd5b806395d89b411161010857806395d89b41146106c057806399a2557a146106d55780639a7cfa4f146106f5578063a22cb46514610722578063a71bbebe14610742578063aa0739071461075557600080fd5b806370a0823114610620578063715018a614610640578063750521f5146106555780638462151c146106755780638da5cb5b146106a257600080fd5b80632372bb83116101dd5780633ccfd60b116101a15780633ccfd60b1461056457806342842e0e146105795780634df22a54146105995780635bbb2177146105b35780636352211e146105e0578063653a819e1461060057600080fd5b80632372bb831461046957806323b872dd1461049d5780632a55205a146104bd57806333c5f076146104fc57806337049add1461053057600080fd5b80630e2351e21161022f5780630e2351e21461036657806317a5aced1461039a57806318160ddd146103ba5780631a3c4b73146103dd57806322f4596f14610401578063235b6ea11461043557600080fd5b806301ffc9a71461026c5780630517431e146102a157806306fdde03146102ea578063081812fc1461030c578063095ea7b314610344575b600080fd5b34801561027857600080fd5b5061028c6102873660046128c0565b6108dd565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102d57f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff9091168152602001610298565b3480156102f657600080fd5b506102ff610923565b6040516102989190612935565b34801561031857600080fd5b5061032c610327366004612948565b6109b5565b6040516001600160a01b039091168152602001610298565b34801561035057600080fd5b5061036461035f36600461297d565b6109f9565b005b34801561037257600080fd5b506102d57f000000000000000000000000000000000000000000000000000000000000000081565b3480156103a657600080fd5b506103646103b53660046129bb565b610a87565b3480156103c657600080fd5b50600354600254035b604051908152602001610298565b3480156103e957600080fd5b50600a546102d590600160e01b900463ffffffff1681565b34801561040d57600080fd5b506102d57f000000000000000000000000000000000000000000000000000000000000000081565b34801561044157600080fd5b506103cf7f000000000000000000000000000000000000000000000000000000000000000081565b34801561047557600080fd5b506102d57f000000000000000000000000000000000000000000000000000000000000000081565b3480156104a957600080fd5b506103646104b83660046129ee565b610b9b565b3480156104c957600080fd5b506104dd6104d8366004612a2a565b610ba6565b604080516001600160a01b039093168352602083019190915201610298565b34801561050857600080fd5b506103cf7f000000000000000000000000000000000000000000000000000000000000000081565b34801561053c57600080fd5b506102d57f000000000000000000000000000000000000000000000000000000000000000081565b34801561057057600080fd5b50610364610c52565b34801561058557600080fd5b506103646105943660046129ee565b610c88565b3480156105a557600080fd5b50600b5461028c9060ff1681565b3480156105bf57600080fd5b506105d36105ce366004612a92565b610ca3565b6040516102989190612b37565b3480156105ec57600080fd5b5061032c6105fb366004612948565b610d69565b34801561060c57600080fd5b5061036461061b366004612ba1565b610d7b565b34801561062c57600080fd5b506103cf61063b366004612bca565b610dc3565b34801561064c57600080fd5b50610364610e11565b34801561066157600080fd5b50610364610670366004612c3c565b610e45565b34801561068157600080fd5b50610695610690366004612bca565b610e82565b6040516102989190612c84565b3480156106ae57600080fd5b50600a546001600160a01b031661032c565b3480156106cc57600080fd5b506102ff610fcf565b3480156106e157600080fd5b506106956106f0366004612cbc565b610fde565b34801561070157600080fd5b50610715610710366004612bca565b611198565b6040516102989190612cef565b34801561072e57600080fd5b5061036461073d366004612e03565b611490565b610364610750366004612e2d565b611526565b34801561076157600080fd5b506102d56119d2565b34801561077657600080fd5b50610364610785366004612e48565b6119fd565b34801561079657600080fd5b506107aa6107a5366004612948565b611a4e565b6040516102989190612ec3565b3480156107c357600080fd5b506102ff6107d2366004612948565b611afc565b3480156107e357600080fd5b506102d5611be5565b3480156107f857600080fd5b506102ff611c31565b34801561080d57600080fd5b50600a546102d590600160a01b900463ffffffff1681565b34801561083157600080fd5b506102d57f000000000000000000000000000000000000000000000000000000000000000081565b34801561086557600080fd5b5061028c610874366004612ef8565b611cbf565b34801561088557600080fd5b50610364610894366004612f22565b611ced565b3480156108a557600080fd5b506103646108b4366004612bca565b611d2a565b3480156108c557600080fd5b50600a546102d590600160c01b900463ffffffff1681565b60006001600160e01b0319821663152a902d60e11b148061090e57506001600160e01b031982166380ac58cd60e01b145b8061091d575061091d82611dc2565b92915050565b60606004805461093290612f3d565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90612f3d565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b5050505050905090565b60006109c082611e02565b6109dd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000610a0482610d69565b9050806001600160a01b0316836001600160a01b03161415610a395760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a595750610a578133611cbf565b155b15610a77576040516367d9dca160e11b815260040160405180910390fd5b610a82838383611e2e565b505050565b600a546001600160a01b03163314610aba5760405162461bcd60e51b8152600401610ab190612f78565b60405180910390fd5b80600a60148282829054906101000a900463ffffffff16610adb9190612fc3565b92506101000a81548163ffffffff021916908363ffffffff1602179055507f000000000000000000000000000000000000000000000000000000000000000063ffffffff16600a60149054906101000a900463ffffffff1663ffffffff161115610b875760405162461bcd60e51b815260206004820152601a60248201527f527562626973683a20457863656564206d617820737570706c790000000000006044820152606401610ab1565b610b97828263ffffffff16611e8a565b5050565b610a82838383611ea4565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c1b5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610c3a906001600160601b031687612feb565b610c449190613020565b915196919550909350505050565b600a546001600160a01b03163314610c7c5760405162461bcd60e51b8152600401610ab190612f78565b610c863347612092565b565b610a82838383604051806020016040528060008152506119fd565b80516060906000816001600160401b03811115610cc257610cc2612a4c565b604051908082528060200260200182016040528015610d0d57816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610ce05790505b50905060005b828114610d6157610d3c858281518110610d2f57610d2f613034565b6020026020010151611a4e565b828281518110610d4e57610d4e613034565b6020908102919091010152600101610d13565b509392505050565b6000610d74826121ab565b5192915050565b600a546001600160a01b03163314610da55760405162461bcd60e51b8152600401610ab190612f78565b610dc0610dba600a546001600160a01b031690565b826122c5565b50565b60006001600160a01b038216610dec576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b600a546001600160a01b03163314610e3b5760405162461bcd60e51b8152600401610ab190612f78565b610c8660006123c2565b600a546001600160a01b03163314610e6f5760405162461bcd60e51b8152600401610ab190612f78565b8051610b9790600c906020840190612811565b60606000806000610e9285610dc3565b90506000816001600160401b03811115610eae57610eae612a4c565b604051908082528060200260200182016040528015610ed7578160200160208202803683370190505b509050610efd604080516060810182526000808252602082018190529181019190915290565b60005b838614610fc357600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250610f6657610fbb565b81516001600160a01b031615610f7b57815194505b876001600160a01b0316856001600160a01b03161415610fbb5780838780600101985081518110610fae57610fae613034565b6020026020010181815250505b600101610f00565b50909695505050505050565b60606005805461093290612f3d565b606081831061100057604051631960ccad60e11b815260040160405180910390fd5b60025460009080841115611012578093505b600061101d87610dc3565b90508486101561103c5785850381811015611036578091505b50611040565b5060005b6000816001600160401b0381111561105a5761105a612a4c565b604051908082528060200260200182016040528015611083578160200160208202803683370190505b5090508161109657935061119192505050565b60006110a188611a4e565b9050600081604001516110b2575080515b885b8881141580156110c45750848714155b1561118557600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925293506111285761117d565b82516001600160a01b03161561113d57825191505b8a6001600160a01b0316826001600160a01b0316141561117d578084888060010199508151811061117057611170613034565b6020026020010181815250505b6001016110b4565b50505092835250909150505b9392505050565b604080516101a081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290529061124b7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061304a565b600a54909150600090600160a01b900463ffffffff1661126a60025490565b611274919061304a565b9050604051806101a001604052807f000000000000000000000000000000000000000000000000000000000000000081526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681526020018363ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681526020018263ffffffff168152602001600a601c9054906101000a900463ffffffff167f00000000000000000000000000000000000000000000000000000000000000006113da919061304a565b63ffffffff168152602001600a60189054906101000a900463ffffffff167f0000000000000000000000000000000000000000000000000000000000000000611423919061304a565b63ffffffff16815260200161145e866001600160a01b03166000908152600760205260409020546001600160401b03600160401b9091041690565b63ffffffff90811682529384169290931691909110156020830152600b5460ff16151560409092019190915292915050565b6001600160a01b0382163314156114ba5760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b5460ff166115785760405162461bcd60e51b815260206004820152601c60248201527f527562626973683a2053616c65206973206e6f742073746172746564000000006044820152606401610ab1565b60006115826119d2565b9050600061158e611be5565b9050611598611be5565b63ffffffff166115a88385612fc3565b63ffffffff1611156115fc5760405162461bcd60e51b815260206004820152601a60248201527f527562626973683a20457863656564206d617820737570706c790000000000006044820152606401610ab1565b33600090815260076020526040902054600160401b90046001600160401b031663ffffffff7f00000000000000000000000000000000000000000000000000000000000000001661164d8286612fc3565b63ffffffff1611156116a15760405162461bcd60e51b815260206004820152601c60248201527f527562626973683a204578636565642077616c6c6574206c696d6974000000006044820152606401610ab1565b7f0000000000000000000000000000000000000000000000000000000000000000600063ffffffff808316908416101561170c5760006116e1848461304a565b90508663ffffffff168163ffffffff16116116fc57806116fe565b865b6117089083612fc3565b9150505b63ffffffff821661171d8785612fc3565b63ffffffff16111561190e576000611735838861304a565b600a54909150600090600160c01b900463ffffffff1681611776827f000000000000000000000000000000000000000000000000000000000000000061304a565b905063ffffffff811615611909576040516bffffffffffffffffffffffff193360601b1660208201526001600160e01b031960e08b901b1660348201524460388201527f000000000000000000000000000000000000000000000000000000000000000060588201526000906078016040516020818303038152906040528051906020012060001c905060005b8563ffffffff168110801561181e575060008363ffffffff16115b15611874578263ffffffff168a63ffffffff168361ffff16611840919061306f565b61ffff16101561186557611855600186612fc3565b945061186260018461304a565b92505b60109190911c90600101611803565b5063ffffffff8416156119075761188b8487612fc3565b955083600a60188282829054906101000a900463ffffffff166118ae9190612fc3565b82546101009290920a63ffffffff8181021990931691831602179091556040805133815291871660208301527f5bec38cfe0a4f78d8e72f6a26f9a6a807d47bd425f5c02c05ebeb08ac73a629c92500160405180910390a15b505b505050505b60007f000000000000000000000000000000000000000000000000000000000000000061193b838961304a565b63ffffffff1661194b9190612feb565b90508034101561199d5760405162461bcd60e51b815260206004820152601a60248201527f527562626973683a20496e73756666696369656e742066756e640000000000006044820152606401610ab1565b6119ad338863ffffffff16611e8a565b803411156119c9576119c96119c28234613083565b3390612092565b50505050505050565b600a54600090600160a01b900463ffffffff166119ee60025490565b6119f8919061304a565b905090565b611a08848484611ea4565b6001600160a01b0383163b15158015611a2a5750611a2884848484612414565b155b15611a48576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281018390529091506002548310611a935792915050565b50600082815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290611af35792915050565b611191836121ab565b6060611b0782611e02565b611b2457604051630a14c4b560e41b815260040160405180910390fd5b6000600c8054611b3390612f3d565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5f90612f3d565b8015611bac5780601f10611b8157610100808354040283529160200191611bac565b820191906000526020600020905b815481529060010190602001808311611b8f57829003601f168201915b5050505050905080611bbd8461250c565b604051602001611bce92919061309a565b604051602081830303815290604052915050919050565b60006119f87f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061304a565b600c8054611c3e90612f3d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6a90612f3d565b8015611cb75780601f10611c8c57610100808354040283529160200191611cb7565b820191906000526020600020905b815481529060010190602001808311611c9a57829003601f168201915b505050505081565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b03163314611d175760405162461bcd60e51b8152600401610ab190612f78565b600b805460ff1916911515919091179055565b600a546001600160a01b03163314611d545760405162461bcd60e51b8152600401610ab190612f78565b6001600160a01b038116611db95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ab1565b610dc0816123c2565b60006001600160e01b031982166380ac58cd60e01b1480611df357506001600160e01b03198216635b5e139f60e01b145b8061091d575061091d82612609565b60006002548210801561091d575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b9782826040518060200160405280600081525061263e565b6000611eaf826121ab565b9050836001600160a01b031681600001516001600160a01b031614611ee65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611f045750611f048533611cbf565b80611f1f575033611f14846109b5565b6001600160a01b0316145b905080611f3f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611f6657604051633a954ecd60e21b815260040160405180910390fd5b611f7260008487611e2e565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661204657600254821461204657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156120e25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610ab1565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461212f576040519150601f19603f3d011682016040523d82523d6000602084013e612134565b606091505b5050905080610a825760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610ab1565b6040805160608101825260008082526020820181905291810191909152816002548110156122ac57600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906122aa5780516001600160a01b031615612241579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156122a5579392505050565b612241565b505b604051636f96cda160e11b815260040160405180910390fd5b6127106001600160601b03821611156123335760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610ab1565b6001600160a01b0382166123895760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610ab1565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906124499033908990889088906004016130d9565b602060405180830381600087803b15801561246357600080fd5b505af1925050508015612493575060408051601f3d908101601f1916820190925261249091810190613116565b60015b6124ee573d8080156124c1576040519150601f19603f3d011682016040523d82523d6000602084013e6124c6565b606091505b5080516124e6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816125305750506040805180820190915260018152600360fc1b602082015290565b8160005b811561255a578061254481613133565b91506125539050600a83613020565b9150612534565b6000816001600160401b0381111561257457612574612a4c565b6040519080825280601f01601f19166020018201604052801561259e576020820181803683370190505b5090505b8415612504576125b3600183613083565b91506125c0600a8661306f565b6125cb90603061314e565b60f81b8183815181106125e0576125e0613034565b60200101906001600160f81b031916908160001a905350612602600a86613020565b94506125a2565b60006001600160e01b0319821663152a902d60e11b148061091d57506301ffc9a760e01b6001600160e01b031983161461091d565b610a8283838360016002546001600160a01b03851661266f57604051622e076360e81b815260040160405180910390fd5b8361268d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561273957506001600160a01b0387163b15155b156127c2575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461278a6000888480600101955088612414565b6127a7576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561273f5782600254146127bd57600080fd5b612808565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156127c3575b5060025561208b565b82805461281d90612f3d565b90600052602060002090601f01602090048101928261283f5760008555612885565b82601f1061285857805160ff1916838001178555612885565b82800160010185558215612885579182015b8281111561288557825182559160200191906001019061286a565b50612891929150612895565b5090565b5b808211156128915760008155600101612896565b6001600160e01b031981168114610dc057600080fd5b6000602082840312156128d257600080fd5b8135611191816128aa565b60005b838110156128f85781810151838201526020016128e0565b83811115611a485750506000910152565b600081518084526129218160208601602086016128dd565b601f01601f19169290920160200192915050565b6020815260006111916020830184612909565b60006020828403121561295a57600080fd5b5035919050565b80356001600160a01b038116811461297857600080fd5b919050565b6000806040838503121561299057600080fd5b61299983612961565b946020939093013593505050565b803563ffffffff8116811461297857600080fd5b600080604083850312156129ce57600080fd5b6129d783612961565b91506129e5602084016129a7565b90509250929050565b600080600060608486031215612a0357600080fd5b612a0c84612961565b9250612a1a60208501612961565b9150604084013590509250925092565b60008060408385031215612a3d57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612a8a57612a8a612a4c565b604052919050565b60006020808385031215612aa557600080fd5b82356001600160401b0380821115612abc57600080fd5b818501915085601f830112612ad057600080fd5b813581811115612ae257612ae2612a4c565b8060051b9150612af3848301612a62565b8181529183018401918481019088841115612b0d57600080fd5b938501935b83851015612b2b57843582529385019390850190612b12565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610fc357612b8e83855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612b53565b600060208284031215612bb357600080fd5b81356001600160601b038116811461119157600080fd5b600060208284031215612bdc57600080fd5b61119182612961565b60006001600160401b03831115612bfe57612bfe612a4c565b612c11601f8401601f1916602001612a62565b9050828152838383011115612c2557600080fd5b828260208301376000602084830101529392505050565b600060208284031215612c4e57600080fd5b81356001600160401b03811115612c6457600080fd5b8201601f81018413612c7557600080fd5b61250484823560208401612be5565b6020808252825182820181905260009190848201906040850190845b81811015610fc357835183529284019291840191600101612ca0565b600080600060608486031215612cd157600080fd5b612cda84612961565b95602085013595506040909401359392505050565b815181526020808301516101a0830191612d109084018263ffffffff169052565b506040830151612d28604084018263ffffffff169052565b506060830151612d40606084018263ffffffff169052565b506080830151612d58608084018263ffffffff169052565b5060a0830151612d7060a084018263ffffffff169052565b5060c0830151612d8860c084018263ffffffff169052565b5060e0830151612da060e084018263ffffffff169052565b506101008381015163ffffffff9081169184019190915261012080850151821690840152610140808501519091169083015261016080840151151590830152610180928301511515929091019190915290565b8035801515811461297857600080fd5b60008060408385031215612e1657600080fd5b612e1f83612961565b91506129e560208401612df3565b600060208284031215612e3f57600080fd5b611191826129a7565b60008060008060808587031215612e5e57600080fd5b612e6785612961565b9350612e7560208601612961565b92506040850135915060608501356001600160401b03811115612e9757600080fd5b8501601f81018713612ea857600080fd5b612eb787823560208401612be5565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b0316908201526040808301511515908201526060810161091d565b60008060408385031215612f0b57600080fd5b612f1483612961565b91506129e560208401612961565b600060208284031215612f3457600080fd5b61119182612df3565b600181811c90821680612f5157607f821691505b60208210811415612f7257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600063ffffffff808316818516808303821115612fe257612fe2612fad565b01949350505050565b600081600019048311821515161561300557613005612fad565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261302f5761302f61300a565b500490565b634e487b7160e01b600052603260045260246000fd5b600063ffffffff8381169083168181101561306757613067612fad565b039392505050565b60008261307e5761307e61300a565b500690565b60008282101561309557613095612fad565b500390565b600083516130ac8184602088016128dd565b8351908301906130c08183602088016128dd565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061310c90830184612909565b9695505050505050565b60006020828403121561312857600080fd5b8151611191816128aa565b600060001982141561314757613147612fad565b5060010190565b6000821982111561316157613161612fad565b50019056fea2646970667358221220c49dbeeef56ca09be702a6c89db8d5005d85c49d88f8d9b791f02da9e6c5355364736f6c6343000809003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d57665159576a383955777445366b64756b4c41536f41515732557851624c6637416232773139783973434b702f000000000000000000000000000000000000000000000000001b9ac619e7a000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000003090000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000a

Deployed Bytecode

0x6080604052600436106102675760003560e01c806370a0823111610144578063b88d4fde116100b6578063dd48f07d1161007a578063dd48f07d14610801578063df6bb5af14610825578063e985e9c514610859578063ef6b141a14610879578063f2fde38b14610899578063f493c25f146108b957600080fd5b8063b88d4fde1461076a578063c23dc68f1461078a578063c87b56dd146107b7578063ccd5f6a2146107d7578063d4a67623146107ec57600080fd5b806395d89b411161010857806395d89b41146106c057806399a2557a146106d55780639a7cfa4f146106f5578063a22cb46514610722578063a71bbebe14610742578063aa0739071461075557600080fd5b806370a0823114610620578063715018a614610640578063750521f5146106555780638462151c146106755780638da5cb5b146106a257600080fd5b80632372bb83116101dd5780633ccfd60b116101a15780633ccfd60b1461056457806342842e0e146105795780634df22a54146105995780635bbb2177146105b35780636352211e146105e0578063653a819e1461060057600080fd5b80632372bb831461046957806323b872dd1461049d5780632a55205a146104bd57806333c5f076146104fc57806337049add1461053057600080fd5b80630e2351e21161022f5780630e2351e21461036657806317a5aced1461039a57806318160ddd146103ba5780631a3c4b73146103dd57806322f4596f14610401578063235b6ea11461043557600080fd5b806301ffc9a71461026c5780630517431e146102a157806306fdde03146102ea578063081812fc1461030c578063095ea7b314610344575b600080fd5b34801561027857600080fd5b5061028c6102873660046128c0565b6108dd565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102d57f00000000000000000000000000000000000000000000000000000000000003e881565b60405163ffffffff9091168152602001610298565b3480156102f657600080fd5b506102ff610923565b6040516102989190612935565b34801561031857600080fd5b5061032c610327366004612948565b6109b5565b6040516001600160a01b039091168152602001610298565b34801561035057600080fd5b5061036461035f36600461297d565b6109f9565b005b34801561037257600080fd5b506102d57f000000000000000000000000000000000000000000000000000000000000000a81565b3480156103a657600080fd5b506103646103b53660046129bb565b610a87565b3480156103c657600080fd5b50600354600254035b604051908152602001610298565b3480156103e957600080fd5b50600a546102d590600160e01b900463ffffffff1681565b34801561040d57600080fd5b506102d57f000000000000000000000000000000000000000000000000000000000000271081565b34801561044157600080fd5b506103cf7f000000000000000000000000000000000000000000000000001b9ac619e7a00081565b34801561047557600080fd5b506102d57f00000000000000000000000000000000000000000000000000000000000007d081565b3480156104a957600080fd5b506103646104b83660046129ee565b610b9b565b3480156104c957600080fd5b506104dd6104d8366004612a2a565b610ba6565b604080516001600160a01b039093168352602083019190915201610298565b34801561050857600080fd5b506103cf7fed1e29848866e312583c93e8623eac569d7850d4e9c4d98c6f10b88eef2cfee381565b34801561053c57600080fd5b506102d57f000000000000000000000000000000000000000000000000000000000000030981565b34801561057057600080fd5b50610364610c52565b34801561058557600080fd5b506103646105943660046129ee565b610c88565b3480156105a557600080fd5b50600b5461028c9060ff1681565b3480156105bf57600080fd5b506105d36105ce366004612a92565b610ca3565b6040516102989190612b37565b3480156105ec57600080fd5b5061032c6105fb366004612948565b610d69565b34801561060c57600080fd5b5061036461061b366004612ba1565b610d7b565b34801561062c57600080fd5b506103cf61063b366004612bca565b610dc3565b34801561064c57600080fd5b50610364610e11565b34801561066157600080fd5b50610364610670366004612c3c565b610e45565b34801561068157600080fd5b50610695610690366004612bca565b610e82565b6040516102989190612c84565b3480156106ae57600080fd5b50600a546001600160a01b031661032c565b3480156106cc57600080fd5b506102ff610fcf565b3480156106e157600080fd5b506106956106f0366004612cbc565b610fde565b34801561070157600080fd5b50610715610710366004612bca565b611198565b6040516102989190612cef565b34801561072e57600080fd5b5061036461073d366004612e03565b611490565b610364610750366004612e2d565b611526565b34801561076157600080fd5b506102d56119d2565b34801561077657600080fd5b50610364610785366004612e48565b6119fd565b34801561079657600080fd5b506107aa6107a5366004612948565b611a4e565b6040516102989190612ec3565b3480156107c357600080fd5b506102ff6107d2366004612948565b611afc565b3480156107e357600080fd5b506102d5611be5565b3480156107f857600080fd5b506102ff611c31565b34801561080d57600080fd5b50600a546102d590600160a01b900463ffffffff1681565b34801561083157600080fd5b506102d57f000000000000000000000000000000000000000000000000000000000000000381565b34801561086557600080fd5b5061028c610874366004612ef8565b611cbf565b34801561088557600080fd5b50610364610894366004612f22565b611ced565b3480156108a557600080fd5b506103646108b4366004612bca565b611d2a565b3480156108c557600080fd5b50600a546102d590600160c01b900463ffffffff1681565b60006001600160e01b0319821663152a902d60e11b148061090e57506001600160e01b031982166380ac58cd60e01b145b8061091d575061091d82611dc2565b92915050565b60606004805461093290612f3d565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90612f3d565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b5050505050905090565b60006109c082611e02565b6109dd576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b6000610a0482610d69565b9050806001600160a01b0316836001600160a01b03161415610a395760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a595750610a578133611cbf565b155b15610a77576040516367d9dca160e11b815260040160405180910390fd5b610a82838383611e2e565b505050565b600a546001600160a01b03163314610aba5760405162461bcd60e51b8152600401610ab190612f78565b60405180910390fd5b80600a60148282829054906101000a900463ffffffff16610adb9190612fc3565b92506101000a81548163ffffffff021916908363ffffffff1602179055507f00000000000000000000000000000000000000000000000000000000000003e863ffffffff16600a60149054906101000a900463ffffffff1663ffffffff161115610b875760405162461bcd60e51b815260206004820152601a60248201527f527562626973683a20457863656564206d617820737570706c790000000000006044820152606401610ab1565b610b97828263ffffffff16611e8a565b5050565b610a82838383611ea4565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c1b5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610c3a906001600160601b031687612feb565b610c449190613020565b915196919550909350505050565b600a546001600160a01b03163314610c7c5760405162461bcd60e51b8152600401610ab190612f78565b610c863347612092565b565b610a82838383604051806020016040528060008152506119fd565b80516060906000816001600160401b03811115610cc257610cc2612a4c565b604051908082528060200260200182016040528015610d0d57816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610ce05790505b50905060005b828114610d6157610d3c858281518110610d2f57610d2f613034565b6020026020010151611a4e565b828281518110610d4e57610d4e613034565b6020908102919091010152600101610d13565b509392505050565b6000610d74826121ab565b5192915050565b600a546001600160a01b03163314610da55760405162461bcd60e51b8152600401610ab190612f78565b610dc0610dba600a546001600160a01b031690565b826122c5565b50565b60006001600160a01b038216610dec576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b600a546001600160a01b03163314610e3b5760405162461bcd60e51b8152600401610ab190612f78565b610c8660006123c2565b600a546001600160a01b03163314610e6f5760405162461bcd60e51b8152600401610ab190612f78565b8051610b9790600c906020840190612811565b60606000806000610e9285610dc3565b90506000816001600160401b03811115610eae57610eae612a4c565b604051908082528060200260200182016040528015610ed7578160200160208202803683370190505b509050610efd604080516060810182526000808252602082018190529181019190915290565b60005b838614610fc357600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250610f6657610fbb565b81516001600160a01b031615610f7b57815194505b876001600160a01b0316856001600160a01b03161415610fbb5780838780600101985081518110610fae57610fae613034565b6020026020010181815250505b600101610f00565b50909695505050505050565b60606005805461093290612f3d565b606081831061100057604051631960ccad60e11b815260040160405180910390fd5b60025460009080841115611012578093505b600061101d87610dc3565b90508486101561103c5785850381811015611036578091505b50611040565b5060005b6000816001600160401b0381111561105a5761105a612a4c565b604051908082528060200260200182016040528015611083578160200160208202803683370190505b5090508161109657935061119192505050565b60006110a188611a4e565b9050600081604001516110b2575080515b885b8881141580156110c45750848714155b1561118557600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925293506111285761117d565b82516001600160a01b03161561113d57825191505b8a6001600160a01b0316826001600160a01b0316141561117d578084888060010199508151811061117057611170613034565b6020026020010181815250505b6001016110b4565b50505092835250909150505b9392505050565b604080516101a081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290529061124b7f00000000000000000000000000000000000000000000000000000000000003e87f000000000000000000000000000000000000000000000000000000000000271061304a565b600a54909150600090600160a01b900463ffffffff1661126a60025490565b611274919061304a565b9050604051806101a001604052807f000000000000000000000000000000000000000000000000001b9ac619e7a00081526020017f000000000000000000000000000000000000000000000000000000000000271063ffffffff1681526020018363ffffffff1681526020017f00000000000000000000000000000000000000000000000000000000000007d063ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000030963ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000363ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000a63ffffffff1681526020018263ffffffff168152602001600a601c9054906101000a900463ffffffff167f00000000000000000000000000000000000000000000000000000000000007d06113da919061304a565b63ffffffff168152602001600a60189054906101000a900463ffffffff167f0000000000000000000000000000000000000000000000000000000000000309611423919061304a565b63ffffffff16815260200161145e866001600160a01b03166000908152600760205260409020546001600160401b03600160401b9091041690565b63ffffffff90811682529384169290931691909110156020830152600b5460ff16151560409092019190915292915050565b6001600160a01b0382163314156114ba5760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b5460ff166115785760405162461bcd60e51b815260206004820152601c60248201527f527562626973683a2053616c65206973206e6f742073746172746564000000006044820152606401610ab1565b60006115826119d2565b9050600061158e611be5565b9050611598611be5565b63ffffffff166115a88385612fc3565b63ffffffff1611156115fc5760405162461bcd60e51b815260206004820152601a60248201527f527562626973683a20457863656564206d617820737570706c790000000000006044820152606401610ab1565b33600090815260076020526040902054600160401b90046001600160401b031663ffffffff7f000000000000000000000000000000000000000000000000000000000000000a1661164d8286612fc3565b63ffffffff1611156116a15760405162461bcd60e51b815260206004820152601c60248201527f527562626973683a204578636565642077616c6c6574206c696d6974000000006044820152606401610ab1565b7f0000000000000000000000000000000000000000000000000000000000000003600063ffffffff808316908416101561170c5760006116e1848461304a565b90508663ffffffff168163ffffffff16116116fc57806116fe565b865b6117089083612fc3565b9150505b63ffffffff821661171d8785612fc3565b63ffffffff16111561190e576000611735838861304a565b600a54909150600090600160c01b900463ffffffff1681611776827f000000000000000000000000000000000000000000000000000000000000030961304a565b905063ffffffff811615611909576040516bffffffffffffffffffffffff193360601b1660208201526001600160e01b031960e08b901b1660348201524460388201527fed1e29848866e312583c93e8623eac569d7850d4e9c4d98c6f10b88eef2cfee360588201526000906078016040516020818303038152906040528051906020012060001c905060005b8563ffffffff168110801561181e575060008363ffffffff16115b15611874578263ffffffff168a63ffffffff168361ffff16611840919061306f565b61ffff16101561186557611855600186612fc3565b945061186260018461304a565b92505b60109190911c90600101611803565b5063ffffffff8416156119075761188b8487612fc3565b955083600a60188282829054906101000a900463ffffffff166118ae9190612fc3565b82546101009290920a63ffffffff8181021990931691831602179091556040805133815291871660208301527f5bec38cfe0a4f78d8e72f6a26f9a6a807d47bd425f5c02c05ebeb08ac73a629c92500160405180910390a15b505b505050505b60007f000000000000000000000000000000000000000000000000001b9ac619e7a00061193b838961304a565b63ffffffff1661194b9190612feb565b90508034101561199d5760405162461bcd60e51b815260206004820152601a60248201527f527562626973683a20496e73756666696369656e742066756e640000000000006044820152606401610ab1565b6119ad338863ffffffff16611e8a565b803411156119c9576119c96119c28234613083565b3390612092565b50505050505050565b600a54600090600160a01b900463ffffffff166119ee60025490565b6119f8919061304a565b905090565b611a08848484611ea4565b6001600160a01b0383163b15158015611a2a5750611a2884848484612414565b155b15611a48576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281018390529091506002548310611a935792915050565b50600082815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290611af35792915050565b611191836121ab565b6060611b0782611e02565b611b2457604051630a14c4b560e41b815260040160405180910390fd5b6000600c8054611b3390612f3d565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5f90612f3d565b8015611bac5780601f10611b8157610100808354040283529160200191611bac565b820191906000526020600020905b815481529060010190602001808311611b8f57829003601f168201915b5050505050905080611bbd8461250c565b604051602001611bce92919061309a565b604051602081830303815290604052915050919050565b60006119f87f00000000000000000000000000000000000000000000000000000000000003e87f000000000000000000000000000000000000000000000000000000000000271061304a565b600c8054611c3e90612f3d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c6a90612f3d565b8015611cb75780601f10611c8c57610100808354040283529160200191611cb7565b820191906000526020600020905b815481529060010190602001808311611c9a57829003601f168201915b505050505081565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b03163314611d175760405162461bcd60e51b8152600401610ab190612f78565b600b805460ff1916911515919091179055565b600a546001600160a01b03163314611d545760405162461bcd60e51b8152600401610ab190612f78565b6001600160a01b038116611db95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ab1565b610dc0816123c2565b60006001600160e01b031982166380ac58cd60e01b1480611df357506001600160e01b03198216635b5e139f60e01b145b8061091d575061091d82612609565b60006002548210801561091d575050600090815260066020526040902054600160e01b900460ff161590565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b9782826040518060200160405280600081525061263e565b6000611eaf826121ab565b9050836001600160a01b031681600001516001600160a01b031614611ee65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611f045750611f048533611cbf565b80611f1f575033611f14846109b5565b6001600160a01b0316145b905080611f3f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611f6657604051633a954ecd60e21b815260040160405180910390fd5b611f7260008487611e2e565b6001600160a01b038581166000908152600760209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600690945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661204657600254821461204657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156120e25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610ab1565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461212f576040519150601f19603f3d011682016040523d82523d6000602084013e612134565b606091505b5050905080610a825760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610ab1565b6040805160608101825260008082526020820181905291810191909152816002548110156122ac57600081815260066020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906122aa5780516001600160a01b031615612241579392505050565b5060001901600081815260066020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156122a5579392505050565b612241565b505b604051636f96cda160e11b815260040160405180910390fd5b6127106001600160601b03821611156123335760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610ab1565b6001600160a01b0382166123895760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610ab1565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906124499033908990889088906004016130d9565b602060405180830381600087803b15801561246357600080fd5b505af1925050508015612493575060408051601f3d908101601f1916820190925261249091810190613116565b60015b6124ee573d8080156124c1576040519150601f19603f3d011682016040523d82523d6000602084013e6124c6565b606091505b5080516124e6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816125305750506040805180820190915260018152600360fc1b602082015290565b8160005b811561255a578061254481613133565b91506125539050600a83613020565b9150612534565b6000816001600160401b0381111561257457612574612a4c565b6040519080825280601f01601f19166020018201604052801561259e576020820181803683370190505b5090505b8415612504576125b3600183613083565b91506125c0600a8661306f565b6125cb90603061314e565b60f81b8183815181106125e0576125e0613034565b60200101906001600160f81b031916908160001a905350612602600a86613020565b94506125a2565b60006001600160e01b0319821663152a902d60e11b148061091d57506301ffc9a760e01b6001600160e01b031983161461091d565b610a8283838360016002546001600160a01b03851661266f57604051622e076360e81b815260040160405180910390fd5b8361268d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260076020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600690925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561273957506001600160a01b0387163b15155b156127c2575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461278a6000888480600101955088612414565b6127a7576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561273f5782600254146127bd57600080fd5b612808565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156127c3575b5060025561208b565b82805461281d90612f3d565b90600052602060002090601f01602090048101928261283f5760008555612885565b82601f1061285857805160ff1916838001178555612885565b82800160010185558215612885579182015b8281111561288557825182559160200191906001019061286a565b50612891929150612895565b5090565b5b808211156128915760008155600101612896565b6001600160e01b031981168114610dc057600080fd5b6000602082840312156128d257600080fd5b8135611191816128aa565b60005b838110156128f85781810151838201526020016128e0565b83811115611a485750506000910152565b600081518084526129218160208601602086016128dd565b601f01601f19169290920160200192915050565b6020815260006111916020830184612909565b60006020828403121561295a57600080fd5b5035919050565b80356001600160a01b038116811461297857600080fd5b919050565b6000806040838503121561299057600080fd5b61299983612961565b946020939093013593505050565b803563ffffffff8116811461297857600080fd5b600080604083850312156129ce57600080fd5b6129d783612961565b91506129e5602084016129a7565b90509250929050565b600080600060608486031215612a0357600080fd5b612a0c84612961565b9250612a1a60208501612961565b9150604084013590509250925092565b60008060408385031215612a3d57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612a8a57612a8a612a4c565b604052919050565b60006020808385031215612aa557600080fd5b82356001600160401b0380821115612abc57600080fd5b818501915085601f830112612ad057600080fd5b813581811115612ae257612ae2612a4c565b8060051b9150612af3848301612a62565b8181529183018401918481019088841115612b0d57600080fd5b938501935b83851015612b2b57843582529385019390850190612b12565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610fc357612b8e83855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612b53565b600060208284031215612bb357600080fd5b81356001600160601b038116811461119157600080fd5b600060208284031215612bdc57600080fd5b61119182612961565b60006001600160401b03831115612bfe57612bfe612a4c565b612c11601f8401601f1916602001612a62565b9050828152838383011115612c2557600080fd5b828260208301376000602084830101529392505050565b600060208284031215612c4e57600080fd5b81356001600160401b03811115612c6457600080fd5b8201601f81018413612c7557600080fd5b61250484823560208401612be5565b6020808252825182820181905260009190848201906040850190845b81811015610fc357835183529284019291840191600101612ca0565b600080600060608486031215612cd157600080fd5b612cda84612961565b95602085013595506040909401359392505050565b815181526020808301516101a0830191612d109084018263ffffffff169052565b506040830151612d28604084018263ffffffff169052565b506060830151612d40606084018263ffffffff169052565b506080830151612d58608084018263ffffffff169052565b5060a0830151612d7060a084018263ffffffff169052565b5060c0830151612d8860c084018263ffffffff169052565b5060e0830151612da060e084018263ffffffff169052565b506101008381015163ffffffff9081169184019190915261012080850151821690840152610140808501519091169083015261016080840151151590830152610180928301511515929091019190915290565b8035801515811461297857600080fd5b60008060408385031215612e1657600080fd5b612e1f83612961565b91506129e560208401612df3565b600060208284031215612e3f57600080fd5b611191826129a7565b60008060008060808587031215612e5e57600080fd5b612e6785612961565b9350612e7560208601612961565b92506040850135915060608501356001600160401b03811115612e9757600080fd5b8501601f81018713612ea857600080fd5b612eb787823560208401612be5565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b0316908201526040808301511515908201526060810161091d565b60008060408385031215612f0b57600080fd5b612f1483612961565b91506129e560208401612961565b600060208284031215612f3457600080fd5b61119182612df3565b600181811c90821680612f5157607f821691505b60208210811415612f7257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600063ffffffff808316818516808303821115612fe257612fe2612fad565b01949350505050565b600081600019048311821515161561300557613005612fad565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261302f5761302f61300a565b500490565b634e487b7160e01b600052603260045260246000fd5b600063ffffffff8381169083168181101561306757613067612fad565b039392505050565b60008261307e5761307e61300a565b500690565b60008282101561309557613095612fad565b500390565b600083516130ac8184602088016128dd565b8351908301906130c08183602088016128dd565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061310c90830184612909565b9695505050505050565b60006020828403121561312857600080fd5b8151611191816128aa565b600060001982141561314757613147612fad565b5060010190565b6000821982111561316157613161612fad565b50019056fea2646970667358221220c49dbeeef56ca09be702a6c89db8d5005d85c49d88f8d9b791f02da9e6c5355364736f6c63430008090033

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

000000000000000000000000000000000000000000000000001b9ac619e7a000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000003e800000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000003090000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000a

-----Decoded View---------------
Arg [0] : price (uint256): 7770000000000000
Arg [1] : maxSupply (uint32): 10000
Arg [2] : teamSupply (uint32): 1000
Arg [3] : instantFreeSupply (uint32): 2000
Arg [4] : randomFreeSupply (uint32): 777
Arg [5] : instantFreeWalletLimit (uint32): 3
Arg [6] : walletLimit (uint32): 10

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000001b9ac619e7a000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [3] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000309
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a


Deployed Bytecode Sourcemap

196:6873:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6094:299;;;;;;;;;;-1:-1:-1;6094:299:13;;;;;:::i;:::-;;:::i;:::-;;;661:14:14;;654:22;636:41;;624:2;609:18;6094:299:13;;;;;;;;510:35;;;;;;;;;;;;;;;;;;961:10:14;949:23;;;931:42;;919:2;904:18;510:35:13;787:192:14;7550:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9053:204::-;;;;;;;;;;-1:-1:-1;9053:204:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2084:32:14;;;2066:51;;2054:2;2039:18;9053:204:4;1920:203:14;8616:371:4;;;;;;;;;;-1:-1:-1;8616:371:4;;;;;:::i;:::-;;:::i;:::-;;703:36:13;;;;;;;;;;;;;;;6401:211;;;;;;;;;;-1:-1:-1;6401:211:13;;;;;:::i;:::-;;:::i;3686:303:4:-;;;;;;;;;;-1:-1:-1;3940:12:4;;3924:13;;:28;3686:303;;;3142:25:14;;;3130:2;3115:18;3686:303:4;2996:177:14;818:32:13;;;;;;;;;;-1:-1:-1;818:32:13;;;;-1:-1:-1;;;818:32:13;;;;;;469:34;;;;;;;;;;;;;;;431:31;;;;;;;;;;;;;;;552:42;;;;;;;;;;;;;;;9918:170:4;;;;;;;;;;-1:-1:-1;9918:170:4;;;;;:::i;:::-;;:::i;1674:494:3:-;;;;;;;;;;-1:-1:-1;1674:494:3;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3956:32:14;;;3938:51;;4020:2;4005:18;;3998:34;;;;3911:18;1674:494:3;3764:274:14;387:37:13;;;;;;;;;;;;;;;601:41;;;;;;;;;;;;;;;6956:110;;;;;;;;;;;;;:::i;10159:185:4:-;;;;;;;;;;-1:-1:-1;10159:185:4;;;;;:::i;:::-;;:::i;857:20:13:-;;;;;;;;;;-1:-1:-1;857:20:13;;;;;;;;1485:459:5;;;;;;;;;;-1:-1:-1;1485:459:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7358:125:4:-;;;;;;;;;;-1:-1:-1;7358:125:4;;;;;:::i;:::-;;:::i;6620:123:13:-;;;;;;;;;;-1:-1:-1;6620:123:13;;;;;:::i;:::-;;:::i;4806:206:4:-;;;;;;;;;;-1:-1:-1;4806:206:4;;;;;:::i;:::-;;:::i;1714:103:11:-;;;;;;;;;;;;;:::i;6849:99:13:-;;;;;;;;;;-1:-1:-1;6849:99:13;;;;;:::i;:::-;;:::i;5281:882:5:-;;;;;;;;;;-1:-1:-1;5281:882:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1063:87:11:-;;;;;;;;;;-1:-1:-1;1136:6:11;;-1:-1:-1;;;;;1136:6:11;1063:87;;7719:104:4;;;;;;;;;;;;;:::i;2334:2498:5:-;;;;;;;;;;-1:-1:-1;2334:2498:5;;;;;:::i;:::-;;:::i;4847:936:13:-;;;;;;;;;;-1:-1:-1;4847:936:13;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9329:287:4:-;;;;;;;;;;-1:-1:-1;9329:287:4;;;;;:::i;:::-;;:::i;2313:2290:13:-;;;;;;:::i;:::-;;:::i;4611:116::-;;;;;;;;;;;;;:::i;10415:369:4:-;;;;;;;;;;-1:-1:-1;10415:369:4;;;;;:::i;:::-;;:::i;917:409:5:-;;;;;;;;;;-1:-1:-1;917:409:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5791:295:13:-;;;;;;;;;;-1:-1:-1;5791:295:13;;;;;:::i;:::-;;:::i;4735:104::-;;;;;;;;;;;;;:::i;884:112::-;;;;;;;;;;;;;:::i;748:25::-;;;;;;;;;;-1:-1:-1;748:25:13;;;;-1:-1:-1;;;748:25:13;;;;;;649:47;;;;;;;;;;;;;;;9687:164:4;;;;;;;;;;-1:-1:-1;9687:164:4;;;;;:::i;:::-;;:::i;6751:90:13:-;;;;;;;;;;-1:-1:-1;6751:90:13;;;;;:::i;:::-;;:::i;1972:201:11:-;;;;;;;;;;-1:-1:-1;1972:201:11;;;;;:::i;:::-;;:::i;780:31:13:-;;;;;;;;;;-1:-1:-1;780:31:13;;;;-1:-1:-1;;;780:31:13;;;;;;6094:299;6197:4;-1:-1:-1;;;;;;6234:41:13;;-1:-1:-1;;;6234:41:13;;:98;;-1:-1:-1;;;;;;;6292:40:13;;-1:-1:-1;;;6292:40:13;6234:98;:151;;;;6349:36;6373:11;6349:23;:36::i;:::-;6214:171;6094:299;-1:-1:-1;;6094:299:13:o;7550:100:4:-;7604:13;7637:5;7630:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7550:100;:::o;9053:204::-;9121:7;9146:16;9154:7;9146;:16::i;:::-;9141:64;;9171:34;;-1:-1:-1;;;9171:34:4;;;;;;;;;;;9141:64;-1:-1:-1;9225:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;9225:24:4;;9053:204::o;8616:371::-;8689:13;8705:24;8721:7;8705:15;:24::i;:::-;8689:40;;8750:5;-1:-1:-1;;;;;8744:11:4;:2;-1:-1:-1;;;;;8744:11:4;;8740:48;;;8764:24;;-1:-1:-1;;;8764:24:4;;;;;;;;;;;8740:48;736:10:1;-1:-1:-1;;;;;8805:21:4;;;;;;:63;;-1:-1:-1;8831:37:4;8848:5;736:10:1;9687:164:4;:::i;8831:37::-;8830:38;8805:63;8801:138;;;8892:35;;-1:-1:-1;;;8892:35:4;;;;;;;;;;;8801:138;8951:28;8960:2;8964:7;8973:5;8951:8;:28::i;:::-;8678:309;8616:371;;:::o;6401:211:13:-;1136:6:11;;-1:-1:-1;;;;;1136:6:11;736:10:1;1283:23:11;1275:68;;;;-1:-1:-1;;;1275:68:11;;;;;;;:::i;:::-;;;;;;;;;6490:6:13::1;6475:11;;:21;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;6530:11;6515:26;;:11;;;;;;;;;;;:26;;;;6507:65;;;::::0;-1:-1:-1;;;6507:65:13;;14003:2:14;6507:65:13::1;::::0;::::1;13985:21:14::0;14042:2;14022:18;;;14015:30;14081:28;14061:18;;;14054:56;14127:18;;6507:65:13::1;13801:350:14::0;6507:65:13::1;6583:21;6593:2;6597:6;6583:21;;:9;:21::i;:::-;6401:211:::0;;:::o;9918:170:4:-;10052:28;10062:4;10068:2;10072:7;10052:9;:28::i;1674:494:3:-;1818:7;1881:27;;;:17;:27;;;;;;;;1852:56;;;;;;;;;-1:-1:-1;;;;;1852:56:3;;;;;-1:-1:-1;;;1852:56:3;;;-1:-1:-1;;;;;1852:56:3;;;;;;;;1818:7;;1921:92;;-1:-1:-1;1972:29:3;;;;;;;;;-1:-1:-1;1972:29:3;-1:-1:-1;;;;;1972:29:3;;;;-1:-1:-1;;;1972:29:3;;-1:-1:-1;;;;;1972:29:3;;;;;1921:92;2063:23;;;;2025:21;;2534:5;;2050:36;;-1:-1:-1;;;;;2050:36:3;:10;:36;:::i;:::-;2049:58;;;;:::i;:::-;2128:16;;;;;-1:-1:-1;1674:494:3;;-1:-1:-1;;;;1674:494:3:o;6956:110:13:-;1136:6:11;;-1:-1:-1;;;;;1136:6:11;736:10:1;1283:23:11;1275:68;;;;-1:-1:-1;;;1275:68:11;;;;;;;:::i;:::-;7006:52:13::1;7014:10;7036:21;7006:29;:52::i;:::-;6956:110::o:0;10159:185:4:-;10297:39;10314:4;10320:2;10324:7;10297:39;;;;;;;;;;;;:16;:39::i;1485:459:5:-;1651:15;;1565:23;;1626:22;1651:15;-1:-1:-1;;;;;1718:36:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;1718:36:5;;-1:-1:-1;;1718:36:5;;;;;;;;;;;;1681:73;;1774:9;1769:125;1790:14;1785:1;:19;1769:125;;1846:32;1866:8;1875:1;1866:11;;;;;;;;:::i;:::-;;;;;;;1846:19;:32::i;:::-;1830:10;1841:1;1830:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;1806:3;;1769:125;;;-1:-1:-1;1915:10:5;1485:459;-1:-1:-1;;;1485:459:5:o;7358:125:4:-;7422:7;7449:21;7462:7;7449:12;:21::i;:::-;:26;;7358:125;-1:-1:-1;;7358:125:4:o;6620:123:13:-;1136:6:11;;-1:-1:-1;;;;;1136:6:11;736:10:1;1283:23:11;1275:68;;;;-1:-1:-1;;;1275:68:11;;;;;;;:::i;:::-;6694:41:13::1;6713:7;1136:6:11::0;;-1:-1:-1;;;;;1136:6:11;;1063:87;6713:7:13::1;6722:12;6694:18;:41::i;:::-;6620:123:::0;:::o;4806:206:4:-;4870:7;-1:-1:-1;;;;;4894:19:4;;4890:60;;4922:28;;-1:-1:-1;;;4922:28:4;;;;;;;;;;;4890:60;-1:-1:-1;;;;;;4976:19:4;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4976:27:4;;4806:206::o;1714:103:11:-;1136:6;;-1:-1:-1;;;;;1136:6:11;736:10:1;1283:23:11;1275:68;;;;-1:-1:-1;;;1275:68:11;;;;;;;:::i;:::-;1779:30:::1;1806:1;1779:18;:30::i;6849:99:13:-:0;1136:6:11;;-1:-1:-1;;;;;1136:6:11;736:10:1;1283:23:11;1275:68;;;;-1:-1:-1;;;1275:68:11;;;;;;;:::i;:::-;6922:18:13;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;5281:882:5:-:0;5342:16;5396:19;5430:25;5470:22;5495:16;5505:5;5495:9;:16::i;:::-;5470:41;;5526:25;5568:14;-1:-1:-1;;;;;5554:29:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5554:29:5;;5526:57;;5598:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;5598:31:5;5649:9;5644:471;5693:14;5678:11;:29;5644:471;;5745:14;;;;:11;:14;;;;;;;;;5733:26;;;;;;;;;-1:-1:-1;;;;;5733:26:5;;;;-1:-1:-1;;;5733:26:5;;-1:-1:-1;;;;;5733:26:5;;;;;;;;-1:-1:-1;;;5733:26:5;;;;;;;;;;;;;;;;-1:-1:-1;5778:73:5;;5823:8;;5778:73;5873:14;;-1:-1:-1;;;;;5873:28:5;;5869:111;;5946:14;;;-1:-1:-1;5869:111:5;6023:5;-1:-1:-1;;;;;6002:26:5;:17;-1:-1:-1;;;;;6002:26:5;;5998:102;;;6079:1;6053:8;6062:13;;;;;;6053:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;5998:102;5709:3;;5644:471;;;-1:-1:-1;6136:8:5;;5281:882;-1:-1:-1;;;;;;5281:882:5:o;7719:104:4:-;7775:13;7808:7;7801:14;;;;;:::i;2334:2498:5:-;2460:16;2527:4;2518:5;:13;2514:45;;2540:19;;-1:-1:-1;;;2540:19:5;;;;;;;;;;;2514:45;2628:13;;2574:19;;2882:9;2875:4;:16;2871:73;;;2919:9;2912:16;;2871:73;2958:25;2986:16;2996:5;2986:9;:16::i;:::-;2958:44;;3180:4;3172:5;:12;3168:278;;;3227:12;;;3262:31;;;3258:111;;;3338:11;3318:31;;3258:111;3186:198;3168:278;;;-1:-1:-1;3429:1:5;3168:278;3460:25;3502:17;-1:-1:-1;;;;;3488:32:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3488:32:5;-1:-1:-1;3460:60:5;-1:-1:-1;3539:22:5;3535:78;;3589:8;-1:-1:-1;3582:15:5;;-1:-1:-1;;;3582:15:5;3535:78;3757:31;3791:26;3811:5;3791:19;:26::i;:::-;3757:60;;3832:25;4077:9;:16;;;4072:92;;-1:-1:-1;4134:14:5;;4072:92;4195:5;4178:477;4207:4;4202:1;:9;;:45;;;;;4230:17;4215:11;:32;;4202:45;4178:477;;;4285:14;;;;:11;:14;;;;;;;;;4273:26;;;;;;;;;-1:-1:-1;;;;;4273:26:5;;;;-1:-1:-1;;;4273:26:5;;-1:-1:-1;;;;;4273:26:5;;;;;;;;-1:-1:-1;;;4273:26:5;;;;;;;;;;;;;;;;-1:-1:-1;4318:73:5;;4363:8;;4318:73;4413:14;;-1:-1:-1;;;;;4413:28:5;;4409:111;;4486:14;;;-1:-1:-1;4409:111:5;4563:5;-1:-1:-1;;;;;4542:26:5;:17;-1:-1:-1;;;;;4542:26:5;;4538:102;;;4619:1;4593:8;4602:13;;;;;;4593:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;4538:102;4249:3;;4178:477;;;-1:-1:-1;;;4740:29:5;;;-1:-1:-1;4747:8:5;;-1:-1:-1;;2334:2498:5;;;;;;:::o;4847:936:13:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4951:24:13;4964:11;4951:10;:24;:::i;:::-;5041:11;;4929:46;;-1:-1:-1;4986:19:13;;-1:-1:-1;;;5041:11:13;;;;5015:22;4315:13:4;;;4082:283;5015:22:13;5008:44;;;;:::i;:::-;4986:66;;5072:703;;;;;;;;5124:6;5072:703;;;;5156:10;5072:703;;;;;;5194:12;5072:703;;;;;;5240:18;5072:703;;;;;;5291:17;5072:703;;;;;;5347:23;5072:703;;;;;;5398:12;5072:703;;;;;;5463:12;5072:703;;;;;;5532:18;;;;;;;;;;;5511;:39;;;;:::i;:::-;5072:703;;;;;;5605:17;;;;;;;;;;;5585;:37;;;;:::i;:::-;5072:703;;;;;;5709:21;5723:6;-1:-1:-1;;;;;5190:19:4;5155:7;5190:19;;;:12;:19;;;;;:32;-1:-1:-1;;;;;;;;5190:32:4;;;;;5094:137;5709:21:13;5072:703;;;;;;5647:28;;;;;;;;;;;;5072:703;;;;5755:8;;;;5072:703;;;;;;;;;;5065:710;4847:936;-1:-1:-1;;4847:936:13:o;9329:287:4:-;-1:-1:-1;;;;;9428:24:4;;736:10:1;9428:24:4;9424:54;;;9461:17;;-1:-1:-1;;;9461:17:4;;;;;;;;;;;9424:54;736:10:1;9491:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;9491:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;9491:53:4;;;;;;;;;;9560:48;;636:41:14;;;9491:42:4;;736:10:1;9560:48:4;;609:18:14;9560:48:4;;;;;;;9329:287;;:::o;2313:2290:13:-;2378:8;;;;2370:49;;;;-1:-1:-1;;;2370:49:13;;15146:2:14;2370:49:13;;;15128:21:14;15185:2;15165:18;;;15158:30;15224;15204:18;;;15197:58;15272:18;;2370:49:13;14944:352:14;2370:49:13;2432:19;2454:15;:13;:15::i;:::-;2432:37;;2480:19;2502:15;:13;:15::i;:::-;2480:37;;2561:15;:13;:15::i;:::-;2536:40;;:21;2545:12;2536:6;:21;:::i;:::-;:40;;;;2528:79;;;;-1:-1:-1;;;2528:79:13;;14003:2:14;2528:79:13;;;13985:21:14;14042:2;14022:18;;;14015:30;14081:28;14061:18;;;14054:56;14127:18;;2528:79:13;13801:350:14;2528:79:13;2657:10;2620:13;5190:19:4;;;:12;:19;;;;;:32;-1:-1:-1;;;5190:32:4;;-1:-1:-1;;;;;5190:32:4;2688:31:13;2707:12;2688:31;:15;5190:32:4;2688:6:13;:15;:::i;:::-;:31;;;;2680:72;;;;-1:-1:-1;;;2680:72:13;;15503:2:14;2680:72:13;;;15485:21:14;15542:2;15522:18;;;15515:30;15581;15561:18;;;15554:58;15629:18;;2680:72:13;15301:352:14;2680:72:13;2797:23;2765:29;2867:31;;;;;;;;2863:170;;;2915:12;2930:31;2955:6;2930:22;:31;:::i;:::-;2915:46;;2998:6;2990:14;;:5;:14;;;:31;;3016:5;2990:31;;;3007:6;2990:31;2976:45;;;;:::i;:::-;;;2900:133;2863:170;3049:40;;;:15;3058:6;3049;:15;:::i;:::-;:40;;;3045:1242;;;3106:25;3134:31;3143:22;3134:6;:31;:::i;:::-;3248:17;;3106:59;;-1:-1:-1;3180:23:13;;-1:-1:-1;;;3248:17:13;;;;3180:23;3295:36;3248:17;3295;:36;:::i;:::-;3280:51;-1:-1:-1;3352:9:13;;;;3348:928;;3421:159;;-1:-1:-1;;3460:10:13;15889:2:14;15885:15;15881:53;3421:159:13;;;15869:66:14;-1:-1:-1;;;;;;15991:3:14;15969:16;;;15965:43;15951:12;;;15944:65;3528:16:13;16025:12:14;;;16018:28;3567:12:13;16062::14;;;16055:28;3382:18:13;;16099:12:14;;3421:159:13;;;;;;;;;;;;3411:170;;;;;;3403:179;;3382:200;;3608:9;3603:412;3627:18;3623:22;;:1;:22;:35;;;;;3657:1;3649:5;:9;;;3623:35;3603:412;;;3736:5;3689:52;;3720:12;3696:36;;3697:10;3710:6;3697:19;3696:36;;;;:::i;:::-;3689:52;;;3685:167;;;3770:21;3790:1;3770:21;;:::i;:::-;;-1:-1:-1;3818:10:13;3827:1;3818:10;;:::i;:::-;;;3685:167;3970:2;3956:16;;;;;3913:3;;3603:412;;;-1:-1:-1;4039:20:13;;;;4035:226;;4084:30;4098:16;4084:30;;:::i;:::-;;;4158:16;4137:17;;:37;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;4202:39;;;4212:10;16411:51:14;;16498:23;;;16493:2;16478:18;;16471:51;4202:39:13;;-1:-1:-1;16384:18:14;4202:39:13;;;;;;;4035:226;3363:913;3348:928;3091:1196;;;;3045:1242;4299:21;4347:6;4324:19;4333:10;4324:6;:19;:::i;:::-;4323:30;;;;;;:::i;:::-;4299:54;;4385:13;4372:9;:26;;4364:65;;;;-1:-1:-1;;;4364:65:13;;16735:2:14;4364:65:13;;;16717:21:14;16774:2;16754:18;;;16747:30;16813:28;16793:18;;;16786:56;16859:18;;4364:65:13;16533:350:14;4364:65:13;4442:29;4452:10;4464:6;4442:29;;:9;:29::i;:::-;4498:13;4486:9;:25;4482:114;;;4528:56;4558:25;4570:13;4558:9;:25;:::i;:::-;4536:10;;4528:29;:56::i;:::-;2359:2244;;;;;;2313:2290;:::o;4611:116::-;4708:11;;4657:6;;-1:-1:-1;;;4708:11:13;;;;4690:14;4315:13:4;;;4082:283;4690:14:13;4683:36;;;;:::i;:::-;4676:43;;4611:116;:::o;10415:369:4:-;10582:28;10592:4;10598:2;10602:7;10582:9;:28::i;:::-;-1:-1:-1;;;;;10625:13:4;;1505:19:0;:23;;10625:76:4;;;;;10645:56;10676:4;10682:2;10686:7;10695:5;10645:30;:56::i;:::-;10644:57;10625:76;10621:156;;;10725:40;;-1:-1:-1;;;10725:40:4;;;;;;;;;;;10621:156;10415:369;;;;:::o;917:409:5:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1064:53:5;1104:13;;1093:7;:24;1060:102;;1141:9;917:409;-1:-1:-1;;917:409:5:o;1060:102::-;-1:-1:-1;1184:20:5;;;;:11;:20;;;;;;;;;1172:32;;;;;;;;;-1:-1:-1;;;;;1172:32:5;;;;-1:-1:-1;;;1172:32:5;;-1:-1:-1;;;;;1172:32:5;;;;;;;;-1:-1:-1;;;1172:32:5;;;;;;;;;;;;;;;;1215:65;;1259:9;917:409;-1:-1:-1;;917:409:5:o;1215:65::-;1297:21;1310:7;1297:12;:21::i;5791:295:13:-;5864:13;5895:16;5903:7;5895;:16::i;:::-;5890:59;;5920:29;;-1:-1:-1;;;5920:29:13;;;;;;;;;;;5890:59;5962:21;5986:12;5962:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6040:7;6049:18;:7;:16;:18::i;:::-;6023:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6009:69;;;5791:295;;;:::o;4735:104::-;4781:6;4807:24;4820:11;4807:10;:24;:::i;884:112::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9687:164:4:-;-1:-1:-1;;;;;9808:25:4;;;9784:4;9808:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;9687:164::o;6751:90:13:-;1136:6:11;;-1:-1:-1;;;;;1136:6:11;736:10:1;1283:23:11;1275:68;;;;-1:-1:-1;;;1275:68:11;;;;;;;:::i;:::-;6815:8:13::1;:18:::0;;-1:-1:-1;;6815:18:13::1;::::0;::::1;;::::0;;;::::1;::::0;;6751:90::o;1972:201:11:-;1136:6;;-1:-1:-1;;;;;1136:6:11;736:10:1;1283:23:11;1275:68;;;;-1:-1:-1;;;1275:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;2061:22:11;::::1;2053:73;;;::::0;-1:-1:-1;;;2053:73:11;;17862:2:14;2053:73:11::1;::::0;::::1;17844:21:14::0;17901:2;17881:18;;;17874:30;17940:34;17920:18;;;17913:62;-1:-1:-1;;;17991:18:14;;;17984:36;18037:19;;2053:73:11::1;17660:402:14::0;2053:73:11::1;2137:28;2156:8;2137:18;:28::i;4437:305:4:-:0;4539:4;-1:-1:-1;;;;;;4576:40:4;;-1:-1:-1;;;4576:40:4;;:105;;-1:-1:-1;;;;;;;4633:48:4;;-1:-1:-1;;;4633:48:4;4576:105;:158;;;;4698:36;4722:11;4698:23;:36::i;11039:174::-;11096:4;11160:13;;11150:7;:23;11120:85;;;;-1:-1:-1;;11178:20:4;;;;:11;:20;;;;;:27;-1:-1:-1;;;11178:27:4;;;;11177:28;;11039:174::o;19196:196::-;19311:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19311:29:4;-1:-1:-1;;;;;19311:29:4;;;;;;;;;19356:28;;19311:24;;19356:28;;;;;;;19196:196;;;:::o;11221:104::-;11290:27;11300:2;11304:8;11290:27;;;;;;;;;;;;:9;:27::i;14139:2130::-;14254:35;14292:21;14305:7;14292:12;:21::i;:::-;14254:59;;14352:4;-1:-1:-1;;;;;14330:26:4;:13;:18;;;-1:-1:-1;;;;;14330:26:4;;14326:67;;14365:28;;-1:-1:-1;;;14365:28:4;;;;;;;;;;;14326:67;14406:22;736:10:1;-1:-1:-1;;;;;14432:20:4;;;;:73;;-1:-1:-1;14469:36:4;14486:4;736:10:1;9687:164:4;:::i;14469:36::-;14432:126;;;-1:-1:-1;736:10:1;14522:20:4;14534:7;14522:11;:20::i;:::-;-1:-1:-1;;;;;14522:36:4;;14432:126;14406:153;;14577:17;14572:66;;14603:35;;-1:-1:-1;;;14603:35:4;;;;;;;;;;;14572:66;-1:-1:-1;;;;;14653:16:4;;14649:52;;14678:23;;-1:-1:-1;;;14678:23:4;;;;;;;;;;;14649:52;14822:35;14839:1;14843:7;14852:4;14822:8;:35::i;:::-;-1:-1:-1;;;;;15153:18:4;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;15153:31:4;;;-1:-1:-1;;;;;15153:31:4;;;-1:-1:-1;;15153:31:4;;;;;;;15199:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;15199:29:4;;;;;;;;;;;15279:20;;;:11;:20;;;;;;15314:18;;-1:-1:-1;;;;;;15347:49:4;;;;-1:-1:-1;;;15380:15:4;15347:49;;;;;;;;;;15670:11;;15730:24;;;;;15773:13;;15279:20;;15730:24;;15773:13;15769:384;;15983:13;;15968:11;:28;15964:174;;16021:20;;16090:28;;;;-1:-1:-1;;;;;16064:54:4;-1:-1:-1;;;16064:54:4;-1:-1:-1;;;;;;16064:54:4;;;-1:-1:-1;;;;;16021:20:4;;16064:54;;;;15964:174;15128:1036;;;16200:7;16196:2;-1:-1:-1;;;;;16181:27:4;16190:4;-1:-1:-1;;;;;16181:27:4;;;;;;;;;;;16219:42;14243:2026;;14139:2130;;;:::o;2471:317:0:-;2586:6;2561:21;:31;;2553:73;;;;-1:-1:-1;;;2553:73:0;;18269:2:14;2553:73:0;;;18251:21:14;18308:2;18288:18;;;18281:30;18347:31;18327:18;;;18320:59;18396:18;;2553:73:0;18067:353:14;2553:73:0;2640:12;2658:9;-1:-1:-1;;;;;2658:14:0;2680:6;2658:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2639:52;;;2710:7;2702:78;;;;-1:-1:-1;;;2702:78:0;;18837:2:14;2702:78:0;;;18819:21:14;18876:2;18856:18;;;18849:30;18915:34;18895:18;;;18888:62;18986:28;18966:18;;;18959:56;19032:19;;2702:78:0;18635:422:14;6187:1109:4;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;6298:7:4;6381:13;;6374:4;:20;6343:886;;;6415:31;6449:17;;;:11;:17;;;;;;;;;6415:51;;;;;;;;;-1:-1:-1;;;;;6415:51:4;;;;-1:-1:-1;;;6415:51:4;;-1:-1:-1;;;;;6415:51:4;;;;;;;;-1:-1:-1;;;6415:51:4;;;;;;;;;;;;;;6485:729;;6535:14;;-1:-1:-1;;;;;6535:28:4;;6531:101;;6599:9;6187:1109;-1:-1:-1;;;6187:1109:4:o;6531:101::-;-1:-1:-1;;;6974:6:4;7019:17;;;;:11;:17;;;;;;;;;7007:29;;;;;;;;;-1:-1:-1;;;;;7007:29:4;;;;;-1:-1:-1;;;7007:29:4;;-1:-1:-1;;;;;7007:29:4;;;;;;;;-1:-1:-1;;;7007:29:4;;;;;;;;;;;;;7067:28;7063:109;;7135:9;6187:1109;-1:-1:-1;;;6187:1109:4:o;7063:109::-;6934:261;;;6396:833;6343:886;7257:31;;-1:-1:-1;;;7257:31:4;;;;;;;;;;;2818:332:3;2534:5;-1:-1:-1;;;;;2921:33:3;;;;2913:88;;;;-1:-1:-1;;;2913:88:3;;19264:2:14;2913:88:3;;;19246:21:14;19303:2;19283:18;;;19276:30;19342:34;19322:18;;;19315:62;-1:-1:-1;;;19393:18:14;;;19386:40;19443:19;;2913:88:3;19062:406:14;2913:88:3;-1:-1:-1;;;;;3020:22:3;;3012:60;;;;-1:-1:-1;;;3012:60:3;;19675:2:14;3012:60:3;;;19657:21:14;19714:2;19694:18;;;19687:30;19753:27;19733:18;;;19726:55;19798:18;;3012:60:3;19473:349:14;3012:60:3;3107:35;;;;;;;;;-1:-1:-1;;;;;3107:35:3;;;;;;-1:-1:-1;;;;;3107:35:3;;;;;;;;;;-1:-1:-1;;;3085:57:3;;;;-1:-1:-1;3085:57:3;2818:332::o;2333:191:11:-;2426:6;;;-1:-1:-1;;;;;2443:17:11;;;-1:-1:-1;;;;;;2443:17:11;;;;;;;2476:40;;2426:6;;;2443:17;2426:6;;2476:40;;2407:16;;2476:40;2396:128;2333:191;:::o;19884:667:4:-;20068:72;;-1:-1:-1;;;20068:72:4;;20047:4;;-1:-1:-1;;;;;20068:36:4;;;;;:72;;736:10:1;;20119:4:4;;20125:7;;20134:5;;20068:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20068:72:4;;;;;;;;-1:-1:-1;;20068:72:4;;;;;;;;;;;;:::i;:::-;;;20064:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20302:13:4;;20298:235;;20348:40;;-1:-1:-1;;;20348:40:4;;;;;;;;;;;20298:235;20491:6;20485:13;20476:6;20472:2;20468:15;20461:38;20064:480;-1:-1:-1;;;;;;20187:55:4;-1:-1:-1;;;20187:55:4;;-1:-1:-1;20064:480:4;19884:667;;;;;;:::o;342:723:12:-;398:13;619:10;615:53;;-1:-1:-1;;646:10:12;;;;;;;;;;;;-1:-1:-1;;;646:10:12;;;;;342:723::o;615:53::-;693:5;678:12;734:78;741:9;;734:78;;767:8;;;;:::i;:::-;;-1:-1:-1;790:10:12;;-1:-1:-1;798:2:12;790:10;;:::i;:::-;;;734:78;;;822:19;854:6;-1:-1:-1;;;;;844:17:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;844:17:12;;822:39;;872:154;879:10;;872:154;;906:11;916:1;906:11;;:::i;:::-;;-1:-1:-1;975:10:12;983:2;975:5;:10;:::i;:::-;962:24;;:2;:24;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;932:56:12;;;;;;;;-1:-1:-1;1003:11:12;1012:2;1003:11;;:::i;:::-;;;872:154;;1404:215:3;1506:4;-1:-1:-1;;;;;;1530:41:3;;-1:-1:-1;;;1530:41:3;;:81;;-1:-1:-1;;;;;;;;;;963:40:2;;;1575:36:3;854:157:2;11688:163:4;11811:32;11817:2;11821:8;11831:5;11838:4;12272:13;;-1:-1:-1;;;;;12300:16:4;;12296:48;;12325:19;;-1:-1:-1;;;12325:19:4;;;;;;;;;;;12296:48;12359:13;12355:44;;12381:18;;-1:-1:-1;;;12381:18:4;;;;;;;;;;;12355:44;-1:-1:-1;;;;;12750:16:4;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;12809:49:4;;-1:-1:-1;;;;;12750:44:4;;;;;;;12809:49;;;-1:-1:-1;;;;;12750:44:4;;;;;;12809:49;;;;;;;;;;;;;;;;12875:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;12925:66:4;;;;-1:-1:-1;;;12975:15:4;12925:66;;;;;;;;;;12875:25;13072:23;;;13116:4;:23;;;;-1:-1:-1;;;;;;13124:13:4;;1505:19:0;:23;;13124:15:4;13112:641;;;13160:314;13191:38;;13216:12;;-1:-1:-1;;;;;13191:38:4;;;13208:1;;13191:38;;13208:1;;13191:38;13257:69;13296:1;13300:2;13304:14;;;;;;13320:5;13257:30;:69::i;:::-;13252:174;;13362:40;;-1:-1:-1;;;13362:40:4;;;;;;;;;;;13252:174;13469:3;13453:12;:19;;13160:314;;13555:12;13538:13;;:29;13534:43;;13569:8;;;13534:43;13112:641;;;13618:120;13649:40;;13674:14;;;;;-1:-1:-1;;;;;13649:40:4;;;13666:1;;13649:40;;13666:1;;13649:40;13733:3;13717:12;:19;;13618:120;;13112:641;-1:-1:-1;13767:13:4;:28;13817:60;10415:369;-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;4225:127::-;4286:10;4281:3;4277:20;4274:1;4267:31;4317:4;4314:1;4307:15;4341:4;4338:1;4331:15;4357:275;4428:2;4422:9;4493:2;4474:13;;-1:-1:-1;;4470:27:14;4458:40;;-1:-1:-1;;;;;4513:34:14;;4549:22;;;4510:62;4507:88;;;4575:18;;:::i;:::-;4611:2;4604:22;4357:275;;-1:-1:-1;4357:275:14:o;4637:946::-;4721:6;4752:2;4795;4783:9;4774:7;4770:23;4766:32;4763:52;;;4811:1;4808;4801:12;4763:52;4851:9;4838:23;-1:-1:-1;;;;;4921:2:14;4913:6;4910:14;4907:34;;;4937:1;4934;4927:12;4907:34;4975:6;4964:9;4960:22;4950:32;;5020:7;5013:4;5009:2;5005:13;5001:27;4991:55;;5042:1;5039;5032:12;4991:55;5078:2;5065:16;5100:2;5096;5093:10;5090:36;;;5106:18;;:::i;:::-;5152:2;5149:1;5145:10;5135:20;;5175:28;5199:2;5195;5191:11;5175:28;:::i;:::-;5237:15;;;5307:11;;;5303:20;;;5268:12;;;;5335:19;;;5332:39;;;5367:1;5364;5357:12;5332:39;5391:11;;;;5411:142;5427:6;5422:3;5419:15;5411:142;;;5493:17;;5481:30;;5444:12;;;;5531;;;;5411:142;;;5572:5;4637:946;-1:-1:-1;;;;;;;;4637:946:14:o;5871:722::-;6104:2;6156:21;;;6226:13;;6129:18;;;6248:22;;;6075:4;;6104:2;6327:15;;;;6301:2;6286:18;;;6075:4;6370:197;6384:6;6381:1;6378:13;6370:197;;;6433:52;6481:3;6472:6;6466:13;5672:12;;-1:-1:-1;;;;;5668:38:14;5656:51;;5760:4;5749:16;;;5743:23;-1:-1:-1;;;;;5739:48:14;5723:14;;;5716:72;5851:4;5840:16;;;5834:23;5827:31;5820:39;5804:14;;5797:63;5588:278;6433:52;6542:15;;;;6514:4;6505:14;;;;;6406:1;6399:9;6370:197;;6598:292;6656:6;6709:2;6697:9;6688:7;6684:23;6680:32;6677:52;;;6725:1;6722;6715:12;6677:52;6764:9;6751:23;-1:-1:-1;;;;;6807:5:14;6803:38;6796:5;6793:49;6783:77;;6856:1;6853;6846:12;6895:186;6954:6;7007:2;6995:9;6986:7;6982:23;6978:32;6975:52;;;7023:1;7020;7013:12;6975:52;7046:29;7065:9;7046:29;:::i;7086:407::-;7151:5;-1:-1:-1;;;;;7177:6:14;7174:30;7171:56;;;7207:18;;:::i;:::-;7245:57;7290:2;7269:15;;-1:-1:-1;;7265:29:14;7296:4;7261:40;7245:57;:::i;:::-;7236:66;;7325:6;7318:5;7311:21;7365:3;7356:6;7351:3;7347:16;7344:25;7341:45;;;7382:1;7379;7372:12;7341:45;7431:6;7426:3;7419:4;7412:5;7408:16;7395:43;7485:1;7478:4;7469:6;7462:5;7458:18;7454:29;7447:40;7086:407;;;;;:::o;7498:451::-;7567:6;7620:2;7608:9;7599:7;7595:23;7591:32;7588:52;;;7636:1;7633;7626:12;7588:52;7676:9;7663:23;-1:-1:-1;;;;;7701:6:14;7698:30;7695:50;;;7741:1;7738;7731:12;7695:50;7764:22;;7817:4;7809:13;;7805:27;-1:-1:-1;7795:55:14;;7846:1;7843;7836:12;7795:55;7869:74;7935:7;7930:2;7917:16;7912:2;7908;7904:11;7869:74;:::i;7954:632::-;8125:2;8177:21;;;8247:13;;8150:18;;;8269:22;;;8096:4;;8125:2;8348:15;;;;8322:2;8307:18;;;8096:4;8391:169;8405:6;8402:1;8399:13;8391:169;;;8466:13;;8454:26;;8535:15;;;;8500:12;;;;8427:1;8420:9;8391:169;;8591:322;8668:6;8676;8684;8737:2;8725:9;8716:7;8712:23;8708:32;8705:52;;;8753:1;8750;8743:12;8705:52;8776:29;8795:9;8776:29;:::i;:::-;8766:39;8852:2;8837:18;;8824:32;;-1:-1:-1;8903:2:14;8888:18;;;8875:32;;8591:322;-1:-1:-1;;;8591:322:14:o;8918:1762::-;9131:13;;9113:32;;9192:4;9180:17;;;9174:24;9100:3;9085:19;;;9207:53;;9239:20;;9174:24;764:10;753:22;741:35;;688:94;9207:53;;9309:4;9301:6;9297:17;9291:24;9324:55;9373:4;9362:9;9358:20;9342:14;764:10;753:22;741:35;;688:94;9324:55;;9428:4;9420:6;9416:17;9410:24;9443:55;9492:4;9481:9;9477:20;9461:14;764:10;753:22;741:35;;688:94;9443:55;;9547:4;9539:6;9535:17;9529:24;9562:55;9611:4;9600:9;9596:20;9580:14;764:10;753:22;741:35;;688:94;9562:55;;9666:4;9658:6;9654:17;9648:24;9681:55;9730:4;9719:9;9715:20;9699:14;764:10;753:22;741:35;;688:94;9681:55;;9785:4;9777:6;9773:17;9767:24;9800:55;9849:4;9838:9;9834:20;9818:14;764:10;753:22;741:35;;688:94;9800:55;;9904:4;9896:6;9892:17;9886:24;9919:55;9968:4;9957:9;9953:20;9937:14;764:10;753:22;741:35;;688:94;9919:55;-1:-1:-1;9993:6:14;10036:15;;;10030:22;764:10;753:22;;;10095:18;;;741:35;;;;10133:6;10176:15;;;10170:22;753;;10235:18;;;741:35;10273:6;10316:15;;;10310:22;753;;;10375:18;;;741:35;10413:6;10457:15;;;10451:22;470:13;463:21;10515:18;;;451:34;10553:6;10597:15;;;10591:22;470:13;463:21;10655:18;;;;451:34;;;;8918:1762;:::o;10685:160::-;10750:20;;10806:13;;10799:21;10789:32;;10779:60;;10835:1;10832;10825:12;10850:254;10915:6;10923;10976:2;10964:9;10955:7;10951:23;10947:32;10944:52;;;10992:1;10989;10982:12;10944:52;11015:29;11034:9;11015:29;:::i;:::-;11005:39;;11063:35;11094:2;11083:9;11079:18;11063:35;:::i;11109:184::-;11167:6;11220:2;11208:9;11199:7;11195:23;11191:32;11188:52;;;11236:1;11233;11226:12;11188:52;11259:28;11277:9;11259:28;:::i;11298:667::-;11393:6;11401;11409;11417;11470:3;11458:9;11449:7;11445:23;11441:33;11438:53;;;11487:1;11484;11477:12;11438:53;11510:29;11529:9;11510:29;:::i;:::-;11500:39;;11558:38;11592:2;11581:9;11577:18;11558:38;:::i;:::-;11548:48;;11643:2;11632:9;11628:18;11615:32;11605:42;;11698:2;11687:9;11683:18;11670:32;-1:-1:-1;;;;;11717:6:14;11714:30;11711:50;;;11757:1;11754;11747:12;11711:50;11780:22;;11833:4;11825:13;;11821:27;-1:-1:-1;11811:55:14;;11862:1;11859;11852:12;11811:55;11885:74;11951:7;11946:2;11933:16;11928:2;11924;11920:11;11885:74;:::i;:::-;11875:84;;;11298:667;;;;;;;:::o;11970:265::-;5672:12;;-1:-1:-1;;;;;5668:38:14;5656:51;;5760:4;5749:16;;;5743:23;-1:-1:-1;;;;;5739:48:14;5723:14;;;5716:72;5851:4;5840:16;;;5834:23;5827:31;5820:39;5804:14;;;5797:63;12166:2;12151:18;;12178:51;5588:278;12240:260;12308:6;12316;12369:2;12357:9;12348:7;12344:23;12340:32;12337:52;;;12385:1;12382;12375:12;12337:52;12408:29;12427:9;12408:29;:::i;:::-;12398:39;;12456:38;12490:2;12479:9;12475:18;12456:38;:::i;12505:180::-;12561:6;12614:2;12602:9;12593:7;12589:23;12585:32;12582:52;;;12630:1;12627;12620:12;12582:52;12653:26;12669:9;12653:26;:::i;12690:380::-;12769:1;12765:12;;;;12812;;;12833:61;;12887:4;12879:6;12875:17;12865:27;;12833:61;12940:2;12932:6;12929:14;12909:18;12906:38;12903:161;;;12986:10;12981:3;12977:20;12974:1;12967:31;13021:4;13018:1;13011:15;13049:4;13046:1;13039:15;12903:161;;12690:380;;;:::o;13075:356::-;13277:2;13259:21;;;13296:18;;;13289:30;13355:34;13350:2;13335:18;;13328:62;13422:2;13407:18;;13075:356::o;13436:127::-;13497:10;13492:3;13488:20;13485:1;13478:31;13528:4;13525:1;13518:15;13552:4;13549:1;13542:15;13568:228;13607:3;13635:10;13672:2;13669:1;13665:10;13702:2;13699:1;13695:10;13733:3;13729:2;13725:12;13720:3;13717:21;13714:47;;;13741:18;;:::i;:::-;13777:13;;13568:228;-1:-1:-1;;;;13568:228:14:o;14156:168::-;14196:7;14262:1;14258;14254:6;14250:14;14247:1;14244:21;14239:1;14232:9;14225:17;14221:45;14218:71;;;14269:18;;:::i;:::-;-1:-1:-1;14309:9:14;;14156:168::o;14329:127::-;14390:10;14385:3;14381:20;14378:1;14371:31;14421:4;14418:1;14411:15;14445:4;14442:1;14435:15;14461:120;14501:1;14527;14517:35;;14532:18;;:::i;:::-;-1:-1:-1;14566:9:14;;14461:120::o;14586:127::-;14647:10;14642:3;14638:20;14635:1;14628:31;14678:4;14675:1;14668:15;14702:4;14699:1;14692:15;14718:221;14757:4;14786:10;14846;;;;14816;;14868:12;;;14865:38;;;14883:18;;:::i;:::-;14920:13;;14718:221;-1:-1:-1;;;14718:221:14:o;16122:112::-;16154:1;16180;16170:35;;16185:18;;:::i;:::-;-1:-1:-1;16219:9:14;;16122:112::o;16888:125::-;16928:4;16956:1;16953;16950:8;16947:34;;;16961:18;;:::i;:::-;-1:-1:-1;16998:9:14;;16888:125::o;17018:637::-;17298:3;17336:6;17330:13;17352:53;17398:6;17393:3;17386:4;17378:6;17374:17;17352:53;:::i;:::-;17468:13;;17427:16;;;;17490:57;17468:13;17427:16;17524:4;17512:17;;17490:57;:::i;:::-;-1:-1:-1;;;17569:20:14;;17598:22;;;17647:1;17636:13;;17018:637;-1:-1:-1;;;;17018:637:14:o;19827:489::-;-1:-1:-1;;;;;20096:15:14;;;20078:34;;20148:15;;20143:2;20128:18;;20121:43;20195:2;20180:18;;20173:34;;;20243:3;20238:2;20223:18;;20216:31;;;20021:4;;20264:46;;20290:19;;20282:6;20264:46;:::i;:::-;20256:54;19827:489;-1:-1:-1;;;;;;19827:489:14:o;20321:249::-;20390:6;20443:2;20431:9;20422:7;20418:23;20414:32;20411:52;;;20459:1;20456;20449:12;20411:52;20491:9;20485:16;20510:30;20534:5;20510:30;:::i;20575:135::-;20614:3;-1:-1:-1;;20635:17:14;;20632:43;;;20655:18;;:::i;:::-;-1:-1:-1;20702:1:14;20691:13;;20575:135::o;20715:128::-;20755:3;20786:1;20782:6;20779:1;20776:13;20773:39;;;20792:18;;:::i;:::-;-1:-1:-1;20828:9:14;;20715:128::o

Swarm Source

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