ETH Price: $3,169.36 (-0.63%)

Token

Pionauts (PFP)
 

Overview

Max Total Supply

70 PFP

Holders

45

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PFP
0xff13cbc9f9b94f3c47c1008a52585287985c3d8f
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:
Pionaut

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-26
*/

/**
 *Submitted for verification at Etherscan.io on 2022-01-18
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return _tokenURI;
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

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

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

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


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

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/Pionauts.sol

//SPDX-License-Identifier:UNLICENSED
pragma solidity ^0.8.0;






contract Pionaut is ERC721, ERC721Enumerable, ERC721URIStorage, Pausable, Ownable, ERC721Burnable {    
    uint256 public MaxSupply = 1430;
    uint256 public publicSaleLimit = 1430;    
    uint256 public publicSaleMinted = 0;    
    uint256 public price = 0.19 ether;
    bool public saleOpen = false;        
    bool public whiteListOpen = false;    
    bool public airdropOpen = false;    

    uint public totalFeeUnitPercent = 1000;
    uint public mintSplitFeePercent = 1000;    
    uint public royaltyMinterFeePercent = 10;   

    address public mintSplitFeeWallet = 0xA42215f5f405a4c2b079D3dcc668A52Eb4293636;

    string public baseURI;
    uint256 public publicSaleLimitPerAddress = 3;
    mapping(address => uint256) public MintAmountPerPublicAddress;    
    mapping(address => uint256) public whitelist;
    mapping(address => uint256) public whitelistMinted;
    mapping(address => uint256) public airdroplist;
    mapping(address => uint256) public airdropMinted;
    uint256 public airdropMintTotalLimt = 0;
    uint256 public airdropTotalMinted = 0;
    uint256 public whitelistMintTotalLimit = 1430;
    uint256 public whitelistTotalMinted = 0;

    mapping(uint256 => address) public nftMinters;

    receive() external payable {}

    constructor() ERC721('Pionauts', 'PFP') {}

    function setPublicSaleLimitPerAddress(uint256 _amount) public onlyOwner {
        publicSaleLimitPerAddress = _amount;
    }

    function setWhiteListAddress(address[] memory who, uint256 amount) public onlyOwner {
        for (uint256 i = 0; i < who.length; i++) whitelist[who[i]] = amount;
    }

    function setWhiteListMintTotalLimit(uint256 _amount) public onlyOwner {
        whitelistMintTotalLimit = _amount;
    }

    function setAirdropAddress(address[] memory who, uint256 amount) public onlyOwner {
        for (uint256 i = 0; i < who.length; i++) airdroplist[who[i]] = amount;
    }

    function setAirdropMintTotalLimit(uint256 _amount) public onlyOwner {
        airdropMintTotalLimt = _amount;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(mintSplitFeeWallet).transfer((balance * mintSplitFeePercent) / totalFeeUnitPercent);        
    }

    function setFee(uint256 _mintSplitFeePercent, uint256 _royaltyMinterFeePercent, uint256 _totalFeeUnitPercent) public onlyOwner{
        mintSplitFeePercent = _mintSplitFeePercent;         
        royaltyMinterFeePercent = _royaltyMinterFeePercent;
        totalFeeUnitPercent = _totalFeeUnitPercent;
    }

    function setWallets(address _mintSplitFeeWallet) public onlyOwner{
        mintSplitFeeWallet = _mintSplitFeeWallet;        
    }

    function getMinter(uint256 _tokenId) external view returns (address) {
        return nftMinters[_tokenId];
    }

    function getRoyaltyFee() external view returns (uint256) {
        return royaltyMinterFeePercent;
    }

    function getRoyaltyTotalFee() external view returns (uint256) {
        return totalFeeUnitPercent;
    }

    function hasRoyaltyFee() external pure returns (bool) {
        return true;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function toggleAirdrop() public onlyOwner {
        airdropOpen = !airdropOpen;
    }

    function toggleSale() public onlyOwner {
        saleOpen = !saleOpen;
    }

    function toggleWhiteListOpen() public onlyOwner {
        whiteListOpen = !whiteListOpen;
    }

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }
        
    function setMaxSupply(uint256 newAmount) public onlyOwner {
        MaxSupply = newAmount;
    }

    function setPublicSaleLimit(uint256 newAmount) public onlyOwner {
        publicSaleLimit = newAmount;
    }
    
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function internalMint(address to, uint256 tokenId) internal {
        _safeMint(to, tokenId);        
    }

    function randomPickId() internal view returns (uint256) {      
        require(totalSupply() < MaxSupply, "Max Supply Limited!");
        uint256 randomId = 0;
        uint loopCount = 0;
        do {
            uint256 temp = (uint256(keccak256(abi.encodePacked(block.difficulty, block.timestamp, loopCount))) % MaxSupply) + 1;
            loopCount ++;
            if (_exists(temp) != true) {
                randomId = temp;
                break;
            } 
        } while (randomId == 0);
        return randomId;
    }

    function safeMint(address to, uint256 tokenId, string memory _tokenURI) public onlyOwner {        
        internalMint(to, tokenId);
        nftMinters[tokenId] = msg.sender;
        if (bytes(_tokenURI).length > 0) {
            _setTokenURI(tokenId, _tokenURI);
        }
    }

    function airdrop(uint256 amount) public whenNotPaused {                
        require(airdropOpen == true, "Airdrop is not opened");
        require(airdropTotalMinted + amount <= airdropMintTotalLimt, "Airdrop Mint Amount is limited");
        uint256 who = airdroplist[msg.sender];
        require(who > 0, 'this address is not airdrop for the presale');                
        require(airdropMinted[msg.sender] + amount <= who, "Your address airdrop amount limited");        
        for (uint256 i = 0; i < amount; i++) {
            uint256 tokenId = randomPickId();
            internalMint(msg.sender, tokenId);
            nftMinters[tokenId] = msg.sender;
        }
        airdropMinted[msg.sender] = airdropMinted[msg.sender] + amount;      
        airdropTotalMinted = airdropTotalMinted + amount;   
    }

    function mintForWhiteList(uint256 amount) public payable {                
        require(msg.value >= price * amount, 'not enough was paid');
        require(whiteListOpen == true, "WhiteList is not opened");
        require(whitelistTotalMinted + amount <= whitelistMintTotalLimit,  "WhiteList Total Amount is limited");
        uint256 who = whitelist[msg.sender];
        require(who > 0, 'this address is not in whitelist');
        require(whitelistMinted[msg.sender] + amount <= who, "your address whitelist amount limited");        
        for (uint256 i = 0; i < amount; i++) {
            uint256 tokenId = randomPickId();
            internalMint(msg.sender, tokenId);
            nftMinters[tokenId] = msg.sender;
        }
        whitelistMinted[msg.sender] = whitelistMinted[msg.sender] + amount;         
        whitelistTotalMinted = whitelistTotalMinted + amount;
    }

    function mint(uint256 amount) public payable {
        require(saleOpen == true, "Sale is not opened");
        require(msg.value >= price * amount, 'not enough was paid');
        require(MintAmountPerPublicAddress[msg.sender] + amount <= publicSaleLimitPerAddress, 'only limited amount per address allowed');        
        require(publicSaleMinted + amount <= publicSaleLimit, 'max public sale amount is limited.');        
        for (uint256 i = 0; i < amount; i++) {
            uint256 tokenId = randomPickId();
            internalMint(msg.sender, tokenId);
            nftMinters[tokenId] = msg.sender;
        }
        MintAmountPerPublicAddress[msg.sender] = MintAmountPerPublicAddress[msg.sender] + amount;        
        publicSaleMinted = publicSaleMinted + amount;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) whenNotPaused {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // The following functions are overrides required by Solidity.

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
        return super.tokenURI(tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MintAmountPerPublicAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdropMintTotalLimt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"airdropMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdropTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"airdroplist","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRoyaltyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRoyaltyTotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasRoyaltyFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","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":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintForWhiteList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintSplitFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintSplitFeeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nftMinters","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","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":"publicSaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleLimitPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyMinterFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"who","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setAirdropAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setAirdropMintTotalLimit","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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintSplitFeePercent","type":"uint256"},{"internalType":"uint256","name":"_royaltyMinterFeePercent","type":"uint256"},{"internalType":"uint256","name":"_totalFeeUnitPercent","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setPublicSaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPublicSaleLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mintSplitFeeWallet","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"who","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setWhiteListAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setWhiteListMintTotalLimit","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":[],"name":"toggleAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhiteListOpen","outputs":[],"stateMutability":"nonpayable","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":"totalFeeUnitPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintTotalLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052610596600c819055600d8190556000600e8190556702a303fe4b530000600f556010805462ffffff191690556103e86011819055601255600a601355601480546001600160a01b03191673a42215f5f405a4c2b079d3dcc668a52eb42936361790556003601655601c819055601d819055601e91909155601f553480156200008b57600080fd5b50604080518082018252600881526750696f6e6175747360c01b60208083019182528351808501909452600384526205046560ec1b908401528151919291620000d79160009162000165565b508051620000ed90600190602084019062000165565b5050600b805460ff191690555062000105336200010b565b62000248565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000173906200020b565b90600052602060002090601f016020900481019282620001975760008555620001e2565b82601f10620001b257805160ff1916838001178555620001e2565b82800160010185558215620001e2579182015b82811115620001e2578251825591602001919060010190620001c5565b50620001f0929150620001f4565b5090565b5b80821115620001f05760008155600101620001f5565b600181811c908216806200022057607f821691505b602082108114156200024257634e487b7160e01b600052602260045260246000fd5b50919050565b61385080620002586000396000f3fe6080604052600436106103fe5760003560e01c806370a0823111610213578063a0712d6811610123578063c87b56dd116100ab578063e82435e01161007a578063e82435e014610b7b578063e985e9c514610bb0578063eb50e70e14610bf9578063efa899e714610c19578063f2fde38b14610c2f57600080fd5b8063c87b56dd14610afb578063c9ea16f814610b1b578063cd279c7c14610b3b578063d08d1e4e14610b5b57600080fd5b8063a666098d116100f2578063a666098d14610a84578063ad7963a014610a9a578063b36c128414610aaf578063b408d3bd14610ac5578063b88d4fde14610adb57600080fd5b8063a0712d6814610a1b578063a09c7af614610a2e578063a22cb46514610a4e578063a3122c9914610a6e57600080fd5b80638aeacefe116101a657806397dc4a131161017557806397dc4a131461097157806398a8cffe1461099157806399288dbb146109be5780639b19251a146109d8578063a035b1fe14610a0557600080fd5b80638aeacefe146109065780638da5cb5b1461091957806391b7f5ed1461093c57806395d89b411461095c57600080fd5b8063813bfa6d116101e2578063813bfa6d1461089d578063820bdcdc146108bc57806383c2beca146108d15780638456cb59146108f157600080fd5b806370a0823114610826578063715018a6146108465780637d8966e41461085b578063808c721c1461087057600080fd5b806343ce42451161030e5780635b65b9ab116102a15780636352211e116102705780636352211e146107a65780636494e9be146107c65780636c0360eb146107db5780636e3de87c146107f05780636f8b44b01461080657600080fd5b80635b65b9ab146107255780635b7121f8146107455780635bf0c9ef1461077a5780635c975abb1461078e57600080fd5b806351a5def3116102dd57806351a5def3146106af5780635443611a146106cf57806355f804b3146106e557806359862f3b1461070557600080fd5b806343ce4245146106445780634f331a021461065a5780634f6ccce71461066f578063504158e21461068f57600080fd5b806323b872dd116103915780633c196f1d116103605780633c196f1d146105c45780633ccfd60b146105da5780633f4ba83a146105ef57806342842e0e1461060457806342966c681461062457600080fd5b806323b872dd1461054e5780632f745c591461056e578063346a4b6b1461058e57806339d82c59146105a457600080fd5b8063095ea7b3116103cd578063095ea7b3146104d457806318160ddd146104f65780631e241ce81461050b57806321a104221461052157600080fd5b806301ffc9a71461040a578063020daf361461043f57806306fdde031461047a578063081812fc1461049c57600080fd5b3661040557005b600080fd5b34801561041657600080fd5b5061042a610425366004613444565b610c4f565b60405190151581526020015b60405180910390f35b34801561044b57600080fd5b5061046c61045a3660046131d7565b60176020526000908152604090205481565b604051908152602001610436565b34801561048657600080fd5b5061048f610c60565b604051610436919061358a565b3480156104a857600080fd5b506104bc6104b73660046134af565b610cf2565b6040516001600160a01b039091168152602001610436565b3480156104e057600080fd5b506104f46104ef366004613311565b610d7f565b005b34801561050257600080fd5b5060085461046c565b34801561051757600080fd5b5061046c60115481565b34801561052d57600080fd5b5061046c61053c3660046131d7565b601b6020526000908152604090205481565b34801561055a57600080fd5b506104f4610569366004613223565b610e95565b34801561057a57600080fd5b5061046c610589366004613311565b610ec7565b34801561059a57600080fd5b5061046c60165481565b3480156105b057600080fd5b506104f46105bf3660046134af565b610f5d565b3480156105d057600080fd5b5061046c601e5481565b3480156105e657600080fd5b506104f4610f92565b3480156105fb57600080fd5b506104f461101b565b34801561061057600080fd5b506104f461061f366004613223565b611055565b34801561063057600080fd5b506104f461063f3660046134af565b611070565b34801561065057600080fd5b5061046c601f5481565b34801561066657600080fd5b5060115461046c565b34801561067b57600080fd5b5061046c61068a3660046134af565b6110ea565b34801561069b57600080fd5b506104f46106aa3660046134af565b61118b565b3480156106bb57600080fd5b506104f46106ca36600461338f565b6111c0565b3480156106db57600080fd5b5061046c60135481565b3480156106f157600080fd5b506104f461070036600461347c565b611260565b34801561071157600080fd5b5060105461042a9062010000900460ff1681565b34801561073157600080fd5b506104f46107403660046134c7565b6112a3565b34801561075157600080fd5b506104bc6107603660046134af565b60009081526020805260409020546001600160a01b031690565b34801561078657600080fd5b50600161042a565b34801561079a57600080fd5b50600b5460ff1661042a565b3480156107b257600080fd5b506104bc6107c13660046134af565b6112e1565b3480156107d257600080fd5b506104f4611358565b3480156107e757600080fd5b5061048f6113a5565b3480156107fc57600080fd5b5061046c600d5481565b34801561081257600080fd5b506104f46108213660046134af565b611433565b34801561083257600080fd5b5061046c6108413660046131d7565b611468565b34801561085257600080fd5b506104f46114ef565b34801561086757600080fd5b506104f4611529565b34801561087c57600080fd5b5061046c61088b3660046131d7565b601a6020526000908152604090205481565b3480156108a957600080fd5b5060105461042a90610100900460ff1681565b3480156108c857600080fd5b5060135461046c565b3480156108dd57600080fd5b506014546104bc906001600160a01b031681565b3480156108fd57600080fd5b506104f461156d565b6104f46109143660046134af565b6115a5565b34801561092557600080fd5b50600b5461010090046001600160a01b03166104bc565b34801561094857600080fd5b506104f46109573660046134af565b611825565b34801561096857600080fd5b5061048f61185a565b34801561097d57600080fd5b506104f461098c3660046134af565b611869565b34801561099d57600080fd5b5061046c6109ac3660046131d7565b60196020526000908152604090205481565b3480156109ca57600080fd5b5060105461042a9060ff1681565b3480156109e457600080fd5b5061046c6109f33660046131d7565b60186020526000908152604090205481565b348015610a1157600080fd5b5061046c600f5481565b6104f4610a293660046134af565b611ab9565b348015610a3a57600080fd5b506104f4610a493660046134af565b611cce565b348015610a5a57600080fd5b506104f4610a693660046132d7565b611d03565b348015610a7a57600080fd5b5061046c601c5481565b348015610a9057600080fd5b5061046c600e5481565b348015610aa657600080fd5b506104f4611d0e565b348015610abb57600080fd5b5061046c600c5481565b348015610ad157600080fd5b5061046c60125481565b348015610ae757600080fd5b506104f4610af636600461325e565b611d5d565b348015610b0757600080fd5b5061048f610b163660046134af565b611d95565b348015610b2757600080fd5b506104f4610b3636600461338f565b611da0565b348015610b4757600080fd5b506104f4610b5636600461333a565b611e40565b348015610b6757600080fd5b506104f4610b763660046134af565b611ea8565b348015610b8757600080fd5b506104bc610b963660046134af565b60208052600090815260409020546001600160a01b031681565b348015610bbc57600080fd5b5061042a610bcb3660046131f1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610c0557600080fd5b506104f4610c143660046131d7565b611edd565b348015610c2557600080fd5b5061046c601d5481565b348015610c3b57600080fd5b506104f4610c4a3660046131d7565b611f2f565b6000610c5a82611fcd565b92915050565b606060008054610c6f9061375e565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9b9061375e565b8015610ce85780601f10610cbd57610100808354040283529160200191610ce8565b820191906000526020600020905b815481529060010190602001808311610ccb57829003601f168201915b5050505050905090565b6000610cfd82611ff2565b610d635760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610d8a826112e1565b9050806001600160a01b0316836001600160a01b03161415610df85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610d5a565b336001600160a01b0382161480610e145750610e148133610bcb565b610e865760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610d5a565b610e90838361200f565b505050565b610ea0335b8261207d565b610ebc5760405162461bcd60e51b8152600401610d5a9061364e565b610e90838383612167565b6000610ed283611468565b8210610f345760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610d5a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610f8d5760405162461bcd60e51b8152600401610d5a90613619565b600d55565b600b546001600160a01b03610100909104163314610fc25760405162461bcd60e51b8152600401610d5a90613619565b60145460115460125447926001600160a01b0316916108fc91610fe590856136fc565b610fef91906136e8565b6040518115909202916000818181858888f19350505050158015611017573d6000803e3d6000fd5b5050565b600b546001600160a01b0361010090910416331461104b5760405162461bcd60e51b8152600401610d5a90613619565b611053612312565b565b610e9083838360405180602001604052806000815250611d5d565b61107933610e9a565b6110de5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610d5a565b6110e7816123a5565b50565b60006110f560085490565b82106111585760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610d5a565b6008828154811061117957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600b546001600160a01b036101009091041633146111bb5760405162461bcd60e51b8152600401610d5a90613619565b601c55565b600b546001600160a01b036101009091041633146111f05760405162461bcd60e51b8152600401610d5a90613619565b60005b8251811015610e905781601a600085848151811061122157634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061125890613793565b9150506111f3565b600b546001600160a01b036101009091041633146112905760405162461bcd60e51b8152600401610d5a90613619565b8051611017906015906020840190613075565b600b546001600160a01b036101009091041633146112d35760405162461bcd60e51b8152600401610d5a90613619565b601292909255601355601155565b6000818152600260205260408120546001600160a01b031680610c5a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610d5a565b600b546001600160a01b036101009091041633146113885760405162461bcd60e51b8152600401610d5a90613619565b6010805461ff001981166101009182900460ff1615909102179055565b601580546113b29061375e565b80601f01602080910402602001604051908101604052809291908181526020018280546113de9061375e565b801561142b5780601f106114005761010080835404028352916020019161142b565b820191906000526020600020905b81548152906001019060200180831161140e57829003601f168201915b505050505081565b600b546001600160a01b036101009091041633146114635760405162461bcd60e51b8152600401610d5a90613619565b600c55565b60006001600160a01b0382166114d35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610d5a565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b0361010090910416331461151f5760405162461bcd60e51b8152600401610d5a90613619565b61105360006123ae565b600b546001600160a01b036101009091041633146115595760405162461bcd60e51b8152600401610d5a90613619565b6010805460ff19811660ff90911615179055565b600b546001600160a01b0361010090910416331461159d5760405162461bcd60e51b8152600401610d5a90613619565b611053612408565b80600f546115b391906136fc565b3410156115f85760405162461bcd60e51b81526020600482015260136024820152721b9bdd08195b9bdd59da081dd85cc81c185a59606a1b6044820152606401610d5a565b60105460ff6101009091041615156001146116555760405162461bcd60e51b815260206004820152601760248201527f57686974654c697374206973206e6f74206f70656e65640000000000000000006044820152606401610d5a565b601e5481601f5461166691906136d0565b11156116be5760405162461bcd60e51b815260206004820152602160248201527f57686974654c69737420546f74616c20416d6f756e74206973206c696d6974656044820152601960fa1b6064820152608401610d5a565b336000908152601860205260409020548061171b5760405162461bcd60e51b815260206004820181905260248201527f746869732061646472657373206973206e6f7420696e2077686974656c6973746044820152606401610d5a565b3360009081526019602052604090205481906117389084906136d0565b11156117945760405162461bcd60e51b815260206004820152602560248201527f796f757220616464726573732077686974656c69737420616d6f756e74206c696044820152641b5a5d195960da1b6064820152608401610d5a565b60005b828110156117e45760006117a9612460565b90506117b5338261253c565b6000908152602080526040902080546001600160a01b03191633179055806117dc81613793565b915050611797565b50336000908152601960205260409020546118009083906136d0565b33600090815260196020526040902055601f5461181e9083906136d0565b601f555050565b600b546001600160a01b036101009091041633146118555760405162461bcd60e51b8152600401610d5a90613619565b600f55565b606060018054610c6f9061375e565b600b5460ff161561188c5760405162461bcd60e51b8152600401610d5a906135ef565b60105462010000900460ff1615156001146118e15760405162461bcd60e51b8152602060048201526015602482015274105a5c991c9bdc081a5cc81b9bdd081bdc195b9959605a1b6044820152606401610d5a565b601c5481601d546118f291906136d0565b11156119405760405162461bcd60e51b815260206004820152601e60248201527f41697264726f70204d696e7420416d6f756e74206973206c696d6974656400006044820152606401610d5a565b336000908152601a6020526040902054806119b15760405162461bcd60e51b815260206004820152602b60248201527f746869732061646472657373206973206e6f742061697264726f7020666f722060448201526a7468652070726573616c6560a81b6064820152608401610d5a565b336000908152601b602052604090205481906119ce9084906136d0565b1115611a285760405162461bcd60e51b815260206004820152602360248201527f596f757220616464726573732061697264726f7020616d6f756e74206c696d696044820152621d195960ea1b6064820152608401610d5a565b60005b82811015611a78576000611a3d612460565b9050611a49338261253c565b6000908152602080526040902080546001600160a01b0319163317905580611a7081613793565b915050611a2b565b50336000908152601b6020526040902054611a949083906136d0565b336000908152601b6020526040902055601d54611ab29083906136d0565b601d555050565b60105460ff161515600114611b055760405162461bcd60e51b815260206004820152601260248201527114d85b19481a5cc81b9bdd081bdc195b995960721b6044820152606401610d5a565b80600f54611b1391906136fc565b341015611b585760405162461bcd60e51b81526020600482015260136024820152721b9bdd08195b9bdd59da081dd85cc81c185a59606a1b6044820152606401610d5a565b60165433600090815260176020526040902054611b769083906136d0565b1115611bd45760405162461bcd60e51b815260206004820152602760248201527f6f6e6c79206c696d6974656420616d6f756e7420706572206164647265737320604482015266185b1b1bddd95960ca1b6064820152608401610d5a565b600d5481600e54611be591906136d0565b1115611c3e5760405162461bcd60e51b815260206004820152602260248201527f6d6178207075626c69632073616c6520616d6f756e74206973206c696d697465604482015261321760f11b6064820152608401610d5a565b60005b81811015611c8e576000611c53612460565b9050611c5f338261253c565b6000908152602080526040902080546001600160a01b0319163317905580611c8681613793565b915050611c41565b5033600090815260176020526040902054611caa9082906136d0565b33600090815260176020526040902055600e54611cc89082906136d0565b600e5550565b600b546001600160a01b03610100909104163314611cfe5760405162461bcd60e51b8152600401610d5a90613619565b601655565b611017338383612546565b600b546001600160a01b03610100909104163314611d3e5760405162461bcd60e51b8152600401610d5a90613619565b6010805462ff0000198116620100009182900460ff1615909102179055565b611d67338361207d565b611d835760405162461bcd60e51b8152600401610d5a9061364e565b611d8f84848484612615565b50505050565b6060610c5a82612648565b600b546001600160a01b03610100909104163314611dd05760405162461bcd60e51b8152600401610d5a90613619565b60005b8251811015610e90578160186000858481518110611e0157634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611e3890613793565b915050611dd3565b600b546001600160a01b03610100909104163314611e705760405162461bcd60e51b8152600401610d5a90613619565b611e7a838361253c565b6000828152602080526040902080546001600160a01b03191633179055805115610e9057610e908282612786565b600b546001600160a01b03610100909104163314611ed85760405162461bcd60e51b8152600401610d5a90613619565b601e55565b600b546001600160a01b03610100909104163314611f0d5760405162461bcd60e51b8152600401610d5a90613619565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b03610100909104163314611f5f5760405162461bcd60e51b8152600401610d5a90613619565b6001600160a01b038116611fc45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d5a565b6110e7816123ae565b60006001600160e01b0319821663780e9d6360e01b1480610c5a5750610c5a82612811565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612044826112e1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061208882611ff2565b6120e95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610d5a565b60006120f4836112e1565b9050806001600160a01b0316846001600160a01b0316148061212f5750836001600160a01b031661212484610cf2565b6001600160a01b0316145b8061215f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661217a826112e1565b6001600160a01b0316146121e25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610d5a565b6001600160a01b0382166122445760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610d5a565b61224f838383612861565b61225a60008261200f565b6001600160a01b038316600090815260036020526040812080546001929061228390849061371b565b90915550506001600160a01b03821660009081526003602052604081208054600192906122b19084906136d0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5460ff1661235b5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610d5a565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6110e78161288f565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b5460ff161561242b5760405162461bcd60e51b8152600401610d5a906135ef565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123883390565b6000600c5461246e60085490565b106124b15760405162461bcd60e51b81526020600482015260136024820152724d617820537570706c79204c696d697465642160681b6044820152606401610d5a565b6000805b600c5460408051446020820152429181019190915260608101839052600091906080016040516020818303038152906040528051906020012060001c6124fb91906137ae565b6125069060016136d0565b90508161251281613793565b92505061251e81611ff2565b151560011461252e579150612536565b5081156124b5575b50919050565b61101782826128cf565b816001600160a01b0316836001600160a01b031614156125a85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d5a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612620848484612167565b61262c848484846128e9565b611d8f5760405162461bcd60e51b8152600401610d5a9061359d565b606061265382611ff2565b6126b95760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610d5a565b6000828152600a6020526040812080546126d29061375e565b80601f01602080910402602001604051908101604052809291908181526020018280546126fe9061375e565b801561274b5780601f106127205761010080835404028352916020019161274b565b820191906000526020600020905b81548152906001019060200180831161272e57829003601f168201915b50505050509050600061275c6129f6565b905080516000141561276f575092915050565b81511561277d575092915050565b61215f84612a05565b61278f82611ff2565b6127f25760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610d5a565b6000828152600a602090815260409091208251610e9092840190613075565b60006001600160e01b031982166380ac58cd60e01b148061284257506001600160e01b03198216635b5e139f60e01b145b80610c5a57506301ffc9a760e01b6001600160e01b0319831614610c5a565b600b5460ff16156128845760405162461bcd60e51b8152600401610d5a906135ef565b610e90838383612ad0565b61289881612b88565b6000818152600a6020526040902080546128b19061375e565b1590506110e7576000818152600a602052604081206110e7916130f9565b611017828260405180602001604052806000815250612c2f565b60006001600160a01b0384163b156129eb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061292d90339089908890889060040161354d565b602060405180830381600087803b15801561294757600080fd5b505af1925050508015612977575060408051601f3d908101601f1916820190925261297491810190613460565b60015b6129d1573d8080156129a5576040519150601f19603f3d011682016040523d82523d6000602084013e6129aa565b606091505b5080516129c95760405162461bcd60e51b8152600401610d5a9061359d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061215f565b506001949350505050565b606060158054610c6f9061375e565b6060612a1082611ff2565b612a745760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610d5a565b6000612a7e6129f6565b90506000815111612a9e5760405180602001604052806000815250612ac9565b80612aa884612c62565b604051602001612ab992919061351e565b6040516020818303038152906040525b9392505050565b6001600160a01b038316612b2b57612b2681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612b4e565b816001600160a01b0316836001600160a01b031614612b4e57612b4e8382612d7c565b6001600160a01b038216612b6557610e9081612e19565b826001600160a01b0316826001600160a01b031614610e9057610e908282612ef2565b6000612b93826112e1565b9050612ba181600084612861565b612bac60008361200f565b6001600160a01b0381166000908152600360205260408120805460019290612bd590849061371b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b612c398383612f36565b612c4660008484846128e9565b610e905760405162461bcd60e51b8152600401610d5a9061359d565b606081612c865750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612cb05780612c9a81613793565b9150612ca99050600a836136e8565b9150612c8a565b60008167ffffffffffffffff811115612cd957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d03576020820181803683370190505b5090505b841561215f57612d1860018361371b565b9150612d25600a866137ae565b612d309060306136d0565b60f81b818381518110612d5357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612d75600a866136e8565b9450612d07565b60006001612d8984611468565b612d93919061371b565b600083815260076020526040902054909150808214612de6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612e2b9060019061371b565b60008381526009602052604081205460088054939450909284908110612e6157634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612e9057634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612ed657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612efd83611468565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612f8c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d5a565b612f9581611ff2565b15612fe25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d5a565b612fee60008383612861565b6001600160a01b03821660009081526003602052604081208054600192906130179084906136d0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546130819061375e565b90600052602060002090601f0160209004810192826130a357600085556130e9565b82601f106130bc57805160ff19168380011785556130e9565b828001600101855582156130e9579182015b828111156130e95782518255916020019190600101906130ce565b506130f592915061312f565b5090565b5080546131059061375e565b6000825580601f10613115575050565b601f0160209004906000526020600020908101906110e791905b5b808211156130f55760008155600101613130565b600067ffffffffffffffff83111561315e5761315e6137ee565b613171601f8401601f191660200161369f565b905082815283838301111561318557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146131b357600080fd5b919050565b600082601f8301126131c8578081fd5b612ac983833560208501613144565b6000602082840312156131e8578081fd5b612ac98261319c565b60008060408385031215613203578081fd5b61320c8361319c565b915061321a6020840161319c565b90509250929050565b600080600060608486031215613237578081fd5b6132408461319c565b925061324e6020850161319c565b9150604084013590509250925092565b60008060008060808587031215613273578081fd5b61327c8561319c565b935061328a6020860161319c565b925060408501359150606085013567ffffffffffffffff8111156132ac578182fd5b8501601f810187136132bc578182fd5b6132cb87823560208401613144565b91505092959194509250565b600080604083850312156132e9578182fd5b6132f28361319c565b915060208301358015158114613306578182fd5b809150509250929050565b60008060408385031215613323578182fd5b61332c8361319c565b946020939093013593505050565b60008060006060848603121561334e578283fd5b6133578461319c565b925060208401359150604084013567ffffffffffffffff811115613379578182fd5b613385868287016131b8565b9150509250925092565b600080604083850312156133a1578182fd5b823567ffffffffffffffff808211156133b8578384fd5b818501915085601f8301126133cb578384fd5b81356020828211156133df576133df6137ee565b8160051b92506133f081840161369f565b8281528181019085830185870184018b101561340a578889fd5b8896505b848710156134335761341f8161319c565b83526001969096019591830191830161340e565b509997909101359750505050505050565b600060208284031215613455578081fd5b8135612ac981613804565b600060208284031215613471578081fd5b8151612ac981613804565b60006020828403121561348d578081fd5b813567ffffffffffffffff8111156134a3578182fd5b61215f848285016131b8565b6000602082840312156134c0578081fd5b5035919050565b6000806000606084860312156134db578081fd5b505081359360208301359350604090920135919050565b6000815180845261350a816020860160208601613732565b601f01601f19169290920160200192915050565b60008351613530818460208801613732565b835190830190613544818360208801613732565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613580908301846134f2565b9695505050505050565b602081526000612ac960208301846134f2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156136c8576136c86137ee565b604052919050565b600082198211156136e3576136e36137c2565b500190565b6000826136f7576136f76137d8565b500490565b6000816000190483118215151615613716576137166137c2565b500290565b60008282101561372d5761372d6137c2565b500390565b60005b8381101561374d578181015183820152602001613735565b83811115611d8f5750506000910152565b600181811c9082168061377257607f821691505b6020821081141561253657634e487b7160e01b600052602260045260246000fd5b60006000198214156137a7576137a76137c2565b5060010190565b6000826137bd576137bd6137d8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110e757600080fdfea2646970667358221220912216400b54de536e41700982350e523da0a1bd0f9dca037fcc475d6dab642964736f6c63430008040033

Deployed Bytecode

0x6080604052600436106103fe5760003560e01c806370a0823111610213578063a0712d6811610123578063c87b56dd116100ab578063e82435e01161007a578063e82435e014610b7b578063e985e9c514610bb0578063eb50e70e14610bf9578063efa899e714610c19578063f2fde38b14610c2f57600080fd5b8063c87b56dd14610afb578063c9ea16f814610b1b578063cd279c7c14610b3b578063d08d1e4e14610b5b57600080fd5b8063a666098d116100f2578063a666098d14610a84578063ad7963a014610a9a578063b36c128414610aaf578063b408d3bd14610ac5578063b88d4fde14610adb57600080fd5b8063a0712d6814610a1b578063a09c7af614610a2e578063a22cb46514610a4e578063a3122c9914610a6e57600080fd5b80638aeacefe116101a657806397dc4a131161017557806397dc4a131461097157806398a8cffe1461099157806399288dbb146109be5780639b19251a146109d8578063a035b1fe14610a0557600080fd5b80638aeacefe146109065780638da5cb5b1461091957806391b7f5ed1461093c57806395d89b411461095c57600080fd5b8063813bfa6d116101e2578063813bfa6d1461089d578063820bdcdc146108bc57806383c2beca146108d15780638456cb59146108f157600080fd5b806370a0823114610826578063715018a6146108465780637d8966e41461085b578063808c721c1461087057600080fd5b806343ce42451161030e5780635b65b9ab116102a15780636352211e116102705780636352211e146107a65780636494e9be146107c65780636c0360eb146107db5780636e3de87c146107f05780636f8b44b01461080657600080fd5b80635b65b9ab146107255780635b7121f8146107455780635bf0c9ef1461077a5780635c975abb1461078e57600080fd5b806351a5def3116102dd57806351a5def3146106af5780635443611a146106cf57806355f804b3146106e557806359862f3b1461070557600080fd5b806343ce4245146106445780634f331a021461065a5780634f6ccce71461066f578063504158e21461068f57600080fd5b806323b872dd116103915780633c196f1d116103605780633c196f1d146105c45780633ccfd60b146105da5780633f4ba83a146105ef57806342842e0e1461060457806342966c681461062457600080fd5b806323b872dd1461054e5780632f745c591461056e578063346a4b6b1461058e57806339d82c59146105a457600080fd5b8063095ea7b3116103cd578063095ea7b3146104d457806318160ddd146104f65780631e241ce81461050b57806321a104221461052157600080fd5b806301ffc9a71461040a578063020daf361461043f57806306fdde031461047a578063081812fc1461049c57600080fd5b3661040557005b600080fd5b34801561041657600080fd5b5061042a610425366004613444565b610c4f565b60405190151581526020015b60405180910390f35b34801561044b57600080fd5b5061046c61045a3660046131d7565b60176020526000908152604090205481565b604051908152602001610436565b34801561048657600080fd5b5061048f610c60565b604051610436919061358a565b3480156104a857600080fd5b506104bc6104b73660046134af565b610cf2565b6040516001600160a01b039091168152602001610436565b3480156104e057600080fd5b506104f46104ef366004613311565b610d7f565b005b34801561050257600080fd5b5060085461046c565b34801561051757600080fd5b5061046c60115481565b34801561052d57600080fd5b5061046c61053c3660046131d7565b601b6020526000908152604090205481565b34801561055a57600080fd5b506104f4610569366004613223565b610e95565b34801561057a57600080fd5b5061046c610589366004613311565b610ec7565b34801561059a57600080fd5b5061046c60165481565b3480156105b057600080fd5b506104f46105bf3660046134af565b610f5d565b3480156105d057600080fd5b5061046c601e5481565b3480156105e657600080fd5b506104f4610f92565b3480156105fb57600080fd5b506104f461101b565b34801561061057600080fd5b506104f461061f366004613223565b611055565b34801561063057600080fd5b506104f461063f3660046134af565b611070565b34801561065057600080fd5b5061046c601f5481565b34801561066657600080fd5b5060115461046c565b34801561067b57600080fd5b5061046c61068a3660046134af565b6110ea565b34801561069b57600080fd5b506104f46106aa3660046134af565b61118b565b3480156106bb57600080fd5b506104f46106ca36600461338f565b6111c0565b3480156106db57600080fd5b5061046c60135481565b3480156106f157600080fd5b506104f461070036600461347c565b611260565b34801561071157600080fd5b5060105461042a9062010000900460ff1681565b34801561073157600080fd5b506104f46107403660046134c7565b6112a3565b34801561075157600080fd5b506104bc6107603660046134af565b60009081526020805260409020546001600160a01b031690565b34801561078657600080fd5b50600161042a565b34801561079a57600080fd5b50600b5460ff1661042a565b3480156107b257600080fd5b506104bc6107c13660046134af565b6112e1565b3480156107d257600080fd5b506104f4611358565b3480156107e757600080fd5b5061048f6113a5565b3480156107fc57600080fd5b5061046c600d5481565b34801561081257600080fd5b506104f46108213660046134af565b611433565b34801561083257600080fd5b5061046c6108413660046131d7565b611468565b34801561085257600080fd5b506104f46114ef565b34801561086757600080fd5b506104f4611529565b34801561087c57600080fd5b5061046c61088b3660046131d7565b601a6020526000908152604090205481565b3480156108a957600080fd5b5060105461042a90610100900460ff1681565b3480156108c857600080fd5b5060135461046c565b3480156108dd57600080fd5b506014546104bc906001600160a01b031681565b3480156108fd57600080fd5b506104f461156d565b6104f46109143660046134af565b6115a5565b34801561092557600080fd5b50600b5461010090046001600160a01b03166104bc565b34801561094857600080fd5b506104f46109573660046134af565b611825565b34801561096857600080fd5b5061048f61185a565b34801561097d57600080fd5b506104f461098c3660046134af565b611869565b34801561099d57600080fd5b5061046c6109ac3660046131d7565b60196020526000908152604090205481565b3480156109ca57600080fd5b5060105461042a9060ff1681565b3480156109e457600080fd5b5061046c6109f33660046131d7565b60186020526000908152604090205481565b348015610a1157600080fd5b5061046c600f5481565b6104f4610a293660046134af565b611ab9565b348015610a3a57600080fd5b506104f4610a493660046134af565b611cce565b348015610a5a57600080fd5b506104f4610a693660046132d7565b611d03565b348015610a7a57600080fd5b5061046c601c5481565b348015610a9057600080fd5b5061046c600e5481565b348015610aa657600080fd5b506104f4611d0e565b348015610abb57600080fd5b5061046c600c5481565b348015610ad157600080fd5b5061046c60125481565b348015610ae757600080fd5b506104f4610af636600461325e565b611d5d565b348015610b0757600080fd5b5061048f610b163660046134af565b611d95565b348015610b2757600080fd5b506104f4610b3636600461338f565b611da0565b348015610b4757600080fd5b506104f4610b5636600461333a565b611e40565b348015610b6757600080fd5b506104f4610b763660046134af565b611ea8565b348015610b8757600080fd5b506104bc610b963660046134af565b60208052600090815260409020546001600160a01b031681565b348015610bbc57600080fd5b5061042a610bcb3660046131f1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610c0557600080fd5b506104f4610c143660046131d7565b611edd565b348015610c2557600080fd5b5061046c601d5481565b348015610c3b57600080fd5b506104f4610c4a3660046131d7565b611f2f565b6000610c5a82611fcd565b92915050565b606060008054610c6f9061375e565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9b9061375e565b8015610ce85780601f10610cbd57610100808354040283529160200191610ce8565b820191906000526020600020905b815481529060010190602001808311610ccb57829003601f168201915b5050505050905090565b6000610cfd82611ff2565b610d635760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610d8a826112e1565b9050806001600160a01b0316836001600160a01b03161415610df85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610d5a565b336001600160a01b0382161480610e145750610e148133610bcb565b610e865760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610d5a565b610e90838361200f565b505050565b610ea0335b8261207d565b610ebc5760405162461bcd60e51b8152600401610d5a9061364e565b610e90838383612167565b6000610ed283611468565b8210610f345760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610d5a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610f8d5760405162461bcd60e51b8152600401610d5a90613619565b600d55565b600b546001600160a01b03610100909104163314610fc25760405162461bcd60e51b8152600401610d5a90613619565b60145460115460125447926001600160a01b0316916108fc91610fe590856136fc565b610fef91906136e8565b6040518115909202916000818181858888f19350505050158015611017573d6000803e3d6000fd5b5050565b600b546001600160a01b0361010090910416331461104b5760405162461bcd60e51b8152600401610d5a90613619565b611053612312565b565b610e9083838360405180602001604052806000815250611d5d565b61107933610e9a565b6110de5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610d5a565b6110e7816123a5565b50565b60006110f560085490565b82106111585760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610d5a565b6008828154811061117957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600b546001600160a01b036101009091041633146111bb5760405162461bcd60e51b8152600401610d5a90613619565b601c55565b600b546001600160a01b036101009091041633146111f05760405162461bcd60e51b8152600401610d5a90613619565b60005b8251811015610e905781601a600085848151811061122157634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061125890613793565b9150506111f3565b600b546001600160a01b036101009091041633146112905760405162461bcd60e51b8152600401610d5a90613619565b8051611017906015906020840190613075565b600b546001600160a01b036101009091041633146112d35760405162461bcd60e51b8152600401610d5a90613619565b601292909255601355601155565b6000818152600260205260408120546001600160a01b031680610c5a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610d5a565b600b546001600160a01b036101009091041633146113885760405162461bcd60e51b8152600401610d5a90613619565b6010805461ff001981166101009182900460ff1615909102179055565b601580546113b29061375e565b80601f01602080910402602001604051908101604052809291908181526020018280546113de9061375e565b801561142b5780601f106114005761010080835404028352916020019161142b565b820191906000526020600020905b81548152906001019060200180831161140e57829003601f168201915b505050505081565b600b546001600160a01b036101009091041633146114635760405162461bcd60e51b8152600401610d5a90613619565b600c55565b60006001600160a01b0382166114d35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610d5a565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b0361010090910416331461151f5760405162461bcd60e51b8152600401610d5a90613619565b61105360006123ae565b600b546001600160a01b036101009091041633146115595760405162461bcd60e51b8152600401610d5a90613619565b6010805460ff19811660ff90911615179055565b600b546001600160a01b0361010090910416331461159d5760405162461bcd60e51b8152600401610d5a90613619565b611053612408565b80600f546115b391906136fc565b3410156115f85760405162461bcd60e51b81526020600482015260136024820152721b9bdd08195b9bdd59da081dd85cc81c185a59606a1b6044820152606401610d5a565b60105460ff6101009091041615156001146116555760405162461bcd60e51b815260206004820152601760248201527f57686974654c697374206973206e6f74206f70656e65640000000000000000006044820152606401610d5a565b601e5481601f5461166691906136d0565b11156116be5760405162461bcd60e51b815260206004820152602160248201527f57686974654c69737420546f74616c20416d6f756e74206973206c696d6974656044820152601960fa1b6064820152608401610d5a565b336000908152601860205260409020548061171b5760405162461bcd60e51b815260206004820181905260248201527f746869732061646472657373206973206e6f7420696e2077686974656c6973746044820152606401610d5a565b3360009081526019602052604090205481906117389084906136d0565b11156117945760405162461bcd60e51b815260206004820152602560248201527f796f757220616464726573732077686974656c69737420616d6f756e74206c696044820152641b5a5d195960da1b6064820152608401610d5a565b60005b828110156117e45760006117a9612460565b90506117b5338261253c565b6000908152602080526040902080546001600160a01b03191633179055806117dc81613793565b915050611797565b50336000908152601960205260409020546118009083906136d0565b33600090815260196020526040902055601f5461181e9083906136d0565b601f555050565b600b546001600160a01b036101009091041633146118555760405162461bcd60e51b8152600401610d5a90613619565b600f55565b606060018054610c6f9061375e565b600b5460ff161561188c5760405162461bcd60e51b8152600401610d5a906135ef565b60105462010000900460ff1615156001146118e15760405162461bcd60e51b8152602060048201526015602482015274105a5c991c9bdc081a5cc81b9bdd081bdc195b9959605a1b6044820152606401610d5a565b601c5481601d546118f291906136d0565b11156119405760405162461bcd60e51b815260206004820152601e60248201527f41697264726f70204d696e7420416d6f756e74206973206c696d6974656400006044820152606401610d5a565b336000908152601a6020526040902054806119b15760405162461bcd60e51b815260206004820152602b60248201527f746869732061646472657373206973206e6f742061697264726f7020666f722060448201526a7468652070726573616c6560a81b6064820152608401610d5a565b336000908152601b602052604090205481906119ce9084906136d0565b1115611a285760405162461bcd60e51b815260206004820152602360248201527f596f757220616464726573732061697264726f7020616d6f756e74206c696d696044820152621d195960ea1b6064820152608401610d5a565b60005b82811015611a78576000611a3d612460565b9050611a49338261253c565b6000908152602080526040902080546001600160a01b0319163317905580611a7081613793565b915050611a2b565b50336000908152601b6020526040902054611a949083906136d0565b336000908152601b6020526040902055601d54611ab29083906136d0565b601d555050565b60105460ff161515600114611b055760405162461bcd60e51b815260206004820152601260248201527114d85b19481a5cc81b9bdd081bdc195b995960721b6044820152606401610d5a565b80600f54611b1391906136fc565b341015611b585760405162461bcd60e51b81526020600482015260136024820152721b9bdd08195b9bdd59da081dd85cc81c185a59606a1b6044820152606401610d5a565b60165433600090815260176020526040902054611b769083906136d0565b1115611bd45760405162461bcd60e51b815260206004820152602760248201527f6f6e6c79206c696d6974656420616d6f756e7420706572206164647265737320604482015266185b1b1bddd95960ca1b6064820152608401610d5a565b600d5481600e54611be591906136d0565b1115611c3e5760405162461bcd60e51b815260206004820152602260248201527f6d6178207075626c69632073616c6520616d6f756e74206973206c696d697465604482015261321760f11b6064820152608401610d5a565b60005b81811015611c8e576000611c53612460565b9050611c5f338261253c565b6000908152602080526040902080546001600160a01b0319163317905580611c8681613793565b915050611c41565b5033600090815260176020526040902054611caa9082906136d0565b33600090815260176020526040902055600e54611cc89082906136d0565b600e5550565b600b546001600160a01b03610100909104163314611cfe5760405162461bcd60e51b8152600401610d5a90613619565b601655565b611017338383612546565b600b546001600160a01b03610100909104163314611d3e5760405162461bcd60e51b8152600401610d5a90613619565b6010805462ff0000198116620100009182900460ff1615909102179055565b611d67338361207d565b611d835760405162461bcd60e51b8152600401610d5a9061364e565b611d8f84848484612615565b50505050565b6060610c5a82612648565b600b546001600160a01b03610100909104163314611dd05760405162461bcd60e51b8152600401610d5a90613619565b60005b8251811015610e90578160186000858481518110611e0157634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611e3890613793565b915050611dd3565b600b546001600160a01b03610100909104163314611e705760405162461bcd60e51b8152600401610d5a90613619565b611e7a838361253c565b6000828152602080526040902080546001600160a01b03191633179055805115610e9057610e908282612786565b600b546001600160a01b03610100909104163314611ed85760405162461bcd60e51b8152600401610d5a90613619565b601e55565b600b546001600160a01b03610100909104163314611f0d5760405162461bcd60e51b8152600401610d5a90613619565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b600b546001600160a01b03610100909104163314611f5f5760405162461bcd60e51b8152600401610d5a90613619565b6001600160a01b038116611fc45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d5a565b6110e7816123ae565b60006001600160e01b0319821663780e9d6360e01b1480610c5a5750610c5a82612811565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612044826112e1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061208882611ff2565b6120e95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610d5a565b60006120f4836112e1565b9050806001600160a01b0316846001600160a01b0316148061212f5750836001600160a01b031661212484610cf2565b6001600160a01b0316145b8061215f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661217a826112e1565b6001600160a01b0316146121e25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610d5a565b6001600160a01b0382166122445760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610d5a565b61224f838383612861565b61225a60008261200f565b6001600160a01b038316600090815260036020526040812080546001929061228390849061371b565b90915550506001600160a01b03821660009081526003602052604081208054600192906122b19084906136d0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5460ff1661235b5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610d5a565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6110e78161288f565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b5460ff161561242b5760405162461bcd60e51b8152600401610d5a906135ef565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123883390565b6000600c5461246e60085490565b106124b15760405162461bcd60e51b81526020600482015260136024820152724d617820537570706c79204c696d697465642160681b6044820152606401610d5a565b6000805b600c5460408051446020820152429181019190915260608101839052600091906080016040516020818303038152906040528051906020012060001c6124fb91906137ae565b6125069060016136d0565b90508161251281613793565b92505061251e81611ff2565b151560011461252e579150612536565b5081156124b5575b50919050565b61101782826128cf565b816001600160a01b0316836001600160a01b031614156125a85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d5a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612620848484612167565b61262c848484846128e9565b611d8f5760405162461bcd60e51b8152600401610d5a9061359d565b606061265382611ff2565b6126b95760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610d5a565b6000828152600a6020526040812080546126d29061375e565b80601f01602080910402602001604051908101604052809291908181526020018280546126fe9061375e565b801561274b5780601f106127205761010080835404028352916020019161274b565b820191906000526020600020905b81548152906001019060200180831161272e57829003601f168201915b50505050509050600061275c6129f6565b905080516000141561276f575092915050565b81511561277d575092915050565b61215f84612a05565b61278f82611ff2565b6127f25760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610d5a565b6000828152600a602090815260409091208251610e9092840190613075565b60006001600160e01b031982166380ac58cd60e01b148061284257506001600160e01b03198216635b5e139f60e01b145b80610c5a57506301ffc9a760e01b6001600160e01b0319831614610c5a565b600b5460ff16156128845760405162461bcd60e51b8152600401610d5a906135ef565b610e90838383612ad0565b61289881612b88565b6000818152600a6020526040902080546128b19061375e565b1590506110e7576000818152600a602052604081206110e7916130f9565b611017828260405180602001604052806000815250612c2f565b60006001600160a01b0384163b156129eb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061292d90339089908890889060040161354d565b602060405180830381600087803b15801561294757600080fd5b505af1925050508015612977575060408051601f3d908101601f1916820190925261297491810190613460565b60015b6129d1573d8080156129a5576040519150601f19603f3d011682016040523d82523d6000602084013e6129aa565b606091505b5080516129c95760405162461bcd60e51b8152600401610d5a9061359d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061215f565b506001949350505050565b606060158054610c6f9061375e565b6060612a1082611ff2565b612a745760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610d5a565b6000612a7e6129f6565b90506000815111612a9e5760405180602001604052806000815250612ac9565b80612aa884612c62565b604051602001612ab992919061351e565b6040516020818303038152906040525b9392505050565b6001600160a01b038316612b2b57612b2681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612b4e565b816001600160a01b0316836001600160a01b031614612b4e57612b4e8382612d7c565b6001600160a01b038216612b6557610e9081612e19565b826001600160a01b0316826001600160a01b031614610e9057610e908282612ef2565b6000612b93826112e1565b9050612ba181600084612861565b612bac60008361200f565b6001600160a01b0381166000908152600360205260408120805460019290612bd590849061371b565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b612c398383612f36565b612c4660008484846128e9565b610e905760405162461bcd60e51b8152600401610d5a9061359d565b606081612c865750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612cb05780612c9a81613793565b9150612ca99050600a836136e8565b9150612c8a565b60008167ffffffffffffffff811115612cd957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d03576020820181803683370190505b5090505b841561215f57612d1860018361371b565b9150612d25600a866137ae565b612d309060306136d0565b60f81b818381518110612d5357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612d75600a866136e8565b9450612d07565b60006001612d8984611468565b612d93919061371b565b600083815260076020526040902054909150808214612de6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612e2b9060019061371b565b60008381526009602052604081205460088054939450909284908110612e6157634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612e9057634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612ed657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612efd83611468565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612f8c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d5a565b612f9581611ff2565b15612fe25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d5a565b612fee60008383612861565b6001600160a01b03821660009081526003602052604081208054600192906130179084906136d0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546130819061375e565b90600052602060002090601f0160209004810192826130a357600085556130e9565b82601f106130bc57805160ff19168380011785556130e9565b828001600101855582156130e9579182015b828111156130e95782518255916020019190600101906130ce565b506130f592915061312f565b5090565b5080546131059061375e565b6000825580601f10613115575050565b601f0160209004906000526020600020908101906110e791905b5b808211156130f55760008155600101613130565b600067ffffffffffffffff83111561315e5761315e6137ee565b613171601f8401601f191660200161369f565b905082815283838301111561318557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146131b357600080fd5b919050565b600082601f8301126131c8578081fd5b612ac983833560208501613144565b6000602082840312156131e8578081fd5b612ac98261319c565b60008060408385031215613203578081fd5b61320c8361319c565b915061321a6020840161319c565b90509250929050565b600080600060608486031215613237578081fd5b6132408461319c565b925061324e6020850161319c565b9150604084013590509250925092565b60008060008060808587031215613273578081fd5b61327c8561319c565b935061328a6020860161319c565b925060408501359150606085013567ffffffffffffffff8111156132ac578182fd5b8501601f810187136132bc578182fd5b6132cb87823560208401613144565b91505092959194509250565b600080604083850312156132e9578182fd5b6132f28361319c565b915060208301358015158114613306578182fd5b809150509250929050565b60008060408385031215613323578182fd5b61332c8361319c565b946020939093013593505050565b60008060006060848603121561334e578283fd5b6133578461319c565b925060208401359150604084013567ffffffffffffffff811115613379578182fd5b613385868287016131b8565b9150509250925092565b600080604083850312156133a1578182fd5b823567ffffffffffffffff808211156133b8578384fd5b818501915085601f8301126133cb578384fd5b81356020828211156133df576133df6137ee565b8160051b92506133f081840161369f565b8281528181019085830185870184018b101561340a578889fd5b8896505b848710156134335761341f8161319c565b83526001969096019591830191830161340e565b509997909101359750505050505050565b600060208284031215613455578081fd5b8135612ac981613804565b600060208284031215613471578081fd5b8151612ac981613804565b60006020828403121561348d578081fd5b813567ffffffffffffffff8111156134a3578182fd5b61215f848285016131b8565b6000602082840312156134c0578081fd5b5035919050565b6000806000606084860312156134db578081fd5b505081359360208301359350604090920135919050565b6000815180845261350a816020860160208601613732565b601f01601f19169290920160200192915050565b60008351613530818460208801613732565b835190830190613544818360208801613732565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613580908301846134f2565b9695505050505050565b602081526000612ac960208301846134f2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156136c8576136c86137ee565b604052919050565b600082198211156136e3576136e36137c2565b500190565b6000826136f7576136f76137d8565b500490565b6000816000190483118215151615613716576137166137c2565b500290565b60008282101561372d5761372d6137c2565b500390565b60005b8381101561374d578181015183820152602001613735565b83811115611d8f5750506000910152565b600181811c9082168061377257607f821691505b6020821081141561253657634e487b7160e01b600052602260045260246000fd5b60006000198214156137a7576137a76137c2565b5060010190565b6000826137bd576137bd6137d8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110e757600080fdfea2646970667358221220912216400b54de536e41700982350e523da0a1bd0f9dca037fcc475d6dab642964736f6c63430008040033

Deployed Bytecode Sourcemap

50634:8476:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58936:171;;;;;;;;;;-1:-1:-1;58936:171:0;;;;;:::i;:::-;;:::i;:::-;;;7887:14:1;;7880:22;7862:41;;7850:2;7835:18;58936:171:0;;;;;;;;51358:61;;;;;;;;;;-1:-1:-1;51358:61:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;22335:25:1;;;22323:2;22308:18;51358:61:0;22290:76:1;28149:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29708:221::-;;;;;;;;;;-1:-1:-1;29708:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7185:32:1;;;7167:51;;7155:2;7140:18;29708:221:0;7122:102:1;29231:411:0;;;;;;;;;;-1:-1:-1;29231:411:0;;;;;:::i;:::-;;:::i;:::-;;45016:113;;;;;;;;;;-1:-1:-1;45104:10:0;:17;45016:113;;51046:38;;;;;;;;;;;;;;;;51591:48;;;;;;;;;;-1:-1:-1;51591:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;30458:339;;;;;;;;;;-1:-1:-1;30458:339:0;;;;;:::i;:::-;;:::i;44684:256::-;;;;;;;;;;-1:-1:-1;44684:256:0;;;;;:::i;:::-;;:::i;51307:44::-;;;;;;;;;;;;;;;;54585:110;;;;;;;;;;-1:-1:-1;54585:110:0;;;;;:::i;:::-;;:::i;51736:45::-;;;;;;;;;;;;;;;;52722:205;;;;;;;;;;;;;:::i;53906:65::-;;;;;;;;;;;;;:::i;30868:185::-;;;;;;;;;;-1:-1:-1;30868:185:0;;;;;:::i;:::-;;:::i;43113:245::-;;;;;;;;;;-1:-1:-1;43113:245:0;;;;;:::i;:::-;;:::i;51788:39::-;;;;;;;;;;;;;;;;53630:107;;;;;;;;;;-1:-1:-1;53710:19:0;;53630:107;;45206:233;;;;;;;;;;-1:-1:-1;45206:233:0;;;;;:::i;:::-;;:::i;52597:117::-;;;;;;;;;;-1:-1:-1;52597:117:0;;;;;:::i;:::-;;:::i;52419:170::-;;;;;;;;;;-1:-1:-1;52419:170:0;;;;;:::i;:::-;;:::i;51140:40::-;;;;;;;;;;;;;;;;54265:102;;;;;;;;;;-1:-1:-1;54265:102:0;;;;;:::i;:::-;;:::i;51002:31::-;;;;;;;;;;-1:-1:-1;51002:31:0;;;;;;;;;;;52935:310;;;;;;;;;;-1:-1:-1;52935:310:0;;;;;:::i;:::-;;:::i;53393:115::-;;;;;;;;;;-1:-1:-1;53393:115:0;;;;;:::i;:::-;53453:7;53480:20;;;:10;:20;;;;;;-1:-1:-1;;;;;53480:20:0;;53393:115;53745:84;;;;;;;;;;-1:-1:-1;53817:4:0;53745:84;;6750:86;;;;;;;;;;-1:-1:-1;6821:7:0;;;;6750:86;;27843:239;;;;;;;;;;-1:-1:-1;27843:239:0;;;;;:::i;:::-;;:::i;54160:97::-;;;;;;;;;;;;;:::i;51279:21::-;;;;;;;;;;;;;:::i;50781:37::-;;;;;;;;;;;;;;;;54479:98;;;;;;;;;;-1:-1:-1;54479:98:0;;;;;:::i;:::-;;:::i;27573:208::-;;;;;;;;;;-1:-1:-1;27573:208:0;;;;;:::i;:::-;;:::i;4801:103::-;;;;;;;;;;;;;:::i;54074:78::-;;;;;;;;;;;;;:::i;51538:46::-;;;;;;;;;;-1:-1:-1;51538:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;50958:33;;;;;;;;;;-1:-1:-1;50958:33:0;;;;;;;;;;;53516:106;;;;;;;;;;-1:-1:-1;53591:23:0;;53516:106;;51192:78;;;;;;;;;;-1:-1:-1;51192:78:0;;;;-1:-1:-1;;;;;51192:78:0;;;53837:61;;;;;;;;;;;;;:::i;56622:904::-;;;;;;:::i;:::-;;:::i;4150:87::-;;;;;;;;;;-1:-1:-1;4223:6:0;;;;;-1:-1:-1;;;;;4223:6:0;4150:87;;54375:88;;;;;;;;;;-1:-1:-1;54375:88:0;;;;;:::i;:::-;;:::i;28318:104::-;;;;;;;;;;;;;:::i;55779:835::-;;;;;;;;;;-1:-1:-1;55779:835:0;;;;;:::i;:::-;;:::i;51481:50::-;;;;;;;;;;-1:-1:-1;51481:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;50915:28;;;;;;;;;;-1:-1:-1;50915:28:0;;;;;;;;51430:44;;;;;;;;;;-1:-1:-1;51430:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;50875:33;;;;;;;;;;;;;;;;57534:801;;;;;;:::i;:::-;;:::i;51977:126::-;;;;;;;;;;-1:-1:-1;51977:126:0;;;;;:::i;:::-;;:::i;30001:155::-;;;;;;;;;;-1:-1:-1;30001:155:0;;;;;:::i;:::-;;:::i;51646:39::-;;;;;;;;;;;;;;;;50829:35;;;;;;;;;;;;;;;;53979:87;;;;;;;;;;;;;:::i;50743:31::-;;;;;;;;;;;;;;;;51091:38;;;;;;;;;;;;;;;;31124:328;;;;;;;;;;-1:-1:-1;31124:328:0;;;;;:::i;:::-;;:::i;58773:155::-;;;;;;;;;;-1:-1:-1;58773:155:0;;;;;:::i;:::-;;:::i;52111:170::-;;;;;;;;;;-1:-1:-1;52111:170:0;;;;;:::i;:::-;;:::i;55485:286::-;;;;;;;;;;-1:-1:-1;55485:286:0;;;;;:::i;:::-;;:::i;52289:122::-;;;;;;;;;;-1:-1:-1;52289:122:0;;;;;:::i;:::-;;:::i;51836:45::-;;;;;;;;;;-1:-1:-1;51836:45:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;51836:45:0;;;30227:164;;;;;;;;;;-1:-1:-1;30227:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30348:25:0;;;30324:4;30348:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30227:164;53253:132;;;;;;;;;;-1:-1:-1;53253:132:0;;;;;:::i;:::-;;:::i;51692:37::-;;;;;;;;;;;;;;;;5059:201;;;;;;;;;;-1:-1:-1;5059:201:0;;;;;:::i;:::-;;:::i;58936:171::-;59039:4;59063:36;59087:11;59063:23;:36::i;:::-;59056:43;58936:171;-1:-1:-1;;58936:171:0:o;28149:100::-;28203:13;28236:5;28229:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28149:100;:::o;29708:221::-;29784:7;29812:16;29820:7;29812;:16::i;:::-;29804:73;;;;-1:-1:-1;;;29804:73:0;;17217:2:1;29804:73:0;;;17199:21:1;17256:2;17236:18;;;17229:30;17295:34;17275:18;;;17268:62;-1:-1:-1;;;17346:18:1;;;17339:42;17398:19;;29804:73:0;;;;;;;;;-1:-1:-1;29897:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29897:24:0;;29708:221::o;29231:411::-;29312:13;29328:23;29343:7;29328:14;:23::i;:::-;29312:39;;29376:5;-1:-1:-1;;;;;29370:11:0;:2;-1:-1:-1;;;;;29370:11:0;;;29362:57;;;;-1:-1:-1;;;29362:57:0;;19229:2:1;29362:57:0;;;19211:21:1;19268:2;19248:18;;;19241:30;19307:34;19287:18;;;19280:62;-1:-1:-1;;;19358:18:1;;;19351:31;19399:19;;29362:57:0;19201:223:1;29362:57:0;2954:10;-1:-1:-1;;;;;29454:21:0;;;;:62;;-1:-1:-1;29479:37:0;29496:5;2954:10;30227:164;:::i;29479:37::-;29432:168;;;;-1:-1:-1;;;29432:168:0;;14373:2:1;29432:168:0;;;14355:21:1;14412:2;14392:18;;;14385:30;14451:34;14431:18;;;14424:62;14522:26;14502:18;;;14495:54;14566:19;;29432:168:0;14345:246:1;29432:168:0;29613:21;29622:2;29626:7;29613:8;:21::i;:::-;29231:411;;;:::o;30458:339::-;30653:41;2954:10;30672:12;30686:7;30653:18;:41::i;:::-;30645:103;;;;-1:-1:-1;;;30645:103:0;;;;;;;:::i;:::-;30761:28;30771:4;30777:2;30781:7;30761:9;:28::i;44684:256::-;44781:7;44817:23;44834:5;44817:16;:23::i;:::-;44809:5;:31;44801:87;;;;-1:-1:-1;;;44801:87:0;;9804:2:1;44801:87:0;;;9786:21:1;9843:2;9823:18;;;9816:30;9882:34;9862:18;;;9855:62;-1:-1:-1;;;9933:18:1;;;9926:41;9984:19;;44801:87:0;9776:233:1;44801:87:0;-1:-1:-1;;;;;;44906:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;44684:256::o;54585:110::-;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;54660:15:::1;:27:::0;54585:110::o;52722:205::-;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;52828:18:::1;::::0;52891:19:::1;::::0;52868::::1;::::0;52788:21:::1;::::0;-1:-1:-1;;;;;52828:18:0::1;::::0;52820:91:::1;::::0;52858:29:::1;::::0;52788:21;52858:29:::1;:::i;:::-;52857:53;;;;:::i;:::-;52820:91;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;4441:1;52722:205::o:0;53906:65::-;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;53953:10:::1;:8;:10::i;:::-;53906:65::o:0;30868:185::-;31006:39;31023:4;31029:2;31033:7;31006:39;;;;;;;;;;;;:16;:39::i;43113:245::-;43231:41;2954:10;43250:12;2874:98;43231:41;43223:102;;;;-1:-1:-1;;;43223:102:0;;21974:2:1;43223:102:0;;;21956:21:1;22013:2;21993:18;;;21986:30;22052:34;22032:18;;;22025:62;-1:-1:-1;;;22103:18:1;;;22096:46;22159:19;;43223:102:0;21946:238:1;43223:102:0;43336:14;43342:7;43336:5;:14::i;:::-;43113:245;:::o;45206:233::-;45281:7;45317:30;45104:10;:17;;45016:113;45317:30;45309:5;:38;45301:95;;;;-1:-1:-1;;;45301:95:0;;21561:2:1;45301:95:0;;;21543:21:1;21600:2;21580:18;;;21573:30;21639:34;21619:18;;;21612:62;-1:-1:-1;;;21690:18:1;;;21683:42;21742:19;;45301:95:0;21533:234:1;45301:95:0;45414:10;45425:5;45414:17;;;;;;-1:-1:-1;;;45414:17:0;;;;;;;;;;;;;;;;;45407:24;;45206:233;;;:::o;52597:117::-;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;52676:20:::1;:30:::0;52597:117::o;52419:170::-;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;52517:9:::1;52512:69;52536:3;:10;52532:1;:14;52512:69;;;52575:6;52553:11;:19;52565:3;52569:1;52565:6;;;;;;-1:-1:-1::0;;;52565:6:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;52553:19:0::1;-1:-1:-1::0;;;;;52553:19:0::1;;;;;;;;;;;;:28;;;;52548:3;;;;;:::i;:::-;;;;52512:69;;54265:102:::0;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;54339:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;52935:310::-:0;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;53072:19:::1;:42:::0;;;;53134:23:::1;:50:::0;53195:19:::1;:42:::0;52935:310::o;27843:239::-;27915:7;27951:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27951:16:0;27986:19;27978:73;;;;-1:-1:-1;;;27978:73:0;;15209:2:1;27978:73:0;;;15191:21:1;15248:2;15228:18;;;15221:30;15287:34;15267:18;;;15260:62;-1:-1:-1;;;15338:18:1;;;15331:39;15387:19;;27978:73:0;15181:231:1;54160:97:0;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;54236:13:::1;::::0;;-1:-1:-1;;54219:30:0;::::1;54236:13;::::0;;;::::1;;;54235:14;54219:30:::0;;::::1;;::::0;;54160:97::o;51279:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54479:98::-;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;54548:9:::1;:21:::0;54479:98::o;27573:208::-;27645:7;-1:-1:-1;;;;;27673:19:0;;27665:74;;;;-1:-1:-1;;;27665:74:0;;14798:2:1;27665:74:0;;;14780:21:1;14837:2;14817:18;;;14810:30;14876:34;14856:18;;;14849:62;-1:-1:-1;;;14927:18:1;;;14920:40;14977:19;;27665:74:0;14770:232:1;27665:74:0;-1:-1:-1;;;;;;27757:16:0;;;;;:9;:16;;;;;;;27573:208::o;4801:103::-;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;4866:30:::1;4893:1;4866:18;:30::i;54074:78::-:0;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;54136:8:::1;::::0;;-1:-1:-1;;54124:20:0;::::1;54136:8;::::0;;::::1;54135:9;54124:20;::::0;;54074:78::o;53837:61::-;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;53882:8:::1;:6;:8::i;56622:904::-:0;56735:6;56727:5;;:14;;;;:::i;:::-;56714:9;:27;;56706:59;;;;-1:-1:-1;;;56706:59:0;;19631:2:1;56706:59:0;;;19613:21:1;19670:2;19650:18;;;19643:30;-1:-1:-1;;;19689:18:1;;;19682:49;19748:18;;56706:59:0;19603:169:1;56706:59:0;56784:13;;;;;;;;:21;;:13;:21;56776:57;;;;-1:-1:-1;;;56776:57:0;;12504:2:1;56776:57:0;;;12486:21:1;12543:2;12523:18;;;12516:30;12582:25;12562:18;;;12555:53;12625:18;;56776:57:0;12476:173:1;56776:57:0;56885:23;;56875:6;56852:20;;:29;;;;:::i;:::-;:56;;56844:103;;;;-1:-1:-1;;;56844:103:0;;21159:2:1;56844:103:0;;;21141:21:1;21198:2;21178:18;;;21171:30;21237:34;21217:18;;;21210:62;-1:-1:-1;;;21288:18:1;;;21281:31;21329:19;;56844:103:0;21131:223:1;56844:103:0;56982:10;56958:11;56972:21;;;:9;:21;;;;;;57012:7;57004:52;;;;-1:-1:-1;;;57004:52:0;;9095:2:1;57004:52:0;;;9077:21:1;;;9114:18;;;9107:30;9173:34;9153:18;;;9146:62;9225:18;;57004:52:0;9067:182:1;57004:52:0;57091:10;57075:27;;;;:15;:27;;;;;;57115:3;;57075:36;;57105:6;;57075:36;:::i;:::-;:43;;57067:93;;;;-1:-1:-1;;;57067:93:0;;8340:2:1;57067:93:0;;;8322:21:1;8379:2;8359:18;;;8352:30;8418:34;8398:18;;;8391:62;-1:-1:-1;;;8469:18:1;;;8462:35;8514:19;;57067:93:0;8312:227:1;57067:93:0;57184:9;57179:191;57203:6;57199:1;:10;57179:191;;;57231:15;57249:14;:12;:14::i;:::-;57231:32;;57278:33;57291:10;57303:7;57278:12;:33::i;:::-;57326:19;;;;:10;:19;;;;;:32;;-1:-1:-1;;;;;;57326:32:0;57348:10;57326:32;;;57211:3;;;;:::i;:::-;;;;57179:191;;;-1:-1:-1;57426:10:0;57410:27;;;;:15;:27;;;;;;:36;;57440:6;;57410:36;:::i;:::-;57396:10;57380:27;;;;:15;:27;;;;;:66;57489:20;;:29;;57512:6;;57489:29;:::i;:::-;57466:20;:52;-1:-1:-1;;56622:904:0:o;54375:88::-;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;54439:5:::1;:16:::0;54375:88::o;28318:104::-;28374:13;28407:7;28400:14;;;;;:::i;55779:835::-;6821:7;;;;7075:9;7067:38;;;;-1:-1:-1;;;7067:38:0;;;;;;;:::i;:::-;55868:11:::1;::::0;;;::::1;;;:19;;55883:4;55868:19;55860:53;;;::::0;-1:-1:-1;;;55860:53:0;;11746:2:1;55860:53:0::1;::::0;::::1;11728:21:1::0;11785:2;11765:18;;;11758:30;-1:-1:-1;;;11804:18:1;;;11797:51;11865:18;;55860:53:0::1;11718:171:1::0;55860:53:0::1;55963:20;;55953:6;55932:18;;:27;;;;:::i;:::-;:51;;55924:94;;;::::0;-1:-1:-1;;;55924:94:0;;19979:2:1;55924:94:0::1;::::0;::::1;19961:21:1::0;20018:2;19998:18;;;19991:30;20057:32;20037:18;;;20030:60;20107:18;;55924:94:0::1;19951:180:1::0;55924:94:0::1;56055:10;56029:11;56043:23:::0;;;:11:::1;:23;::::0;;;;;56085:7;56077:63:::1;;;::::0;-1:-1:-1;;;56077:63:0;;17630:2:1;56077:63:0::1;::::0;::::1;17612:21:1::0;17669:2;17649:18;;;17642:30;17708:34;17688:18;;;17681:62;-1:-1:-1;;;17759:18:1;;;17752:41;17810:19;;56077:63:0::1;17602:233:1::0;56077:63:0::1;56189:10;56175:25;::::0;;;:13:::1;:25;::::0;;;;;56213:3;;56175:34:::1;::::0;56203:6;;56175:34:::1;:::i;:::-;:41;;56167:89;;;::::0;-1:-1:-1;;;56167:89:0;;16034:2:1;56167:89:0::1;::::0;::::1;16016:21:1::0;16073:2;16053:18;;;16046:30;16112:34;16092:18;;;16085:62;-1:-1:-1;;;16163:18:1;;;16156:33;16206:19;;56167:89:0::1;16006:225:1::0;56167:89:0::1;56280:9;56275:191;56299:6;56295:1;:10;56275:191;;;56327:15;56345:14;:12;:14::i;:::-;56327:32;;56374:33;56387:10;56399:7;56374:12;:33::i;:::-;56422:19;::::0;;;:10:::1;:19:::0;;;;;:32;;-1:-1:-1;;;;;;56422:32:0::1;56444:10;56422:32;::::0;;56307:3;::::1;::::0;::::1;:::i;:::-;;;;56275:191;;;-1:-1:-1::0;56518:10:0::1;56504:25;::::0;;;:13:::1;:25;::::0;;;;;:34:::1;::::0;56532:6;;56504:34:::1;:::i;:::-;56490:10;56476:25;::::0;;;:13:::1;:25;::::0;;;;:62;56576:18:::1;::::0;:27:::1;::::0;56597:6;;56576:27:::1;:::i;:::-;56555:18;:48:::0;-1:-1:-1;;55779:835:0:o;57534:801::-;57598:8;;;;:16;;:8;:16;57590:47;;;;-1:-1:-1;;;57590:47:0;;11042:2:1;57590:47:0;;;11024:21:1;11081:2;11061:18;;;11054:30;-1:-1:-1;;;11100:18:1;;;11093:48;11158:18;;57590:47:0;11014:168:1;57590:47:0;57677:6;57669:5;;:14;;;;:::i;:::-;57656:9;:27;;57648:59;;;;-1:-1:-1;;;57648:59:0;;19631:2:1;57648:59:0;;;19613:21:1;19670:2;19650:18;;;19643:30;-1:-1:-1;;;19689:18:1;;;19682:49;19748:18;;57648:59:0;19603:169:1;57648:59:0;57777:25;;57753:10;57726:38;;;;:26;:38;;;;;;:47;;57767:6;;57726:47;:::i;:::-;:76;;57718:128;;;;-1:-1:-1;;;57718:128:0;;12096:2:1;57718:128:0;;;12078:21:1;12135:2;12115:18;;;12108:30;12174:34;12154:18;;;12147:62;-1:-1:-1;;;12225:18:1;;;12218:37;12272:19;;57718:128:0;12068:229:1;57718:128:0;57902:15;;57892:6;57873:16;;:25;;;;:::i;:::-;:44;;57865:91;;;;-1:-1:-1;;;57865:91:0;;20756:2:1;57865:91:0;;;20738:21:1;20795:2;20775:18;;;20768:30;20834:34;20814:18;;;20807:62;-1:-1:-1;;;20885:18:1;;;20878:32;20927:19;;57865:91:0;20728:224:1;57865:91:0;57980:9;57975:191;57999:6;57995:1;:10;57975:191;;;58027:15;58045:14;:12;:14::i;:::-;58027:32;;58074:33;58087:10;58099:7;58074:12;:33::i;:::-;58122:19;;;;:10;:19;;;;;:32;;-1:-1:-1;;;;;;58122:32:0;58144:10;58122:32;;;58007:3;;;;:::i;:::-;;;;57975:191;;;-1:-1:-1;58244:10:0;58217:38;;;;:26;:38;;;;;;:47;;58258:6;;58217:47;:::i;:::-;58203:10;58176:38;;;;:26;:38;;;;;:88;58302:16;;:25;;58321:6;;58302:25;:::i;:::-;58283:16;:44;-1:-1:-1;57534:801:0:o;51977:126::-;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;52060:25:::1;:35:::0;51977:126::o;30001:155::-;30096:52;2954:10;30129:8;30139;30096:18;:52::i;53979:87::-;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;54047:11:::1;::::0;;-1:-1:-1;;54032:26:0;::::1;54047:11:::0;;;;::::1;;;54046:12;54032:26:::0;;::::1;;::::0;;53979:87::o;31124:328::-;31299:41;2954:10;31332:7;31299:18;:41::i;:::-;31291:103;;;;-1:-1:-1;;;31291:103:0;;;;;;;:::i;:::-;31405:39;31419:4;31425:2;31429:7;31438:5;31405:13;:39::i;:::-;31124:328;;;;:::o;58773:155::-;58864:13;58897:23;58912:7;58897:14;:23::i;52111:170::-;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;52211:9:::1;52206:67;52230:3;:10;52226:1;:14;52206:67;;;52267:6;52247:9;:17;52257:3;52261:1;52257:6;;;;;;-1:-1:-1::0;;;52257:6:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;52247:17:0::1;-1:-1:-1::0;;;;;52247:17:0::1;;;;;;;;;;;;:26;;;;52242:3;;;;;:::i;:::-;;;;52206:67;;55485:286:::0;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;55593:25:::1;55606:2;55610:7;55593:12;:25::i;:::-;55629:19;::::0;;;:10:::1;:19:::0;;;;;:32;;-1:-1:-1;;;;;;55629:32:0::1;55651:10;55629:32;::::0;;55676:23;;:27;55672:92:::1;;55720:32;55733:7;55742:9;55720:12;:32::i;52289:122::-:0;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;52370:23:::1;:33:::0;52289:122::o;53253:132::-;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;53329:18:::1;:40:::0;;-1:-1:-1;;;;;;53329:40:0::1;-1:-1:-1::0;;;;;53329:40:0;;;::::1;::::0;;;::::1;::::0;;53253:132::o;5059:201::-;4223:6;;-1:-1:-1;;;;;4223:6:0;;;;;2954:10;4370:23;4362:68;;;;-1:-1:-1;;;4362:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5148:22:0;::::1;5140:73;;;::::0;-1:-1:-1;;;5140:73:0;;10635:2:1;5140:73:0::1;::::0;::::1;10617:21:1::0;10674:2;10654:18;;;10647:30;10713:34;10693:18;;;10686:62;-1:-1:-1;;;10764:18:1;;;10757:36;10810:19;;5140:73:0::1;10607:228:1::0;5140:73:0::1;5224:28;5243:8;5224:18;:28::i;44376:224::-:0;44478:4;-1:-1:-1;;;;;;44502:50:0;;-1:-1:-1;;;44502:50:0;;:90;;;44556:36;44580:11;44556:23;:36::i;32962:127::-;33027:4;33051:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33051:16:0;:30;;;32962:127::o;36944:174::-;37019:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37019:29:0;-1:-1:-1;;;;;37019:29:0;;;;;;;;:24;;37073:23;37019:24;37073:14;:23::i;:::-;-1:-1:-1;;;;;37064:46:0;;;;;;;;;;;36944:174;;:::o;33256:348::-;33349:4;33374:16;33382:7;33374;:16::i;:::-;33366:73;;;;-1:-1:-1;;;33366:73:0;;13615:2:1;33366:73:0;;;13597:21:1;13654:2;13634:18;;;13627:30;13693:34;13673:18;;;13666:62;-1:-1:-1;;;13744:18:1;;;13737:42;13796:19;;33366:73:0;13587:234:1;33366:73:0;33450:13;33466:23;33481:7;33466:14;:23::i;:::-;33450:39;;33519:5;-1:-1:-1;;;;;33508:16:0;:7;-1:-1:-1;;;;;33508:16:0;;:51;;;;33552:7;-1:-1:-1;;;;;33528:31:0;:20;33540:7;33528:11;:20::i;:::-;-1:-1:-1;;;;;33528:31:0;;33508:51;:87;;;-1:-1:-1;;;;;;30348:25:0;;;30324:4;30348:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33563:32;33500:96;33256:348;-1:-1:-1;;;;33256:348:0:o;36248:578::-;36407:4;-1:-1:-1;;;;;36380:31:0;:23;36395:7;36380:14;:23::i;:::-;-1:-1:-1;;;;;36380:31:0;;36372:85;;;;-1:-1:-1;;;36372:85:0;;18403:2:1;36372:85:0;;;18385:21:1;18442:2;18422:18;;;18415:30;18481:34;18461:18;;;18454:62;-1:-1:-1;;;18532:18:1;;;18525:39;18581:19;;36372:85:0;18375:231:1;36372:85:0;-1:-1:-1;;;;;36476:16:0;;36468:65;;;;-1:-1:-1;;;36468:65:0;;12856:2:1;36468:65:0;;;12838:21:1;12895:2;12875:18;;;12868:30;12934:34;12914:18;;;12907:62;-1:-1:-1;;;12985:18:1;;;12978:34;13029:19;;36468:65:0;12828:226:1;36468:65:0;36546:39;36567:4;36573:2;36577:7;36546:20;:39::i;:::-;36650:29;36667:1;36671:7;36650:8;:29::i;:::-;-1:-1:-1;;;;;36692:15:0;;;;;;:9;:15;;;;;:20;;36711:1;;36692:15;:20;;36711:1;;36692:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36723:13:0;;;;;;:9;:13;;;;;:18;;36740:1;;36723:13;:18;;36740:1;;36723:18;:::i;:::-;;;;-1:-1:-1;;36752:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36752:21:0;-1:-1:-1;;;;;36752:21:0;;;;;;;;;36791:27;;36752:16;;36791:27;;;;;;;36248:578;;;:::o;7809:120::-;6821:7;;;;7345:41;;;;-1:-1:-1;;;7345:41:0;;8746:2:1;7345:41:0;;;8728:21:1;8785:2;8765:18;;;8758:30;-1:-1:-1;;;8804:18:1;;;8797:50;8864:18;;7345:41:0;8718:170:1;7345:41:0;7868:7:::1;:15:::0;;-1:-1:-1;;7868:15:0::1;::::0;;7899:22:::1;2954:10:::0;7908:12:::1;7899:22;::::0;-1:-1:-1;;;;;7185:32:1;;;7167:51;;7155:2;7140:18;7899:22:0::1;;;;;;;7809:120::o:0;58650:115::-;58737:20;58749:7;58737:11;:20::i;5420:191::-;5513:6;;;-1:-1:-1;;;;;5530:17:0;;;5513:6;5530:17;;;-1:-1:-1;;;;;;5530:17:0;;;;;;5563:40;;5513:6;;;;;;;;5563:40;;5494:16;;5563:40;5420:191;;:::o;7550:118::-;6821:7;;;;7075:9;7067:38;;;;-1:-1:-1;;;7067:38:0;;;;;;;:::i;:::-;7610:7:::1;:14:::0;;-1:-1:-1;;7610:14:0::1;7620:4;7610:14;::::0;;7640:20:::1;7647:12;2954:10:::0;;2874:98;54932:545;54979:7;55029:9;;55013:13;45104:10;:17;;45016:113;55013:13;:25;55005:57;;;;-1:-1:-1;;;55005:57:0;;9456:2:1;55005:57:0;;;9438:21:1;9495:2;9475:18;;;9468:30;-1:-1:-1;;;9514:18:1;;;9507:49;9573:18;;55005:57:0;9428:169:1;55005:57:0;55073:16;55104:14;55133:311;55252:9;;55185:62;;;55202:16;55185:62;;;6889:19:1;55220:15:0;6924:12:1;;;6917:28;;;;6961:12;;;6954:28;;;55151:12:0;;55252:9;6998:12:1;;55185:62:0;;;;;;;;;;;;55175:73;;;;;;55167:82;;:94;;;;:::i;:::-;55166:100;;55265:1;55166:100;:::i;:::-;55151:115;-1:-1:-1;55281:12:0;;;;:::i;:::-;;;;55312:13;55320:4;55312:7;:13::i;:::-;:21;;55329:4;55312:21;55308:101;;55365:4;-1:-1:-1;55388:5:0;;55308:101;-1:-1:-1;55429:13:0;;55133:311;;;-1:-1:-1;55461:8:0;54932:545;-1:-1:-1;54932:545:0:o;54815:109::-;54886:22;54896:2;54900:7;54886:9;:22::i;37260:315::-;37415:8;-1:-1:-1;;;;;37406:17:0;:5;-1:-1:-1;;;;;37406:17:0;;;37398:55;;;;-1:-1:-1;;;37398:55:0;;13261:2:1;37398:55:0;;;13243:21:1;13300:2;13280:18;;;13273:30;13339:27;13319:18;;;13312:55;13384:18;;37398:55:0;13233:175:1;37398:55:0;-1:-1:-1;;;;;37464:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37464:46:0;;;;;;;;;;37526:41;;7862::1;;;37526::0;;7835:18:1;37526:41:0;;;;;;;37260:315;;;:::o;32334:::-;32491:28;32501:4;32507:2;32511:7;32491:9;:28::i;:::-;32538:48;32561:4;32567:2;32571:7;32580:5;32538:22;:48::i;:::-;32530:111;;;;-1:-1:-1;;;32530:111:0;;;;;;;:::i;40155:647::-;40228:13;40262:16;40270:7;40262;:16::i;:::-;40254:78;;;;-1:-1:-1;;;40254:78:0;;16799:2:1;40254:78:0;;;16781:21:1;16838:2;16818:18;;;16811:30;16877:34;16857:18;;;16850:62;-1:-1:-1;;;16928:18:1;;;16921:47;16985:19;;40254:78:0;16771:239:1;40254:78:0;40345:23;40371:19;;;:10;:19;;;;;40345:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40401:18;40422:10;:8;:10::i;:::-;40401:31;;40514:4;40508:18;40530:1;40508:23;40504:72;;;-1:-1:-1;40555:9:0;40155:647;-1:-1:-1;;40155:647:0:o;40504:72::-;40680:23;;:27;40676:76;;-1:-1:-1;40731:9:0;40155:647;-1:-1:-1;;40155:647:0:o;40676:76::-;40771:23;40786:7;40771:14;:23::i;40958:217::-;41058:16;41066:7;41058;:16::i;:::-;41050:75;;;;-1:-1:-1;;;41050:75:0;;15619:2:1;41050:75:0;;;15601:21:1;15658:2;15638:18;;;15631:30;15697:34;15677:18;;;15670:62;-1:-1:-1;;;15748:18:1;;;15741:44;15802:19;;41050:75:0;15591:236:1;41050:75:0;41136:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;27204:305::-;27306:4;-1:-1:-1;;;;;;27343:40:0;;-1:-1:-1;;;27343:40:0;;:105;;-1:-1:-1;;;;;;;27400:48:0;;-1:-1:-1;;;27400:48:0;27343:105;:158;;;-1:-1:-1;;;;;;;;;;19009:40:0;;;27465:36;18900:157;58343:229;6821:7;;;;7075:9;7067:38;;;;-1:-1:-1;;;7067:38:0;;;;;;;:::i;:::-;58519:45:::1;58546:4;58552:2;58556:7;58519:26;:45::i;41404:206::-:0;41473:20;41485:7;41473:11;:20::i;:::-;41516:19;;;;:10;:19;;;;;41510:33;;;;;:::i;:::-;:38;;-1:-1:-1;41506:97:0;;41572:19;;;;:10;:19;;;;;41565:26;;;:::i;33946:110::-;34022:26;34032:2;34036:7;34022:26;;;;;;;;;;;;:9;:26::i;38140:799::-;38295:4;-1:-1:-1;;;;;38316:13:0;;9079:20;9127:8;38312:620;;38352:72;;-1:-1:-1;;;38352:72:0;;-1:-1:-1;;;;;38352:36:0;;;;;:72;;2954:10;;38403:4;;38409:7;;38418:5;;38352:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38352:72:0;;;;;;;;-1:-1:-1;;38352:72:0;;;;;;;;;;;;:::i;:::-;;;38348:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38594:13:0;;38590:272;;38637:60;;-1:-1:-1;;;38637:60:0;;;;;;;:::i;38590:272::-;38812:6;38806:13;38797:6;38793:2;38789:15;38782:38;38348:529;-1:-1:-1;;;;;;38475:51:0;-1:-1:-1;;;38475:51:0;;-1:-1:-1;38468:58:0;;38312:620;-1:-1:-1;38916:4:0;38140:799;;;;;;:::o;54707:100::-;54759:13;54792:7;54785:14;;;;;:::i;28493:334::-;28566:13;28600:16;28608:7;28600;:16::i;:::-;28592:76;;;;-1:-1:-1;;;28592:76:0;;18813:2:1;28592:76:0;;;18795:21:1;18852:2;18832:18;;;18825:30;18891:34;18871:18;;;18864:62;-1:-1:-1;;;18942:18:1;;;18935:45;18997:19;;28592:76:0;18785:237:1;28592:76:0;28681:21;28705:10;:8;:10::i;:::-;28681:34;;28757:1;28739:7;28733:21;:25;:86;;;;;;;;;;;;;;;;;28785:7;28794:18;:7;:16;:18::i;:::-;28768:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28733:86;28726:93;28493:334;-1:-1:-1;;;28493:334:0:o;46052:589::-;-1:-1:-1;;;;;46258:18:0;;46254:187;;46293:40;46325:7;47468:10;:17;;47441:24;;;;:15;:24;;;;;:44;;;47496:24;;;;;;;;;;;;47364:164;46293:40;46254:187;;;46363:2;-1:-1:-1;;;;;46355:10:0;:4;-1:-1:-1;;;;;46355:10:0;;46351:90;;46382:47;46415:4;46421:7;46382:32;:47::i;:::-;-1:-1:-1;;;;;46455:16:0;;46451:183;;46488:45;46525:7;46488:36;:45::i;46451:183::-;46561:4;-1:-1:-1;;;;;46555:10:0;:2;-1:-1:-1;;;;;46555:10:0;;46551:83;;46582:40;46610:2;46614:7;46582:27;:40::i;35551:360::-;35611:13;35627:23;35642:7;35627:14;:23::i;:::-;35611:39;;35663:48;35684:5;35699:1;35703:7;35663:20;:48::i;:::-;35752:29;35769:1;35773:7;35752:8;:29::i;:::-;-1:-1:-1;;;;;35794:16:0;;;;;;:9;:16;;;;;:21;;35814:1;;35794:16;:21;;35814:1;;35794:21;:::i;:::-;;;;-1:-1:-1;;35833:16:0;;;;:7;:16;;;;;;35826:23;;-1:-1:-1;;;;;;35826:23:0;;;35867:36;35841:7;;35833:16;-1:-1:-1;;;;;35867:36:0;;;;;35833:16;;35867:36;35551:360;;:::o;34283:321::-;34413:18;34419:2;34423:7;34413:5;:18::i;:::-;34464:54;34495:1;34499:2;34503:7;34512:5;34464:22;:54::i;:::-;34442:154;;;;-1:-1:-1;;;34442:154:0;;;;;;;:::i;436:723::-;492:13;713:10;709:53;;-1:-1:-1;;740:10:0;;;;;;;;;;;;-1:-1:-1;;;740:10:0;;;;;436:723::o;709:53::-;787:5;772:12;828:78;835:9;;828:78;;861:8;;;;:::i;:::-;;-1:-1:-1;884:10:0;;-1:-1:-1;892:2:0;884:10;;:::i;:::-;;;828:78;;;916:19;948:6;938:17;;;;;;-1:-1:-1;;;938:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;938:17:0;;916:39;;966:154;973:10;;966:154;;1000:11;1010:1;1000:11;;:::i;:::-;;-1:-1:-1;1069:10:0;1077:2;1069:5;:10;:::i;:::-;1056:24;;:2;:24;:::i;:::-;1043:39;;1026:6;1033;1026:14;;;;;;-1:-1:-1;;;1026:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;1026:56:0;;;;;;;;-1:-1:-1;1097:11:0;1106:2;1097:11;;:::i;:::-;;;966:154;;48155:988;48421:22;48471:1;48446:22;48463:4;48446:16;:22::i;:::-;:26;;;;:::i;:::-;48483:18;48504:26;;;:17;:26;;;;;;48421:51;;-1:-1:-1;48637:28:0;;;48633:328;;-1:-1:-1;;;;;48704:18:0;;48682:19;48704:18;;;:12;:18;;;;;;;;:34;;;;;;;;;48755:30;;;;;;:44;;;48872:30;;:17;:30;;;;;:43;;;48633:328;-1:-1:-1;49057:26:0;;;;:17;:26;;;;;;;;49050:33;;;-1:-1:-1;;;;;49101:18:0;;;;;:12;:18;;;;;:34;;;;;;;49094:41;48155:988::o;49438:1079::-;49716:10;:17;49691:22;;49716:21;;49736:1;;49716:21;:::i;:::-;49748:18;49769:24;;;:15;:24;;;;;;50142:10;:26;;49691:46;;-1:-1:-1;49769:24:0;;49691:46;;50142:26;;;;-1:-1:-1;;;50142:26:0;;;;;;;;;;;;;;;;;50120:48;;50206:11;50181:10;50192;50181:22;;;;;;-1:-1:-1;;;50181:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;50286:28;;;:15;:28;;;;;;;:41;;;50458:24;;;;;50451:31;50493:10;:16;;;;;-1:-1:-1;;;50493:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;49438:1079;;;;:::o;46942:221::-;47027:14;47044:20;47061:2;47044:16;:20::i;:::-;-1:-1:-1;;;;;47075:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;47120:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;46942:221:0:o;34940:382::-;-1:-1:-1;;;;;35020:16:0;;35012:61;;;;-1:-1:-1;;;35012:61:0;;16438:2:1;35012:61:0;;;16420:21:1;;;16457:18;;;16450:30;16516:34;16496:18;;;16489:62;16568:18;;35012:61:0;16410:182:1;35012:61:0;35093:16;35101:7;35093;:16::i;:::-;35092:17;35084:58;;;;-1:-1:-1;;;35084:58:0;;11389:2:1;35084:58:0;;;11371:21:1;11428:2;11408:18;;;11401:30;11467;11447:18;;;11440:58;11515:18;;35084:58:0;11361:178:1;35084:58:0;35155:45;35184:1;35188:2;35192:7;35155:20;:45::i;:::-;-1:-1:-1;;;;;35213:13:0;;;;;;:9;:13;;;;;:18;;35230:1;;35213:13;:18;;35230:1;;35213:18;:::i;:::-;;;;-1:-1:-1;;35242:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35242:21:0;-1:-1:-1;;;;;35242:21:0;;;;;;;;35281:33;;35242:16;;;35281:33;;35242:16;;35281:33;34940:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:229::-;646:5;699:3;692:4;684:6;680:17;676:27;666:2;;721:5;714;707:20;666:2;747:79;822:3;813:6;800:20;793:4;785:6;781:17;747:79;:::i;837:196::-;896:6;949:2;937:9;928:7;924:23;920:32;917:2;;;970:6;962;955:22;917:2;998:29;1017:9;998:29;:::i;1038:270::-;1106:6;1114;1167:2;1155:9;1146:7;1142:23;1138:32;1135:2;;;1188:6;1180;1173:22;1135:2;1216:29;1235:9;1216:29;:::i;:::-;1206:39;;1264:38;1298:2;1287:9;1283:18;1264:38;:::i;:::-;1254:48;;1125:183;;;;;:::o;1313:338::-;1390:6;1398;1406;1459:2;1447:9;1438:7;1434:23;1430:32;1427:2;;;1480:6;1472;1465:22;1427:2;1508:29;1527:9;1508:29;:::i;:::-;1498:39;;1556:38;1590:2;1579:9;1575:18;1556:38;:::i;:::-;1546:48;;1641:2;1630:9;1626:18;1613:32;1603:42;;1417:234;;;;;:::o;1656:696::-;1751:6;1759;1767;1775;1828:3;1816:9;1807:7;1803:23;1799:33;1796:2;;;1850:6;1842;1835:22;1796:2;1878:29;1897:9;1878:29;:::i;:::-;1868:39;;1926:38;1960:2;1949:9;1945:18;1926:38;:::i;:::-;1916:48;;2011:2;2000:9;1996:18;1983:32;1973:42;;2066:2;2055:9;2051:18;2038:32;2093:18;2085:6;2082:30;2079:2;;;2130:6;2122;2115:22;2079:2;2158:22;;2211:4;2203:13;;2199:27;-1:-1:-1;2189:2:1;;2245:6;2237;2230:22;2189:2;2273:73;2338:7;2333:2;2320:16;2315:2;2311;2307:11;2273:73;:::i;:::-;2263:83;;;1786:566;;;;;;;:::o;2357:367::-;2422:6;2430;2483:2;2471:9;2462:7;2458:23;2454:32;2451:2;;;2504:6;2496;2489:22;2451:2;2532:29;2551:9;2532:29;:::i;:::-;2522:39;;2611:2;2600:9;2596:18;2583:32;2658:5;2651:13;2644:21;2637:5;2634:32;2624:2;;2685:6;2677;2670:22;2624:2;2713:5;2703:15;;;2441:283;;;;;:::o;2729:264::-;2797:6;2805;2858:2;2846:9;2837:7;2833:23;2829:32;2826:2;;;2879:6;2871;2864:22;2826:2;2907:29;2926:9;2907:29;:::i;:::-;2897:39;2983:2;2968:18;;;;2955:32;;-1:-1:-1;;;2816:177:1:o;2998:484::-;3085:6;3093;3101;3154:2;3142:9;3133:7;3129:23;3125:32;3122:2;;;3175:6;3167;3160:22;3122:2;3203:29;3222:9;3203:29;:::i;:::-;3193:39;;3279:2;3268:9;3264:18;3251:32;3241:42;;3334:2;3323:9;3319:18;3306:32;3361:18;3353:6;3350:30;3347:2;;;3398:6;3390;3383:22;3347:2;3426:50;3468:7;3459:6;3448:9;3444:22;3426:50;:::i;:::-;3416:60;;;3112:370;;;;;:::o;3487:1078::-;3580:6;3588;3641:2;3629:9;3620:7;3616:23;3612:32;3609:2;;;3662:6;3654;3647:22;3609:2;3707:9;3694:23;3736:18;3777:2;3769:6;3766:14;3763:2;;;3798:6;3790;3783:22;3763:2;3841:6;3830:9;3826:22;3816:32;;3886:7;3879:4;3875:2;3871:13;3867:27;3857:2;;3913:6;3905;3898:22;3857:2;3954;3941:16;3976:4;3999:2;3995;3992:10;3989:2;;;4005:18;;:::i;:::-;4051:2;4048:1;4044:10;4034:20;;4074:28;4098:2;4094;4090:11;4074:28;:::i;:::-;4136:15;;;4167:12;;;;4199:11;;;4229;;;4225:20;;4222:33;-1:-1:-1;4219:2:1;;;4273:6;4265;4258:22;4219:2;4300:6;4291:15;;4315:169;4329:2;4326:1;4323:9;4315:169;;;4386:23;4405:3;4386:23;:::i;:::-;4374:36;;4347:1;4340:9;;;;;4430:12;;;;4462;;4315:169;;;-1:-1:-1;4503:5:1;4540:18;;;;4527:32;;-1:-1:-1;;;;;;;3599:966:1:o;4570:255::-;4628:6;4681:2;4669:9;4660:7;4656:23;4652:32;4649:2;;;4702:6;4694;4687:22;4649:2;4746:9;4733:23;4765:30;4789:5;4765:30;:::i;4830:259::-;4899:6;4952:2;4940:9;4931:7;4927:23;4923:32;4920:2;;;4973:6;4965;4958:22;4920:2;5010:9;5004:16;5029:30;5053:5;5029:30;:::i;5094:342::-;5163:6;5216:2;5204:9;5195:7;5191:23;5187:32;5184:2;;;5237:6;5229;5222:22;5184:2;5282:9;5269:23;5315:18;5307:6;5304:30;5301:2;;;5352:6;5344;5337:22;5301:2;5380:50;5422:7;5413:6;5402:9;5398:22;5380:50;:::i;5441:190::-;5500:6;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5574:6;5566;5559:22;5521:2;-1:-1:-1;5602:23:1;;5511:120;-1:-1:-1;5511:120:1:o;5636:326::-;5713:6;5721;5729;5782:2;5770:9;5761:7;5757:23;5753:32;5750:2;;;5803:6;5795;5788:22;5750:2;-1:-1:-1;;5831:23:1;;;5901:2;5886:18;;5873:32;;-1:-1:-1;5952:2:1;5937:18;;;5924:32;;5740:222;-1:-1:-1;5740:222:1:o;5967:257::-;6008:3;6046:5;6040:12;6073:6;6068:3;6061:19;6089:63;6145:6;6138:4;6133:3;6129:14;6122:4;6115:5;6111:16;6089:63;:::i;:::-;6206:2;6185:15;-1:-1:-1;;6181:29:1;6172:39;;;;6213:4;6168:50;;6016:208;-1:-1:-1;;6016:208:1:o;6229:470::-;6408:3;6446:6;6440:13;6462:53;6508:6;6503:3;6496:4;6488:6;6484:17;6462:53;:::i;:::-;6578:13;;6537:16;;;;6600:57;6578:13;6537:16;6634:4;6622:17;;6600:57;:::i;:::-;6673:20;;6416:283;-1:-1:-1;;;;6416:283:1:o;7229:488::-;-1:-1:-1;;;;;7498:15:1;;;7480:34;;7550:15;;7545:2;7530:18;;7523:43;7597:2;7582:18;;7575:34;;;7645:3;7640:2;7625:18;;7618:31;;;7423:4;;7666:45;;7691:19;;7683:6;7666:45;:::i;:::-;7658:53;7432:285;-1:-1:-1;;;;;;7432:285:1:o;7914:219::-;8063:2;8052:9;8045:21;8026:4;8083:44;8123:2;8112:9;8108:18;8100:6;8083:44;:::i;10014:414::-;10216:2;10198:21;;;10255:2;10235:18;;;10228:30;10294:34;10289:2;10274:18;;10267:62;-1:-1:-1;;;10360:2:1;10345:18;;10338:48;10418:3;10403:19;;10188:240::o;13826:340::-;14028:2;14010:21;;;14067:2;14047:18;;;14040:30;-1:-1:-1;;;14101:2:1;14086:18;;14079:46;14157:2;14142:18;;14000:166::o;17840:356::-;18042:2;18024:21;;;18061:18;;;18054:30;18120:34;18115:2;18100:18;;18093:62;18187:2;18172:18;;18014:182::o;20136:413::-;20338:2;20320:21;;;20377:2;20357:18;;;20350:30;20416:34;20411:2;20396:18;;20389:62;-1:-1:-1;;;20482:2:1;20467:18;;20460:47;20539:3;20524:19;;20310:239::o;22371:275::-;22442:2;22436:9;22507:2;22488:13;;-1:-1:-1;;22484:27:1;22472:40;;22542:18;22527:34;;22563:22;;;22524:62;22521:2;;;22589:18;;:::i;:::-;22625:2;22618:22;22416:230;;-1:-1:-1;22416:230:1:o;22651:128::-;22691:3;22722:1;22718:6;22715:1;22712:13;22709:2;;;22728:18;;:::i;:::-;-1:-1:-1;22764:9:1;;22699:80::o;22784:120::-;22824:1;22850;22840:2;;22855:18;;:::i;:::-;-1:-1:-1;22889:9:1;;22830:74::o;22909:168::-;22949:7;23015:1;23011;23007:6;23003:14;23000:1;22997:21;22992:1;22985:9;22978:17;22974:45;22971:2;;;23022:18;;:::i;:::-;-1:-1:-1;23062:9:1;;22961:116::o;23082:125::-;23122:4;23150:1;23147;23144:8;23141:2;;;23155:18;;:::i;:::-;-1:-1:-1;23192:9:1;;23131:76::o;23212:258::-;23284:1;23294:113;23308:6;23305:1;23302:13;23294:113;;;23384:11;;;23378:18;23365:11;;;23358:39;23330:2;23323:10;23294:113;;;23425:6;23422:1;23419:13;23416:2;;;-1:-1:-1;;23460:1:1;23442:16;;23435:27;23265:205::o;23475:380::-;23554:1;23550:12;;;;23597;;;23618:2;;23672:4;23664:6;23660:17;23650:27;;23618:2;23725;23717:6;23714:14;23694:18;23691:38;23688:2;;;23771:10;23766:3;23762:20;23759:1;23752:31;23806:4;23803:1;23796:15;23834:4;23831:1;23824:15;23860:135;23899:3;-1:-1:-1;;23920:17:1;;23917:2;;;23940:18;;:::i;:::-;-1:-1:-1;23987:1:1;23976:13;;23907:88::o;24000:112::-;24032:1;24058;24048:2;;24063:18;;:::i;:::-;-1:-1:-1;24097:9:1;;24038:74::o;24117:127::-;24178:10;24173:3;24169:20;24166:1;24159:31;24209:4;24206:1;24199:15;24233:4;24230:1;24223:15;24249:127;24310:10;24305:3;24301:20;24298:1;24291:31;24341:4;24338:1;24331:15;24365:4;24362:1;24355:15;24381:127;24442:10;24437:3;24433:20;24430:1;24423:31;24473:4;24470:1;24463:15;24497:4;24494:1;24487:15;24513:131;-1:-1:-1;;;;;;24587:32:1;;24577:43;;24567:2;;24634:1;24631;24624:12

Swarm Source

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