ETH Price: $3,093.87 (+0.76%)
Gas: 8 Gwei

Token

Lucky 7 Pass (Lucky7pass)
 

Overview

Max Total Supply

53 Lucky7pass

Holders

17

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
treybangas.eth
0x83c130920c91e8db4fcca157c78b4c49579438e0
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:
Lucky7pass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : luckypass.sol
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

// File: contracts/contract1.sol


pragma solidity ^0.8.7;






contract Lucky7pass is ERC1155, Ownable, ERC1155Supply, ReentrancyGuard {
    string public name = "Lucky 7 Pass";
    string public symbol = "Lucky7pass";
    uint256 public salePrice = 0.123 ether;
    uint256 public presalePrice = 0.0777 ether;
    uint16 public maxSupply = 777;
    uint16 public maxFree = 50;

    uint16 public paidSupplyLeft = maxSupply - maxFree;
    uint16 public freeSupplyLeft = maxFree;

    //Reserves are minted automatically on contract deployment and subtracted from paidSupplyLeft.
    uint8 public reservedSupply = 50;

    bool public presaleActive;
    bool public freesaleActive;
    bool public saleActive;

    uint8 public passIndex = 1;

    bytes32 public whitelistMerkle = 0xd233c36138b90c8bb96cb4a30bcf2e7aeaa38f8e611d6754beebab328f4cc97d;
    bytes32 public freeMintTrees = 0xcb00bec222bdf79a6819525e1f28af05a1bddaf967c44781b3a3fffc558f1319;

    mapping (address => uint) public _presaleMinted;
    mapping (address => uint) public _saleMinted;
    mapping (address => bool) public _freeMinted;

    constructor() ERC1155("ipfs://QmfCKPyj13amMCEmGrPE795HKS3oYDY969GTEw37aXyQTz") {
        require(freeSupplyLeft + paidSupplyLeft == maxSupply, "Invalid supply.");
        _mint(msg.sender, passIndex, reservedSupply, "");
        paidSupplyLeft -= reservedSupply;
    }

    // Mints

    function mint(bytes32[] calldata _merkleProof, uint16 count) public payable {
        require(presaleActive || saleActive, "lucky7: Sale is not live.");

        if (saleActive) { 
            require(msg.value >= salePrice * count, "Lucky7: Insufficient tx value.");
            require(_saleMinted[msg.sender] < 3, "Lucky7: You cannot mint more than 2 in the public sale.");
            require(paidSupplyLeft >= count, "Lucky7: Exceeds available supply.");
            _mint(msg.sender, passIndex, count, "");
            _saleMinted[msg.sender] += count;
            paidSupplyLeft -= count;
        } else if (presaleActive) {
            require(msg.value >= presalePrice * count, "Lucky7: Insufficient tx value.");
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            //Check sender will only have 2 total presale mint.
            require(_presaleMinted[msg.sender] < 3, "Lucky: You cannot mint more than 2 in the presale.");
            //Check sender is on whitelist.
            require(MerkleProof.verify(_merkleProof, whitelistMerkle, leaf), "Lucky7: Invalid proof (not on whitelist?).");
            //Check there is enough remaining from the paid supply.
            require(paidSupplyLeft > count, "Lucky7: Exceeds available supply.");
            _mint(msg.sender, passIndex, count, "");
            _presaleMinted[msg.sender] += count;
            paidSupplyLeft -= count;
        }
    }

    function freeMint(bytes32[] calldata _merkleProof) public {
        //Check free mint has started.
        require(freesaleActive, "Lucky7: The free mint has not started.");
        //Check allowed to mint the requested amount.
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, freeMintTrees, leaf), "Lucky7: Invalid proof (not on whitelist?).");
        //Check not already claimed.
        require(!_freeMinted[msg.sender], "Lucky7: You have already claimed your free mint.");
        //Check remaining supply. Shouldn't fail ever.
        require(freeSupplyLeft > 0, "Lucky7: There is insufficient remaining free supply.");
        _mint(msg.sender, passIndex, 2, "");
        _freeMinted[msg.sender] = true;
        freeSupplyLeft -= 2;
    }

    // Write functions

    function setPresaleStatus(bool _presaleActive) public onlyOwner {
        presaleActive = _presaleActive;
    }

    function setFreesaleStatus(bool _freesaleActive) public onlyOwner {
        freesaleActive = _freesaleActive;
    }

    function setSaleStatus(bool _saleActive) public onlyOwner {
        saleActive = _saleActive;
    }

    function setSalePrice(uint256 _price) public onlyOwner {
        salePrice = _price;
    }

    function setPresalePrice(uint256 _price) public onlyOwner {
        presalePrice = _price;
    }

    function setWhitelistMerkle(bytes32 _merkleRoot) public onlyOwner {
        whitelistMerkle = _merkleRoot;
    }

    function setFreeMerkle(bytes32 _merkleRoot) public onlyOwner {
        freeMintTrees = _merkleRoot;
    }

    function transferFreeSupply() public onlyOwner {
        paidSupplyLeft += freeSupplyLeft;
        freeSupplyLeft = 0;
    }

    function changePaidSupplyLeft(uint16 _paidSupplyLeft) public onlyOwner {
        paidSupplyLeft = _paidSupplyLeft;
    }

    function changeFreeSupplyLeft(uint16 _freeSupplyLeft) public onlyOwner {
        freeSupplyLeft = _freeSupplyLeft;
    }

    function setURI(string memory newuri) public onlyOwner {
        _setURI(newuri);
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    // Call functions

    function hasToken(address account) public view returns (bool) {
        return balanceOf(account, passIndex) > 0;
    }

    function getSalePrice() public view returns (uint256) {
        return salePrice;
    }

    function getPresalePrice() public view returns (uint256) {
        return presalePrice;
    }

    function getPaidSupplyLeft() public view returns (uint16) {
        return paidSupplyLeft;
    }

    function getFreeSupplyLeft() public view returns (uint16) {
        return freeSupplyLeft;
    }

    function getMaxSupply() public view returns (uint16) {
        return maxSupply;
    }

    function getWhitelistMerkle() public view returns (bytes32) {
        return whitelistMerkle;
    }

    function getFreeMerkle(uint8 _count) public view returns (bytes32) {
        return freeMintTrees[_count];
    }

    function getBalance() external view returns (uint256) {
        return address(this).balance;
    }

    function totalSupply() external view returns (uint256) {
        return totalSupply(passIndex);
    }

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal override(ERC1155, ERC1155Supply) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

    function onERC1155Received(
        address,
        address,
        uint256,
        uint256,
        bytes memory
    ) public virtual returns (bytes4) {
        return this.onERC1155Received.selector;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_freeMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_presaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_saleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_freeSupplyLeft","type":"uint16"}],"name":"changeFreeSupplyLeft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_paidSupplyLeft","type":"uint16"}],"name":"changePaidSupplyLeft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintTrees","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupplyLeft","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freesaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_count","type":"uint8"}],"name":"getFreeMerkle","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFreeSupplyLeft","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPaidSupplyLeft","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPresalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistMerkle","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"hasToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint16","name":"count","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paidSupplyLeft","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"passIndex","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedSupply","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setFreeMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_freesaleActive","type":"bool"}],"name":"setFreesaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_presaleActive","type":"bool"}],"name":"setPresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleActive","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkle","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600c81526020017f4c75636b79203720506173730000000000000000000000000000000000000000815250600690805190602001906200005192919062000b25565b506040518060400160405280600a81526020017f4c75636b79377061737300000000000000000000000000000000000000000000815250600790805190602001906200009f92919062000b25565b506701b4fbd92b5f80006008556701140bbd030c4000600955610309600a60006101000a81548161ffff021916908361ffff1602179055506032600a60026101000a81548161ffff021916908361ffff160217905550600a60029054906101000a900461ffff16600a60009054906101000a900461ffff1662000123919062000fc2565b600a60046101000a81548161ffff021916908361ffff160217905550600a60029054906101000a900461ffff16600a60066101000a81548161ffff021916908361ffff1602179055506032600a60086101000a81548160ff021916908360ff1602179055506001600a600c6101000a81548160ff021916908360ff1602179055507fd233c36138b90c8bb96cb4a30bcf2e7aeaa38f8e611d6754beebab328f4cc97d60001b600b557fcb00bec222bdf79a6819525e1f28af05a1bddaf967c44781b3a3fffc558f131960001b600c55348015620001ff57600080fd5b5060405180606001604052806035815260200162006c8b603591396200022b816200037860201b60201c565b506200024c620002406200039460201b60201c565b6200039c60201b60201c565b6001600581905550600a60009054906101000a900461ffff1661ffff16600a60049054906101000a900461ffff16600a60069054906101000a900461ffff1662000297919062000f26565b61ffff1614620002de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d59062000e51565b60405180910390fd5b6200032533600a600c9054906101000a900460ff1660ff16600a60089054906101000a900460ff1660ff16604051806020016040528060008152506200046260201b60201c565b600a60089054906101000a900460ff1660ff16600a60048282829054906101000a900461ffff1662000358919062000fc2565b92506101000a81548161ffff021916908361ffff1602179055506200148a565b80600290805190602001906200039092919062000b25565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620004d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004cc9062000e95565b60405180910390fd5b6000620004e76200039460201b60201c565b90506000620004fc856200064a60201b60201c565b9050600062000511856200064a60201b60201c565b90506200052a83600089858589620006cb60201b60201c565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200058b919062000f65565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516200060b92919062000eb7565b60405180910390a46200062a83600089858589620006ee60201b60201c565b6200064183600089898989620006f660201b60201c565b50505050505050565b60606000600167ffffffffffffffff8111156200066c576200066b620011f2565b5b6040519080825280602002602001820160405280156200069b5781602001602082028036833780820191505090505b5090508281600081518110620006b657620006b5620011c3565b5b60200260200101818152505080915050919050565b620006e68686868686866200090060201b620026f81760201c565b505050505050565b505050505050565b620007228473ffffffffffffffffffffffffffffffffffffffff1662000afa60201b620028ca1760201c565b15620008f8578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016200076b95949392919062000d85565b602060405180830381600087803b1580156200078657600080fd5b505af1925050508015620007ba57506040513d601f19601f82011682018060405250810190620007b7919062000bec565b60015b6200086c57620007c962001221565b806308c379a014156200082d5750620007e1620013ce565b80620007ee57506200082f565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000824919062000de9565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008639062000e0d565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614620008f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ed9062000e2f565b60405180910390fd5b505b505050505050565b6200091b86868686868662000b1d60201b620028ed1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415620009da5760005b8351811015620009d857828181518110620009745762000973620011c3565b5b602002602001015160046000868481518110620009965762000995620011c3565b5b602002602001015181526020019081526020016000206000828254620009bd919062000f65565b9250508190555080620009d09062001117565b905062000954565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000af25760005b835181101562000af057600084828151811062000a355762000a34620011c3565b5b60200260200101519050600084838151811062000a575762000a56620011c3565b5b602002602001015190506000600460008481526020019081526020016000205490508181101562000abf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ab69062000e73565b60405180910390fd5b81810360046000858152602001908152602001600020819055505050508062000ae89062001117565b905062000a13565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b82805462000b3390620010ab565b90600052602060002090601f01602090048101928262000b57576000855562000ba3565b82601f1062000b7257805160ff191683800117855562000ba3565b8280016001018555821562000ba3579182015b8281111562000ba257825182559160200191906001019062000b85565b5b50905062000bb2919062000bb6565b5090565b5b8082111562000bd157600081600090555060010162000bb7565b5090565b60008151905062000be68162001470565b92915050565b60006020828403121562000c055762000c0462001246565b5b600062000c158482850162000bd5565b91505092915050565b62000c298162000ffd565b82525050565b600062000c3c8262000eee565b62000c48818562000f04565b935062000c5a81856020860162001075565b62000c65816200124b565b840191505092915050565b600062000c7d8262000ef9565b62000c89818562000f15565b935062000c9b81856020860162001075565b62000ca6816200124b565b840191505092915050565b600062000cc060348362000f15565b915062000ccd8262001269565b604082019050919050565b600062000ce760288362000f15565b915062000cf482620012b8565b604082019050919050565b600062000d0e600f8362000f15565b915062000d1b8262001307565b602082019050919050565b600062000d3560288362000f15565b915062000d428262001330565b604082019050919050565b600062000d5c60218362000f15565b915062000d69826200137f565b604082019050919050565b62000d7f816200106b565b82525050565b600060a08201905062000d9c600083018862000c1e565b62000dab602083018762000c1e565b62000dba604083018662000d74565b62000dc9606083018562000d74565b818103608083015262000ddd818462000c2f565b90509695505050505050565b6000602082019050818103600083015262000e05818462000c70565b905092915050565b6000602082019050818103600083015262000e288162000cb1565b9050919050565b6000602082019050818103600083015262000e4a8162000cd8565b9050919050565b6000602082019050818103600083015262000e6c8162000cff565b9050919050565b6000602082019050818103600083015262000e8e8162000d26565b9050919050565b6000602082019050818103600083015262000eb08162000d4d565b9050919050565b600060408201905062000ece600083018562000d74565b62000edd602083018462000d74565b9392505050565b6000604051905090565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000f33826200103d565b915062000f40836200103d565b92508261ffff0382111562000f5a5762000f5962001165565b5b828201905092915050565b600062000f72826200106b565b915062000f7f836200106b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000fb75762000fb662001165565b5b828201905092915050565b600062000fcf826200103d565b915062000fdc836200103d565b92508282101562000ff25762000ff162001165565b5b828203905092915050565b60006200100a826200104b565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200109557808201518184015260208101905062001078565b83811115620010a5576000848401525b50505050565b60006002820490506001821680620010c457607f821691505b60208210811415620010db57620010da62001194565b5b50919050565b620010ec826200124b565b810181811067ffffffffffffffff821117156200110e576200110d620011f2565b5b80604052505050565b600062001124826200106b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200115a576200115962001165565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115620012435760046000803e620012406000516200125c565b90505b90565b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420737570706c792e0000000000000000000000000000000000600082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015620013e0576200146d565b620013ea62000ee4565b60043d036004823e80513d602482011167ffffffffffffffff82111715620014145750506200146d565b808201805167ffffffffffffffff8111156200143457505050506200146d565b80602083010160043d038501811115620014535750505050506200146d565b6200146482602001850186620010e1565b82955050505050505b90565b6200147b8162001011565b81146200148757600080fd5b50565b6157f1806200149a6000396000f3fe6080604052600436106103695760003560e01c80636e5680ab116101c6578063b63a41a4116100f7578063f23a6e6111610095578063f51f96dd1161006f578063f51f96dd14610c99578063f8c06c1614610cc4578063fd3e34e014610cef578063fdf8bcdc14610d2c57610369565b8063f23a6e6114610c0a578063f242432a14610c47578063f2fde38b14610c7057610369565b8063d5abeb01116100d1578063d5abeb0114610b50578063d897833e14610b7b578063e985e9c514610ba4578063ef2a851e14610be157610369565b8063b63a41a414610acc578063bd85b03914610ae8578063cd88055314610b2557610369565b80638da5cb5b116101645780639b7dc1791161013e5780639b7dc17914610a125780639bb0f59914610a3d578063a22cb46514610a7a578063a91789e714610aa357610369565b80638da5cb5b14610993578063928d96ac146109be57806395d89b41146109e757610369565b80638136b83d116101a05780638136b83d146108ed57806386b6bf4f146109165780638895283f1461094157806388d15d501461096a57610369565b80636e5680ab14610880578063715018a6146108ab57806377ee4b0f146108c257610369565b806331b36a0f116102a05780634e1273f41161023e5780635ffccc7a116102185780635ffccc7a146107b25780636136310d146107ef57806368428a1b1461081857806369296ca01461084357610369565b80634e1273f41461070d5780634f558e791461074a57806353135ca01461078757610369565b806344d19d2b1161027a57806344d19d2b1461066157806347da3a5b1461068c578063485a68a3146106b75780634c0f38c2146106e257610369565b806331b36a0f146105f65780633549345e146106215780633ccfd60b1461064a57610369565b806318160ddd1161030d57806322f6477e116102e757806322f6477e1461054e5780632eb2c2d6146105655780632fbc0bf11461058e578063300b2337146105b957610369565b806318160ddd146104cf57806318ddf529146104fa5780631919fed71461052557610369565b806302fe53051161034957806302fe53051461041357806306fdde031461043c5780630e89341c1461046757806312065fe0146104a457610369565b80620e7fa81461036e578062fdd58e1461039957806301ffc9a7146103d6575b600080fd5b34801561037a57600080fd5b50610383610d57565b6040516103909190614a40565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190613dfc565b610d5d565b6040516103cd9190614a40565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f89190613fbb565b610e26565b60405161040a91906146d2565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190614015565b610f08565b005b34801561044857600080fd5b50610451610f90565b60405161045e9190614723565b60405180910390f35b34801561047357600080fd5b5061048e6004803603810190610489919061408b565b61101e565b60405161049b9190614723565b60405180910390f35b3480156104b057600080fd5b506104b96110b2565b6040516104c69190614a40565b60405180910390f35b3480156104db57600080fd5b506104e46110ba565b6040516104f19190614a40565b60405180910390f35b34801561050657600080fd5b5061050f6110dc565b60405161051c9190614a25565b60405180910390f35b34801561053157600080fd5b5061054c6004803603810190610547919061408b565b6110f0565b005b34801561055a57600080fd5b50610563611176565b005b34801561057157600080fd5b5061058c60048036038101906105879190613c56565b61125b565b005b34801561059a57600080fd5b506105a36112fc565b6040516105b09190614a40565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db9190613be9565b611306565b6040516105ed9190614a40565b60405180910390f35b34801561060257600080fd5b5061060b61131e565b60405161061891906146ed565b60405180910390f35b34801561062d57600080fd5b506106486004803603810190610643919061408b565b611324565b005b34801561065657600080fd5b5061065f6113aa565b005b34801561066d57600080fd5b50610676611475565b6040516106839190614a84565b60405180910390f35b34801561069857600080fd5b506106a1611488565b6040516106ae9190614a25565b60405180910390f35b3480156106c357600080fd5b506106cc6114a0565b6040516106d99190614a25565b60405180910390f35b3480156106ee57600080fd5b506106f76114b4565b6040516107049190614a25565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f9190613e3c565b6114cc565b6040516107419190614679565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c919061408b565b6115e5565b60405161077e91906146d2565b60405180910390f35b34801561079357600080fd5b5061079c6115f9565b6040516107a991906146d2565b60405180910390f35b3480156107be57600080fd5b506107d960048036038101906107d491906140b8565b61160c565b6040516107e691906146ed565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190613f61565b611653565b005b34801561082457600080fd5b5061082d6116eb565b60405161083a91906146d2565b60405180910390f35b34801561084f57600080fd5b5061086a60048036038101906108659190613be9565b6116fe565b60405161087791906146d2565b60405180910390f35b34801561088c57600080fd5b5061089561171e565b6040516108a291906146d2565b60405180910390f35b3480156108b757600080fd5b506108c061172f565b005b3480156108ce57600080fd5b506108d76117b7565b6040516108e49190614a40565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f919061405e565b6117c1565b005b34801561092257600080fd5b5061092b61185d565b6040516109389190614a25565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190613f61565b611875565b005b34801561097657600080fd5b50610991600480360381019061098c9190613eb4565b61190e565b005b34801561099f57600080fd5b506109a8611bbc565b6040516109b5919061459c565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190613f8e565b611be6565b005b3480156109f357600080fd5b506109fc611c6c565b604051610a099190614723565b60405180910390f35b348015610a1e57600080fd5b50610a27611cfa565b604051610a349190614a84565b60405180910390f35b348015610a4957600080fd5b50610a646004803603810190610a5f9190613be9565b611d0d565b604051610a7191906146d2565b60405180910390f35b348015610a8657600080fd5b50610aa16004803603810190610a9c9190613dbc565b611d34565b005b348015610aaf57600080fd5b50610aca6004803603810190610ac59190613f8e565b611d4a565b005b610ae66004803603810190610ae19190613f01565b611dd0565b005b348015610af457600080fd5b50610b0f6004803603810190610b0a919061408b565b61230e565b604051610b1c9190614a40565b60405180910390f35b348015610b3157600080fd5b50610b3a61232b565b604051610b4791906146ed565b60405180910390f35b348015610b5c57600080fd5b50610b65612331565b604051610b729190614a25565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190613f61565b612345565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190613c16565b6123de565b604051610bd891906146d2565b60405180910390f35b348015610bed57600080fd5b50610c086004803603810190610c03919061405e565b612472565b005b348015610c1657600080fd5b50610c316004803603810190610c2c9190613d25565b61250e565b604051610c3e9190614708565b60405180910390f35b348015610c5357600080fd5b50610c6e6004803603810190610c699190613d25565b612523565b005b348015610c7c57600080fd5b50610c976004803603810190610c929190613be9565b6125c4565b005b348015610ca557600080fd5b50610cae6126bc565b604051610cbb9190614a40565b60405180910390f35b348015610cd057600080fd5b50610cd96126c2565b604051610ce691906146ed565b60405180910390f35b348015610cfb57600080fd5b50610d166004803603810190610d119190613be9565b6126cc565b604051610d239190614a40565b60405180910390f35b348015610d3857600080fd5b50610d416126e4565b604051610d4e9190614a25565b60405180910390f35b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc5906147a5565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ef157507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610f015750610f00826128f5565b5b9050919050565b610f1061295f565b73ffffffffffffffffffffffffffffffffffffffff16610f2e611bbc565b73ffffffffffffffffffffffffffffffffffffffff1614610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b906148e5565b60405180910390fd5b610f8d81612967565b50565b60068054610f9d90614de6565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc990614de6565b80156110165780601f10610feb57610100808354040283529160200191611016565b820191906000526020600020905b815481529060010190602001808311610ff957829003601f168201915b505050505081565b60606002805461102d90614de6565b80601f016020809104026020016040519081016040528092919081815260200182805461105990614de6565b80156110a65780601f1061107b576101008083540402835291602001916110a6565b820191906000526020600020905b81548152906001019060200180831161108957829003601f168201915b50505050509050919050565b600047905090565b60006110d7600a600c9054906101000a900460ff1660ff1661230e565b905090565b600a60049054906101000a900461ffff1681565b6110f861295f565b73ffffffffffffffffffffffffffffffffffffffff16611116611bbc565b73ffffffffffffffffffffffffffffffffffffffff161461116c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611163906148e5565b60405180910390fd5b8060088190555050565b61117e61295f565b73ffffffffffffffffffffffffffffffffffffffff1661119c611bbc565b73ffffffffffffffffffffffffffffffffffffffff16146111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e9906148e5565b60405180910390fd5b600a60069054906101000a900461ffff16600a60048282829054906101000a900461ffff166112219190614bef565b92506101000a81548161ffff021916908361ffff1602179055506000600a60066101000a81548161ffff021916908361ffff160217905550565b61126361295f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806112a957506112a8856112a361295f565b6123de565b5b6112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df90614885565b60405180910390fd5b6112f58585858585612981565b5050505050565b6000600854905090565b600e6020528060005260406000206000915090505481565b600c5481565b61132c61295f565b73ffffffffffffffffffffffffffffffffffffffff1661134a611bbc565b73ffffffffffffffffffffffffffffffffffffffff16146113a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611397906148e5565b60405180910390fd5b8060098190555050565b6113b261295f565b73ffffffffffffffffffffffffffffffffffffffff166113d0611bbc565b73ffffffffffffffffffffffffffffffffffffffff1614611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d906148e5565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611471573d6000803e3d6000fd5b5050565b600a60089054906101000a900460ff1681565b6000600a60069054906101000a900461ffff16905090565b600a60029054906101000a900461ffff1681565b6000600a60009054906101000a900461ffff16905090565b60608151835114611512576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611509906149c5565b60405180910390fd5b6000835167ffffffffffffffff81111561152f5761152e614f43565b5b60405190808252806020026020018201604052801561155d5781602001602082028036833780820191505090505b50905060005b84518110156115da576115aa85828151811061158257611581614f14565b5b602002602001015185838151811061159d5761159c614f14565b5b6020026020010151610d5d565b8282815181106115bd576115bc614f14565b5b602002602001018181525050806115d390614e49565b9050611563565b508091505092915050565b6000806115f18361230e565b119050919050565b600a60099054906101000a900460ff1681565b6000600c548260ff166020811061162657611625614f14565b5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169050919050565b61165b61295f565b73ffffffffffffffffffffffffffffffffffffffff16611679611bbc565b73ffffffffffffffffffffffffffffffffffffffff16146116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c6906148e5565b60405180910390fd5b80600a806101000a81548160ff02191690831515021790555050565b600a600b9054906101000a900460ff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b600a8054906101000a900460ff1681565b61173761295f565b73ffffffffffffffffffffffffffffffffffffffff16611755611bbc565b73ffffffffffffffffffffffffffffffffffffffff16146117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a2906148e5565b60405180910390fd5b6117b56000612ca3565b565b6000600954905090565b6117c961295f565b73ffffffffffffffffffffffffffffffffffffffff166117e7611bbc565b73ffffffffffffffffffffffffffffffffffffffff161461183d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611834906148e5565b60405180910390fd5b80600a60046101000a81548161ffff021916908361ffff16021790555050565b6000600a60049054906101000a900461ffff16905090565b61187d61295f565b73ffffffffffffffffffffffffffffffffffffffff1661189b611bbc565b73ffffffffffffffffffffffffffffffffffffffff16146118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e8906148e5565b60405180910390fd5b80600a60096101000a81548160ff02191690831515021790555050565b600a8054906101000a900460ff1661195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290614905565b60405180910390fd5b60003360405160200161196e9190614581565b6040516020818303038152906040528051906020012090506119d4838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483612d69565b611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90614965565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790614785565b60405180910390fd5b6000600a60069054906101000a900461ffff1661ffff1611611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee90614825565b60405180910390fd5b611b2533600a600c9054906101000a900460ff1660ff16600260405180602001604052806000815250612d80565b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506002600a60068282829054906101000a900461ffff16611b9d9190614cd7565b92506101000a81548161ffff021916908361ffff160217905550505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bee61295f565b73ffffffffffffffffffffffffffffffffffffffff16611c0c611bbc565b73ffffffffffffffffffffffffffffffffffffffff1614611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c59906148e5565b60405180910390fd5b80600c8190555050565b60078054611c7990614de6565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca590614de6565b8015611cf25780601f10611cc757610100808354040283529160200191611cf2565b820191906000526020600020905b815481529060010190602001808311611cd557829003601f168201915b505050505081565b600a600c9054906101000a900460ff1681565b600080611d2c83600a600c9054906101000a900460ff1660ff16610d5d565b119050919050565b611d46611d3f61295f565b8383612f31565b5050565b611d5261295f565b73ffffffffffffffffffffffffffffffffffffffff16611d70611bbc565b73ffffffffffffffffffffffffffffffffffffffff1614611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd906148e5565b60405180910390fd5b80600b8190555050565b600a60099054906101000a900460ff1680611df75750600a600b9054906101000a900460ff165b611e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2d90614945565b60405180910390fd5b600a600b9054906101000a900460ff1615612045578061ffff16600854611e5d9190614c7d565b341015611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e96906147c5565b60405180910390fd5b6003600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1890614985565b60405180910390fd5b8061ffff16600a60049054906101000a900461ffff1661ffff161015611f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f73906148a5565b60405180910390fd5b611fad33600a600c9054906101000a900460ff1660ff168361ffff1660405180602001604052806000815250612d80565b8061ffff16600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120009190614c27565b9250508190555080600a60048282829054906101000a900461ffff166120269190614cd7565b92506101000a81548161ffff021916908361ffff160217905550612309565b600a60099054906101000a900460ff1615612308578061ffff1660095461206c9190614c7d565b3410156120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a5906147c5565b60405180910390fd5b6000336040516020016120c19190614581565b6040516020818303038152906040528051906020012090506003600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061215b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215290614845565b60405180910390fd5b6121a9848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b5483612d69565b6121e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121df90614965565b60405180910390fd5b8161ffff16600a60049054906101000a900461ffff1661ffff1611612242576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612239906148a5565b60405180910390fd5b61227333600a600c9054906101000a900460ff1660ff168461ffff1660405180602001604052806000815250612d80565b8161ffff16600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122c69190614c27565b9250508190555081600a60048282829054906101000a900461ffff166122ec9190614cd7565b92506101000a81548161ffff021916908361ffff160217905550505b5b505050565b600060046000838152602001908152602001600020549050919050565b600b5481565b600a60009054906101000a900461ffff1681565b61234d61295f565b73ffffffffffffffffffffffffffffffffffffffff1661236b611bbc565b73ffffffffffffffffffffffffffffffffffffffff16146123c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b8906148e5565b60405180910390fd5b80600a600b6101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61247a61295f565b73ffffffffffffffffffffffffffffffffffffffff16612498611bbc565b73ffffffffffffffffffffffffffffffffffffffff16146124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e5906148e5565b60405180910390fd5b80600a60066101000a81548161ffff021916908361ffff16021790555050565b600063f23a6e6160e01b905095945050505050565b61252b61295f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061257157506125708561256b61295f565b6123de565b5b6125b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a790614805565b60405180910390fd5b6125bd858585858561309e565b5050505050565b6125cc61295f565b73ffffffffffffffffffffffffffffffffffffffff166125ea611bbc565b73ffffffffffffffffffffffffffffffffffffffff1614612640576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612637906148e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a7906147e5565b60405180910390fd5b6126b981612ca3565b50565b60085481565b6000600b54905090565b600d6020528060005260406000206000915090505481565b600a60069054906101000a900461ffff1681565b6127068686868686866128ed565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127b85760005b83518110156127b65782818151811061275a57612759614f14565b5b60200260200101516004600086848151811061277957612778614f14565b5b60200260200101518152602001908152602001600020600082825461279e9190614c27565b92505081905550806127af90614e49565b905061273e565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128c25760005b83518110156128c057600084828151811061280e5761280d614f14565b5b60200260200101519050600084838151811061282d5761282c614f14565b5b6020026020010151905060006004600084815260200190815260200160002054905081811015612892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288990614925565b60405180910390fd5b8181036004600085815260200190815260200160002081905550505050806128b990614e49565b90506127f0565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806002908051906020019061297d92919061382c565b5050565b81518351146129c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bc906149e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2c90614865565b60405180910390fd5b6000612a3f61295f565b9050612a4f81878787878761333a565b60005b8451811015612c00576000858281518110612a7057612a6f614f14565b5b602002602001015190506000858381518110612a8f57612a8e614f14565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b27906148c5565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612be59190614c27565b9250508190555050505080612bf990614e49565b9050612a52565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612c7792919061469b565b60405180910390a4612c8d818787878787613350565b612c9b818787878787613358565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082612d76858461353f565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de790614a05565b60405180910390fd5b6000612dfa61295f565b90506000612e07856135b4565b90506000612e14856135b4565b9050612e258360008985858961333a565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e849190614c27565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612f02929190614a5b565b60405180910390a4612f1983600089858589613350565b612f288360008989898961362e565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f97906149a5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161309191906146d2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561310e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310590614865565b60405180910390fd5b600061311861295f565b90506000613125856135b4565b90506000613132856135b4565b905061314283898985858961333a565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156131d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d0906148c5565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461328e9190614c27565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a60405161330b929190614a5b565b60405180910390a4613321848a8a86868a613350565b61332f848a8a8a8a8a61362e565b505050505050505050565b6133488686868686866126f8565b505050505050565b505050505050565b6133778473ffffffffffffffffffffffffffffffffffffffff166128ca565b15613537578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016133bd9594939291906145b7565b602060405180830381600087803b1580156133d757600080fd5b505af192505050801561340857506040513d601f19601f820116820180604052508101906134059190613fe8565b60015b6134ae57613414614f72565b806308c379a014156134715750613429615684565b806134345750613473565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134689190614723565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a590614745565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352c90614765565b60405180910390fd5b505b505050505050565b60008082905060005b84518110156135a957600085828151811061356657613565614f14565b5b60200260200101519050808311613588576135818382613815565b9250613595565b6135928184613815565b92505b5080806135a190614e49565b915050613548565b508091505092915050565b60606000600167ffffffffffffffff8111156135d3576135d2614f43565b5b6040519080825280602002602001820160405280156136015781602001602082028036833780820191505090505b509050828160008151811061361957613618614f14565b5b60200260200101818152505080915050919050565b61364d8473ffffffffffffffffffffffffffffffffffffffff166128ca565b1561380d578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161369395949392919061461f565b602060405180830381600087803b1580156136ad57600080fd5b505af19250505080156136de57506040513d601f19601f820116820180604052508101906136db9190613fe8565b60015b613784576136ea614f72565b806308c379a0141561374757506136ff615684565b8061370a5750613749565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373e9190614723565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377b90614745565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461380b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380290614765565b60405180910390fd5b505b505050505050565b600082600052816020526040600020905092915050565b82805461383890614de6565b90600052602060002090601f01602090048101928261385a57600085556138a1565b82601f1061387357805160ff19168380011785556138a1565b828001600101855582156138a1579182015b828111156138a0578251825591602001919060010190613885565b5b5090506138ae91906138b2565b5090565b5b808211156138cb5760008160009055506001016138b3565b5090565b60006138e26138dd84614ac4565b614a9f565b9050808382526020820190508285602086028201111561390557613904614f9e565b5b60005b85811015613935578161391b8882613a33565b845260208401935060208301925050600181019050613908565b5050509392505050565b600061395261394d84614af0565b614a9f565b9050808382526020820190508285602086028201111561397557613974614f9e565b5b60005b858110156139a5578161398b8882613bbf565b845260208401935060208301925050600181019050613978565b5050509392505050565b60006139c26139bd84614b1c565b614a9f565b9050828152602081018484840111156139de576139dd614fa3565b5b6139e9848285614da4565b509392505050565b6000613a046139ff84614b4d565b614a9f565b905082815260208101848484011115613a2057613a1f614fa3565b5b613a2b848285614da4565b509392505050565b600081359050613a428161571a565b92915050565b600082601f830112613a5d57613a5c614f99565b5b8135613a6d8482602086016138cf565b91505092915050565b60008083601f840112613a8c57613a8b614f99565b5b8235905067ffffffffffffffff811115613aa957613aa8614f94565b5b602083019150836020820283011115613ac557613ac4614f9e565b5b9250929050565b600082601f830112613ae157613ae0614f99565b5b8135613af184826020860161393f565b91505092915050565b600081359050613b0981615731565b92915050565b600081359050613b1e81615748565b92915050565b600081359050613b338161575f565b92915050565b600081519050613b488161575f565b92915050565b600082601f830112613b6357613b62614f99565b5b8135613b738482602086016139af565b91505092915050565b600082601f830112613b9157613b90614f99565b5b8135613ba18482602086016139f1565b91505092915050565b600081359050613bb981615776565b92915050565b600081359050613bce8161578d565b92915050565b600081359050613be3816157a4565b92915050565b600060208284031215613bff57613bfe614fad565b5b6000613c0d84828501613a33565b91505092915050565b60008060408385031215613c2d57613c2c614fad565b5b6000613c3b85828601613a33565b9250506020613c4c85828601613a33565b9150509250929050565b600080600080600060a08688031215613c7257613c71614fad565b5b6000613c8088828901613a33565b9550506020613c9188828901613a33565b945050604086013567ffffffffffffffff811115613cb257613cb1614fa8565b5b613cbe88828901613acc565b935050606086013567ffffffffffffffff811115613cdf57613cde614fa8565b5b613ceb88828901613acc565b925050608086013567ffffffffffffffff811115613d0c57613d0b614fa8565b5b613d1888828901613b4e565b9150509295509295909350565b600080600080600060a08688031215613d4157613d40614fad565b5b6000613d4f88828901613a33565b9550506020613d6088828901613a33565b9450506040613d7188828901613bbf565b9350506060613d8288828901613bbf565b925050608086013567ffffffffffffffff811115613da357613da2614fa8565b5b613daf88828901613b4e565b9150509295509295909350565b60008060408385031215613dd357613dd2614fad565b5b6000613de185828601613a33565b9250506020613df285828601613afa565b9150509250929050565b60008060408385031215613e1357613e12614fad565b5b6000613e2185828601613a33565b9250506020613e3285828601613bbf565b9150509250929050565b60008060408385031215613e5357613e52614fad565b5b600083013567ffffffffffffffff811115613e7157613e70614fa8565b5b613e7d85828601613a48565b925050602083013567ffffffffffffffff811115613e9e57613e9d614fa8565b5b613eaa85828601613acc565b9150509250929050565b60008060208385031215613ecb57613eca614fad565b5b600083013567ffffffffffffffff811115613ee957613ee8614fa8565b5b613ef585828601613a76565b92509250509250929050565b600080600060408486031215613f1a57613f19614fad565b5b600084013567ffffffffffffffff811115613f3857613f37614fa8565b5b613f4486828701613a76565b93509350506020613f5786828701613baa565b9150509250925092565b600060208284031215613f7757613f76614fad565b5b6000613f8584828501613afa565b91505092915050565b600060208284031215613fa457613fa3614fad565b5b6000613fb284828501613b0f565b91505092915050565b600060208284031215613fd157613fd0614fad565b5b6000613fdf84828501613b24565b91505092915050565b600060208284031215613ffe57613ffd614fad565b5b600061400c84828501613b39565b91505092915050565b60006020828403121561402b5761402a614fad565b5b600082013567ffffffffffffffff81111561404957614048614fa8565b5b61405584828501613b7c565b91505092915050565b60006020828403121561407457614073614fad565b5b600061408284828501613baa565b91505092915050565b6000602082840312156140a1576140a0614fad565b5b60006140af84828501613bbf565b91505092915050565b6000602082840312156140ce576140cd614fad565b5b60006140dc84828501613bd4565b91505092915050565b60006140f18383614554565b60208301905092915050565b61410681614d0b565b82525050565b61411d61411882614d0b565b614e92565b82525050565b600061412e82614b8e565b6141388185614bbc565b935061414383614b7e565b8060005b8381101561417457815161415b88826140e5565b975061416683614baf565b925050600181019050614147565b5085935050505092915050565b61418a81614d1d565b82525050565b61419981614d29565b82525050565b6141a881614d33565b82525050565b60006141b982614b99565b6141c38185614bcd565b93506141d3818560208601614db3565b6141dc81614fb2565b840191505092915050565b60006141f282614ba4565b6141fc8185614bde565b935061420c818560208601614db3565b61421581614fb2565b840191505092915050565b600061422d603483614bde565b915061423882614fdd565b604082019050919050565b6000614250602883614bde565b915061425b8261502c565b604082019050919050565b6000614273603083614bde565b915061427e8261507b565b604082019050919050565b6000614296602b83614bde565b91506142a1826150ca565b604082019050919050565b60006142b9601e83614bde565b91506142c482615119565b602082019050919050565b60006142dc602683614bde565b91506142e782615142565b604082019050919050565b60006142ff602983614bde565b915061430a82615191565b604082019050919050565b6000614322603483614bde565b915061432d826151e0565b604082019050919050565b6000614345603283614bde565b91506143508261522f565b604082019050919050565b6000614368602583614bde565b91506143738261527e565b604082019050919050565b600061438b603283614bde565b9150614396826152cd565b604082019050919050565b60006143ae602183614bde565b91506143b98261531c565b604082019050919050565b60006143d1602a83614bde565b91506143dc8261536b565b604082019050919050565b60006143f4602083614bde565b91506143ff826153ba565b602082019050919050565b6000614417602683614bde565b9150614422826153e3565b604082019050919050565b600061443a602883614bde565b915061444582615432565b604082019050919050565b600061445d601983614bde565b915061446882615481565b602082019050919050565b6000614480602a83614bde565b915061448b826154aa565b604082019050919050565b60006144a3603783614bde565b91506144ae826154f9565b604082019050919050565b60006144c6602983614bde565b91506144d182615548565b604082019050919050565b60006144e9602983614bde565b91506144f482615597565b604082019050919050565b600061450c602883614bde565b9150614517826155e6565b604082019050919050565b600061452f602183614bde565b915061453a82615635565b604082019050919050565b61454e81614d5f565b82525050565b61455d81614d8d565b82525050565b61456c81614d8d565b82525050565b61457b81614d97565b82525050565b600061458d828461410c565b60148201915081905092915050565b60006020820190506145b160008301846140fd565b92915050565b600060a0820190506145cc60008301886140fd565b6145d960208301876140fd565b81810360408301526145eb8186614123565b905081810360608301526145ff8185614123565b9050818103608083015261461381846141ae565b90509695505050505050565b600060a08201905061463460008301886140fd565b61464160208301876140fd565b61464e6040830186614563565b61465b6060830185614563565b818103608083015261466d81846141ae565b90509695505050505050565b600060208201905081810360008301526146938184614123565b905092915050565b600060408201905081810360008301526146b58185614123565b905081810360208301526146c98184614123565b90509392505050565b60006020820190506146e76000830184614181565b92915050565b60006020820190506147026000830184614190565b92915050565b600060208201905061471d600083018461419f565b92915050565b6000602082019050818103600083015261473d81846141e7565b905092915050565b6000602082019050818103600083015261475e81614220565b9050919050565b6000602082019050818103600083015261477e81614243565b9050919050565b6000602082019050818103600083015261479e81614266565b9050919050565b600060208201905081810360008301526147be81614289565b9050919050565b600060208201905081810360008301526147de816142ac565b9050919050565b600060208201905081810360008301526147fe816142cf565b9050919050565b6000602082019050818103600083015261481e816142f2565b9050919050565b6000602082019050818103600083015261483e81614315565b9050919050565b6000602082019050818103600083015261485e81614338565b9050919050565b6000602082019050818103600083015261487e8161435b565b9050919050565b6000602082019050818103600083015261489e8161437e565b9050919050565b600060208201905081810360008301526148be816143a1565b9050919050565b600060208201905081810360008301526148de816143c4565b9050919050565b600060208201905081810360008301526148fe816143e7565b9050919050565b6000602082019050818103600083015261491e8161440a565b9050919050565b6000602082019050818103600083015261493e8161442d565b9050919050565b6000602082019050818103600083015261495e81614450565b9050919050565b6000602082019050818103600083015261497e81614473565b9050919050565b6000602082019050818103600083015261499e81614496565b9050919050565b600060208201905081810360008301526149be816144b9565b9050919050565b600060208201905081810360008301526149de816144dc565b9050919050565b600060208201905081810360008301526149fe816144ff565b9050919050565b60006020820190508181036000830152614a1e81614522565b9050919050565b6000602082019050614a3a6000830184614545565b92915050565b6000602082019050614a556000830184614563565b92915050565b6000604082019050614a706000830185614563565b614a7d6020830184614563565b9392505050565b6000602082019050614a996000830184614572565b92915050565b6000614aa9614aba565b9050614ab58282614e18565b919050565b6000604051905090565b600067ffffffffffffffff821115614adf57614ade614f43565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b0b57614b0a614f43565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b3757614b36614f43565b5b614b4082614fb2565b9050602081019050919050565b600067ffffffffffffffff821115614b6857614b67614f43565b5b614b7182614fb2565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000614bfa82614d5f565b9150614c0583614d5f565b92508261ffff03821115614c1c57614c1b614eb6565b5b828201905092915050565b6000614c3282614d8d565b9150614c3d83614d8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c7257614c71614eb6565b5b828201905092915050565b6000614c8882614d8d565b9150614c9383614d8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ccc57614ccb614eb6565b5b828202905092915050565b6000614ce282614d5f565b9150614ced83614d5f565b925082821015614d0057614cff614eb6565b5b828203905092915050565b6000614d1682614d6d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614dd1578082015181840152602081019050614db6565b83811115614de0576000848401525b50505050565b60006002820490506001821680614dfe57607f821691505b60208210811415614e1257614e11614ee5565b5b50919050565b614e2182614fb2565b810181811067ffffffffffffffff82111715614e4057614e3f614f43565b5b80604052505050565b6000614e5482614d8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e8757614e86614eb6565b5b600182019050919050565b6000614e9d82614ea4565b9050919050565b6000614eaf82614fc3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115614f915760046000803e614f8e600051614fd0565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4c75636b79373a20596f75206861766520616c726561647920636c61696d656460008201527f20796f75722066726565206d696e742e00000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4c75636b79373a20496e73756666696369656e742074782076616c75652e0000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4c75636b79373a20546865726520697320696e73756666696369656e7420726560008201527f6d61696e696e67206672656520737570706c792e000000000000000000000000602082015250565b7f4c75636b793a20596f752063616e6e6f74206d696e74206d6f7265207468616e60008201527f203220696e207468652070726573616c652e0000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4c75636b79373a204578636565647320617661696c61626c6520737570706c7960008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4c75636b79373a205468652066726565206d696e7420686173206e6f7420737460008201527f61727465642e0000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b7f6c75636b79373a2053616c65206973206e6f74206c6976652e00000000000000600082015250565b7f4c75636b79373a20496e76616c69642070726f6f6620286e6f74206f6e20776860008201527f6974656c6973743f292e00000000000000000000000000000000000000000000602082015250565b7f4c75636b79373a20596f752063616e6e6f74206d696e74206d6f72652074686160008201527f6e203220696e20746865207075626c69632073616c652e000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d101561569457615717565b61569c614aba565b60043d036004823e80513d602482011167ffffffffffffffff821117156156c4575050615717565b808201805167ffffffffffffffff8111156156e25750505050615717565b80602083010160043d0385018111156156ff575050505050615717565b61570e82602001850186614e18565b82955050505050505b90565b61572381614d0b565b811461572e57600080fd5b50565b61573a81614d1d565b811461574557600080fd5b50565b61575181614d29565b811461575c57600080fd5b50565b61576881614d33565b811461577357600080fd5b50565b61577f81614d5f565b811461578a57600080fd5b50565b61579681614d8d565b81146157a157600080fd5b50565b6157ad81614d97565b81146157b857600080fd5b5056fea2646970667358221220676023ce72ffd72d5691a505257f00083a0f481b3f91473d28874f01ec7afab064736f6c63430008070033697066733a2f2f516d66434b50796a3133616d4d43456d47725045373935484b53336f59445939363947544577333761587951547a

Deployed Bytecode

0x6080604052600436106103695760003560e01c80636e5680ab116101c6578063b63a41a4116100f7578063f23a6e6111610095578063f51f96dd1161006f578063f51f96dd14610c99578063f8c06c1614610cc4578063fd3e34e014610cef578063fdf8bcdc14610d2c57610369565b8063f23a6e6114610c0a578063f242432a14610c47578063f2fde38b14610c7057610369565b8063d5abeb01116100d1578063d5abeb0114610b50578063d897833e14610b7b578063e985e9c514610ba4578063ef2a851e14610be157610369565b8063b63a41a414610acc578063bd85b03914610ae8578063cd88055314610b2557610369565b80638da5cb5b116101645780639b7dc1791161013e5780639b7dc17914610a125780639bb0f59914610a3d578063a22cb46514610a7a578063a91789e714610aa357610369565b80638da5cb5b14610993578063928d96ac146109be57806395d89b41146109e757610369565b80638136b83d116101a05780638136b83d146108ed57806386b6bf4f146109165780638895283f1461094157806388d15d501461096a57610369565b80636e5680ab14610880578063715018a6146108ab57806377ee4b0f146108c257610369565b806331b36a0f116102a05780634e1273f41161023e5780635ffccc7a116102185780635ffccc7a146107b25780636136310d146107ef57806368428a1b1461081857806369296ca01461084357610369565b80634e1273f41461070d5780634f558e791461074a57806353135ca01461078757610369565b806344d19d2b1161027a57806344d19d2b1461066157806347da3a5b1461068c578063485a68a3146106b75780634c0f38c2146106e257610369565b806331b36a0f146105f65780633549345e146106215780633ccfd60b1461064a57610369565b806318160ddd1161030d57806322f6477e116102e757806322f6477e1461054e5780632eb2c2d6146105655780632fbc0bf11461058e578063300b2337146105b957610369565b806318160ddd146104cf57806318ddf529146104fa5780631919fed71461052557610369565b806302fe53051161034957806302fe53051461041357806306fdde031461043c5780630e89341c1461046757806312065fe0146104a457610369565b80620e7fa81461036e578062fdd58e1461039957806301ffc9a7146103d6575b600080fd5b34801561037a57600080fd5b50610383610d57565b6040516103909190614a40565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190613dfc565b610d5d565b6040516103cd9190614a40565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f89190613fbb565b610e26565b60405161040a91906146d2565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190614015565b610f08565b005b34801561044857600080fd5b50610451610f90565b60405161045e9190614723565b60405180910390f35b34801561047357600080fd5b5061048e6004803603810190610489919061408b565b61101e565b60405161049b9190614723565b60405180910390f35b3480156104b057600080fd5b506104b96110b2565b6040516104c69190614a40565b60405180910390f35b3480156104db57600080fd5b506104e46110ba565b6040516104f19190614a40565b60405180910390f35b34801561050657600080fd5b5061050f6110dc565b60405161051c9190614a25565b60405180910390f35b34801561053157600080fd5b5061054c6004803603810190610547919061408b565b6110f0565b005b34801561055a57600080fd5b50610563611176565b005b34801561057157600080fd5b5061058c60048036038101906105879190613c56565b61125b565b005b34801561059a57600080fd5b506105a36112fc565b6040516105b09190614a40565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db9190613be9565b611306565b6040516105ed9190614a40565b60405180910390f35b34801561060257600080fd5b5061060b61131e565b60405161061891906146ed565b60405180910390f35b34801561062d57600080fd5b506106486004803603810190610643919061408b565b611324565b005b34801561065657600080fd5b5061065f6113aa565b005b34801561066d57600080fd5b50610676611475565b6040516106839190614a84565b60405180910390f35b34801561069857600080fd5b506106a1611488565b6040516106ae9190614a25565b60405180910390f35b3480156106c357600080fd5b506106cc6114a0565b6040516106d99190614a25565b60405180910390f35b3480156106ee57600080fd5b506106f76114b4565b6040516107049190614a25565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f9190613e3c565b6114cc565b6040516107419190614679565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c919061408b565b6115e5565b60405161077e91906146d2565b60405180910390f35b34801561079357600080fd5b5061079c6115f9565b6040516107a991906146d2565b60405180910390f35b3480156107be57600080fd5b506107d960048036038101906107d491906140b8565b61160c565b6040516107e691906146ed565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190613f61565b611653565b005b34801561082457600080fd5b5061082d6116eb565b60405161083a91906146d2565b60405180910390f35b34801561084f57600080fd5b5061086a60048036038101906108659190613be9565b6116fe565b60405161087791906146d2565b60405180910390f35b34801561088c57600080fd5b5061089561171e565b6040516108a291906146d2565b60405180910390f35b3480156108b757600080fd5b506108c061172f565b005b3480156108ce57600080fd5b506108d76117b7565b6040516108e49190614a40565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f919061405e565b6117c1565b005b34801561092257600080fd5b5061092b61185d565b6040516109389190614a25565b60405180910390f35b34801561094d57600080fd5b5061096860048036038101906109639190613f61565b611875565b005b34801561097657600080fd5b50610991600480360381019061098c9190613eb4565b61190e565b005b34801561099f57600080fd5b506109a8611bbc565b6040516109b5919061459c565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190613f8e565b611be6565b005b3480156109f357600080fd5b506109fc611c6c565b604051610a099190614723565b60405180910390f35b348015610a1e57600080fd5b50610a27611cfa565b604051610a349190614a84565b60405180910390f35b348015610a4957600080fd5b50610a646004803603810190610a5f9190613be9565b611d0d565b604051610a7191906146d2565b60405180910390f35b348015610a8657600080fd5b50610aa16004803603810190610a9c9190613dbc565b611d34565b005b348015610aaf57600080fd5b50610aca6004803603810190610ac59190613f8e565b611d4a565b005b610ae66004803603810190610ae19190613f01565b611dd0565b005b348015610af457600080fd5b50610b0f6004803603810190610b0a919061408b565b61230e565b604051610b1c9190614a40565b60405180910390f35b348015610b3157600080fd5b50610b3a61232b565b604051610b4791906146ed565b60405180910390f35b348015610b5c57600080fd5b50610b65612331565b604051610b729190614a25565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190613f61565b612345565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190613c16565b6123de565b604051610bd891906146d2565b60405180910390f35b348015610bed57600080fd5b50610c086004803603810190610c03919061405e565b612472565b005b348015610c1657600080fd5b50610c316004803603810190610c2c9190613d25565b61250e565b604051610c3e9190614708565b60405180910390f35b348015610c5357600080fd5b50610c6e6004803603810190610c699190613d25565b612523565b005b348015610c7c57600080fd5b50610c976004803603810190610c929190613be9565b6125c4565b005b348015610ca557600080fd5b50610cae6126bc565b604051610cbb9190614a40565b60405180910390f35b348015610cd057600080fd5b50610cd96126c2565b604051610ce691906146ed565b60405180910390f35b348015610cfb57600080fd5b50610d166004803603810190610d119190613be9565b6126cc565b604051610d239190614a40565b60405180910390f35b348015610d3857600080fd5b50610d416126e4565b604051610d4e9190614a25565b60405180910390f35b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc5906147a5565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ef157507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610f015750610f00826128f5565b5b9050919050565b610f1061295f565b73ffffffffffffffffffffffffffffffffffffffff16610f2e611bbc565b73ffffffffffffffffffffffffffffffffffffffff1614610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b906148e5565b60405180910390fd5b610f8d81612967565b50565b60068054610f9d90614de6565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc990614de6565b80156110165780601f10610feb57610100808354040283529160200191611016565b820191906000526020600020905b815481529060010190602001808311610ff957829003601f168201915b505050505081565b60606002805461102d90614de6565b80601f016020809104026020016040519081016040528092919081815260200182805461105990614de6565b80156110a65780601f1061107b576101008083540402835291602001916110a6565b820191906000526020600020905b81548152906001019060200180831161108957829003601f168201915b50505050509050919050565b600047905090565b60006110d7600a600c9054906101000a900460ff1660ff1661230e565b905090565b600a60049054906101000a900461ffff1681565b6110f861295f565b73ffffffffffffffffffffffffffffffffffffffff16611116611bbc565b73ffffffffffffffffffffffffffffffffffffffff161461116c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611163906148e5565b60405180910390fd5b8060088190555050565b61117e61295f565b73ffffffffffffffffffffffffffffffffffffffff1661119c611bbc565b73ffffffffffffffffffffffffffffffffffffffff16146111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e9906148e5565b60405180910390fd5b600a60069054906101000a900461ffff16600a60048282829054906101000a900461ffff166112219190614bef565b92506101000a81548161ffff021916908361ffff1602179055506000600a60066101000a81548161ffff021916908361ffff160217905550565b61126361295f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806112a957506112a8856112a361295f565b6123de565b5b6112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df90614885565b60405180910390fd5b6112f58585858585612981565b5050505050565b6000600854905090565b600e6020528060005260406000206000915090505481565b600c5481565b61132c61295f565b73ffffffffffffffffffffffffffffffffffffffff1661134a611bbc565b73ffffffffffffffffffffffffffffffffffffffff16146113a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611397906148e5565b60405180910390fd5b8060098190555050565b6113b261295f565b73ffffffffffffffffffffffffffffffffffffffff166113d0611bbc565b73ffffffffffffffffffffffffffffffffffffffff1614611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d906148e5565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611471573d6000803e3d6000fd5b5050565b600a60089054906101000a900460ff1681565b6000600a60069054906101000a900461ffff16905090565b600a60029054906101000a900461ffff1681565b6000600a60009054906101000a900461ffff16905090565b60608151835114611512576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611509906149c5565b60405180910390fd5b6000835167ffffffffffffffff81111561152f5761152e614f43565b5b60405190808252806020026020018201604052801561155d5781602001602082028036833780820191505090505b50905060005b84518110156115da576115aa85828151811061158257611581614f14565b5b602002602001015185838151811061159d5761159c614f14565b5b6020026020010151610d5d565b8282815181106115bd576115bc614f14565b5b602002602001018181525050806115d390614e49565b9050611563565b508091505092915050565b6000806115f18361230e565b119050919050565b600a60099054906101000a900460ff1681565b6000600c548260ff166020811061162657611625614f14565b5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169050919050565b61165b61295f565b73ffffffffffffffffffffffffffffffffffffffff16611679611bbc565b73ffffffffffffffffffffffffffffffffffffffff16146116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c6906148e5565b60405180910390fd5b80600a806101000a81548160ff02191690831515021790555050565b600a600b9054906101000a900460ff1681565b600f6020528060005260406000206000915054906101000a900460ff1681565b600a8054906101000a900460ff1681565b61173761295f565b73ffffffffffffffffffffffffffffffffffffffff16611755611bbc565b73ffffffffffffffffffffffffffffffffffffffff16146117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a2906148e5565b60405180910390fd5b6117b56000612ca3565b565b6000600954905090565b6117c961295f565b73ffffffffffffffffffffffffffffffffffffffff166117e7611bbc565b73ffffffffffffffffffffffffffffffffffffffff161461183d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611834906148e5565b60405180910390fd5b80600a60046101000a81548161ffff021916908361ffff16021790555050565b6000600a60049054906101000a900461ffff16905090565b61187d61295f565b73ffffffffffffffffffffffffffffffffffffffff1661189b611bbc565b73ffffffffffffffffffffffffffffffffffffffff16146118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e8906148e5565b60405180910390fd5b80600a60096101000a81548160ff02191690831515021790555050565b600a8054906101000a900460ff1661195b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195290614905565b60405180910390fd5b60003360405160200161196e9190614581565b6040516020818303038152906040528051906020012090506119d4838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483612d69565b611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a90614965565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9790614785565b60405180910390fd5b6000600a60069054906101000a900461ffff1661ffff1611611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee90614825565b60405180910390fd5b611b2533600a600c9054906101000a900460ff1660ff16600260405180602001604052806000815250612d80565b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506002600a60068282829054906101000a900461ffff16611b9d9190614cd7565b92506101000a81548161ffff021916908361ffff160217905550505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bee61295f565b73ffffffffffffffffffffffffffffffffffffffff16611c0c611bbc565b73ffffffffffffffffffffffffffffffffffffffff1614611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c59906148e5565b60405180910390fd5b80600c8190555050565b60078054611c7990614de6565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca590614de6565b8015611cf25780601f10611cc757610100808354040283529160200191611cf2565b820191906000526020600020905b815481529060010190602001808311611cd557829003601f168201915b505050505081565b600a600c9054906101000a900460ff1681565b600080611d2c83600a600c9054906101000a900460ff1660ff16610d5d565b119050919050565b611d46611d3f61295f565b8383612f31565b5050565b611d5261295f565b73ffffffffffffffffffffffffffffffffffffffff16611d70611bbc565b73ffffffffffffffffffffffffffffffffffffffff1614611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd906148e5565b60405180910390fd5b80600b8190555050565b600a60099054906101000a900460ff1680611df75750600a600b9054906101000a900460ff165b611e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2d90614945565b60405180910390fd5b600a600b9054906101000a900460ff1615612045578061ffff16600854611e5d9190614c7d565b341015611e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e96906147c5565b60405180910390fd5b6003600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1890614985565b60405180910390fd5b8061ffff16600a60049054906101000a900461ffff1661ffff161015611f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f73906148a5565b60405180910390fd5b611fad33600a600c9054906101000a900460ff1660ff168361ffff1660405180602001604052806000815250612d80565b8061ffff16600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120009190614c27565b9250508190555080600a60048282829054906101000a900461ffff166120269190614cd7565b92506101000a81548161ffff021916908361ffff160217905550612309565b600a60099054906101000a900460ff1615612308578061ffff1660095461206c9190614c7d565b3410156120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a5906147c5565b60405180910390fd5b6000336040516020016120c19190614581565b6040516020818303038152906040528051906020012090506003600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061215b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215290614845565b60405180910390fd5b6121a9848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600b5483612d69565b6121e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121df90614965565b60405180910390fd5b8161ffff16600a60049054906101000a900461ffff1661ffff1611612242576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612239906148a5565b60405180910390fd5b61227333600a600c9054906101000a900460ff1660ff168461ffff1660405180602001604052806000815250612d80565b8161ffff16600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122c69190614c27565b9250508190555081600a60048282829054906101000a900461ffff166122ec9190614cd7565b92506101000a81548161ffff021916908361ffff160217905550505b5b505050565b600060046000838152602001908152602001600020549050919050565b600b5481565b600a60009054906101000a900461ffff1681565b61234d61295f565b73ffffffffffffffffffffffffffffffffffffffff1661236b611bbc565b73ffffffffffffffffffffffffffffffffffffffff16146123c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b8906148e5565b60405180910390fd5b80600a600b6101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61247a61295f565b73ffffffffffffffffffffffffffffffffffffffff16612498611bbc565b73ffffffffffffffffffffffffffffffffffffffff16146124ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e5906148e5565b60405180910390fd5b80600a60066101000a81548161ffff021916908361ffff16021790555050565b600063f23a6e6160e01b905095945050505050565b61252b61295f565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061257157506125708561256b61295f565b6123de565b5b6125b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a790614805565b60405180910390fd5b6125bd858585858561309e565b5050505050565b6125cc61295f565b73ffffffffffffffffffffffffffffffffffffffff166125ea611bbc565b73ffffffffffffffffffffffffffffffffffffffff1614612640576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612637906148e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a7906147e5565b60405180910390fd5b6126b981612ca3565b50565b60085481565b6000600b54905090565b600d6020528060005260406000206000915090505481565b600a60069054906101000a900461ffff1681565b6127068686868686866128ed565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127b85760005b83518110156127b65782818151811061275a57612759614f14565b5b60200260200101516004600086848151811061277957612778614f14565b5b60200260200101518152602001908152602001600020600082825461279e9190614c27565b92505081905550806127af90614e49565b905061273e565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128c25760005b83518110156128c057600084828151811061280e5761280d614f14565b5b60200260200101519050600084838151811061282d5761282c614f14565b5b6020026020010151905060006004600084815260200190815260200160002054905081811015612892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288990614925565b60405180910390fd5b8181036004600085815260200190815260200160002081905550505050806128b990614e49565b90506127f0565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b806002908051906020019061297d92919061382c565b5050565b81518351146129c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bc906149e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2c90614865565b60405180910390fd5b6000612a3f61295f565b9050612a4f81878787878761333a565b60005b8451811015612c00576000858281518110612a7057612a6f614f14565b5b602002602001015190506000858381518110612a8f57612a8e614f14565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b27906148c5565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612be59190614c27565b9250508190555050505080612bf990614e49565b9050612a52565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612c7792919061469b565b60405180910390a4612c8d818787878787613350565b612c9b818787878787613358565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082612d76858461353f565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de790614a05565b60405180910390fd5b6000612dfa61295f565b90506000612e07856135b4565b90506000612e14856135b4565b9050612e258360008985858961333a565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e849190614c27565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612f02929190614a5b565b60405180910390a4612f1983600089858589613350565b612f288360008989898961362e565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f97906149a5565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161309191906146d2565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561310e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310590614865565b60405180910390fd5b600061311861295f565b90506000613125856135b4565b90506000613132856135b4565b905061314283898985858961333a565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156131d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d0906148c5565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461328e9190614c27565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a60405161330b929190614a5b565b60405180910390a4613321848a8a86868a613350565b61332f848a8a8a8a8a61362e565b505050505050505050565b6133488686868686866126f8565b505050505050565b505050505050565b6133778473ffffffffffffffffffffffffffffffffffffffff166128ca565b15613537578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016133bd9594939291906145b7565b602060405180830381600087803b1580156133d757600080fd5b505af192505050801561340857506040513d601f19601f820116820180604052508101906134059190613fe8565b60015b6134ae57613414614f72565b806308c379a014156134715750613429615684565b806134345750613473565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134689190614723565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a590614745565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352c90614765565b60405180910390fd5b505b505050505050565b60008082905060005b84518110156135a957600085828151811061356657613565614f14565b5b60200260200101519050808311613588576135818382613815565b9250613595565b6135928184613815565b92505b5080806135a190614e49565b915050613548565b508091505092915050565b60606000600167ffffffffffffffff8111156135d3576135d2614f43565b5b6040519080825280602002602001820160405280156136015781602001602082028036833780820191505090505b509050828160008151811061361957613618614f14565b5b60200260200101818152505080915050919050565b61364d8473ffffffffffffffffffffffffffffffffffffffff166128ca565b1561380d578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161369395949392919061461f565b602060405180830381600087803b1580156136ad57600080fd5b505af19250505080156136de57506040513d601f19601f820116820180604052508101906136db9190613fe8565b60015b613784576136ea614f72565b806308c379a0141561374757506136ff615684565b8061370a5750613749565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373e9190614723565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161377b90614745565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461380b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380290614765565b60405180910390fd5b505b505050505050565b600082600052816020526040600020905092915050565b82805461383890614de6565b90600052602060002090601f01602090048101928261385a57600085556138a1565b82601f1061387357805160ff19168380011785556138a1565b828001600101855582156138a1579182015b828111156138a0578251825591602001919060010190613885565b5b5090506138ae91906138b2565b5090565b5b808211156138cb5760008160009055506001016138b3565b5090565b60006138e26138dd84614ac4565b614a9f565b9050808382526020820190508285602086028201111561390557613904614f9e565b5b60005b85811015613935578161391b8882613a33565b845260208401935060208301925050600181019050613908565b5050509392505050565b600061395261394d84614af0565b614a9f565b9050808382526020820190508285602086028201111561397557613974614f9e565b5b60005b858110156139a5578161398b8882613bbf565b845260208401935060208301925050600181019050613978565b5050509392505050565b60006139c26139bd84614b1c565b614a9f565b9050828152602081018484840111156139de576139dd614fa3565b5b6139e9848285614da4565b509392505050565b6000613a046139ff84614b4d565b614a9f565b905082815260208101848484011115613a2057613a1f614fa3565b5b613a2b848285614da4565b509392505050565b600081359050613a428161571a565b92915050565b600082601f830112613a5d57613a5c614f99565b5b8135613a6d8482602086016138cf565b91505092915050565b60008083601f840112613a8c57613a8b614f99565b5b8235905067ffffffffffffffff811115613aa957613aa8614f94565b5b602083019150836020820283011115613ac557613ac4614f9e565b5b9250929050565b600082601f830112613ae157613ae0614f99565b5b8135613af184826020860161393f565b91505092915050565b600081359050613b0981615731565b92915050565b600081359050613b1e81615748565b92915050565b600081359050613b338161575f565b92915050565b600081519050613b488161575f565b92915050565b600082601f830112613b6357613b62614f99565b5b8135613b738482602086016139af565b91505092915050565b600082601f830112613b9157613b90614f99565b5b8135613ba18482602086016139f1565b91505092915050565b600081359050613bb981615776565b92915050565b600081359050613bce8161578d565b92915050565b600081359050613be3816157a4565b92915050565b600060208284031215613bff57613bfe614fad565b5b6000613c0d84828501613a33565b91505092915050565b60008060408385031215613c2d57613c2c614fad565b5b6000613c3b85828601613a33565b9250506020613c4c85828601613a33565b9150509250929050565b600080600080600060a08688031215613c7257613c71614fad565b5b6000613c8088828901613a33565b9550506020613c9188828901613a33565b945050604086013567ffffffffffffffff811115613cb257613cb1614fa8565b5b613cbe88828901613acc565b935050606086013567ffffffffffffffff811115613cdf57613cde614fa8565b5b613ceb88828901613acc565b925050608086013567ffffffffffffffff811115613d0c57613d0b614fa8565b5b613d1888828901613b4e565b9150509295509295909350565b600080600080600060a08688031215613d4157613d40614fad565b5b6000613d4f88828901613a33565b9550506020613d6088828901613a33565b9450506040613d7188828901613bbf565b9350506060613d8288828901613bbf565b925050608086013567ffffffffffffffff811115613da357613da2614fa8565b5b613daf88828901613b4e565b9150509295509295909350565b60008060408385031215613dd357613dd2614fad565b5b6000613de185828601613a33565b9250506020613df285828601613afa565b9150509250929050565b60008060408385031215613e1357613e12614fad565b5b6000613e2185828601613a33565b9250506020613e3285828601613bbf565b9150509250929050565b60008060408385031215613e5357613e52614fad565b5b600083013567ffffffffffffffff811115613e7157613e70614fa8565b5b613e7d85828601613a48565b925050602083013567ffffffffffffffff811115613e9e57613e9d614fa8565b5b613eaa85828601613acc565b9150509250929050565b60008060208385031215613ecb57613eca614fad565b5b600083013567ffffffffffffffff811115613ee957613ee8614fa8565b5b613ef585828601613a76565b92509250509250929050565b600080600060408486031215613f1a57613f19614fad565b5b600084013567ffffffffffffffff811115613f3857613f37614fa8565b5b613f4486828701613a76565b93509350506020613f5786828701613baa565b9150509250925092565b600060208284031215613f7757613f76614fad565b5b6000613f8584828501613afa565b91505092915050565b600060208284031215613fa457613fa3614fad565b5b6000613fb284828501613b0f565b91505092915050565b600060208284031215613fd157613fd0614fad565b5b6000613fdf84828501613b24565b91505092915050565b600060208284031215613ffe57613ffd614fad565b5b600061400c84828501613b39565b91505092915050565b60006020828403121561402b5761402a614fad565b5b600082013567ffffffffffffffff81111561404957614048614fa8565b5b61405584828501613b7c565b91505092915050565b60006020828403121561407457614073614fad565b5b600061408284828501613baa565b91505092915050565b6000602082840312156140a1576140a0614fad565b5b60006140af84828501613bbf565b91505092915050565b6000602082840312156140ce576140cd614fad565b5b60006140dc84828501613bd4565b91505092915050565b60006140f18383614554565b60208301905092915050565b61410681614d0b565b82525050565b61411d61411882614d0b565b614e92565b82525050565b600061412e82614b8e565b6141388185614bbc565b935061414383614b7e565b8060005b8381101561417457815161415b88826140e5565b975061416683614baf565b925050600181019050614147565b5085935050505092915050565b61418a81614d1d565b82525050565b61419981614d29565b82525050565b6141a881614d33565b82525050565b60006141b982614b99565b6141c38185614bcd565b93506141d3818560208601614db3565b6141dc81614fb2565b840191505092915050565b60006141f282614ba4565b6141fc8185614bde565b935061420c818560208601614db3565b61421581614fb2565b840191505092915050565b600061422d603483614bde565b915061423882614fdd565b604082019050919050565b6000614250602883614bde565b915061425b8261502c565b604082019050919050565b6000614273603083614bde565b915061427e8261507b565b604082019050919050565b6000614296602b83614bde565b91506142a1826150ca565b604082019050919050565b60006142b9601e83614bde565b91506142c482615119565b602082019050919050565b60006142dc602683614bde565b91506142e782615142565b604082019050919050565b60006142ff602983614bde565b915061430a82615191565b604082019050919050565b6000614322603483614bde565b915061432d826151e0565b604082019050919050565b6000614345603283614bde565b91506143508261522f565b604082019050919050565b6000614368602583614bde565b91506143738261527e565b604082019050919050565b600061438b603283614bde565b9150614396826152cd565b604082019050919050565b60006143ae602183614bde565b91506143b98261531c565b604082019050919050565b60006143d1602a83614bde565b91506143dc8261536b565b604082019050919050565b60006143f4602083614bde565b91506143ff826153ba565b602082019050919050565b6000614417602683614bde565b9150614422826153e3565b604082019050919050565b600061443a602883614bde565b915061444582615432565b604082019050919050565b600061445d601983614bde565b915061446882615481565b602082019050919050565b6000614480602a83614bde565b915061448b826154aa565b604082019050919050565b60006144a3603783614bde565b91506144ae826154f9565b604082019050919050565b60006144c6602983614bde565b91506144d182615548565b604082019050919050565b60006144e9602983614bde565b91506144f482615597565b604082019050919050565b600061450c602883614bde565b9150614517826155e6565b604082019050919050565b600061452f602183614bde565b915061453a82615635565b604082019050919050565b61454e81614d5f565b82525050565b61455d81614d8d565b82525050565b61456c81614d8d565b82525050565b61457b81614d97565b82525050565b600061458d828461410c565b60148201915081905092915050565b60006020820190506145b160008301846140fd565b92915050565b600060a0820190506145cc60008301886140fd565b6145d960208301876140fd565b81810360408301526145eb8186614123565b905081810360608301526145ff8185614123565b9050818103608083015261461381846141ae565b90509695505050505050565b600060a08201905061463460008301886140fd565b61464160208301876140fd565b61464e6040830186614563565b61465b6060830185614563565b818103608083015261466d81846141ae565b90509695505050505050565b600060208201905081810360008301526146938184614123565b905092915050565b600060408201905081810360008301526146b58185614123565b905081810360208301526146c98184614123565b90509392505050565b60006020820190506146e76000830184614181565b92915050565b60006020820190506147026000830184614190565b92915050565b600060208201905061471d600083018461419f565b92915050565b6000602082019050818103600083015261473d81846141e7565b905092915050565b6000602082019050818103600083015261475e81614220565b9050919050565b6000602082019050818103600083015261477e81614243565b9050919050565b6000602082019050818103600083015261479e81614266565b9050919050565b600060208201905081810360008301526147be81614289565b9050919050565b600060208201905081810360008301526147de816142ac565b9050919050565b600060208201905081810360008301526147fe816142cf565b9050919050565b6000602082019050818103600083015261481e816142f2565b9050919050565b6000602082019050818103600083015261483e81614315565b9050919050565b6000602082019050818103600083015261485e81614338565b9050919050565b6000602082019050818103600083015261487e8161435b565b9050919050565b6000602082019050818103600083015261489e8161437e565b9050919050565b600060208201905081810360008301526148be816143a1565b9050919050565b600060208201905081810360008301526148de816143c4565b9050919050565b600060208201905081810360008301526148fe816143e7565b9050919050565b6000602082019050818103600083015261491e8161440a565b9050919050565b6000602082019050818103600083015261493e8161442d565b9050919050565b6000602082019050818103600083015261495e81614450565b9050919050565b6000602082019050818103600083015261497e81614473565b9050919050565b6000602082019050818103600083015261499e81614496565b9050919050565b600060208201905081810360008301526149be816144b9565b9050919050565b600060208201905081810360008301526149de816144dc565b9050919050565b600060208201905081810360008301526149fe816144ff565b9050919050565b60006020820190508181036000830152614a1e81614522565b9050919050565b6000602082019050614a3a6000830184614545565b92915050565b6000602082019050614a556000830184614563565b92915050565b6000604082019050614a706000830185614563565b614a7d6020830184614563565b9392505050565b6000602082019050614a996000830184614572565b92915050565b6000614aa9614aba565b9050614ab58282614e18565b919050565b6000604051905090565b600067ffffffffffffffff821115614adf57614ade614f43565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b0b57614b0a614f43565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614b3757614b36614f43565b5b614b4082614fb2565b9050602081019050919050565b600067ffffffffffffffff821115614b6857614b67614f43565b5b614b7182614fb2565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000614bfa82614d5f565b9150614c0583614d5f565b92508261ffff03821115614c1c57614c1b614eb6565b5b828201905092915050565b6000614c3282614d8d565b9150614c3d83614d8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614c7257614c71614eb6565b5b828201905092915050565b6000614c8882614d8d565b9150614c9383614d8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ccc57614ccb614eb6565b5b828202905092915050565b6000614ce282614d5f565b9150614ced83614d5f565b925082821015614d0057614cff614eb6565b5b828203905092915050565b6000614d1682614d6d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614dd1578082015181840152602081019050614db6565b83811115614de0576000848401525b50505050565b60006002820490506001821680614dfe57607f821691505b60208210811415614e1257614e11614ee5565b5b50919050565b614e2182614fb2565b810181811067ffffffffffffffff82111715614e4057614e3f614f43565b5b80604052505050565b6000614e5482614d8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614e8757614e86614eb6565b5b600182019050919050565b6000614e9d82614ea4565b9050919050565b6000614eaf82614fc3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115614f915760046000803e614f8e600051614fd0565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4c75636b79373a20596f75206861766520616c726561647920636c61696d656460008201527f20796f75722066726565206d696e742e00000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4c75636b79373a20496e73756666696369656e742074782076616c75652e0000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4c75636b79373a20546865726520697320696e73756666696369656e7420726560008201527f6d61696e696e67206672656520737570706c792e000000000000000000000000602082015250565b7f4c75636b793a20596f752063616e6e6f74206d696e74206d6f7265207468616e60008201527f203220696e207468652070726573616c652e0000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4c75636b79373a204578636565647320617661696c61626c6520737570706c7960008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4c75636b79373a205468652066726565206d696e7420686173206e6f7420737460008201527f61727465642e0000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b7f6c75636b79373a2053616c65206973206e6f74206c6976652e00000000000000600082015250565b7f4c75636b79373a20496e76616c69642070726f6f6620286e6f74206f6e20776860008201527f6974656c6973743f292e00000000000000000000000000000000000000000000602082015250565b7f4c75636b79373a20596f752063616e6e6f74206d696e74206d6f72652074686160008201527f6e203220696e20746865207075626c69632073616c652e000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d101561569457615717565b61569c614aba565b60043d036004823e80513d602482011167ffffffffffffffff821117156156c4575050615717565b808201805167ffffffffffffffff8111156156e25750505050615717565b80602083010160043d0385018111156156ff575050505050615717565b61570e82602001850186614e18565b82955050505050505b90565b61572381614d0b565b811461572e57600080fd5b50565b61573a81614d1d565b811461574557600080fd5b50565b61575181614d29565b811461575c57600080fd5b50565b61576881614d33565b811461577357600080fd5b50565b61577f81614d5f565b811461578a57600080fd5b50565b61579681614d8d565b81146157a157600080fd5b50565b6157ad81614d97565b81146157b857600080fd5b5056fea2646970667358221220676023ce72ffd72d5691a505257f00083a0f481b3f91473d28874f01ec7afab064736f6c63430008070033

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.