ETH Price: $3,083.71 (-0.16%)
Gas: 5 Gwei

Token

The Wanderings NFT (The Wanderings NFT)
 

Overview

Max Total Supply

4,444 The Wanderings NFT

Holders

960

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
TheWanderings

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.11;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// 
/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

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

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

// 
/**
 * @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;
    }
}

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

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

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

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

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

// 
/**
 * @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;
    }
}

// 
library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

// 
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] )
                ++count;
        }
        return count;
    }

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    function batchTransferFrom(address _from, address _to, uint256[] memory _tokenIds) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            transferFrom(_from, _to, _tokenIds[i]);
        }
    }

    function batchSafeTransferFrom(address _from, address _to, uint256[] memory _tokenIds, bytes memory data_) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            safeTransferFrom(_from, _to, _tokenIds[i], data_);
        }
    }

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

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

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

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

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

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

        _owners.push(to);

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

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

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

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

// 
/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

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

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

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

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}

// 
/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

    bool private _paused;

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

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

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

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

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

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

// 
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// 
/**
 * @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.
 */
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) {
        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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

// 
contract OwnableDelegateProxy { }

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

// 
contract TheWanderings is ERC721Enumerable, Ownable, Pausable {

    using SafeMath for uint256;
    using MerkleProof for bytes32[];

    bytes32 merkleRoot;
    bool merkleSet = false;

    uint256 public constant MAX_PER_CALL = 26;
    uint256 public constant MAX_PER_CALL_PRESALE = 5;
    // max supply is 4444, 4445 is used so we can use < instead of LTE, saving a tiny bit of gas when minting
    uint256 public constant MAX_SUPPLY = 4445;
    uint256 public NFT_PRICE = 0;

    string public baseURI;
    bool public presaleOngoing;

    address public proxyRegistryAddress;
    mapping(address => bool) public projectProxy;
    mapping(address => uint256) public presaleMintedAmounts;

    constructor(address openSeaProxy) ERC721("The Wanderings NFT", "The Wanderings NFT") {
        proxyRegistryAddress = openSeaProxy;
        _pause();
    }

    receive() external payable {}

    function _mint(address to, uint256 tokenId) internal override virtual {
        _owners.push(to);
        emit Transfer(address(0), to, tokenId);
    }

    function mint(uint256 amount) external payable whenNotPaused {
        require(amount < MAX_PER_CALL,  "Amount exceeds max per tx");
        uint256 ogAmount = _owners.length;
        require(ogAmount + amount < MAX_SUPPLY, "Amount exceeds max supply");

        for (uint256 i = 0; i < amount; i++) {
            _mint(msg.sender, ogAmount + i);
        }
    }

    function mintPresale(uint256 amount, bytes32[] memory merkleProof) external payable whenPaused {
        require(presaleOngoing, "Presale hasn't started yet");
        uint256 ogAmount = _owners.length;
        require(ogAmount + amount < MAX_SUPPLY, "Amount exceeds max supply");
        require(presaleMintedAmounts[msg.sender] + amount < MAX_PER_CALL_PRESALE, "Amount exceeds presale max");

        // Verify merkleProof
        require(merkleProof.verify(merkleRoot, keccak256(abi.encodePacked(msg.sender))), "Invalid proof. Not whitelisted");


        for (uint256 i = 0; i < amount; i++) {
            _mint(msg.sender, ogAmount + i);
        }
        presaleMintedAmounts[msg.sender] += amount;
    }

    function mintOwner(uint256 amount) external onlyOwner {
        uint256 ogAmount = _owners.length;
        require(_owners.length + amount < MAX_SUPPLY, "Amount exceeds max supply");

        for (uint256 i = 0; i < amount; i++) {
            _mint(msg.sender, ogAmount + i);
        }
    }

    function startPresale() external onlyOwner {
        presaleOngoing = true;
    }

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

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

    function setNftPrice(uint256 _nftPrice) external onlyOwner {
        NFT_PRICE = _nftPrice;
    }

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

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

    // Specify a merkle root hash from the gathered k/v dictionary of addresses
    // https://github.com/0xKiwi/go-merkle-distributor
    function setMerkleRoot(bytes32 root) external onlyOwner {
        merkleRoot = root;
        merkleSet = true;
    }

    // Return bool on if merkle root hash is set
    function isMerkleSet() public view returns (bool) {
        return merkleSet;
    }

    function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner {
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    function flipProxyState(address proxyAddress) public onlyOwner {
        projectProxy[proxyAddress] = !projectProxy[proxyAddress];
    }

    function isApprovedForAll(address _owner, address operator) public view override returns (bool) {
        OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == operator || projectProxy[operator]) return true;
        return super.isApprovedForAll(_owner, operator);
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return string(abi.encodePacked(baseURI, Strings.toString(_tokenId)));
    }

    // Returns a list of tokens owned by address
    // WARNING: VIEW ONLY, DO NOT USE THIS IN A TRANSACTION UNLESS YOU CAN AFFORD TO SPEND A LAMBO IN GAS
    function tokensOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) return new uint256[](0);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"openSeaProxy","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_PER_CALL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_CALL_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"batchSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMerkleSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMintedAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOngoing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftPrice","type":"uint256"}],"name":"setNftPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600760006101000a81548160ff02191690831515021790555060006008553480156200003157600080fd5b506040516200530138038062005301833981810160405281019062000057919062000441565b6040518060400160405280601281526020017f5468652057616e646572696e6773204e465400000000000000000000000000008152506040518060400160405280601281526020017f5468652057616e646572696e6773204e465400000000000000000000000000008152508160009080519060200190620000db92919062000327565b508060019080519060200190620000f492919062000327565b505050620001176200010b6200018a60201b60201c565b6200019260201b60201c565b6000600560146101000a81548160ff02191690831515021790555080600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001836200025860201b60201c565b5062000589565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002686200031060201b60201c565b15620002ab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a290620004d4565b60405180910390fd5b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002f76200018a60201b60201c565b60405162000306919062000507565b60405180910390a1565b6000600560149054906101000a900460ff16905090565b828054620003359062000553565b90600052602060002090601f016020900481019282620003595760008555620003a5565b82601f106200037457805160ff1916838001178555620003a5565b82800160010185558215620003a5579182015b82811115620003a457825182559160200191906001019062000387565b5b509050620003b49190620003b8565b5090565b5b80821115620003d3576000816000905550600101620003b9565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200040982620003dc565b9050919050565b6200041b81620003fc565b81146200042757600080fd5b50565b6000815190506200043b8162000410565b92915050565b6000602082840312156200045a5762000459620003d7565b5b60006200046a848285016200042a565b91505092915050565b600082825260208201905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000620004bc60108362000473565b9150620004c98262000484565b602082019050919050565b60006020820190508181036000830152620004ef81620004ad565b9050919050565b6200050181620003fc565b82525050565b60006020820190506200051e6000830184620004f6565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200056c57607f821691505b6020821081141562000583576200058262000524565b5b50919050565b614d6880620005996000396000f3fe6080604052600436106102765760003560e01c8063676dd5631161014f578063a22cb465116100c1578063d26ea6c01161007a578063d26ea6c01461092d578063e985e9c514610956578063ea156a9b14610993578063f2fde38b146109be578063f3993d11146109e7578063f73c814b14610a105761027d565b8063a22cb4651461081d578063b1936c2414610846578063b2e778bc14610871578063b88d4fde1461089c578063c87b56dd146108c5578063cd7c0326146109025761027d565b80637d9a7a4c116101135780637d9a7a4c1461072e5780638456cb59146107575780638462151c1461076e5780638da5cb5b146107ab57806395d89b41146107d6578063a0712d68146108015761027d565b8063676dd5631461065b5780636c0360eb1461068657806370a08231146106b1578063715018a6146106ee5780637cb64759146107055761027d565b806333f88d22116101e857806355f804b3116101ac57806355f804b3146105275780635a4fee30146105505780635bab26e2146105795780635c477073146105b65780635c975abb146105f35780636352211e1461061e5761027d565b806333f88d221461046a5780633ccfd60b146104935780633f4ba83a146104aa57806342842e0e146104c15780634f6ccce7146104ea5761027d565b80630c0a6b5e1161023a5780630c0a6b5e1461036757806316336ee41461038357806318160ddd146103ae57806323b872dd146103d95780632f745c591461040257806332cb6b0c1461043f5761027d565b806301ffc9a71461028257806304c98b2b146102bf57806306fdde03146102d6578063081812fc14610301578063095ea7b31461033e5761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613202565b610a39565b6040516102b6919061324a565b60405180910390f35b3480156102cb57600080fd5b506102d4610ab3565b005b3480156102e257600080fd5b506102eb610b4c565b6040516102f891906132fe565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190613356565b610bde565b60405161033591906133c4565b60405180910390f35b34801561034a57600080fd5b506103656004803603810190610360919061340b565b610c63565b005b610381600480360381019061037c91906135c9565b610d7b565b005b34801561038f57600080fd5b50610398611002565b6040516103a59190613634565b60405180910390f35b3480156103ba57600080fd5b506103c3611007565b6040516103d09190613634565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb919061364f565b611014565b005b34801561040e57600080fd5b506104296004803603810190610424919061340b565b611074565b6040516104369190613634565b60405180910390f35b34801561044b57600080fd5b506104546111b9565b6040516104619190613634565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c9190613356565b6111bf565b005b34801561049f57600080fd5b506104a86112d1565b005b3480156104b657600080fd5b506104bf611396565b005b3480156104cd57600080fd5b506104e860048036038101906104e3919061364f565b61141c565b005b3480156104f657600080fd5b50610511600480360381019061050c9190613356565b61143c565b60405161051e9190613634565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190613757565b61148d565b005b34801561055c57600080fd5b5061057760048036038101906105729190613904565b611523565b005b34801561058557600080fd5b506105a0600480360381019061059b91906139a3565b61156f565b6040516105ad919061324a565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d891906139a3565b61158f565b6040516105ea9190613634565b60405180910390f35b3480156105ff57600080fd5b506106086115a7565b604051610615919061324a565b60405180910390f35b34801561062a57600080fd5b5061064560048036038101906106409190613356565b6115be565b60405161065291906133c4565b60405180910390f35b34801561066757600080fd5b5061067061167b565b60405161067d9190613634565b60405180910390f35b34801561069257600080fd5b5061069b611681565b6040516106a891906132fe565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d391906139a3565b61170f565b6040516106e59190613634565b60405180910390f35b3480156106fa57600080fd5b5061070361182b565b005b34801561071157600080fd5b5061072c600480360381019061072791906139d0565b6118b3565b005b34801561073a57600080fd5b5061075560048036038101906107509190613356565b611954565b005b34801561076357600080fd5b5061076c6119da565b005b34801561077a57600080fd5b50610795600480360381019061079091906139a3565b611a60565b6040516107a29190613abb565b60405180910390f35b3480156107b757600080fd5b506107c0611b6a565b6040516107cd91906133c4565b60405180910390f35b3480156107e257600080fd5b506107eb611b94565b6040516107f891906132fe565b60405180910390f35b61081b60048036038101906108169190613356565b611c26565b005b34801561082957600080fd5b50610844600480360381019061083f9190613b09565b611d42565b005b34801561085257600080fd5b5061085b611ec3565b604051610868919061324a565b60405180910390f35b34801561087d57600080fd5b50610886611ed6565b604051610893919061324a565b60405180910390f35b3480156108a857600080fd5b506108c360048036038101906108be9190613b49565b611eed565b005b3480156108d157600080fd5b506108ec60048036038101906108e79190613356565b611f4f565b6040516108f991906132fe565b60405180910390f35b34801561090e57600080fd5b50610917611fcb565b60405161092491906133c4565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f91906139a3565b611ff1565b005b34801561096257600080fd5b5061097d60048036038101906109789190613bcc565b6120b1565b60405161098a919061324a565b60405180910390f35b34801561099f57600080fd5b506109a86121f8565b6040516109b59190613634565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e091906139a3565b6121fd565b005b3480156109f357600080fd5b50610a0e6004803603810190610a099190613c0c565b6122f5565b005b348015610a1c57600080fd5b50610a376004803603810190610a3291906139a3565b61233f565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aac5750610aab82612462565b5b9050919050565b610abb612544565b73ffffffffffffffffffffffffffffffffffffffff16610ad9611b6a565b73ffffffffffffffffffffffffffffffffffffffff1614610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2690613cc7565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b606060008054610b5b90613d16565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8790613d16565b8015610bd45780601f10610ba957610100808354040283529160200191610bd4565b820191906000526020600020905b815481529060010190602001808311610bb757829003601f168201915b5050505050905090565b6000610be98261254c565b610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90613dba565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c6e826115be565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690613e4c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cfe612544565b73ffffffffffffffffffffffffffffffffffffffff161480610d2d5750610d2c81610d27612544565b6120b1565b5b610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6390613ede565b60405180910390fd5b610d7683836125d4565b505050565b610d836115a7565b610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613f4a565b60405180910390fd5b600a60009054906101000a900460ff16610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613fb6565b60405180910390fd5b6000600280549050905061115d8382610e2a9190614005565b10610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e61906140a7565b60405180910390fd5b600583600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610eb79190614005565b10610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90614113565b60405180910390fd5b610f3460065433604051602001610f0e919061417b565b604051602081830303815290604052805190602001208461268d9092919063ffffffff16565b610f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6a906141e2565b60405180910390fd5b60005b83811015610fa657610f93338284610f8e9190614005565b612743565b8080610f9e90614202565b915050610f76565b5082600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff69190614005565b92505081905550505050565b600581565b6000600280549050905090565b61102561101f612544565b82612806565b611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b906142bd565b60405180910390fd5b61106f8383836128e4565b505050565b600061107f8361170f565b82106110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b79061434f565b60405180910390fd5b6000805b60028054905081101561117757600281815481106110e5576110e461436f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561116457838214156111555780925050506111b3565b818061116090614202565b9250505b808061116f90614202565b9150506110c4565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa9061434f565b60405180910390fd5b92915050565b61115d81565b6111c7612544565b73ffffffffffffffffffffffffffffffffffffffff166111e5611b6a565b73ffffffffffffffffffffffffffffffffffffffff161461123b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123290613cc7565b60405180910390fd5b6000600280549050905061115d826002805490506112599190614005565b10611299576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611290906140a7565b60405180910390fd5b60005b828110156112cc576112b93382846112b49190614005565b612743565b80806112c490614202565b91505061129c565b505050565b6112d9612544565b73ffffffffffffffffffffffffffffffffffffffff166112f7611b6a565b73ffffffffffffffffffffffffffffffffffffffff161461134d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134490613cc7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611393573d6000803e3d6000fd5b50565b61139e612544565b73ffffffffffffffffffffffffffffffffffffffff166113bc611b6a565b73ffffffffffffffffffffffffffffffffffffffff1614611412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140990613cc7565b60405180910390fd5b61141a612a92565b565b61143783838360405180602001604052806000815250611eed565b505050565b60006002805490508210611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c90614410565b60405180910390fd5b819050919050565b611495612544565b73ffffffffffffffffffffffffffffffffffffffff166114b3611b6a565b73ffffffffffffffffffffffffffffffffffffffff1614611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150090613cc7565b60405180910390fd5b806009908051906020019061151f9291906130f3565b5050565b60005b82518110156115685761155585858584815181106115475761154661436f565b5b602002602001015185611eed565b808061156090614202565b915050611526565b5050505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b600c6020528060005260406000206000915090505481565b6000600560149054906101000a900460ff16905090565b600080600283815481106115d5576115d461436f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611669906144a2565b60405180910390fd5b80915050919050565b60085481565b6009805461168e90613d16565b80601f01602080910402602001604051908101604052809291908181526020018280546116ba90613d16565b80156117075780601f106116dc57610100808354040283529160200191611707565b820191906000526020600020905b8154815290600101906020018083116116ea57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790614534565b60405180910390fd5b6000805b60028054905081101561182157600281815481106117a5576117a461436f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611810578161180d90614202565b91505b8061181a90614202565b9050611784565b5080915050919050565b611833612544565b73ffffffffffffffffffffffffffffffffffffffff16611851611b6a565b73ffffffffffffffffffffffffffffffffffffffff16146118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90613cc7565b60405180910390fd5b6118b16000612b34565b565b6118bb612544565b73ffffffffffffffffffffffffffffffffffffffff166118d9611b6a565b73ffffffffffffffffffffffffffffffffffffffff161461192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690613cc7565b60405180910390fd5b806006819055506001600760006101000a81548160ff02191690831515021790555050565b61195c612544565b73ffffffffffffffffffffffffffffffffffffffff1661197a611b6a565b73ffffffffffffffffffffffffffffffffffffffff16146119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790613cc7565b60405180910390fd5b8060088190555050565b6119e2612544565b73ffffffffffffffffffffffffffffffffffffffff16611a00611b6a565b73ffffffffffffffffffffffffffffffffffffffff1614611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90613cc7565b60405180910390fd5b611a5e612bfa565b565b60606000611a6d8361170f565b90506000811415611aca57600067ffffffffffffffff811115611a9357611a92613450565b5b604051908082528060200260200182016040528015611ac15781602001602082028036833780820191505090505b50915050611b65565b60008167ffffffffffffffff811115611ae657611ae5613450565b5b604051908082528060200260200182016040528015611b145781602001602082028036833780820191505090505b50905060005b82811015611b5e57611b2c8582611074565b828281518110611b3f57611b3e61436f565b5b6020026020010181815250508080611b5690614202565b915050611b1a565b5080925050505b919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ba390613d16565b80601f0160208091040260200160405190810160405280929190818152602001828054611bcf90613d16565b8015611c1c5780601f10611bf157610100808354040283529160200191611c1c565b820191906000526020600020905b815481529060010190602001808311611bff57829003601f168201915b5050505050905090565b611c2e6115a7565b15611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c65906145a0565b60405180910390fd5b601a8110611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca89061460c565b60405180910390fd5b6000600280549050905061115d8282611cca9190614005565b10611d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d01906140a7565b60405180910390fd5b60005b82811015611d3d57611d2a338284611d259190614005565b612743565b8080611d3590614202565b915050611d0d565b505050565b611d4a612544565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf90614678565b60405180910390fd5b8060046000611dc5612544565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e72612544565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eb7919061324a565b60405180910390a35050565b600a60009054906101000a900460ff1681565b6000600760009054906101000a900460ff16905090565b611efe611ef8612544565b83612806565b611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f34906142bd565b60405180910390fd5b611f4984848484612c9d565b50505050565b6060611f5a8261254c565b611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f90906146e4565b60405180910390fd5b6009611fa483612cf9565b604051602001611fb59291906147d4565b6040516020818303038152906040529050919050565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ff9612544565b73ffffffffffffffffffffffffffffffffffffffff16612017611b6a565b73ffffffffffffffffffffffffffffffffffffffff161461206d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206490613cc7565b60405180910390fd5b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161212991906133c4565b602060405180830381865afa158015612146573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061216a9190614836565b73ffffffffffffffffffffffffffffffffffffffff1614806121d55750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156121e45760019150506121f2565b6121ee8484612e5a565b9150505b92915050565b601a81565b612205612544565b73ffffffffffffffffffffffffffffffffffffffff16612223611b6a565b73ffffffffffffffffffffffffffffffffffffffff1614612279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227090613cc7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e0906148d5565b60405180910390fd5b6122f281612b34565b50565b60005b81518110156123395761232684848484815181106123195761231861436f565b5b6020026020010151611014565b808061233190614202565b9150506122f8565b50505050565b612347612544565b73ffffffffffffffffffffffffffffffffffffffff16612365611b6a565b73ffffffffffffffffffffffffffffffffffffffff16146123bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b290613cc7565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061252d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061253d575061253c82612eee565b5b9050919050565b600033905090565b6000600280549050821080156125cd5750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106125895761258861436f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612647836115be565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082905060005b85518110156127355760008682815181106126b4576126b361436f565b5b602002602001015190508083116126f55782816040516020016126d8929190614916565b604051602081830303815290604052805190602001209250612721565b8083604051602001612708929190614916565b6040516020818303038152906040528051906020012092505b50808061272d90614202565b915050612696565b508381149150509392505050565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006128118261254c565b612850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612847906149b4565b60405180910390fd5b600061285b836115be565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128ca57508373ffffffffffffffffffffffffffffffffffffffff166128b284610bde565b73ffffffffffffffffffffffffffffffffffffffff16145b806128db57506128da81856120b1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612904826115be565b73ffffffffffffffffffffffffffffffffffffffff161461295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190614a46565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c190614ad8565b60405180910390fd5b6129d56000826125d4565b81600282815481106129ea576129e961436f565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612a9a6115a7565b612ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad090613f4a565b60405180910390fd5b6000600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612b1d612544565b604051612b2a91906133c4565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c026115a7565b15612c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c39906145a0565b60405180910390fd5b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612c86612544565b604051612c9391906133c4565b60405180910390a1565b612ca88484846128e4565b612cb484848484612f58565b612cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cea90614b6a565b60405180910390fd5b50505050565b60606000821415612d41576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e55565b600082905060005b60008214612d73578080612d5c90614202565b915050600a82612d6c9190614bb9565b9150612d49565b60008167ffffffffffffffff811115612d8f57612d8e613450565b5b6040519080825280601f01601f191660200182016040528015612dc15781602001600182028036833780820191505090505b5090505b60008514612e4e57600182612dda9190614bea565b9150600a85612de99190614c1e565b6030612df59190614005565b60f81b818381518110612e0b57612e0a61436f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e479190614bb9565b9450612dc5565b8093505050505b919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612f798473ffffffffffffffffffffffffffffffffffffffff166130e0565b156130d3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fa2612544565b8786866040518563ffffffff1660e01b8152600401612fc49493929190614ca4565b6020604051808303816000875af192505050801561300057506040513d601f19601f82011682018060405250810190612ffd9190614d05565b60015b613083573d8060008114613030576040519150601f19603f3d011682016040523d82523d6000602084013e613035565b606091505b5060008151141561307b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307290614b6a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130d8565b600190505b949350505050565b600080823b905060008111915050919050565b8280546130ff90613d16565b90600052602060002090601f0160209004810192826131215760008555613168565b82601f1061313a57805160ff1916838001178555613168565b82800160010185558215613168579182015b8281111561316757825182559160200191906001019061314c565b5b5090506131759190613179565b5090565b5b8082111561319257600081600090555060010161317a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131df816131aa565b81146131ea57600080fd5b50565b6000813590506131fc816131d6565b92915050565b600060208284031215613218576132176131a0565b5b6000613226848285016131ed565b91505092915050565b60008115159050919050565b6132448161322f565b82525050565b600060208201905061325f600083018461323b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561329f578082015181840152602081019050613284565b838111156132ae576000848401525b50505050565b6000601f19601f8301169050919050565b60006132d082613265565b6132da8185613270565b93506132ea818560208601613281565b6132f3816132b4565b840191505092915050565b6000602082019050818103600083015261331881846132c5565b905092915050565b6000819050919050565b61333381613320565b811461333e57600080fd5b50565b6000813590506133508161332a565b92915050565b60006020828403121561336c5761336b6131a0565b5b600061337a84828501613341565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133ae82613383565b9050919050565b6133be816133a3565b82525050565b60006020820190506133d960008301846133b5565b92915050565b6133e8816133a3565b81146133f357600080fd5b50565b600081359050613405816133df565b92915050565b60008060408385031215613422576134216131a0565b5b6000613430858286016133f6565b925050602061344185828601613341565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613488826132b4565b810181811067ffffffffffffffff821117156134a7576134a6613450565b5b80604052505050565b60006134ba613196565b90506134c6828261347f565b919050565b600067ffffffffffffffff8211156134e6576134e5613450565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b61350f816134fc565b811461351a57600080fd5b50565b60008135905061352c81613506565b92915050565b6000613545613540846134cb565b6134b0565b90508083825260208201905060208402830185811115613568576135676134f7565b5b835b81811015613591578061357d888261351d565b84526020840193505060208101905061356a565b5050509392505050565b600082601f8301126135b0576135af61344b565b5b81356135c0848260208601613532565b91505092915050565b600080604083850312156135e0576135df6131a0565b5b60006135ee85828601613341565b925050602083013567ffffffffffffffff81111561360f5761360e6131a5565b5b61361b8582860161359b565b9150509250929050565b61362e81613320565b82525050565b60006020820190506136496000830184613625565b92915050565b600080600060608486031215613668576136676131a0565b5b6000613676868287016133f6565b9350506020613687868287016133f6565b925050604061369886828701613341565b9150509250925092565b600080fd5b600067ffffffffffffffff8211156136c2576136c1613450565b5b6136cb826132b4565b9050602081019050919050565b82818337600083830152505050565b60006136fa6136f5846136a7565b6134b0565b905082815260208101848484011115613716576137156136a2565b5b6137218482856136d8565b509392505050565b600082601f83011261373e5761373d61344b565b5b813561374e8482602086016136e7565b91505092915050565b60006020828403121561376d5761376c6131a0565b5b600082013567ffffffffffffffff81111561378b5761378a6131a5565b5b61379784828501613729565b91505092915050565b600067ffffffffffffffff8211156137bb576137ba613450565b5b602082029050602081019050919050565b60006137df6137da846137a0565b6134b0565b90508083825260208201905060208402830185811115613802576138016134f7565b5b835b8181101561382b57806138178882613341565b845260208401935050602081019050613804565b5050509392505050565b600082601f83011261384a5761384961344b565b5b813561385a8482602086016137cc565b91505092915050565b600067ffffffffffffffff82111561387e5761387d613450565b5b613887826132b4565b9050602081019050919050565b60006138a76138a284613863565b6134b0565b9050828152602081018484840111156138c3576138c26136a2565b5b6138ce8482856136d8565b509392505050565b600082601f8301126138eb576138ea61344b565b5b81356138fb848260208601613894565b91505092915050565b6000806000806080858703121561391e5761391d6131a0565b5b600061392c878288016133f6565b945050602061393d878288016133f6565b935050604085013567ffffffffffffffff81111561395e5761395d6131a5565b5b61396a87828801613835565b925050606085013567ffffffffffffffff81111561398b5761398a6131a5565b5b613997878288016138d6565b91505092959194509250565b6000602082840312156139b9576139b86131a0565b5b60006139c7848285016133f6565b91505092915050565b6000602082840312156139e6576139e56131a0565b5b60006139f48482850161351d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613a3281613320565b82525050565b6000613a448383613a29565b60208301905092915050565b6000602082019050919050565b6000613a68826139fd565b613a728185613a08565b9350613a7d83613a19565b8060005b83811015613aae578151613a958882613a38565b9750613aa083613a50565b925050600181019050613a81565b5085935050505092915050565b60006020820190508181036000830152613ad58184613a5d565b905092915050565b613ae68161322f565b8114613af157600080fd5b50565b600081359050613b0381613add565b92915050565b60008060408385031215613b2057613b1f6131a0565b5b6000613b2e858286016133f6565b9250506020613b3f85828601613af4565b9150509250929050565b60008060008060808587031215613b6357613b626131a0565b5b6000613b71878288016133f6565b9450506020613b82878288016133f6565b9350506040613b9387828801613341565b925050606085013567ffffffffffffffff811115613bb457613bb36131a5565b5b613bc0878288016138d6565b91505092959194509250565b60008060408385031215613be357613be26131a0565b5b6000613bf1858286016133f6565b9250506020613c02858286016133f6565b9150509250929050565b600080600060608486031215613c2557613c246131a0565b5b6000613c33868287016133f6565b9350506020613c44868287016133f6565b925050604084013567ffffffffffffffff811115613c6557613c646131a5565b5b613c7186828701613835565b9150509250925092565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cb1602083613270565b9150613cbc82613c7b565b602082019050919050565b60006020820190508181036000830152613ce081613ca4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d2e57607f821691505b60208210811415613d4257613d41613ce7565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613da4602c83613270565b9150613daf82613d48565b604082019050919050565b60006020820190508181036000830152613dd381613d97565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e36602183613270565b9150613e4182613dda565b604082019050919050565b60006020820190508181036000830152613e6581613e29565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613ec8603883613270565b9150613ed382613e6c565b604082019050919050565b60006020820190508181036000830152613ef781613ebb565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613f34601483613270565b9150613f3f82613efe565b602082019050919050565b60006020820190508181036000830152613f6381613f27565b9050919050565b7f50726573616c65206861736e2774207374617274656420796574000000000000600082015250565b6000613fa0601a83613270565b9150613fab82613f6a565b602082019050919050565b60006020820190508181036000830152613fcf81613f93565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061401082613320565b915061401b83613320565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140505761404f613fd6565b5b828201905092915050565b7f416d6f756e742065786365656473206d617820737570706c7900000000000000600082015250565b6000614091601983613270565b915061409c8261405b565b602082019050919050565b600060208201905081810360008301526140c081614084565b9050919050565b7f416d6f756e7420657863656564732070726573616c65206d6178000000000000600082015250565b60006140fd601a83613270565b9150614108826140c7565b602082019050919050565b6000602082019050818103600083015261412c816140f0565b9050919050565b60008160601b9050919050565b600061414b82614133565b9050919050565b600061415d82614140565b9050919050565b614175614170826133a3565b614152565b82525050565b60006141878284614164565b60148201915081905092915050565b7f496e76616c69642070726f6f662e204e6f742077686974656c69737465640000600082015250565b60006141cc601e83613270565b91506141d782614196565b602082019050919050565b600060208201905081810360008301526141fb816141bf565b9050919050565b600061420d82613320565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142405761423f613fd6565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006142a7603183613270565b91506142b28261424b565b604082019050919050565b600060208201905081810360008301526142d68161429a565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614339602b83613270565b9150614344826142dd565b604082019050919050565b600060208201905081810360008301526143688161432c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006143fa602c83613270565b91506144058261439e565b604082019050919050565b60006020820190508181036000830152614429816143ed565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061448c602983613270565b915061449782614430565b604082019050919050565b600060208201905081810360008301526144bb8161447f565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061451e602a83613270565b9150614529826144c2565b604082019050919050565b6000602082019050818103600083015261454d81614511565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061458a601083613270565b915061459582614554565b602082019050919050565b600060208201905081810360008301526145b98161457d565b9050919050565b7f416d6f756e742065786365656473206d61782070657220747800000000000000600082015250565b60006145f6601983613270565b9150614601826145c0565b602082019050919050565b60006020820190508181036000830152614625816145e9565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614662601983613270565b915061466d8261462c565b602082019050919050565b6000602082019050818103600083015261469181614655565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006146ce601583613270565b91506146d982614698565b602082019050919050565b600060208201905081810360008301526146fd816146c1565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461473181613d16565b61473b8186614704565b9450600182166000811461475657600181146147675761479a565b60ff1983168652818601935061479a565b6147708561470f565b60005b8381101561479257815481890152600182019150602081019050614773565b838801955050505b50505092915050565b60006147ae82613265565b6147b88185614704565b93506147c8818560208601613281565b80840191505092915050565b60006147e08285614724565b91506147ec82846147a3565b91508190509392505050565b6000614803826133a3565b9050919050565b614813816147f8565b811461481e57600080fd5b50565b6000815190506148308161480a565b92915050565b60006020828403121561484c5761484b6131a0565b5b600061485a84828501614821565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006148bf602683613270565b91506148ca82614863565b604082019050919050565b600060208201905081810360008301526148ee816148b2565b9050919050565b6000819050919050565b61491061490b826134fc565b6148f5565b82525050565b600061492282856148ff565b60208201915061493282846148ff565b6020820191508190509392505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061499e602c83613270565b91506149a982614942565b604082019050919050565b600060208201905081810360008301526149cd81614991565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614a30602983613270565b9150614a3b826149d4565b604082019050919050565b60006020820190508181036000830152614a5f81614a23565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614ac2602483613270565b9150614acd82614a66565b604082019050919050565b60006020820190508181036000830152614af181614ab5565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614b54603283613270565b9150614b5f82614af8565b604082019050919050565b60006020820190508181036000830152614b8381614b47565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614bc482613320565b9150614bcf83613320565b925082614bdf57614bde614b8a565b5b828204905092915050565b6000614bf582613320565b9150614c0083613320565b925082821015614c1357614c12613fd6565b5b828203905092915050565b6000614c2982613320565b9150614c3483613320565b925082614c4457614c43614b8a565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614c7682614c4f565b614c808185614c5a565b9350614c90818560208601613281565b614c99816132b4565b840191505092915050565b6000608082019050614cb960008301876133b5565b614cc660208301866133b5565b614cd36040830185613625565b8181036060830152614ce58184614c6b565b905095945050505050565b600081519050614cff816131d6565b92915050565b600060208284031215614d1b57614d1a6131a0565b5b6000614d2984828501614cf0565b9150509291505056fea2646970667358221220e7a4ca053fc07bdf590ed857bbfcc2171f2089dd95576118956587e8f841f2c364736f6c634300080b0033000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x6080604052600436106102765760003560e01c8063676dd5631161014f578063a22cb465116100c1578063d26ea6c01161007a578063d26ea6c01461092d578063e985e9c514610956578063ea156a9b14610993578063f2fde38b146109be578063f3993d11146109e7578063f73c814b14610a105761027d565b8063a22cb4651461081d578063b1936c2414610846578063b2e778bc14610871578063b88d4fde1461089c578063c87b56dd146108c5578063cd7c0326146109025761027d565b80637d9a7a4c116101135780637d9a7a4c1461072e5780638456cb59146107575780638462151c1461076e5780638da5cb5b146107ab57806395d89b41146107d6578063a0712d68146108015761027d565b8063676dd5631461065b5780636c0360eb1461068657806370a08231146106b1578063715018a6146106ee5780637cb64759146107055761027d565b806333f88d22116101e857806355f804b3116101ac57806355f804b3146105275780635a4fee30146105505780635bab26e2146105795780635c477073146105b65780635c975abb146105f35780636352211e1461061e5761027d565b806333f88d221461046a5780633ccfd60b146104935780633f4ba83a146104aa57806342842e0e146104c15780634f6ccce7146104ea5761027d565b80630c0a6b5e1161023a5780630c0a6b5e1461036757806316336ee41461038357806318160ddd146103ae57806323b872dd146103d95780632f745c591461040257806332cb6b0c1461043f5761027d565b806301ffc9a71461028257806304c98b2b146102bf57806306fdde03146102d6578063081812fc14610301578063095ea7b31461033e5761027d565b3661027d57005b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613202565b610a39565b6040516102b6919061324a565b60405180910390f35b3480156102cb57600080fd5b506102d4610ab3565b005b3480156102e257600080fd5b506102eb610b4c565b6040516102f891906132fe565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190613356565b610bde565b60405161033591906133c4565b60405180910390f35b34801561034a57600080fd5b506103656004803603810190610360919061340b565b610c63565b005b610381600480360381019061037c91906135c9565b610d7b565b005b34801561038f57600080fd5b50610398611002565b6040516103a59190613634565b60405180910390f35b3480156103ba57600080fd5b506103c3611007565b6040516103d09190613634565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb919061364f565b611014565b005b34801561040e57600080fd5b506104296004803603810190610424919061340b565b611074565b6040516104369190613634565b60405180910390f35b34801561044b57600080fd5b506104546111b9565b6040516104619190613634565b60405180910390f35b34801561047657600080fd5b50610491600480360381019061048c9190613356565b6111bf565b005b34801561049f57600080fd5b506104a86112d1565b005b3480156104b657600080fd5b506104bf611396565b005b3480156104cd57600080fd5b506104e860048036038101906104e3919061364f565b61141c565b005b3480156104f657600080fd5b50610511600480360381019061050c9190613356565b61143c565b60405161051e9190613634565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190613757565b61148d565b005b34801561055c57600080fd5b5061057760048036038101906105729190613904565b611523565b005b34801561058557600080fd5b506105a0600480360381019061059b91906139a3565b61156f565b6040516105ad919061324a565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d891906139a3565b61158f565b6040516105ea9190613634565b60405180910390f35b3480156105ff57600080fd5b506106086115a7565b604051610615919061324a565b60405180910390f35b34801561062a57600080fd5b5061064560048036038101906106409190613356565b6115be565b60405161065291906133c4565b60405180910390f35b34801561066757600080fd5b5061067061167b565b60405161067d9190613634565b60405180910390f35b34801561069257600080fd5b5061069b611681565b6040516106a891906132fe565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d391906139a3565b61170f565b6040516106e59190613634565b60405180910390f35b3480156106fa57600080fd5b5061070361182b565b005b34801561071157600080fd5b5061072c600480360381019061072791906139d0565b6118b3565b005b34801561073a57600080fd5b5061075560048036038101906107509190613356565b611954565b005b34801561076357600080fd5b5061076c6119da565b005b34801561077a57600080fd5b50610795600480360381019061079091906139a3565b611a60565b6040516107a29190613abb565b60405180910390f35b3480156107b757600080fd5b506107c0611b6a565b6040516107cd91906133c4565b60405180910390f35b3480156107e257600080fd5b506107eb611b94565b6040516107f891906132fe565b60405180910390f35b61081b60048036038101906108169190613356565b611c26565b005b34801561082957600080fd5b50610844600480360381019061083f9190613b09565b611d42565b005b34801561085257600080fd5b5061085b611ec3565b604051610868919061324a565b60405180910390f35b34801561087d57600080fd5b50610886611ed6565b604051610893919061324a565b60405180910390f35b3480156108a857600080fd5b506108c360048036038101906108be9190613b49565b611eed565b005b3480156108d157600080fd5b506108ec60048036038101906108e79190613356565b611f4f565b6040516108f991906132fe565b60405180910390f35b34801561090e57600080fd5b50610917611fcb565b60405161092491906133c4565b60405180910390f35b34801561093957600080fd5b50610954600480360381019061094f91906139a3565b611ff1565b005b34801561096257600080fd5b5061097d60048036038101906109789190613bcc565b6120b1565b60405161098a919061324a565b60405180910390f35b34801561099f57600080fd5b506109a86121f8565b6040516109b59190613634565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e091906139a3565b6121fd565b005b3480156109f357600080fd5b50610a0e6004803603810190610a099190613c0c565b6122f5565b005b348015610a1c57600080fd5b50610a376004803603810190610a3291906139a3565b61233f565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aac5750610aab82612462565b5b9050919050565b610abb612544565b73ffffffffffffffffffffffffffffffffffffffff16610ad9611b6a565b73ffffffffffffffffffffffffffffffffffffffff1614610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2690613cc7565b60405180910390fd5b6001600a60006101000a81548160ff021916908315150217905550565b606060008054610b5b90613d16565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8790613d16565b8015610bd45780601f10610ba957610100808354040283529160200191610bd4565b820191906000526020600020905b815481529060010190602001808311610bb757829003601f168201915b5050505050905090565b6000610be98261254c565b610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90613dba565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c6e826115be565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690613e4c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cfe612544565b73ffffffffffffffffffffffffffffffffffffffff161480610d2d5750610d2c81610d27612544565b6120b1565b5b610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6390613ede565b60405180910390fd5b610d7683836125d4565b505050565b610d836115a7565b610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613f4a565b60405180910390fd5b600a60009054906101000a900460ff16610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613fb6565b60405180910390fd5b6000600280549050905061115d8382610e2a9190614005565b10610e6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e61906140a7565b60405180910390fd5b600583600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610eb79190614005565b10610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90614113565b60405180910390fd5b610f3460065433604051602001610f0e919061417b565b604051602081830303815290604052805190602001208461268d9092919063ffffffff16565b610f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6a906141e2565b60405180910390fd5b60005b83811015610fa657610f93338284610f8e9190614005565b612743565b8080610f9e90614202565b915050610f76565b5082600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff69190614005565b92505081905550505050565b600581565b6000600280549050905090565b61102561101f612544565b82612806565b611064576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105b906142bd565b60405180910390fd5b61106f8383836128e4565b505050565b600061107f8361170f565b82106110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b79061434f565b60405180910390fd5b6000805b60028054905081101561117757600281815481106110e5576110e461436f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561116457838214156111555780925050506111b3565b818061116090614202565b9250505b808061116f90614202565b9150506110c4565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa9061434f565b60405180910390fd5b92915050565b61115d81565b6111c7612544565b73ffffffffffffffffffffffffffffffffffffffff166111e5611b6a565b73ffffffffffffffffffffffffffffffffffffffff161461123b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123290613cc7565b60405180910390fd5b6000600280549050905061115d826002805490506112599190614005565b10611299576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611290906140a7565b60405180910390fd5b60005b828110156112cc576112b93382846112b49190614005565b612743565b80806112c490614202565b91505061129c565b505050565b6112d9612544565b73ffffffffffffffffffffffffffffffffffffffff166112f7611b6a565b73ffffffffffffffffffffffffffffffffffffffff161461134d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134490613cc7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611393573d6000803e3d6000fd5b50565b61139e612544565b73ffffffffffffffffffffffffffffffffffffffff166113bc611b6a565b73ffffffffffffffffffffffffffffffffffffffff1614611412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140990613cc7565b60405180910390fd5b61141a612a92565b565b61143783838360405180602001604052806000815250611eed565b505050565b60006002805490508210611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c90614410565b60405180910390fd5b819050919050565b611495612544565b73ffffffffffffffffffffffffffffffffffffffff166114b3611b6a565b73ffffffffffffffffffffffffffffffffffffffff1614611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150090613cc7565b60405180910390fd5b806009908051906020019061151f9291906130f3565b5050565b60005b82518110156115685761155585858584815181106115475761154661436f565b5b602002602001015185611eed565b808061156090614202565b915050611526565b5050505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b600c6020528060005260406000206000915090505481565b6000600560149054906101000a900460ff16905090565b600080600283815481106115d5576115d461436f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611672576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611669906144a2565b60405180910390fd5b80915050919050565b60085481565b6009805461168e90613d16565b80601f01602080910402602001604051908101604052809291908181526020018280546116ba90613d16565b80156117075780601f106116dc57610100808354040283529160200191611707565b820191906000526020600020905b8154815290600101906020018083116116ea57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790614534565b60405180910390fd5b6000805b60028054905081101561182157600281815481106117a5576117a461436f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611810578161180d90614202565b91505b8061181a90614202565b9050611784565b5080915050919050565b611833612544565b73ffffffffffffffffffffffffffffffffffffffff16611851611b6a565b73ffffffffffffffffffffffffffffffffffffffff16146118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90613cc7565b60405180910390fd5b6118b16000612b34565b565b6118bb612544565b73ffffffffffffffffffffffffffffffffffffffff166118d9611b6a565b73ffffffffffffffffffffffffffffffffffffffff161461192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690613cc7565b60405180910390fd5b806006819055506001600760006101000a81548160ff02191690831515021790555050565b61195c612544565b73ffffffffffffffffffffffffffffffffffffffff1661197a611b6a565b73ffffffffffffffffffffffffffffffffffffffff16146119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790613cc7565b60405180910390fd5b8060088190555050565b6119e2612544565b73ffffffffffffffffffffffffffffffffffffffff16611a00611b6a565b73ffffffffffffffffffffffffffffffffffffffff1614611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d90613cc7565b60405180910390fd5b611a5e612bfa565b565b60606000611a6d8361170f565b90506000811415611aca57600067ffffffffffffffff811115611a9357611a92613450565b5b604051908082528060200260200182016040528015611ac15781602001602082028036833780820191505090505b50915050611b65565b60008167ffffffffffffffff811115611ae657611ae5613450565b5b604051908082528060200260200182016040528015611b145781602001602082028036833780820191505090505b50905060005b82811015611b5e57611b2c8582611074565b828281518110611b3f57611b3e61436f565b5b6020026020010181815250508080611b5690614202565b915050611b1a565b5080925050505b919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ba390613d16565b80601f0160208091040260200160405190810160405280929190818152602001828054611bcf90613d16565b8015611c1c5780601f10611bf157610100808354040283529160200191611c1c565b820191906000526020600020905b815481529060010190602001808311611bff57829003601f168201915b5050505050905090565b611c2e6115a7565b15611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c65906145a0565b60405180910390fd5b601a8110611cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca89061460c565b60405180910390fd5b6000600280549050905061115d8282611cca9190614005565b10611d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d01906140a7565b60405180910390fd5b60005b82811015611d3d57611d2a338284611d259190614005565b612743565b8080611d3590614202565b915050611d0d565b505050565b611d4a612544565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf90614678565b60405180910390fd5b8060046000611dc5612544565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e72612544565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611eb7919061324a565b60405180910390a35050565b600a60009054906101000a900460ff1681565b6000600760009054906101000a900460ff16905090565b611efe611ef8612544565b83612806565b611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f34906142bd565b60405180910390fd5b611f4984848484612c9d565b50505050565b6060611f5a8261254c565b611f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f90906146e4565b60405180910390fd5b6009611fa483612cf9565b604051602001611fb59291906147d4565b6040516020818303038152906040529050919050565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ff9612544565b73ffffffffffffffffffffffffffffffffffffffff16612017611b6a565b73ffffffffffffffffffffffffffffffffffffffff161461206d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206490613cc7565b60405180910390fd5b80600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161212991906133c4565b602060405180830381865afa158015612146573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061216a9190614836565b73ffffffffffffffffffffffffffffffffffffffff1614806121d55750600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156121e45760019150506121f2565b6121ee8484612e5a565b9150505b92915050565b601a81565b612205612544565b73ffffffffffffffffffffffffffffffffffffffff16612223611b6a565b73ffffffffffffffffffffffffffffffffffffffff1614612279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227090613cc7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e0906148d5565b60405180910390fd5b6122f281612b34565b50565b60005b81518110156123395761232684848484815181106123195761231861436f565b5b6020026020010151611014565b808061233190614202565b9150506122f8565b50505050565b612347612544565b73ffffffffffffffffffffffffffffffffffffffff16612365611b6a565b73ffffffffffffffffffffffffffffffffffffffff16146123bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b290613cc7565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061252d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061253d575061253c82612eee565b5b9050919050565b600033905090565b6000600280549050821080156125cd5750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106125895761258861436f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612647836115be565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082905060005b85518110156127355760008682815181106126b4576126b361436f565b5b602002602001015190508083116126f55782816040516020016126d8929190614916565b604051602081830303815290604052805190602001209250612721565b8083604051602001612708929190614916565b6040516020818303038152906040528051906020012092505b50808061272d90614202565b915050612696565b508381149150509392505050565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006128118261254c565b612850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612847906149b4565b60405180910390fd5b600061285b836115be565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128ca57508373ffffffffffffffffffffffffffffffffffffffff166128b284610bde565b73ffffffffffffffffffffffffffffffffffffffff16145b806128db57506128da81856120b1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612904826115be565b73ffffffffffffffffffffffffffffffffffffffff161461295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190614a46565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c190614ad8565b60405180910390fd5b6129d56000826125d4565b81600282815481106129ea576129e961436f565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612a9a6115a7565b612ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad090613f4a565b60405180910390fd5b6000600560146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612b1d612544565b604051612b2a91906133c4565b60405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c026115a7565b15612c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c39906145a0565b60405180910390fd5b6001600560146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612c86612544565b604051612c9391906133c4565b60405180910390a1565b612ca88484846128e4565b612cb484848484612f58565b612cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cea90614b6a565b60405180910390fd5b50505050565b60606000821415612d41576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e55565b600082905060005b60008214612d73578080612d5c90614202565b915050600a82612d6c9190614bb9565b9150612d49565b60008167ffffffffffffffff811115612d8f57612d8e613450565b5b6040519080825280601f01601f191660200182016040528015612dc15781602001600182028036833780820191505090505b5090505b60008514612e4e57600182612dda9190614bea565b9150600a85612de99190614c1e565b6030612df59190614005565b60f81b818381518110612e0b57612e0a61436f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e479190614bb9565b9450612dc5565b8093505050505b919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000612f798473ffffffffffffffffffffffffffffffffffffffff166130e0565b156130d3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fa2612544565b8786866040518563ffffffff1660e01b8152600401612fc49493929190614ca4565b6020604051808303816000875af192505050801561300057506040513d601f19601f82011682018060405250810190612ffd9190614d05565b60015b613083573d8060008114613030576040519150601f19603f3d011682016040523d82523d6000602084013e613035565b606091505b5060008151141561307b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307290614b6a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130d8565b600190505b949350505050565b600080823b905060008111915050919050565b8280546130ff90613d16565b90600052602060002090601f0160209004810192826131215760008555613168565b82601f1061313a57805160ff1916838001178555613168565b82800160010185558215613168579182015b8281111561316757825182559160200191906001019061314c565b5b5090506131759190613179565b5090565b5b8082111561319257600081600090555060010161317a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131df816131aa565b81146131ea57600080fd5b50565b6000813590506131fc816131d6565b92915050565b600060208284031215613218576132176131a0565b5b6000613226848285016131ed565b91505092915050565b60008115159050919050565b6132448161322f565b82525050565b600060208201905061325f600083018461323b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561329f578082015181840152602081019050613284565b838111156132ae576000848401525b50505050565b6000601f19601f8301169050919050565b60006132d082613265565b6132da8185613270565b93506132ea818560208601613281565b6132f3816132b4565b840191505092915050565b6000602082019050818103600083015261331881846132c5565b905092915050565b6000819050919050565b61333381613320565b811461333e57600080fd5b50565b6000813590506133508161332a565b92915050565b60006020828403121561336c5761336b6131a0565b5b600061337a84828501613341565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133ae82613383565b9050919050565b6133be816133a3565b82525050565b60006020820190506133d960008301846133b5565b92915050565b6133e8816133a3565b81146133f357600080fd5b50565b600081359050613405816133df565b92915050565b60008060408385031215613422576134216131a0565b5b6000613430858286016133f6565b925050602061344185828601613341565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613488826132b4565b810181811067ffffffffffffffff821117156134a7576134a6613450565b5b80604052505050565b60006134ba613196565b90506134c6828261347f565b919050565b600067ffffffffffffffff8211156134e6576134e5613450565b5b602082029050602081019050919050565b600080fd5b6000819050919050565b61350f816134fc565b811461351a57600080fd5b50565b60008135905061352c81613506565b92915050565b6000613545613540846134cb565b6134b0565b90508083825260208201905060208402830185811115613568576135676134f7565b5b835b81811015613591578061357d888261351d565b84526020840193505060208101905061356a565b5050509392505050565b600082601f8301126135b0576135af61344b565b5b81356135c0848260208601613532565b91505092915050565b600080604083850312156135e0576135df6131a0565b5b60006135ee85828601613341565b925050602083013567ffffffffffffffff81111561360f5761360e6131a5565b5b61361b8582860161359b565b9150509250929050565b61362e81613320565b82525050565b60006020820190506136496000830184613625565b92915050565b600080600060608486031215613668576136676131a0565b5b6000613676868287016133f6565b9350506020613687868287016133f6565b925050604061369886828701613341565b9150509250925092565b600080fd5b600067ffffffffffffffff8211156136c2576136c1613450565b5b6136cb826132b4565b9050602081019050919050565b82818337600083830152505050565b60006136fa6136f5846136a7565b6134b0565b905082815260208101848484011115613716576137156136a2565b5b6137218482856136d8565b509392505050565b600082601f83011261373e5761373d61344b565b5b813561374e8482602086016136e7565b91505092915050565b60006020828403121561376d5761376c6131a0565b5b600082013567ffffffffffffffff81111561378b5761378a6131a5565b5b61379784828501613729565b91505092915050565b600067ffffffffffffffff8211156137bb576137ba613450565b5b602082029050602081019050919050565b60006137df6137da846137a0565b6134b0565b90508083825260208201905060208402830185811115613802576138016134f7565b5b835b8181101561382b57806138178882613341565b845260208401935050602081019050613804565b5050509392505050565b600082601f83011261384a5761384961344b565b5b813561385a8482602086016137cc565b91505092915050565b600067ffffffffffffffff82111561387e5761387d613450565b5b613887826132b4565b9050602081019050919050565b60006138a76138a284613863565b6134b0565b9050828152602081018484840111156138c3576138c26136a2565b5b6138ce8482856136d8565b509392505050565b600082601f8301126138eb576138ea61344b565b5b81356138fb848260208601613894565b91505092915050565b6000806000806080858703121561391e5761391d6131a0565b5b600061392c878288016133f6565b945050602061393d878288016133f6565b935050604085013567ffffffffffffffff81111561395e5761395d6131a5565b5b61396a87828801613835565b925050606085013567ffffffffffffffff81111561398b5761398a6131a5565b5b613997878288016138d6565b91505092959194509250565b6000602082840312156139b9576139b86131a0565b5b60006139c7848285016133f6565b91505092915050565b6000602082840312156139e6576139e56131a0565b5b60006139f48482850161351d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613a3281613320565b82525050565b6000613a448383613a29565b60208301905092915050565b6000602082019050919050565b6000613a68826139fd565b613a728185613a08565b9350613a7d83613a19565b8060005b83811015613aae578151613a958882613a38565b9750613aa083613a50565b925050600181019050613a81565b5085935050505092915050565b60006020820190508181036000830152613ad58184613a5d565b905092915050565b613ae68161322f565b8114613af157600080fd5b50565b600081359050613b0381613add565b92915050565b60008060408385031215613b2057613b1f6131a0565b5b6000613b2e858286016133f6565b9250506020613b3f85828601613af4565b9150509250929050565b60008060008060808587031215613b6357613b626131a0565b5b6000613b71878288016133f6565b9450506020613b82878288016133f6565b9350506040613b9387828801613341565b925050606085013567ffffffffffffffff811115613bb457613bb36131a5565b5b613bc0878288016138d6565b91505092959194509250565b60008060408385031215613be357613be26131a0565b5b6000613bf1858286016133f6565b9250506020613c02858286016133f6565b9150509250929050565b600080600060608486031215613c2557613c246131a0565b5b6000613c33868287016133f6565b9350506020613c44868287016133f6565b925050604084013567ffffffffffffffff811115613c6557613c646131a5565b5b613c7186828701613835565b9150509250925092565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cb1602083613270565b9150613cbc82613c7b565b602082019050919050565b60006020820190508181036000830152613ce081613ca4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d2e57607f821691505b60208210811415613d4257613d41613ce7565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613da4602c83613270565b9150613daf82613d48565b604082019050919050565b60006020820190508181036000830152613dd381613d97565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e36602183613270565b9150613e4182613dda565b604082019050919050565b60006020820190508181036000830152613e6581613e29565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613ec8603883613270565b9150613ed382613e6c565b604082019050919050565b60006020820190508181036000830152613ef781613ebb565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613f34601483613270565b9150613f3f82613efe565b602082019050919050565b60006020820190508181036000830152613f6381613f27565b9050919050565b7f50726573616c65206861736e2774207374617274656420796574000000000000600082015250565b6000613fa0601a83613270565b9150613fab82613f6a565b602082019050919050565b60006020820190508181036000830152613fcf81613f93565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061401082613320565b915061401b83613320565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140505761404f613fd6565b5b828201905092915050565b7f416d6f756e742065786365656473206d617820737570706c7900000000000000600082015250565b6000614091601983613270565b915061409c8261405b565b602082019050919050565b600060208201905081810360008301526140c081614084565b9050919050565b7f416d6f756e7420657863656564732070726573616c65206d6178000000000000600082015250565b60006140fd601a83613270565b9150614108826140c7565b602082019050919050565b6000602082019050818103600083015261412c816140f0565b9050919050565b60008160601b9050919050565b600061414b82614133565b9050919050565b600061415d82614140565b9050919050565b614175614170826133a3565b614152565b82525050565b60006141878284614164565b60148201915081905092915050565b7f496e76616c69642070726f6f662e204e6f742077686974656c69737465640000600082015250565b60006141cc601e83613270565b91506141d782614196565b602082019050919050565b600060208201905081810360008301526141fb816141bf565b9050919050565b600061420d82613320565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142405761423f613fd6565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006142a7603183613270565b91506142b28261424b565b604082019050919050565b600060208201905081810360008301526142d68161429a565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614339602b83613270565b9150614344826142dd565b604082019050919050565b600060208201905081810360008301526143688161432c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006143fa602c83613270565b91506144058261439e565b604082019050919050565b60006020820190508181036000830152614429816143ed565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061448c602983613270565b915061449782614430565b604082019050919050565b600060208201905081810360008301526144bb8161447f565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061451e602a83613270565b9150614529826144c2565b604082019050919050565b6000602082019050818103600083015261454d81614511565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061458a601083613270565b915061459582614554565b602082019050919050565b600060208201905081810360008301526145b98161457d565b9050919050565b7f416d6f756e742065786365656473206d61782070657220747800000000000000600082015250565b60006145f6601983613270565b9150614601826145c0565b602082019050919050565b60006020820190508181036000830152614625816145e9565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614662601983613270565b915061466d8261462c565b602082019050919050565b6000602082019050818103600083015261469181614655565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b60006146ce601583613270565b91506146d982614698565b602082019050919050565b600060208201905081810360008301526146fd816146c1565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461473181613d16565b61473b8186614704565b9450600182166000811461475657600181146147675761479a565b60ff1983168652818601935061479a565b6147708561470f565b60005b8381101561479257815481890152600182019150602081019050614773565b838801955050505b50505092915050565b60006147ae82613265565b6147b88185614704565b93506147c8818560208601613281565b80840191505092915050565b60006147e08285614724565b91506147ec82846147a3565b91508190509392505050565b6000614803826133a3565b9050919050565b614813816147f8565b811461481e57600080fd5b50565b6000815190506148308161480a565b92915050565b60006020828403121561484c5761484b6131a0565b5b600061485a84828501614821565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006148bf602683613270565b91506148ca82614863565b604082019050919050565b600060208201905081810360008301526148ee816148b2565b9050919050565b6000819050919050565b61491061490b826134fc565b6148f5565b82525050565b600061492282856148ff565b60208201915061493282846148ff565b6020820191508190509392505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061499e602c83613270565b91506149a982614942565b604082019050919050565b600060208201905081810360008301526149cd81614991565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614a30602983613270565b9150614a3b826149d4565b604082019050919050565b60006020820190508181036000830152614a5f81614a23565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614ac2602483613270565b9150614acd82614a66565b604082019050919050565b60006020820190508181036000830152614af181614ab5565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614b54603283613270565b9150614b5f82614af8565b604082019050919050565b60006020820190508181036000830152614b8381614b47565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614bc482613320565b9150614bcf83613320565b925082614bdf57614bde614b8a565b5b828204905092915050565b6000614bf582613320565b9150614c0083613320565b925082821015614c1357614c12613fd6565b5b828203905092915050565b6000614c2982613320565b9150614c3483613320565b925082614c4457614c43614b8a565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614c7682614c4f565b614c808185614c5a565b9350614c90818560208601613281565b614c99816132b4565b840191505092915050565b6000608082019050614cb960008301876133b5565b614cc660208301866133b5565b614cd36040830185613625565b8181036060830152614ce58184614c6b565b905095945050505050565b600081519050614cff816131d6565b92915050565b600060208284031215614d1b57614d1a6131a0565b5b6000614d2984828501614cf0565b9150509291505056fea2646970667358221220e7a4ca053fc07bdf590ed857bbfcc2171f2089dd95576118956587e8f841f2c364736f6c634300080b0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : openSeaProxy (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


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.