ETH Price: $2,450.36 (-5.81%)

Token

pride mfers (PRIDEMF)
 

Overview

Max Total Supply

376 PRIDEMF

Holders

151

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PRIDEMF
0x5ef279b2760639d80d68c015d347edebd6c92651
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:
PrideMfers

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-12
*/

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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

// File: contracts/PrideMfers.sol



/*
             _     _                 __              
            (_)   | |               / _|             
  _ __  _ __ _  __| | ___ _ __ ___ | |_ ___ _ __ ___ 
 | '_ \| '__| |/ _` |/ _ \ '_ ` _ \|  _/ _ \ '__/ __|
 | |_) | |  | | (_| |  __/ | | | | | ||  __/ |  \__ \
 | .__/|_|  |_|\__,_|\___|_| |_| |_|_| \___|_|  |___/
 | |                                                 
 |_|     

 www.pridemfers.com

*/

pragma solidity ^0.8.7;



contract PrideMfers is ERC721A, Ownable {
  event MintedNewNFT(address sender, uint256 quantity);

  mapping(address => uint256) public freeTickets; // giveaways, promoters
  mapping(address => uint256) public freeMintedWallet; // free minters

  uint256 public cost = 0.01 ether;
  uint256 public maxSupply = 1111;
  uint256 freeMintLimit = 1;
  uint256 freeMintTotal = 111;

  string _baseTokenURI = "";
  string unrevealedTokenURI = "ipfs://bafkreib423w4errub3ilgbecm5fcxxqtvrmetj3chq6vobaidhwduivdiq";


  constructor() ERC721A("pride mfers", "PRIDEMF") {}

  modifier mfKnowsWhatTheyDoing(uint256 _mintAmount) {
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded, mf!");
    require(_mintAmount > 0, "Invalid mint amount, mf.");
    _;
  }

  function mint(uint256 quantity) external payable mfKnowsWhatTheyDoing(quantity) {
    if(hasFreeMint(quantity)){
      // mfer has free minting tickets
      _safeMint(msg.sender, quantity);
      emit MintedNewNFT(msg.sender, quantity);
      freeTickets[msg.sender] = freeTickets[msg.sender] - quantity; // reduce tickets
    }
    else if(freeMintAllowed()) {
      // free mint
      if(quantity > 1) {
        // only one of them is free
        require(msg.value >= cost * (quantity - 1), "Damn, send more eth, mf.");
        _safeMint(msg.sender, quantity);
        emit MintedNewNFT(msg.sender, quantity);
      }else {
        require(quantity == 1, "You can only mint 1 free mfer.");
        _safeMint(msg.sender, quantity);
        emit MintedNewNFT(msg.sender, quantity);
      }
      freeMintedWallet[msg.sender] = freeMintedWallet[msg.sender] + 1;
    }else {
      // you have to pay mfer
      require(msg.value >= cost * quantity, "Damn, send more eth, mf.");
      _safeMint(msg.sender, quantity);
      emit MintedNewNFT(msg.sender, quantity);
    }
  }

  function freeMintAllowed() internal view returns (bool) {
    return (totalSupply() < freeMintTotal) && (freeMintedWallet[msg.sender] == 0);
  }

  function hasFreeMint(uint256 _quantity) internal view returns (bool) {
    return (freeTickets[msg.sender] >= _quantity);
  }

  function setPromoMinters(address[] memory _addresses, uint256[] memory _limits) public{
    uint256 len = _addresses.length;
    for(uint i = 0; i < len; i++) {
      freeTickets[_addresses[i]] = _limits[i];
    }
  }

  function withdraw() public onlyOwner {
    uint256 bal = address(this).balance;

    // Ukraine War Crisis Relief - https://twitter.com/ukraine/status/1497594592438497282
    (bool ukraine,) = payable(0x165CD37b4C644C2921454429E7F9358d18A45e14).call{value: bal * 15 / 100}("");
    require(ukraine);

    // Pride Community, there is no official ethereum address of any pride community fund, will be handled manually 
    // (bool pride,) = payable().call{value: bal * 20 / 100}("");
    
    // Sartoshi address - The @sartoshi_nft - sartoshi.eth
    (bool sartoshi,) = payable(0xeD98464BDA3cE53a95B50f897556bEDE4316361c).call{value: bal * 5 / 100}("");
    require(sartoshi);

    // 10% mfer community fund will be manually transferred to the treasury

    // Team
    (bool developer,) = payable(owner()).call{value: address(this).balance}("");
    require(developer);
  }

  // Metadata
  function _baseURI() internal view virtual override returns (string memory) {
    return _baseTokenURI;
  }

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    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, Strings.toString(_tokenId), ".json"))
        : unrevealedTokenURI;
  }
}

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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"MintedNewNFT","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":"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeTickets","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_limits","type":"uint256[]"}],"name":"setPromoMinters","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":"nonpayable","type":"function"}]

662386f26fc10000600b55610457600c556001600d55606f600e5560a06040819052600060808190526200003691600f9162000148565b5060405180608001604052806042815260200162002155604291398051620000679160109160209091019062000148565b503480156200007557600080fd5b50604080518082018252600b81526a7072696465206d6665727360a81b602080830191825283518085019094526007845266282924a222a6a360c91b908401528151919291620000c89160029162000148565b508051620000de90600390602084019062000148565b50506000805550620000f033620000f6565b6200022b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015690620001ee565b90600052602060002090601f0160209004810192826200017a5760008555620001c5565b82601f106200019557805160ff1916838001178555620001c5565b82800160010185558215620001c5579182015b82811115620001c5578251825591602001919060010190620001a8565b50620001d3929150620001d7565b5090565b5b80821115620001d35760008155600101620001d8565b600181811c908216806200020357607f821691505b602082108114156200022557634e487b7160e01b600052602260045260246000fd5b50919050565b611f1a806200023b6000396000f3fe6080604052600436106101665760003560e01c806370a08231116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610423578063d710114014610439578063e985e9c514610459578063f2fde38b146104a257600080fd5b8063a22cb465146103c3578063b88d4fde146103e3578063c87b56dd1461040357600080fd5b806370a082311461031b578063715018a61461033b5780638da5cb5b1461035057806395d89b411461036e5780639df7ea8614610383578063a0712d68146103b057600080fd5b806323b872dd1161012357806323b872dd146102595780633ccfd60b1461027957806342842e0e1461028e57806355f804b3146102ae5780635d7a4e8f146102ce5780636352211e146102fb57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806313faede61461021c57806318160ddd14610240575b600080fd5b34801561017757600080fd5b5061018b610186366004611b54565b6104c2565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b5610514565b6040516101979190611cc1565b3480156101ce57600080fd5b506101e26101dd366004611c00565b6105a6565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a610215366004611a63565b6105ea565b005b34801561022857600080fd5b50610232600b5481565b604051908152602001610197565b34801561024c57600080fd5b5060015460005403610232565b34801561026557600080fd5b5061021a61027436600461192b565b610678565b34801561028557600080fd5b5061021a610683565b34801561029a57600080fd5b5061021a6102a936600461192b565b610828565b3480156102ba57600080fd5b5061021a6102c9366004611b8e565b610843565b3480156102da57600080fd5b506102326102e93660046118dd565b60096020526000908152604090205481565b34801561030757600080fd5b506101e2610316366004611c00565b610879565b34801561032757600080fd5b506102326103363660046118dd565b61088b565b34801561034757600080fd5b5061021a6108da565b34801561035c57600080fd5b506008546001600160a01b03166101e2565b34801561037a57600080fd5b506101b5610910565b34801561038f57600080fd5b5061023261039e3660046118dd565b600a6020526000908152604090205481565b61021a6103be366004611c00565b61091f565b3480156103cf57600080fd5b5061021a6103de366004611a27565b610c44565b3480156103ef57600080fd5b5061021a6103fe366004611967565b610cda565b34801561040f57600080fd5b506101b561041e366004611c00565b610d25565b34801561042f57600080fd5b50610232600c5481565b34801561044557600080fd5b5061021a610454366004611a8d565b610e6b565b34801561046557600080fd5b5061018b6104743660046118f8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104ae57600080fd5b5061021a6104bd3660046118dd565b610ee7565b60006001600160e01b031982166380ac58cd60e01b14806104f357506001600160e01b03198216635b5e139f60e01b145b8061050e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461052390611dec565b80601f016020809104026020016040519081016040528092919081815260200182805461054f90611dec565b801561059c5780601f106105715761010080835404028352916020019161059c565b820191906000526020600020905b81548152906001019060200180831161057f57829003601f168201915b5050505050905090565b60006105b182610f82565b6105ce576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105f582610879565b9050806001600160a01b0316836001600160a01b0316141561062a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061064a57506106488133610474565b155b15610668576040516367d9dca160e11b815260040160405180910390fd5b610673838383610fad565b505050565b610673838383611009565b6008546001600160a01b031633146106b65760405162461bcd60e51b81526004016106ad90611cd4565b60405180910390fd5b47600073165cd37b4c644c2921454429e7f9358d18a45e1460646106db84600f611d8a565b6106e59190611d76565b604051600081818185875af1925050503d8060008114610721576040519150601f19603f3d011682016040523d82523d6000602084013e610726565b606091505b505090508061073457600080fd5b600073ed98464bda3ce53a95b50f897556bede4316361c6064610758856005611d8a565b6107629190611d76565b604051600081818185875af1925050503d806000811461079e576040519150601f19603f3d011682016040523d82523d6000602084013e6107a3565b606091505b50509050806107b157600080fd5b60006107c56008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461080f576040519150601f19603f3d011682016040523d82523d6000602084013e610814565b606091505b505090508061082257600080fd5b50505050565b61067383838360405180602001604052806000815250610cda565b6008546001600160a01b0316331461086d5760405162461bcd60e51b81526004016106ad90611cd4565b610673600f83836117b6565b60006108848261121f565b5192915050565b60006001600160a01b0382166108b4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109045760405162461bcd60e51b81526004016106ad90611cd4565b61090e600061133b565b565b60606003805461052390611dec565b80600c54816109316001546000540390565b61093b9190611d5e565b11156109895760405162461bcd60e51b815260206004820152601860248201527f4d617820737570706c792065786365656465642c206d6621000000000000000060448201526064016106ad565b600081116109d95760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964206d696e7420616d6f756e742c206d662e000000000000000060448201526064016106ad565b6109f28233600090815260096020526040902054101590565b15610a5757610a01338361138d565b6040805133815260208101849052600080516020611ec5833981519152910160405180910390a133600090815260096020526040902054610a43908390611da9565b336000908152600960205260409020555050565b610a5f6113a7565b15610bb6576001821115610b0557610a78600183611da9565b600b54610a859190611d8a565b341015610acf5760405162461bcd60e51b81526020600482015260186024820152772230b6b7161039b2b7321036b7b9329032ba34161036b31760411b60448201526064016106ad565b610ad9338361138d565b6040805133815260208101849052600080516020611ec5833981519152910160405180910390a1610b87565b81600114610b555760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e206f6e6c79206d696e7420312066726565206d6665722e000060448201526064016106ad565b610b5f338361138d565b6040805133815260208101849052600080516020611ec5833981519152910160405180910390a15b336000908152600a6020526040902054610ba2906001611d5e565b336000908152600a60205260409020555050565b81600b54610bc49190611d8a565b341015610c0e5760405162461bcd60e51b81526020600482015260186024820152772230b6b7161039b2b7321036b7b9329032ba34161036b31760411b60448201526064016106ad565b610c18338361138d565b6040805133815260208101849052600080516020611ec5833981519152910160405180910390a15b5050565b6001600160a01b038216331415610c6e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ce5848484611009565b6001600160a01b0383163b15158015610d075750610d05848484846113d8565b155b15610822576040516368d2bf6b60e11b815260040160405180910390fd5b6060610d3082610f82565b610d945760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ad565b6000610d9e6114d0565b90506000815111610e395760108054610db690611dec565b80601f0160208091040260200160405190810160405280929190818152602001828054610de290611dec565b8015610e2f5780601f10610e0457610100808354040283529160200191610e2f565b820191906000526020600020905b815481529060010190602001808311610e1257829003601f168201915b5050505050610e64565b80610e43846114df565b604051602001610e54929190611c45565b6040516020818303038152906040525b9392505050565b815160005b8181101561082257828181518110610e8a57610e8a611e82565b602002602001015160096000868481518110610ea857610ea8611e82565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610edf90611e27565b915050610e70565b6008546001600160a01b03163314610f115760405162461bcd60e51b81526004016106ad90611cd4565b6001600160a01b038116610f765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ad565b610f7f8161133b565b50565b600080548210801561050e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110148261121f565b80519091506000906001600160a01b0316336001600160a01b03161480611042575081516110429033610474565b8061105d575033611052846105a6565b6001600160a01b0316145b90508061107d57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110b25760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166110d957604051633a954ecd60e21b815260040160405180910390fd5b6110e96000848460000151610fad565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166111d5576000548110156111d5578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561132257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113205780516001600160a01b0316156112b6579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561131b579392505050565b6112b6565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c408282604051806020016040528060008152506115dd565b6000600e546113b96001546000540390565b1080156113d35750336000908152600a6020526040902054155b905090565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061140d903390899088908890600401611c84565b602060405180830381600087803b15801561142757600080fd5b505af1925050508015611457575060408051601f3d908101601f1916820190925261145491810190611b71565b60015b6114b2573d808015611485576040519150601f19603f3d011682016040523d82523d6000602084013e61148a565b606091505b5080516114aa576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600f805461052390611dec565b6060816115035750506040805180820190915260018152600360fc1b602082015290565b8160005b811561152d578061151781611e27565b91506115269050600a83611d76565b9150611507565b60008167ffffffffffffffff81111561154857611548611e98565b6040519080825280601f01601f191660200182016040528015611572576020820181803683370190505b5090505b84156114c857611587600183611da9565b9150611594600a86611e42565b61159f906030611d5e565b60f81b8183815181106115b4576115b4611e82565b60200101906001600160f81b031916908160001a9053506115d6600a86611d76565b9450611576565b61067383838360016000546001600160a01b03851661160e57604051622e076360e81b815260040160405180910390fd5b8361162c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156116de57506001600160a01b0387163b15155b15611767575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461172f60008884806001019550886113d8565b61174c576040516368d2bf6b60e11b815260040160405180910390fd5b808214156116e457826000541461176257600080fd5b6117ad565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611768575b50600055611218565b8280546117c290611dec565b90600052602060002090601f0160209004810192826117e4576000855561182a565b82601f106117fd5782800160ff1982351617855561182a565b8280016001018555821561182a579182015b8281111561182a57823582559160200191906001019061180f565b5061183692915061183a565b5090565b5b80821115611836576000815560010161183b565b80356001600160a01b038116811461186657600080fd5b919050565b600082601f83011261187c57600080fd5b8135602061189161188c83611d3a565b611d09565b80838252828201915082860187848660051b89010111156118b157600080fd5b60005b858110156118d0578135845292840192908401906001016118b4565b5090979650505050505050565b6000602082840312156118ef57600080fd5b610e648261184f565b6000806040838503121561190b57600080fd5b6119148361184f565b91506119226020840161184f565b90509250929050565b60008060006060848603121561194057600080fd5b6119498461184f565b92506119576020850161184f565b9150604084013590509250925092565b6000806000806080858703121561197d57600080fd5b6119868561184f565b9350602061199581870161184f565b935060408601359250606086013567ffffffffffffffff808211156119b957600080fd5b818801915088601f8301126119cd57600080fd5b8135818111156119df576119df611e98565b6119f1601f8201601f19168501611d09565b91508082528984828501011115611a0757600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215611a3a57600080fd5b611a438361184f565b915060208301358015158114611a5857600080fd5b809150509250929050565b60008060408385031215611a7657600080fd5b611a7f8361184f565b946020939093013593505050565b60008060408385031215611aa057600080fd5b823567ffffffffffffffff80821115611ab857600080fd5b818501915085601f830112611acc57600080fd5b81356020611adc61188c83611d3a565b8083825282820191508286018a848660051b8901011115611afc57600080fd5b600096505b84871015611b2657611b128161184f565b835260019690960195918301918301611b01565b5096505086013592505080821115611b3d57600080fd5b50611b4a8582860161186b565b9150509250929050565b600060208284031215611b6657600080fd5b8135610e6481611eae565b600060208284031215611b8357600080fd5b8151610e6481611eae565b60008060208385031215611ba157600080fd5b823567ffffffffffffffff80821115611bb957600080fd5b818501915085601f830112611bcd57600080fd5b813581811115611bdc57600080fd5b866020828501011115611bee57600080fd5b60209290920196919550909350505050565b600060208284031215611c1257600080fd5b5035919050565b60008151808452611c31816020860160208601611dc0565b601f01601f19169290920160200192915050565b60008351611c57818460208801611dc0565b835190830190611c6b818360208801611dc0565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cb790830184611c19565b9695505050505050565b602081526000610e646020830184611c19565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611d3257611d32611e98565b604052919050565b600067ffffffffffffffff821115611d5457611d54611e98565b5060051b60200190565b60008219821115611d7157611d71611e56565b500190565b600082611d8557611d85611e6c565b500490565b6000816000190483118215151615611da457611da4611e56565b500290565b600082821015611dbb57611dbb611e56565b500390565b60005b83811015611ddb578181015183820152602001611dc3565b838111156108225750506000910152565b600181811c90821680611e0057607f821691505b60208210811415611e2157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e3b57611e3b611e56565b5060010190565b600082611e5157611e51611e6c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f7f57600080fdfe4192c86b8ac550739dced41cae403b5d625307212752e22687a33f96c36b5e9aa264697066735822122062881a962fe060d0334eebfc68549bb58068e3a89b44c78e5e700da3bf89d12364736f6c63430008070033697066733a2f2f6261666b726569623432337734657272756233696c676265636d3566637878717476726d65746a3363687136766f62616964687764756976646971

Deployed Bytecode

0x6080604052600436106101665760003560e01c806370a08231116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610423578063d710114014610439578063e985e9c514610459578063f2fde38b146104a257600080fd5b8063a22cb465146103c3578063b88d4fde146103e3578063c87b56dd1461040357600080fd5b806370a082311461031b578063715018a61461033b5780638da5cb5b1461035057806395d89b411461036e5780639df7ea8614610383578063a0712d68146103b057600080fd5b806323b872dd1161012357806323b872dd146102595780633ccfd60b1461027957806342842e0e1461028e57806355f804b3146102ae5780635d7a4e8f146102ce5780636352211e146102fb57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806313faede61461021c57806318160ddd14610240575b600080fd5b34801561017757600080fd5b5061018b610186366004611b54565b6104c2565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b5610514565b6040516101979190611cc1565b3480156101ce57600080fd5b506101e26101dd366004611c00565b6105a6565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a610215366004611a63565b6105ea565b005b34801561022857600080fd5b50610232600b5481565b604051908152602001610197565b34801561024c57600080fd5b5060015460005403610232565b34801561026557600080fd5b5061021a61027436600461192b565b610678565b34801561028557600080fd5b5061021a610683565b34801561029a57600080fd5b5061021a6102a936600461192b565b610828565b3480156102ba57600080fd5b5061021a6102c9366004611b8e565b610843565b3480156102da57600080fd5b506102326102e93660046118dd565b60096020526000908152604090205481565b34801561030757600080fd5b506101e2610316366004611c00565b610879565b34801561032757600080fd5b506102326103363660046118dd565b61088b565b34801561034757600080fd5b5061021a6108da565b34801561035c57600080fd5b506008546001600160a01b03166101e2565b34801561037a57600080fd5b506101b5610910565b34801561038f57600080fd5b5061023261039e3660046118dd565b600a6020526000908152604090205481565b61021a6103be366004611c00565b61091f565b3480156103cf57600080fd5b5061021a6103de366004611a27565b610c44565b3480156103ef57600080fd5b5061021a6103fe366004611967565b610cda565b34801561040f57600080fd5b506101b561041e366004611c00565b610d25565b34801561042f57600080fd5b50610232600c5481565b34801561044557600080fd5b5061021a610454366004611a8d565b610e6b565b34801561046557600080fd5b5061018b6104743660046118f8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104ae57600080fd5b5061021a6104bd3660046118dd565b610ee7565b60006001600160e01b031982166380ac58cd60e01b14806104f357506001600160e01b03198216635b5e139f60e01b145b8061050e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461052390611dec565b80601f016020809104026020016040519081016040528092919081815260200182805461054f90611dec565b801561059c5780601f106105715761010080835404028352916020019161059c565b820191906000526020600020905b81548152906001019060200180831161057f57829003601f168201915b5050505050905090565b60006105b182610f82565b6105ce576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105f582610879565b9050806001600160a01b0316836001600160a01b0316141561062a5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061064a57506106488133610474565b155b15610668576040516367d9dca160e11b815260040160405180910390fd5b610673838383610fad565b505050565b610673838383611009565b6008546001600160a01b031633146106b65760405162461bcd60e51b81526004016106ad90611cd4565b60405180910390fd5b47600073165cd37b4c644c2921454429e7f9358d18a45e1460646106db84600f611d8a565b6106e59190611d76565b604051600081818185875af1925050503d8060008114610721576040519150601f19603f3d011682016040523d82523d6000602084013e610726565b606091505b505090508061073457600080fd5b600073ed98464bda3ce53a95b50f897556bede4316361c6064610758856005611d8a565b6107629190611d76565b604051600081818185875af1925050503d806000811461079e576040519150601f19603f3d011682016040523d82523d6000602084013e6107a3565b606091505b50509050806107b157600080fd5b60006107c56008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461080f576040519150601f19603f3d011682016040523d82523d6000602084013e610814565b606091505b505090508061082257600080fd5b50505050565b61067383838360405180602001604052806000815250610cda565b6008546001600160a01b0316331461086d5760405162461bcd60e51b81526004016106ad90611cd4565b610673600f83836117b6565b60006108848261121f565b5192915050565b60006001600160a01b0382166108b4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109045760405162461bcd60e51b81526004016106ad90611cd4565b61090e600061133b565b565b60606003805461052390611dec565b80600c54816109316001546000540390565b61093b9190611d5e565b11156109895760405162461bcd60e51b815260206004820152601860248201527f4d617820737570706c792065786365656465642c206d6621000000000000000060448201526064016106ad565b600081116109d95760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964206d696e7420616d6f756e742c206d662e000000000000000060448201526064016106ad565b6109f28233600090815260096020526040902054101590565b15610a5757610a01338361138d565b6040805133815260208101849052600080516020611ec5833981519152910160405180910390a133600090815260096020526040902054610a43908390611da9565b336000908152600960205260409020555050565b610a5f6113a7565b15610bb6576001821115610b0557610a78600183611da9565b600b54610a859190611d8a565b341015610acf5760405162461bcd60e51b81526020600482015260186024820152772230b6b7161039b2b7321036b7b9329032ba34161036b31760411b60448201526064016106ad565b610ad9338361138d565b6040805133815260208101849052600080516020611ec5833981519152910160405180910390a1610b87565b81600114610b555760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e206f6e6c79206d696e7420312066726565206d6665722e000060448201526064016106ad565b610b5f338361138d565b6040805133815260208101849052600080516020611ec5833981519152910160405180910390a15b336000908152600a6020526040902054610ba2906001611d5e565b336000908152600a60205260409020555050565b81600b54610bc49190611d8a565b341015610c0e5760405162461bcd60e51b81526020600482015260186024820152772230b6b7161039b2b7321036b7b9329032ba34161036b31760411b60448201526064016106ad565b610c18338361138d565b6040805133815260208101849052600080516020611ec5833981519152910160405180910390a15b5050565b6001600160a01b038216331415610c6e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ce5848484611009565b6001600160a01b0383163b15158015610d075750610d05848484846113d8565b155b15610822576040516368d2bf6b60e11b815260040160405180910390fd5b6060610d3082610f82565b610d945760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106ad565b6000610d9e6114d0565b90506000815111610e395760108054610db690611dec565b80601f0160208091040260200160405190810160405280929190818152602001828054610de290611dec565b8015610e2f5780601f10610e0457610100808354040283529160200191610e2f565b820191906000526020600020905b815481529060010190602001808311610e1257829003601f168201915b5050505050610e64565b80610e43846114df565b604051602001610e54929190611c45565b6040516020818303038152906040525b9392505050565b815160005b8181101561082257828181518110610e8a57610e8a611e82565b602002602001015160096000868481518110610ea857610ea8611e82565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610edf90611e27565b915050610e70565b6008546001600160a01b03163314610f115760405162461bcd60e51b81526004016106ad90611cd4565b6001600160a01b038116610f765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106ad565b610f7f8161133b565b50565b600080548210801561050e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110148261121f565b80519091506000906001600160a01b0316336001600160a01b03161480611042575081516110429033610474565b8061105d575033611052846105a6565b6001600160a01b0316145b90508061107d57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146110b25760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166110d957604051633a954ecd60e21b815260040160405180910390fd5b6110e96000848460000151610fad565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166111d5576000548110156111d5578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561132257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113205780516001600160a01b0316156112b6579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561131b579392505050565b6112b6565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c408282604051806020016040528060008152506115dd565b6000600e546113b96001546000540390565b1080156113d35750336000908152600a6020526040902054155b905090565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061140d903390899088908890600401611c84565b602060405180830381600087803b15801561142757600080fd5b505af1925050508015611457575060408051601f3d908101601f1916820190925261145491810190611b71565b60015b6114b2573d808015611485576040519150601f19603f3d011682016040523d82523d6000602084013e61148a565b606091505b5080516114aa576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600f805461052390611dec565b6060816115035750506040805180820190915260018152600360fc1b602082015290565b8160005b811561152d578061151781611e27565b91506115269050600a83611d76565b9150611507565b60008167ffffffffffffffff81111561154857611548611e98565b6040519080825280601f01601f191660200182016040528015611572576020820181803683370190505b5090505b84156114c857611587600183611da9565b9150611594600a86611e42565b61159f906030611d5e565b60f81b8183815181106115b4576115b4611e82565b60200101906001600160f81b031916908160001a9053506115d6600a86611d76565b9450611576565b61067383838360016000546001600160a01b03851661160e57604051622e076360e81b815260040160405180910390fd5b8361162c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156116de57506001600160a01b0387163b15155b15611767575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461172f60008884806001019550886113d8565b61174c576040516368d2bf6b60e11b815260040160405180910390fd5b808214156116e457826000541461176257600080fd5b6117ad565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611768575b50600055611218565b8280546117c290611dec565b90600052602060002090601f0160209004810192826117e4576000855561182a565b82601f106117fd5782800160ff1982351617855561182a565b8280016001018555821561182a579182015b8281111561182a57823582559160200191906001019061180f565b5061183692915061183a565b5090565b5b80821115611836576000815560010161183b565b80356001600160a01b038116811461186657600080fd5b919050565b600082601f83011261187c57600080fd5b8135602061189161188c83611d3a565b611d09565b80838252828201915082860187848660051b89010111156118b157600080fd5b60005b858110156118d0578135845292840192908401906001016118b4565b5090979650505050505050565b6000602082840312156118ef57600080fd5b610e648261184f565b6000806040838503121561190b57600080fd5b6119148361184f565b91506119226020840161184f565b90509250929050565b60008060006060848603121561194057600080fd5b6119498461184f565b92506119576020850161184f565b9150604084013590509250925092565b6000806000806080858703121561197d57600080fd5b6119868561184f565b9350602061199581870161184f565b935060408601359250606086013567ffffffffffffffff808211156119b957600080fd5b818801915088601f8301126119cd57600080fd5b8135818111156119df576119df611e98565b6119f1601f8201601f19168501611d09565b91508082528984828501011115611a0757600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215611a3a57600080fd5b611a438361184f565b915060208301358015158114611a5857600080fd5b809150509250929050565b60008060408385031215611a7657600080fd5b611a7f8361184f565b946020939093013593505050565b60008060408385031215611aa057600080fd5b823567ffffffffffffffff80821115611ab857600080fd5b818501915085601f830112611acc57600080fd5b81356020611adc61188c83611d3a565b8083825282820191508286018a848660051b8901011115611afc57600080fd5b600096505b84871015611b2657611b128161184f565b835260019690960195918301918301611b01565b5096505086013592505080821115611b3d57600080fd5b50611b4a8582860161186b565b9150509250929050565b600060208284031215611b6657600080fd5b8135610e6481611eae565b600060208284031215611b8357600080fd5b8151610e6481611eae565b60008060208385031215611ba157600080fd5b823567ffffffffffffffff80821115611bb957600080fd5b818501915085601f830112611bcd57600080fd5b813581811115611bdc57600080fd5b866020828501011115611bee57600080fd5b60209290920196919550909350505050565b600060208284031215611c1257600080fd5b5035919050565b60008151808452611c31816020860160208601611dc0565b601f01601f19169290920160200192915050565b60008351611c57818460208801611dc0565b835190830190611c6b818360208801611dc0565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cb790830184611c19565b9695505050505050565b602081526000610e646020830184611c19565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611d3257611d32611e98565b604052919050565b600067ffffffffffffffff821115611d5457611d54611e98565b5060051b60200190565b60008219821115611d7157611d71611e56565b500190565b600082611d8557611d85611e6c565b500490565b6000816000190483118215151615611da457611da4611e56565b500290565b600082821015611dbb57611dbb611e56565b500390565b60005b83811015611ddb578181015183820152602001611dc3565b838111156108225750506000910152565b600181811c90821680611e0057607f821691505b60208210811415611e2157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e3b57611e3b611e56565b5060010190565b600082611e5157611e51611e6c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f7f57600080fdfe4192c86b8ac550739dced41cae403b5d625307212752e22687a33f96c36b5e9aa264697066735822122062881a962fe060d0334eebfc68549bb58068e3a89b44c78e5e700da3bf89d12364736f6c63430008070033

Deployed Bytecode Sourcemap

46238:3995:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28272:305;;;;;;;;;;-1:-1:-1;28272:305:0;;;;;:::i;:::-;;:::i;:::-;;;7962:14:1;;7955:22;7937:41;;7925:2;7910:18;28272:305:0;;;;;;;;31657:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33160:204::-;;;;;;;;;;-1:-1:-1;33160:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6981:32:1;;;6963:51;;6951:2;6936:18;33160:204:0;6817:203:1;32723:371:0;;;;;;;;;;-1:-1:-1;32723:371:0;;;;;:::i;:::-;;:::i;:::-;;46491:32;;;;;;;;;;;;;;;;;;;10961:25:1;;;10949:2;10934:18;46491:32:0;10815:177:1;27521:303:0;;;;;;;;;;-1:-1:-1;27775:12:0;;27565:7;27759:13;:28;27521:303;;34017:170;;;;;;;;;;-1:-1:-1;34017:170:0;;;;;:::i;:::-;;:::i;48651:895::-;;;;;;;;;;;;;:::i;34258:185::-;;;;;;;;;;-1:-1:-1;34258:185:0;;;;;:::i;:::-;;:::i;49681:100::-;;;;;;;;;;-1:-1:-1;49681:100:0;;;;;:::i;:::-;;:::i;46342:46::-;;;;;;;;;;-1:-1:-1;46342:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;31466:124;;;;;;;;;;-1:-1:-1;31466:124:0;;;;;:::i;:::-;;:::i;28641:206::-;;;;;;;;;;-1:-1:-1;28641:206:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;31826:104;;;;;;;;;;;;;:::i;46417:51::-;;;;;;;;;;-1:-1:-1;46417:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;47033:1099;;;;;;:::i;:::-;;:::i;33436:279::-;;;;;;;;;;-1:-1:-1;33436:279:0;;;;;:::i;:::-;;:::i;34514:369::-;;;;;;;;;;-1:-1:-1;34514:369:0;;;;;:::i;:::-;;:::i;49787:443::-;;;;;;;;;;-1:-1:-1;49787:443:0;;;;;:::i;:::-;;:::i;46528:31::-;;;;;;;;;;;;;;;;48423:222;;;;;;;;;;-1:-1:-1;48423:222:0;;;;;:::i;:::-;;:::i;33786:164::-;;;;;;;;;;-1:-1:-1;33786:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33907:25:0;;;33883:4;33907:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33786:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;28272:305::-;28374:4;-1:-1:-1;;;;;;28411:40:0;;-1:-1:-1;;;28411:40:0;;:105;;-1:-1:-1;;;;;;;28468:48:0;;-1:-1:-1;;;28468:48:0;28411:105;:158;;;-1:-1:-1;;;;;;;;;;16972:40:0;;;28533:36;28391:178;28272:305;-1:-1:-1;;28272:305:0:o;31657:100::-;31711:13;31744:5;31737:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31657:100;:::o;33160:204::-;33228:7;33253:16;33261:7;33253;:16::i;:::-;33248:64;;33278:34;;-1:-1:-1;;;33278:34:0;;;;;;;;;;;33248:64;-1:-1:-1;33332:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33332:24:0;;33160:204::o;32723:371::-;32796:13;32812:24;32828:7;32812:15;:24::i;:::-;32796:40;;32857:5;-1:-1:-1;;;;;32851:11:0;:2;-1:-1:-1;;;;;32851:11:0;;32847:48;;;32871:24;;-1:-1:-1;;;32871:24:0;;;;;;;;;;;32847:48;2883:10;-1:-1:-1;;;;;32912:21:0;;;;;;:63;;-1:-1:-1;32938:37:0;32955:5;2883:10;33786:164;:::i;32938:37::-;32937:38;32912:63;32908:138;;;32999:35;;-1:-1:-1;;;32999:35:0;;;;;;;;;;;32908:138;33058:28;33067:2;33071:7;33080:5;33058:8;:28::i;:::-;32785:309;32723:371;;:::o;34017:170::-;34151:28;34161:4;34167:2;34171:7;34151:9;:28::i;48651:895::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;48709:21:::1;48695:11;48856:42;48923:3;48912:8;48709:21:::0;48918:2:::1;48912:8;:::i;:::-;:14;;;;:::i;:::-;48848:83;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48830:101;;;48946:7;48938:16;;;::::0;::::1;;49215:13;49241:42;49307:3;49297:7;:3:::0;49303:1:::1;49297:7;:::i;:::-;:13;;;;:::i;:::-;49233:82;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49214:101;;;49330:8;49322:17;;;::::0;::::1;;49441:14;49468:7;4152:6:::0;;-1:-1:-1;;;;;4152:6:0;;4079:87;49468:7:::1;-1:-1:-1::0;;;;;49460:21:0::1;49489;49460:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49440:75;;;49530:9;49522:18;;;::::0;::::1;;48688:858;;;;48651:895::o:0;34258:185::-;34396:39;34413:4;34419:2;34423:7;34396:39;;;;;;;;;;;;:16;:39::i;49681:100::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49752:23:::1;:13;49768:7:::0;;49752:23:::1;:::i;31466:124::-:0;31530:7;31557:20;31569:7;31557:11;:20::i;:::-;:25;;31466:124;-1:-1:-1;;31466:124:0:o;28641:206::-;28705:7;-1:-1:-1;;;;;28729:19:0;;28725:60;;28757:28;;-1:-1:-1;;;28757:28:0;;;;;;;;;;;28725:60;-1:-1:-1;;;;;;28811:19:0;;;;;:12;:19;;;;;:27;;;;28641:206::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;31826:104::-;31882:13;31915:7;31908:14;;;;;:::i;47033:1099::-;47103:8;46916:9;;46901:11;46885:13;27775:12;;27565:7;27759:13;:28;;27521:303;46885:13;:27;;;;:::i;:::-;:40;;46877:77;;;;-1:-1:-1;;;46877:77:0;;10664:2:1;46877:77:0;;;10646:21:1;10703:2;10683:18;;;10676:30;10742:26;10722:18;;;10715:54;10786:18;;46877:77:0;10462:348:1;46877:77:0;46983:1;46969:11;:15;46961:52;;;;-1:-1:-1;;;46961:52:0;;9952:2:1;46961:52:0;;;9934:21:1;9991:2;9971:18;;;9964:30;10030:26;10010:18;;;10003:54;10074:18;;46961:52:0;9750:348:1;46961:52:0;47123:21:::1;47135:8;48386:10:::0;48353:4;48374:23;;;:11;:23;;;;;;:36;;;48290:127;47123:21:::1;47120:1007;;;47194:31;47204:10;47216:8;47194:9;:31::i;:::-;47239:34;::::0;;47252:10:::1;7692:51:1::0;;7774:2;7759:18;;7752:34;;;-1:-1:-1;;;;;;;;;;;47239:34:0;7665:18:1;47239:34:0::1;;;;;;;47320:10;47308:23;::::0;;;:11:::1;:23;::::0;;;;;:34:::1;::::0;47334:8;;47308:34:::1;:::i;:::-;47294:10;47282:23;::::0;;;:11:::1;:23;::::0;;;;:60;47033:1099;;:::o;47120:1007::-:1;47382:17;:15;:17::i;:::-;47379:748;;;47444:1;47433:8;:12;47430:412;;;47524:12;47535:1;47524:8:::0;:12:::1;:::i;:::-;47516:4;;:21;;;;:::i;:::-;47503:9;:34;;47495:71;;;::::0;-1:-1:-1;;;47495:71:0;;8822:2:1;47495:71:0::1;::::0;::::1;8804:21:1::0;8861:2;8841:18;;;8834:30;-1:-1:-1;;;8880:18:1;;;8873:54;8944:18;;47495:71:0::1;8620:348:1::0;47495:71:0::1;47577:31;47587:10;47599:8;47577:9;:31::i;:::-;47624:34;::::0;;47637:10:::1;7692:51:1::0;;7774:2;7759:18;;7752:34;;;-1:-1:-1;;;;;;;;;;;47624:34:0;7665:18:1;47624:34:0::1;;;;;;;47430:412;;;47692:8;47704:1;47692:13;47684:56;;;::::0;-1:-1:-1;;;47684:56:0;;10305:2:1;47684:56:0::1;::::0;::::1;10287:21:1::0;10344:2;10324:18;;;10317:30;10383:32;10363:18;;;10356:60;10433:18;;47684:56:0::1;10103:354:1::0;47684:56:0::1;47751:31;47761:10;47773:8;47751:9;:31::i;:::-;47798:34;::::0;;47811:10:::1;7692:51:1::0;;7774:2;7759:18;;7752:34;;;-1:-1:-1;;;;;;;;;;;47798:34:0;7665:18:1;47798:34:0::1;;;;;;;47430:412;47898:10;47881:28;::::0;;;:16:::1;:28;::::0;;;;;:32:::1;::::0;47912:1:::1;47881:32;:::i;:::-;47867:10;47850:28;::::0;;;:16:::1;:28;::::0;;;;:63;47033:1099;;:::o;47379:748::-:1;47994:8;47987:4;;:15;;;;:::i;:::-;47974:9;:28;;47966:65;;;::::0;-1:-1:-1;;;47966:65:0;;8822:2:1;47966:65:0::1;::::0;::::1;8804:21:1::0;8861:2;8841:18;;;8834:30;-1:-1:-1;;;8880:18:1;;;8873:54;8944:18;;47966:65:0::1;8620:348:1::0;47966:65:0::1;48040:31;48050:10;48062:8;48040:9;:31::i;:::-;48085:34;::::0;;48098:10:::1;7692:51:1::0;;7774:2;7759:18;;7752:34;;;-1:-1:-1;;;;;;;;;;;48085:34:0;7665:18:1;48085:34:0::1;;;;;;;47379:748;47033:1099:::0;;:::o;33436:279::-;-1:-1:-1;;;;;33527:24:0;;2883:10;33527:24;33523:54;;;33560:17;;-1:-1:-1;;;33560:17:0;;;;;;;;;;;33523:54;2883:10;33590:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33590:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33590:53:0;;;;;;;;;;33659:48;;7937:41:1;;;33590:42:0;;2883:10;33659:48;;7910:18:1;33659:48:0;;;;;;;33436:279;;:::o;34514:369::-;34681:28;34691:4;34697:2;34701:7;34681:9;:28::i;:::-;-1:-1:-1;;;;;34724:13:0;;7075:19;:23;;34724:76;;;;;34744:56;34775:4;34781:2;34785:7;34794:5;34744:30;:56::i;:::-;34743:57;34724:76;34720:156;;;34824:40;;-1:-1:-1;;;34824:40:0;;;;;;;;;;;49787:443;49886:13;49927:17;49935:8;49927:7;:17::i;:::-;49911:98;;;;-1:-1:-1;;;49911:98:0;;9536:2:1;49911:98:0;;;9518:21:1;9575:2;9555:18;;;9548:30;9614:34;9594:18;;;9587:62;-1:-1:-1;;;9665:18:1;;;9658:45;9720:19;;49911:98:0;9334:411:1;49911:98:0;50018:28;50049:10;:8;:10::i;:::-;50018:41;;50104:1;50079:14;50073:28;:32;:151;;50206:18;50073:151;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50141:14;50157:26;50174:8;50157:16;:26::i;:::-;50124:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50073:151;50066:158;49787:443;-1:-1:-1;;;49787:443:0:o;48423:222::-;48530:17;;48516:11;48554:86;48574:3;48570:1;:7;48554:86;;;48622:7;48630:1;48622:10;;;;;;;;:::i;:::-;;;;;;;48593:11;:26;48605:10;48616:1;48605:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;48593:26:0;-1:-1:-1;;;;;48593:26:0;;;;;;;;;;;;:39;;;;48579:3;;;;;:::i;:::-;;;;48554:86;;4988:201;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;8415:2:1;5069:73:0::1;::::0;::::1;8397:21:1::0;8454:2;8434:18;;;8427:30;8493:34;8473:18;;;8466:62;-1:-1:-1;;;8544:18:1;;;8537:36;8590:19;;5069:73:0::1;8213:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;35138:187::-;35195:4;35259:13;;35249:7;:23;35219:98;;;;-1:-1:-1;;35290:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35290:27:0;;;;35289:28;;35138:187::o;42749:196::-;42864:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42864:29:0;-1:-1:-1;;;;;42864:29:0;;;;;;;;;42909:28;;42864:24;;42909:28;;;;;;;42749:196;;;:::o;38251:2112::-;38366:35;38404:20;38416:7;38404:11;:20::i;:::-;38479:18;;38366:58;;-1:-1:-1;38437:22:0;;-1:-1:-1;;;;;38463:34:0;2883:10;-1:-1:-1;;;;;38463:34:0;;:101;;;-1:-1:-1;38531:18:0;;38514:50;;2883:10;33786:164;:::i;38514:50::-;38463:154;;;-1:-1:-1;2883:10:0;38581:20;38593:7;38581:11;:20::i;:::-;-1:-1:-1;;;;;38581:36:0;;38463:154;38437:181;;38636:17;38631:66;;38662:35;;-1:-1:-1;;;38662:35:0;;;;;;;;;;;38631:66;38734:4;-1:-1:-1;;;;;38712:26:0;:13;:18;;;-1:-1:-1;;;;;38712:26:0;;38708:67;;38747:28;;-1:-1:-1;;;38747:28:0;;;;;;;;;;;38708:67;-1:-1:-1;;;;;38790:16:0;;38786:52;;38815:23;;-1:-1:-1;;;38815:23:0;;;;;;;;;;;38786:52;38959:49;38976:1;38980:7;38989:13;:18;;;38959:8;:49::i;:::-;-1:-1:-1;;;;;39304:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39304:31:0;;;;;;;-1:-1:-1;;39304:31:0;;;;;;;39350:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39350:29:0;;;;;;;;;;;39396:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39441:61:0;;;;-1:-1:-1;;;39486:15:0;39441:61;;;;;;;;;;;39776:11;;;39806:24;;;;;:29;39776:11;;39806:29;39802:445;;40031:13;;40017:11;:27;40013:219;;;40101:18;;;40069:24;;;:11;:24;;;;;;;;:50;;40184:28;;;;40142:70;;-1:-1:-1;;;40142:70:0;-1:-1:-1;;;;;;40142:70:0;;;-1:-1:-1;;;;;40069:50:0;;;40142:70;;;;;;;40013:219;39279:979;40294:7;40290:2;-1:-1:-1;;;;;40275:27:0;40284:4;-1:-1:-1;;;;;40275:27:0;;;;;;;;;;;40313:42;38355:2008;;38251:2112;;;:::o;30296:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30406:7:0;30489:13;;30482:4;:20;30451:886;;;30523:31;30557:17;;;:11;:17;;;;;;;;;30523:51;;;;;;;;;-1:-1:-1;;;;;30523:51:0;;;;-1:-1:-1;;;30523:51:0;;;;;;;;;;;-1:-1:-1;;;30523:51:0;;;;;;;;;;;;;;30593:729;;30643:14;;-1:-1:-1;;;;;30643:28:0;;30639:101;;30707:9;30296:1108;-1:-1:-1;;;30296:1108:0:o;30639:101::-;-1:-1:-1;;;31082:6:0;31127:17;;;;:11;:17;;;;;;;;;31115:29;;;;;;;;;-1:-1:-1;;;;;31115:29:0;;;;;-1:-1:-1;;;31115:29:0;;;;;;;;;;;-1:-1:-1;;;31115:29:0;;;;;;;;;;;;;31175:28;31171:109;;31243:9;30296:1108;-1:-1:-1;;;30296:1108:0:o;31171:109::-;31042:261;;;30504:833;30451:886;31365:31;;-1:-1:-1;;;31365:31:0;;;;;;;;;;;5349:191;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;35333:104::-;35402:27;35412:2;35416:8;35402:27;;;;;;;;;;;;:9;:27::i;48138:146::-;48188:4;48225:13;;48209;27775:12;;27565:7;27759:13;:28;;27521:303;48209:13;:29;48208:70;;;;-1:-1:-1;48261:10:0;48244:28;;;;:16;:28;;;;;;:33;48208:70;48201:77;;48138:146;:::o;43437:667::-;43621:72;;-1:-1:-1;;;43621:72:0;;43600:4;;-1:-1:-1;;;;;43621:36:0;;;;;:72;;2883:10;;43672:4;;43678:7;;43687:5;;43621:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43621:72:0;;;;;;;;-1:-1:-1;;43621:72:0;;;;;;;;;;;;:::i;:::-;;;43617:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43855:13:0;;43851:235;;43901:40;;-1:-1:-1;;;43901:40:0;;;;;;;;;;;43851:235;44044:6;44038:13;44029:6;44025:2;44021:15;44014:38;43617:480;-1:-1:-1;;;;;;43740:55:0;-1:-1:-1;;;43740:55:0;;-1:-1:-1;43617:480:0;43437:667;;;;;;:::o;49567:108::-;49627:13;49656;49649:20;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;35800:163;35923:32;35929:2;35933:8;35943:5;35950:4;36361:20;36384:13;-1:-1:-1;;;;;36412:16:0;;36408:48;;36437:19;;-1:-1:-1;;;36437:19:0;;;;;;;;;;;36408:48;36471:13;36467:44;;36493:18;;-1:-1:-1;;;36493:18:0;;;;;;;;;;;36467:44;-1:-1:-1;;;;;36862:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36921:49:0;;36862:44;;;;;;;;36921:49;;;;-1:-1:-1;;36862:44:0;;;;;;36921:49;;;;;;;;;;;;;;;;36987:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37037:66:0;;;;-1:-1:-1;;;37087:15:0;37037:66;;;;;;;;;;36987:25;37184:23;;;37228:4;:23;;;;-1:-1:-1;;;;;;37236:13:0;;7075:19;:23;;37236:15;37224:641;;;37272:314;37303:38;;37328:12;;-1:-1:-1;;;;;37303:38:0;;;37320:1;;37303:38;;37320:1;;37303:38;37369:69;37408:1;37412:2;37416:14;;;;;;37432:5;37369:30;:69::i;:::-;37364:174;;37474:40;;-1:-1:-1;;;37474:40:0;;;;;;;;;;;37364:174;37581:3;37565:12;:19;;37272:314;;37667:12;37650:13;;:29;37646:43;;37681:8;;;37646:43;37224:641;;;37730:120;37761:40;;37786:14;;;;;-1:-1:-1;;;;;37761:40:0;;;37778:1;;37761:40;;37778:1;;37761:40;37845:3;37829:12;:19;;37730:120;;37224:641;-1:-1:-1;37879:13:0;:28;37929:60;48651:895;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:673::-;246:5;299:3;292:4;284:6;280:17;276:27;266:55;;317:1;314;307:12;266:55;353:6;340:20;379:4;403:60;419:43;459:2;419:43;:::i;:::-;403:60;:::i;:::-;485:3;509:2;504:3;497:15;537:2;532:3;528:12;521:19;;572:2;564:6;560:15;624:3;619:2;613;610:1;606:10;598:6;594:23;590:32;587:41;584:61;;;641:1;638;631:12;584:61;663:1;673:163;687:2;684:1;681:9;673:163;;;744:17;;732:30;;782:12;;;;814;;;;705:1;698:9;673:163;;;-1:-1:-1;854:5:1;;192:673;-1:-1:-1;;;;;;;192:673:1:o;870:186::-;929:6;982:2;970:9;961:7;957:23;953:32;950:52;;;998:1;995;988:12;950:52;1021:29;1040:9;1021:29;:::i;1061:260::-;1129:6;1137;1190:2;1178:9;1169:7;1165:23;1161:32;1158:52;;;1206:1;1203;1196:12;1158:52;1229:29;1248:9;1229:29;:::i;:::-;1219:39;;1277:38;1311:2;1300:9;1296:18;1277:38;:::i;:::-;1267:48;;1061:260;;;;;:::o;1326:328::-;1403:6;1411;1419;1472:2;1460:9;1451:7;1447:23;1443:32;1440:52;;;1488:1;1485;1478:12;1440:52;1511:29;1530:9;1511:29;:::i;:::-;1501:39;;1559:38;1593:2;1582:9;1578:18;1559:38;:::i;:::-;1549:48;;1644:2;1633:9;1629:18;1616:32;1606:42;;1326:328;;;;;:::o;1659:980::-;1754:6;1762;1770;1778;1831:3;1819:9;1810:7;1806:23;1802:33;1799:53;;;1848:1;1845;1838:12;1799:53;1871:29;1890:9;1871:29;:::i;:::-;1861:39;;1919:2;1940:38;1974:2;1963:9;1959:18;1940:38;:::i;:::-;1930:48;;2025:2;2014:9;2010:18;1997:32;1987:42;;2080:2;2069:9;2065:18;2052:32;2103:18;2144:2;2136:6;2133:14;2130:34;;;2160:1;2157;2150:12;2130:34;2198:6;2187:9;2183:22;2173:32;;2243:7;2236:4;2232:2;2228:13;2224:27;2214:55;;2265:1;2262;2255:12;2214:55;2301:2;2288:16;2323:2;2319;2316:10;2313:36;;;2329:18;;:::i;:::-;2371:53;2414:2;2395:13;;-1:-1:-1;;2391:27:1;2387:36;;2371:53;:::i;:::-;2358:66;;2447:2;2440:5;2433:17;2487:7;2482:2;2477;2473;2469:11;2465:20;2462:33;2459:53;;;2508:1;2505;2498:12;2459:53;2563:2;2558;2554;2550:11;2545:2;2538:5;2534:14;2521:45;2607:1;2602:2;2597;2590:5;2586:14;2582:23;2575:34;;2628:5;2618:15;;;;;1659:980;;;;;;;:::o;2644:347::-;2709:6;2717;2770:2;2758:9;2749:7;2745:23;2741:32;2738:52;;;2786:1;2783;2776:12;2738:52;2809:29;2828:9;2809:29;:::i;:::-;2799:39;;2888:2;2877:9;2873:18;2860:32;2935:5;2928:13;2921:21;2914:5;2911:32;2901:60;;2957:1;2954;2947:12;2901:60;2980:5;2970:15;;;2644:347;;;;;:::o;2996:254::-;3064:6;3072;3125:2;3113:9;3104:7;3100:23;3096:32;3093:52;;;3141:1;3138;3131:12;3093:52;3164:29;3183:9;3164:29;:::i;:::-;3154:39;3240:2;3225:18;;;;3212:32;;-1:-1:-1;;;2996:254:1:o;3255:1157::-;3373:6;3381;3434:2;3422:9;3413:7;3409:23;3405:32;3402:52;;;3450:1;3447;3440:12;3402:52;3490:9;3477:23;3519:18;3560:2;3552:6;3549:14;3546:34;;;3576:1;3573;3566:12;3546:34;3614:6;3603:9;3599:22;3589:32;;3659:7;3652:4;3648:2;3644:13;3640:27;3630:55;;3681:1;3678;3671:12;3630:55;3717:2;3704:16;3739:4;3763:60;3779:43;3819:2;3779:43;:::i;3763:60::-;3845:3;3869:2;3864:3;3857:15;3897:2;3892:3;3888:12;3881:19;;3928:2;3924;3920:11;3976:7;3971:2;3965;3962:1;3958:10;3954:2;3950:19;3946:28;3943:41;3940:61;;;3997:1;3994;3987:12;3940:61;4019:1;4010:10;;4029:169;4043:2;4040:1;4037:9;4029:169;;;4100:23;4119:3;4100:23;:::i;:::-;4088:36;;4061:1;4054:9;;;;;4144:12;;;;4176;;4029:169;;;-1:-1:-1;4217:5:1;-1:-1:-1;;4260:18:1;;4247:32;;-1:-1:-1;;4291:16:1;;;4288:36;;;4320:1;4317;4310:12;4288:36;;4343:63;4398:7;4387:8;4376:9;4372:24;4343:63;:::i;:::-;4333:73;;;3255:1157;;;;;:::o;4417:245::-;4475:6;4528:2;4516:9;4507:7;4503:23;4499:32;4496:52;;;4544:1;4541;4534:12;4496:52;4583:9;4570:23;4602:30;4626:5;4602:30;:::i;4667:249::-;4736:6;4789:2;4777:9;4768:7;4764:23;4760:32;4757:52;;;4805:1;4802;4795:12;4757:52;4837:9;4831:16;4856:30;4880:5;4856:30;:::i;4921:592::-;4992:6;5000;5053:2;5041:9;5032:7;5028:23;5024:32;5021:52;;;5069:1;5066;5059:12;5021:52;5109:9;5096:23;5138:18;5179:2;5171:6;5168:14;5165:34;;;5195:1;5192;5185:12;5165:34;5233:6;5222:9;5218:22;5208:32;;5278:7;5271:4;5267:2;5263:13;5259:27;5249:55;;5300:1;5297;5290:12;5249:55;5340:2;5327:16;5366:2;5358:6;5355:14;5352:34;;;5382:1;5379;5372:12;5352:34;5427:7;5422:2;5413:6;5409:2;5405:15;5401:24;5398:37;5395:57;;;5448:1;5445;5438:12;5395:57;5479:2;5471:11;;;;;5501:6;;-1:-1:-1;4921:592:1;;-1:-1:-1;;;;4921:592:1:o;5518:180::-;5577:6;5630:2;5618:9;5609:7;5605:23;5601:32;5598:52;;;5646:1;5643;5636:12;5598:52;-1:-1:-1;5669:23:1;;5518:180;-1:-1:-1;5518:180:1:o;5703:257::-;5744:3;5782:5;5776:12;5809:6;5804:3;5797:19;5825:63;5881:6;5874:4;5869:3;5865:14;5858:4;5851:5;5847:16;5825:63;:::i;:::-;5942:2;5921:15;-1:-1:-1;;5917:29:1;5908:39;;;;5949:4;5904:50;;5703:257;-1:-1:-1;;5703:257:1:o;5965:637::-;6245:3;6283:6;6277:13;6299:53;6345:6;6340:3;6333:4;6325:6;6321:17;6299:53;:::i;:::-;6415:13;;6374:16;;;;6437:57;6415:13;6374:16;6471:4;6459:17;;6437:57;:::i;:::-;-1:-1:-1;;;6516:20:1;;6545:22;;;6594:1;6583:13;;5965:637;-1:-1:-1;;;;5965:637:1:o;7025:488::-;-1:-1:-1;;;;;7294:15:1;;;7276:34;;7346:15;;7341:2;7326:18;;7319:43;7393:2;7378:18;;7371:34;;;7441:3;7436:2;7421:18;;7414:31;;;7219:4;;7462:45;;7487:19;;7479:6;7462:45;:::i;:::-;7454:53;7025:488;-1:-1:-1;;;;;;7025:488:1:o;7989:219::-;8138:2;8127:9;8120:21;8101:4;8158:44;8198:2;8187:9;8183:18;8175:6;8158:44;:::i;8973:356::-;9175:2;9157:21;;;9194:18;;;9187:30;9253:34;9248:2;9233:18;;9226:62;9320:2;9305:18;;8973:356::o;10997:275::-;11068:2;11062:9;11133:2;11114:13;;-1:-1:-1;;11110:27:1;11098:40;;11168:18;11153:34;;11189:22;;;11150:62;11147:88;;;11215:18;;:::i;:::-;11251:2;11244:22;10997:275;;-1:-1:-1;10997:275:1:o;11277:183::-;11337:4;11370:18;11362:6;11359:30;11356:56;;;11392:18;;:::i;:::-;-1:-1:-1;11437:1:1;11433:14;11449:4;11429:25;;11277:183::o;11465:128::-;11505:3;11536:1;11532:6;11529:1;11526:13;11523:39;;;11542:18;;:::i;:::-;-1:-1:-1;11578:9:1;;11465:128::o;11598:120::-;11638:1;11664;11654:35;;11669:18;;:::i;:::-;-1:-1:-1;11703:9:1;;11598:120::o;11723:168::-;11763:7;11829:1;11825;11821:6;11817:14;11814:1;11811:21;11806:1;11799:9;11792:17;11788:45;11785:71;;;11836:18;;:::i;:::-;-1:-1:-1;11876:9:1;;11723:168::o;11896:125::-;11936:4;11964:1;11961;11958:8;11955:34;;;11969:18;;:::i;:::-;-1:-1:-1;12006:9:1;;11896:125::o;12026:258::-;12098:1;12108:113;12122:6;12119:1;12116:13;12108:113;;;12198:11;;;12192:18;12179:11;;;12172:39;12144:2;12137:10;12108:113;;;12239:6;12236:1;12233:13;12230:48;;;-1:-1:-1;;12274:1:1;12256:16;;12249:27;12026:258::o;12289:380::-;12368:1;12364:12;;;;12411;;;12432:61;;12486:4;12478:6;12474:17;12464:27;;12432:61;12539:2;12531:6;12528:14;12508:18;12505:38;12502:161;;;12585:10;12580:3;12576:20;12573:1;12566:31;12620:4;12617:1;12610:15;12648:4;12645:1;12638:15;12502:161;;12289:380;;;:::o;12674:135::-;12713:3;-1:-1:-1;;12734:17:1;;12731:43;;;12754:18;;:::i;:::-;-1:-1:-1;12801:1:1;12790:13;;12674:135::o;12814:112::-;12846:1;12872;12862:35;;12877:18;;:::i;:::-;-1:-1:-1;12911:9:1;;12814:112::o;12931:127::-;12992:10;12987:3;12983:20;12980:1;12973:31;13023:4;13020:1;13013:15;13047:4;13044:1;13037:15;13063:127;13124:10;13119:3;13115:20;13112:1;13105:31;13155:4;13152:1;13145:15;13179:4;13176:1;13169:15;13195:127;13256:10;13251:3;13247:20;13244:1;13237:31;13287:4;13284:1;13277:15;13311:4;13308:1;13301:15;13327:127;13388:10;13383:3;13379:20;13376:1;13369:31;13419:4;13416:1;13409:15;13443:4;13440:1;13433:15;13459:131;-1:-1:-1;;;;;;13533:32:1;;13523:43;;13513:71;;13580:1;13577;13570:12

Swarm Source

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