ETH Price: $3,094.94 (+0.89%)
Gas: 16 Gwei

Token

BullBalls (BALL$)
 

Overview

Max Total Supply

6,969 BALL$

Holders

331

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
15 BALL$
0xdf753d60dd9e4da3ccc8e7db86212eed5c545cdd
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:
BullBalls

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
/*
####################################################################################
#######################  #################################  ########################
#########################     ######################     ###########################
############################    ##################    ##############################
#############################    ###############    ################################
#############################    ###############    ################################
############################      #############      ###############################
############################      #############      ###############################
############################                         ###############################
##############################                     #################################
######################################     #########################################
#####################################       ########################################
###################################           ######################################
###############################      B u l l      ##################################
############################                         ###############################
##########################          B a l l s          #############################
########################                                 ###########################
#########################               #               ############################
##########################             ###             #############################
###########################        ###########        ##############################
####################################################################################
####################################################################################
####################################################################################


//Smart contract by ScecarelloGuy

// 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/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}


pragma solidity ^0.8.0;


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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_
    ) {
        require(maxBatchSize_ > 0, 'ERC721A: max batch size must be nonzero');
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity <= maxBatchSize, 'ERC721A: quantity to mint too high');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

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

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

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

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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


pragma solidity ^0.8.0;

contract BullBalls is ERC721A, Ownable {
  using Strings for uint256;

  string private uriPrefix = "";
  string private uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public price = 0.019 ether; 
  uint256 public maxSupply = 6969; 
  uint256 public maxMintAmountPerTx = 50; 
  uint256 public nftPerAddressLimitWl = 20; 
  
  bool public paused = true;
  bool public revealed = true;
  bool public onlyWhitelisted = false;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;


  constructor() ERC721A("BullBalls", "BALL$", maxMintAmountPerTx) {
    setHiddenMetadataUri("");
  }

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

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount)
   {
    require(!paused, "The contract is paused!");
    require(!onlyWhitelisted, "Presale is on");
    require(msg.value >= price * _mintAmount, "Insufficient funds!");
    
    
    _safeMint(msg.sender, _mintAmount);
  }

   function WhitelistMint(uint256 _mintAmount) public payable {
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    
    require(!paused, "The contract is paused!");
    require(onlyWhitelisted, "Presale has ended");
    require(ownerMintedCount + _mintAmount <= nftPerAddressLimitWl, "max NFT per address exceeded");
    if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "address is not Whitelisted");
        }
    require(msg.value >= price * _mintAmount, "Insufficient funds!");
    
    addressMintedBalance[msg.sender]+=_mintAmount;
    
    _safeMint(msg.sender, _mintAmount);
  }



  
  function NftToAddress(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_to, _mintAmount);
  }

 
  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 0;
    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 setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }


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

  function setPrice(uint256 _price) public onlyOwner {
    price = _price;

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

  function setNftPerAddressLimitWl(uint256 _limit) public onlyOwner {
    nftPerAddressLimitWl = _limit;
  }

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

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

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

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
      _safeMint(_receiver, _mintAmount);
  }

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

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

  }

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;

  }

  function addWhitelistUsers(address _users) public onlyOwner {
    whitelistedAddresses.push(_users);
       
  }

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

  // withdrawall addresses
  address t1 = 0x9191c1F39Be40bbA3B4d57c023da85A500a02DDb; 
  address t2 = 0x9e9E6D6aC9E59410E4AbAbB13475C5d54e5356ad; 
  address t3 = 0xD37905283aDf21d3E628B423cBE20c4583BA9979; 
  address t4 = 0xed124a7fAf7a6B54741EDADc6BE7D1E60C76787d; 
  address t5 = 0xA05e5B6B5199735e157bCCa08f3CA680cACC4764; 
  address t6 = 0x3f58DDF49e9eACd01D33FBfa1dE8600ceC446Ee0; 
  address t7 = 0xF14d484b29A8aC040FEb489aFADB4b972422B4E9; 

  function withdrawall() public onlyOwner {
        uint256 _balance = address(this).balance;
        
        require(payable(t1).send(_balance * 155 / 1000 ));
        require(payable(t2).send(_balance * 155 / 1000 ));
        require(payable(t3).send(_balance * 155 / 1000 ));
        require(payable(t4).send(_balance * 155 / 1000 ));
        require(payable(t5).send(_balance * 155 / 1000 ));
        require(payable(t6).send(_balance * 25 / 1000 ));
        require(payable(t7).send(_balance * 25 / 1000 ));

 // This will transfer the remaining contract balance to the owner.

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

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":"_mintAmount","type":"uint256"}],"name":"NftToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"WhitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_users","type":"address"}],"name":"addWhitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitWl","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitWl","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":"_price","type":"uint256"}],"name":"setPrice","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":"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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":"withdrawall","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600080805560c0604081905260a08290526200001f916008919062000334565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004e9160099162000334565b50664380663abb8000600b55611b39600c556032600d556014600e819055600f805462ffffff1916610101179055601280546001600160a01b0319908116739191c1f39be40bba3b4d57c023da85a500a02ddb17909155601380548216739e9e6d6ac9e59410e4ababb13475c5d54e5356ad1790558154811673d37905283adf21d3e628b423cbe20c4583ba99791790915560158054821673ed124a7faf7a6b54741edadc6be7d1e60c76787d17905560168054821673a05e5b6b5199735e157bcca08f3ca680cacc4764179055601780548216733f58ddf49e9eacd01d33fbfa1de8600cec446ee01790556018805490911673f14d484b29a8ac040feb489afadb4b972422b4e91790553480156200016657600080fd5b506040518060400160405280600981526020016842756c6c42616c6c7360b81b81525060405180604001604052806005815260200164109053130960da1b815250600d5460008111620002105760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b82516200022590600190602086019062000334565b5081516200023b90600290602085019062000334565b50608052506200024d9050336200026d565b6040805160208101909152600081526200026790620002bf565b62000417565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b031633146200031b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000207565b80516200033090600a90602084019062000334565b5050565b8280546200034290620003da565b90600052602060002090601f016020900481019282620003665760008555620003b1565b82601f106200038157805160ff1916838001178555620003b1565b82800160010185558215620003b1579182015b82811115620003b157825182559160200191906001019062000394565b50620003bf929150620003c3565b5090565b5b80821115620003bf5760008155600101620003c4565b600181811c90821680620003ef57607f821691505b602082108114156200041157634e487b7160e01b600052602260045260246000fd5b50919050565b608051612ebf62000441600039600081816120c6015281816120f001526125180152612ebf6000f3fe60806040526004361061027d5760003560e01c806370a082311161014f578063a45ba8e7116100c1578063d5abeb011161007a578063d5abeb011461076a578063e0a8085314610780578063e2dfc039146107a0578063e985e9c5146107c0578063f2fde38b14610809578063f66c72811461082957600080fd5b8063a45ba8e7146106b5578063b071401b146106ca578063b88d4fde146106ea578063ba4e5c491461070a578063c87b56dd1461072a578063cc10bc3f1461074a57600080fd5b806394354fd01161011357806394354fd01461062157806395d89b41146106375780639c70b5121461064c578063a035b1fe1461066c578063a0712d6814610682578063a22cb4651461069557600080fd5b806370a082311461058e578063715018a6146105ae5780637ec4a659146105c35780638da5cb5b146105e357806391b7f5ed1461060157600080fd5b806323b872dd116101f35780634f6ccce7116101ac5780634f6ccce7146104d55780634fdd43cb146104f557806351830227146105155780635c975abb146105345780636352211e1461054e5780636f8b44b01461056e57600080fd5b806323b872dd146104085780632f745c59146104285780633af32abf146104485780633c9527641461046857806342842e0e14610488578063438b6300146104a857600080fd5b806316ba10e01161024557806316ba10e01461035357806316c38b3c1461037357806318160ddd1461039357806318cae269146103b2578063205ee7b8146103df5780632063064e146103f257600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b3146103115780630c6beda214610333575b600080fd5b34801561028e57600080fd5b506102a261029d366004612a39565b61083e565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc6108ab565b6040516102ae9190612c46565b3480156102e557600080fd5b506102f96102f4366004612abc565b61093d565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c3660046129f4565b6109cd565b005b34801561033f57600080fd5b5061033161034e3660046129f4565b610ae5565b34801561035f57600080fd5b5061033161036e366004612a73565b610bc5565b34801561037f57600080fd5b5061033161038e366004612a1e565b610c06565b34801561039f57600080fd5b506000545b6040519081526020016102ae565b3480156103be57600080fd5b506103a46103cd3660046128c4565b60116020526000908152604090205481565b6103316103ed366004612abc565b610c43565b3480156103fe57600080fd5b506103a4600e5481565b34801561041457600080fd5b50610331610423366004612912565b610e34565b34801561043457600080fd5b506103a46104433660046129f4565b610e3f565b34801561045457600080fd5b506102a26104633660046128c4565b610fad565b34801561047457600080fd5b50610331610483366004612a1e565b611017565b34801561049457600080fd5b506103316104a3366004612912565b61105d565b3480156104b457600080fd5b506104c86104c33660046128c4565b611078565b6040516102ae9190612c02565b3480156104e157600080fd5b506103a46104f0366004612abc565b611158565b34801561050157600080fd5b50610331610510366004612a73565b6111ba565b34801561052157600080fd5b50600f546102a290610100900460ff1681565b34801561054057600080fd5b50600f546102a29060ff1681565b34801561055a57600080fd5b506102f9610569366004612abc565b6111f7565b34801561057a57600080fd5b50610331610589366004612abc565b611209565b34801561059a57600080fd5b506103a46105a93660046128c4565b611238565b3480156105ba57600080fd5b506103316112c9565b3480156105cf57600080fd5b506103316105de366004612a73565b6112ff565b3480156105ef57600080fd5b506007546001600160a01b03166102f9565b34801561060d57600080fd5b5061033161061c366004612abc565b61133c565b34801561062d57600080fd5b506103a4600d5481565b34801561064357600080fd5b506102cc61136b565b34801561065857600080fd5b50600f546102a29062010000900460ff1681565b34801561067857600080fd5b506103a4600b5481565b610331610690366004612abc565b61137a565b3480156106a157600080fd5b506103316106b03660046129ca565b611519565b3480156106c157600080fd5b506102cc6115de565b3480156106d657600080fd5b506103316106e5366004612abc565b61166c565b3480156106f657600080fd5b5061033161070536600461294e565b61169b565b34801561071657600080fd5b506102f9610725366004612abc565b6116d4565b34801561073657600080fd5b506102cc610745366004612abc565b6116fe565b34801561075657600080fd5b506103316107653660046128c4565b61186f565b34801561077657600080fd5b506103a4600c5481565b34801561078c57600080fd5b5061033161079b366004612a1e565b6118eb565b3480156107ac57600080fd5b506103316107bb366004612abc565b61192f565b3480156107cc57600080fd5b506102a26107db3660046128df565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561081557600080fd5b506103316108243660046128c4565b61195e565b34801561083557600080fd5b506103316119f9565b60006001600160e01b031982166380ac58cd60e01b148061086f57506001600160e01b03198216635b5e139f60e01b145b8061088a57506001600160e01b0319821663780e9d6360e01b145b806108a557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546108ba90612db1565b80601f01602080910402602001604051908101604052809291908181526020018280546108e690612db1565b80156109335780601f1061090857610100808354040283529160200191610933565b820191906000526020600020905b81548152906001019060200180831161091657829003601f168201915b5050505050905090565b600061094a826000541190565b6109b15760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109d8826111f7565b9050806001600160a01b0316836001600160a01b03161415610a475760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109a8565b336001600160a01b0382161480610a635750610a6381336107db565b610ad55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109a8565b610ae0838383611c87565b505050565b80600081118015610af85750600d548111155b610b3b5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109a8565b600c5481600054610b4c9190612d0c565b1115610b915760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109a8565b6007546001600160a01b03163314610bbb5760405162461bcd60e51b81526004016109a890612c59565b610ae08383611ce3565b6007546001600160a01b03163314610bef5760405162461bcd60e51b81526004016109a890612c59565b8051610c02906009906020840190612792565b5050565b6007546001600160a01b03163314610c305760405162461bcd60e51b81526004016109a890612c59565b600f805460ff1916911515919091179055565b33600090815260116020526040902054600f5460ff1615610ca05760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109a8565b600f5462010000900460ff16610cec5760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b60448201526064016109a8565b600e54610cf98383612d0c565b1115610d475760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016109a8565b600f5462010000900460ff16151560011415610db257610d6633610fad565b610db25760405162461bcd60e51b815260206004820152601a60248201527f61646472657373206973206e6f742057686974656c697374656400000000000060448201526064016109a8565b81600b54610dc09190612d38565b341015610e055760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109a8565b3360009081526011602052604081208054849290610e24908490612d0c565b90915550610c0290503383611ce3565b610ae0838383611cfd565b6000610e4a83611238565b8210610ea35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109a8565b600080549080805b83811015610f4d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610efe57805192505b876001600160a01b0316836001600160a01b03161415610f3a5786841415610f2c575093506108a592505050565b83610f3681612dec565b9450505b5080610f4581612dec565b915050610eab565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016109a8565b6000805b60105481101561100e57826001600160a01b031660108281548110610fd857610fd8612e47565b6000918252602090912001546001600160a01b03161415610ffc5750600192915050565b8061100681612dec565b915050610fb1565b50600092915050565b6007546001600160a01b031633146110415760405162461bcd60e51b81526004016109a890612c59565b600f8054911515620100000262ff000019909216919091179055565b610ae08383836040518060200160405280600081525061169b565b6060600061108583611238565b905060008167ffffffffffffffff8111156110a2576110a2612e5d565b6040519080825280602002602001820160405280156110cb578160200160208202803683370190505b5090506000805b83811080156110e35750600c548211155b1561114e5760006110f3836111f7565b9050866001600160a01b0316816001600160a01b0316141561113b578284838151811061112257611122612e47565b60209081029190910101528161113781612dec565b9250505b8261114581612dec565b935050506110d2565b5090949350505050565b6000805482106111b65760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109a8565b5090565b6007546001600160a01b031633146111e45760405162461bcd60e51b81526004016109a890612c59565b8051610c0290600a906020840190612792565b600061120282612044565b5192915050565b6007546001600160a01b031633146112335760405162461bcd60e51b81526004016109a890612c59565b600c55565b60006001600160a01b0382166112a45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109a8565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146112f35760405162461bcd60e51b81526004016109a890612c59565b6112fd60006121ee565b565b6007546001600160a01b031633146113295760405162461bcd60e51b81526004016109a890612c59565b8051610c02906008906020840190612792565b6007546001600160a01b031633146113665760405162461bcd60e51b81526004016109a890612c59565b600b55565b6060600280546108ba90612db1565b8060008111801561138d5750600d548111155b6113d05760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109a8565b600c54816000546113e19190612d0c565b11156114265760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109a8565b600f5460ff16156114735760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109a8565b600f5462010000900460ff16156114bc5760405162461bcd60e51b815260206004820152600d60248201526c283932b9b0b6329034b99037b760991b60448201526064016109a8565b81600b546114ca9190612d38565b34101561150f5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109a8565b610c023383611ce3565b6001600160a01b0382163314156115725760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109a8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a80546115eb90612db1565b80601f016020809104026020016040519081016040528092919081815260200182805461161790612db1565b80156116645780601f1061163957610100808354040283529160200191611664565b820191906000526020600020905b81548152906001019060200180831161164757829003601f168201915b505050505081565b6007546001600160a01b031633146116965760405162461bcd60e51b81526004016109a890612c59565b600d55565b6116a6848484611cfd565b6116b284848484612240565b6116ce5760405162461bcd60e51b81526004016109a890612c8e565b50505050565b601081815481106116e457600080fd5b6000918252602090912001546001600160a01b0316905081565b606061170b826000541190565b61176f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a8565b600f54610100900460ff1661181057600a805461178b90612db1565b80601f01602080910402602001604051908101604052809291908181526020018280546117b790612db1565b80156118045780601f106117d957610100808354040283529160200191611804565b820191906000526020600020905b8154815290600101906020018083116117e757829003601f168201915b50505050509050919050565b600061181a61234e565b9050600081511161183a5760405180602001604052806000815250611868565b806118448461235d565b600960405160200161185893929190612b01565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146118995760405162461bcd60e51b81526004016109a890612c59565b601080546001810182556000919091527f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae6720180546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b031633146119155760405162461bcd60e51b81526004016109a890612c59565b600f80549115156101000261ff0019909216919091179055565b6007546001600160a01b031633146119595760405162461bcd60e51b81526004016109a890612c59565b600e55565b6007546001600160a01b031633146119885760405162461bcd60e51b81526004016109a890612c59565b6001600160a01b0381166119ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a8565b6119f6816121ee565b50565b6007546001600160a01b03163314611a235760405162461bcd60e51b81526004016109a890612c59565b60125447906001600160a01b03166108fc6103e8611a4284609b612d38565b611a4c9190612d24565b6040518115909202916000818181858888f19350505050611a6c57600080fd5b6013546001600160a01b03166108fc6103e8611a8984609b612d38565b611a939190612d24565b6040518115909202916000818181858888f19350505050611ab357600080fd5b6014546001600160a01b03166108fc6103e8611ad084609b612d38565b611ada9190612d24565b6040518115909202916000818181858888f19350505050611afa57600080fd5b6015546001600160a01b03166108fc6103e8611b1784609b612d38565b611b219190612d24565b6040518115909202916000818181858888f19350505050611b4157600080fd5b6016546001600160a01b03166108fc6103e8611b5e84609b612d38565b611b689190612d24565b6040518115909202916000818181858888f19350505050611b8857600080fd5b6017546001600160a01b03166108fc6103e8611ba5846019612d38565b611baf9190612d24565b6040518115909202916000818181858888f19350505050611bcf57600080fd5b6018546001600160a01b03166108fc6103e8611bec846019612d38565b611bf69190612d24565b6040518115909202916000818181858888f19350505050611c1657600080fd5b6000611c2a6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611c74576040519150601f19603f3d011682016040523d82523d6000602084013e611c79565b606091505b5050905080610c0257600080fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610c0282826040518060200160405280600081525061245b565b6000611d0882612044565b80519091506000906001600160a01b0316336001600160a01b03161480611d3f575033611d348461093d565b6001600160a01b0316145b80611d5157508151611d5190336107db565b905080611dbb5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016109a8565b846001600160a01b031682600001516001600160a01b031614611e2f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109a8565b6001600160a01b038416611e935760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109a8565b611ea36000848460000151611c87565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611f68908590612d0c565b6000818152600360205260409020549091506001600160a01b0316611ffa57611f92816000541190565b15611ffa5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152612063826000541190565b6120c25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109a8565b60007f00000000000000000000000000000000000000000000000000000000000000008310612123576121157f000000000000000000000000000000000000000000000000000000000000000084612d57565b612120906001612d0c565b90505b825b81811061218d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561217a57949350505050565b508061218581612d9a565b915050612125565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016109a8565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561234257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612284903390899088908890600401612bc5565b602060405180830381600087803b15801561229e57600080fd5b505af19250505080156122ce575060408051601f3d908101601f191682019092526122cb91810190612a56565b60015b612328573d8080156122fc576040519150601f19603f3d011682016040523d82523d6000602084013e612301565b606091505b5080516123205760405162461bcd60e51b81526004016109a890612c8e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612346565b5060015b949350505050565b6060600880546108ba90612db1565b6060816123815750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123ab578061239581612dec565b91506123a49050600a83612d24565b9150612385565b60008167ffffffffffffffff8111156123c6576123c6612e5d565b6040519080825280601f01601f1916602001820160405280156123f0576020820181803683370190505b5090505b841561234657612405600183612d57565b9150612412600a86612e07565b61241d906030612d0c565b60f81b81838151811061243257612432612e47565b60200101906001600160f81b031916908160001a905350612454600a86612d24565b94506123f4565b6000546001600160a01b0384166124be5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109a8565b6124c9816000541190565b156125165760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016109a8565b7f00000000000000000000000000000000000000000000000000000000000000008311156125915760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016109a8565b600083116125ed5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016109a8565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612649908790612ce1565b6001600160801b031681526020018583602001516126679190612ce1565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156127875760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461274b6000888488612240565b6127675760405162461bcd60e51b81526004016109a890612c8e565b8161277181612dec565b925050808061277f90612dec565b9150506126fe565b50600081905561203c565b82805461279e90612db1565b90600052602060002090601f0160209004810192826127c05760008555612806565b82601f106127d957805160ff1916838001178555612806565b82800160010185558215612806579182015b828111156128065782518255916020019190600101906127eb565b506111b69291505b808211156111b6576000815560010161280e565b600067ffffffffffffffff8084111561283d5761283d612e5d565b604051601f8501601f19908116603f0116810190828211818310171561286557612865612e5d565b8160405280935085815286868601111561287e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146128af57600080fd5b919050565b803580151581146128af57600080fd5b6000602082840312156128d657600080fd5b61186882612898565b600080604083850312156128f257600080fd5b6128fb83612898565b915061290960208401612898565b90509250929050565b60008060006060848603121561292757600080fd5b61293084612898565b925061293e60208501612898565b9150604084013590509250925092565b6000806000806080858703121561296457600080fd5b61296d85612898565b935061297b60208601612898565b925060408501359150606085013567ffffffffffffffff81111561299e57600080fd5b8501601f810187136129af57600080fd5b6129be87823560208401612822565b91505092959194509250565b600080604083850312156129dd57600080fd5b6129e683612898565b9150612909602084016128b4565b60008060408385031215612a0757600080fd5b612a1083612898565b946020939093013593505050565b600060208284031215612a3057600080fd5b611868826128b4565b600060208284031215612a4b57600080fd5b813561186881612e73565b600060208284031215612a6857600080fd5b815161186881612e73565b600060208284031215612a8557600080fd5b813567ffffffffffffffff811115612a9c57600080fd5b8201601f81018413612aad57600080fd5b61234684823560208401612822565b600060208284031215612ace57600080fd5b5035919050565b60008151808452612aed816020860160208601612d6e565b601f01601f19169290920160200192915050565b600084516020612b148285838a01612d6e565b855191840191612b278184848a01612d6e565b8554920191600090600181811c9080831680612b4457607f831692505b858310811415612b6257634e487b7160e01b85526022600452602485fd5b808015612b765760018114612b8757612bb4565b60ff19851688528388019550612bb4565b60008b81526020902060005b85811015612bac5781548a820152908401908801612b93565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bf890830184612ad5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c3a57835183529284019291840191600101612c1e565b50909695505050505050565b6020815260006118686020830184612ad5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612d0357612d03612e1b565b01949350505050565b60008219821115612d1f57612d1f612e1b565b500190565b600082612d3357612d33612e31565b500490565b6000816000190483118215151615612d5257612d52612e1b565b500290565b600082821015612d6957612d69612e1b565b500390565b60005b83811015612d89578181015183820152602001612d71565b838111156116ce5750506000910152565b600081612da957612da9612e1b565b506000190190565b600181811c90821680612dc557607f821691505b60208210811415612de657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e0057612e00612e1b565b5060010190565b600082612e1657612e16612e31565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119f657600080fdfea2646970667358221220431d50fe7e33e3f9cf3229f93a919fdeb05e790335a0b114facb7cfa87b7f70664736f6c63430008070033

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806370a082311161014f578063a45ba8e7116100c1578063d5abeb011161007a578063d5abeb011461076a578063e0a8085314610780578063e2dfc039146107a0578063e985e9c5146107c0578063f2fde38b14610809578063f66c72811461082957600080fd5b8063a45ba8e7146106b5578063b071401b146106ca578063b88d4fde146106ea578063ba4e5c491461070a578063c87b56dd1461072a578063cc10bc3f1461074a57600080fd5b806394354fd01161011357806394354fd01461062157806395d89b41146106375780639c70b5121461064c578063a035b1fe1461066c578063a0712d6814610682578063a22cb4651461069557600080fd5b806370a082311461058e578063715018a6146105ae5780637ec4a659146105c35780638da5cb5b146105e357806391b7f5ed1461060157600080fd5b806323b872dd116101f35780634f6ccce7116101ac5780634f6ccce7146104d55780634fdd43cb146104f557806351830227146105155780635c975abb146105345780636352211e1461054e5780636f8b44b01461056e57600080fd5b806323b872dd146104085780632f745c59146104285780633af32abf146104485780633c9527641461046857806342842e0e14610488578063438b6300146104a857600080fd5b806316ba10e01161024557806316ba10e01461035357806316c38b3c1461037357806318160ddd1461039357806318cae269146103b2578063205ee7b8146103df5780632063064e146103f257600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b3146103115780630c6beda214610333575b600080fd5b34801561028e57600080fd5b506102a261029d366004612a39565b61083e565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc6108ab565b6040516102ae9190612c46565b3480156102e557600080fd5b506102f96102f4366004612abc565b61093d565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c3660046129f4565b6109cd565b005b34801561033f57600080fd5b5061033161034e3660046129f4565b610ae5565b34801561035f57600080fd5b5061033161036e366004612a73565b610bc5565b34801561037f57600080fd5b5061033161038e366004612a1e565b610c06565b34801561039f57600080fd5b506000545b6040519081526020016102ae565b3480156103be57600080fd5b506103a46103cd3660046128c4565b60116020526000908152604090205481565b6103316103ed366004612abc565b610c43565b3480156103fe57600080fd5b506103a4600e5481565b34801561041457600080fd5b50610331610423366004612912565b610e34565b34801561043457600080fd5b506103a46104433660046129f4565b610e3f565b34801561045457600080fd5b506102a26104633660046128c4565b610fad565b34801561047457600080fd5b50610331610483366004612a1e565b611017565b34801561049457600080fd5b506103316104a3366004612912565b61105d565b3480156104b457600080fd5b506104c86104c33660046128c4565b611078565b6040516102ae9190612c02565b3480156104e157600080fd5b506103a46104f0366004612abc565b611158565b34801561050157600080fd5b50610331610510366004612a73565b6111ba565b34801561052157600080fd5b50600f546102a290610100900460ff1681565b34801561054057600080fd5b50600f546102a29060ff1681565b34801561055a57600080fd5b506102f9610569366004612abc565b6111f7565b34801561057a57600080fd5b50610331610589366004612abc565b611209565b34801561059a57600080fd5b506103a46105a93660046128c4565b611238565b3480156105ba57600080fd5b506103316112c9565b3480156105cf57600080fd5b506103316105de366004612a73565b6112ff565b3480156105ef57600080fd5b506007546001600160a01b03166102f9565b34801561060d57600080fd5b5061033161061c366004612abc565b61133c565b34801561062d57600080fd5b506103a4600d5481565b34801561064357600080fd5b506102cc61136b565b34801561065857600080fd5b50600f546102a29062010000900460ff1681565b34801561067857600080fd5b506103a4600b5481565b610331610690366004612abc565b61137a565b3480156106a157600080fd5b506103316106b03660046129ca565b611519565b3480156106c157600080fd5b506102cc6115de565b3480156106d657600080fd5b506103316106e5366004612abc565b61166c565b3480156106f657600080fd5b5061033161070536600461294e565b61169b565b34801561071657600080fd5b506102f9610725366004612abc565b6116d4565b34801561073657600080fd5b506102cc610745366004612abc565b6116fe565b34801561075657600080fd5b506103316107653660046128c4565b61186f565b34801561077657600080fd5b506103a4600c5481565b34801561078c57600080fd5b5061033161079b366004612a1e565b6118eb565b3480156107ac57600080fd5b506103316107bb366004612abc565b61192f565b3480156107cc57600080fd5b506102a26107db3660046128df565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561081557600080fd5b506103316108243660046128c4565b61195e565b34801561083557600080fd5b506103316119f9565b60006001600160e01b031982166380ac58cd60e01b148061086f57506001600160e01b03198216635b5e139f60e01b145b8061088a57506001600160e01b0319821663780e9d6360e01b145b806108a557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546108ba90612db1565b80601f01602080910402602001604051908101604052809291908181526020018280546108e690612db1565b80156109335780601f1061090857610100808354040283529160200191610933565b820191906000526020600020905b81548152906001019060200180831161091657829003601f168201915b5050505050905090565b600061094a826000541190565b6109b15760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109d8826111f7565b9050806001600160a01b0316836001600160a01b03161415610a475760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109a8565b336001600160a01b0382161480610a635750610a6381336107db565b610ad55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109a8565b610ae0838383611c87565b505050565b80600081118015610af85750600d548111155b610b3b5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109a8565b600c5481600054610b4c9190612d0c565b1115610b915760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109a8565b6007546001600160a01b03163314610bbb5760405162461bcd60e51b81526004016109a890612c59565b610ae08383611ce3565b6007546001600160a01b03163314610bef5760405162461bcd60e51b81526004016109a890612c59565b8051610c02906009906020840190612792565b5050565b6007546001600160a01b03163314610c305760405162461bcd60e51b81526004016109a890612c59565b600f805460ff1916911515919091179055565b33600090815260116020526040902054600f5460ff1615610ca05760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109a8565b600f5462010000900460ff16610cec5760405162461bcd60e51b8152602060048201526011602482015270141c995cd85b19481a185cc8195b991959607a1b60448201526064016109a8565b600e54610cf98383612d0c565b1115610d475760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016109a8565b600f5462010000900460ff16151560011415610db257610d6633610fad565b610db25760405162461bcd60e51b815260206004820152601a60248201527f61646472657373206973206e6f742057686974656c697374656400000000000060448201526064016109a8565b81600b54610dc09190612d38565b341015610e055760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109a8565b3360009081526011602052604081208054849290610e24908490612d0c565b90915550610c0290503383611ce3565b610ae0838383611cfd565b6000610e4a83611238565b8210610ea35760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109a8565b600080549080805b83811015610f4d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610efe57805192505b876001600160a01b0316836001600160a01b03161415610f3a5786841415610f2c575093506108a592505050565b83610f3681612dec565b9450505b5080610f4581612dec565b915050610eab565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016109a8565b6000805b60105481101561100e57826001600160a01b031660108281548110610fd857610fd8612e47565b6000918252602090912001546001600160a01b03161415610ffc5750600192915050565b8061100681612dec565b915050610fb1565b50600092915050565b6007546001600160a01b031633146110415760405162461bcd60e51b81526004016109a890612c59565b600f8054911515620100000262ff000019909216919091179055565b610ae08383836040518060200160405280600081525061169b565b6060600061108583611238565b905060008167ffffffffffffffff8111156110a2576110a2612e5d565b6040519080825280602002602001820160405280156110cb578160200160208202803683370190505b5090506000805b83811080156110e35750600c548211155b1561114e5760006110f3836111f7565b9050866001600160a01b0316816001600160a01b0316141561113b578284838151811061112257611122612e47565b60209081029190910101528161113781612dec565b9250505b8261114581612dec565b935050506110d2565b5090949350505050565b6000805482106111b65760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109a8565b5090565b6007546001600160a01b031633146111e45760405162461bcd60e51b81526004016109a890612c59565b8051610c0290600a906020840190612792565b600061120282612044565b5192915050565b6007546001600160a01b031633146112335760405162461bcd60e51b81526004016109a890612c59565b600c55565b60006001600160a01b0382166112a45760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109a8565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146112f35760405162461bcd60e51b81526004016109a890612c59565b6112fd60006121ee565b565b6007546001600160a01b031633146113295760405162461bcd60e51b81526004016109a890612c59565b8051610c02906008906020840190612792565b6007546001600160a01b031633146113665760405162461bcd60e51b81526004016109a890612c59565b600b55565b6060600280546108ba90612db1565b8060008111801561138d5750600d548111155b6113d05760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016109a8565b600c54816000546113e19190612d0c565b11156114265760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109a8565b600f5460ff16156114735760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016109a8565b600f5462010000900460ff16156114bc5760405162461bcd60e51b815260206004820152600d60248201526c283932b9b0b6329034b99037b760991b60448201526064016109a8565b81600b546114ca9190612d38565b34101561150f5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109a8565b610c023383611ce3565b6001600160a01b0382163314156115725760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109a8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a80546115eb90612db1565b80601f016020809104026020016040519081016040528092919081815260200182805461161790612db1565b80156116645780601f1061163957610100808354040283529160200191611664565b820191906000526020600020905b81548152906001019060200180831161164757829003601f168201915b505050505081565b6007546001600160a01b031633146116965760405162461bcd60e51b81526004016109a890612c59565b600d55565b6116a6848484611cfd565b6116b284848484612240565b6116ce5760405162461bcd60e51b81526004016109a890612c8e565b50505050565b601081815481106116e457600080fd5b6000918252602090912001546001600160a01b0316905081565b606061170b826000541190565b61176f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109a8565b600f54610100900460ff1661181057600a805461178b90612db1565b80601f01602080910402602001604051908101604052809291908181526020018280546117b790612db1565b80156118045780601f106117d957610100808354040283529160200191611804565b820191906000526020600020905b8154815290600101906020018083116117e757829003601f168201915b50505050509050919050565b600061181a61234e565b9050600081511161183a5760405180602001604052806000815250611868565b806118448461235d565b600960405160200161185893929190612b01565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146118995760405162461bcd60e51b81526004016109a890612c59565b601080546001810182556000919091527f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae6720180546001600160a01b0319166001600160a01b0392909216919091179055565b6007546001600160a01b031633146119155760405162461bcd60e51b81526004016109a890612c59565b600f80549115156101000261ff0019909216919091179055565b6007546001600160a01b031633146119595760405162461bcd60e51b81526004016109a890612c59565b600e55565b6007546001600160a01b031633146119885760405162461bcd60e51b81526004016109a890612c59565b6001600160a01b0381166119ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a8565b6119f6816121ee565b50565b6007546001600160a01b03163314611a235760405162461bcd60e51b81526004016109a890612c59565b60125447906001600160a01b03166108fc6103e8611a4284609b612d38565b611a4c9190612d24565b6040518115909202916000818181858888f19350505050611a6c57600080fd5b6013546001600160a01b03166108fc6103e8611a8984609b612d38565b611a939190612d24565b6040518115909202916000818181858888f19350505050611ab357600080fd5b6014546001600160a01b03166108fc6103e8611ad084609b612d38565b611ada9190612d24565b6040518115909202916000818181858888f19350505050611afa57600080fd5b6015546001600160a01b03166108fc6103e8611b1784609b612d38565b611b219190612d24565b6040518115909202916000818181858888f19350505050611b4157600080fd5b6016546001600160a01b03166108fc6103e8611b5e84609b612d38565b611b689190612d24565b6040518115909202916000818181858888f19350505050611b8857600080fd5b6017546001600160a01b03166108fc6103e8611ba5846019612d38565b611baf9190612d24565b6040518115909202916000818181858888f19350505050611bcf57600080fd5b6018546001600160a01b03166108fc6103e8611bec846019612d38565b611bf69190612d24565b6040518115909202916000818181858888f19350505050611c1657600080fd5b6000611c2a6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611c74576040519150601f19603f3d011682016040523d82523d6000602084013e611c79565b606091505b5050905080610c0257600080fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610c0282826040518060200160405280600081525061245b565b6000611d0882612044565b80519091506000906001600160a01b0316336001600160a01b03161480611d3f575033611d348461093d565b6001600160a01b0316145b80611d5157508151611d5190336107db565b905080611dbb5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016109a8565b846001600160a01b031682600001516001600160a01b031614611e2f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109a8565b6001600160a01b038416611e935760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109a8565b611ea36000848460000151611c87565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b95909216949094021790925590611f68908590612d0c565b6000818152600360205260409020549091506001600160a01b0316611ffa57611f92816000541190565b15611ffa5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152612063826000541190565b6120c25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109a8565b60007f00000000000000000000000000000000000000000000000000000000000000328310612123576121157f000000000000000000000000000000000000000000000000000000000000003284612d57565b612120906001612d0c565b90505b825b81811061218d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561217a57949350505050565b508061218581612d9a565b915050612125565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016109a8565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561234257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612284903390899088908890600401612bc5565b602060405180830381600087803b15801561229e57600080fd5b505af19250505080156122ce575060408051601f3d908101601f191682019092526122cb91810190612a56565b60015b612328573d8080156122fc576040519150601f19603f3d011682016040523d82523d6000602084013e612301565b606091505b5080516123205760405162461bcd60e51b81526004016109a890612c8e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612346565b5060015b949350505050565b6060600880546108ba90612db1565b6060816123815750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123ab578061239581612dec565b91506123a49050600a83612d24565b9150612385565b60008167ffffffffffffffff8111156123c6576123c6612e5d565b6040519080825280601f01601f1916602001820160405280156123f0576020820181803683370190505b5090505b841561234657612405600183612d57565b9150612412600a86612e07565b61241d906030612d0c565b60f81b81838151811061243257612432612e47565b60200101906001600160f81b031916908160001a905350612454600a86612d24565b94506123f4565b6000546001600160a01b0384166124be5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109a8565b6124c9816000541190565b156125165760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016109a8565b7f00000000000000000000000000000000000000000000000000000000000000328311156125915760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016109a8565b600083116125ed5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016109a8565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612649908790612ce1565b6001600160801b031681526020018583602001516126679190612ce1565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156127875760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461274b6000888488612240565b6127675760405162461bcd60e51b81526004016109a890612c8e565b8161277181612dec565b925050808061277f90612dec565b9150506126fe565b50600081905561203c565b82805461279e90612db1565b90600052602060002090601f0160209004810192826127c05760008555612806565b82601f106127d957805160ff1916838001178555612806565b82800160010185558215612806579182015b828111156128065782518255916020019190600101906127eb565b506111b69291505b808211156111b6576000815560010161280e565b600067ffffffffffffffff8084111561283d5761283d612e5d565b604051601f8501601f19908116603f0116810190828211818310171561286557612865612e5d565b8160405280935085815286868601111561287e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146128af57600080fd5b919050565b803580151581146128af57600080fd5b6000602082840312156128d657600080fd5b61186882612898565b600080604083850312156128f257600080fd5b6128fb83612898565b915061290960208401612898565b90509250929050565b60008060006060848603121561292757600080fd5b61293084612898565b925061293e60208501612898565b9150604084013590509250925092565b6000806000806080858703121561296457600080fd5b61296d85612898565b935061297b60208601612898565b925060408501359150606085013567ffffffffffffffff81111561299e57600080fd5b8501601f810187136129af57600080fd5b6129be87823560208401612822565b91505092959194509250565b600080604083850312156129dd57600080fd5b6129e683612898565b9150612909602084016128b4565b60008060408385031215612a0757600080fd5b612a1083612898565b946020939093013593505050565b600060208284031215612a3057600080fd5b611868826128b4565b600060208284031215612a4b57600080fd5b813561186881612e73565b600060208284031215612a6857600080fd5b815161186881612e73565b600060208284031215612a8557600080fd5b813567ffffffffffffffff811115612a9c57600080fd5b8201601f81018413612aad57600080fd5b61234684823560208401612822565b600060208284031215612ace57600080fd5b5035919050565b60008151808452612aed816020860160208601612d6e565b601f01601f19169290920160200192915050565b600084516020612b148285838a01612d6e565b855191840191612b278184848a01612d6e565b8554920191600090600181811c9080831680612b4457607f831692505b858310811415612b6257634e487b7160e01b85526022600452602485fd5b808015612b765760018114612b8757612bb4565b60ff19851688528388019550612bb4565b60008b81526020902060005b85811015612bac5781548a820152908401908801612b93565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612bf890830184612ad5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c3a57835183529284019291840191600101612c1e565b50909695505050505050565b6020815260006118686020830184612ad5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612d0357612d03612e1b565b01949350505050565b60008219821115612d1f57612d1f612e1b565b500190565b600082612d3357612d33612e31565b500490565b6000816000190483118215151615612d5257612d52612e1b565b500290565b600082821015612d6957612d69612e1b565b500390565b60005b83811015612d89578181015183820152602001612d71565b838111156116ce5750506000910152565b600081612da957612da9612e1b565b506000190190565b600181811c90821680612dc557607f821691505b60208210811415612de657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e0057612e00612e1b565b5060010190565b600082612e1657612e16612e31565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146119f657600080fdfea2646970667358221220431d50fe7e33e3f9cf3229f93a919fdeb05e790335a0b114facb7cfa87b7f70664736f6c63430008070033

Deployed Bytecode Sourcemap

41324:6006:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29047:372;;;;;;;;;;-1:-1:-1;29047:372:0;;;;;:::i;:::-;;:::i;:::-;;;7807:14:1;;7800:22;7782:41;;7770:2;7755:18;29047:372:0;;;;;;;;30852:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32413:214::-;;;;;;;;;;-1:-1:-1;32413:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6468:32:1;;;6450:51;;6438:2;6423:18;32413:214:0;6304:203:1;31934:413:0;;;;;;;;;;-1:-1:-1;31934:413:0;;;;;:::i;:::-;;:::i;:::-;;43209:141;;;;;;;;;;-1:-1:-1;43209:141:0;;;;;:::i;:::-;;:::i;45135:100::-;;;;;;;;;;-1:-1:-1;45135:100:0;;;;;:::i;:::-;;:::i;45241:77::-;;;;;;;;;;-1:-1:-1;45241:77:0;;;;;:::i;:::-;;:::i;27488:100::-;;;;;;;;;;-1:-1:-1;27541:7:0;27568:12;27488:100;;;19464:25:1;;;19452:2;19437:18;27488:100:0;19318:177:1;41828:55:0;;;;;;;;;;-1:-1:-1;41828:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;42553:642;;;;;;:::i;:::-;;:::i;41634:40::-;;;;;;;;;;;;;;;;33289:162;;;;;;;;;;-1:-1:-1;33289:162:0;;;;;:::i;:::-;;:::i;28152:823::-;;;;;;;;;;-1:-1:-1;28152:823:0;;;;;:::i;:::-;;:::i;45929:239::-;;;;;;;;;;-1:-1:-1;45929:239:0;;;;;:::i;:::-;;:::i;44589:95::-;;;;;;;;;;-1:-1:-1;44589:95:0;;;;;:::i;:::-;;:::i;33522:177::-;;;;;;;;;;-1:-1:-1;33522:177:0;;;;;:::i;:::-;;:::i;43359:635::-;;;;;;;;;;-1:-1:-1;43359:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27665:187::-;;;;;;;;;;-1:-1:-1;27665:187:0;;;;;:::i;:::-;;:::i;44777:132::-;;;;;;;;;;-1:-1:-1;44777:132:0;;;;;:::i;:::-;;:::i;41714:27::-;;;;;;;;;;-1:-1:-1;41714:27:0;;;;;;;;;;;41684:25;;;;;;;;;;-1:-1:-1;41684:25:0;;;;;;;;30661:124;;;;;;;;;;-1:-1:-1;30661:124:0;;;;;:::i;:::-;;:::i;45704:96::-;;;;;;;;;;-1:-1:-1;45704:96:0;;;;;:::i;:::-;;:::i;29483:221::-;;;;;;;;;;-1:-1:-1;29483:221:0;;;;;:::i;:::-;;:::i;6730:103::-;;;;;;;;;;;;;:::i;45029:100::-;;;;;;;;;;-1:-1:-1;45029:100:0;;;;;:::i;:::-;;:::i;6079:87::-;;;;;;;;;;-1:-1:-1;6152:6:0;;-1:-1:-1;;;;;6152:6:0;6079:87;;44690:80;;;;;;;;;;-1:-1:-1;44690:80:0;;;;;:::i;:::-;;:::i;41590:38::-;;;;;;;;;;;;;;;;31021:104;;;;;;;;;;;;;:::i;41746:35::-;;;;;;;;;;-1:-1:-1;41746:35:0;;;;;;;;;;;41513:34;;;;;;;;;;;;;;;;42235:311;;;;;;:::i;:::-;;:::i;32699:288::-;;;;;;;;;;-1:-1:-1;32699:288:0;;;;;:::i;:::-;;:::i;41473:31::-;;;;;;;;;;;;;:::i;45564:132::-;;;;;;;;;;-1:-1:-1;45564:132:0;;;;;:::i;:::-;;:::i;33770:355::-;;;;;;;;;;-1:-1:-1;33770:355:0;;;;;:::i;:::-;;:::i;41786:37::-;;;;;;;;;;-1:-1:-1;41786:37:0;;;;;:::i;:::-;;:::i;44000:494::-;;;;;;;;;;-1:-1:-1;44000:494:0;;;;;:::i;:::-;;:::i;45806:115::-;;;;;;;;;;-1:-1:-1;45806:115:0;;;;;:::i;:::-;;:::i;41553:31::-;;;;;;;;;;;;;;;;44500:81;;;;;;;;;;-1:-1:-1;44500:81:0;;;;;:::i;:::-;;:::i;44915:108::-;;;;;;;;;;-1:-1:-1;44915:108:0;;;;;:::i;:::-;;:::i;33058:164::-;;;;;;;;;;-1:-1:-1;33058:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33179:25:0;;;33155:4;33179:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33058:164;6988:201;;;;;;;;;;-1:-1:-1;6988:201:0;;;;;:::i;:::-;;:::i;46631:692::-;;;;;;;;;;;;;:::i;29047:372::-;29149:4;-1:-1:-1;;;;;;29186:40:0;;-1:-1:-1;;;29186:40:0;;:105;;-1:-1:-1;;;;;;;29243:48:0;;-1:-1:-1;;;29243:48:0;29186:105;:172;;;-1:-1:-1;;;;;;;29308:50:0;;-1:-1:-1;;;29308:50:0;29186:172;:225;;;-1:-1:-1;;;;;;;;;;18620:40:0;;;29375:36;29166:245;29047:372;-1:-1:-1;;29047:372:0:o;30852:100::-;30906:13;30939:5;30932:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30852:100;:::o;32413:214::-;32481:7;32509:16;32517:7;34437:4;34471:12;-1:-1:-1;34461:22:0;34380:111;32509:16;32501:74;;;;-1:-1:-1;;;32501:74:0;;18355:2:1;32501:74:0;;;18337:21:1;18394:2;18374:18;;;18367:30;18433:34;18413:18;;;18406:62;-1:-1:-1;;;18484:18:1;;;18477:43;18537:19;;32501:74:0;;;;;;;;;-1:-1:-1;32595:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32595:24:0;;32413:214::o;31934:413::-;32007:13;32023:24;32039:7;32023:15;:24::i;:::-;32007:40;;32072:5;-1:-1:-1;;;;;32066:11:0;:2;-1:-1:-1;;;;;32066:11:0;;;32058:58;;;;-1:-1:-1;;;32058:58:0;;14833:2:1;32058:58:0;;;14815:21:1;14872:2;14852:18;;;14845:30;14911:34;14891:18;;;14884:62;-1:-1:-1;;;14962:18:1;;;14955:32;15004:19;;32058:58:0;14631:398:1;32058:58:0;4883:10;-1:-1:-1;;;;;32151:21:0;;;;:62;;-1:-1:-1;32176:37:0;32193:5;4883:10;33058:164;:::i;32176:37::-;32129:169;;;;-1:-1:-1;;;32129:169:0;;11343:2:1;32129:169:0;;;11325:21:1;11382:2;11362:18;;;11355:30;11421:34;11401:18;;;11394:62;11492:27;11472:18;;;11465:55;11537:19;;32129:169:0;11141:421:1;32129:169:0;32311:28;32320:2;32324:7;32333:5;32311:8;:28::i;:::-;31996:351;31934:413;;:::o;43209:141::-;43287:11;42073:1;42059:11;:15;:52;;;;;42093:18;;42078:11;:33;;42059:52;42051:85;;;;-1:-1:-1;;;42051:85:0;;9827:2:1;42051:85:0;;;9809:21:1;9866:2;9846:18;;;9839:30;-1:-1:-1;;;9885:18:1;;;9878:50;9945:18;;42051:85:0;9625:344:1;42051:85:0;42181:9;;42166:11;42151:12;;:26;;;;:::i;:::-;:39;;42143:72;;;;-1:-1:-1;;;42143:72:0;;15236:2:1;42143:72:0;;;15218:21:1;15275:2;15255:18;;;15248:30;-1:-1:-1;;;15294:18:1;;;15287:50;15354:18;;42143:72:0;15034:344:1;42143:72:0;6152:6;;-1:-1:-1;;;;;6152:6:0;4883:10;6299:23:::1;6291:68;;;;-1:-1:-1::0;;;6291:68:0::1;;;;;;;:::i;:::-;43317:27:::2;43327:3;43332:11;43317:9;:27::i;45135:100::-:0;6152:6;;-1:-1:-1;;;;;6152:6:0;4883:10;6299:23;6291:68;;;;-1:-1:-1;;;6291:68:0;;;;;;;:::i;:::-;45207:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45135:100:::0;:::o;45241:77::-;6152:6;;-1:-1:-1;;;;;6152:6:0;4883:10;6299:23;6291:68;;;;-1:-1:-1;;;6291:68:0;;;;;;;:::i;:::-;45297:6:::1;:15:::0;;-1:-1:-1;;45297:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45241:77::o;42553:642::-;42667:10;42619:24;42646:32;;;:20;:32;;;;;;42700:6;;;;42699:7;42691:43;;;;-1:-1:-1;;;42691:43:0;;13291:2:1;42691:43:0;;;13273:21:1;13330:2;13310:18;;;13303:30;-1:-1:-1;;;13349:18:1;;;13342:53;13412:18;;42691:43:0;13089:347:1;42691:43:0;42749:15;;;;;;;42741:45;;;;-1:-1:-1;;;42741:45:0;;8260:2:1;42741:45:0;;;8242:21:1;8299:2;8279:18;;;8272:30;-1:-1:-1;;;8318:18:1;;;8311:47;8375:18;;42741:45:0;8058:341:1;42741:45:0;42835:20;;42801:30;42820:11;42801:16;:30;:::i;:::-;:54;;42793:95;;;;-1:-1:-1;;;42793:95:0;;10176:2:1;42793:95:0;;;10158:21:1;10215:2;10195:18;;;10188:30;10254;10234:18;;;10227:58;10302:18;;42793:95:0;9974:352:1;42793:95:0;42898:15;;;;;;;:23;;42917:4;42898:23;42895:119;;;42946:25;42960:10;42946:13;:25::i;:::-;42938:64;;;;-1:-1:-1;;;42938:64:0;;18000:2:1;42938:64:0;;;17982:21:1;18039:2;18019:18;;;18012:30;18078:28;18058:18;;;18051:56;18124:18;;42938:64:0;17798:350:1;42938:64:0;43049:11;43041:5;;:19;;;;:::i;:::-;43028:9;:32;;43020:64;;;;-1:-1:-1;;;43020:64:0;;19172:2:1;43020:64:0;;;19154:21:1;19211:2;19191:18;;;19184:30;-1:-1:-1;;;19230:18:1;;;19223:49;19289:18;;43020:64:0;18970:343:1;43020:64:0;43118:10;43097:32;;;;:20;:32;;;;;:45;;43131:11;;43097:32;:45;;43131:11;;43097:45;:::i;:::-;;;;-1:-1:-1;43155:34:0;;-1:-1:-1;43165:10:0;43177:11;43155:9;:34::i;33289:162::-;33415:28;33425:4;33431:2;33435:7;33415:9;:28::i;28152:823::-;28241:7;28277:16;28287:5;28277:9;:16::i;:::-;28269:5;:24;28261:71;;;;-1:-1:-1;;;28261:71:0;;8606:2:1;28261:71:0;;;8588:21:1;8645:2;8625:18;;;8618:30;8684:34;8664:18;;;8657:62;-1:-1:-1;;;8735:18:1;;;8728:32;8777:19;;28261:71:0;8404:398:1;28261:71:0;28343:22;27568:12;;;28343:22;;28475:426;28499:14;28495:1;:18;28475:426;;;28535:31;28569:14;;;:11;:14;;;;;;;;;28535:48;;;;;;;;;-1:-1:-1;;;;;28535:48:0;;;;;-1:-1:-1;;;28535:48:0;;;;;;;;;;;;28602:28;28598:103;;28671:14;;;-1:-1:-1;28598:103:0;28740:5;-1:-1:-1;;;;;28719:26:0;:17;-1:-1:-1;;;;;28719:26:0;;28715:175;;;28785:5;28770:11;:20;28766:77;;;-1:-1:-1;28822:1:0;-1:-1:-1;28815:8:0;;-1:-1:-1;;;28815:8:0;28766:77;28861:13;;;;:::i;:::-;;;;28715:175;-1:-1:-1;28515:3:0;;;;:::i;:::-;;;;28475:426;;;-1:-1:-1;28911:56:0;;-1:-1:-1;;;28911:56:0;;17169:2:1;28911:56:0;;;17151:21:1;17208:2;17188:18;;;17181:30;17247:34;17227:18;;;17220:62;-1:-1:-1;;;17298:18:1;;;17291:44;17352:19;;28911:56:0;16967:410:1;45929:239:0;45988:4;;46001:143;46022:20;:27;46018:31;;46001:143;;;46096:5;-1:-1:-1;;;;;46069:32:0;:20;46090:1;46069:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;46069:23:0;:32;46065:72;;;-1:-1:-1;46123:4:0;;45929:239;-1:-1:-1;;45929:239:0:o;46065:72::-;46051:3;;;;:::i;:::-;;;;46001:143;;;-1:-1:-1;46157:5:0;;45929:239;-1:-1:-1;;45929:239:0:o;44589:95::-;6152:6;;-1:-1:-1;;;;;6152:6:0;4883:10;6299:23;6291:68;;;;-1:-1:-1;;;6291:68:0;;;;;;;:::i;:::-;44654:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;44654:24:0;;::::1;::::0;;;::::1;::::0;;44589:95::o;33522:177::-;33652:39;33669:4;33675:2;33679:7;33652:39;;;;;;;;;;;;:16;:39::i;43359:635::-;43434:16;43462:23;43488:17;43498:6;43488:9;:17::i;:::-;43462:43;;43512:30;43559:15;43545:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43545:30:0;;43512:63;;43582:22;43615:23;43651:309;43676:15;43658;:33;:64;;;;;43713:9;;43695:14;:27;;43658:64;43651:309;;;43733:25;43761:23;43769:14;43761:7;:23::i;:::-;43733:51;;43820:6;-1:-1:-1;;;;;43799:27:0;:17;-1:-1:-1;;;;;43799:27:0;;43795:131;;;43872:14;43839:13;43853:15;43839:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;43899:17;;;;:::i;:::-;;;;43795:131;43936:16;;;;:::i;:::-;;;;43724:236;43651:309;;;-1:-1:-1;43975:13:0;;43359:635;-1:-1:-1;;;;43359:635:0:o;27665:187::-;27732:7;27568:12;;27760:5;:21;27752:69;;;;-1:-1:-1;;;27752:69:0;;10533:2:1;27752:69:0;;;10515:21:1;10572:2;10552:18;;;10545:30;10611:34;10591:18;;;10584:62;-1:-1:-1;;;10662:18:1;;;10655:33;10705:19;;27752:69:0;10331:399:1;27752:69:0;-1:-1:-1;27839:5:0;27665:187::o;44777:132::-;6152:6;;-1:-1:-1;;;;;6152:6:0;4883:10;6299:23;6291:68;;;;-1:-1:-1;;;6291:68:0;;;;;;;:::i;:::-;44865:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;30661:124::-:0;30725:7;30752:20;30764:7;30752:11;:20::i;:::-;:25;;30661:124;-1:-1:-1;;30661:124:0:o;45704:96::-;6152:6;;-1:-1:-1;;;;;6152:6:0;4883:10;6299:23;6291:68;;;;-1:-1:-1;;;6291:68:0;;;;;;;:::i;:::-;45770:9:::1;:22:::0;45704:96::o;29483:221::-;29547:7;-1:-1:-1;;;;;29575:19:0;;29567:75;;;;-1:-1:-1;;;29567:75:0;;12111:2:1;29567:75:0;;;12093:21:1;12150:2;12130:18;;;12123:30;12189:34;12169:18;;;12162:62;-1:-1:-1;;;12240:18:1;;;12233:41;12291:19;;29567:75:0;11909:407:1;29567:75:0;-1:-1:-1;;;;;;29668:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29668:27:0;;29483:221::o;6730:103::-;6152:6;;-1:-1:-1;;;;;6152:6:0;4883:10;6299:23;6291:68;;;;-1:-1:-1;;;6291:68:0;;;;;;;:::i;:::-;6795:30:::1;6822:1;6795:18;:30::i;:::-;6730:103::o:0;45029:100::-;6152:6;;-1:-1:-1;;;;;6152:6:0;4883:10;6299:23;6291:68;;;;-1:-1:-1;;;6291:68:0;;;;;;;:::i;:::-;45101:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;44690:80::-:0;6152:6;;-1:-1:-1;;;;;6152:6:0;4883:10;6299:23;6291:68;;;;-1:-1:-1;;;6291:68:0;;;;;;;:::i;:::-;44748:5:::1;:14:::0;44690:80::o;31021:104::-;31077:13;31110:7;31103:14;;;;;:::i;42235:311::-;42300:11;42073:1;42059:11;:15;:52;;;;;42093:18;;42078:11;:33;;42059:52;42051:85;;;;-1:-1:-1;;;42051:85:0;;9827:2:1;42051:85:0;;;9809:21:1;9866:2;9846:18;;;9839:30;-1:-1:-1;;;9885:18:1;;;9878:50;9945:18;;42051:85:0;9625:344:1;42051:85:0;42181:9;;42166:11;42151:12;;:26;;;;:::i;:::-;:39;;42143:72;;;;-1:-1:-1;;;42143:72:0;;15236:2:1;42143:72:0;;;15218:21:1;15275:2;15255:18;;;15248:30;-1:-1:-1;;;15294:18:1;;;15287:50;15354:18;;42143:72:0;15034:344:1;42143:72:0;42333:6:::1;::::0;::::1;;42332:7;42324:43;;;::::0;-1:-1:-1;;;42324:43:0;;13291:2:1;42324:43:0::1;::::0;::::1;13273:21:1::0;13330:2;13310:18;;;13303:30;-1:-1:-1;;;13349:18:1;;;13342:53;13412:18;;42324:43:0::1;13089:347:1::0;42324:43:0::1;42383:15;::::0;;;::::1;;;42382:16;42374:42;;;::::0;-1:-1:-1;;;42374:42:0;;11769:2:1;42374:42:0::1;::::0;::::1;11751:21:1::0;11808:2;11788:18;;;11781:30;-1:-1:-1;;;11827:18:1;;;11820:43;11880:18;;42374:42:0::1;11567:337:1::0;42374:42:0::1;42452:11;42444:5;;:19;;;;:::i;:::-;42431:9;:32;;42423:64;;;::::0;-1:-1:-1;;;42423:64:0;;19172:2:1;42423:64:0::1;::::0;::::1;19154:21:1::0;19211:2;19191:18;;;19184:30;-1:-1:-1;;;19230:18:1;;;19223:49;19289:18;;42423:64:0::1;18970:343:1::0;42423:64:0::1;42506:34;42516:10;42528:11;42506:9;:34::i;32699:288::-:0;-1:-1:-1;;;;;32794:24:0;;4883:10;32794:24;;32786:63;;;;-1:-1:-1;;;32786:63:0;;14059:2:1;32786:63:0;;;14041:21:1;14098:2;14078:18;;;14071:30;14137:28;14117:18;;;14110:56;14183:18;;32786:63:0;13857:350:1;32786:63:0;4883:10;32862:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32862:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32862:53:0;;;;;;;;;;32931:48;;7782:41:1;;;32862:42:0;;4883:10;32931:48;;7755:18:1;32931:48:0;;;;;;;32699:288;;:::o;41473:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45564:132::-;6152:6;;-1:-1:-1;;;;;6152:6:0;4883:10;6299:23;6291:68;;;;-1:-1:-1;;;6291:68:0;;;;;;;:::i;:::-;45648:18:::1;:40:::0;45564:132::o;33770:355::-;33929:28;33939:4;33945:2;33949:7;33929:9;:28::i;:::-;33990:48;34013:4;34019:2;34023:7;34032:5;33990:22;:48::i;:::-;33968:149;;;;-1:-1:-1;;;33968:149:0;;;;;;;:::i;:::-;33770:355;;;;:::o;41786:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41786:37:0;;-1:-1:-1;41786:37:0;:::o;44000:494::-;44099:13;44140:17;44148:8;34437:4;34471:12;-1:-1:-1;34461:22:0;34380:111;44140:17;44124:98;;;;-1:-1:-1;;;44124:98:0;;13643:2:1;44124:98:0;;;13625:21:1;13682:2;13662:18;;;13655:30;13721:34;13701:18;;;13694:62;-1:-1:-1;;;13772:18:1;;;13765:45;13827:19;;44124:98:0;13441:411:1;44124:98:0;44235:8;;;;;;;44231:64;;44270:17;44263:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44000:494;;;:::o;44231:64::-;44303:28;44334:10;:8;:10::i;:::-;44303:41;;44389:1;44364:14;44358:28;:32;:130;;;;;;;;;;;;;;;;;44426:14;44442:19;:8;:17;:19::i;:::-;44463:9;44409:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44358:130;44351:137;44000:494;-1:-1:-1;;;44000:494:0:o;45806:115::-;6152:6;;-1:-1:-1;;;;;6152:6:0;4883:10;6299:23;6291:68;;;;-1:-1:-1;;;6291:68:0;;;;;;;:::i;:::-;45873:20:::1;:33:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;45873:33:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;45873:33:0::1;-1:-1:-1::0;;;;;45873:33:0;;;::::1;::::0;;;::::1;::::0;;45806:115::o;44500:81::-;6152:6;;-1:-1:-1;;;;;6152:6:0;4883:10;6299:23;6291:68;;;;-1:-1:-1;;;6291:68:0;;;;;;;:::i;:::-;44558:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;44558:17:0;;::::1;::::0;;;::::1;::::0;;44500:81::o;44915:108::-;6152:6;;-1:-1:-1;;;;;6152:6:0;4883:10;6299:23;6291:68;;;;-1:-1:-1;;;6291:68:0;;;;;;;:::i;:::-;44988:20:::1;:29:::0;44915:108::o;6988:201::-;6152:6;;-1:-1:-1;;;;;6152:6:0;4883:10;6299:23;6291:68;;;;-1:-1:-1;;;6291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7077:22:0;::::1;7069:73;;;::::0;-1:-1:-1;;;7069:73:0;;9009:2:1;7069:73:0::1;::::0;::::1;8991:21:1::0;9048:2;9028:18;;;9021:30;9087:34;9067:18;;;9060:62;-1:-1:-1;;;9138:18:1;;;9131:36;9184:19;;7069:73:0::1;8807:402:1::0;7069:73:0::1;7153:28;7172:8;7153:18;:28::i;:::-;6988:201:::0;:::o;46631:692::-;6152:6;;-1:-1:-1;;;;;6152:6:0;4883:10;6299:23;6291:68;;;;-1:-1:-1;;;6291:68:0;;;;;;;:::i;:::-;46759:2:::1;::::0;46701:21:::1;::::0;-1:-1:-1;;;;;46759:2:0::1;46751:40;46785:4;46768:14;46701:21:::0;46779:3:::1;46768:14;:::i;:::-;:21;;;;:::i;:::-;46751:40;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;46743:49;;;::::0;::::1;;46819:2;::::0;-1:-1:-1;;;;;46819:2:0::1;46811:40;46845:4;46828:14;:8:::0;46839:3:::1;46828:14;:::i;:::-;:21;;;;:::i;:::-;46811:40;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;46803:49;;;::::0;::::1;;46879:2;::::0;-1:-1:-1;;;;;46879:2:0::1;46871:40;46905:4;46888:14;:8:::0;46899:3:::1;46888:14;:::i;:::-;:21;;;;:::i;:::-;46871:40;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;46863:49;;;::::0;::::1;;46939:2;::::0;-1:-1:-1;;;;;46939:2:0::1;46931:40;46965:4;46948:14;:8:::0;46959:3:::1;46948:14;:::i;:::-;:21;;;;:::i;:::-;46931:40;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;46923:49;;;::::0;::::1;;46999:2;::::0;-1:-1:-1;;;;;46999:2:0::1;46991:40;47025:4;47008:14;:8:::0;47019:3:::1;47008:14;:::i;:::-;:21;;;;:::i;:::-;46991:40;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;46983:49;;;::::0;::::1;;47059:2;::::0;-1:-1:-1;;;;;47059:2:0::1;47051:39;47084:4;47068:13;:8:::0;47079:2:::1;47068:13;:::i;:::-;:20;;;;:::i;:::-;47051:39;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;47043:48;;;::::0;::::1;;47118:2;::::0;-1:-1:-1;;;;;47118:2:0::1;47110:39;47143:4;47127:13;:8:::0;47138:2:::1;47127:13;:::i;:::-;:20;;;;:::i;:::-;47110:39;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;47102:48;;;::::0;::::1;;47231:7;47252;6152:6:::0;;-1:-1:-1;;;;;6152:6:0;;6079:87;47252:7:::1;-1:-1:-1::0;;;;;47244:21:0::1;47273;47244:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47230:69;;;47314:2;47306:11;;;::::0;::::1;38506:196:::0;38621:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38621:29:0;-1:-1:-1;;;;;38621:29:0;;;;;;;;;38666:28;;38621:24;;38666:28;;;;;;;38506:196;;;:::o;34499:104::-;34568:27;34578:2;34582:8;34568:27;;;;;;;;;;;;:9;:27::i;36605:1783::-;36720:35;36758:20;36770:7;36758:11;:20::i;:::-;36833:18;;36720:58;;-1:-1:-1;36791:22:0;;-1:-1:-1;;;;;36817:34:0;4883:10;-1:-1:-1;;;;;36817:34:0;;:87;;;-1:-1:-1;4883:10:0;36868:20;36880:7;36868:11;:20::i;:::-;-1:-1:-1;;;;;36868:36:0;;36817:87;:154;;;-1:-1:-1;36938:18:0;;36921:50;;4883:10;33058:164;:::i;36921:50::-;36791:181;;36993:17;36985:80;;;;-1:-1:-1;;;36985:80:0;;14414:2:1;36985:80:0;;;14396:21:1;14453:2;14433:18;;;14426:30;14492:34;14472:18;;;14465:62;-1:-1:-1;;;14543:18:1;;;14536:48;14601:19;;36985:80:0;14212:414:1;36985:80:0;37108:4;-1:-1:-1;;;;;37086:26:0;:13;:18;;;-1:-1:-1;;;;;37086:26:0;;37078:77;;;;-1:-1:-1;;;37078:77:0;;12523:2:1;37078:77:0;;;12505:21:1;12562:2;12542:18;;;12535:30;12601:34;12581:18;;;12574:62;-1:-1:-1;;;12652:18:1;;;12645:36;12698:19;;37078:77:0;12321:402:1;37078:77:0;-1:-1:-1;;;;;37174:16:0;;37166:66;;;;-1:-1:-1;;;37166:66:0;;10937:2:1;37166:66:0;;;10919:21:1;10976:2;10956:18;;;10949:30;11015:34;10995:18;;;10988:62;-1:-1:-1;;;11066:18:1;;;11059:35;11111:19;;37166:66:0;10735:401:1;37166:66:0;37353:49;37370:1;37374:7;37383:13;:18;;;37353:8;:49::i;:::-;-1:-1:-1;;;;;37607:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37607:31:0;;;-1:-1:-1;;;;;37607:31:0;;;-1:-1:-1;;37607:31:0;;;;;;;37653:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37653:29:0;;;;;;;;;;;;;37729:43;;;;;;;;;;37755:15;37729:43;;;;;;;;;;37706:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;37706:66:0;;;;;;;-1:-1:-1;;;37706:66:0;;;;;;;;;;;;37607:18;38034:11;;37706:20;;38034:11;:::i;:::-;38101:1;38060:24;;;:11;:24;;;;;:29;38012:33;;-1:-1:-1;;;;;;38060:29:0;38056:227;;38124:20;38132:11;34437:4;34471:12;-1:-1:-1;34461:22:0;34380:111;38124:20;38120:152;;;38192:64;;;;;;;;38207:18;;-1:-1:-1;;;;;38192:64:0;;;;;;38227:28;;;;38192:64;;;;;;;;;;-1:-1:-1;38165:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;38165:91:0;-1:-1:-1;;;;;;38165:91:0;;;;;;;;;;;;38120:152;38319:7;38315:2;-1:-1:-1;;;;;38300:27:0;38309:4;-1:-1:-1;;;;;38300:27:0;;;;;;;;;;;38338:42;36709:1679;;;36605:1783;;;:::o;29949:650::-;-1:-1:-1;;;;;;;;;;;;;;;;;30052:16:0;30060:7;34437:4;34471:12;-1:-1:-1;34461:22:0;34380:111;30052:16;30044:71;;;;-1:-1:-1;;;30044:71:0;;9416:2:1;30044:71:0;;;9398:21:1;9455:2;9435:18;;;9428:30;9494:34;9474:18;;;9467:62;-1:-1:-1;;;9545:18:1;;;9538:40;9595:19;;30044:71:0;9214:406:1;30044:71:0;30128:26;30180:12;30169:7;:23;30165:103;;30230:22;30240:12;30230:7;:22;:::i;:::-;:26;;30255:1;30230:26;:::i;:::-;30209:47;;30165:103;30300:7;30280:242;30317:18;30309:4;:26;30280:242;;30360:31;30394:17;;;:11;:17;;;;;;;;;30360:51;;;;;;;;;-1:-1:-1;;;;;30360:51:0;;;;;-1:-1:-1;;;30360:51:0;;;;;;;;;;;;30430:28;30426:85;;30486:9;29949:650;-1:-1:-1;;;;29949:650:0:o;30426:85::-;-1:-1:-1;30337:6:0;;;;:::i;:::-;;;;30280:242;;;-1:-1:-1;30534:57:0;;-1:-1:-1;;;30534:57:0;;17584:2:1;30534:57:0;;;17566:21:1;17623:2;17603:18;;;17596:30;17662:34;17642:18;;;17635:62;-1:-1:-1;;;17713:18:1;;;17706:45;17768:19;;30534:57:0;17382:411:1;7349:191:0;7442:6;;;-1:-1:-1;;;;;7459:17:0;;;-1:-1:-1;;;;;;7459:17:0;;;;;;;7492:40;;7442:6;;;7459:17;7442:6;;7492:40;;7423:16;;7492:40;7412:128;7349:191;:::o;39267:804::-;39422:4;-1:-1:-1;;;;;39443:13:0;;8690:20;8738:8;39439:625;;39479:72;;-1:-1:-1;;;39479:72:0;;-1:-1:-1;;;;;39479:36:0;;;;;:72;;4883:10;;39530:4;;39536:7;;39545:5;;39479:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39479:72:0;;;;;;;;-1:-1:-1;;39479:72:0;;;;;;;;;;;;:::i;:::-;;;39475:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39725:13:0;;39721:273;;39768:61;;-1:-1:-1;;;39768:61:0;;;;;;;:::i;39721:273::-;39944:6;39938:13;39929:6;39925:2;39921:15;39914:38;39475:534;-1:-1:-1;;;;;;39602:55:0;-1:-1:-1;;;39602:55:0;;-1:-1:-1;39595:62:0;;39439:625;-1:-1:-1;40048:4:0;39439:625;39267:804;;;;;;:::o;45446:110::-;45506:13;45535:9;45528:16;;;;;:::i;2365:723::-;2421:13;2642:10;2638:53;;-1:-1:-1;;2669:10:0;;;;;;;;;;;;-1:-1:-1;;;2669:10:0;;;;;2365:723::o;2638:53::-;2716:5;2701:12;2757:78;2764:9;;2757:78;;2790:8;;;;:::i;:::-;;-1:-1:-1;2813:10:0;;-1:-1:-1;2821:2:0;2813:10;;:::i;:::-;;;2757:78;;;2845:19;2877:6;2867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2867:17:0;;2845:39;;2895:154;2902:10;;2895:154;;2929:11;2939:1;2929:11;;:::i;:::-;;-1:-1:-1;2998:10:0;3006:2;2998:5;:10;:::i;:::-;2985:24;;:2;:24;:::i;:::-;2972:39;;2955:6;2962;2955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2955:56:0;;;;;;;;-1:-1:-1;3026:11:0;3035:2;3026:11;;:::i;:::-;;;2895:154;;34880:1471;35003:20;35026:12;-1:-1:-1;;;;;35057:16:0;;35049:62;;;;-1:-1:-1;;;35049:62:0;;16767:2:1;35049:62:0;;;16749:21:1;16806:2;16786:18;;;16779:30;16845:34;16825:18;;;16818:62;-1:-1:-1;;;16896:18:1;;;16889:31;16937:19;;35049:62:0;16565:397:1;35049:62:0;35256:21;35264:12;34437:4;34471:12;-1:-1:-1;34461:22:0;34380:111;35256:21;35255:22;35247:64;;;;-1:-1:-1;;;35247:64:0;;16409:2:1;35247:64:0;;;16391:21:1;16448:2;16428:18;;;16421:30;16487:31;16467:18;;;16460:59;16536:18;;35247:64:0;16207:353:1;35247:64:0;35342:12;35330:8;:24;;35322:71;;;;-1:-1:-1;;;35322:71:0;;18769:2:1;35322:71:0;;;18751:21:1;18808:2;18788:18;;;18781:30;18847:34;18827:18;;;18820:62;-1:-1:-1;;;18898:18:1;;;18891:32;18940:19;;35322:71:0;18567:398:1;35322:71:0;35423:1;35412:8;:12;35404:60;;;;-1:-1:-1;;;35404:60:0;;15585:2:1;35404:60:0;;;15567:21:1;15624:2;15604:18;;;15597:30;15663:34;15643:18;;;15636:62;-1:-1:-1;;;15714:18:1;;;15707:33;15757:19;;35404:60:0;15383:399:1;35404:60:0;-1:-1:-1;;;;;35584:16:0;;35551:30;35584:16;;;:12;:16;;;;;;;;;35551:49;;;;;;;;;-1:-1:-1;;;;;35551:49:0;;;;;-1:-1:-1;;;35551:49:0;;;;;;;;;;;35630:135;;;;;;;;35656:19;;35551:49;;35630:135;;;35656:39;;35686:8;;35656:39;:::i;:::-;-1:-1:-1;;;;;35630:135:0;;;;;35745:8;35710:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;35630:135:0;;;;;;-1:-1:-1;;;;;35611:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;35611:154:0;;;;;;;;;;;;35804:43;;;;;;;;;;;35830:15;35804:43;;;;;;;;35776:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;35776:71:0;-1:-1:-1;;;;;;35776:71:0;;;;;;;;;;;;;;;;;;35788:12;;35908:325;35932:8;35928:1;:12;35908:325;;;35967:38;;35992:12;;-1:-1:-1;;;;;35967:38:0;;;35984:1;;35967:38;;35984:1;;35967:38;36046:59;36077:1;36081:2;36085:12;36099:5;36046:22;:59::i;:::-;36020:172;;;;-1:-1:-1;;;36020:172:0;;;;;;;:::i;:::-;36207:14;;;;:::i;:::-;;;;35942:3;;;;;:::i;:::-;;;;35908:325;;;-1:-1:-1;36245:12:0;:27;;;36283:60;33770:355;-1:-1:-1;;;;;;;:::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:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:1;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:1;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:1;;5736:328;19573:1;19566:14;;;19610:4;19597:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:1;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:1:o;6512:488::-;-1:-1:-1;;;;;6781:15:1;;;6763:34;;6833:15;;6828:2;6813:18;;6806:43;6880:2;6865:18;;6858:34;;;6928:3;6923:2;6908:18;;6901:31;;;6706:4;;6949:45;;6974:19;;6966:6;6949:45;:::i;:::-;6941:53;6512:488;-1:-1:-1;;;;;;6512:488:1:o;7005:632::-;7176:2;7228:21;;;7298:13;;7201:18;;;7320:22;;;7147:4;;7176:2;7399:15;;;;7373:2;7358:18;;;7147:4;7442:169;7456:6;7453:1;7450:13;7442:169;;;7517:13;;7505:26;;7586:15;;;;7551:12;;;;7478:1;7471:9;7442:169;;;-1:-1:-1;7628:3:1;;7005:632;-1:-1:-1;;;;;;7005:632:1:o;7834:219::-;7983:2;7972:9;7965:21;7946:4;8003:44;8043:2;8032:9;8028:18;8020:6;8003:44;:::i;12728:356::-;12930:2;12912:21;;;12949:18;;;12942:30;13008:34;13003:2;12988:18;;12981:62;13075:2;13060:18;;12728:356::o;15787:415::-;15989:2;15971:21;;;16028:2;16008:18;;;16001:30;16067:34;16062:2;16047:18;;16040:62;-1:-1:-1;;;16133:2:1;16118:18;;16111:49;16192:3;16177:19;;15787:415::o;19626:253::-;19666:3;-1:-1:-1;;;;;19755:2:1;19752:1;19748:10;19785:2;19782:1;19778:10;19816:3;19812:2;19808:12;19803:3;19800:21;19797:47;;;19824:18;;:::i;:::-;19860:13;;19626:253;-1:-1:-1;;;;19626:253:1:o;19884:128::-;19924:3;19955:1;19951:6;19948:1;19945:13;19942:39;;;19961:18;;:::i;:::-;-1:-1:-1;19997:9:1;;19884:128::o;20017:120::-;20057:1;20083;20073:35;;20088:18;;:::i;:::-;-1:-1:-1;20122:9:1;;20017:120::o;20142:168::-;20182:7;20248:1;20244;20240:6;20236:14;20233:1;20230:21;20225:1;20218:9;20211:17;20207:45;20204:71;;;20255:18;;:::i;:::-;-1:-1:-1;20295:9:1;;20142:168::o;20315:125::-;20355:4;20383:1;20380;20377:8;20374:34;;;20388:18;;:::i;:::-;-1:-1:-1;20425:9:1;;20315:125::o;20445:258::-;20517:1;20527:113;20541:6;20538:1;20535:13;20527:113;;;20617:11;;;20611:18;20598:11;;;20591:39;20563:2;20556:10;20527:113;;;20658:6;20655:1;20652:13;20649:48;;;-1:-1:-1;;20693:1:1;20675:16;;20668:27;20445:258::o;20708:136::-;20747:3;20775:5;20765:39;;20784:18;;:::i;:::-;-1:-1:-1;;;20820:18:1;;20708:136::o;20849:380::-;20928:1;20924:12;;;;20971;;;20992:61;;21046:4;21038:6;21034:17;21024:27;;20992:61;21099:2;21091:6;21088:14;21068:18;21065:38;21062:161;;;21145:10;21140:3;21136:20;21133:1;21126:31;21180:4;21177:1;21170:15;21208:4;21205:1;21198:15;21062:161;;20849:380;;;:::o;21234:135::-;21273:3;-1:-1:-1;;21294:17:1;;21291:43;;;21314:18;;:::i;:::-;-1:-1:-1;21361:1:1;21350:13;;21234:135::o;21374:112::-;21406:1;21432;21422:35;;21437:18;;:::i;:::-;-1:-1:-1;21471:9:1;;21374:112::o;21491:127::-;21552:10;21547:3;21543:20;21540:1;21533:31;21583:4;21580:1;21573:15;21607:4;21604:1;21597:15;21623:127;21684:10;21679:3;21675:20;21672:1;21665:31;21715:4;21712:1;21705:15;21739:4;21736:1;21729:15;21755:127;21816:10;21811:3;21807:20;21804:1;21797:31;21847:4;21844:1;21837:15;21871:4;21868:1;21861:15;21887:127;21948:10;21943:3;21939:20;21936:1;21929:31;21979:4;21976:1;21969:15;22003:4;22000:1;21993:15;22019:131;-1:-1:-1;;;;;;22093:32:1;;22083:43;;22073:71;;22140:1;22137;22130:12

Swarm Source

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