ETH Price: $3,473.12 (+1.59%)
Gas: 11 Gwei

Token

SOLIDBLOCK DYNASTY (SBDY)
 

Overview

Max Total Supply

92 SBDY

Holders

61

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 SBDY
0x857c4ed82af1cd727c36f7d9e42e940212582127
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SBDynasty

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 13 of 14: SBDynasty.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./ERC_721A.sol";
import "./Ownable.sol";
import "./ERC2981.sol";

interface OpenSea {
    function proxies(address) external view returns (address);
}

contract SBDynasty is ERC721A("SOLIDBLOCK DYNASTY", "SBDY"), Ownable, ERC2981 {
    using Strings for uint256;

    bool public publicmintActive = false;
    uint256 public maxMintAmount = 5;
    uint256 public maxSupply = 1000;
    uint256 public costPerNft = 0.4 * 1e18;
    uint256 public nftsForOwner = 15;
    string public metadataFolderIpfsLink;
    string constant baseExtension = ".json";

    constructor() {
        _setDefaultRoyalty(0x34c5eEa7E72E35a8ee9106CcD499d73FB9E6E34a, 1000); // 10.00 %
    }

    ///////////////////
    //  Public Mint  //
    ///////////////////

    modifier mintCompliance(uint256 _mintAmount) {
        uint256 supply = totalSupply();
        require(publicmintActive, "The minting is paused");
        require(_mintAmount <= maxMintAmount, "Max mint amount per session exceeded");
        require(supply + _mintAmount <= maxSupply, "Max supply exceeded!");
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        _;
    }

    function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount){
        require(msg.value >= costPerNft * _mintAmount, "insufficient funds");
        _safeMint(msg.sender, _mintAmount);
    }

    function minter(address _user, uint256 _amount) private mintCompliance(_amount) {
        _safeMint(_user, _amount);
    }

    function airdrop(address[] calldata _users, uint256[] calldata _mintAmounts) public onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            minter(_users[i], _mintAmounts[i]);
        }
    }

    ///////////////////////////////////
    //       OVERRIDE CODE STARTS    //
    ///////////////////////////////////

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

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

    function _baseURI() internal view virtual override returns (string memory) {
        return metadataFolderIpfsLink;
    }

    function tokenURI(uint256 tokenId) public view virtual override(ERC721A) returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : "";
    }

    //////////////////
    //  ONLY OWNER  //
    //////////////////

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success);
    }

    function giftNft(address[] calldata _sendNftsTo, uint256 _howMany) external onlyOwner {
        nftsForOwner -= _sendNftsTo.length * _howMany;

        for (uint256 i = 0; i < _sendNftsTo.length; i++) _safeMint(_sendNftsTo[i], _howMany);
    }

    function setnftsForOwner(uint256 _newnftsForOwner) public onlyOwner {
        nftsForOwner = _newnftsForOwner;
    }

    function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) public onlyOwner {
        _setDefaultRoyalty(_receiver, _feeNumerator);
    }

    function setCostPerNft(uint256 _newCostPerNft) public onlyOwner {
        costPerNft = _newCostPerNft;
    }

    function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setMetadataFolderIpfsLink(string memory _newMetadataFolderIpfsLink) public onlyOwner {
        metadataFolderIpfsLink = _newMetadataFolderIpfsLink;
    }

    function setSaleActive(bool _publicmintActive) public onlyOwner {
        publicmintActive = _publicmintActive;
    }

}

contract NftAutoApproveMarketPlaces is SBDynasty {
    ////////////////////////////////
    // AUTO APPROVE MARKETPLACES  //
    ////////////////////////////////

    mapping(address => bool) public projectProxy;

    function flipProxyState(address proxyAddress) public onlyOwner {
        projectProxy[proxyAddress] = !projectProxy[proxyAddress];
    }

    function isApprovedForAll(address _owner, address _operator) public view override(ERC721A) returns (bool) {
        return
            projectProxy[_operator] || // Auto Approve any Marketplace,
                _operator == OpenSea(0xa5409ec958C83C3f309868babACA7c86DCB077c1).proxies(_owner) ||
                _operator == 0xF849de01B080aDC3A814FaBE1E2087475cF2E354 || // Looksrare
                _operator == 0xf42aa99F011A1fA7CDA90E5E98b277E306BcA83e || // Rarible
                _operator == 0x4feE7B061C97C9c496b01DbcE9CDb10c02f0a0Be // X2Y2
                ? true
                : super.isApprovedForAll(_owner, _operator);
    }
}

contract SBDynastyContract is NftAutoApproveMarketPlaces {}

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

/**
 * @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

pragma solidity ^0.8.4;

/* 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). */

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

pragma solidity ^0.8.4;

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.6.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.4;

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) public 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: ERC_721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./IERC721A.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

    // 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 override 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) if (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) if(!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()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) 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 (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);
    }

    function _mint(address to, uint256 quantity) 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;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    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);
    }

    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    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++;
        }
    }

    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    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))
                }
            }
        }
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 6 of 14: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

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

pragma solidity ^0.8.4;

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 paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 8 of 14: IERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import './IERC_721.sol';
import './IERC721Metadata.sol';

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

    // 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;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

File 9 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./IERC_721.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 10 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

/**
 * @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 11 of 14: IERC_721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

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`.
     *
     * 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;

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

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

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

File 12 of 14: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

File 14 of 14: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

/**
 * @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":[],"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":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"},{"internalType":"uint256[]","name":"_mintAmounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costPerNft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_sendNftsTo","type":"address[]"},{"internalType":"uint256","name":"_howMany","type":"uint256"}],"name":"giftNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataFolderIpfsLink","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftsForOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicmintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_newCostPerNft","type":"uint256"}],"name":"setCostPerNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newMetadataFolderIpfsLink","type":"string"}],"name":"setMetadataFolderIpfsLink","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicmintActive","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newnftsForOwner","type":"uint256"}],"name":"setnftsForOwner","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":[],"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":"payable","type":"function"}]

6080604052600b805460ff191690556005600c556103e8600d5567058d15e176280000600e55600f80553480156200003657600080fd5b506040805180820182526012815271534f4c4944424c4f434b2044594e4153545960701b6020808301918252835180850190945260048452635342445960e01b9084015281519192916200008d9160029162000235565b508051620000a390600390602084019062000235565b5050600160005550620000b633620000de565b620000d87334c5eea7e72e35a8ee9106ccd499d73fb9e6e34a6103e862000130565b62000318565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620001a45760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620001fc5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016200019b565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b8280546200024390620002db565b90600052602060002090601f016020900481019282620002675760008555620002b2565b82601f106200028257805160ff1916838001178555620002b2565b82800160010185558215620002b2579182015b82811115620002b257825182559160200191906001019062000295565b50620002c0929150620002c4565b5090565b5b80821115620002c05760008155600101620002c5565b600181811c90821680620002f057607f821691505b602082108114156200031257634e487b7160e01b600052602260045260246000fd5b50919050565b61229880620003286000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063ab84e567116100a0578063c87b56dd1161006f578063c87b56dd14610589578063d5abeb01146105a9578063e985e9c5146105bf578063f2fde38b14610608578063ff010ecf1461062857600080fd5b8063ab84e56714610514578063b1e1449914610534578063b4af48b614610549578063b88d4fde1461056957600080fd5b806395d89b41116100dc57806395d89b41146104b6578063a0712d68146104cb578063a1575c18146104de578063a22cb465146104f457600080fd5b806370a0823114610443578063715018a614610463578063841718a6146104785780638da5cb5b1461049857600080fd5b806318160ddd116101905780633ccfd60b1161015f5780633ccfd60b146103c557806342842e0e146103cd5780635971b465146103ed5780636352211e14610403578063672434821461042357600080fd5b806318160ddd14610329578063239c70ae1461035057806323b872dd146103665780632a55205a1461038657600080fd5b8063081812fc116101cc578063081812fc14610297578063088a4ed0146102cf578063095ea7b3146102ef578063151c63401461030f57600080fd5b8063012f3fab146101fe57806301ffc9a71461022057806304634d8d1461025557806306fdde0314610275575b600080fd5b34801561020a57600080fd5b5061021e610219366004611fa1565b610648565b005b34801561022c57600080fd5b5061024061023b366004611f24565b610680565b60405190151581526020015b60405180910390f35b34801561026157600080fd5b5061021e610270366004611e18565b610691565b34801561028157600080fd5b5061028a6106c9565b60405161024c9190612086565b3480156102a357600080fd5b506102b76102b2366004611fa1565b61075b565b6040516001600160a01b03909116815260200161024c565b3480156102db57600080fd5b5061021e6102ea366004611fa1565b61079f565b3480156102fb57600080fd5b5061021e61030a366004611def565b6107ce565b34801561031b57600080fd5b50600b546102409060ff1681565b34801561033557600080fd5b5060015460005403600019015b60405190815260200161024c565b34801561035c57600080fd5b50610342600c5481565b34801561037257600080fd5b5061021e610381366004611d13565b610855565b34801561039257600080fd5b506103a66103a1366004611fb9565b610860565b604080516001600160a01b03909316835260208301919091520161024c565b61021e61090e565b3480156103d957600080fd5b5061021e6103e8366004611d13565b610990565b3480156103f957600080fd5b50610342600f5481565b34801561040f57600080fd5b506102b761041e366004611fa1565b6109ab565b34801561042f57600080fd5b5061021e61043e366004611e59565b6109bd565b34801561044f57600080fd5b5061034261045e366004611cc7565b610a6f565b34801561046f57600080fd5b5061021e610abd565b34801561048457600080fd5b5061021e610493366004611f0a565b610af3565b3480156104a457600080fd5b506008546001600160a01b03166102b7565b3480156104c257600080fd5b5061028a610b30565b61021e6104d9366004611fa1565b610b3f565b3480156104ea57600080fd5b50610342600e5481565b34801561050057600080fd5b5061021e61050f366004611dc6565b610cbb565b34801561052057600080fd5b5061021e61052f366004611f5c565b610d51565b34801561054057600080fd5b5061028a610d8e565b34801561055557600080fd5b5061021e610564366004611ec1565b610e1c565b34801561057557600080fd5b5061021e610584366004611d4e565b610ec8565b34801561059557600080fd5b5061028a6105a4366004611fa1565b610f0c565b3480156105b557600080fd5b50610342600d5481565b3480156105cb57600080fd5b506102406105da366004611ce1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561061457600080fd5b5061021e610623366004611cc7565b610ff6565b34801561063457600080fd5b5061021e610643366004611fa1565b61108e565b6008546001600160a01b0316331461067b5760405162461bcd60e51b8152600401610672906120dd565b60405180910390fd5b600f55565b600061068b826110bd565b92915050565b6008546001600160a01b031633146106bb5760405162461bcd60e51b8152600401610672906120dd565b6106c582826110e2565b5050565b6060600280546106d8906121a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610704906121a0565b80156107515780601f1061072657610100808354040283529160200191610751565b820191906000526020600020905b81548152906001019060200180831161073457829003601f168201915b5050505050905090565b6000610766826111df565b610783576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146107c95760405162461bcd60e51b8152600401610672906120dd565b600c55565b60006107d9826109ab565b9050806001600160a01b0316836001600160a01b0316141561080e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108455761082881336105da565b610845576040516367d9dca160e11b815260040160405180910390fd5b610850838383611218565b505050565b610850838383611274565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916108d55750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906108f4906001600160601b03168761213e565b6108fe919061212a565b91519350909150505b9250929050565b6008546001600160a01b031633146109385760405162461bcd60e51b8152600401610672906120dd565b604051600090339047908381818185875af1925050503d806000811461097a576040519150601f19603f3d011682016040523d82523d6000602084013e61097f565b606091505b505090508061098d57600080fd5b50565b61085083838360405180602001604052806000815250610ec8565b60006109b68261145f565b5192915050565b6008546001600160a01b031633146109e75760405162461bcd60e51b8152600401610672906120dd565b60005b83811015610a6857610a56858583818110610a1557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610a2a9190611cc7565b848484818110610a4a57634e487b7160e01b600052603260045260246000fd5b90506020020135611581565b80610a60816121db565b9150506109ea565b5050505050565b60006001600160a01b038216610a98576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ae75760405162461bcd60e51b8152600401610672906120dd565b610af160006116ab565b565b6008546001600160a01b03163314610b1d5760405162461bcd60e51b8152600401610672906120dd565b600b805460ff1916911515919091179055565b6060600380546106d8906121a0565b600154600080548392900360001901600b5490915060ff16610b9b5760405162461bcd60e51b8152602060048201526015602482015274151a19481b5a5b9d1a5b99c81a5cc81c185d5cd959605a1b6044820152606401610672565b600c54821115610bbd5760405162461bcd60e51b815260040161067290612099565b600d54610bca8383612112565b1115610c0f5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610672565b60008211610c5f5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610672565b82600e54610c6d919061213e565b341015610cb15760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610672565b61085033846116fd565b6001600160a01b038216331415610ce55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610d7b5760405162461bcd60e51b8152600401610672906120dd565b80516106c5906010906020840190611b4b565b60108054610d9b906121a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc7906121a0565b8015610e145780601f10610de957610100808354040283529160200191610e14565b820191906000526020600020905b815481529060010190602001808311610df757829003601f168201915b505050505081565b6008546001600160a01b03163314610e465760405162461bcd60e51b8152600401610672906120dd565b610e50818361213e565b600f6000828254610e61919061215d565b90915550600090505b82811015610ec257610eb0848483818110610e9557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610eaa9190611cc7565b836116fd565b80610eba816121db565b915050610e6a565b50505050565b610ed3848484611274565b6001600160a01b0383163b15610ec257610eef84848484611717565b610ec2576040516368d2bf6b60e11b815260040160405180910390fd5b6060610f17826111df565b610f7b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610672565b6000610f8561180f565b90506000815111610fa55760405180602001604052806000815250610fef565b80610faf8461181e565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610fdf93929190612006565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110205760405162461bcd60e51b8152600401610672906120dd565b6001600160a01b0381166110855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610672565b61098d816116ab565b6008546001600160a01b031633146110b85760405162461bcd60e51b8152600401610672906120dd565b600e55565b60006001600160e01b0319821663152a902d60e11b148061068b575061068b82611937565b6127106001600160601b03821611156111505760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610672565b6001600160a01b0382166111a65760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610672565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b6000816001111580156111f3575060005482105b801561068b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061127f8261145f565b9050836001600160a01b031681600001516001600160a01b0316146112b65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112d457506112d485336105da565b806112ef5750336112e48461075b565b6001600160a01b0316145b90508061130f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661133657604051633a954ecd60e21b815260040160405180910390fd5b61134260008487611218565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661141657600054821461141657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610a68565b604080516060810182526000808252602082018190529181019190915281806001116115685760005481101561156857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906115665780516001600160a01b0316156114fd579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611561579392505050565b6114fd565b505b604051636f96cda160e11b815260040160405180910390fd5b600154600080548392900360001901600b5490915060ff166115dd5760405162461bcd60e51b8152602060048201526015602482015274151a19481b5a5b9d1a5b99c81a5cc81c185d5cd959605a1b6044820152606401610672565b600c548211156115ff5760405162461bcd60e51b815260040161067290612099565b600d5461160c8383612112565b11156116515760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610672565b600082116116a15760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610672565b610ec284846116fd565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6106c5828260405180602001604052806000815250611987565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061174c903390899088908890600401612049565b602060405180830381600087803b15801561176657600080fd5b505af1925050508015611796575060408051601f3d908101601f1916820190925261179391810190611f40565b60015b6117f1573d8080156117c4576040519150601f19603f3d011682016040523d82523d6000602084013e6117c9565b606091505b5080516117e9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601080546106d8906121a0565b6060816118425750506040805180820190915260018152600360fc1b602082015290565b8160005b811561186c5780611856816121db565b91506118659050600a8361212a565b9150611846565b6000816001600160401b0381111561189457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118be576020820181803683370190505b5090505b8415611807576118d360018361215d565b91506118e0600a866121f6565b6118eb906030612112565b60f81b81838151811061190e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611930600a8661212a565b94506118c2565b60006001600160e01b031982166380ac58cd60e01b148061196857506001600160e01b03198216635b5e139f60e01b145b8061068b57506301ffc9a760e01b6001600160e01b031983161461068b565b6000546001600160a01b0384166119b057604051622e076360e81b815260040160405180910390fd5b826119ce5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611af6575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611abf6000878480600101955087611717565b611adc576040516368d2bf6b60e11b815260040160405180910390fd5b808210611a74578260005414611af157600080fd5b611b3b565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611af7575b506000908155610ec29085838684565b828054611b57906121a0565b90600052602060002090601f016020900481019282611b795760008555611bbf565b82601f10611b9257805160ff1916838001178555611bbf565b82800160010185558215611bbf579182015b82811115611bbf578251825591602001919060010190611ba4565b50611bcb929150611bcf565b5090565b5b80821115611bcb5760008155600101611bd0565b60006001600160401b0380841115611bfe57611bfe612236565b604051601f8501601f19908116603f01168101908282118183101715611c2657611c26612236565b81604052809350858152868686011115611c3f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c7057600080fd5b919050565b60008083601f840112611c86578081fd5b5081356001600160401b03811115611c9c578182fd5b6020830191508360208260051b850101111561090757600080fd5b80358015158114611c7057600080fd5b600060208284031215611cd8578081fd5b610fef82611c59565b60008060408385031215611cf3578081fd5b611cfc83611c59565b9150611d0a60208401611c59565b90509250929050565b600080600060608486031215611d27578081fd5b611d3084611c59565b9250611d3e60208501611c59565b9150604084013590509250925092565b60008060008060808587031215611d63578081fd5b611d6c85611c59565b9350611d7a60208601611c59565b92506040850135915060608501356001600160401b03811115611d9b578182fd5b8501601f81018713611dab578182fd5b611dba87823560208401611be4565b91505092959194509250565b60008060408385031215611dd8578182fd5b611de183611c59565b9150611d0a60208401611cb7565b60008060408385031215611e01578182fd5b611e0a83611c59565b946020939093013593505050565b60008060408385031215611e2a578182fd5b611e3383611c59565b915060208301356001600160601b0381168114611e4e578182fd5b809150509250929050565b60008060008060408587031215611e6e578384fd5b84356001600160401b0380821115611e84578586fd5b611e9088838901611c75565b90965094506020870135915080821115611ea8578384fd5b50611eb587828801611c75565b95989497509550505050565b600080600060408486031215611ed5578283fd5b83356001600160401b03811115611eea578384fd5b611ef686828701611c75565b909790965060209590950135949350505050565b600060208284031215611f1b578081fd5b610fef82611cb7565b600060208284031215611f35578081fd5b8135610fef8161224c565b600060208284031215611f51578081fd5b8151610fef8161224c565b600060208284031215611f6d578081fd5b81356001600160401b03811115611f82578182fd5b8201601f81018413611f92578182fd5b61180784823560208401611be4565b600060208284031215611fb2578081fd5b5035919050565b60008060408385031215611fcb578182fd5b50508035926020909101359150565b60008151808452611ff2816020860160208601612174565b601f01601f19169290920160200192915050565b60008451612018818460208901612174565b84519083019061202c818360208901612174565b845191019061203f818360208801612174565b0195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061207c90830184611fda565b9695505050505050565b602081526000610fef6020830184611fda565b60208082526024908201527f4d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156121255761212561220a565b500190565b60008261213957612139612220565b500490565b60008160001904831182151516156121585761215861220a565b500290565b60008282101561216f5761216f61220a565b500390565b60005b8381101561218f578181015183820152602001612177565b83811115610ec25750506000910152565b600181811c908216806121b457607f821691505b602082108114156121d557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121ef576121ef61220a565b5060010190565b60008261220557612205612220565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461098d57600080fdfea2646970667358221220e0c3a50c7d0b6722e3ad2f593662f1666bf607033c4da22c251cf958d87f0c2f64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063ab84e567116100a0578063c87b56dd1161006f578063c87b56dd14610589578063d5abeb01146105a9578063e985e9c5146105bf578063f2fde38b14610608578063ff010ecf1461062857600080fd5b8063ab84e56714610514578063b1e1449914610534578063b4af48b614610549578063b88d4fde1461056957600080fd5b806395d89b41116100dc57806395d89b41146104b6578063a0712d68146104cb578063a1575c18146104de578063a22cb465146104f457600080fd5b806370a0823114610443578063715018a614610463578063841718a6146104785780638da5cb5b1461049857600080fd5b806318160ddd116101905780633ccfd60b1161015f5780633ccfd60b146103c557806342842e0e146103cd5780635971b465146103ed5780636352211e14610403578063672434821461042357600080fd5b806318160ddd14610329578063239c70ae1461035057806323b872dd146103665780632a55205a1461038657600080fd5b8063081812fc116101cc578063081812fc14610297578063088a4ed0146102cf578063095ea7b3146102ef578063151c63401461030f57600080fd5b8063012f3fab146101fe57806301ffc9a71461022057806304634d8d1461025557806306fdde0314610275575b600080fd5b34801561020a57600080fd5b5061021e610219366004611fa1565b610648565b005b34801561022c57600080fd5b5061024061023b366004611f24565b610680565b60405190151581526020015b60405180910390f35b34801561026157600080fd5b5061021e610270366004611e18565b610691565b34801561028157600080fd5b5061028a6106c9565b60405161024c9190612086565b3480156102a357600080fd5b506102b76102b2366004611fa1565b61075b565b6040516001600160a01b03909116815260200161024c565b3480156102db57600080fd5b5061021e6102ea366004611fa1565b61079f565b3480156102fb57600080fd5b5061021e61030a366004611def565b6107ce565b34801561031b57600080fd5b50600b546102409060ff1681565b34801561033557600080fd5b5060015460005403600019015b60405190815260200161024c565b34801561035c57600080fd5b50610342600c5481565b34801561037257600080fd5b5061021e610381366004611d13565b610855565b34801561039257600080fd5b506103a66103a1366004611fb9565b610860565b604080516001600160a01b03909316835260208301919091520161024c565b61021e61090e565b3480156103d957600080fd5b5061021e6103e8366004611d13565b610990565b3480156103f957600080fd5b50610342600f5481565b34801561040f57600080fd5b506102b761041e366004611fa1565b6109ab565b34801561042f57600080fd5b5061021e61043e366004611e59565b6109bd565b34801561044f57600080fd5b5061034261045e366004611cc7565b610a6f565b34801561046f57600080fd5b5061021e610abd565b34801561048457600080fd5b5061021e610493366004611f0a565b610af3565b3480156104a457600080fd5b506008546001600160a01b03166102b7565b3480156104c257600080fd5b5061028a610b30565b61021e6104d9366004611fa1565b610b3f565b3480156104ea57600080fd5b50610342600e5481565b34801561050057600080fd5b5061021e61050f366004611dc6565b610cbb565b34801561052057600080fd5b5061021e61052f366004611f5c565b610d51565b34801561054057600080fd5b5061028a610d8e565b34801561055557600080fd5b5061021e610564366004611ec1565b610e1c565b34801561057557600080fd5b5061021e610584366004611d4e565b610ec8565b34801561059557600080fd5b5061028a6105a4366004611fa1565b610f0c565b3480156105b557600080fd5b50610342600d5481565b3480156105cb57600080fd5b506102406105da366004611ce1565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561061457600080fd5b5061021e610623366004611cc7565b610ff6565b34801561063457600080fd5b5061021e610643366004611fa1565b61108e565b6008546001600160a01b0316331461067b5760405162461bcd60e51b8152600401610672906120dd565b60405180910390fd5b600f55565b600061068b826110bd565b92915050565b6008546001600160a01b031633146106bb5760405162461bcd60e51b8152600401610672906120dd565b6106c582826110e2565b5050565b6060600280546106d8906121a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610704906121a0565b80156107515780601f1061072657610100808354040283529160200191610751565b820191906000526020600020905b81548152906001019060200180831161073457829003601f168201915b5050505050905090565b6000610766826111df565b610783576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146107c95760405162461bcd60e51b8152600401610672906120dd565b600c55565b60006107d9826109ab565b9050806001600160a01b0316836001600160a01b0316141561080e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108455761082881336105da565b610845576040516367d9dca160e11b815260040160405180910390fd5b610850838383611218565b505050565b610850838383611274565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916108d55750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906108f4906001600160601b03168761213e565b6108fe919061212a565b91519350909150505b9250929050565b6008546001600160a01b031633146109385760405162461bcd60e51b8152600401610672906120dd565b604051600090339047908381818185875af1925050503d806000811461097a576040519150601f19603f3d011682016040523d82523d6000602084013e61097f565b606091505b505090508061098d57600080fd5b50565b61085083838360405180602001604052806000815250610ec8565b60006109b68261145f565b5192915050565b6008546001600160a01b031633146109e75760405162461bcd60e51b8152600401610672906120dd565b60005b83811015610a6857610a56858583818110610a1557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610a2a9190611cc7565b848484818110610a4a57634e487b7160e01b600052603260045260246000fd5b90506020020135611581565b80610a60816121db565b9150506109ea565b5050505050565b60006001600160a01b038216610a98576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ae75760405162461bcd60e51b8152600401610672906120dd565b610af160006116ab565b565b6008546001600160a01b03163314610b1d5760405162461bcd60e51b8152600401610672906120dd565b600b805460ff1916911515919091179055565b6060600380546106d8906121a0565b600154600080548392900360001901600b5490915060ff16610b9b5760405162461bcd60e51b8152602060048201526015602482015274151a19481b5a5b9d1a5b99c81a5cc81c185d5cd959605a1b6044820152606401610672565b600c54821115610bbd5760405162461bcd60e51b815260040161067290612099565b600d54610bca8383612112565b1115610c0f5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610672565b60008211610c5f5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610672565b82600e54610c6d919061213e565b341015610cb15760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610672565b61085033846116fd565b6001600160a01b038216331415610ce55760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610d7b5760405162461bcd60e51b8152600401610672906120dd565b80516106c5906010906020840190611b4b565b60108054610d9b906121a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc7906121a0565b8015610e145780601f10610de957610100808354040283529160200191610e14565b820191906000526020600020905b815481529060010190602001808311610df757829003601f168201915b505050505081565b6008546001600160a01b03163314610e465760405162461bcd60e51b8152600401610672906120dd565b610e50818361213e565b600f6000828254610e61919061215d565b90915550600090505b82811015610ec257610eb0848483818110610e9557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610eaa9190611cc7565b836116fd565b80610eba816121db565b915050610e6a565b50505050565b610ed3848484611274565b6001600160a01b0383163b15610ec257610eef84848484611717565b610ec2576040516368d2bf6b60e11b815260040160405180910390fd5b6060610f17826111df565b610f7b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610672565b6000610f8561180f565b90506000815111610fa55760405180602001604052806000815250610fef565b80610faf8461181e565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001610fdf93929190612006565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110205760405162461bcd60e51b8152600401610672906120dd565b6001600160a01b0381166110855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610672565b61098d816116ab565b6008546001600160a01b031633146110b85760405162461bcd60e51b8152600401610672906120dd565b600e55565b60006001600160e01b0319821663152a902d60e11b148061068b575061068b82611937565b6127106001600160601b03821611156111505760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610672565b6001600160a01b0382166111a65760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610672565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b6000816001111580156111f3575060005482105b801561068b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061127f8261145f565b9050836001600160a01b031681600001516001600160a01b0316146112b65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112d457506112d485336105da565b806112ef5750336112e48461075b565b6001600160a01b0316145b90508061130f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661133657604051633a954ecd60e21b815260040160405180910390fd5b61134260008487611218565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661141657600054821461141657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610a68565b604080516060810182526000808252602082018190529181019190915281806001116115685760005481101561156857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906115665780516001600160a01b0316156114fd579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611561579392505050565b6114fd565b505b604051636f96cda160e11b815260040160405180910390fd5b600154600080548392900360001901600b5490915060ff166115dd5760405162461bcd60e51b8152602060048201526015602482015274151a19481b5a5b9d1a5b99c81a5cc81c185d5cd959605a1b6044820152606401610672565b600c548211156115ff5760405162461bcd60e51b815260040161067290612099565b600d5461160c8383612112565b11156116515760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610672565b600082116116a15760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610672565b610ec284846116fd565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6106c5828260405180602001604052806000815250611987565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061174c903390899088908890600401612049565b602060405180830381600087803b15801561176657600080fd5b505af1925050508015611796575060408051601f3d908101601f1916820190925261179391810190611f40565b60015b6117f1573d8080156117c4576040519150601f19603f3d011682016040523d82523d6000602084013e6117c9565b606091505b5080516117e9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060601080546106d8906121a0565b6060816118425750506040805180820190915260018152600360fc1b602082015290565b8160005b811561186c5780611856816121db565b91506118659050600a8361212a565b9150611846565b6000816001600160401b0381111561189457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118be576020820181803683370190505b5090505b8415611807576118d360018361215d565b91506118e0600a866121f6565b6118eb906030612112565b60f81b81838151811061190e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611930600a8661212a565b94506118c2565b60006001600160e01b031982166380ac58cd60e01b148061196857506001600160e01b03198216635b5e139f60e01b145b8061068b57506301ffc9a760e01b6001600160e01b031983161461068b565b6000546001600160a01b0384166119b057604051622e076360e81b815260040160405180910390fd5b826119ce5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611af6575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611abf6000878480600101955087611717565b611adc576040516368d2bf6b60e11b815260040160405180910390fd5b808210611a74578260005414611af157600080fd5b611b3b565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611af7575b506000908155610ec29085838684565b828054611b57906121a0565b90600052602060002090601f016020900481019282611b795760008555611bbf565b82601f10611b9257805160ff1916838001178555611bbf565b82800160010185558215611bbf579182015b82811115611bbf578251825591602001919060010190611ba4565b50611bcb929150611bcf565b5090565b5b80821115611bcb5760008155600101611bd0565b60006001600160401b0380841115611bfe57611bfe612236565b604051601f8501601f19908116603f01168101908282118183101715611c2657611c26612236565b81604052809350858152868686011115611c3f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611c7057600080fd5b919050565b60008083601f840112611c86578081fd5b5081356001600160401b03811115611c9c578182fd5b6020830191508360208260051b850101111561090757600080fd5b80358015158114611c7057600080fd5b600060208284031215611cd8578081fd5b610fef82611c59565b60008060408385031215611cf3578081fd5b611cfc83611c59565b9150611d0a60208401611c59565b90509250929050565b600080600060608486031215611d27578081fd5b611d3084611c59565b9250611d3e60208501611c59565b9150604084013590509250925092565b60008060008060808587031215611d63578081fd5b611d6c85611c59565b9350611d7a60208601611c59565b92506040850135915060608501356001600160401b03811115611d9b578182fd5b8501601f81018713611dab578182fd5b611dba87823560208401611be4565b91505092959194509250565b60008060408385031215611dd8578182fd5b611de183611c59565b9150611d0a60208401611cb7565b60008060408385031215611e01578182fd5b611e0a83611c59565b946020939093013593505050565b60008060408385031215611e2a578182fd5b611e3383611c59565b915060208301356001600160601b0381168114611e4e578182fd5b809150509250929050565b60008060008060408587031215611e6e578384fd5b84356001600160401b0380821115611e84578586fd5b611e9088838901611c75565b90965094506020870135915080821115611ea8578384fd5b50611eb587828801611c75565b95989497509550505050565b600080600060408486031215611ed5578283fd5b83356001600160401b03811115611eea578384fd5b611ef686828701611c75565b909790965060209590950135949350505050565b600060208284031215611f1b578081fd5b610fef82611cb7565b600060208284031215611f35578081fd5b8135610fef8161224c565b600060208284031215611f51578081fd5b8151610fef8161224c565b600060208284031215611f6d578081fd5b81356001600160401b03811115611f82578182fd5b8201601f81018413611f92578182fd5b61180784823560208401611be4565b600060208284031215611fb2578081fd5b5035919050565b60008060408385031215611fcb578182fd5b50508035926020909101359150565b60008151808452611ff2816020860160208601612174565b601f01601f19169290920160200192915050565b60008451612018818460208901612174565b84519083019061202c818360208901612174565b845191019061203f818360208801612174565b0195945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061207c90830184611fda565b9695505050505050565b602081526000610fef6020830184611fda565b60208082526024908201527f4d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156121255761212561220a565b500190565b60008261213957612139612220565b500490565b60008160001904831182151516156121585761215861220a565b500290565b60008282101561216f5761216f61220a565b500390565b60005b8381101561218f578181015183820152602001612177565b83811115610ec25750506000910152565b600181811c908216806121b457607f821691505b602082108114156121d557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156121ef576121ef61220a565b5060010190565b60008261220557612205612220565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461098d57600080fdfea2646970667358221220e0c3a50c7d0b6722e3ad2f593662f1666bf607033c4da22c251cf958d87f0c2f64736f6c63430008040033

Deployed Bytecode Sourcemap

230:3843:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3247:118;;;;;;;;;;-1:-1:-1;3247:118:12;;;;;:::i;:::-;;:::i;:::-;;1946:171;;;;;;;;;;-1:-1:-1;1946:171:12;;;;;:::i;:::-;;:::i;:::-;;;9124:14:14;;9117:22;9099:41;;9087:2;9072:18;1946:171:12;;;;;;;;3373:148;;;;;;;;;;-1:-1:-1;3373:148:12;;;;;:::i;:::-;;:::i;5580:100:4:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7084:204::-;;;;;;;;;;-1:-1:-1;7084:204:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8143:32:14;;;8125:51;;8113:2;8098:18;7084:204:4;8080:102:14;3647:122:12;;;;;;;;;;-1:-1:-1;3647:122:12;;;;;:::i;:::-;;:::i;6646:372:4:-;;;;;;;;;;-1:-1:-1;6646:372:4;;;;;:::i;:::-;;:::i;349:36:12:-;;;;;;;;;;-1:-1:-1;349:36:12;;;;;;;;1705:312:4;;;;;;;;;;-1:-1:-1;2209:1:12;1968:12:4;1758:7;1952:13;:28;-1:-1:-1;;1952:46:4;1705:312;;;13277:25:14;;;13265:2;13250:18;1705:312:4;13232:76:14;392:32:12;;;;;;;;;;;;;;;;7949:170:4;;;;;;;;;;-1:-1:-1;7949:170:4;;;;;:::i;:::-;;:::i;1674:442:3:-;;;;;;;;;;-1:-1:-1;1674:442:3;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;8872:32:14;;;8854:51;;8936:2;8921:18;;8914:34;;;;8827:18;1674:442:3;8809:145:14;2816:168:12;;;:::i;8190:185:4:-;;;;;;;;;;-1:-1:-1;8190:185:4;;;;;:::i;:::-;;:::i;514:32:12:-;;;;;;;;;;;;;;;;5388:125:4;;;;;;;;;;-1:-1:-1;5388:125:4;;;;;:::i;:::-;;:::i;1596:217:12:-;;;;;;;;;;-1:-1:-1;1596:217:12;;;;;:::i;:::-;;:::i;2834:206:4:-;;;;;;;;;;-1:-1:-1;2834:206:4;;;;;:::i;:::-;;:::i;1650:94:11:-;;;;;;;;;;;;;:::i;3949:119:12:-;;;;;;;;;;-1:-1:-1;3949:119:12;;;;;:::i;:::-;;:::i;999:87:11:-;;;;;;;;;;-1:-1:-1;1072:6:11;;-1:-1:-1;;;;;1072:6:11;999:87;;5749:104:4;;;;;;;;;;;;;:::i;1247:209:12:-;;;;;;:::i;:::-;;:::i;469:38::-;;;;;;;;;;;;;;;;7360:287:4;;;;;;;;;;-1:-1:-1;7360:287:4;;;;;:::i;:::-;;:::i;3777:164:12:-;;;;;;;;;;-1:-1:-1;3777:164:12;;;;;:::i;:::-;;:::i;553:36::-;;;;;;;;;;;;;:::i;2992:247::-;;;;;;;;;;-1:-1:-1;2992:247:12;;;;;:::i;:::-;;:::i;8446:370:4:-;;;;;;;;;;-1:-1:-1;8446:370:4;;;;;:::i;:::-;;:::i;2357:377:12:-;;;;;;;;;;-1:-1:-1;2357:377:12;;;;;:::i;:::-;;:::i;431:31::-;;;;;;;;;;;;;;;;7718:164:4;;;;;;;;;;-1:-1:-1;7718:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;7839:25:4;;;7815:4;7839:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7718:164;1899:192:11;;;;;;;;;;-1:-1:-1;1899:192:11;;;;;:::i;:::-;;:::i;3529:110:12:-;;;;;;;;;;-1:-1:-1;3529:110:12;;;;;:::i;:::-;;:::i;3247:118::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;591:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;;;;;;;;;3326:12:12::1;:31:::0;3247:118::o;1946:171::-;2049:4;2073:36;2097:11;2073:23;:36::i;:::-;2066:43;1946:171;-1:-1:-1;;1946:171:12:o;3373:148::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;591:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3469:44:12::1;3488:9;3499:13;3469:18;:44::i;:::-;3373:148:::0;;:::o;5580:100:4:-;5634:13;5667:5;5660:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5580:100;:::o;7084:204::-;7152:7;7177:16;7185:7;7177;:16::i;:::-;7172:64;;7202:34;;-1:-1:-1;;;7202:34:4;;;;;;;;;;;7172:64;-1:-1:-1;7256:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;7256:24:4;;7084:204::o;3647:122:12:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;591:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3728:13:12::1;:33:::0;3647:122::o;6646:372:4:-;6719:13;6735:24;6751:7;6735:15;:24::i;:::-;6719:40;;6780:5;-1:-1:-1;;;;;6774:11:4;:2;-1:-1:-1;;;;;6774:11:4;;6770:48;;;6794:24;;-1:-1:-1;;;6794:24:4;;;;;;;;;;;6770:48;591:10:1;-1:-1:-1;;;;;6835:21:4;;;6831:139;;6862:37;6879:5;591:10:1;7718:164:4;:::i;6862:37::-;6858:112;;6923:35;;-1:-1:-1;;;6923:35:4;;;;;;;;;;;6858:112;6982:28;6991:2;6995:7;7004:5;6982:8;:28::i;:::-;6646:372;;;:::o;7949:170::-;8083:28;8093:4;8099:2;8103:7;8083:9;:28::i;1674:442:3:-;1771:7;1829:27;;;:17;:27;;;;;;;;1800:56;;;;;;;;;-1:-1:-1;;;;;1800:56:3;;;;;-1:-1:-1;;;1800:56:3;;;-1:-1:-1;;;;;1800:56:3;;;;;;;;1771:7;;1869:92;;-1:-1:-1;1920:29:3;;;;;;;;;1930:19;1920:29;-1:-1:-1;;;;;1920:29:3;;;;-1:-1:-1;;;1920:29:3;;-1:-1:-1;;;;;1920:29:3;;;;;1869:92;2011:23;;;;1973:21;;2482:5;;1998:36;;-1:-1:-1;;;;;1998:36:3;:10;:36;:::i;:::-;1997:58;;;;:::i;:::-;2076:16;;;-1:-1:-1;1973:82:3;;-1:-1:-1;;1674:442:3;;;;;;:::o;2816:168:12:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;591:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;2891:58:12::1;::::0;2873:12:::1;::::0;2899:10:::1;::::0;2923:21:::1;::::0;2873:12;2891:58;2873:12;2891:58;2923:21;2899:10;2891:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2872:77;;;2968:7;2960:16;;;::::0;::::1;;1290:1:11;2816:168:12:o:0;8190:185:4:-;8328:39;8345:4;8351:2;8355:7;8328:39;;;;;;;;;;;;:16;:39::i;5388:125::-;5452:7;5479:21;5492:7;5479:12;:21::i;:::-;:26;;5388:125;-1:-1:-1;;5388:125:4:o;1596:217:12:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;591:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;1706:9:12::1;1701:105;1721:17:::0;;::::1;1701:105;;;1760:34;1767:6;;1774:1;1767:9;;;;;-1:-1:-1::0;;;1767:9:12::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1778:12;;1791:1;1778:15;;;;;-1:-1:-1::0;;;1778:15:12::1;;;;;;;;;;;;;;;1760:6;:34::i;:::-;1740:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1701:105;;;;1596:217:::0;;;;:::o;2834:206:4:-;2898:7;-1:-1:-1;;;;;2922:19:4;;2918:60;;2950:28;;-1:-1:-1;;;2950:28:4;;;;;;;;;;;2918:60;-1:-1:-1;;;;;;3004:19:4;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;3004:27:4;;2834:206::o;1650:94:11:-;1072:6;;-1:-1:-1;;;;;1072:6:11;591:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;3949:119:12:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;591:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;4024:16:12::1;:36:::0;;-1:-1:-1;;4024:36:12::1;::::0;::::1;;::::0;;;::::1;::::0;;3949:119::o;5749:104:4:-;5805:13;5838:7;5831:14;;;;;:::i;1247:209:12:-;2209:1;1968:12:4;897:14:12;1952:13:4;;1312:11:12;;1952:28:4;;-1:-1:-1;;1952:46:4;946:16:12;;897:30;;-1:-1:-1;946:16:12;;938:50;;;;-1:-1:-1;;;938:50:12;;10389:2:14;938:50:12;;;10371:21:14;10428:2;10408:18;;;10401:30;-1:-1:-1;;;10447:18:14;;;10440:51;10508:18;;938:50:12;10361:171:14;938:50:12;1022:13;;1007:11;:28;;999:77;;;;-1:-1:-1;;;999:77:12;;;;;;;:::i;:::-;1119:9;;1095:20;1104:11;1095:6;:20;:::i;:::-;:33;;1087:66;;;;-1:-1:-1;;;1087:66:12;;11516:2:14;1087:66:12;;;11498:21:14;11555:2;11535:18;;;11528:30;-1:-1:-1;;;11574:18:14;;;11567:50;11634:18;;1087:66:12;11488:170:14;1087:66:12;1186:1;1172:11;:15;1164:55;;;;-1:-1:-1;;;1164:55:12;;12977:2:14;1164:55:12;;;12959:21:14;13016:2;12996:18;;;12989:30;13055:29;13035:18;;;13028:57;13102:18;;1164:55:12;12949:177:14;1164:55:12;1369:11:::1;1356:10;;:24;;;;:::i;:::-;1343:9;:37;;1335:68;;;::::0;-1:-1:-1;;;1335:68:12;;11865:2:14;1335:68:12::1;::::0;::::1;11847:21:14::0;11904:2;11884:18;;;11877:30;-1:-1:-1;;;11923:18:14;;;11916:48;11981:18;;1335:68:12::1;11837:168:14::0;1335:68:12::1;1414:34;1424:10;1436:11;1414:9;:34::i;7360:287:4:-:0;-1:-1:-1;;;;;7459:24:4;;591:10:1;7459:24:4;7455:54;;;7492:17;;-1:-1:-1;;;7492:17:4;;;;;;;;;;;7455:54;591:10:1;7522:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7522:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;7522:53:4;;;;;;;;;;7591:48;;9099:41:14;;;7522:42:4;;591:10:1;7591:48:4;;9072:18:14;7591:48:4;;;;;;;7360:287;;:::o;3777:164:12:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;591:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3882:51:12;;::::1;::::0;:22:::1;::::0;:51:::1;::::0;::::1;::::0;::::1;:::i;553:36::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2992:247::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;591:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3105:29:12::1;3126:8:::0;3105:11;:29:::1;:::i;:::-;3089:12;;:45;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;3152:9:12::1;::::0;-1:-1:-1;3147:84:12::1;3167:22:::0;;::::1;3147:84;;;3196:35;3206:11;;3218:1;3206:14;;;;;-1:-1:-1::0;;;3206:14:12::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3222:8;3196:9;:35::i;:::-;3191:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3147:84;;;;2992:247:::0;;;:::o;8446:370:4:-;8613:28;8623:4;8629:2;8633:7;8613:9;:28::i;:::-;-1:-1:-1;;;;;8656:13:4;;1436:19:0;:23;8652:157:4;;8677:56;8708:4;8714:2;8718:7;8727:5;8677:30;:56::i;:::-;8673:136;;8757:40;;-1:-1:-1;;;8757:40:4;;;;;;;;;;;2357:377:12;2439:13;2473:16;2481:7;2473;:16::i;:::-;2465:76;;;;-1:-1:-1;;;2465:76:12;;11100:2:14;2465:76:12;;;11082:21:14;11139:2;11119:18;;;11112:30;11178:34;11158:18;;;11151:62;-1:-1:-1;;;11229:18:14;;;11222:45;11284:19;;2465:76:12;11072:237:14;2465:76:12;2552:28;2583:10;:8;:10::i;:::-;2552:41;;2642:1;2617:14;2611:28;:32;:115;;;;;;;;;;;;;;;;;2670:14;2686:18;:7;:16;:18::i;:::-;2706:13;;;;;;;;;;;;;-1:-1:-1;;;2706:13:12;;;2653:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2611:115;2604:122;2357:377;-1:-1:-1;;;2357:377:12:o;1899:192:11:-;1072:6;;-1:-1:-1;;;;;1072:6:11;591:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:11;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:11;;9577:2:14;1980:73:11::1;::::0;::::1;9559:21:14::0;9616:2;9596:18;;;9589:30;9655:34;9635:18;;;9628:62;-1:-1:-1;;;9706:18:14;;;9699:36;9752:19;;1980:73:11::1;9549:228:14::0;1980:73:11::1;2064:19;2074:8;2064:9;:19::i;3529:110:12:-:0;1072:6:11;;-1:-1:-1;;;;;1072:6:11;591:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3604:10:12::1;:27:::0;3529:110::o;1404:215:3:-;1506:4;-1:-1:-1;;;;;;1530:41:3;;-1:-1:-1;;;1530:41:3;;:81;;;1575:36;1599:11;1575:23;:36::i;2766:332::-;2482:5;-1:-1:-1;;;;;2869:33:3;;;;2861:88;;;;-1:-1:-1;;;2861:88:3;;12212:2:14;2861:88:3;;;12194:21:14;12251:2;12231:18;;;12224:30;12290:34;12270:18;;;12263:62;-1:-1:-1;;;12341:18:14;;;12334:40;12391:19;;2861:88:3;12184:232:14;2861:88:3;-1:-1:-1;;;;;2968:22:3;;2960:60;;;;-1:-1:-1;;;2960:60:3;;12623:2:14;2960:60:3;;;12605:21:14;12662:2;12642:18;;;12635:30;12701:27;12681:18;;;12674:55;12746:18;;2960:60:3;12595:175:14;2960:60:3;3055:35;;;;;;;;;-1:-1:-1;;;;;3055:35:3;;;;;;-1:-1:-1;;;;;3055:35:3;;;;;;;;;;-1:-1:-1;;;3033:57:3;;;;:19;:57;2766:332::o;8824:174:4:-;8881:4;8924:7;2209:1:12;8905:26:4;;:53;;;;;8945:13;;8935:7;:23;8905:53;:85;;;;-1:-1:-1;;8963:20:4;;;;:11;:20;;;;;:27;-1:-1:-1;;;8963:27:4;;;;8962:28;;8824:174::o;16783:196::-;16898:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;16898:29:4;-1:-1:-1;;;;;16898:29:4;;;;;;;;;16943:28;;16898:24;;16943:28;;;;;;;16783:196;;;:::o;12132:2130::-;12247:35;12285:21;12298:7;12285:12;:21::i;:::-;12247:59;;12345:4;-1:-1:-1;;;;;12323:26:4;:13;:18;;;-1:-1:-1;;;;;12323:26:4;;12319:67;;12358:28;;-1:-1:-1;;;12358:28:4;;;;;;;;;;;12319:67;12399:22;591:10:1;-1:-1:-1;;;;;12425:20:4;;;;:73;;-1:-1:-1;12462:36:4;12479:4;591:10:1;7718:164:4;:::i;12462:36::-;12425:126;;;-1:-1:-1;591:10:1;12515:20:4;12527:7;12515:11;:20::i;:::-;-1:-1:-1;;;;;12515:36:4;;12425:126;12399:153;;12570:17;12565:66;;12596:35;;-1:-1:-1;;;12596:35:4;;;;;;;;;;;12565:66;-1:-1:-1;;;;;12646:16:4;;12642:52;;12671:23;;-1:-1:-1;;;12671:23:4;;;;;;;;;;;12642:52;12815:35;12832:1;12836:7;12845:4;12815:8;:35::i;:::-;-1:-1:-1;;;;;13146:18:4;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;13146:31:4;;;-1:-1:-1;;;;;13146:31:4;;;-1:-1:-1;;13146:31:4;;;;;;;13192:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;13192:29:4;;;;;;;;;;;13272:20;;;:11;:20;;;;;;13307:18;;-1:-1:-1;;;;;;13340:49:4;;;;-1:-1:-1;;;13373:15:4;13340:49;;;;;;;;;;13663:11;;13723:24;;;;;13766:13;;13272:20;;13723:24;;13766:13;13762:384;;13976:13;;13961:11;:28;13957:174;;14014:20;;14083:28;;;;-1:-1:-1;;;;;14057:54:4;-1:-1:-1;;;14057:54:4;-1:-1:-1;;;;;;14057:54:4;;;-1:-1:-1;;;;;14014:20:4;;14057:54;;;;13957:174;12132:2130;;;14193:7;14189:2;-1:-1:-1;;;;;14174:27:4;14183:4;-1:-1:-1;;;;;14174:27:4;;;;;;;;;;;14212:42;2992:247:12;4215:1111:4;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;4326:7:4;;2209:1:12;4375:23:4;4371:888;;4411:13;;4404:4;:20;4400:859;;;4445:31;4479:17;;;:11;:17;;;;;;;;;4445:51;;;;;;;;;-1:-1:-1;;;;;4445:51:4;;;;-1:-1:-1;;;4445:51:4;;-1:-1:-1;;;;;4445:51:4;;;;;;;;-1:-1:-1;;;4445:51:4;;;;;;;;;;;;;;4515:729;;4565:14;;-1:-1:-1;;;;;4565:28:4;;4561:101;;4629:9;4215:1111;-1:-1:-1;;;4215:1111:4:o;4561:101::-;-1:-1:-1;;;5004:6:4;5049:17;;;;:11;:17;;;;;;;;;5037:29;;;;;;;;;-1:-1:-1;;;;;5037:29:4;;;;;-1:-1:-1;;;5037:29:4;;-1:-1:-1;;;;;5037:29:4;;;;;;;;-1:-1:-1;;;5037:29:4;;;;;;;;;;;;;5097:28;5093:109;;5165:9;4215:1111;-1:-1:-1;;;4215:1111:4:o;5093:109::-;4964:261;;;4400:859;;5287:31;;-1:-1:-1;;;5287:31:4;;;;;;;;;;;1464:124:12;2209:1;1968:12:4;897:14:12;1952:13:4;;1535:7:12;;1952:28:4;;-1:-1:-1;;1952:46:4;946:16:12;;897:30;;-1:-1:-1;946:16:12;;938:50;;;;-1:-1:-1;;;938:50:12;;10389:2:14;938:50:12;;;10371:21:14;10428:2;10408:18;;;10401:30;-1:-1:-1;;;10447:18:14;;;10440:51;10508:18;;938:50:12;10361:171:14;938:50:12;1022:13;;1007:11;:28;;999:77;;;;-1:-1:-1;;;999:77:12;;;;;;;:::i;:::-;1119:9;;1095:20;1104:11;1095:6;:20;:::i;:::-;:33;;1087:66;;;;-1:-1:-1;;;1087:66:12;;11516:2:14;1087:66:12;;;11498:21:14;11555:2;11535:18;;;11528:30;-1:-1:-1;;;11574:18:14;;;11567:50;11634:18;;1087:66:12;11488:170:14;1087:66:12;1186:1;1172:11;:15;1164:55;;;;-1:-1:-1;;;1164:55:12;;12977:2:14;1164:55:12;;;12959:21:14;13016:2;12996:18;;;12989:30;13055:29;13035:18;;;13028:57;13102:18;;1164:55:12;12949:177:14;1164:55:12;1555:25:::1;1565:5;1572:7;1555:9;:25::i;2099:173:11:-:0;2174:6;;;-1:-1:-1;;;;;2191:17:11;;;-1:-1:-1;;;;;;2191:17:11;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2099:173;;:::o;9082:104:4:-;9151:27;9161:2;9165:8;9151:27;;;;;;;;;;;;:9;:27::i;16987:667::-;17171:72;;-1:-1:-1;;;17171:72:4;;17150:4;;-1:-1:-1;;;;;17171:36:4;;;;;:72;;591:10:1;;17222:4:4;;17228:7;;17237:5;;17171:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17171:72:4;;;;;;;;-1:-1:-1;;17171:72:4;;;;;;;;;;;;:::i;:::-;;;17167:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17405:13:4;;17401:235;;17451:40;;-1:-1:-1;;;17451:40:4;;;;;;;;;;;17401:235;17594:6;17588:13;17579:6;17575:2;17571:15;17564:38;17167:480;-1:-1:-1;;;;;;17290:55:4;-1:-1:-1;;;17290:55:4;;-1:-1:-1;17167:480:4;16987:667;;;;;;:::o;2226:123:12:-;2286:13;2319:22;2312:29;;;;;:::i;288:723:13:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:13;;;;;;;;;;;;-1:-1:-1;;;592:10:13;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:13;;-1:-1:-1;744:2:13;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;-1:-1:-1;;;;;790:17:13;;;;;-1:-1:-1;;;790:17:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:13;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:13;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;-1:-1:-1;;;878:14:13;;;;;;;;;;;;:56;-1:-1:-1;;;;;878:56:13;;;;;;;;-1:-1:-1;949:11:13;958:2;949:11;;:::i;:::-;;;818:154;;2465:305:4;2567:4;-1:-1:-1;;;;;;2604:40:4;;-1:-1:-1;;;2604:40:4;;:105;;-1:-1:-1;;;;;;;2661:48:4;;-1:-1:-1;;;2661:48:4;2604:105;:158;;;-1:-1:-1;;;;;;;;;;896:40:2;;;2726:36:4;787:157:2;9194:1749:4;9317:20;9340:13;-1:-1:-1;;;;;9368:16:4;;9364:48;;9393:19;;-1:-1:-1;;;9393:19:4;;;;;;;;;;;9364:48;9427:13;9423:44;;9449:18;;-1:-1:-1;;;9449:18:4;;;;;;;;;;;9423:44;-1:-1:-1;;;;;9818:16:4;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;9877:49:4;;-1:-1:-1;;;;;9818:44:4;;;;;;;9877:49;;;;-1:-1:-1;;9818:44:4;;;;;;9877:49;;;;;;;;;;;;;;;;9943:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;9993:66:4;;;-1:-1:-1;;;10043:15:4;9993:66;;;;;;;;;;;;;9943:25;;10140:23;;;;1436:19:0;:23;10180:631:4;;10220:313;10251:38;;10276:12;;-1:-1:-1;;;;;10251:38:4;;;10268:1;;10251:38;;10268:1;;10251:38;10317:69;10356:1;10360:2;10364:14;;;;;;10380:5;10317:30;:69::i;:::-;10312:174;;10422:40;;-1:-1:-1;;;10422:40:4;;;;;;;;;;;10312:174;10528:3;10513:12;:18;10220:313;;10614:12;10597:13;;:29;10593:43;;10628:8;;;10593:43;10180:631;;;10677:119;10708:40;;10733:14;;;;;-1:-1:-1;;;;;10708:40:4;;;10725:1;;10708:40;;10725:1;;10708:40;10791:3;10776:12;:18;10677:119;;10180:631;-1:-1:-1;10825:13:4;:28;;;10875:60;;10908:2;10912:12;10926:8;10875:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:14;78:5;-1:-1:-1;;;;;149:2:14;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:14;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:14;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:391::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:2;;978:6;970;963:22;922:2;-1:-1:-1;1006:20:14;;-1:-1:-1;;;;;1038:30:14;;1035:2;;;1088:8;1078;1071:26;1035:2;1132:4;1124:6;1120:17;1108:29;;1192:3;1185:4;1175:6;1172:1;1168:14;1160:6;1156:27;1152:38;1149:47;1146:2;;;1209:1;1206;1199:12;1224:160;1289:20;;1345:13;;1338:21;1328:32;;1318:2;;1374:1;1371;1364:12;1389:196;1448:6;1501:2;1489:9;1480:7;1476:23;1472:32;1469:2;;;1522:6;1514;1507:22;1469:2;1550:29;1569:9;1550:29;:::i;1590:270::-;1658:6;1666;1719:2;1707:9;1698:7;1694:23;1690:32;1687:2;;;1740:6;1732;1725:22;1687:2;1768:29;1787:9;1768:29;:::i;:::-;1758:39;;1816:38;1850:2;1839:9;1835:18;1816:38;:::i;:::-;1806:48;;1677:183;;;;;:::o;1865:338::-;1942:6;1950;1958;2011:2;1999:9;1990:7;1986:23;1982:32;1979:2;;;2032:6;2024;2017:22;1979:2;2060:29;2079:9;2060:29;:::i;:::-;2050:39;;2108:38;2142:2;2131:9;2127:18;2108:38;:::i;:::-;2098:48;;2193:2;2182:9;2178:18;2165:32;2155:42;;1969:234;;;;;:::o;2208:696::-;2303:6;2311;2319;2327;2380:3;2368:9;2359:7;2355:23;2351:33;2348:2;;;2402:6;2394;2387:22;2348:2;2430:29;2449:9;2430:29;:::i;:::-;2420:39;;2478:38;2512:2;2501:9;2497:18;2478:38;:::i;:::-;2468:48;;2563:2;2552:9;2548:18;2535:32;2525:42;;2618:2;2607:9;2603:18;2590:32;-1:-1:-1;;;;;2637:6:14;2634:30;2631:2;;;2682:6;2674;2667:22;2631:2;2710:22;;2763:4;2755:13;;2751:27;-1:-1:-1;2741:2:14;;2797:6;2789;2782:22;2741:2;2825:73;2890:7;2885:2;2872:16;2867:2;2863;2859:11;2825:73;:::i;:::-;2815:83;;;2338:566;;;;;;;:::o;2909:264::-;2974:6;2982;3035:2;3023:9;3014:7;3010:23;3006:32;3003:2;;;3056:6;3048;3041:22;3003:2;3084:29;3103:9;3084:29;:::i;:::-;3074:39;;3132:35;3163:2;3152:9;3148:18;3132:35;:::i;3178:264::-;3246:6;3254;3307:2;3295:9;3286:7;3282:23;3278:32;3275:2;;;3328:6;3320;3313:22;3275:2;3356:29;3375:9;3356:29;:::i;:::-;3346:39;3432:2;3417:18;;;;3404:32;;-1:-1:-1;;;3265:177:14:o;3447:386::-;3514:6;3522;3575:2;3563:9;3554:7;3550:23;3546:32;3543:2;;;3596:6;3588;3581:22;3543:2;3624:29;3643:9;3624:29;:::i;:::-;3614:39;;3703:2;3692:9;3688:18;3675:32;-1:-1:-1;;;;;3740:5:14;3736:38;3729:5;3726:49;3716:2;;3794:6;3786;3779:22;3716:2;3822:5;3812:15;;;3533:300;;;;;:::o;3838:803::-;3960:6;3968;3976;3984;4037:2;4025:9;4016:7;4012:23;4008:32;4005:2;;;4058:6;4050;4043:22;4005:2;4103:9;4090:23;-1:-1:-1;;;;;4173:2:14;4165:6;4162:14;4159:2;;;4194:6;4186;4179:22;4159:2;4238:70;4300:7;4291:6;4280:9;4276:22;4238:70;:::i;:::-;4327:8;;-1:-1:-1;4212:96:14;-1:-1:-1;4415:2:14;4400:18;;4387:32;;-1:-1:-1;4431:16:14;;;4428:2;;;4465:6;4457;4450:22;4428:2;;4509:72;4573:7;4562:8;4551:9;4547:24;4509:72;:::i;:::-;3995:646;;;;-1:-1:-1;4600:8:14;-1:-1:-1;;;;3995:646:14:o;4646:525::-;4741:6;4749;4757;4810:2;4798:9;4789:7;4785:23;4781:32;4778:2;;;4831:6;4823;4816:22;4778:2;4876:9;4863:23;-1:-1:-1;;;;;4901:6:14;4898:30;4895:2;;;4946:6;4938;4931:22;4895:2;4990:70;5052:7;5043:6;5032:9;5028:22;4990:70;:::i;:::-;5079:8;;4964:96;;-1:-1:-1;5161:2:14;5146:18;;;;5133:32;;4768:403;-1:-1:-1;;;;4768:403:14:o;5176:190::-;5232:6;5285:2;5273:9;5264:7;5260:23;5256:32;5253:2;;;5306:6;5298;5291:22;5253:2;5334:26;5350:9;5334:26;:::i;5371:255::-;5429:6;5482:2;5470:9;5461:7;5457:23;5453:32;5450:2;;;5503:6;5495;5488:22;5450:2;5547:9;5534:23;5566:30;5590:5;5566:30;:::i;5631:259::-;5700:6;5753:2;5741:9;5732:7;5728:23;5724:32;5721:2;;;5774:6;5766;5759:22;5721:2;5811:9;5805:16;5830:30;5854:5;5830:30;:::i;5895:480::-;5964:6;6017:2;6005:9;5996:7;5992:23;5988:32;5985:2;;;6038:6;6030;6023:22;5985:2;6083:9;6070:23;-1:-1:-1;;;;;6108:6:14;6105:30;6102:2;;;6153:6;6145;6138:22;6102:2;6181:22;;6234:4;6226:13;;6222:27;-1:-1:-1;6212:2:14;;6268:6;6260;6253:22;6212:2;6296:73;6361:7;6356:2;6343:16;6338:2;6334;6330:11;6296:73;:::i;6380:190::-;6439:6;6492:2;6480:9;6471:7;6467:23;6463:32;6460:2;;;6513:6;6505;6498:22;6460:2;-1:-1:-1;6541:23:14;;6450:120;-1:-1:-1;6450:120:14:o;6575:258::-;6643:6;6651;6704:2;6692:9;6683:7;6679:23;6675:32;6672:2;;;6725:6;6717;6710:22;6672:2;-1:-1:-1;;6753:23:14;;;6823:2;6808:18;;;6795:32;;-1:-1:-1;6662:171:14:o;6838:257::-;6879:3;6917:5;6911:12;6944:6;6939:3;6932:19;6960:63;7016:6;7009:4;7004:3;7000:14;6993:4;6986:5;6982:16;6960:63;:::i;:::-;7077:2;7056:15;-1:-1:-1;;7052:29:14;7043:39;;;;7084:4;7039:50;;6887:208;-1:-1:-1;;6887:208:14:o;7100:664::-;7327:3;7365:6;7359:13;7381:53;7427:6;7422:3;7415:4;7407:6;7403:17;7381:53;:::i;:::-;7497:13;;7456:16;;;;7519:57;7497:13;7456:16;7553:4;7541:17;;7519:57;:::i;:::-;7643:13;;7598:20;;;7665:57;7643:13;7598:20;7699:4;7687:17;;7665:57;:::i;:::-;7738:20;;7335:429;-1:-1:-1;;;;;7335:429:14:o;8187:488::-;-1:-1:-1;;;;;8456:15:14;;;8438:34;;8508:15;;8503:2;8488:18;;8481:43;8555:2;8540:18;;8533:34;;;8603:3;8598:2;8583:18;;8576:31;;;8381:4;;8624:45;;8649:19;;8641:6;8624:45;:::i;:::-;8616:53;8390:285;-1:-1:-1;;;;;;8390:285:14:o;9151:219::-;9300:2;9289:9;9282:21;9263:4;9320:44;9360:2;9349:9;9345:18;9337:6;9320:44;:::i;9782:400::-;9984:2;9966:21;;;10023:2;10003:18;;;9996:30;10062:34;10057:2;10042:18;;10035:62;-1:-1:-1;;;10128:2:14;10113:18;;10106:34;10172:3;10157:19;;9956:226::o;10537:356::-;10739:2;10721:21;;;10758:18;;;10751:30;10817:34;10812:2;10797:18;;10790:62;10884:2;10869:18;;10711:182::o;13313:128::-;13353:3;13384:1;13380:6;13377:1;13374:13;13371:2;;;13390:18;;:::i;:::-;-1:-1:-1;13426:9:14;;13361:80::o;13446:120::-;13486:1;13512;13502:2;;13517:18;;:::i;:::-;-1:-1:-1;13551:9:14;;13492:74::o;13571:168::-;13611:7;13677:1;13673;13669:6;13665:14;13662:1;13659:21;13654:1;13647:9;13640:17;13636:45;13633:2;;;13684:18;;:::i;:::-;-1:-1:-1;13724:9:14;;13623:116::o;13744:125::-;13784:4;13812:1;13809;13806:8;13803:2;;;13817:18;;:::i;:::-;-1:-1:-1;13854:9:14;;13793:76::o;13874:258::-;13946:1;13956:113;13970:6;13967:1;13964:13;13956:113;;;14046:11;;;14040:18;14027:11;;;14020:39;13992:2;13985:10;13956:113;;;14087:6;14084:1;14081:13;14078:2;;;-1:-1:-1;;14122:1:14;14104:16;;14097:27;13927:205::o;14137:380::-;14216:1;14212:12;;;;14259;;;14280:2;;14334:4;14326:6;14322:17;14312:27;;14280:2;14387;14379:6;14376:14;14356:18;14353:38;14350:2;;;14433:10;14428:3;14424:20;14421:1;14414:31;14468:4;14465:1;14458:15;14496:4;14493:1;14486:15;14350:2;;14192:325;;;:::o;14522:135::-;14561:3;-1:-1:-1;;14582:17:14;;14579:2;;;14602:18;;:::i;:::-;-1:-1:-1;14649:1:14;14638:13;;14569:88::o;14662:112::-;14694:1;14720;14710:2;;14725:18;;:::i;:::-;-1:-1:-1;14759:9:14;;14700:74::o;14779:127::-;14840:10;14835:3;14831:20;14828:1;14821:31;14871:4;14868:1;14861:15;14895:4;14892:1;14885:15;14911:127;14972:10;14967:3;14963:20;14960:1;14953:31;15003:4;15000:1;14993:15;15027:4;15024:1;15017:15;15043:127;15104:10;15099:3;15095:20;15092:1;15085:31;15135:4;15132:1;15125:15;15159:4;15156:1;15149:15;15175:131;-1:-1:-1;;;;;;15249:32:14;;15239:43;;15229:2;;15296:1;15293;15286:12

Swarm Source

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