ETH Price: $3,315.61 (-0.29%)
Gas: 11 Gwei

Token

Bored Vitalik Moon Club (BVMC)
 

Overview

Max Total Supply

212 BVMC

Holders

67

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
deralfe.eth
Balance
0 BVMC
0x145ae66d2654726c6a6addf7d7380464aceacaf2
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:
BoredVitalikMoonClub

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-04-27
*/

// SPDX-License-Identifier: MIT

/*                                                                                             
BBBBBBBBBBBBBBBBB   VVVVVVVV           VVVVVVVVMMMMMMMM               MMMMMMMM        CCCCCCCCCCCCC
B::::::::::::::::B  V::::::V           V::::::VM:::::::M             M:::::::M     CCC::::::::::::C
B::::::BBBBBB:::::B V::::::V           V::::::VM::::::::M           M::::::::M   CC:::::::::::::::C
BB:::::B     B:::::BV::::::V           V::::::VM:::::::::M         M:::::::::M  C:::::CCCCCCCC::::C
  B::::B     B:::::B V:::::V           V:::::V M::::::::::M       M::::::::::M C:::::C       CCCCCC
  B::::B     B:::::B  V:::::V         V:::::V  M:::::::::::M     M:::::::::::MC:::::C              
  B::::BBBBBB:::::B    V:::::V       V:::::V   M:::::::M::::M   M::::M:::::::MC:::::C              
  B:::::::::::::BB      V:::::V     V:::::V    M::::::M M::::M M::::M M::::::MC:::::C              
  B::::BBBBBB:::::B      V:::::V   V:::::V     M::::::M  M::::M::::M  M::::::MC:::::C              
  B::::B     B:::::B      V:::::V V:::::V      M::::::M   M:::::::M   M::::::MC:::::C              
  B::::B     B:::::B       V:::::V:::::V       M::::::M    M:::::M    M::::::MC:::::C              
  B::::B     B:::::B        V:::::::::V        M::::::M     MMMMM     M::::::M C:::::C       CCCCCC
BB:::::BBBBBB::::::B         V:::::::V         M::::::M               M::::::M  C:::::CCCCCCCC::::C
B:::::::::::::::::B           V:::::V          M::::::M               M::::::M   CC:::::::::::::::C
B::::::::::::::::B             V:::V           M::::::M               M::::::M     CCC::::::::::::C
BBBBBBBBBBBBBBBBB               VVV            MMMMMMMM               MMMMMMMM        CCCCCCCCCCCCC
**/

// Bored Vitalik Moon Club

/*
BVMC is a collection of 3,333 Bored Vitalik NFTs — unique digital collectibles living on Ethereum blockchain. 
**/

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

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// 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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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/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: @openzeppelin/contracts/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

// File: contracts/NewContract.sol
pragma solidity >=0.7.0 <0.9.0;

contract BoredVitalikMoonClub is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.06 ether;
  uint256 public costForHolder = 0.001 ether;
  uint256 public maxSupply = 3333;
  uint256 public maxMintAmountPerTx = 20;
  uint256 public nftPerAddressLimit = 20;
  uint256 public requiredBWVC = 3;
  uint256 public maxMintAmountForHolders = 1;
  uint256 public donationPercentage = 30;

  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = false;
  bool public mintLimited = true;
  bool public mintForHolders = true;

  address[] public donationAddresses;
  address[] public whitelistedAddresses;

  constructor() ERC721("Bored Vitalik Moon Club", "BVMC") {
    setHiddenMetadataUri("ipfs://QmXFJxMvE9jDhiuSX78rZxjm1jQ8u7CdSzVPXd5sZDMh2P/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    
    uint256 donationValue = msg.value * donationPercentage / 100;

    if (msg.sender != owner()) {
        if (onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "The address is not whitelisted!");
        }
        
        if (mintLimited == true) {
            uint256 ownerTokenCount = balanceOf(msg.sender);
            require(ownerTokenCount < nftPerAddressLimit, "Max mint limit has been reached!");
        }
    } 
    
    require(msg.value >= getCost(_mintAmount) * _mintAmount, "Insufficient funds!");
    
    _mintLoop(msg.sender, _mintAmount);

    sendDonation(donationAddresses, donationValue);
  }

  function mintForOwner(uint256 _mintAmount) public onlyOwner mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _mintLoop(msg.sender, _mintAmount);
    }
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }
    
  function sendDonation(address[] memory _donationWallets, uint256 _donationValue) internal {
    require(_donationWallets.length > 0, "Add at least one donation wallet");
    
    // Equally split the donation portion between addresses
    for (uint256 i = 0; i < _donationWallets.length; i++) {
        (bool success, ) = payable(_donationWallets[i]).call{value: _donationValue / _donationWallets.length}("");
        require(success, "Could not send value!");
    }
  }

  function getCost(uint256 _mintAmount) internal view returns (uint256 _cost) {
    if (mintForHolders == true 
        && balanceOf(msg.sender) + _mintAmount <= maxMintAmountForHolders
        && balanceOf(msg.sender) + _mintAmount <= checkNftHolder(msg.sender) / requiredBWVC
    ) {
        return costForHolder;
    }

    return cost;
  }
  
  function checkNftHolder(address _address) public view returns (uint256) {
    address bwvcAddress=0x318c2cccaDd1b0FBA584997CE2B4F64556157f0F;
    IERC721 token = IERC721(bwvcAddress);

    return token.balanceOf(_address);
  }

  function isWhitelisted(address _user) public view returns (bool) {
     for (uint256 i = 0; i < whitelistedAddresses.length; i++) {
         if (whitelistedAddresses[i] == _user) {
            return true;
         }
     }
     return false;
  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;
        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }

  function setDonationPercentage(uint256 _percentage) public onlyOwner {
    donationPercentage = _percentage;
  }

  function setDonationAddresses(address[] calldata _donationWallets) public onlyOwner {
    delete donationAddresses;
    donationAddresses = _donationWallets;
  }

  function setWhitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }

  function setMintLimited(bool _state) public onlyOwner {
    mintLimited = _state;
  }

  function setMintForHolders(bool _state) public onlyOwner {
    mintForHolders = _state;
  }

  function setNftPerAddressLimit(uint256 _nftPerAddressLimit) public onlyOwner {
    nftPerAddressLimit = _nftPerAddressLimit;
  }

  function setRequiredBWVC(uint256 _requiredNFTAmount) public onlyOwner {
    requiredBWVC = _requiredNFTAmount;
  }

  function setMaxMintAmountForHolders(uint256 _maxMintAmountForHolders) public onlyOwner {
    maxMintAmountForHolders = _maxMintAmountForHolders;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setCostForHolder(uint256 _costForHolder) public onlyOwner {
    costForHolder = _costForHolder;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"checkNftHolder","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costForHolder","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"donationAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"donationPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountForHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintForHolders","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintLimited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requiredBWVC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_costForHolder","type":"uint256"}],"name":"setCostForHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_donationWallets","type":"address[]"}],"name":"setDonationAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setDonationPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountForHolders","type":"uint256"}],"name":"setMaxMintAmountForHolders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setMintForHolders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setMintLimited","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftPerAddressLimit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_requiredNFTAmount","type":"uint256"}],"name":"setRequiredBWVC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"setWhitelistUsers","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b916008916200022f565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a916009916200022f565b5066d529ae9e860000600b5566038d7ea4c68000600c55610d05600d556014600e819055600f5560036010556001601155601e6012556013805464ffffffffff1916640101000000179055348015620000a257600080fd5b50604080518082018252601781527f426f72656420566974616c696b204d6f6f6e20436c756200000000000000000060208083019182528351808501909452600484526342564d4360e01b90840152815191929162000104916000916200022f565b5080516200011a9060019060208401906200022f565b50505062000137620001316200016160201b60201c565b62000165565b6200015b6040518060800160405280604181526020016200329360419139620001b7565b62000312565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620002165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200022b90600a9060208401906200022f565b5050565b8280546200023d90620002d5565b90600052602060002090601f016020900481019282620002615760008555620002ac565b82601f106200027c57805160ff1916838001178555620002ac565b82800160010185558215620002ac579182015b82811115620002ac5782518255916020019190600101906200028f565b50620002ba929150620002be565b5090565b5b80821115620002ba5760008155600101620002bf565b600181811c90821680620002ea57607f821691505b602082108114156200030c57634e487b7160e01b600052602260045260246000fd5b50919050565b612f7180620003226000396000f3fe60806040526004361061038c5760003560e01c806363bc312a116101dc578063b459bc9711610102578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c514610a17578063ebd8214314610a60578063efbd73f414610a76578063f2fde38b14610a9657600080fd5b8063c87b56dd146109a1578063d0eb26b0146109c1578063d5abeb01146109e1578063e0a80853146109f757600080fd5b8063ba4e5c49116100dc578063ba4e5c4914610935578063ba7d2c7614610955578063bb1912951461096b578063c16cc8101461098b57600080fd5b8063b459bc97146108d4578063b88d4fde146108f4578063ba33f6801461091457600080fd5b806394354fd01161017a578063a0712d6811610149578063a0712d681461086c578063a22cb4651461087f578063a45ba8e71461089f578063b071401b146108b457600080fd5b806394354fd01461080b57806395d89b41146108215780639c70b512146108365780639c714f001461085657600080fd5b80637ec4a659116101b65780637ec4a6591461078b578063819d36e8146107ab57806382449f33146107cb5780638da5cb5b146107ed57600080fd5b806363bc312a1461073657806370a0823114610756578063715018a61461077657600080fd5b80633af32abf116102c157806344a0d68a1161025f5780635a46a1351161022e5780635a46a135146106c75780635c975abb146106e757806362b99ad4146107015780636352211e1461071657600080fd5b806344a0d68a146106535780634fdd43cb1461067357806351830227146106935780635503a0e8146106b257600080fd5b80633ccfd60b1161029b5780633ccfd60b146105db5780633d9a165b146105f057806342842e0e14610606578063438b63001461062657600080fd5b80633af32abf1461057b5780633c1eae151461059b5780633c952764146105bb57600080fd5b8063167beca61161032e57806318160ddd1161030857806318160ddd1461050657806323b872dd1461051b5780632beab4b71461053b57806335db36dd1461055b57600080fd5b8063167beca6146104a657806316ba10e0146104c657806316c38b3c146104e657600080fd5b8063081812fc1161036a578063081812fc1461040a578063095ea7b3146104425780630b91f5741461046257806313faede61461048257600080fd5b806301ffc9a714610391578063065730de146103c657806306fdde03146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac366004612a45565b610ab6565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103e66103e1366004612a2a565b610b08565b005b3480156103f457600080fd5b506103fd610b59565b6040516103bd9190612c8e565b34801561041657600080fd5b5061042a610425366004612ac8565b610beb565b6040516001600160a01b0390911681526020016103bd565b34801561044e57600080fd5b506103e661045d36600461298b565b610c80565b34801561046e57600080fd5b506103e661047d3660046129b5565b610d96565b34801561048e57600080fd5b50610498600b5481565b6040519081526020016103bd565b3480156104b257600080fd5b506103e66104c1366004612ac8565b610dd8565b3480156104d257600080fd5b506103e66104e1366004612a7f565b610e07565b3480156104f257600080fd5b506103e6610501366004612a2a565b610e48565b34801561051257600080fd5b50610498610e85565b34801561052757600080fd5b506103e66105363660046128a9565b610e95565b34801561054757600080fd5b506103e66105563660046129b5565b610ec6565b34801561056757600080fd5b5061049861057636600461285b565b610f08565b34801561058757600080fd5b506103b161059636600461285b565b610fa2565b3480156105a757600080fd5b506103e66105b6366004612ac8565b61100c565b3480156105c757600080fd5b506103e66105d6366004612a2a565b61103b565b3480156105e757600080fd5b506103e6611081565b3480156105fc57600080fd5b50610498600c5481565b34801561061257600080fd5b506103e66106213660046128a9565b61111f565b34801561063257600080fd5b5061064661064136600461285b565b61113a565b6040516103bd9190612c4a565b34801561065f57600080fd5b506103e661066e366004612ac8565b61121b565b34801561067f57600080fd5b506103e661068e366004612a7f565b61124a565b34801561069f57600080fd5b506013546103b190610100900460ff1681565b3480156106be57600080fd5b506103fd611287565b3480156106d357600080fd5b5061042a6106e2366004612ac8565b611315565b3480156106f357600080fd5b506013546103b19060ff1681565b34801561070d57600080fd5b506103fd61133f565b34801561072257600080fd5b5061042a610731366004612ac8565b61134c565b34801561074257600080fd5b506103e6610751366004612ac8565b6113c3565b34801561076257600080fd5b5061049861077136600461285b565b6114c4565b34801561078257600080fd5b506103e661154b565b34801561079757600080fd5b506103e66107a6366004612a7f565b611581565b3480156107b757600080fd5b506103e66107c6366004612a2a565b6115be565b3480156107d757600080fd5b506013546103b190640100000000900460ff1681565b3480156107f957600080fd5b506006546001600160a01b031661042a565b34801561081757600080fd5b50610498600e5481565b34801561082d57600080fd5b506103fd611608565b34801561084257600080fd5b506013546103b19062010000900460ff1681565b34801561086257600080fd5b5061049860105481565b6103e661087a366004612ac8565b611617565b34801561088b57600080fd5b506103e661089a366004612961565b6118b9565b3480156108ab57600080fd5b506103fd6118c4565b3480156108c057600080fd5b506103e66108cf366004612ac8565b6118d1565b3480156108e057600080fd5b506103e66108ef366004612ac8565b611900565b34801561090057600080fd5b506103e661090f3660046128e5565b61192f565b34801561092057600080fd5b506013546103b1906301000000900460ff1681565b34801561094157600080fd5b5061042a610950366004612ac8565b611967565b34801561096157600080fd5b50610498600f5481565b34801561097757600080fd5b506103e6610986366004612ac8565b611977565b34801561099757600080fd5b5061049860125481565b3480156109ad57600080fd5b506103fd6109bc366004612ac8565b6119a6565b3480156109cd57600080fd5b506103e66109dc366004612ac8565b611b25565b3480156109ed57600080fd5b50610498600d5481565b348015610a0357600080fd5b506103e6610a12366004612a2a565b611b54565b348015610a2357600080fd5b506103b1610a32366004612876565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6c57600080fd5b5061049860115481565b348015610a8257600080fd5b506103e6610a91366004612afa565b611b98565b348015610aa257600080fd5b506103e6610ab136600461285b565b611c30565b60006001600160e01b031982166380ac58cd60e01b1480610ae757506001600160e01b03198216635b5e139f60e01b145b80610b0257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b03163314610b3b5760405162461bcd60e51b8152600401610b3290612d21565b60405180910390fd5b6013805491151563010000000263ff00000019909216919091179055565b606060008054610b6890612e63565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9490612e63565b8015610be15780601f10610bb657610100808354040283529160200191610be1565b820191906000526020600020905b815481529060010190602001808311610bc457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b32565b506000908152600460205260409020546001600160a01b031690565b6000610c8b8261134c565b9050806001600160a01b0316836001600160a01b03161415610cf95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b32565b336001600160a01b0382161480610d155750610d158133610a32565b610d875760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b32565b610d918383611cc8565b505050565b6006546001600160a01b03163314610dc05760405162461bcd60e51b8152600401610b3290612d21565b610dcc601460006126af565b610d91601483836126cd565b6006546001600160a01b03163314610e025760405162461bcd60e51b8152600401610b3290612d21565b601055565b6006546001600160a01b03163314610e315760405162461bcd60e51b8152600401610b3290612d21565b8051610e44906009906020840190612730565b5050565b6006546001600160a01b03163314610e725760405162461bcd60e51b8152600401610b3290612d21565b6013805460ff1916911515919091179055565b6000610e9060075490565b905090565b610e9f3382611d36565b610ebb5760405162461bcd60e51b8152600401610b3290612d84565b610d91838383611e29565b6006546001600160a01b03163314610ef05760405162461bcd60e51b8152600401610b3290612d21565b610efc601560006126af565b610d91601583836126cd565b6040516370a0823160e01b81526001600160a01b038216600482015260009073318c2cccadd1b0fba584997ce2b4f64556157f0f90819081906370a082319060240160206040518083038186803b158015610f6257600080fd5b505afa158015610f76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9a9190612ae1565b949350505050565b6000805b60155481101561100357826001600160a01b031660158281548110610fcd57610fcd612ef9565b6000918252602090912001546001600160a01b03161415610ff15750600192915050565b80610ffb81612e9e565b915050610fa6565b50600092915050565b6006546001600160a01b031633146110365760405162461bcd60e51b8152600401610b3290612d21565b601155565b6006546001600160a01b031633146110655760405162461bcd60e51b8152600401610b3290612d21565b60138054911515620100000262ff000019909216919091179055565b6006546001600160a01b031633146110ab5760405162461bcd60e51b8152600401610b3290612d21565b60006110bf6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611109576040519150601f19603f3d011682016040523d82523d6000602084013e61110e565b606091505b505090508061111c57600080fd5b50565b610d918383836040518060200160405280600081525061192f565b60606000611147836114c4565b905060008167ffffffffffffffff81111561116457611164612f0f565b60405190808252806020026020018201604052801561118d578160200160208202803683370190505b509050600160005b83811080156111a65750600d548211155b156112115760006111b68361134c565b9050866001600160a01b0316816001600160a01b031614156111fe57828483815181106111e5576111e5612ef9565b6020908102919091010152816111fa81612e9e565b9250505b8261120881612e9e565b93505050611195565b5090949350505050565b6006546001600160a01b031633146112455760405162461bcd60e51b8152600401610b3290612d21565b600b55565b6006546001600160a01b031633146112745760405162461bcd60e51b8152600401610b3290612d21565b8051610e4490600a906020840190612730565b6009805461129490612e63565b80601f01602080910402602001604051908101604052809291908181526020018280546112c090612e63565b801561130d5780601f106112e25761010080835404028352916020019161130d565b820191906000526020600020905b8154815290600101906020018083116112f057829003601f168201915b505050505081565b6014818154811061132557600080fd5b6000918252602090912001546001600160a01b0316905081565b6008805461129490612e63565b6000818152600260205260408120546001600160a01b031680610b025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b32565b6006546001600160a01b031633146113ed5760405162461bcd60e51b8152600401610b3290612d21565b806000811180156114005750600e548111155b61141c5760405162461bcd60e51b8152600401610b3290612cf3565b600d548161142960075490565b6114339190612dd5565b11156114515760405162461bcd60e51b8152600401610b3290612d56565b60135460ff161561149e5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610b32565b60015b828111610d91576114b23384611fc9565b806114bc81612e9e565b9150506114a1565b60006001600160a01b03821661152f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b32565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146115755760405162461bcd60e51b8152600401610b3290612d21565b61157f6000612006565b565b6006546001600160a01b031633146115ab5760405162461bcd60e51b8152600401610b3290612d21565b8051610e44906008906020840190612730565b6006546001600160a01b031633146115e85760405162461bcd60e51b8152600401610b3290612d21565b601380549115156401000000000264ff0000000019909216919091179055565b606060018054610b6890612e63565b8060008111801561162a5750600e548111155b6116465760405162461bcd60e51b8152600401610b3290612cf3565b600d548161165360075490565b61165d9190612dd5565b111561167b5760405162461bcd60e51b8152600401610b3290612d56565b60135460ff16156116c85760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610b32565b60006064601254346116da9190612e01565b6116e49190612ded565b90506116f86006546001600160a01b031690565b6001600160a01b0316336001600160a01b0316146117f25760135462010000900460ff1615156001141561177b5761172f33610fa2565b61177b5760405162461bcd60e51b815260206004820152601f60248201527f5468652061646472657373206973206e6f742077686974656c697374656421006044820152606401610b32565b6013546301000000900460ff161515600114156117f257600061179d336114c4565b9050600f5481106117f05760405162461bcd60e51b815260206004820181905260248201527f4d6178206d696e74206c696d697420686173206265656e2072656163686564216044820152606401610b32565b505b826117fc84612058565b6118069190612e01565b34101561184b5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610b32565b6118553384611fc9565b610d9160148054806020026020016040519081016040528092919081815260200182805480156118ae57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611890575b5050505050826120d8565b610e44338383612204565b600a805461129490612e63565b6006546001600160a01b031633146118fb5760405162461bcd60e51b8152600401610b3290612d21565b600e55565b6006546001600160a01b0316331461192a5760405162461bcd60e51b8152600401610b3290612d21565b601255565b6119393383611d36565b6119555760405162461bcd60e51b8152600401610b3290612d84565b611961848484846122d3565b50505050565b6015818154811061132557600080fd5b6006546001600160a01b031633146119a15760405162461bcd60e51b8152600401610b3290612d21565b600c55565b6000818152600260205260409020546060906001600160a01b0316611a255760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b32565b601354610100900460ff16611ac657600a8054611a4190612e63565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6d90612e63565b8015611aba5780601f10611a8f57610100808354040283529160200191611aba565b820191906000526020600020905b815481529060010190602001808311611a9d57829003601f168201915b50505050509050919050565b6000611ad0612306565b90506000815111611af05760405180602001604052806000815250611b1e565b80611afa84612315565b6009604051602001611b0e93929190612b49565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314611b4f5760405162461bcd60e51b8152600401610b3290612d21565b600f55565b6006546001600160a01b03163314611b7e5760405162461bcd60e51b8152600401610b3290612d21565b601380549115156101000261ff0019909216919091179055565b81600081118015611bab5750600e548111155b611bc75760405162461bcd60e51b8152600401610b3290612cf3565b600d5481611bd460075490565b611bde9190612dd5565b1115611bfc5760405162461bcd60e51b8152600401610b3290612d56565b6006546001600160a01b03163314611c265760405162461bcd60e51b8152600401610b3290612d21565b610d918284611fc9565b6006546001600160a01b03163314611c5a5760405162461bcd60e51b8152600401610b3290612d21565b6001600160a01b038116611cbf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b32565b61111c81612006565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611cfd8261134c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611daf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b32565b6000611dba8361134c565b9050806001600160a01b0316846001600160a01b03161480611df55750836001600160a01b0316611dea84610beb565b6001600160a01b0316145b80610f9a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610f9a565b826001600160a01b0316611e3c8261134c565b6001600160a01b031614611ea45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b32565b6001600160a01b038216611f065760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b32565b611f11600082611cc8565b6001600160a01b0383166000908152600360205260408120805460019290611f3a908490612e20565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f68908490612dd5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b81811015610d9157611fe2600780546001019055565b611ff483611fef60075490565b612413565b80611ffe81612e9e565b915050611fcc565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b601354600090640100000000900460ff161515600114801561208f575060115482612082336114c4565b61208c9190612dd5565b11155b80156120c357506010546120a233610f08565b6120ac9190612ded565b826120b6336114c4565b6120c09190612dd5565b11155b156120d0575050600c5490565b5050600b5490565b60008251116121295760405162461bcd60e51b815260206004820181905260248201527f416464206174206c65617374206f6e6520646f6e6174696f6e2077616c6c65746044820152606401610b32565b60005b8251811015610d9157600083828151811061214957612149612ef9565b60200260200101516001600160a01b03168451846121679190612ded565b604051600081818185875af1925050503d80600081146121a3576040519150601f19603f3d011682016040523d82523d6000602084013e6121a8565b606091505b50509050806121f15760405162461bcd60e51b8152602060048201526015602482015274436f756c64206e6f742073656e642076616c75652160581b6044820152606401610b32565b50806121fc81612e9e565b91505061212c565b816001600160a01b0316836001600160a01b031614156122665760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b32565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122de848484611e29565b6122ea8484848461242d565b6119615760405162461bcd60e51b8152600401610b3290612ca1565b606060088054610b6890612e63565b6060816123395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612363578061234d81612e9e565b915061235c9050600a83612ded565b915061233d565b60008167ffffffffffffffff81111561237e5761237e612f0f565b6040519080825280601f01601f1916602001820160405280156123a8576020820181803683370190505b5090505b8415610f9a576123bd600183612e20565b91506123ca600a86612eb9565b6123d5906030612dd5565b60f81b8183815181106123ea576123ea612ef9565b60200101906001600160f81b031916908160001a90535061240c600a86612ded565b94506123ac565b610e4482826040518060200160405280600081525061253a565b60006001600160a01b0384163b1561252f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612471903390899088908890600401612c0d565b602060405180830381600087803b15801561248b57600080fd5b505af19250505080156124bb575060408051601f3d908101601f191682019092526124b891810190612a62565b60015b612515573d8080156124e9576040519150601f19603f3d011682016040523d82523d6000602084013e6124ee565b606091505b50805161250d5760405162461bcd60e51b8152600401610b3290612ca1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f9a565b506001949350505050565b612544838361256d565b612551600084848461242d565b610d915760405162461bcd60e51b8152600401610b3290612ca1565b6001600160a01b0382166125c35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b32565b6000818152600260205260409020546001600160a01b0316156126285760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b32565b6001600160a01b0382166000908152600360205260408120805460019290612651908490612dd5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b508054600082559060005260206000209081019061111c91906127a4565b828054828255906000526020600020908101928215612720579160200282015b828111156127205781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906126ed565b5061272c9291506127a4565b5090565b82805461273c90612e63565b90600052602060002090601f01602090048101928261275e5760008555612720565b82601f1061277757805160ff1916838001178555612720565b82800160010185558215612720579182015b82811115612720578251825591602001919060010190612789565b5b8082111561272c57600081556001016127a5565b600067ffffffffffffffff808411156127d4576127d4612f0f565b604051601f8501601f19908116603f011681019082821181831017156127fc576127fc612f0f565b8160405280935085815286868601111561281557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461284657600080fd5b919050565b8035801515811461284657600080fd5b60006020828403121561286d57600080fd5b611b1e8261282f565b6000806040838503121561288957600080fd5b6128928361282f565b91506128a06020840161282f565b90509250929050565b6000806000606084860312156128be57600080fd5b6128c78461282f565b92506128d56020850161282f565b9150604084013590509250925092565b600080600080608085870312156128fb57600080fd5b6129048561282f565b93506129126020860161282f565b925060408501359150606085013567ffffffffffffffff81111561293557600080fd5b8501601f8101871361294657600080fd5b612955878235602084016127b9565b91505092959194509250565b6000806040838503121561297457600080fd5b61297d8361282f565b91506128a06020840161284b565b6000806040838503121561299e57600080fd5b6129a78361282f565b946020939093013593505050565b600080602083850312156129c857600080fd5b823567ffffffffffffffff808211156129e057600080fd5b818501915085601f8301126129f457600080fd5b813581811115612a0357600080fd5b8660208260051b8501011115612a1857600080fd5b60209290920196919550909350505050565b600060208284031215612a3c57600080fd5b611b1e8261284b565b600060208284031215612a5757600080fd5b8135611b1e81612f25565b600060208284031215612a7457600080fd5b8151611b1e81612f25565b600060208284031215612a9157600080fd5b813567ffffffffffffffff811115612aa857600080fd5b8201601f81018413612ab957600080fd5b610f9a848235602084016127b9565b600060208284031215612ada57600080fd5b5035919050565b600060208284031215612af357600080fd5b5051919050565b60008060408385031215612b0d57600080fd5b823591506128a06020840161282f565b60008151808452612b35816020860160208601612e37565b601f01601f19169290920160200192915050565b600084516020612b5c8285838a01612e37565b855191840191612b6f8184848a01612e37565b8554920191600090600181811c9080831680612b8c57607f831692505b858310811415612baa57634e487b7160e01b85526022600452602485fd5b808015612bbe5760018114612bcf57612bfc565b60ff19851688528388019550612bfc565b60008b81526020902060005b85811015612bf45781548a820152908401908801612bdb565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c4090830184612b1d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c8257835183529284019291840191600101612c66565b50909695505050505050565b602081526000611b1e6020830184612b1d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612de857612de8612ecd565b500190565b600082612dfc57612dfc612ee3565b500490565b6000816000190483118215151615612e1b57612e1b612ecd565b500290565b600082821015612e3257612e32612ecd565b500390565b60005b83811015612e52578181015183820152602001612e3a565b838111156119615750506000910152565b600181811c90821680612e7757607f821691505b60208210811415612e9857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612eb257612eb2612ecd565b5060010190565b600082612ec857612ec8612ee3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461111c57600080fdfea264697066735822122058c3e29c743bf0e76ec87ec767279ff57c4fded6cc373ba21e38309b296d54f464736f6c63430008070033697066733a2f2f516d58464a784d7645396a4468697553583738725a786a6d316a513875374364537a5650586435735a444d6832502f68696464656e2e6a736f6e

Deployed Bytecode

0x60806040526004361061038c5760003560e01c806363bc312a116101dc578063b459bc9711610102578063c87b56dd116100a0578063e985e9c51161006f578063e985e9c514610a17578063ebd8214314610a60578063efbd73f414610a76578063f2fde38b14610a9657600080fd5b8063c87b56dd146109a1578063d0eb26b0146109c1578063d5abeb01146109e1578063e0a80853146109f757600080fd5b8063ba4e5c49116100dc578063ba4e5c4914610935578063ba7d2c7614610955578063bb1912951461096b578063c16cc8101461098b57600080fd5b8063b459bc97146108d4578063b88d4fde146108f4578063ba33f6801461091457600080fd5b806394354fd01161017a578063a0712d6811610149578063a0712d681461086c578063a22cb4651461087f578063a45ba8e71461089f578063b071401b146108b457600080fd5b806394354fd01461080b57806395d89b41146108215780639c70b512146108365780639c714f001461085657600080fd5b80637ec4a659116101b65780637ec4a6591461078b578063819d36e8146107ab57806382449f33146107cb5780638da5cb5b146107ed57600080fd5b806363bc312a1461073657806370a0823114610756578063715018a61461077657600080fd5b80633af32abf116102c157806344a0d68a1161025f5780635a46a1351161022e5780635a46a135146106c75780635c975abb146106e757806362b99ad4146107015780636352211e1461071657600080fd5b806344a0d68a146106535780634fdd43cb1461067357806351830227146106935780635503a0e8146106b257600080fd5b80633ccfd60b1161029b5780633ccfd60b146105db5780633d9a165b146105f057806342842e0e14610606578063438b63001461062657600080fd5b80633af32abf1461057b5780633c1eae151461059b5780633c952764146105bb57600080fd5b8063167beca61161032e57806318160ddd1161030857806318160ddd1461050657806323b872dd1461051b5780632beab4b71461053b57806335db36dd1461055b57600080fd5b8063167beca6146104a657806316ba10e0146104c657806316c38b3c146104e657600080fd5b8063081812fc1161036a578063081812fc1461040a578063095ea7b3146104425780630b91f5741461046257806313faede61461048257600080fd5b806301ffc9a714610391578063065730de146103c657806306fdde03146103e8575b600080fd5b34801561039d57600080fd5b506103b16103ac366004612a45565b610ab6565b60405190151581526020015b60405180910390f35b3480156103d257600080fd5b506103e66103e1366004612a2a565b610b08565b005b3480156103f457600080fd5b506103fd610b59565b6040516103bd9190612c8e565b34801561041657600080fd5b5061042a610425366004612ac8565b610beb565b6040516001600160a01b0390911681526020016103bd565b34801561044e57600080fd5b506103e661045d36600461298b565b610c80565b34801561046e57600080fd5b506103e661047d3660046129b5565b610d96565b34801561048e57600080fd5b50610498600b5481565b6040519081526020016103bd565b3480156104b257600080fd5b506103e66104c1366004612ac8565b610dd8565b3480156104d257600080fd5b506103e66104e1366004612a7f565b610e07565b3480156104f257600080fd5b506103e6610501366004612a2a565b610e48565b34801561051257600080fd5b50610498610e85565b34801561052757600080fd5b506103e66105363660046128a9565b610e95565b34801561054757600080fd5b506103e66105563660046129b5565b610ec6565b34801561056757600080fd5b5061049861057636600461285b565b610f08565b34801561058757600080fd5b506103b161059636600461285b565b610fa2565b3480156105a757600080fd5b506103e66105b6366004612ac8565b61100c565b3480156105c757600080fd5b506103e66105d6366004612a2a565b61103b565b3480156105e757600080fd5b506103e6611081565b3480156105fc57600080fd5b50610498600c5481565b34801561061257600080fd5b506103e66106213660046128a9565b61111f565b34801561063257600080fd5b5061064661064136600461285b565b61113a565b6040516103bd9190612c4a565b34801561065f57600080fd5b506103e661066e366004612ac8565b61121b565b34801561067f57600080fd5b506103e661068e366004612a7f565b61124a565b34801561069f57600080fd5b506013546103b190610100900460ff1681565b3480156106be57600080fd5b506103fd611287565b3480156106d357600080fd5b5061042a6106e2366004612ac8565b611315565b3480156106f357600080fd5b506013546103b19060ff1681565b34801561070d57600080fd5b506103fd61133f565b34801561072257600080fd5b5061042a610731366004612ac8565b61134c565b34801561074257600080fd5b506103e6610751366004612ac8565b6113c3565b34801561076257600080fd5b5061049861077136600461285b565b6114c4565b34801561078257600080fd5b506103e661154b565b34801561079757600080fd5b506103e66107a6366004612a7f565b611581565b3480156107b757600080fd5b506103e66107c6366004612a2a565b6115be565b3480156107d757600080fd5b506013546103b190640100000000900460ff1681565b3480156107f957600080fd5b506006546001600160a01b031661042a565b34801561081757600080fd5b50610498600e5481565b34801561082d57600080fd5b506103fd611608565b34801561084257600080fd5b506013546103b19062010000900460ff1681565b34801561086257600080fd5b5061049860105481565b6103e661087a366004612ac8565b611617565b34801561088b57600080fd5b506103e661089a366004612961565b6118b9565b3480156108ab57600080fd5b506103fd6118c4565b3480156108c057600080fd5b506103e66108cf366004612ac8565b6118d1565b3480156108e057600080fd5b506103e66108ef366004612ac8565b611900565b34801561090057600080fd5b506103e661090f3660046128e5565b61192f565b34801561092057600080fd5b506013546103b1906301000000900460ff1681565b34801561094157600080fd5b5061042a610950366004612ac8565b611967565b34801561096157600080fd5b50610498600f5481565b34801561097757600080fd5b506103e6610986366004612ac8565b611977565b34801561099757600080fd5b5061049860125481565b3480156109ad57600080fd5b506103fd6109bc366004612ac8565b6119a6565b3480156109cd57600080fd5b506103e66109dc366004612ac8565b611b25565b3480156109ed57600080fd5b50610498600d5481565b348015610a0357600080fd5b506103e6610a12366004612a2a565b611b54565b348015610a2357600080fd5b506103b1610a32366004612876565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a6c57600080fd5b5061049860115481565b348015610a8257600080fd5b506103e6610a91366004612afa565b611b98565b348015610aa257600080fd5b506103e6610ab136600461285b565b611c30565b60006001600160e01b031982166380ac58cd60e01b1480610ae757506001600160e01b03198216635b5e139f60e01b145b80610b0257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b03163314610b3b5760405162461bcd60e51b8152600401610b3290612d21565b60405180910390fd5b6013805491151563010000000263ff00000019909216919091179055565b606060008054610b6890612e63565b80601f0160208091040260200160405190810160405280929190818152602001828054610b9490612e63565b8015610be15780601f10610bb657610100808354040283529160200191610be1565b820191906000526020600020905b815481529060010190602001808311610bc457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b32565b506000908152600460205260409020546001600160a01b031690565b6000610c8b8261134c565b9050806001600160a01b0316836001600160a01b03161415610cf95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b32565b336001600160a01b0382161480610d155750610d158133610a32565b610d875760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b32565b610d918383611cc8565b505050565b6006546001600160a01b03163314610dc05760405162461bcd60e51b8152600401610b3290612d21565b610dcc601460006126af565b610d91601483836126cd565b6006546001600160a01b03163314610e025760405162461bcd60e51b8152600401610b3290612d21565b601055565b6006546001600160a01b03163314610e315760405162461bcd60e51b8152600401610b3290612d21565b8051610e44906009906020840190612730565b5050565b6006546001600160a01b03163314610e725760405162461bcd60e51b8152600401610b3290612d21565b6013805460ff1916911515919091179055565b6000610e9060075490565b905090565b610e9f3382611d36565b610ebb5760405162461bcd60e51b8152600401610b3290612d84565b610d91838383611e29565b6006546001600160a01b03163314610ef05760405162461bcd60e51b8152600401610b3290612d21565b610efc601560006126af565b610d91601583836126cd565b6040516370a0823160e01b81526001600160a01b038216600482015260009073318c2cccadd1b0fba584997ce2b4f64556157f0f90819081906370a082319060240160206040518083038186803b158015610f6257600080fd5b505afa158015610f76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f9a9190612ae1565b949350505050565b6000805b60155481101561100357826001600160a01b031660158281548110610fcd57610fcd612ef9565b6000918252602090912001546001600160a01b03161415610ff15750600192915050565b80610ffb81612e9e565b915050610fa6565b50600092915050565b6006546001600160a01b031633146110365760405162461bcd60e51b8152600401610b3290612d21565b601155565b6006546001600160a01b031633146110655760405162461bcd60e51b8152600401610b3290612d21565b60138054911515620100000262ff000019909216919091179055565b6006546001600160a01b031633146110ab5760405162461bcd60e51b8152600401610b3290612d21565b60006110bf6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611109576040519150601f19603f3d011682016040523d82523d6000602084013e61110e565b606091505b505090508061111c57600080fd5b50565b610d918383836040518060200160405280600081525061192f565b60606000611147836114c4565b905060008167ffffffffffffffff81111561116457611164612f0f565b60405190808252806020026020018201604052801561118d578160200160208202803683370190505b509050600160005b83811080156111a65750600d548211155b156112115760006111b68361134c565b9050866001600160a01b0316816001600160a01b031614156111fe57828483815181106111e5576111e5612ef9565b6020908102919091010152816111fa81612e9e565b9250505b8261120881612e9e565b93505050611195565b5090949350505050565b6006546001600160a01b031633146112455760405162461bcd60e51b8152600401610b3290612d21565b600b55565b6006546001600160a01b031633146112745760405162461bcd60e51b8152600401610b3290612d21565b8051610e4490600a906020840190612730565b6009805461129490612e63565b80601f01602080910402602001604051908101604052809291908181526020018280546112c090612e63565b801561130d5780601f106112e25761010080835404028352916020019161130d565b820191906000526020600020905b8154815290600101906020018083116112f057829003601f168201915b505050505081565b6014818154811061132557600080fd5b6000918252602090912001546001600160a01b0316905081565b6008805461129490612e63565b6000818152600260205260408120546001600160a01b031680610b025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b32565b6006546001600160a01b031633146113ed5760405162461bcd60e51b8152600401610b3290612d21565b806000811180156114005750600e548111155b61141c5760405162461bcd60e51b8152600401610b3290612cf3565b600d548161142960075490565b6114339190612dd5565b11156114515760405162461bcd60e51b8152600401610b3290612d56565b60135460ff161561149e5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610b32565b60015b828111610d91576114b23384611fc9565b806114bc81612e9e565b9150506114a1565b60006001600160a01b03821661152f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b32565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146115755760405162461bcd60e51b8152600401610b3290612d21565b61157f6000612006565b565b6006546001600160a01b031633146115ab5760405162461bcd60e51b8152600401610b3290612d21565b8051610e44906008906020840190612730565b6006546001600160a01b031633146115e85760405162461bcd60e51b8152600401610b3290612d21565b601380549115156401000000000264ff0000000019909216919091179055565b606060018054610b6890612e63565b8060008111801561162a5750600e548111155b6116465760405162461bcd60e51b8152600401610b3290612cf3565b600d548161165360075490565b61165d9190612dd5565b111561167b5760405162461bcd60e51b8152600401610b3290612d56565b60135460ff16156116c85760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610b32565b60006064601254346116da9190612e01565b6116e49190612ded565b90506116f86006546001600160a01b031690565b6001600160a01b0316336001600160a01b0316146117f25760135462010000900460ff1615156001141561177b5761172f33610fa2565b61177b5760405162461bcd60e51b815260206004820152601f60248201527f5468652061646472657373206973206e6f742077686974656c697374656421006044820152606401610b32565b6013546301000000900460ff161515600114156117f257600061179d336114c4565b9050600f5481106117f05760405162461bcd60e51b815260206004820181905260248201527f4d6178206d696e74206c696d697420686173206265656e2072656163686564216044820152606401610b32565b505b826117fc84612058565b6118069190612e01565b34101561184b5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610b32565b6118553384611fc9565b610d9160148054806020026020016040519081016040528092919081815260200182805480156118ae57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611890575b5050505050826120d8565b610e44338383612204565b600a805461129490612e63565b6006546001600160a01b031633146118fb5760405162461bcd60e51b8152600401610b3290612d21565b600e55565b6006546001600160a01b0316331461192a5760405162461bcd60e51b8152600401610b3290612d21565b601255565b6119393383611d36565b6119555760405162461bcd60e51b8152600401610b3290612d84565b611961848484846122d3565b50505050565b6015818154811061132557600080fd5b6006546001600160a01b031633146119a15760405162461bcd60e51b8152600401610b3290612d21565b600c55565b6000818152600260205260409020546060906001600160a01b0316611a255760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b32565b601354610100900460ff16611ac657600a8054611a4190612e63565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6d90612e63565b8015611aba5780601f10611a8f57610100808354040283529160200191611aba565b820191906000526020600020905b815481529060010190602001808311611a9d57829003601f168201915b50505050509050919050565b6000611ad0612306565b90506000815111611af05760405180602001604052806000815250611b1e565b80611afa84612315565b6009604051602001611b0e93929190612b49565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314611b4f5760405162461bcd60e51b8152600401610b3290612d21565b600f55565b6006546001600160a01b03163314611b7e5760405162461bcd60e51b8152600401610b3290612d21565b601380549115156101000261ff0019909216919091179055565b81600081118015611bab5750600e548111155b611bc75760405162461bcd60e51b8152600401610b3290612cf3565b600d5481611bd460075490565b611bde9190612dd5565b1115611bfc5760405162461bcd60e51b8152600401610b3290612d56565b6006546001600160a01b03163314611c265760405162461bcd60e51b8152600401610b3290612d21565b610d918284611fc9565b6006546001600160a01b03163314611c5a5760405162461bcd60e51b8152600401610b3290612d21565b6001600160a01b038116611cbf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b32565b61111c81612006565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611cfd8261134c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611daf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b32565b6000611dba8361134c565b9050806001600160a01b0316846001600160a01b03161480611df55750836001600160a01b0316611dea84610beb565b6001600160a01b0316145b80610f9a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610f9a565b826001600160a01b0316611e3c8261134c565b6001600160a01b031614611ea45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b32565b6001600160a01b038216611f065760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b32565b611f11600082611cc8565b6001600160a01b0383166000908152600360205260408120805460019290611f3a908490612e20565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f68908490612dd5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b81811015610d9157611fe2600780546001019055565b611ff483611fef60075490565b612413565b80611ffe81612e9e565b915050611fcc565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b601354600090640100000000900460ff161515600114801561208f575060115482612082336114c4565b61208c9190612dd5565b11155b80156120c357506010546120a233610f08565b6120ac9190612ded565b826120b6336114c4565b6120c09190612dd5565b11155b156120d0575050600c5490565b5050600b5490565b60008251116121295760405162461bcd60e51b815260206004820181905260248201527f416464206174206c65617374206f6e6520646f6e6174696f6e2077616c6c65746044820152606401610b32565b60005b8251811015610d9157600083828151811061214957612149612ef9565b60200260200101516001600160a01b03168451846121679190612ded565b604051600081818185875af1925050503d80600081146121a3576040519150601f19603f3d011682016040523d82523d6000602084013e6121a8565b606091505b50509050806121f15760405162461bcd60e51b8152602060048201526015602482015274436f756c64206e6f742073656e642076616c75652160581b6044820152606401610b32565b50806121fc81612e9e565b91505061212c565b816001600160a01b0316836001600160a01b031614156122665760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b32565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122de848484611e29565b6122ea8484848461242d565b6119615760405162461bcd60e51b8152600401610b3290612ca1565b606060088054610b6890612e63565b6060816123395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612363578061234d81612e9e565b915061235c9050600a83612ded565b915061233d565b60008167ffffffffffffffff81111561237e5761237e612f0f565b6040519080825280601f01601f1916602001820160405280156123a8576020820181803683370190505b5090505b8415610f9a576123bd600183612e20565b91506123ca600a86612eb9565b6123d5906030612dd5565b60f81b8183815181106123ea576123ea612ef9565b60200101906001600160f81b031916908160001a90535061240c600a86612ded565b94506123ac565b610e4482826040518060200160405280600081525061253a565b60006001600160a01b0384163b1561252f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612471903390899088908890600401612c0d565b602060405180830381600087803b15801561248b57600080fd5b505af19250505080156124bb575060408051601f3d908101601f191682019092526124b891810190612a62565b60015b612515573d8080156124e9576040519150601f19603f3d011682016040523d82523d6000602084013e6124ee565b606091505b50805161250d5760405162461bcd60e51b8152600401610b3290612ca1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f9a565b506001949350505050565b612544838361256d565b612551600084848461242d565b610d915760405162461bcd60e51b8152600401610b3290612ca1565b6001600160a01b0382166125c35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b32565b6000818152600260205260409020546001600160a01b0316156126285760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b32565b6001600160a01b0382166000908152600360205260408120805460019290612651908490612dd5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b508054600082559060005260206000209081019061111c91906127a4565b828054828255906000526020600020908101928215612720579160200282015b828111156127205781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906126ed565b5061272c9291506127a4565b5090565b82805461273c90612e63565b90600052602060002090601f01602090048101928261275e5760008555612720565b82601f1061277757805160ff1916838001178555612720565b82800160010185558215612720579182015b82811115612720578251825591602001919060010190612789565b5b8082111561272c57600081556001016127a5565b600067ffffffffffffffff808411156127d4576127d4612f0f565b604051601f8501601f19908116603f011681019082821181831017156127fc576127fc612f0f565b8160405280935085815286868601111561281557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461284657600080fd5b919050565b8035801515811461284657600080fd5b60006020828403121561286d57600080fd5b611b1e8261282f565b6000806040838503121561288957600080fd5b6128928361282f565b91506128a06020840161282f565b90509250929050565b6000806000606084860312156128be57600080fd5b6128c78461282f565b92506128d56020850161282f565b9150604084013590509250925092565b600080600080608085870312156128fb57600080fd5b6129048561282f565b93506129126020860161282f565b925060408501359150606085013567ffffffffffffffff81111561293557600080fd5b8501601f8101871361294657600080fd5b612955878235602084016127b9565b91505092959194509250565b6000806040838503121561297457600080fd5b61297d8361282f565b91506128a06020840161284b565b6000806040838503121561299e57600080fd5b6129a78361282f565b946020939093013593505050565b600080602083850312156129c857600080fd5b823567ffffffffffffffff808211156129e057600080fd5b818501915085601f8301126129f457600080fd5b813581811115612a0357600080fd5b8660208260051b8501011115612a1857600080fd5b60209290920196919550909350505050565b600060208284031215612a3c57600080fd5b611b1e8261284b565b600060208284031215612a5757600080fd5b8135611b1e81612f25565b600060208284031215612a7457600080fd5b8151611b1e81612f25565b600060208284031215612a9157600080fd5b813567ffffffffffffffff811115612aa857600080fd5b8201601f81018413612ab957600080fd5b610f9a848235602084016127b9565b600060208284031215612ada57600080fd5b5035919050565b600060208284031215612af357600080fd5b5051919050565b60008060408385031215612b0d57600080fd5b823591506128a06020840161282f565b60008151808452612b35816020860160208601612e37565b601f01601f19169290920160200192915050565b600084516020612b5c8285838a01612e37565b855191840191612b6f8184848a01612e37565b8554920191600090600181811c9080831680612b8c57607f831692505b858310811415612baa57634e487b7160e01b85526022600452602485fd5b808015612bbe5760018114612bcf57612bfc565b60ff19851688528388019550612bfc565b60008b81526020902060005b85811015612bf45781548a820152908401908801612bdb565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c4090830184612b1d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c8257835183529284019291840191600101612c66565b50909695505050505050565b602081526000611b1e6020830184612b1d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612de857612de8612ecd565b500190565b600082612dfc57612dfc612ee3565b500490565b6000816000190483118215151615612e1b57612e1b612ecd565b500290565b600082821015612e3257612e32612ecd565b500390565b60005b83811015612e52578181015183820152602001612e3a565b838111156119615750506000910152565b600181811c90821680612e7757607f821691505b60208210811415612e9857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612eb257612eb2612ecd565b5060010190565b600082612ec857612ec8612ee3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461111c57600080fdfea264697066735822122058c3e29c743bf0e76ec87ec767279ff57c4fded6cc373ba21e38309b296d54f464736f6c63430008070033

Deployed Bytecode Sourcemap

39626:7462:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27115:305;;;;;;;;;;-1:-1:-1;27115:305:0;;;;;:::i;:::-;;:::i;:::-;;;8875:14:1;;8868:22;8850:41;;8838:2;8823:18;27115:305:0;;;;;;;;45340:87;;;;;;;;;;-1:-1:-1;45340:87:0;;;;;:::i;:::-;;:::i;:::-;;28060:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29619:221::-;;;;;;;;;;-1:-1:-1;29619:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7536:32:1;;;7518:51;;7506:2;7491:18;29619:221:0;7372:203:1;29142:411:0;;;;;;;;;;-1:-1:-1;29142:411:0;;;;;:::i;:::-;;:::i;45017:164::-;;;;;;;;;;-1:-1:-1;45017:164:0;;;;;:::i;:::-;;:::i;39901:32::-;;;;;;;;;;;;;;;;;;;18484:25:1;;;18472:2;18457:18;39901:32:0;18338:177:1;45668:116:0;;;;;;;;;;-1:-1:-1;45668:116:0;;;;;:::i;:::-;;:::i;46522:100::-;;;;;;;;;;-1:-1:-1;46522:100:0;;;;;:::i;:::-;;:::i;44626:77::-;;;;;;;;;;-1:-1:-1;44626:77:0;;;;;:::i;:::-;;:::i;40901:89::-;;;;;;;;;;;;;:::i;30369:339::-;;;;;;;;;;-1:-1:-1;30369:339:0;;;;;:::i;:::-;;:::i;45187:147::-;;;;;;;;;;-1:-1:-1;45187:147:0;;;;;:::i;:::-;;:::i;43058:231::-;;;;;;;;;;-1:-1:-1;43058:231:0;;;;;:::i;:::-;;:::i;43295:253::-;;;;;;;;;;-1:-1:-1;43295:253:0;;;;;:::i;:::-;;:::i;45790:150::-;;;;;;;;;;-1:-1:-1;45790:150:0;;;;;:::i;:::-;;:::i;44796:95::-;;;;;;;;;;-1:-1:-1;44796:95:0;;;;;:::i;:::-;;:::i;46628:137::-;;;;;;;;;;;;;:::i;39938:42::-;;;;;;;;;;;;;;;;30779:185;;;;;;;;;;-1:-1:-1;30779:185:0;;;;;:::i;:::-;;:::i;43554:615::-;;;;;;;;;;-1:-1:-1;43554:615:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45946:74::-;;;;;;;;;;-1:-1:-1;45946:74:0;;;;;:::i;:::-;;:::i;46278:132::-;;;;;;;;;;-1:-1:-1;46278:132:0;;;;;:::i;:::-;;:::i;40266:28::-;;;;;;;;;;-1:-1:-1;40266:28:0;;;;;;;;;;;39823:33;;;;;;;;;;;;;:::i;40414:34::-;;;;;;;;;;-1:-1:-1;40414:34:0;;;;;:::i;:::-;;:::i;40235:26::-;;;;;;;;;;-1:-1:-1;40235:26:0;;;;;;;;39790:28;;;;;;;;;;;;;:::i;27754:239::-;;;;;;;;;;-1:-1:-1;27754:239:0;;;;;:::i;:::-;;:::i;41797:246::-;;;;;;;;;;-1:-1:-1;41797:246:0;;;;;:::i;:::-;;:::i;27484:208::-;;;;;;;;;;-1:-1:-1;27484:208:0;;;;;:::i;:::-;;:::i;8103:103::-;;;;;;;;;;;;;:::i;46416:100::-;;;;;;;;;;-1:-1:-1;46416:100:0;;;;;:::i;:::-;;:::i;45433:93::-;;;;;;;;;;-1:-1:-1;45433:93:0;;;;;:::i;:::-;;:::i;40374:33::-;;;;;;;;;;-1:-1:-1;40374:33:0;;;;;;;;;;;7452:87;;;;;;;;;;-1:-1:-1;7525:6:0;;-1:-1:-1;;;;;7525:6:0;7452:87;;40021:38;;;;;;;;;;;;;;;;28229:104;;;;;;;;;;;;;:::i;40299:35::-;;;;;;;;;;-1:-1:-1;40299:35:0;;;;;;;;;;;40107:31;;;;;;;;;;;;;;;;40996:795;;;;;;:::i;:::-;;:::i;29912:155::-;;;;;;;;;;-1:-1:-1;29912:155:0;;;;;:::i;:::-;;:::i;39861:31::-;;;;;;;;;;;;;:::i;46142:130::-;;;;;;;;;;-1:-1:-1;46142:130:0;;;;;:::i;:::-;;:::i;44897:114::-;;;;;;;;;;-1:-1:-1;44897:114:0;;;;;:::i;:::-;;:::i;31035:328::-;;;;;;;;;;-1:-1:-1;31035:328:0;;;;;:::i;:::-;;:::i;40339:30::-;;;;;;;;;;-1:-1:-1;40339:30:0;;;;;;;;;;;40453:37;;;;;;;;;;-1:-1:-1;40453:37:0;;;;;:::i;:::-;;:::i;40064:38::-;;;;;;;;;;;;;;;;46026:110;;;;;;;;;;-1:-1:-1;46026:110:0;;;;;:::i;:::-;;:::i;40190:38::-;;;;;;;;;;;;;;;;44175:445;;;;;;;;;;-1:-1:-1;44175:445:0;;;;;:::i;:::-;;:::i;45532:130::-;;;;;;;;;;-1:-1:-1;45532:130:0;;;;;:::i;:::-;;:::i;39985:31::-;;;;;;;;;;;;;;;;44709:81;;;;;;;;;;-1:-1:-1;44709:81:0;;;;;:::i;:::-;;:::i;30138:164::-;;;;;;;;;;-1:-1:-1;30138:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30259:25:0;;;30235:4;30259:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30138:164;40143:42;;;;;;;;;;;;;;;;42051:155;;;;;;;;;;-1:-1:-1;42051:155:0;;;;;:::i;:::-;;:::i;8361:201::-;;;;;;;;;;-1:-1:-1;8361:201:0;;;;;:::i;:::-;;:::i;27115:305::-;27217:4;-1:-1:-1;;;;;;27254:40:0;;-1:-1:-1;;;27254:40:0;;:105;;-1:-1:-1;;;;;;;27311:48:0;;-1:-1:-1;;;27311:48:0;27254:105;:158;;;-1:-1:-1;;;;;;;;;;19993:40:0;;;27376:36;27234:178;27115:305;-1:-1:-1;;27115:305:0:o;45340:87::-;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;;;;;;;;;45401:11:::1;:20:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;45401:20:0;;::::1;::::0;;;::::1;::::0;;45340:87::o;28060:100::-;28114:13;28147:5;28140:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28060:100;:::o;29619:221::-;29695:7;32962:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32962:16:0;29715:73;;;;-1:-1:-1;;;29715:73:0;;14711:2:1;29715:73:0;;;14693:21:1;14750:2;14730:18;;;14723:30;14789:34;14769:18;;;14762:62;-1:-1:-1;;;14840:18:1;;;14833:42;14892:19;;29715:73:0;14509:408:1;29715:73:0;-1:-1:-1;29808:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29808:24:0;;29619:221::o;29142:411::-;29223:13;29239:23;29254:7;29239:14;:23::i;:::-;29223:39;;29287:5;-1:-1:-1;;;;;29281:11:0;:2;-1:-1:-1;;;;;29281:11:0;;;29273:57;;;;-1:-1:-1;;;29273:57:0;;16663:2:1;29273:57:0;;;16645:21:1;16702:2;16682:18;;;16675:30;16741:34;16721:18;;;16714:62;-1:-1:-1;;;16792:18:1;;;16785:31;16833:19;;29273:57:0;16461:397:1;29273:57:0;6256:10;-1:-1:-1;;;;;29365:21:0;;;;:62;;-1:-1:-1;29390:37:0;29407:5;6256:10;30138:164;:::i;29390:37::-;29343:168;;;;-1:-1:-1;;;29343:168:0;;12743:2:1;29343:168:0;;;12725:21:1;12782:2;12762:18;;;12755:30;12821:34;12801:18;;;12794:62;12892:26;12872:18;;;12865:54;12936:19;;29343:168:0;12541:420:1;29343:168:0;29524:21;29533:2;29537:7;29524:8;:21::i;:::-;29212:341;29142:411;;:::o;45017:164::-;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;45108:24:::1;45115:17;;45108:24;:::i;:::-;45139:36;:17;45159:16:::0;;45139:36:::1;:::i;45668:116::-:0;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;45745:12:::1;:33:::0;45668:116::o;46522:100::-;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;46594:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46522:100:::0;:::o;44626:77::-;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;44682:6:::1;:15:::0;;-1:-1:-1;;44682:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44626:77::o;40901:89::-;40945:7;40968:16;:6;2872:14;;2780:114;40968:16;40961:23;;40901:89;:::o;30369:339::-;30564:41;6256:10;30597:7;30564:18;:41::i;:::-;30556:103;;;;-1:-1:-1;;;30556:103:0;;;;;;;:::i;:::-;30672:28;30682:4;30688:2;30692:7;30672:9;:28::i;45187:147::-;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;45265:27:::1;45272:20;;45265:27;:::i;:::-;45299:29;:20;45322:6:::0;;45299:29:::1;:::i;43058:231::-:0;43258:25;;-1:-1:-1;;;43258:25:0;;-1:-1:-1;;;;;7536:32:1;;43258:25:0;;;7518:51:1;43121:7:0;;43157:42;;;;;;43258:15;;7491:18:1;;43258:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43251:32;43058:231;-1:-1:-1;;;;43058:231:0:o;43295:253::-;43354:4;;43368:155;43392:20;:27;43388:31;;43368:155;;;43469:5;-1:-1:-1;;;;;43442:32:0;:20;43463:1;43442:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;43442:23:0;:32;43438:77;;;-1:-1:-1;43498:4:0;;43295:253;-1:-1:-1;;43295:253:0:o;43438:77::-;43421:3;;;;:::i;:::-;;;;43368:155;;;-1:-1:-1;43537:5:0;;43295:253;-1:-1:-1;;43295:253:0:o;45790:150::-;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;45884:23:::1;:50:::0;45790:150::o;44796:95::-;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;44861:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;44861:24:0;;::::1;::::0;;;::::1;::::0;;44796:95::o;46628:137::-;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;46673:7:::1;46694;7525:6:::0;;-1:-1:-1;;;;;7525:6:0;;7452:87;46694:7:::1;-1:-1:-1::0;;;;;46686:21:0::1;46715;46686:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46672:69;;;46756:2;46748:11;;;::::0;::::1;;46665:100;46628:137::o:0;30779:185::-;30917:39;30934:4;30940:2;30944:7;30917:39;;;;;;;;;;;;:16;:39::i;43554:615::-;43614:16;43639:23;43665:17;43675:6;43665:9;:17::i;:::-;43639:43;;43689:30;43736:15;43722:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43722:30:0;-1:-1:-1;43689:63:0;-1:-1:-1;43784:1:0;43759:22;43828:307;43853:15;43835;:33;:64;;;;;43890:9;;43872:14;:27;;43835:64;43828:307;;;43910:25;43938:23;43946:14;43938:7;:23::i;:::-;43910:51;;43997:6;-1:-1:-1;;;;;43976:27:0;:17;-1:-1:-1;;;;;43976:27:0;;43972:129;;;44049:14;44016:13;44030:15;44016:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;44074:17;;;;:::i;:::-;;;;43972:129;44111:16;;;;:::i;:::-;;;;43901:234;43828:307;;;-1:-1:-1;44150:13:0;;43554:615;-1:-1:-1;;;;43554:615:0:o;45946:74::-;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;46002:4:::1;:12:::0;45946:74::o;46278:132::-;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;46366:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;39823:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40414:34::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40414:34:0;;-1:-1:-1;40414:34:0;:::o;39790:28::-;;;;;;;:::i;27754:239::-;27826:7;27862:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27862:16:0;27897:19;27889:73;;;;-1:-1:-1;;;27889:73:0;;13579:2:1;27889:73:0;;;13561:21:1;13618:2;13598:18;;;13591:30;13657:34;13637:18;;;13630:62;-1:-1:-1;;;13708:18:1;;;13701:39;13757:19;;27889:73:0;13377:405:1;41797:246:0;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;41872:11:::1;40735:1;40721:11;:15;:52;;;;;40755:18;;40740:11;:33;;40721:52;40713:85;;;;-1:-1:-1::0;;;40713:85:0::1;;;;;;;:::i;:::-;40847:9;;40832:11;40813:16;:6;2872:14:::0;;2780:114;40813:16:::1;:30;;;;:::i;:::-;:43;;40805:76;;;;-1:-1:-1::0;;;40805:76:0::1;;;;;;;:::i;:::-;41901:6:::2;::::0;::::2;;41900:7;41892:43;;;::::0;-1:-1:-1;;;41892:43:0;;15485:2:1;41892:43:0::2;::::0;::::2;15467:21:1::0;15524:2;15504:18;;;15497:30;-1:-1:-1;;;15543:18:1;;;15536:53;15606:18;;41892:43:0::2;15283:347:1::0;41892:43:0::2;41961:1;41944:94;41969:11;41964:1;:16;41944:94;;41996:34;42006:10;42018:11;41996:9;:34::i;:::-;41982:3:::0;::::2;::::0;::::2;:::i;:::-;;;;41944:94;;27484:208:::0;27556:7;-1:-1:-1;;;;;27584:19:0;;27576:74;;;;-1:-1:-1;;;27576:74:0;;13168:2:1;27576:74:0;;;13150:21:1;13207:2;13187:18;;;13180:30;13246:34;13226:18;;;13219:62;-1:-1:-1;;;13297:18:1;;;13290:40;13347:19;;27576:74:0;12966:406:1;27576:74:0;-1:-1:-1;;;;;;27668:16:0;;;;;:9;:16;;;;;;;27484:208::o;8103:103::-;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;8168:30:::1;8195:1;8168:18;:30::i;:::-;8103:103::o:0;46416:100::-;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;46488:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;45433:93::-:0;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;45497:14:::1;:23:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;45497:23:0;;::::1;::::0;;;::::1;::::0;;45433:93::o;28229:104::-;28285:13;28318:7;28311:14;;;;;:::i;40996:795::-;41061:11;40735:1;40721:11;:15;:52;;;;;40755:18;;40740:11;:33;;40721:52;40713:85;;;;-1:-1:-1;;;40713:85:0;;;;;;;:::i;:::-;40847:9;;40832:11;40813:16;:6;2872:14;;2780:114;40813:16;:30;;;;:::i;:::-;:43;;40805:76;;;;-1:-1:-1;;;40805:76:0;;;;;;;:::i;:::-;41090:6:::1;::::0;::::1;;41089:7;41081:43;;;::::0;-1:-1:-1;;;41081:43:0;;15485:2:1;41081:43:0::1;::::0;::::1;15467:21:1::0;15524:2;15504:18;;;15497:30;-1:-1:-1;;;15543:18:1;;;15536:53;15606:18;;41081:43:0::1;15283:347:1::0;41081:43:0::1;41137:21;41194:3;41173:18;;41161:9;:30;;;;:::i;:::-;:36;;;;:::i;:::-;41137:60;;41224:7;7525:6:::0;;-1:-1:-1;;;;;7525:6:0;;7452:87;41224:7:::1;-1:-1:-1::0;;;;;41210:21:0::1;:10;-1:-1:-1::0;;;;;41210:21:0::1;;41206:385;;41248:15;::::0;;;::::1;;;:23;;41267:4;41248:23;41244:125;;;41296:25;41310:10;41296:13;:25::i;:::-;41288:69;;;::::0;-1:-1:-1;;;41288:69:0;;17832:2:1;41288:69:0::1;::::0;::::1;17814:21:1::0;17871:2;17851:18;;;17844:30;17910:33;17890:18;;;17883:61;17961:18;;41288:69:0::1;17630:355:1::0;41288:69:0::1;41393:11;::::0;;;::::1;;;:19;;41408:4;41393:19;41389:195;;;41429:23;41455:21;41465:10;41455:9;:21::i;:::-;41429:47;;41517:18;;41499:15;:36;41491:81;;;::::0;-1:-1:-1;;;41491:81:0;;13989:2:1;41491:81:0::1;::::0;::::1;13971:21:1::0;;;14008:18;;;14001:30;14067:34;14047:18;;;14040:62;14119:18;;41491:81:0::1;13787:356:1::0;41491:81:0::1;41414:170;41389:195;41648:11;41625:20;41633:11;41625:7;:20::i;:::-;:34;;;;:::i;:::-;41612:9;:47;;41604:79;;;::::0;-1:-1:-1;;;41604:79:0;;18192:2:1;41604:79:0::1;::::0;::::1;18174:21:1::0;18231:2;18211:18;;;18204:30;-1:-1:-1;;;18250:18:1;;;18243:49;18309:18;;41604:79:0::1;17990:343:1::0;41604:79:0::1;41696:34;41706:10;41718:11;41696:9;:34::i;:::-;41739:46;41752:17;41739:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;41739:46:0::1;::::0;;;;;::::1;::::0;::::1;;::::0;;::::1;;;;;;;;;41771:13;41739:12;:46::i;29912:155::-:0;30007:52;6256:10;30040:8;30050;30007:18;:52::i;39861:31::-;;;;;;;:::i;46142:130::-;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;46226:18:::1;:40:::0;46142:130::o;44897:114::-;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;44973:18:::1;:32:::0;44897:114::o;31035:328::-;31210:41;6256:10;31243:7;31210:18;:41::i;:::-;31202:103;;;;-1:-1:-1;;;31202:103:0;;;;;;;:::i;:::-;31316:39;31330:4;31336:2;31340:7;31349:5;31316:13;:39::i;:::-;31035:328;;;;:::o;40453:37::-;;;;;;;;;;;;46026:110;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;46100:13:::1;:30:::0;46026:110::o;44175:445::-;32938:4;32962:16;;;:7;:16;;;;;;44249:13;;-1:-1:-1;;;;;32962:16:0;44271:77;;;;-1:-1:-1;;;44271:77:0;;16247:2:1;44271:77:0;;;16229:21:1;16286:2;16266:18;;;16259:30;16325:34;16305:18;;;16298:62;-1:-1:-1;;;16376:18:1;;;16369:45;16431:19;;44271:77:0;16045:411:1;44271:77:0;44361:8;;;;;;;44357:64;;44396:17;44389:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44175:445;;;:::o;44357:64::-;44429:28;44460:10;:8;:10::i;:::-;44429:41;;44515:1;44490:14;44484:28;:32;:130;;;;;;;;;;;;;;;;;44552:14;44568:19;:8;:17;:19::i;:::-;44589:9;44535:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44484:130;44477:137;44175:445;-1:-1:-1;;;44175:445:0:o;45532:130::-;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;45616:18:::1;:40:::0;45532:130::o;44709:81::-;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;44767:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;44767:17:0;;::::1;::::0;;;::::1;::::0;;44709:81::o;42051:155::-;42137:11;40735:1;40721:11;:15;:52;;;;;40755:18;;40740:11;:33;;40721:52;40713:85;;;;-1:-1:-1;;;40713:85:0;;;;;;;:::i;:::-;40847:9;;40832:11;40813:16;:6;2872:14;;2780:114;40813:16;:30;;;;:::i;:::-;:43;;40805:76;;;;-1:-1:-1;;;40805:76:0;;;;;;;:::i;:::-;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23:::1;7664:68;;;;-1:-1:-1::0;;;7664:68:0::1;;;;;;;:::i;:::-;42167:33:::2;42177:9;42188:11;42167:9;:33::i;8361:201::-:0;7525:6;;-1:-1:-1;;;;;7525:6:0;6256:10;7672:23;7664:68;;;;-1:-1:-1;;;7664:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8450:22:0;::::1;8442:73;;;::::0;-1:-1:-1;;;8442:73:0;;10458:2:1;8442:73:0::1;::::0;::::1;10440:21:1::0;10497:2;10477:18;;;10470:30;10536:34;10516:18;;;10509:62;-1:-1:-1;;;10587:18:1;;;10580:36;10633:19;;8442:73:0::1;10256:402:1::0;8442:73:0::1;8526:28;8545:8;8526:18;:28::i;36855:174::-:0;36930:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36930:29:0;-1:-1:-1;;;;;36930:29:0;;;;;;;;:24;;36984:23;36930:24;36984:14;:23::i;:::-;-1:-1:-1;;;;;36975:46:0;;;;;;;;;;;36855:174;;:::o;33167:348::-;33260:4;32962:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32962:16:0;33277:73;;;;-1:-1:-1;;;33277:73:0;;12330:2:1;33277:73:0;;;12312:21:1;12369:2;12349:18;;;12342:30;12408:34;12388:18;;;12381:62;-1:-1:-1;;;12459:18:1;;;12452:42;12511:19;;33277:73:0;12128:408:1;33277:73:0;33361:13;33377:23;33392:7;33377:14;:23::i;:::-;33361:39;;33430:5;-1:-1:-1;;;;;33419:16:0;:7;-1:-1:-1;;;;;33419:16:0;;:51;;;;33463:7;-1:-1:-1;;;;;33439:31:0;:20;33451:7;33439:11;:20::i;:::-;-1:-1:-1;;;;;33439:31:0;;33419:51;:87;;;-1:-1:-1;;;;;;30259:25:0;;;30235:4;30259:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33474:32;30138:164;36159:578;36318:4;-1:-1:-1;;;;;36291:31:0;:23;36306:7;36291:14;:23::i;:::-;-1:-1:-1;;;;;36291:31:0;;36283:85;;;;-1:-1:-1;;;36283:85:0;;15837:2:1;36283:85:0;;;15819:21:1;15876:2;15856:18;;;15849:30;15915:34;15895:18;;;15888:62;-1:-1:-1;;;15966:18:1;;;15959:39;16015:19;;36283:85:0;15635:405:1;36283:85:0;-1:-1:-1;;;;;36387:16:0;;36379:65;;;;-1:-1:-1;;;36379:65:0;;11571:2:1;36379:65:0;;;11553:21:1;11610:2;11590:18;;;11583:30;11649:34;11629:18;;;11622:62;-1:-1:-1;;;11700:18:1;;;11693:34;11744:19;;36379:65:0;11369:400:1;36379:65:0;36561:29;36578:1;36582:7;36561:8;:29::i;:::-;-1:-1:-1;;;;;36603:15:0;;;;;;:9;:15;;;;;:20;;36622:1;;36603:15;:20;;36622:1;;36603:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36634:13:0;;;;;;:9;:13;;;;;:18;;36651:1;;36634:13;:18;;36651:1;;36634:18;:::i;:::-;;;;-1:-1:-1;;36663:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36663:21:0;-1:-1:-1;;;;;36663:21:0;;;;;;;;;36702:27;;36663:16;;36702:27;;;;;;;36159:578;;;:::o;46771:204::-;46851:9;46846:124;46870:11;46866:1;:15;46846:124;;;46897:18;:6;2991:19;;3009:1;2991:19;;;2902:127;46897:18;46924:38;46934:9;46945:16;:6;2872:14;;2780:114;46945:16;46924:9;:38::i;:::-;46883:3;;;;:::i;:::-;;;;46846:124;;8722:191;8815:6;;;-1:-1:-1;;;;;8832:17:0;;;-1:-1:-1;;;;;;8832:17:0;;;;;;;8865:40;;8815:6;;;8832:17;8815:6;;8865:40;;8796:16;;8865:40;8785:128;8722:191;:::o;42700:350::-;42787:14;;42761:13;;42787:14;;;;;:22;;42805:4;42787:22;:98;;;;;42862:23;;42847:11;42823:21;42833:10;42823:9;:21::i;:::-;:35;;;;:::i;:::-;:62;;42787:98;:191;;;;;42966:12;;42937:26;42952:10;42937:14;:26::i;:::-;:41;;;;:::i;:::-;42922:11;42898:21;42908:10;42898:9;:21::i;:::-;:35;;;;:::i;:::-;:80;;42787:191;42783:242;;;-1:-1:-1;;43004:13:0;;;42700:350::o;42783:242::-;-1:-1:-1;;43040:4:0;;;42700:350::o;42216:478::-;42347:1;42321:16;:23;:27;42313:72;;;;-1:-1:-1;;;42313:72:0;;9328:2:1;42313:72:0;;;9310:21:1;;;9347:18;;;9340:30;9406:34;9386:18;;;9379:62;9458:18;;42313:72:0;9126:356:1;42313:72:0;42464:9;42459:230;42483:16;:23;42479:1;:27;42459:230;;;42525:12;42551:16;42568:1;42551:19;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;42543:33:0;42601:16;:23;42584:14;:40;;;;:::i;:::-;42543:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42524:105;;;42648:7;42640:41;;;;-1:-1:-1;;;42640:41:0;;9689:2:1;42640:41:0;;;9671:21:1;9728:2;9708:18;;;9701:30;-1:-1:-1;;;9747:18:1;;;9740:51;9808:18;;42640:41:0;9487:345:1;42640:41:0;-1:-1:-1;42508:3:0;;;;:::i;:::-;;;;42459:230;;37171:315;37326:8;-1:-1:-1;;;;;37317:17:0;:5;-1:-1:-1;;;;;37317:17:0;;;37309:55;;;;-1:-1:-1;;;37309:55:0;;11976:2:1;37309:55:0;;;11958:21:1;12015:2;11995:18;;;11988:30;12054:27;12034:18;;;12027:55;12099:18;;37309:55:0;11774:349:1;37309:55:0;-1:-1:-1;;;;;37375:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37375:46:0;;;;;;;;;;37437:41;;8850::1;;;37437::0;;8823:18:1;37437:41:0;;;;;;;37171:315;;;:::o;32245:::-;32402:28;32412:4;32418:2;32422:7;32402:9;:28::i;:::-;32449:48;32472:4;32478:2;32482:7;32491:5;32449:22;:48::i;:::-;32441:111;;;;-1:-1:-1;;;32441:111:0;;;;;;;:::i;46981:104::-;47041:13;47070:9;47063:16;;;;;:::i;3738:723::-;3794:13;4015:10;4011:53;;-1:-1:-1;;4042:10:0;;;;;;;;;;;;-1:-1:-1;;;4042:10:0;;;;;3738:723::o;4011:53::-;4089:5;4074:12;4130:78;4137:9;;4130:78;;4163:8;;;;:::i;:::-;;-1:-1:-1;4186:10:0;;-1:-1:-1;4194:2:0;4186:10;;:::i;:::-;;;4130:78;;;4218:19;4250:6;4240:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4240:17:0;;4218:39;;4268:154;4275:10;;4268:154;;4302:11;4312:1;4302:11;;:::i;:::-;;-1:-1:-1;4371:10:0;4379:2;4371:5;:10;:::i;:::-;4358:24;;:2;:24;:::i;:::-;4345:39;;4328:6;4335;4328:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4328:56:0;;;;;;;;-1:-1:-1;4399:11:0;4408:2;4399:11;;:::i;:::-;;;4268:154;;33857:110;33933:26;33943:2;33947:7;33933:26;;;;;;;;;;;;:9;:26::i;38051:799::-;38206:4;-1:-1:-1;;;;;38227:13:0;;10063:20;10111:8;38223:620;;38263:72;;-1:-1:-1;;;38263:72:0;;-1:-1:-1;;;;;38263:36:0;;;;;:72;;6256:10;;38314:4;;38320:7;;38329:5;;38263:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38263:72:0;;;;;;;;-1:-1:-1;;38263:72:0;;;;;;;;;;;;:::i;:::-;;;38259:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38505:13:0;;38501:272;;38548:60;;-1:-1:-1;;;38548:60:0;;;;;;;:::i;38501:272::-;38723:6;38717:13;38708:6;38704:2;38700:15;38693:38;38259:529;-1:-1:-1;;;;;;38386:51:0;-1:-1:-1;;;38386:51:0;;-1:-1:-1;38379:58:0;;38223:620;-1:-1:-1;38827:4:0;38051:799;;;;;;:::o;34194:321::-;34324:18;34330:2;34334:7;34324:5;:18::i;:::-;34375:54;34406:1;34410:2;34414:7;34423:5;34375:22;:54::i;:::-;34353:154;;;;-1:-1:-1;;;34353:154:0;;;;;;;:::i;34851:382::-;-1:-1:-1;;;;;34931:16:0;;34923:61;;;;-1:-1:-1;;;34923:61:0;;14350:2:1;34923:61:0;;;14332:21:1;;;14369:18;;;14362:30;14428:34;14408:18;;;14401:62;14480:18;;34923:61:0;14148:356:1;34923:61:0;32938:4;32962:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32962:16:0;:30;34995:58;;;;-1:-1:-1;;;34995:58:0;;10865:2:1;34995:58:0;;;10847:21:1;10904:2;10884:18;;;10877:30;10943;10923:18;;;10916:58;10991:18;;34995:58:0;10663:352:1;34995:58:0;-1:-1:-1;;;;;35124:13:0;;;;;;:9;:13;;;;;:18;;35141:1;;35124:13;:18;;35141:1;;35124:18;:::i;:::-;;;;-1:-1:-1;;35153:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35153:21:0;-1:-1:-1;;;;;35153:21:0;;;;;;;;35192:33;;35153:16;;;35192:33;;35153:16;;35192:33;34851:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:184::-;4990:6;5043:2;5031:9;5022:7;5018:23;5014:32;5011:52;;;5059:1;5056;5049:12;5011:52;-1:-1:-1;5082:16:1;;4920:184;-1:-1:-1;4920:184:1:o;5109:254::-;5177:6;5185;5238:2;5226:9;5217:7;5213:23;5209:32;5206:52;;;5254:1;5251;5244:12;5206:52;5290:9;5277:23;5267:33;;5319:38;5353:2;5342:9;5338:18;5319:38;:::i;5368:257::-;5409:3;5447:5;5441:12;5474:6;5469:3;5462:19;5490:63;5546:6;5539:4;5534:3;5530:14;5523:4;5516:5;5512:16;5490:63;:::i;:::-;5607:2;5586:15;-1:-1:-1;;5582:29:1;5573:39;;;;5614:4;5569:50;;5368:257;-1:-1:-1;;5368:257:1:o;5630:1527::-;5854:3;5892:6;5886:13;5918:4;5931:51;5975:6;5970:3;5965:2;5957:6;5953:15;5931:51;:::i;:::-;6045:13;;6004:16;;;;6067:55;6045:13;6004:16;6089:15;;;6067:55;:::i;:::-;6211:13;;6144:20;;;6184:1;;6271;6293:18;;;;6346;;;;6373:93;;6451:4;6441:8;6437:19;6425:31;;6373:93;6514:2;6504:8;6501:16;6481:18;6478:40;6475:167;;;-1:-1:-1;;;6541:33:1;;6597:4;6594:1;6587:15;6627:4;6548:3;6615:17;6475:167;6658:18;6685:110;;;;6809:1;6804:328;;;;6651:481;;6685:110;-1:-1:-1;;6720:24:1;;6706:39;;6765:20;;;;-1:-1:-1;6685:110:1;;6804:328;18593:1;18586:14;;;18630:4;18617:18;;6899:1;6913:169;6927:8;6924:1;6921:15;6913:169;;;7009:14;;6994:13;;;6987:37;7052:16;;;;6944:10;;6913:169;;;6917:3;;7113:8;7106:5;7102:20;7095:27;;6651:481;-1:-1:-1;7148:3:1;;5630:1527;-1:-1:-1;;;;;;;;;;;5630:1527:1:o;7580:488::-;-1:-1:-1;;;;;7849:15:1;;;7831:34;;7901:15;;7896:2;7881:18;;7874:43;7948:2;7933:18;;7926:34;;;7996:3;7991:2;7976:18;;7969:31;;;7774:4;;8017:45;;8042:19;;8034:6;8017:45;:::i;:::-;8009:53;7580:488;-1:-1:-1;;;;;;7580:488:1:o;8073:632::-;8244:2;8296:21;;;8366:13;;8269:18;;;8388:22;;;8215:4;;8244:2;8467:15;;;;8441:2;8426:18;;;8215:4;8510:169;8524:6;8521:1;8518:13;8510:169;;;8585:13;;8573:26;;8654:15;;;;8619:12;;;;8546:1;8539:9;8510:169;;;-1:-1:-1;8696:3:1;;8073:632;-1:-1:-1;;;;;;8073:632:1:o;8902:219::-;9051:2;9040:9;9033:21;9014:4;9071:44;9111:2;9100:9;9096:18;9088:6;9071:44;:::i;9837:414::-;10039:2;10021:21;;;10078:2;10058:18;;;10051:30;10117:34;10112:2;10097:18;;10090:62;-1:-1:-1;;;10183:2:1;10168:18;;10161:48;10241:3;10226:19;;9837:414::o;11020:344::-;11222:2;11204:21;;;11261:2;11241:18;;;11234:30;-1:-1:-1;;;11295:2:1;11280:18;;11273:50;11355:2;11340:18;;11020:344::o;14922:356::-;15124:2;15106:21;;;15143:18;;;15136:30;15202:34;15197:2;15182:18;;15175:62;15269:2;15254:18;;14922:356::o;16863:344::-;17065:2;17047:21;;;17104:2;17084:18;;;17077:30;-1:-1:-1;;;17138:2:1;17123:18;;17116:50;17198:2;17183:18;;16863:344::o;17212:413::-;17414:2;17396:21;;;17453:2;17433:18;;;17426:30;17492:34;17487:2;17472:18;;17465:62;-1:-1:-1;;;17558:2:1;17543:18;;17536:47;17615:3;17600:19;;17212:413::o;18646:128::-;18686:3;18717:1;18713:6;18710:1;18707:13;18704:39;;;18723:18;;:::i;:::-;-1:-1:-1;18759:9:1;;18646:128::o;18779:120::-;18819:1;18845;18835:35;;18850:18;;:::i;:::-;-1:-1:-1;18884:9:1;;18779:120::o;18904:168::-;18944:7;19010:1;19006;19002:6;18998:14;18995:1;18992:21;18987:1;18980:9;18973:17;18969:45;18966:71;;;19017:18;;:::i;:::-;-1:-1:-1;19057:9:1;;18904:168::o;19077:125::-;19117:4;19145:1;19142;19139:8;19136:34;;;19150:18;;:::i;:::-;-1:-1:-1;19187:9:1;;19077:125::o;19207:258::-;19279:1;19289:113;19303:6;19300:1;19297:13;19289:113;;;19379:11;;;19373:18;19360:11;;;19353:39;19325:2;19318:10;19289:113;;;19420:6;19417:1;19414:13;19411:48;;;-1:-1:-1;;19455:1:1;19437:16;;19430:27;19207:258::o;19470:380::-;19549:1;19545:12;;;;19592;;;19613:61;;19667:4;19659:6;19655:17;19645:27;;19613:61;19720:2;19712:6;19709:14;19689:18;19686:38;19683:161;;;19766:10;19761:3;19757:20;19754:1;19747:31;19801:4;19798:1;19791:15;19829:4;19826:1;19819:15;19683:161;;19470:380;;;:::o;19855:135::-;19894:3;-1:-1:-1;;19915:17:1;;19912:43;;;19935:18;;:::i;:::-;-1:-1:-1;19982:1:1;19971:13;;19855:135::o;19995:112::-;20027:1;20053;20043:35;;20058:18;;:::i;:::-;-1:-1:-1;20092:9:1;;19995:112::o;20112:127::-;20173:10;20168:3;20164:20;20161:1;20154:31;20204:4;20201:1;20194:15;20228:4;20225:1;20218:15;20244:127;20305:10;20300:3;20296:20;20293:1;20286:31;20336:4;20333:1;20326:15;20360:4;20357:1;20350:15;20376:127;20437:10;20432:3;20428:20;20425:1;20418:31;20468:4;20465:1;20458:15;20492:4;20489:1;20482:15;20508:127;20569:10;20564:3;20560:20;20557:1;20550:31;20600:4;20597:1;20590:15;20624:4;20621:1;20614:15;20640:131;-1:-1:-1;;;;;;20714:32:1;;20704:43;;20694:71;;20761:1;20758;20751:12

Swarm Source

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