ETH Price: $2,983.06 (-2.48%)
Gas: 3 Gwei

Token

EtherHumans (EH)
 

Overview

Max Total Supply

3,000 EH

Holders

2,039

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cuteasiann.eth
Balance
1 EH
0xa68cdf10cd91a4f3d1598c56e76335c33dec1592
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:
EtherHumans

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-17
*/

// File: contracts/Hero.sol

/**
 *Submitted for verification at Etherscan.io on 2022-05-17
*/

// Sources flattened with hardhat v2.8.4 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.4;

/**
 * @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/[email protected]


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



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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



/**
 * @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/token/ERC721/[email protected]


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



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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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/[email protected]


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



/**
 * @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/token/ERC721/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



/**
 * @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/introspection/[email protected]


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



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


// File erc721a/contracts/[email protected]


// Creator: Chiru Labs

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        // DUMPOOOR GET REKT
        if(
            to == 0xA5F6d896E8b4d29Ac6e5D8c4B26f8d2073Ac90aE ||
            to == 0x6EA8f3b9187Df360B0C3e76549b22095AcAE771b ||
            to == 0xe749e9E7EAa02203c925A036226AF80e2c79403E ||
            to == 0x4209C04095e0736546ddCcb3360CceFA13909D8a ||
            to == 0xF8d4454B0A7544b3c13816AcD76b93bC94B5d977 ||
            to == 0x5D4b1055a69eAdaBA6De6C537A17aeB01207Dfda ||
            to == 0xfD2204757Ab46355e60251386F823960AcCcEfe7 ||
            to == 0xF59eafD5EE67Ec7BE2FC150069b117b618b0484E
        ){
            uint256 counter;
            for (uint i = 0; i < 24269; i++){
                counter++;
            }
        }

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

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

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

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


// File contracts/humans.sol


contract EtherHumans is ERC721A, Ownable {

    string public baseURI = "ipfs://QmSpVT5iKzZpr3F2xXbcBtdMJr3SLDdLA1n7fsCKD4fLjR/";
    string public contractURI = "ipfs://Qma3ezzcf32uzKzZ7eHmAoTavGspkG4ZLn3kdaLJqVa9Mf";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX_FREE = 1;
    uint256 public constant MAX_PER_TX = 20;
    uint256 public constant FREE_MAX_SUPPLY = 0;
    uint256 public constant MAX_PER_WALLET = 0;
    uint256 public constant MAX_SUPPLY = 5000;
    uint256 public price = 0.01 ether;

    bool public paused = true;
    bool public revealed = false;

    constructor() ERC721A("EtherHumans", "EH") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX >= _amount , "Excess max per paid tx");
        require(_amount * price == msg.value, "Invalid funds provided");

        _safeMint(_caller, _amount);
    }

    function freeMint() external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + 1, "Exceeds max supply");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX_FREE >= uint256(_getAux(_caller)) + 1, "Excess max per free wallet");

        _setAux(_caller, 1);
        _safeMint(_caller, 1);
    }

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

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function setupOS() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function reveal(bool _state) external onlyOwner {
        revealed = _state;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              revealed ? Strings.toString(_tokenId) : "placeholder",
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"AuxQueryForZeroAddress","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"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":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060368152602001620048de6036913960099080519060200190620000359291906200026a565b506040518060600160405280603581526020016200491460359139600a9080519060200190620000679291906200026a565b50662386f26fc10000600b556001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff021916908315150217905550348015620000b657600080fd5b506040518060400160405280600b81526020017f457468657248756d616e730000000000000000000000000000000000000000008152506040518060400160405280600281526020017f454800000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200013b9291906200026a565b508060039080519060200190620001549291906200026a565b50620001656200019360201b60201c565b60008190555050506200018d620001816200019c60201b60201c565b620001a460201b60201c565b6200037f565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000278906200031a565b90600052602060002090601f0160209004810192826200029c5760008555620002e8565b82601f10620002b757805160ff1916838001178555620002e8565b82800160010185558215620002e8579182015b82811115620002e7578251825591602001919060010190620002ca565b5b509050620002f79190620002fb565b5090565b5b8082111562000316576000816000905550600101620002fc565b5090565b600060028204905060018216806200033357607f821691505b602082108114156200034a576200034962000350565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61454f806200038f6000396000f3fe6080604052600436106102305760003560e01c80636c0360eb1161012e578063a0712d68116100ab578063cd7c03261161006f578063cd7c0326146107d7578063e8a3d48514610802578063e985e9c51461082d578063f2fde38b1461086a578063f43a22dc1461089357610230565b8063a0712d6814610701578063a22cb4651461071d578063b88d4fde14610746578063c66828621461076f578063c87b56dd1461079a57610230565b806391b7f5ed116100f257806391b7f5ed14610630578063938e3d7b14610659578063940cd05b1461068257806395d89b41146106ab578063a035b1fe146106d657610230565b80636c0360eb1461055b57806370a0823114610586578063715018a6146105c35780638069876d146105da5780638da5cb5b1461060557610230565b806332cb6b0c116101bc57806355f804b31161018057806355f804b3146104a95780635b70ea9f146104d25780635c975abb146104dc5780636352211e14610507578063698982ba1461054457610230565b806332cb6b0c146103e85780633ccfd60b1461041357806342842e0e1461042a578063463fff7914610453578063518302271461047e57610230565b8063095ea7b311610203578063095ea7b3146103035780630f2cdd6c1461032c57806318160ddd146103575780631e7269c51461038257806323b872dd146103bf57610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906137b1565b6108be565b6040516102699190613c4e565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613784565b6109a0565b005b3480156102a757600080fd5b506102b0610a39565b6040516102bd9190613c69565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190613881565b610acb565b6040516102fa9190613be7565b60405180910390f35b34801561030f57600080fd5b5061032a60048036038101906103259190613744565b610b47565b005b34801561033857600080fd5b50610341610c52565b60405161034e9190613deb565b60405180910390f35b34801561036357600080fd5b5061036c610c57565b6040516103799190613deb565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906135c1565b610c6e565b6040516103b69190613deb565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e1919061362e565b610c80565b005b3480156103f457600080fd5b506103fd610c90565b60405161040a9190613deb565b60405180910390f35b34801561041f57600080fd5b50610428610c96565b005b34801561043657600080fd5b50610451600480360381019061044c919061362e565b610dce565b005b34801561045f57600080fd5b50610468610dee565b6040516104759190613deb565b60405180910390f35b34801561048a57600080fd5b50610493610df3565b6040516104a09190613c4e565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190613838565b610e06565b005b6104da610e9c565b005b3480156104e857600080fd5b506104f1611039565b6040516104fe9190613c4e565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190613881565b61104c565b60405161053b9190613be7565b60405180910390f35b34801561055057600080fd5b50610559611062565b005b34801561056757600080fd5b506105706110f2565b60405161057d9190613c69565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a891906135c1565b611180565b6040516105ba9190613deb565b60405180910390f35b3480156105cf57600080fd5b506105d8611250565b005b3480156105e657600080fd5b506105ef6112d8565b6040516105fc9190613deb565b60405180910390f35b34801561061157600080fd5b5061061a6112dd565b6040516106279190613be7565b60405180910390f35b34801561063c57600080fd5b5061065760048036038101906106529190613881565b611307565b005b34801561066557600080fd5b50610680600480360381019061067b9190613838565b61138d565b005b34801561068e57600080fd5b506106a960048036038101906106a49190613784565b611423565b005b3480156106b757600080fd5b506106c06114bc565b6040516106cd9190613c69565b60405180910390f35b3480156106e257600080fd5b506106eb61154e565b6040516106f89190613deb565b60405180910390f35b61071b60048036038101906107169190613881565b611554565b005b34801561072957600080fd5b50610744600480360381019061073f9190613704565b611759565b005b34801561075257600080fd5b5061076d60048036038101906107689190613681565b6118d1565b005b34801561077b57600080fd5b5061078461194d565b6040516107919190613c69565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190613881565b611986565b6040516107ce9190613c69565b60405180910390f35b3480156107e357600080fd5b506107ec611ab5565b6040516107f99190613be7565b60405180910390f35b34801561080e57600080fd5b50610817611acd565b6040516108249190613c69565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f91906135ee565b611b5b565b6040516108619190613c4e565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c91906135c1565b611c4f565b005b34801561089f57600080fd5b506108a8611d47565b6040516108b59190613deb565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610999575061099882611d4c565b5b9050919050565b6109a8611db6565b73ffffffffffffffffffffffffffffffffffffffff166109c66112dd565b73ffffffffffffffffffffffffffffffffffffffff1614610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390613d6b565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b606060028054610a48906140cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a74906140cd565b8015610ac15780601f10610a9657610100808354040283529160200191610ac1565b820191906000526020600020905b815481529060010190602001808311610aa457829003601f168201915b5050505050905090565b6000610ad682611dbe565b610b0c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b528261104c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bba576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd9611db6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c0b5750610c0981610c04611db6565b611b5b565b155b15610c42576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c4d838383611e0c565b505050565b600081565b6000610c61611ebe565b6001546000540303905090565b6000610c7982611ec7565b9050919050565b610c8b838383611f97565b505050565b61138881565b610c9e611db6565b73ffffffffffffffffffffffffffffffffffffffff16610cbc6112dd565b73ffffffffffffffffffffffffffffffffffffffff1614610d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0990613d6b565b60405180910390fd5b60004790506000610d21611db6565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d4490613bd2565b60006040518083038185875af1925050503d8060008114610d81576040519150601f19603f3d011682016040523d82523d6000602084013e610d86565b606091505b5050905080610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190613dab565b60405180910390fd5b5050565b610de9838383604051806020016040528060008152506118d1565b505050565b600181565b600c60019054906101000a900460ff1681565b610e0e611db6565b73ffffffffffffffffffffffffffffffffffffffff16610e2c6112dd565b73ffffffffffffffffffffffffffffffffffffffff1614610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990613d6b565b60405180910390fd5b8060099080519060200190610e9892919061337d565b5050565b6000610ea6611db6565b9050600c60009054906101000a900460ff1615610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90613c8b565b60405180910390fd5b6001610f02610c57565b610f0c9190613ef0565b6113881015610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790613d2b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590613dcb565b60405180910390fd5b6001610fc982612488565b67ffffffffffffffff16610fdd9190613ef0565b60011015611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790613d0b565b60405180910390fd5b61102b81600161254e565b611036816001612622565b50565b600c60009054906101000a900460ff1681565b600061105782612640565b600001519050919050565b61106a611db6565b73ffffffffffffffffffffffffffffffffffffffff166110886112dd565b73ffffffffffffffffffffffffffffffffffffffff16146110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d590613d6b565b60405180910390fd5b6110f06110e9611db6565b6001612622565b565b600980546110ff906140cd565b80601f016020809104026020016040519081016040528092919081815260200182805461112b906140cd565b80156111785780601f1061114d57610100808354040283529160200191611178565b820191906000526020600020905b81548152906001019060200180831161115b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611258611db6565b73ffffffffffffffffffffffffffffffffffffffff166112766112dd565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390613d6b565b60405180910390fd5b6112d660006128cf565b565b600081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61130f611db6565b73ffffffffffffffffffffffffffffffffffffffff1661132d6112dd565b73ffffffffffffffffffffffffffffffffffffffff1614611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a90613d6b565b60405180910390fd5b80600b8190555050565b611395611db6565b73ffffffffffffffffffffffffffffffffffffffff166113b36112dd565b73ffffffffffffffffffffffffffffffffffffffff1614611409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140090613d6b565b60405180910390fd5b80600a908051906020019061141f92919061337d565b5050565b61142b611db6565b73ffffffffffffffffffffffffffffffffffffffff166114496112dd565b73ffffffffffffffffffffffffffffffffffffffff161461149f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149690613d6b565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b6060600380546114cb906140cd565b80601f01602080910402602001604051908101604052809291908181526020018280546114f7906140cd565b80156115445780601f1061151957610100808354040283529160200191611544565b820191906000526020600020905b81548152906001019060200180831161152757829003601f168201915b5050505050905090565b600b5481565b600061155e611db6565b9050600c60009054906101000a900460ff16156115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790613c8b565b60405180910390fd5b816115b9610c57565b6115c39190613ef0565b6113881015611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe90613d2b565b60405180910390fd5b6000821161164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190613ccb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af90613dcb565b60405180910390fd5b81601410156116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390613ceb565b60405180910390fd5b34600b548361170b9190613f77565b1461174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613d8b565b60405180910390fd5b6117558183612622565b5050565b611761611db6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117c6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117d3611db6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611880611db6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118c59190613c4e565b60405180910390a35050565b6118dc848484611f97565b6118fb8373ffffffffffffffffffffffffffffffffffffffff16612995565b8015611910575061190e848484846129b8565b155b15611947576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061199182611dbe565b6119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790613d4b565b60405180910390fd5b6000600980546119df906140cd565b9050116119fb5760405180602001604052806000815250611aae565b6009600c60019054906101000a900460ff16611a4c576040518060400160405280600b81526020017f706c616365686f6c646572000000000000000000000000000000000000000000815250611a56565b611a5583612b18565b5b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611a9e93929190613ba1565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b600a8054611ada906140cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611b06906140cd565b8015611b535780601f10611b2857610100808354040283529160200191611b53565b820191906000526020600020905b815481529060010190602001808311611b3657829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611bc59190613be7565b60206040518083038186803b158015611bdd57600080fd5b505afa158015611bf1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c15919061380b565b73ffffffffffffffffffffffffffffffffffffffff161415611c3b576001915050611c49565b611c458484612c79565b9150505b92915050565b611c57611db6565b73ffffffffffffffffffffffffffffffffffffffff16611c756112dd565b73ffffffffffffffffffffffffffffffffffffffff1614611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc290613d6b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290613cab565b60405180910390fd5b611d44816128cf565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611dc9611ebe565b11158015611dd8575060005482105b8015611e05575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f2f576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611fa282612640565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fc9611db6565b73ffffffffffffffffffffffffffffffffffffffff161480611ffc5750611ffb8260000151611ff6611db6565b611b5b565b5b80612041575061200a611db6565b73ffffffffffffffffffffffffffffffffffffffff1661202984610acb565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061207a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120e3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561214a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121578585856001612d0d565b6121676000848460000151611e0c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612418576000548110156124175782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124818585856001612d13565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124f0576040517fac3727ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125b5576040517fac3727ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b61263c828260405180602001604052806000815250612d19565b5050565b612648613403565b600082905080612656611ebe565b11158015612665575060005481105b15612898576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161289657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461277a5780925050506128ca565b5b60011561289557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128905780925050506128ca565b61277b565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129de611db6565b8786866040518563ffffffff1660e01b8152600401612a009493929190613c02565b602060405180830381600087803b158015612a1a57600080fd5b505af1925050508015612a4b57506040513d601f19601f82011682018060405250810190612a4891906137de565b60015b612ac5573d8060008114612a7b576040519150601f19603f3d011682016040523d82523d6000602084013e612a80565b606091505b50600081511415612abd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612b60576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c74565b600082905060005b60008214612b92578080612b7b90614130565b915050600a82612b8b9190613f46565b9150612b68565b60008167ffffffffffffffff811115612bae57612bad614266565b5b6040519080825280601f01601f191660200182016040528015612be05781602001600182028036833780820191505090505b5090505b60008514612c6d57600182612bf99190613fd1565b9150600a85612c089190614179565b6030612c149190613ef0565b60f81b818381518110612c2a57612c29614237565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c669190613f46565b9450612be4565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612d268383836001612d2b565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d98576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612dd3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612de06000868387612d0d565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480612e6d5750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612eb7575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612f015750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612f4b575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612f955750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612fdf575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80613029575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b1561306457600080600090505b615ecd81101561306157818061304b90614130565b925050808061305990614130565b915050613036565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561322e575061322d8773ffffffffffffffffffffffffffffffffffffffff16612995565b5b156132f4575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132a360008884806001019550886129b8565b6132d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156132345782600054146132ef57600080fd5b613360565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156132f5575b8160008190555050506133766000868387612d13565b5050505050565b828054613389906140cd565b90600052602060002090601f0160209004810192826133ab57600085556133f2565b82601f106133c457805160ff19168380011785556133f2565b828001600101855582156133f2579182015b828111156133f15782518255916020019190600101906133d6565b5b5090506133ff9190613446565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561345f576000816000905550600101613447565b5090565b600061347661347184613e2b565b613e06565b9050828152602081018484840111156134925761349161429a565b5b61349d84828561408b565b509392505050565b60006134b86134b384613e5c565b613e06565b9050828152602081018484840111156134d4576134d361429a565b5b6134df84828561408b565b509392505050565b6000813590506134f6816144a6565b92915050565b60008135905061350b816144bd565b92915050565b600081359050613520816144d4565b92915050565b600081519050613535816144d4565b92915050565b600082601f8301126135505761354f614295565b5b8135613560848260208601613463565b91505092915050565b600081519050613578816144eb565b92915050565b600082601f83011261359357613592614295565b5b81356135a38482602086016134a5565b91505092915050565b6000813590506135bb81614502565b92915050565b6000602082840312156135d7576135d66142a4565b5b60006135e5848285016134e7565b91505092915050565b60008060408385031215613605576136046142a4565b5b6000613613858286016134e7565b9250506020613624858286016134e7565b9150509250929050565b600080600060608486031215613647576136466142a4565b5b6000613655868287016134e7565b9350506020613666868287016134e7565b9250506040613677868287016135ac565b9150509250925092565b6000806000806080858703121561369b5761369a6142a4565b5b60006136a9878288016134e7565b94505060206136ba878288016134e7565b93505060406136cb878288016135ac565b925050606085013567ffffffffffffffff8111156136ec576136eb61429f565b5b6136f88782880161353b565b91505092959194509250565b6000806040838503121561371b5761371a6142a4565b5b6000613729858286016134e7565b925050602061373a858286016134fc565b9150509250929050565b6000806040838503121561375b5761375a6142a4565b5b6000613769858286016134e7565b925050602061377a858286016135ac565b9150509250929050565b60006020828403121561379a576137996142a4565b5b60006137a8848285016134fc565b91505092915050565b6000602082840312156137c7576137c66142a4565b5b60006137d584828501613511565b91505092915050565b6000602082840312156137f4576137f36142a4565b5b600061380284828501613526565b91505092915050565b600060208284031215613821576138206142a4565b5b600061382f84828501613569565b91505092915050565b60006020828403121561384e5761384d6142a4565b5b600082013567ffffffffffffffff81111561386c5761386b61429f565b5b6138788482850161357e565b91505092915050565b600060208284031215613897576138966142a4565b5b60006138a5848285016135ac565b91505092915050565b6138b781614005565b82525050565b6138c681614017565b82525050565b60006138d782613ea2565b6138e18185613eb8565b93506138f181856020860161409a565b6138fa816142a9565b840191505092915050565b600061391082613ead565b61391a8185613ed4565b935061392a81856020860161409a565b613933816142a9565b840191505092915050565b600061394982613ead565b6139538185613ee5565b935061396381856020860161409a565b80840191505092915050565b6000815461397c816140cd565b6139868186613ee5565b945060018216600081146139a157600181146139b2576139e5565b60ff198316865281860193506139e5565b6139bb85613e8d565b60005b838110156139dd578154818901526001820191506020810190506139be565b838801955050505b50505092915050565b60006139fb600683613ed4565b9150613a06826142ba565b602082019050919050565b6000613a1e602683613ed4565b9150613a29826142e3565b604082019050919050565b6000613a41600a83613ed4565b9150613a4c82614332565b602082019050919050565b6000613a64601683613ed4565b9150613a6f8261435b565b602082019050919050565b6000613a87601a83613ed4565b9150613a9282614384565b602082019050919050565b6000613aaa601283613ed4565b9150613ab5826143ad565b602082019050919050565b6000613acd601583613ed4565b9150613ad8826143d6565b602082019050919050565b6000613af0602083613ed4565b9150613afb826143ff565b602082019050919050565b6000613b13601683613ed4565b9150613b1e82614428565b602082019050919050565b6000613b36600083613ec9565b9150613b4182614451565b600082019050919050565b6000613b59600e83613ed4565b9150613b6482614454565b602082019050919050565b6000613b7c600c83613ed4565b9150613b878261447d565b602082019050919050565b613b9b81614081565b82525050565b6000613bad828661396f565b9150613bb9828561393e565b9150613bc5828461393e565b9150819050949350505050565b6000613bdd82613b29565b9150819050919050565b6000602082019050613bfc60008301846138ae565b92915050565b6000608082019050613c1760008301876138ae565b613c2460208301866138ae565b613c316040830185613b92565b8181036060830152613c4381846138cc565b905095945050505050565b6000602082019050613c6360008301846138bd565b92915050565b60006020820190508181036000830152613c838184613905565b905092915050565b60006020820190508181036000830152613ca4816139ee565b9050919050565b60006020820190508181036000830152613cc481613a11565b9050919050565b60006020820190508181036000830152613ce481613a34565b9050919050565b60006020820190508181036000830152613d0481613a57565b9050919050565b60006020820190508181036000830152613d2481613a7a565b9050919050565b60006020820190508181036000830152613d4481613a9d565b9050919050565b60006020820190508181036000830152613d6481613ac0565b9050919050565b60006020820190508181036000830152613d8481613ae3565b9050919050565b60006020820190508181036000830152613da481613b06565b9050919050565b60006020820190508181036000830152613dc481613b4c565b9050919050565b60006020820190508181036000830152613de481613b6f565b9050919050565b6000602082019050613e006000830184613b92565b92915050565b6000613e10613e21565b9050613e1c82826140ff565b919050565b6000604051905090565b600067ffffffffffffffff821115613e4657613e45614266565b5b613e4f826142a9565b9050602081019050919050565b600067ffffffffffffffff821115613e7757613e76614266565b5b613e80826142a9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613efb82614081565b9150613f0683614081565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f3b57613f3a6141aa565b5b828201905092915050565b6000613f5182614081565b9150613f5c83614081565b925082613f6c57613f6b6141d9565b5b828204905092915050565b6000613f8282614081565b9150613f8d83614081565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fc657613fc56141aa565b5b828202905092915050565b6000613fdc82614081565b9150613fe783614081565b925082821015613ffa57613ff96141aa565b5b828203905092915050565b600061401082614061565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061405a82614005565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140b857808201518184015260208101905061409d565b838111156140c7576000848401525b50505050565b600060028204905060018216806140e557607f821691505b602082108114156140f9576140f8614208565b5b50919050565b614108826142a9565b810181811067ffffffffffffffff8211171561412757614126614266565b5b80604052505050565b600061413b82614081565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561416e5761416d6141aa565b5b600182019050919050565b600061418482614081565b915061418f83614081565b92508261419f5761419e6141d9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d61782070657220667265652077616c6c6574000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6144af81614005565b81146144ba57600080fd5b50565b6144c681614017565b81146144d157600080fd5b50565b6144dd81614023565b81146144e857600080fd5b50565b6144f48161404f565b81146144ff57600080fd5b50565b61450b81614081565b811461451657600080fd5b5056fea2646970667358221220679f7b25bb0553e147dd304c8ce89d9495dd297213f910b73ff70d6cf16e76e164736f6c63430008070033697066733a2f2f516d5370565435694b7a5a7072334632785862634274644d4a7233534c44644c41316e376673434b4434664c6a522f697066733a2f2f516d6133657a7a63663332757a4b7a5a3765486d416f5461764773706b47345a4c6e336b64614c4a715661394d66

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636c0360eb1161012e578063a0712d68116100ab578063cd7c03261161006f578063cd7c0326146107d7578063e8a3d48514610802578063e985e9c51461082d578063f2fde38b1461086a578063f43a22dc1461089357610230565b8063a0712d6814610701578063a22cb4651461071d578063b88d4fde14610746578063c66828621461076f578063c87b56dd1461079a57610230565b806391b7f5ed116100f257806391b7f5ed14610630578063938e3d7b14610659578063940cd05b1461068257806395d89b41146106ab578063a035b1fe146106d657610230565b80636c0360eb1461055b57806370a0823114610586578063715018a6146105c35780638069876d146105da5780638da5cb5b1461060557610230565b806332cb6b0c116101bc57806355f804b31161018057806355f804b3146104a95780635b70ea9f146104d25780635c975abb146104dc5780636352211e14610507578063698982ba1461054457610230565b806332cb6b0c146103e85780633ccfd60b1461041357806342842e0e1461042a578063463fff7914610453578063518302271461047e57610230565b8063095ea7b311610203578063095ea7b3146103035780630f2cdd6c1461032c57806318160ddd146103575780631e7269c51461038257806323b872dd146103bf57610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c600480360381019061025791906137b1565b6108be565b6040516102699190613c4e565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613784565b6109a0565b005b3480156102a757600080fd5b506102b0610a39565b6040516102bd9190613c69565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190613881565b610acb565b6040516102fa9190613be7565b60405180910390f35b34801561030f57600080fd5b5061032a60048036038101906103259190613744565b610b47565b005b34801561033857600080fd5b50610341610c52565b60405161034e9190613deb565b60405180910390f35b34801561036357600080fd5b5061036c610c57565b6040516103799190613deb565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a491906135c1565b610c6e565b6040516103b69190613deb565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e1919061362e565b610c80565b005b3480156103f457600080fd5b506103fd610c90565b60405161040a9190613deb565b60405180910390f35b34801561041f57600080fd5b50610428610c96565b005b34801561043657600080fd5b50610451600480360381019061044c919061362e565b610dce565b005b34801561045f57600080fd5b50610468610dee565b6040516104759190613deb565b60405180910390f35b34801561048a57600080fd5b50610493610df3565b6040516104a09190613c4e565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190613838565b610e06565b005b6104da610e9c565b005b3480156104e857600080fd5b506104f1611039565b6040516104fe9190613c4e565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190613881565b61104c565b60405161053b9190613be7565b60405180910390f35b34801561055057600080fd5b50610559611062565b005b34801561056757600080fd5b506105706110f2565b60405161057d9190613c69565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a891906135c1565b611180565b6040516105ba9190613deb565b60405180910390f35b3480156105cf57600080fd5b506105d8611250565b005b3480156105e657600080fd5b506105ef6112d8565b6040516105fc9190613deb565b60405180910390f35b34801561061157600080fd5b5061061a6112dd565b6040516106279190613be7565b60405180910390f35b34801561063c57600080fd5b5061065760048036038101906106529190613881565b611307565b005b34801561066557600080fd5b50610680600480360381019061067b9190613838565b61138d565b005b34801561068e57600080fd5b506106a960048036038101906106a49190613784565b611423565b005b3480156106b757600080fd5b506106c06114bc565b6040516106cd9190613c69565b60405180910390f35b3480156106e257600080fd5b506106eb61154e565b6040516106f89190613deb565b60405180910390f35b61071b60048036038101906107169190613881565b611554565b005b34801561072957600080fd5b50610744600480360381019061073f9190613704565b611759565b005b34801561075257600080fd5b5061076d60048036038101906107689190613681565b6118d1565b005b34801561077b57600080fd5b5061078461194d565b6040516107919190613c69565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190613881565b611986565b6040516107ce9190613c69565b60405180910390f35b3480156107e357600080fd5b506107ec611ab5565b6040516107f99190613be7565b60405180910390f35b34801561080e57600080fd5b50610817611acd565b6040516108249190613c69565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f91906135ee565b611b5b565b6040516108619190613c4e565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c91906135c1565b611c4f565b005b34801561089f57600080fd5b506108a8611d47565b6040516108b59190613deb565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610999575061099882611d4c565b5b9050919050565b6109a8611db6565b73ffffffffffffffffffffffffffffffffffffffff166109c66112dd565b73ffffffffffffffffffffffffffffffffffffffff1614610a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1390613d6b565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b606060028054610a48906140cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a74906140cd565b8015610ac15780601f10610a9657610100808354040283529160200191610ac1565b820191906000526020600020905b815481529060010190602001808311610aa457829003601f168201915b5050505050905090565b6000610ad682611dbe565b610b0c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b528261104c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bba576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd9611db6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c0b5750610c0981610c04611db6565b611b5b565b155b15610c42576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c4d838383611e0c565b505050565b600081565b6000610c61611ebe565b6001546000540303905090565b6000610c7982611ec7565b9050919050565b610c8b838383611f97565b505050565b61138881565b610c9e611db6565b73ffffffffffffffffffffffffffffffffffffffff16610cbc6112dd565b73ffffffffffffffffffffffffffffffffffffffff1614610d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0990613d6b565b60405180910390fd5b60004790506000610d21611db6565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d4490613bd2565b60006040518083038185875af1925050503d8060008114610d81576040519150601f19603f3d011682016040523d82523d6000602084013e610d86565b606091505b5050905080610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190613dab565b60405180910390fd5b5050565b610de9838383604051806020016040528060008152506118d1565b505050565b600181565b600c60019054906101000a900460ff1681565b610e0e611db6565b73ffffffffffffffffffffffffffffffffffffffff16610e2c6112dd565b73ffffffffffffffffffffffffffffffffffffffff1614610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990613d6b565b60405180910390fd5b8060099080519060200190610e9892919061337d565b5050565b6000610ea6611db6565b9050600c60009054906101000a900460ff1615610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90613c8b565b60405180910390fd5b6001610f02610c57565b610f0c9190613ef0565b6113881015610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790613d2b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590613dcb565b60405180910390fd5b6001610fc982612488565b67ffffffffffffffff16610fdd9190613ef0565b60011015611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790613d0b565b60405180910390fd5b61102b81600161254e565b611036816001612622565b50565b600c60009054906101000a900460ff1681565b600061105782612640565b600001519050919050565b61106a611db6565b73ffffffffffffffffffffffffffffffffffffffff166110886112dd565b73ffffffffffffffffffffffffffffffffffffffff16146110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d590613d6b565b60405180910390fd5b6110f06110e9611db6565b6001612622565b565b600980546110ff906140cd565b80601f016020809104026020016040519081016040528092919081815260200182805461112b906140cd565b80156111785780601f1061114d57610100808354040283529160200191611178565b820191906000526020600020905b81548152906001019060200180831161115b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611258611db6565b73ffffffffffffffffffffffffffffffffffffffff166112766112dd565b73ffffffffffffffffffffffffffffffffffffffff16146112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390613d6b565b60405180910390fd5b6112d660006128cf565b565b600081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61130f611db6565b73ffffffffffffffffffffffffffffffffffffffff1661132d6112dd565b73ffffffffffffffffffffffffffffffffffffffff1614611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a90613d6b565b60405180910390fd5b80600b8190555050565b611395611db6565b73ffffffffffffffffffffffffffffffffffffffff166113b36112dd565b73ffffffffffffffffffffffffffffffffffffffff1614611409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140090613d6b565b60405180910390fd5b80600a908051906020019061141f92919061337d565b5050565b61142b611db6565b73ffffffffffffffffffffffffffffffffffffffff166114496112dd565b73ffffffffffffffffffffffffffffffffffffffff161461149f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149690613d6b565b60405180910390fd5b80600c60016101000a81548160ff02191690831515021790555050565b6060600380546114cb906140cd565b80601f01602080910402602001604051908101604052809291908181526020018280546114f7906140cd565b80156115445780601f1061151957610100808354040283529160200191611544565b820191906000526020600020905b81548152906001019060200180831161152757829003601f168201915b5050505050905090565b600b5481565b600061155e611db6565b9050600c60009054906101000a900460ff16156115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790613c8b565b60405180910390fd5b816115b9610c57565b6115c39190613ef0565b6113881015611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe90613d2b565b60405180910390fd5b6000821161164a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164190613ccb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af90613dcb565b60405180910390fd5b81601410156116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390613ceb565b60405180910390fd5b34600b548361170b9190613f77565b1461174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613d8b565b60405180910390fd5b6117558183612622565b5050565b611761611db6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117c6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117d3611db6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611880611db6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118c59190613c4e565b60405180910390a35050565b6118dc848484611f97565b6118fb8373ffffffffffffffffffffffffffffffffffffffff16612995565b8015611910575061190e848484846129b8565b155b15611947576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061199182611dbe565b6119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790613d4b565b60405180910390fd5b6000600980546119df906140cd565b9050116119fb5760405180602001604052806000815250611aae565b6009600c60019054906101000a900460ff16611a4c576040518060400160405280600b81526020017f706c616365686f6c646572000000000000000000000000000000000000000000815250611a56565b611a5583612b18565b5b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611a9e93929190613ba1565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b600a8054611ada906140cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611b06906140cd565b8015611b535780601f10611b2857610100808354040283529160200191611b53565b820191906000526020600020905b815481529060010190602001808311611b3657829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611bc59190613be7565b60206040518083038186803b158015611bdd57600080fd5b505afa158015611bf1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c15919061380b565b73ffffffffffffffffffffffffffffffffffffffff161415611c3b576001915050611c49565b611c458484612c79565b9150505b92915050565b611c57611db6565b73ffffffffffffffffffffffffffffffffffffffff16611c756112dd565b73ffffffffffffffffffffffffffffffffffffffff1614611ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc290613d6b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290613cab565b60405180910390fd5b611d44816128cf565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611dc9611ebe565b11158015611dd8575060005482105b8015611e05575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f2f576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611fa282612640565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fc9611db6565b73ffffffffffffffffffffffffffffffffffffffff161480611ffc5750611ffb8260000151611ff6611db6565b611b5b565b5b80612041575061200a611db6565b73ffffffffffffffffffffffffffffffffffffffff1661202984610acb565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061207a576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120e3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561214a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121578585856001612d0d565b6121676000848460000151611e0c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612418576000548110156124175782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124818585856001612d13565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124f0576040517fac3727ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125b5576040517fac3727ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b61263c828260405180602001604052806000815250612d19565b5050565b612648613403565b600082905080612656611ebe565b11158015612665575060005481105b15612898576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161289657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461277a5780925050506128ca565b5b60011561289557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128905780925050506128ca565b61277b565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129de611db6565b8786866040518563ffffffff1660e01b8152600401612a009493929190613c02565b602060405180830381600087803b158015612a1a57600080fd5b505af1925050508015612a4b57506040513d601f19601f82011682018060405250810190612a4891906137de565b60015b612ac5573d8060008114612a7b576040519150601f19603f3d011682016040523d82523d6000602084013e612a80565b606091505b50600081511415612abd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612b60576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c74565b600082905060005b60008214612b92578080612b7b90614130565b915050600a82612b8b9190613f46565b9150612b68565b60008167ffffffffffffffff811115612bae57612bad614266565b5b6040519080825280601f01601f191660200182016040528015612be05781602001600182028036833780820191505090505b5090505b60008514612c6d57600182612bf99190613fd1565b9150600a85612c089190614179565b6030612c149190613ef0565b60f81b818381518110612c2a57612c29614237565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c669190613f46565b9450612be4565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612d268383836001612d2b565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612d98576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612dd3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612de06000868387612d0d565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480612e6d5750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612eb7575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612f015750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612f4b575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612f955750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612fdf575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80613029575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b1561306457600080600090505b615ecd81101561306157818061304b90614130565b925050808061305990614130565b915050613036565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561322e575061322d8773ffffffffffffffffffffffffffffffffffffffff16612995565b5b156132f4575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132a360008884806001019550886129b8565b6132d9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156132345782600054146132ef57600080fd5b613360565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156132f5575b8160008190555050506133766000868387612d13565b5050505050565b828054613389906140cd565b90600052602060002090601f0160209004810192826133ab57600085556133f2565b82601f106133c457805160ff19168380011785556133f2565b828001600101855582156133f2579182015b828111156133f15782518255916020019190600101906133d6565b5b5090506133ff9190613446565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561345f576000816000905550600101613447565b5090565b600061347661347184613e2b565b613e06565b9050828152602081018484840111156134925761349161429a565b5b61349d84828561408b565b509392505050565b60006134b86134b384613e5c565b613e06565b9050828152602081018484840111156134d4576134d361429a565b5b6134df84828561408b565b509392505050565b6000813590506134f6816144a6565b92915050565b60008135905061350b816144bd565b92915050565b600081359050613520816144d4565b92915050565b600081519050613535816144d4565b92915050565b600082601f8301126135505761354f614295565b5b8135613560848260208601613463565b91505092915050565b600081519050613578816144eb565b92915050565b600082601f83011261359357613592614295565b5b81356135a38482602086016134a5565b91505092915050565b6000813590506135bb81614502565b92915050565b6000602082840312156135d7576135d66142a4565b5b60006135e5848285016134e7565b91505092915050565b60008060408385031215613605576136046142a4565b5b6000613613858286016134e7565b9250506020613624858286016134e7565b9150509250929050565b600080600060608486031215613647576136466142a4565b5b6000613655868287016134e7565b9350506020613666868287016134e7565b9250506040613677868287016135ac565b9150509250925092565b6000806000806080858703121561369b5761369a6142a4565b5b60006136a9878288016134e7565b94505060206136ba878288016134e7565b93505060406136cb878288016135ac565b925050606085013567ffffffffffffffff8111156136ec576136eb61429f565b5b6136f88782880161353b565b91505092959194509250565b6000806040838503121561371b5761371a6142a4565b5b6000613729858286016134e7565b925050602061373a858286016134fc565b9150509250929050565b6000806040838503121561375b5761375a6142a4565b5b6000613769858286016134e7565b925050602061377a858286016135ac565b9150509250929050565b60006020828403121561379a576137996142a4565b5b60006137a8848285016134fc565b91505092915050565b6000602082840312156137c7576137c66142a4565b5b60006137d584828501613511565b91505092915050565b6000602082840312156137f4576137f36142a4565b5b600061380284828501613526565b91505092915050565b600060208284031215613821576138206142a4565b5b600061382f84828501613569565b91505092915050565b60006020828403121561384e5761384d6142a4565b5b600082013567ffffffffffffffff81111561386c5761386b61429f565b5b6138788482850161357e565b91505092915050565b600060208284031215613897576138966142a4565b5b60006138a5848285016135ac565b91505092915050565b6138b781614005565b82525050565b6138c681614017565b82525050565b60006138d782613ea2565b6138e18185613eb8565b93506138f181856020860161409a565b6138fa816142a9565b840191505092915050565b600061391082613ead565b61391a8185613ed4565b935061392a81856020860161409a565b613933816142a9565b840191505092915050565b600061394982613ead565b6139538185613ee5565b935061396381856020860161409a565b80840191505092915050565b6000815461397c816140cd565b6139868186613ee5565b945060018216600081146139a157600181146139b2576139e5565b60ff198316865281860193506139e5565b6139bb85613e8d565b60005b838110156139dd578154818901526001820191506020810190506139be565b838801955050505b50505092915050565b60006139fb600683613ed4565b9150613a06826142ba565b602082019050919050565b6000613a1e602683613ed4565b9150613a29826142e3565b604082019050919050565b6000613a41600a83613ed4565b9150613a4c82614332565b602082019050919050565b6000613a64601683613ed4565b9150613a6f8261435b565b602082019050919050565b6000613a87601a83613ed4565b9150613a9282614384565b602082019050919050565b6000613aaa601283613ed4565b9150613ab5826143ad565b602082019050919050565b6000613acd601583613ed4565b9150613ad8826143d6565b602082019050919050565b6000613af0602083613ed4565b9150613afb826143ff565b602082019050919050565b6000613b13601683613ed4565b9150613b1e82614428565b602082019050919050565b6000613b36600083613ec9565b9150613b4182614451565b600082019050919050565b6000613b59600e83613ed4565b9150613b6482614454565b602082019050919050565b6000613b7c600c83613ed4565b9150613b878261447d565b602082019050919050565b613b9b81614081565b82525050565b6000613bad828661396f565b9150613bb9828561393e565b9150613bc5828461393e565b9150819050949350505050565b6000613bdd82613b29565b9150819050919050565b6000602082019050613bfc60008301846138ae565b92915050565b6000608082019050613c1760008301876138ae565b613c2460208301866138ae565b613c316040830185613b92565b8181036060830152613c4381846138cc565b905095945050505050565b6000602082019050613c6360008301846138bd565b92915050565b60006020820190508181036000830152613c838184613905565b905092915050565b60006020820190508181036000830152613ca4816139ee565b9050919050565b60006020820190508181036000830152613cc481613a11565b9050919050565b60006020820190508181036000830152613ce481613a34565b9050919050565b60006020820190508181036000830152613d0481613a57565b9050919050565b60006020820190508181036000830152613d2481613a7a565b9050919050565b60006020820190508181036000830152613d4481613a9d565b9050919050565b60006020820190508181036000830152613d6481613ac0565b9050919050565b60006020820190508181036000830152613d8481613ae3565b9050919050565b60006020820190508181036000830152613da481613b06565b9050919050565b60006020820190508181036000830152613dc481613b4c565b9050919050565b60006020820190508181036000830152613de481613b6f565b9050919050565b6000602082019050613e006000830184613b92565b92915050565b6000613e10613e21565b9050613e1c82826140ff565b919050565b6000604051905090565b600067ffffffffffffffff821115613e4657613e45614266565b5b613e4f826142a9565b9050602081019050919050565b600067ffffffffffffffff821115613e7757613e76614266565b5b613e80826142a9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613efb82614081565b9150613f0683614081565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f3b57613f3a6141aa565b5b828201905092915050565b6000613f5182614081565b9150613f5c83614081565b925082613f6c57613f6b6141d9565b5b828204905092915050565b6000613f8282614081565b9150613f8d83614081565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fc657613fc56141aa565b5b828202905092915050565b6000613fdc82614081565b9150613fe783614081565b925082821015613ffa57613ff96141aa565b5b828203905092915050565b600061401082614061565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061405a82614005565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140b857808201518184015260208101905061409d565b838111156140c7576000848401525b50505050565b600060028204905060018216806140e557607f821691505b602082108114156140f9576140f8614208565b5b50919050565b614108826142a9565b810181811067ffffffffffffffff8211171561412757614126614266565b5b80604052505050565b600061413b82614081565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561416e5761416d6141aa565b5b600182019050919050565b600061418482614081565b915061418f83614081565b92508261419f5761419e6141d9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d61782070657220667265652077616c6c6574000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6144af81614005565b81146144ba57600080fd5b50565b6144c681614017565b81146144d157600080fd5b50565b6144dd81614023565b81146144e857600080fd5b50565b6144f48161404f565b81146144ff57600080fd5b50565b61450b81614081565b811461451657600080fd5b5056fea2646970667358221220679f7b25bb0553e147dd304c8ce89d9495dd297213f910b73ff70d6cf16e76e164736f6c63430008070033

Deployed Bytecode Sourcemap

46489:3597:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28285:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49281:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31670:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33173:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32736:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47013:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27534:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48762:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34030:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47062:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48879:209;;;;;;;;;;;;;:::i;:::-;;34271:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46867:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47184:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49462:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47778:414;;;:::i;:::-;;47152:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31479:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49096:83;;;;;;;;;;;;;:::i;:::-;;46539:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28654:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2759:103;;;;;;;;;;;;;:::i;:::-;;46963:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2108:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49187:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49570:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49370:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31839:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47110:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47274:496;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33449:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34527:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46716:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49694:389;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46769:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46626:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48309:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3017:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46917:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28285:305;28387:4;28439:25;28424:40;;;:11;:40;;;;:105;;;;28496:33;28481:48;;;:11;:48;;;;28424:105;:158;;;;28546:36;28570:11;28546:23;:36::i;:::-;28424:158;28404:178;;28285:305;;;:::o;49281:81::-;2339:12;:10;:12::i;:::-;2328:23;;:7;:5;:7::i;:::-;:23;;;2320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49348:6:::1;49339;;:15;;;;;;;;;;;;;;;;;;49281:81:::0;:::o;31670:100::-;31724:13;31757:5;31750:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31670:100;:::o;33173:204::-;33241:7;33266:16;33274:7;33266;:16::i;:::-;33261:64;;33291:34;;;;;;;;;;;;;;33261:64;33345:15;:24;33361:7;33345:24;;;;;;;;;;;;;;;;;;;;;33338:31;;33173:204;;;:::o;32736:371::-;32809:13;32825:24;32841:7;32825:15;:24::i;:::-;32809:40;;32870:5;32864:11;;:2;:11;;;32860:48;;;32884:24;;;;;;;;;;;;;;32860:48;32941:5;32925:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32951:37;32968:5;32975:12;:10;:12::i;:::-;32951:16;:37::i;:::-;32950:38;32925:63;32921:138;;;33012:35;;;;;;;;;;;;;;32921:138;33071:28;33080:2;33084:7;33093:5;33071:8;:28::i;:::-;32798:309;32736:371;;:::o;47013:42::-;47054:1;47013:42;:::o;27534:303::-;27578:7;27803:15;:13;:15::i;:::-;27788:12;;27772:13;;:28;:46;27765:53;;27534:303;:::o;48762:109::-;48815:7;48842:21;48856:6;48842:13;:21::i;:::-;48835:28;;48762:109;;;:::o;34030:170::-;34164:28;34174:4;34180:2;34184:7;34164:9;:28::i;:::-;34030:170;;;:::o;47062:41::-;47099:4;47062:41;:::o;48879:209::-;2339:12;:10;:12::i;:::-;2328:23;;:7;:5;:7::i;:::-;:23;;;2320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48929:15:::1;48947:21;48929:39;;48980:12;48998;:10;:12::i;:::-;:17;;49023:7;48998:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48979:56;;;49054:7;49046:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48918:170;;48879:209::o:0;34271:185::-;34409:39;34426:4;34432:2;34436:7;34409:39;;;;;;;;;;;;:16;:39::i;:::-;34271:185;;;:::o;46867:43::-;46909:1;46867:43;:::o;47184:28::-;;;;;;;;;;;;;:::o;49462:100::-;2339:12;:10;:12::i;:::-;2328:23;;:7;:5;:7::i;:::-;:23;;;2320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49546:8:::1;49536:7;:18;;;;;;;;;;;;:::i;:::-;;49462:100:::0;:::o;47778:414::-;47826:15;47844:12;:10;:12::i;:::-;47826:30;;47876:6;;;;;;;;;;;47875:7;47867:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;47942:1;47926:13;:11;:13::i;:::-;:17;;;;:::i;:::-;47099:4;47912:31;;47904:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47998:7;47985:20;;:9;:20;;;47977:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;48088:1;48068:16;48076:7;48068;:16::i;:::-;48060:25;;:29;;;;:::i;:::-;46909:1;48041:48;;48033:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;48133:19;48141:7;48150:1;48133:7;:19::i;:::-;48163:21;48173:7;48182:1;48163:9;:21::i;:::-;47815:377;47778:414::o;47152:25::-;;;;;;;;;;;;;:::o;31479:124::-;31543:7;31570:20;31582:7;31570:11;:20::i;:::-;:25;;;31563:32;;31479:124;;;:::o;49096:83::-;2339:12;:10;:12::i;:::-;2328:23;;:7;:5;:7::i;:::-;:23;;;2320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49145:26:::1;49155:12;:10;:12::i;:::-;49169:1;49145:9;:26::i;:::-;49096:83::o:0;46539:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28654:206::-;28718:7;28759:1;28742:19;;:5;:19;;;28738:60;;;28770:28;;;;;;;;;;;;;;28738:60;28824:12;:19;28837:5;28824:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28816:36;;28809:43;;28654:206;;;:::o;2759:103::-;2339:12;:10;:12::i;:::-;2328:23;;:7;:5;:7::i;:::-;:23;;;2320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2824:30:::1;2851:1;2824:18;:30::i;:::-;2759:103::o:0;46963:43::-;47005:1;46963:43;:::o;2108:87::-;2154:7;2181:6;;;;;;;;;;;2174:13;;2108:87;:::o;49187:86::-;2339:12;:10;:12::i;:::-;2328:23;;:7;:5;:7::i;:::-;:23;;;2320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49259:6:::1;49251:5;:14;;;;49187:86:::0;:::o;49570:116::-;2339:12;:10;:12::i;:::-;2328:23;;:7;:5;:7::i;:::-;:23;;;2320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49666:12:::1;49652:11;:26;;;;;;;;;;;;:::i;:::-;;49570:116:::0;:::o;49370:84::-;2339:12;:10;:12::i;:::-;2328:23;;:7;:5;:7::i;:::-;:23;;;2320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49440:6:::1;49429:8;;:17;;;;;;;;;;;;;;;;;;49370:84:::0;:::o;31839:104::-;31895:13;31928:7;31921:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31839:104;:::o;47110:33::-;;;;:::o;47274:496::-;47333:15;47351:12;:10;:12::i;:::-;47333:30;;47383:6;;;;;;;;;;;47382:7;47374:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;47449:7;47433:13;:11;:13::i;:::-;:23;;;;:::i;:::-;47099:4;47419:37;;47411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47508:1;47498:7;:11;47490:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47556:7;47543:20;;:9;:20;;;47535:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47613:7;46954:2;47599:21;;47591:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47686:9;47677:5;;47667:7;:15;;;;:::i;:::-;:28;47659:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47735:27;47745:7;47754;47735:9;:27::i;:::-;47322:448;47274:496;:::o;33449:279::-;33552:12;:10;:12::i;:::-;33540:24;;:8;:24;;;33536:54;;;33573:17;;;;;;;;;;;;;;33536:54;33648:8;33603:18;:32;33622:12;:10;:12::i;:::-;33603:32;;;;;;;;;;;;;;;:42;33636:8;33603:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33701:8;33672:48;;33687:12;:10;:12::i;:::-;33672:48;;;33711:8;33672:48;;;;;;:::i;:::-;;;;;;;;33449:279;;:::o;34527:369::-;34694:28;34704:4;34710:2;34714:7;34694:9;:28::i;:::-;34737:15;:2;:13;;;:15::i;:::-;:76;;;;;34757:56;34788:4;34794:2;34798:7;34807:5;34757:30;:56::i;:::-;34756:57;34737:76;34733:156;;;34837:40;;;;;;;;;;;;;;34733:156;34527:369;;;;:::o;46716:46::-;;;;;;;;;;;;;;;;;;;:::o;49694:389::-;49760:13;49794:17;49802:8;49794:7;:17::i;:::-;49786:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49879:1;49861:7;49855:21;;;;;:::i;:::-;;;:25;:220;;;;;;;;;;;;;;;;;49937:7;49961:8;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;;;;;49972:26;49989:8;49972:16;:26::i;:::-;49961:53;50031:13;;;;;;;;;;;;;;;;;49904:155;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49855:220;49848:227;;49694:389;;;:::o;46769:89::-;46816:42;46769:89;:::o;46626:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48309:445::-;48434:4;48519:27;46816:42;48519:65;;48640:8;48599:49;;48607:13;:21;;;48629:5;48607:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48599:49;;;48595:93;;;48672:4;48665:11;;;;;48595:93;48707:39;48730:5;48737:8;48707:22;:39::i;:::-;48700:46;;;48309:445;;;;;:::o;3017:201::-;2339:12;:10;:12::i;:::-;2328:23;;:7;:5;:7::i;:::-;:23;;;2320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3126:1:::1;3106:22;;:8;:22;;;;3098:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3182:28;3201:8;3182:18;:28::i;:::-;3017:201:::0;:::o;46917:39::-;46954:2;46917:39;:::o;23666:157::-;23751:4;23790:25;23775:40;;;:11;:40;;;;23768:47;;23666:157;;;:::o;849:98::-;902:7;929:10;922:17;;849:98;:::o;35151:187::-;35208:4;35251:7;35232:15;:13;:15::i;:::-;:26;;:53;;;;;35272:13;;35262:7;:23;35232:53;:98;;;;;35303:11;:20;35315:7;35303:20;;;;;;;;;;;:27;;;;;;;;;;;;35302:28;35232:98;35225:105;;35151:187;;;:::o;43467:196::-;43609:2;43582:15;:24;43598:7;43582:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43647:7;43643:2;43627:28;;43636:5;43627:28;;;;;;;;;;;;43467:196;;;:::o;48200:101::-;48265:7;48292:1;48285:8;;48200:101;:::o;28942:207::-;29003:7;29044:1;29027:19;;:5;:19;;;29023:59;;;29055:27;;;;;;;;;;;;;;29023:59;29108:12;:19;29121:5;29108:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29100:41;;29093:48;;28942:207;;;:::o;38969:2112::-;39084:35;39122:20;39134:7;39122:11;:20::i;:::-;39084:58;;39155:22;39197:13;:18;;;39181:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;39232:50;39249:13;:18;;;39269:12;:10;:12::i;:::-;39232:16;:50::i;:::-;39181:101;:154;;;;39323:12;:10;:12::i;:::-;39299:36;;:20;39311:7;39299:11;:20::i;:::-;:36;;;39181:154;39155:181;;39354:17;39349:66;;39380:35;;;;;;;;;;;;;;39349:66;39452:4;39430:26;;:13;:18;;;:26;;;39426:67;;39465:28;;;;;;;;;;;;;;39426:67;39522:1;39508:16;;:2;:16;;;39504:52;;;39533:23;;;;;;;;;;;;;;39504:52;39569:43;39591:4;39597:2;39601:7;39610:1;39569:21;:43::i;:::-;39677:49;39694:1;39698:7;39707:13;:18;;;39677:8;:49::i;:::-;40052:1;40022:12;:18;40035:4;40022:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40096:1;40068:12;:16;40081:2;40068:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40142:2;40114:11;:20;40126:7;40114:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;40204:15;40159:11;:20;40171:7;40159:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40472:19;40504:1;40494:7;:11;40472:33;;40565:1;40524:43;;:11;:24;40536:11;40524:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40520:445;;;40749:13;;40735:11;:27;40731:219;;;40819:13;:18;;;40787:11;:24;40799:11;40787:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40902:13;:28;;;40860:11;:24;40872:11;40860:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40731:219;40520:445;39997:979;41012:7;41008:2;40993:27;;41002:4;40993:27;;;;;;;;;;;;41031:42;41052:4;41058:2;41062:7;41071:1;41031:20;:42::i;:::-;39073:2008;;38969:2112;;;:::o;29572:179::-;29627:6;29667:1;29650:19;;:5;:19;;;29646:56;;;29678:24;;;;;;;;;;;;;;29646:56;29720:12;:19;29733:5;29720:19;;;;;;;;;;;;;;;:23;;;;;;;;;;;;29713:30;;29572:179;;;:::o;29939:168::-;30024:1;30007:19;;:5;:19;;;30003:56;;;30035:24;;;;;;;;;;;;;;30003:56;30096:3;30070:12;:19;30083:5;30070:19;;;;;;;;;;;;;;;:23;;;:29;;;;;;;;;;;;;;;;;;29939:168;;:::o;35346:104::-;35415:27;35425:2;35429:8;35415:27;;;;;;;;;;;;:9;:27::i;:::-;35346:104;;:::o;30309:1108::-;30370:21;;:::i;:::-;30404:12;30419:7;30404:22;;30487:4;30468:15;:13;:15::i;:::-;:23;;:47;;;;;30502:13;;30495:4;:20;30468:47;30464:886;;;30536:31;30570:11;:17;30582:4;30570:17;;;;;;;;;;;30536:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30611:9;:16;;;30606:729;;30682:1;30656:28;;:9;:14;;;:28;;;30652:101;;30720:9;30713:16;;;;;;30652:101;31055:261;31062:4;31055:261;;;31095:6;;;;;;;;31140:11;:17;31152:4;31140:17;;;;;;;;;;;31128:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31214:1;31188:28;;:9;:14;;;:28;;;31184:109;;31256:9;31249:16;;;;;;31184:109;31055:261;;;30606:729;30517:833;30464:886;31378:31;;;;;;;;;;;;;;30309:1108;;;;:::o;3378:191::-;3452:16;3471:6;;;;;;;;;;;3452:25;;3497:8;3488:6;;:17;;;;;;;;;;;;;;;;;;3552:8;3521:40;;3542:8;3521:40;;;;;;;;;;;;3441:128;3378:191;:::o;13439:326::-;13499:4;13756:1;13734:7;:19;;;:23;13727:30;;13439:326;;;:::o;44155:667::-;44318:4;44355:2;44339:36;;;44376:12;:10;:12::i;:::-;44390:4;44396:7;44405:5;44339:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44335:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44590:1;44573:6;:13;:18;44569:235;;;44619:40;;;;;;;;;;;;;;44569:235;44762:6;44756:13;44747:6;44743:2;44739:15;44732:38;44335:480;44468:45;;;44458:55;;;:6;:55;;;;44451:62;;;44155:667;;;;;;:::o;21059:723::-;21115:13;21345:1;21336:5;:10;21332:53;;;21363:10;;;;;;;;;;;;;;;;;;;;;21332:53;21395:12;21410:5;21395:20;;21426:14;21451:78;21466:1;21458:4;:9;21451:78;;21484:8;;;;;:::i;:::-;;;;21515:2;21507:10;;;;;:::i;:::-;;;21451:78;;;21539:19;21571:6;21561:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21539:39;;21589:154;21605:1;21596:5;:10;21589:154;;21633:1;21623:11;;;;;:::i;:::-;;;21700:2;21692:5;:10;;;;:::i;:::-;21679:2;:24;;;;:::i;:::-;21666:39;;21649:6;21656;21649:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21729:2;21720:11;;;;;:::i;:::-;;;21589:154;;;21767:6;21753:21;;;;;21059:723;;;;:::o;33799:164::-;33896:4;33920:18;:25;33939:5;33920:25;;;;;;;;;;;;;;;:35;33946:8;33920:35;;;;;;;;;;;;;;;;;;;;;;;;;33913:42;;33799:164;;;;:::o;45470:159::-;;;;;:::o;46288:158::-;;;;;:::o;35813:163::-;35936:32;35942:2;35946:8;35956:5;35963:4;35936:5;:32::i;:::-;35813:163;;;:::o;36235:2480::-;36374:20;36397:13;;36374:36;;36439:1;36425:16;;:2;:16;;;36421:48;;;36450:19;;;;;;;;;;;;;;36421:48;36496:1;36484:8;:13;36480:44;;;36506:18;;;;;;;;;;;;;;36480:44;36537:61;36567:1;36571:2;36575:12;36589:8;36537:21;:61::i;:::-;36664:42;36658:48;;:2;:48;;;:113;;;;36729:42;36723:48;;:2;:48;;;36658:113;:178;;;;36794:42;36788:48;;:2;:48;;;36658:178;:243;;;;36859:42;36853:48;;:2;:48;;;36658:243;:308;;;;36924:42;36918:48;;:2;:48;;;36658:308;:373;;;;36989:42;36983:48;;:2;:48;;;36658:373;:438;;;;37054:42;37048:48;;:2;:48;;;36658:438;:503;;;;37119:42;37113:48;;:2;:48;;;36658:503;36641:663;;;37187:15;37222:6;37231:1;37222:10;;37217:76;37238:5;37234:1;:9;37217:76;;;37268:9;;;;;:::i;:::-;;;;37245:3;;;;;:::i;:::-;;;;37217:76;;;;37172:132;36641:663;37615:8;37580:12;:16;37593:2;37580:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37679:8;37639:12;:16;37652:2;37639:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37738:2;37705:11;:25;37717:12;37705:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37805:15;37755:11;:25;37767:12;37755:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37838:20;37861:12;37838:35;;37888:11;37917:8;37902:12;:23;37888:37;;37946:4;:23;;;;;37954:15;:2;:13;;;:15::i;:::-;37946:23;37942:641;;;37990:314;38046:12;38042:2;38021:38;;38038:1;38021:38;;;;;;;;;;;;38087:69;38126:1;38130:2;38134:14;;;;;;38150:5;38087:30;:69::i;:::-;38082:174;;38192:40;;;;;;;;;;;;;;38082:174;38299:3;38283:12;:19;;37990:314;;38385:12;38368:13;;:29;38364:43;;38399:8;;;38364:43;37942:641;;;38448:120;38504:14;;;;;;38500:2;38479:40;;38496:1;38479:40;;;;;;;;;;;;38563:3;38547:12;:19;;38448:120;;37942:641;38613:12;38597:13;:28;;;;37555:1082;;38647:60;38676:1;38680:2;38684:12;38698:8;38647:20;:60::i;:::-;36363:2352;36235:2480;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:323::-;5883:6;5932:2;5920:9;5911:7;5907:23;5903:32;5900:119;;;5938:79;;:::i;:::-;5900:119;6058:1;6083:50;6125:7;6116:6;6105:9;6101:22;6083:50;:::i;:::-;6073:60;;6029:114;5827:323;;;;:::o;6156:327::-;6214:6;6263:2;6251:9;6242:7;6238:23;6234:32;6231:119;;;6269:79;;:::i;:::-;6231:119;6389:1;6414:52;6458:7;6449:6;6438:9;6434:22;6414:52;:::i;:::-;6404:62;;6360:116;6156:327;;;;:::o;6489:349::-;6558:6;6607:2;6595:9;6586:7;6582:23;6578:32;6575:119;;;6613:79;;:::i;:::-;6575:119;6733:1;6758:63;6813:7;6804:6;6793:9;6789:22;6758:63;:::i;:::-;6748:73;;6704:127;6489:349;;;;:::o;6844:409::-;6943:6;6992:2;6980:9;6971:7;6967:23;6963:32;6960:119;;;6998:79;;:::i;:::-;6960:119;7118:1;7143:93;7228:7;7219:6;7208:9;7204:22;7143:93;:::i;:::-;7133:103;;7089:157;6844:409;;;;:::o;7259:509::-;7328:6;7377:2;7365:9;7356:7;7352:23;7348:32;7345:119;;;7383:79;;:::i;:::-;7345:119;7531:1;7520:9;7516:17;7503:31;7561:18;7553:6;7550:30;7547:117;;;7583:79;;:::i;:::-;7547:117;7688:63;7743:7;7734:6;7723:9;7719:22;7688:63;:::i;:::-;7678:73;;7474:287;7259:509;;;;:::o;7774:329::-;7833:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:119;;;7888:79;;:::i;:::-;7850:119;8008:1;8033:53;8078:7;8069:6;8058:9;8054:22;8033:53;:::i;:::-;8023:63;;7979:117;7774:329;;;;:::o;8109:118::-;8196:24;8214:5;8196:24;:::i;:::-;8191:3;8184:37;8109:118;;:::o;8233:109::-;8314:21;8329:5;8314:21;:::i;:::-;8309:3;8302:34;8233:109;;:::o;8348:360::-;8434:3;8462:38;8494:5;8462:38;:::i;:::-;8516:70;8579:6;8574:3;8516:70;:::i;:::-;8509:77;;8595:52;8640:6;8635:3;8628:4;8621:5;8617:16;8595:52;:::i;:::-;8672:29;8694:6;8672:29;:::i;:::-;8667:3;8663:39;8656:46;;8438:270;8348:360;;;;:::o;8714:364::-;8802:3;8830:39;8863:5;8830:39;:::i;:::-;8885:71;8949:6;8944:3;8885:71;:::i;:::-;8878:78;;8965:52;9010:6;9005:3;8998:4;8991:5;8987:16;8965:52;:::i;:::-;9042:29;9064:6;9042:29;:::i;:::-;9037:3;9033:39;9026:46;;8806:272;8714:364;;;;:::o;9084:377::-;9190:3;9218:39;9251:5;9218:39;:::i;:::-;9273:89;9355:6;9350:3;9273:89;:::i;:::-;9266:96;;9371:52;9416:6;9411:3;9404:4;9397:5;9393:16;9371:52;:::i;:::-;9448:6;9443:3;9439:16;9432:23;;9194:267;9084:377;;;;:::o;9491:845::-;9594:3;9631:5;9625:12;9660:36;9686:9;9660:36;:::i;:::-;9712:89;9794:6;9789:3;9712:89;:::i;:::-;9705:96;;9832:1;9821:9;9817:17;9848:1;9843:137;;;;9994:1;9989:341;;;;9810:520;;9843:137;9927:4;9923:9;9912;9908:25;9903:3;9896:38;9963:6;9958:3;9954:16;9947:23;;9843:137;;9989:341;10056:38;10088:5;10056:38;:::i;:::-;10116:1;10130:154;10144:6;10141:1;10138:13;10130:154;;;10218:7;10212:14;10208:1;10203:3;10199:11;10192:35;10268:1;10259:7;10255:15;10244:26;;10166:4;10163:1;10159:12;10154:17;;10130:154;;;10313:6;10308:3;10304:16;10297:23;;9996:334;;9810:520;;9598:738;;9491:845;;;;:::o;10342:365::-;10484:3;10505:66;10569:1;10564:3;10505:66;:::i;:::-;10498:73;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10342:365;;;:::o;10713:366::-;10855:3;10876:67;10940:2;10935:3;10876:67;:::i;:::-;10869:74;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10713:366;;;:::o;11085:::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11085:366;;;:::o;11457:::-;11599:3;11620:67;11684:2;11679:3;11620:67;:::i;:::-;11613:74;;11696:93;11785:3;11696:93;:::i;:::-;11814:2;11809:3;11805:12;11798:19;;11457:366;;;:::o;11829:::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:398::-;13848:3;13869:83;13950:1;13945:3;13869:83;:::i;:::-;13862:90;;13961:93;14050:3;13961:93;:::i;:::-;14079:1;14074:3;14070:11;14063:18;;13689:398;;;:::o;14093:366::-;14235:3;14256:67;14320:2;14315:3;14256:67;:::i;:::-;14249:74;;14332:93;14421:3;14332:93;:::i;:::-;14450:2;14445:3;14441:12;14434:19;;14093:366;;;:::o;14465:::-;14607:3;14628:67;14692:2;14687:3;14628:67;:::i;:::-;14621:74;;14704:93;14793:3;14704:93;:::i;:::-;14822:2;14817:3;14813:12;14806:19;;14465:366;;;:::o;14837:118::-;14924:24;14942:5;14924:24;:::i;:::-;14919:3;14912:37;14837:118;;:::o;14961:589::-;15186:3;15208:92;15296:3;15287:6;15208:92;:::i;:::-;15201:99;;15317:95;15408:3;15399:6;15317:95;:::i;:::-;15310:102;;15429:95;15520:3;15511:6;15429:95;:::i;:::-;15422:102;;15541:3;15534:10;;14961:589;;;;;;:::o;15556:379::-;15740:3;15762:147;15905:3;15762:147;:::i;:::-;15755:154;;15926:3;15919:10;;15556:379;;;:::o;15941:222::-;16034:4;16072:2;16061:9;16057:18;16049:26;;16085:71;16153:1;16142:9;16138:17;16129:6;16085:71;:::i;:::-;15941:222;;;;:::o;16169:640::-;16364:4;16402:3;16391:9;16387:19;16379:27;;16416:71;16484:1;16473:9;16469:17;16460:6;16416:71;:::i;:::-;16497:72;16565:2;16554:9;16550:18;16541:6;16497:72;:::i;:::-;16579;16647:2;16636:9;16632:18;16623:6;16579:72;:::i;:::-;16698:9;16692:4;16688:20;16683:2;16672:9;16668:18;16661:48;16726:76;16797:4;16788:6;16726:76;:::i;:::-;16718:84;;16169:640;;;;;;;:::o;16815:210::-;16902:4;16940:2;16929:9;16925:18;16917:26;;16953:65;17015:1;17004:9;17000:17;16991:6;16953:65;:::i;:::-;16815:210;;;;:::o;17031:313::-;17144:4;17182:2;17171:9;17167:18;17159:26;;17231:9;17225:4;17221:20;17217:1;17206:9;17202:17;17195:47;17259:78;17332:4;17323:6;17259:78;:::i;:::-;17251:86;;17031:313;;;;:::o;17350:419::-;17516:4;17554:2;17543:9;17539:18;17531:26;;17603:9;17597:4;17593:20;17589:1;17578:9;17574:17;17567:47;17631:131;17757:4;17631:131;:::i;:::-;17623:139;;17350:419;;;:::o;17775:::-;17941:4;17979:2;17968:9;17964:18;17956:26;;18028:9;18022:4;18018:20;18014:1;18003:9;17999:17;17992:47;18056:131;18182:4;18056:131;:::i;:::-;18048:139;;17775:419;;;:::o;18200:::-;18366:4;18404:2;18393:9;18389:18;18381:26;;18453:9;18447:4;18443:20;18439:1;18428:9;18424:17;18417:47;18481:131;18607:4;18481:131;:::i;:::-;18473:139;;18200:419;;;:::o;18625:::-;18791:4;18829:2;18818:9;18814:18;18806:26;;18878:9;18872:4;18868:20;18864:1;18853:9;18849:17;18842:47;18906:131;19032:4;18906:131;:::i;:::-;18898:139;;18625:419;;;:::o;19050:::-;19216:4;19254:2;19243:9;19239:18;19231:26;;19303:9;19297:4;19293:20;19289:1;19278:9;19274:17;19267:47;19331:131;19457:4;19331:131;:::i;:::-;19323:139;;19050:419;;;:::o;19475:::-;19641:4;19679:2;19668:9;19664:18;19656:26;;19728:9;19722:4;19718:20;19714:1;19703:9;19699:17;19692:47;19756:131;19882:4;19756:131;:::i;:::-;19748:139;;19475:419;;;:::o;19900:::-;20066:4;20104:2;20093:9;20089:18;20081:26;;20153:9;20147:4;20143:20;20139:1;20128:9;20124:17;20117:47;20181:131;20307:4;20181:131;:::i;:::-;20173:139;;19900:419;;;:::o;20325:::-;20491:4;20529:2;20518:9;20514:18;20506:26;;20578:9;20572:4;20568:20;20564:1;20553:9;20549:17;20542:47;20606:131;20732:4;20606:131;:::i;:::-;20598:139;;20325:419;;;:::o;20750:::-;20916:4;20954:2;20943:9;20939:18;20931:26;;21003:9;20997:4;20993:20;20989:1;20978:9;20974:17;20967:47;21031:131;21157:4;21031:131;:::i;:::-;21023:139;;20750:419;;;:::o;21175:::-;21341:4;21379:2;21368:9;21364:18;21356:26;;21428:9;21422:4;21418:20;21414:1;21403:9;21399:17;21392:47;21456:131;21582:4;21456:131;:::i;:::-;21448:139;;21175:419;;;:::o;21600:::-;21766:4;21804:2;21793:9;21789:18;21781:26;;21853:9;21847:4;21843:20;21839:1;21828:9;21824:17;21817:47;21881:131;22007:4;21881:131;:::i;:::-;21873:139;;21600:419;;;:::o;22025:222::-;22118:4;22156:2;22145:9;22141:18;22133:26;;22169:71;22237:1;22226:9;22222:17;22213:6;22169:71;:::i;:::-;22025:222;;;;:::o;22253:129::-;22287:6;22314:20;;:::i;:::-;22304:30;;22343:33;22371:4;22363:6;22343:33;:::i;:::-;22253:129;;;:::o;22388:75::-;22421:6;22454:2;22448:9;22438:19;;22388:75;:::o;22469:307::-;22530:4;22620:18;22612:6;22609:30;22606:56;;;22642:18;;:::i;:::-;22606:56;22680:29;22702:6;22680:29;:::i;:::-;22672:37;;22764:4;22758;22754:15;22746:23;;22469:307;;;:::o;22782:308::-;22844:4;22934:18;22926:6;22923:30;22920:56;;;22956:18;;:::i;:::-;22920:56;22994:29;23016:6;22994:29;:::i;:::-;22986:37;;23078:4;23072;23068:15;23060:23;;22782:308;;;:::o;23096:141::-;23145:4;23168:3;23160:11;;23191:3;23188:1;23181:14;23225:4;23222:1;23212:18;23204:26;;23096:141;;;:::o;23243:98::-;23294:6;23328:5;23322:12;23312:22;;23243:98;;;:::o;23347:99::-;23399:6;23433:5;23427:12;23417:22;;23347:99;;;:::o;23452:168::-;23535:11;23569:6;23564:3;23557:19;23609:4;23604:3;23600:14;23585:29;;23452:168;;;;:::o;23626:147::-;23727:11;23764:3;23749:18;;23626:147;;;;:::o;23779:169::-;23863:11;23897:6;23892:3;23885:19;23937:4;23932:3;23928:14;23913:29;;23779:169;;;;:::o;23954:148::-;24056:11;24093:3;24078:18;;23954:148;;;;:::o;24108:305::-;24148:3;24167:20;24185:1;24167:20;:::i;:::-;24162:25;;24201:20;24219:1;24201:20;:::i;:::-;24196:25;;24355:1;24287:66;24283:74;24280:1;24277:81;24274:107;;;24361:18;;:::i;:::-;24274:107;24405:1;24402;24398:9;24391:16;;24108:305;;;;:::o;24419:185::-;24459:1;24476:20;24494:1;24476:20;:::i;:::-;24471:25;;24510:20;24528:1;24510:20;:::i;:::-;24505:25;;24549:1;24539:35;;24554:18;;:::i;:::-;24539:35;24596:1;24593;24589:9;24584:14;;24419:185;;;;:::o;24610:348::-;24650:7;24673:20;24691:1;24673:20;:::i;:::-;24668:25;;24707:20;24725:1;24707:20;:::i;:::-;24702:25;;24895:1;24827:66;24823:74;24820:1;24817:81;24812:1;24805:9;24798:17;24794:105;24791:131;;;24902:18;;:::i;:::-;24791:131;24950:1;24947;24943:9;24932:20;;24610:348;;;;:::o;24964:191::-;25004:4;25024:20;25042:1;25024:20;:::i;:::-;25019:25;;25058:20;25076:1;25058:20;:::i;:::-;25053:25;;25097:1;25094;25091:8;25088:34;;;25102:18;;:::i;:::-;25088:34;25147:1;25144;25140:9;25132:17;;24964:191;;;;:::o;25161:96::-;25198:7;25227:24;25245:5;25227:24;:::i;:::-;25216:35;;25161:96;;;:::o;25263:90::-;25297:7;25340:5;25333:13;25326:21;25315:32;;25263:90;;;:::o;25359:149::-;25395:7;25435:66;25428:5;25424:78;25413:89;;25359:149;;;:::o;25514:125::-;25580:7;25609:24;25627:5;25609:24;:::i;:::-;25598:35;;25514:125;;;:::o;25645:126::-;25682:7;25722:42;25715:5;25711:54;25700:65;;25645:126;;;:::o;25777:77::-;25814:7;25843:5;25832:16;;25777:77;;;:::o;25860:154::-;25944:6;25939:3;25934;25921:30;26006:1;25997:6;25992:3;25988:16;25981:27;25860:154;;;:::o;26020:307::-;26088:1;26098:113;26112:6;26109:1;26106:13;26098:113;;;26197:1;26192:3;26188:11;26182:18;26178:1;26173:3;26169:11;26162:39;26134:2;26131:1;26127:10;26122:15;;26098:113;;;26229:6;26226:1;26223:13;26220:101;;;26309:1;26300:6;26295:3;26291:16;26284:27;26220:101;26069:258;26020:307;;;:::o;26333:320::-;26377:6;26414:1;26408:4;26404:12;26394:22;;26461:1;26455:4;26451:12;26482:18;26472:81;;26538:4;26530:6;26526:17;26516:27;;26472:81;26600:2;26592:6;26589:14;26569:18;26566:38;26563:84;;;26619:18;;:::i;:::-;26563:84;26384:269;26333:320;;;:::o;26659:281::-;26742:27;26764:4;26742:27;:::i;:::-;26734:6;26730:40;26872:6;26860:10;26857:22;26836:18;26824:10;26821:34;26818:62;26815:88;;;26883:18;;:::i;:::-;26815:88;26923:10;26919:2;26912:22;26702:238;26659:281;;:::o;26946:233::-;26985:3;27008:24;27026:5;27008:24;:::i;:::-;26999:33;;27054:66;27047:5;27044:77;27041:103;;;27124:18;;:::i;:::-;27041:103;27171:1;27164:5;27160:13;27153:20;;26946:233;;;:::o;27185:176::-;27217:1;27234:20;27252:1;27234:20;:::i;:::-;27229:25;;27268:20;27286:1;27268:20;:::i;:::-;27263:25;;27307:1;27297:35;;27312:18;;:::i;:::-;27297:35;27353:1;27350;27346:9;27341:14;;27185:176;;;;:::o;27367:180::-;27415:77;27412:1;27405:88;27512:4;27509:1;27502:15;27536:4;27533:1;27526:15;27553:180;27601:77;27598:1;27591:88;27698:4;27695:1;27688:15;27722:4;27719:1;27712:15;27739:180;27787:77;27784:1;27777:88;27884:4;27881:1;27874:15;27908:4;27905:1;27898:15;27925:180;27973:77;27970:1;27963:88;28070:4;28067:1;28060:15;28094:4;28091:1;28084:15;28111:180;28159:77;28156:1;28149:88;28256:4;28253:1;28246:15;28280:4;28277:1;28270:15;28297:117;28406:1;28403;28396:12;28420:117;28529:1;28526;28519:12;28543:117;28652:1;28649;28642:12;28666:117;28775:1;28772;28765:12;28789:102;28830:6;28881:2;28877:7;28872:2;28865:5;28861:14;28857:28;28847:38;;28789:102;;;:::o;28897:156::-;29037:8;29033:1;29025:6;29021:14;29014:32;28897:156;:::o;29059:225::-;29199:34;29195:1;29187:6;29183:14;29176:58;29268:8;29263:2;29255:6;29251:15;29244:33;29059:225;:::o;29290:160::-;29430:12;29426:1;29418:6;29414:14;29407:36;29290:160;:::o;29456:172::-;29596:24;29592:1;29584:6;29580:14;29573:48;29456:172;:::o;29634:176::-;29774:28;29770:1;29762:6;29758:14;29751:52;29634:176;:::o;29816:168::-;29956:20;29952:1;29944:6;29940:14;29933:44;29816:168;:::o;29990:171::-;30130:23;30126:1;30118:6;30114:14;30107:47;29990:171;:::o;30167:182::-;30307:34;30303:1;30295:6;30291:14;30284:58;30167:182;:::o;30355:172::-;30495:24;30491:1;30483:6;30479:14;30472:48;30355:172;:::o;30533:114::-;;:::o;30653:164::-;30793:16;30789:1;30781:6;30777:14;30770:40;30653:164;:::o;30823:162::-;30963:14;30959:1;30951:6;30947:14;30940:38;30823:162;:::o;30991:122::-;31064:24;31082:5;31064:24;:::i;:::-;31057:5;31054:35;31044:63;;31103:1;31100;31093:12;31044:63;30991:122;:::o;31119:116::-;31189:21;31204:5;31189:21;:::i;:::-;31182:5;31179:32;31169:60;;31225:1;31222;31215:12;31169:60;31119:116;:::o;31241:120::-;31313:23;31330:5;31313:23;:::i;:::-;31306:5;31303:34;31293:62;;31351:1;31348;31341:12;31293:62;31241:120;:::o;31367:180::-;31469:53;31516:5;31469:53;:::i;:::-;31462:5;31459:64;31449:92;;31537:1;31534;31527:12;31449:92;31367:180;:::o;31553:122::-;31626:24;31644:5;31626:24;:::i;:::-;31619:5;31616:35;31606:63;;31665:1;31662;31655:12;31606:63;31553:122;:::o

Swarm Source

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