ETH Price: $2,754.89 (+4.37%)

Token

W3lockEAPOwnersClub (W3LEOC)
 

Overview

Max Total Supply

19 W3LEOC

Holders

14

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xp2p.eth
Balance
1 W3LEOC
0xe16525e8dc58bb2b7e6808ba300e0c34405c8aa9
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:
W3lockEAPOwnersClub

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : W3lockEAPOwnersClub.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/security/Pausable.sol";

/**
 * @title Delegate Proxy
 * @notice delegate ownership of a contract to another address, to save on unneeded transactions to approve contract use for users
 */
contract OwnableDelegateProxy {

}

/**
 * @title Proxy Registry
 * @notice map address to the delegate proxy
 */
contract ProxyRegistry {
	mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @author a42
 * @title W3lockEAPOwnersClub
 * @notice ERC721 contract
 */
contract W3lockEAPOwnersClub is ERC721, Ownable, Pausable {
	/**
	 * Libraries
	 */
	using Counters for Counters.Counter;

	/**
	 * Events
	 */
	event Withdraw(address indexed operator);
	event SetBaseTokenURI(string baseTokenURI);
	event SetContractURI(string contractURI);
	event SetProxyRegistryAddress(address indexed proxyRegistryAddress);
	event SetMinterAddress(address indexed minterAddress);

	/**
	 * Public Variables
	 */
	address public minterAddress;
	address public proxyRegistryAddress;
	string public baseTokenURI;
	string public contractURI;
	mapping(uint256 => uint256) public batchNumberOf;

	/**
	 * Private Variables
	 */
	Counters.Counter private _totalSupply;

	/**
	 * Constructor
	 * @notice Owner address will be automatically set to deployer address in the parent contract (Ownable)
	 * @param _baseTokenURI - base uri to be set as a initial baseTokenURI
	 * @param _contractURI - base contract uri to be set as a initial contractURI
	 * @param _proxyRegistryAddress - proxy address to be set as a initial proxyRegistryAddress
	 */
	constructor(
		string memory _baseTokenURI,
		string memory _contractURI,
		address _proxyRegistryAddress
	) ERC721("W3lockEAPOwnersClub", "W3LEOC") {
		baseTokenURI = _baseTokenURI;
		contractURI = _contractURI;
		proxyRegistryAddress = _proxyRegistryAddress;

		// _totalSupply is initialized to 1, since starting at 0 leads to higher gas cost for the first minter
		_totalSupply.increment();
	}

	/**
	 * Receive function
	 */
	receive() external payable {}

	/**
	 * Fallback function
	 */
	fallback() external payable {}

	/**
	 * @notice Set contractURI
	 * @dev onlyOwner
	 * @param _contractURI - URI to be set as a new contractURI
	 */
	function setContractURI(string memory _contractURI) external onlyOwner {
		contractURI = _contractURI;
		emit SetContractURI(_contractURI);
	}

	/**
	 * @notice Set baseTokenURI for this contract
	 * @dev onlyOwner
	 * @param _baseTokenURI - URI to be set as a new baseTokenURI
	 */
	function setBaseTokenURI(string memory _baseTokenURI) external onlyOwner {
		baseTokenURI = _baseTokenURI;
		emit SetBaseTokenURI(_baseTokenURI);
	}

	/**
	 * @notice Register proxy registry address
	 * @dev onlyOwner
	 * @param _proxyRegistryAddress - address to be set as a new proxyRegistryAddress
	 */
	function setProxyRegistryAddress(address _proxyRegistryAddress)
		external
		onlyOwner
	{
		proxyRegistryAddress = _proxyRegistryAddress;
		emit SetProxyRegistryAddress(_proxyRegistryAddress);
	}

	/**
	 * @notice Transfer balance in contract to the owner address
	 * @dev onlyOwner
	 */
	function withdraw() external onlyOwner {
		require(address(this).balance > 0, "Not Enough Balance Of Contract");
		(bool success, ) = owner().call{ value: address(this).balance }("");
		require(success, "Transfer Failed");
		emit Withdraw(msg.sender);
	}

	/**
	 * @notice Register minterAddress address
	 * @dev onlyOwner
	 * @param _minterAddress - address to be set as a new minterAddress
	 */
	function setMinterAddress(address _minterAddress) external onlyOwner {
		minterAddress = _minterAddress;
		emit SetMinterAddress(_minterAddress);
	}

	/**
	 * @notice Pause this contract
	 * @dev onlyOwner
	 */
	function pause() external onlyOwner {
		_pause();
	}

	/**
	 * @notice Unpause this contract
	 * @dev onlyOwner
	 */
	function unpause() external onlyOwner {
		_unpause();
	}

	/**
	 * @notice Return totalSupply
	 * @return uint256
	 */
	function totalSupply() public view returns (uint256) {
		return _totalSupply.current() - 1;
	}

	/**
	 * @notice Return bool if the token exists
	 * @param _tokenId - tokenId to be check if exists
	 * @return bool
	 */
	function exists(uint256 _tokenId) public view returns (bool) {
		return _exists(_tokenId);
	}

	/**
	 * @notice Mint token to the beneficiary
	 * @dev onlyMinterOrOwner, whenNotPaused
	 * @param _tokenId - tokenId
	 * @param _batchNumber - batch number
	 * @param _beneficiary - address eligible to get the token for tokenId
	 */
	function mintTo(
		uint256 _tokenId,
		uint256 _batchNumber,
		address _beneficiary
	) public whenNotPaused {
		require(_msgSender() == minterAddress, "Only Minter");
		_safeMint(_beneficiary, _tokenId);
		_totalSupply.increment();
		batchNumberOf[_tokenId] = _batchNumber;
	}

	/**
	 * @notice Check if the owner approve the operator address
	 * @dev Override to allow proxy contracts for gas less approval
	 * @param _owner - owner address
	 * @param _operator - operator address
	 * @return bool
	 */
	function isApprovedForAll(address _owner, address _operator)
		public
		view
		override
		returns (bool)
	{
		ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
		if (address(proxyRegistry.proxies(_owner)) == _operator) {
			return true;
		}

		return super.isApprovedForAll(_owner, _operator);
	}

	/**
	 * @notice See {ERC721-_baseURI}
	 * @dev Override to return baseTokenURI set by the owner
	 * @return string memory
	 */
	function _baseURI() internal view override returns (string memory) {
		return baseTokenURI;
	}

	/**
	 * @notice See {ERC721-_beforeTokenTransfer}
	 * @dev Override to check paused status
	 * @param _from - address which wants to transfer the token by tokenId
	 * @param _to - address eligible to get the token
	 * @param _tokenId - tokenId
	 */
	function _beforeTokenTransfer(
		address _from,
		address _to,
		uint256 _tokenId
	) internal virtual override {
		super._beforeTokenTransfer(_from, _to, _tokenId);
		require(!paused(), "ERC721Pausable: token transfer while paused");
	}
}

File 2 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(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 from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 3 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 4 of 13 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 5 of 13 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

    bool private _paused;

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

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

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

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

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

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

File 6 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 8 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","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":false,"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"SetBaseTokenURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"contractURI","type":"string"}],"name":"SetContractURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minterAddress","type":"address"}],"name":"SetMinterAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"proxyRegistryAddress","type":"address"}],"name":"SetProxyRegistryAddress","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"}],"name":"Withdraw","type":"event"},{"stateMutability":"payable","type":"fallback"},{"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"batchNumberOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_batchNumber","type":"uint256"},{"internalType":"address","name":"_beneficiary","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","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":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minterAddress","type":"address"}],"name":"setMinterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50604051620046d5380380620046d58339818101604052810190620000379190620003c2565b6040518060400160405280601381526020017f57336c6f636b4541504f776e657273436c7562000000000000000000000000008152506040518060400160405280600681526020017f57334c454f4300000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb92919062000289565b508060019080519060200190620000d492919062000289565b505050620000f7620000eb620001a560201b60201c565b620001ad60201b60201c565b6000600660146101000a81548160ff02191690831515021790555082600990805190602001906200012a92919062000289565b5081600a90805190602001906200014392919062000289565b5080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200019c600c6200027360201b62001a0c1760201c565b50505062000608565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b828054620002979062000513565b90600052602060002090601f016020900481019282620002bb576000855562000307565b82601f10620002d657805160ff191683800117855562000307565b8280016001018555821562000307579182015b8281111562000306578251825591602001919060010190620002e9565b5b5090506200031691906200031a565b5090565b5b80821115620003355760008160009055506001016200031b565b5090565b6000620003506200034a8462000473565b6200044a565b9050828152602081018484840111156200036957600080fd5b62000376848285620004dd565b509392505050565b6000815190506200038f81620005ee565b92915050565b600082601f830112620003a757600080fd5b8151620003b984826020860162000339565b91505092915050565b600080600060608486031215620003d857600080fd5b600084015167ffffffffffffffff811115620003f357600080fd5b620004018682870162000395565b935050602084015167ffffffffffffffff8111156200041f57600080fd5b6200042d8682870162000395565b925050604062000440868287016200037e565b9150509250925092565b60006200045662000469565b905062000464828262000549565b919050565b6000604051905090565b600067ffffffffffffffff821115620004915762000490620005ae565b5b6200049c82620005dd565b9050602081019050919050565b6000620004b682620004bd565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004fd578082015181840152602081019050620004e0565b838111156200050d576000848401525b50505050565b600060028204905060018216806200052c57607f821691505b602082108114156200054357620005426200057f565b5b50919050565b6200055482620005dd565b810181811067ffffffffffffffff82111715620005765762000575620005ae565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005f981620004a9565b81146200060557600080fd5b50565b6140bd80620006186000396000f3fe6080604052600436106101e75760003560e01c8063715018a611610102578063b88d4fde11610095578063d547cfb711610064578063d547cfb7146106be578063e8a3d485146106e9578063e985e9c514610714578063f2fde38b14610751576101ee565b8063b88d4fde14610604578063c87b56dd1461062d578063cd7c03261461066a578063d26ea6c014610695576101ee565b806395d89b41116100d157806395d89b411461054a578063a22cb46514610575578063a3106b951461059e578063a6064ab0146105c7576101ee565b8063715018a6146104c85780638456cb59146104df5780638da5cb5b146104f6578063938e3d7b14610521576101ee565b80633ccfd60b1161017a5780635c975abb116101495780635c975abb146103fa5780636190e3a8146104255780636352211e1461044e57806370a082311461048b576101ee565b80633ccfd60b146103665780633f4ba83a1461037d57806342842e0e146103945780634f558e79146103bd576101ee565b806318160ddd116101b657806318160ddd146102be57806323b872dd146102e957806330176e131461031257806334d722c91461033b576101ee565b806301ffc9a7146101f057806306fdde031461022d578063081812fc14610258578063095ea7b314610295576101ee565b366101ee57005b005b3480156101fc57600080fd5b5061021760048036038101906102129190612dba565b61077a565b6040516102249190613383565b60405180910390f35b34801561023957600080fd5b5061024261085c565b60405161024f919061339e565b60405180910390f35b34801561026457600080fd5b5061027f600480360381019061027a9190612e76565b6108ee565b60405161028c919061331c565b60405180910390f35b3480156102a157600080fd5b506102bc60048036038101906102b79190612d7e565b610973565b005b3480156102ca57600080fd5b506102d3610a8b565b6040516102e09190613680565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190612c78565b610aa8565b005b34801561031e57600080fd5b5061033960048036038101906103349190612e35565b610b08565b005b34801561034757600080fd5b50610350610bd5565b60405161035d919061331c565b60405180910390f35b34801561037257600080fd5b5061037b610bfb565b005b34801561038957600080fd5b50610392610db3565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190612c78565b610e39565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612e76565b610e59565b6040516103f19190613383565b60405180910390f35b34801561040657600080fd5b5061040f610e6b565b60405161041c9190613383565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190612e9f565b610e82565b005b34801561045a57600080fd5b5061047560048036038101906104709190612e76565b610f92565b604051610482919061331c565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad9190612c13565b611044565b6040516104bf9190613680565b60405180910390f35b3480156104d457600080fd5b506104dd6110fc565b005b3480156104eb57600080fd5b506104f4611184565b005b34801561050257600080fd5b5061050b61120a565b604051610518919061331c565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190612e35565b611234565b005b34801561055657600080fd5b5061055f611301565b60405161056c919061339e565b60405180910390f35b34801561058157600080fd5b5061059c60048036038101906105979190612d42565b611393565b005b3480156105aa57600080fd5b506105c560048036038101906105c09190612c13565b6113a9565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190612e76565b6114ac565b6040516105fb9190613680565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190612cc7565b6114c4565b005b34801561063957600080fd5b50610654600480360381019061064f9190612e76565b611526565b604051610661919061339e565b60405180910390f35b34801561067657600080fd5b5061067f6115cd565b60405161068c919061331c565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612c13565b6115f3565b005b3480156106ca57600080fd5b506106d36116f6565b6040516106e0919061339e565b60405180910390f35b3480156106f557600080fd5b506106fe611784565b60405161070b919061339e565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190612c3c565b611812565b6040516107489190613383565b60405180910390f35b34801561075d57600080fd5b5061077860048036038101906107739190612c13565b611914565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610855575061085482611a22565b5b9050919050565b60606000805461086b906138f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610897906138f3565b80156108e45780601f106108b9576101008083540402835291602001916108e4565b820191906000526020600020905b8154815290600101906020018083116108c757829003601f168201915b5050505050905090565b60006108f982611a8c565b610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f906135a0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097e82610f92565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e690613600565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a0e611af8565b73ffffffffffffffffffffffffffffffffffffffff161480610a3d5750610a3c81610a37611af8565b611812565b5b610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390613500565b60405180910390fd5b610a868383611b00565b505050565b60006001610a99600c611bb9565b610aa391906137f7565b905090565b610ab9610ab3611af8565b82611bc7565b610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef90613640565b60405180910390fd5b610b03838383611ca5565b505050565b610b10611af8565b73ffffffffffffffffffffffffffffffffffffffff16610b2e61120a565b73ffffffffffffffffffffffffffffffffffffffff1614610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b906135c0565b60405180910390fd5b8060099080519060200190610b9a929190612a22565b507f199e933997358e1789d8b56ea8c551befeb05ce2fe3fe506199f1230f5a591b481604051610bca919061339e565b60405180910390a150565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c03611af8565b73ffffffffffffffffffffffffffffffffffffffff16610c2161120a565b73ffffffffffffffffffffffffffffffffffffffff1614610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e906135c0565b60405180910390fd5b60004711610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190613660565b60405180910390fd5b6000610cc461120a565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ce790613307565b60006040518083038185875af1925050503d8060008114610d24576040519150601f19603f3d011682016040523d82523d6000602084013e610d29565b606091505b5050905080610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6490613620565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167ff67611512e0a2d90c96fd3f08dca4971bc45fba9dc679eabe839a32abbe58a8e60405160405180910390a250565b610dbb611af8565b73ffffffffffffffffffffffffffffffffffffffff16610dd961120a565b73ffffffffffffffffffffffffffffffffffffffff1614610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e26906135c0565b60405180910390fd5b610e37611f0c565b565b610e54838383604051806020016040528060008152506114c4565b505050565b6000610e6482611a8c565b9050919050565b6000600660149054906101000a900460ff16905090565b610e8a610e6b565b15610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec1906134e0565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f0b611af8565b73ffffffffffffffffffffffffffffffffffffffff1614610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890613520565b60405180910390fd5b610f6b8184611fae565b610f75600c611a0c565b81600b600085815260200190815260200160002081905550505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561103b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103290613560565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90613540565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611104611af8565b73ffffffffffffffffffffffffffffffffffffffff1661112261120a565b73ffffffffffffffffffffffffffffffffffffffff1614611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f906135c0565b60405180910390fd5b6111826000611fcc565b565b61118c611af8565b73ffffffffffffffffffffffffffffffffffffffff166111aa61120a565b73ffffffffffffffffffffffffffffffffffffffff1614611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f7906135c0565b60405180910390fd5b611208612092565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61123c611af8565b73ffffffffffffffffffffffffffffffffffffffff1661125a61120a565b73ffffffffffffffffffffffffffffffffffffffff16146112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a7906135c0565b60405180910390fd5b80600a90805190602001906112c6929190612a22565b507f5ca9f750836b0b7efdace104f07b5c9f0df0650c0fd24f5163e99044ae36ea52816040516112f6919061339e565b60405180910390a150565b606060018054611310906138f3565b80601f016020809104026020016040519081016040528092919081815260200182805461133c906138f3565b80156113895780601f1061135e57610100808354040283529160200191611389565b820191906000526020600020905b81548152906001019060200180831161136c57829003601f168201915b5050505050905090565b6113a561139e611af8565b8383612135565b5050565b6113b1611af8565b73ffffffffffffffffffffffffffffffffffffffff166113cf61120a565b73ffffffffffffffffffffffffffffffffffffffff1614611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c906135c0565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f3837b3499de3708015c6500ef8f4674b59400c221c3941276e38d1d5cb560e1260405160405180910390a250565b600b6020528060005260406000206000915090505481565b6114d56114cf611af8565b83611bc7565b611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90613640565b60405180910390fd5b611520848484846122a2565b50505050565b606061153182611a8c565b611570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611567906135e0565b60405180910390fd5b600061157a6122fe565b9050600081511161159a57604051806020016040528060008152506115c5565b806115a484612390565b6040516020016115b59291906132e3565b6040516020818303038152906040525b915050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115fb611af8565b73ffffffffffffffffffffffffffffffffffffffff1661161961120a565b73ffffffffffffffffffffffffffffffffffffffff161461166f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611666906135c0565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f191f22b6f37d18fc193c636df441fbe362909a26338c46a59122134ba99d91e860405160405180910390a250565b60098054611703906138f3565b80601f016020809104026020016040519081016040528092919081815260200182805461172f906138f3565b801561177c5780601f106117515761010080835404028352916020019161177c565b820191906000526020600020905b81548152906001019060200180831161175f57829003601f168201915b505050505081565b600a8054611791906138f3565b80601f01602080910402602001604051908101604052809291908181526020018280546117bd906138f3565b801561180a5780601f106117df5761010080835404028352916020019161180a565b820191906000526020600020905b8154815290600101906020018083116117ed57829003601f168201915b505050505081565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161188a919061331c565b60206040518083038186803b1580156118a257600080fd5b505afa1580156118b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118da9190612e0c565b73ffffffffffffffffffffffffffffffffffffffff16141561190057600191505061190e565b61190a848461253d565b9150505b92915050565b61191c611af8565b73ffffffffffffffffffffffffffffffffffffffff1661193a61120a565b73ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611987906135c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790613420565b60405180910390fd5b611a0981611fcc565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b7383610f92565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611bd282611a8c565b611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c08906134c0565b60405180910390fd5b6000611c1c83610f92565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c8b57508373ffffffffffffffffffffffffffffffffffffffff16611c73846108ee565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c9c5750611c9b8185611812565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cc582610f92565b73ffffffffffffffffffffffffffffffffffffffff1614611d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1290613440565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290613480565b60405180910390fd5b611d968383836125d1565b611da1600082611b00565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df191906137f7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e489190613770565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f07838383612629565b505050565b611f14610e6b565b611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a906133e0565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f97611af8565b604051611fa4919061331c565b60405180910390a1565b611fc882826040518060200160405280600081525061262e565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61209a610e6b565b156120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d1906134e0565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861211e611af8565b60405161212b919061331c565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219b906134a0565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122959190613383565b60405180910390a3505050565b6122ad848484611ca5565b6122b984848484612689565b6122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef90613400565b60405180910390fd5b50505050565b60606009805461230d906138f3565b80601f0160208091040260200160405190810160405280929190818152602001828054612339906138f3565b80156123865780601f1061235b57610100808354040283529160200191612386565b820191906000526020600020905b81548152906001019060200180831161236957829003601f168201915b5050505050905090565b606060008214156123d8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612538565b600082905060005b6000821461240a5780806123f390613956565b915050600a8261240391906137c6565b91506123e0565b60008167ffffffffffffffff81111561244c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561247e5781602001600182028036833780820191505090505b5090505b600085146125315760018261249791906137f7565b9150600a856124a6919061399f565b60306124b29190613770565b60f81b8183815181106124ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561252a91906137c6565b9450612482565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125dc838383612820565b6125e4610e6b565b15612624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261b906133c0565b60405180910390fd5b505050565b505050565b6126388383612825565b6126456000848484612689565b612684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267b90613400565b60405180910390fd5b505050565b60006126aa8473ffffffffffffffffffffffffffffffffffffffff166129ff565b15612813578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126d3611af8565b8786866040518563ffffffff1660e01b81526004016126f59493929190613337565b602060405180830381600087803b15801561270f57600080fd5b505af192505050801561274057506040513d601f19601f8201168201806040525081019061273d9190612de3565b60015b6127c3573d8060008114612770576040519150601f19603f3d011682016040523d82523d6000602084013e612775565b606091505b506000815114156127bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b290613400565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612818565b600190505b949350505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288c90613580565b60405180910390fd5b61289e81611a8c565b156128de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d590613460565b60405180910390fd5b6128ea600083836125d1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293a9190613770565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129fb60008383612629565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612a2e906138f3565b90600052602060002090601f016020900481019282612a505760008555612a97565b82601f10612a6957805160ff1916838001178555612a97565b82800160010185558215612a97579182015b82811115612a96578251825591602001919060010190612a7b565b5b509050612aa49190612aa8565b5090565b5b80821115612ac1576000816000905550600101612aa9565b5090565b6000612ad8612ad3846136c0565b61369b565b905082815260208101848484011115612af057600080fd5b612afb8482856138b1565b509392505050565b6000612b16612b11846136f1565b61369b565b905082815260208101848484011115612b2e57600080fd5b612b398482856138b1565b509392505050565b600081359050612b5081614014565b92915050565b600081359050612b658161402b565b92915050565b600081359050612b7a81614042565b92915050565b600081519050612b8f81614042565b92915050565b600082601f830112612ba657600080fd5b8135612bb6848260208601612ac5565b91505092915050565b600081519050612bce81614059565b92915050565b600082601f830112612be557600080fd5b8135612bf5848260208601612b03565b91505092915050565b600081359050612c0d81614070565b92915050565b600060208284031215612c2557600080fd5b6000612c3384828501612b41565b91505092915050565b60008060408385031215612c4f57600080fd5b6000612c5d85828601612b41565b9250506020612c6e85828601612b41565b9150509250929050565b600080600060608486031215612c8d57600080fd5b6000612c9b86828701612b41565b9350506020612cac86828701612b41565b9250506040612cbd86828701612bfe565b9150509250925092565b60008060008060808587031215612cdd57600080fd5b6000612ceb87828801612b41565b9450506020612cfc87828801612b41565b9350506040612d0d87828801612bfe565b925050606085013567ffffffffffffffff811115612d2a57600080fd5b612d3687828801612b95565b91505092959194509250565b60008060408385031215612d5557600080fd5b6000612d6385828601612b41565b9250506020612d7485828601612b56565b9150509250929050565b60008060408385031215612d9157600080fd5b6000612d9f85828601612b41565b9250506020612db085828601612bfe565b9150509250929050565b600060208284031215612dcc57600080fd5b6000612dda84828501612b6b565b91505092915050565b600060208284031215612df557600080fd5b6000612e0384828501612b80565b91505092915050565b600060208284031215612e1e57600080fd5b6000612e2c84828501612bbf565b91505092915050565b600060208284031215612e4757600080fd5b600082013567ffffffffffffffff811115612e6157600080fd5b612e6d84828501612bd4565b91505092915050565b600060208284031215612e8857600080fd5b6000612e9684828501612bfe565b91505092915050565b600080600060608486031215612eb457600080fd5b6000612ec286828701612bfe565b9350506020612ed386828701612bfe565b9250506040612ee486828701612b41565b9150509250925092565b612ef78161382b565b82525050565b612f068161383d565b82525050565b6000612f1782613722565b612f218185613738565b9350612f318185602086016138c0565b612f3a81613a8c565b840191505092915050565b6000612f508261372d565b612f5a8185613754565b9350612f6a8185602086016138c0565b612f7381613a8c565b840191505092915050565b6000612f898261372d565b612f938185613765565b9350612fa38185602086016138c0565b80840191505092915050565b6000612fbc602b83613754565b9150612fc782613a9d565b604082019050919050565b6000612fdf601483613754565b9150612fea82613aec565b602082019050919050565b6000613002603283613754565b915061300d82613b15565b604082019050919050565b6000613025602683613754565b915061303082613b64565b604082019050919050565b6000613048602583613754565b915061305382613bb3565b604082019050919050565b600061306b601c83613754565b915061307682613c02565b602082019050919050565b600061308e602483613754565b915061309982613c2b565b604082019050919050565b60006130b1601983613754565b91506130bc82613c7a565b602082019050919050565b60006130d4602c83613754565b91506130df82613ca3565b604082019050919050565b60006130f7601083613754565b915061310282613cf2565b602082019050919050565b600061311a603883613754565b915061312582613d1b565b604082019050919050565b600061313d600b83613754565b915061314882613d6a565b602082019050919050565b6000613160602a83613754565b915061316b82613d93565b604082019050919050565b6000613183602983613754565b915061318e82613de2565b604082019050919050565b60006131a6602083613754565b91506131b182613e31565b602082019050919050565b60006131c9602c83613754565b91506131d482613e5a565b604082019050919050565b60006131ec602083613754565b91506131f782613ea9565b602082019050919050565b600061320f602f83613754565b915061321a82613ed2565b604082019050919050565b6000613232602183613754565b915061323d82613f21565b604082019050919050565b6000613255600f83613754565b915061326082613f70565b602082019050919050565b6000613278600083613749565b915061328382613f99565b600082019050919050565b600061329b603183613754565b91506132a682613f9c565b604082019050919050565b60006132be601e83613754565b91506132c982613feb565b602082019050919050565b6132dd816138a7565b82525050565b60006132ef8285612f7e565b91506132fb8284612f7e565b91508190509392505050565b60006133128261326b565b9150819050919050565b60006020820190506133316000830184612eee565b92915050565b600060808201905061334c6000830187612eee565b6133596020830186612eee565b61336660408301856132d4565b81810360608301526133788184612f0c565b905095945050505050565b60006020820190506133986000830184612efd565b92915050565b600060208201905081810360008301526133b88184612f45565b905092915050565b600060208201905081810360008301526133d981612faf565b9050919050565b600060208201905081810360008301526133f981612fd2565b9050919050565b6000602082019050818103600083015261341981612ff5565b9050919050565b6000602082019050818103600083015261343981613018565b9050919050565b600060208201905081810360008301526134598161303b565b9050919050565b600060208201905081810360008301526134798161305e565b9050919050565b6000602082019050818103600083015261349981613081565b9050919050565b600060208201905081810360008301526134b9816130a4565b9050919050565b600060208201905081810360008301526134d9816130c7565b9050919050565b600060208201905081810360008301526134f9816130ea565b9050919050565b600060208201905081810360008301526135198161310d565b9050919050565b6000602082019050818103600083015261353981613130565b9050919050565b6000602082019050818103600083015261355981613153565b9050919050565b6000602082019050818103600083015261357981613176565b9050919050565b6000602082019050818103600083015261359981613199565b9050919050565b600060208201905081810360008301526135b9816131bc565b9050919050565b600060208201905081810360008301526135d9816131df565b9050919050565b600060208201905081810360008301526135f981613202565b9050919050565b6000602082019050818103600083015261361981613225565b9050919050565b6000602082019050818103600083015261363981613248565b9050919050565b600060208201905081810360008301526136598161328e565b9050919050565b60006020820190508181036000830152613679816132b1565b9050919050565b600060208201905061369560008301846132d4565b92915050565b60006136a56136b6565b90506136b18282613925565b919050565b6000604051905090565b600067ffffffffffffffff8211156136db576136da613a5d565b5b6136e482613a8c565b9050602081019050919050565b600067ffffffffffffffff82111561370c5761370b613a5d565b5b61371582613a8c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061377b826138a7565b9150613786836138a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137bb576137ba6139d0565b5b828201905092915050565b60006137d1826138a7565b91506137dc836138a7565b9250826137ec576137eb6139ff565b5b828204905092915050565b6000613802826138a7565b915061380d836138a7565b9250828210156138205761381f6139d0565b5b828203905092915050565b600061383682613887565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006138808261382b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138de5780820151818401526020810190506138c3565b838111156138ed576000848401525b50505050565b6000600282049050600182168061390b57607f821691505b6020821081141561391f5761391e613a2e565b5b50919050565b61392e82613a8c565b810181811067ffffffffffffffff8211171561394d5761394c613a5d565b5b80604052505050565b6000613961826138a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613994576139936139d0565b5b600182019050919050565b60006139aa826138a7565b91506139b5836138a7565b9250826139c5576139c46139ff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4f6e6c79204d696e746572000000000000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572204661696c65640000000000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420456e6f7567682042616c616e6365204f6620436f6e74726163740000600082015250565b61401d8161382b565b811461402857600080fd5b50565b6140348161383d565b811461403f57600080fd5b50565b61404b81613849565b811461405657600080fd5b50565b61406281613875565b811461406d57600080fd5b50565b614079816138a7565b811461408457600080fd5b5056fea2646970667358221220bb688f93a5ab4bc489a9a10058b93a1955fd679fc9b36ce8c7ed86dad1d12ab264736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6d6574612e6561702e77336c6f636b2e696f2f6f776e6572732f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003968747470733a2f2f6d6574612e6561702e77336c6f636b2e696f2f636f6e7472616374732f77336c6f636b4541504f776e657273436c75622f00000000000000

Deployed Bytecode

0x6080604052600436106101e75760003560e01c8063715018a611610102578063b88d4fde11610095578063d547cfb711610064578063d547cfb7146106be578063e8a3d485146106e9578063e985e9c514610714578063f2fde38b14610751576101ee565b8063b88d4fde14610604578063c87b56dd1461062d578063cd7c03261461066a578063d26ea6c014610695576101ee565b806395d89b41116100d157806395d89b411461054a578063a22cb46514610575578063a3106b951461059e578063a6064ab0146105c7576101ee565b8063715018a6146104c85780638456cb59146104df5780638da5cb5b146104f6578063938e3d7b14610521576101ee565b80633ccfd60b1161017a5780635c975abb116101495780635c975abb146103fa5780636190e3a8146104255780636352211e1461044e57806370a082311461048b576101ee565b80633ccfd60b146103665780633f4ba83a1461037d57806342842e0e146103945780634f558e79146103bd576101ee565b806318160ddd116101b657806318160ddd146102be57806323b872dd146102e957806330176e131461031257806334d722c91461033b576101ee565b806301ffc9a7146101f057806306fdde031461022d578063081812fc14610258578063095ea7b314610295576101ee565b366101ee57005b005b3480156101fc57600080fd5b5061021760048036038101906102129190612dba565b61077a565b6040516102249190613383565b60405180910390f35b34801561023957600080fd5b5061024261085c565b60405161024f919061339e565b60405180910390f35b34801561026457600080fd5b5061027f600480360381019061027a9190612e76565b6108ee565b60405161028c919061331c565b60405180910390f35b3480156102a157600080fd5b506102bc60048036038101906102b79190612d7e565b610973565b005b3480156102ca57600080fd5b506102d3610a8b565b6040516102e09190613680565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190612c78565b610aa8565b005b34801561031e57600080fd5b5061033960048036038101906103349190612e35565b610b08565b005b34801561034757600080fd5b50610350610bd5565b60405161035d919061331c565b60405180910390f35b34801561037257600080fd5b5061037b610bfb565b005b34801561038957600080fd5b50610392610db3565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190612c78565b610e39565b005b3480156103c957600080fd5b506103e460048036038101906103df9190612e76565b610e59565b6040516103f19190613383565b60405180910390f35b34801561040657600080fd5b5061040f610e6b565b60405161041c9190613383565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190612e9f565b610e82565b005b34801561045a57600080fd5b5061047560048036038101906104709190612e76565b610f92565b604051610482919061331c565b60405180910390f35b34801561049757600080fd5b506104b260048036038101906104ad9190612c13565b611044565b6040516104bf9190613680565b60405180910390f35b3480156104d457600080fd5b506104dd6110fc565b005b3480156104eb57600080fd5b506104f4611184565b005b34801561050257600080fd5b5061050b61120a565b604051610518919061331c565b60405180910390f35b34801561052d57600080fd5b5061054860048036038101906105439190612e35565b611234565b005b34801561055657600080fd5b5061055f611301565b60405161056c919061339e565b60405180910390f35b34801561058157600080fd5b5061059c60048036038101906105979190612d42565b611393565b005b3480156105aa57600080fd5b506105c560048036038101906105c09190612c13565b6113a9565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190612e76565b6114ac565b6040516105fb9190613680565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190612cc7565b6114c4565b005b34801561063957600080fd5b50610654600480360381019061064f9190612e76565b611526565b604051610661919061339e565b60405180910390f35b34801561067657600080fd5b5061067f6115cd565b60405161068c919061331c565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612c13565b6115f3565b005b3480156106ca57600080fd5b506106d36116f6565b6040516106e0919061339e565b60405180910390f35b3480156106f557600080fd5b506106fe611784565b60405161070b919061339e565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190612c3c565b611812565b6040516107489190613383565b60405180910390f35b34801561075d57600080fd5b5061077860048036038101906107739190612c13565b611914565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610855575061085482611a22565b5b9050919050565b60606000805461086b906138f3565b80601f0160208091040260200160405190810160405280929190818152602001828054610897906138f3565b80156108e45780601f106108b9576101008083540402835291602001916108e4565b820191906000526020600020905b8154815290600101906020018083116108c757829003601f168201915b5050505050905090565b60006108f982611a8c565b610938576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092f906135a0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097e82610f92565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e690613600565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a0e611af8565b73ffffffffffffffffffffffffffffffffffffffff161480610a3d5750610a3c81610a37611af8565b611812565b5b610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390613500565b60405180910390fd5b610a868383611b00565b505050565b60006001610a99600c611bb9565b610aa391906137f7565b905090565b610ab9610ab3611af8565b82611bc7565b610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef90613640565b60405180910390fd5b610b03838383611ca5565b505050565b610b10611af8565b73ffffffffffffffffffffffffffffffffffffffff16610b2e61120a565b73ffffffffffffffffffffffffffffffffffffffff1614610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b906135c0565b60405180910390fd5b8060099080519060200190610b9a929190612a22565b507f199e933997358e1789d8b56ea8c551befeb05ce2fe3fe506199f1230f5a591b481604051610bca919061339e565b60405180910390a150565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c03611af8565b73ffffffffffffffffffffffffffffffffffffffff16610c2161120a565b73ffffffffffffffffffffffffffffffffffffffff1614610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e906135c0565b60405180910390fd5b60004711610cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb190613660565b60405180910390fd5b6000610cc461120a565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ce790613307565b60006040518083038185875af1925050503d8060008114610d24576040519150601f19603f3d011682016040523d82523d6000602084013e610d29565b606091505b5050905080610d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6490613620565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167ff67611512e0a2d90c96fd3f08dca4971bc45fba9dc679eabe839a32abbe58a8e60405160405180910390a250565b610dbb611af8565b73ffffffffffffffffffffffffffffffffffffffff16610dd961120a565b73ffffffffffffffffffffffffffffffffffffffff1614610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e26906135c0565b60405180910390fd5b610e37611f0c565b565b610e54838383604051806020016040528060008152506114c4565b505050565b6000610e6482611a8c565b9050919050565b6000600660149054906101000a900460ff16905090565b610e8a610e6b565b15610eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec1906134e0565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f0b611af8565b73ffffffffffffffffffffffffffffffffffffffff1614610f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5890613520565b60405180910390fd5b610f6b8184611fae565b610f75600c611a0c565b81600b600085815260200190815260200160002081905550505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561103b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103290613560565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90613540565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611104611af8565b73ffffffffffffffffffffffffffffffffffffffff1661112261120a565b73ffffffffffffffffffffffffffffffffffffffff1614611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f906135c0565b60405180910390fd5b6111826000611fcc565b565b61118c611af8565b73ffffffffffffffffffffffffffffffffffffffff166111aa61120a565b73ffffffffffffffffffffffffffffffffffffffff1614611200576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f7906135c0565b60405180910390fd5b611208612092565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61123c611af8565b73ffffffffffffffffffffffffffffffffffffffff1661125a61120a565b73ffffffffffffffffffffffffffffffffffffffff16146112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a7906135c0565b60405180910390fd5b80600a90805190602001906112c6929190612a22565b507f5ca9f750836b0b7efdace104f07b5c9f0df0650c0fd24f5163e99044ae36ea52816040516112f6919061339e565b60405180910390a150565b606060018054611310906138f3565b80601f016020809104026020016040519081016040528092919081815260200182805461133c906138f3565b80156113895780601f1061135e57610100808354040283529160200191611389565b820191906000526020600020905b81548152906001019060200180831161136c57829003601f168201915b5050505050905090565b6113a561139e611af8565b8383612135565b5050565b6113b1611af8565b73ffffffffffffffffffffffffffffffffffffffff166113cf61120a565b73ffffffffffffffffffffffffffffffffffffffff1614611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c906135c0565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f3837b3499de3708015c6500ef8f4674b59400c221c3941276e38d1d5cb560e1260405160405180910390a250565b600b6020528060005260406000206000915090505481565b6114d56114cf611af8565b83611bc7565b611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90613640565b60405180910390fd5b611520848484846122a2565b50505050565b606061153182611a8c565b611570576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611567906135e0565b60405180910390fd5b600061157a6122fe565b9050600081511161159a57604051806020016040528060008152506115c5565b806115a484612390565b6040516020016115b59291906132e3565b6040516020818303038152906040525b915050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115fb611af8565b73ffffffffffffffffffffffffffffffffffffffff1661161961120a565b73ffffffffffffffffffffffffffffffffffffffff161461166f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611666906135c0565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f191f22b6f37d18fc193c636df441fbe362909a26338c46a59122134ba99d91e860405160405180910390a250565b60098054611703906138f3565b80601f016020809104026020016040519081016040528092919081815260200182805461172f906138f3565b801561177c5780601f106117515761010080835404028352916020019161177c565b820191906000526020600020905b81548152906001019060200180831161175f57829003601f168201915b505050505081565b600a8054611791906138f3565b80601f01602080910402602001604051908101604052809291908181526020018280546117bd906138f3565b801561180a5780601f106117df5761010080835404028352916020019161180a565b820191906000526020600020905b8154815290600101906020018083116117ed57829003601f168201915b505050505081565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161188a919061331c565b60206040518083038186803b1580156118a257600080fd5b505afa1580156118b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118da9190612e0c565b73ffffffffffffffffffffffffffffffffffffffff16141561190057600191505061190e565b61190a848461253d565b9150505b92915050565b61191c611af8565b73ffffffffffffffffffffffffffffffffffffffff1661193a61120a565b73ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611987906135c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790613420565b60405180910390fd5b611a0981611fcc565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b7383610f92565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611bd282611a8c565b611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c08906134c0565b60405180910390fd5b6000611c1c83610f92565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c8b57508373ffffffffffffffffffffffffffffffffffffffff16611c73846108ee565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c9c5750611c9b8185611812565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cc582610f92565b73ffffffffffffffffffffffffffffffffffffffff1614611d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1290613440565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8290613480565b60405180910390fd5b611d968383836125d1565b611da1600082611b00565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df191906137f7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e489190613770565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f07838383612629565b505050565b611f14610e6b565b611f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4a906133e0565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f97611af8565b604051611fa4919061331c565b60405180910390a1565b611fc882826040518060200160405280600081525061262e565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61209a610e6b565b156120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d1906134e0565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861211e611af8565b60405161212b919061331c565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219b906134a0565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122959190613383565b60405180910390a3505050565b6122ad848484611ca5565b6122b984848484612689565b6122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef90613400565b60405180910390fd5b50505050565b60606009805461230d906138f3565b80601f0160208091040260200160405190810160405280929190818152602001828054612339906138f3565b80156123865780601f1061235b57610100808354040283529160200191612386565b820191906000526020600020905b81548152906001019060200180831161236957829003601f168201915b5050505050905090565b606060008214156123d8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612538565b600082905060005b6000821461240a5780806123f390613956565b915050600a8261240391906137c6565b91506123e0565b60008167ffffffffffffffff81111561244c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561247e5781602001600182028036833780820191505090505b5090505b600085146125315760018261249791906137f7565b9150600a856124a6919061399f565b60306124b29190613770565b60f81b8183815181106124ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561252a91906137c6565b9450612482565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125dc838383612820565b6125e4610e6b565b15612624576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261b906133c0565b60405180910390fd5b505050565b505050565b6126388383612825565b6126456000848484612689565b612684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267b90613400565b60405180910390fd5b505050565b60006126aa8473ffffffffffffffffffffffffffffffffffffffff166129ff565b15612813578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126d3611af8565b8786866040518563ffffffff1660e01b81526004016126f59493929190613337565b602060405180830381600087803b15801561270f57600080fd5b505af192505050801561274057506040513d601f19601f8201168201806040525081019061273d9190612de3565b60015b6127c3573d8060008114612770576040519150601f19603f3d011682016040523d82523d6000602084013e612775565b606091505b506000815114156127bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b290613400565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612818565b600190505b949350505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288c90613580565b60405180910390fd5b61289e81611a8c565b156128de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d590613460565b60405180910390fd5b6128ea600083836125d1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293a9190613770565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129fb60008383612629565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612a2e906138f3565b90600052602060002090601f016020900481019282612a505760008555612a97565b82601f10612a6957805160ff1916838001178555612a97565b82800160010185558215612a97579182015b82811115612a96578251825591602001919060010190612a7b565b5b509050612aa49190612aa8565b5090565b5b80821115612ac1576000816000905550600101612aa9565b5090565b6000612ad8612ad3846136c0565b61369b565b905082815260208101848484011115612af057600080fd5b612afb8482856138b1565b509392505050565b6000612b16612b11846136f1565b61369b565b905082815260208101848484011115612b2e57600080fd5b612b398482856138b1565b509392505050565b600081359050612b5081614014565b92915050565b600081359050612b658161402b565b92915050565b600081359050612b7a81614042565b92915050565b600081519050612b8f81614042565b92915050565b600082601f830112612ba657600080fd5b8135612bb6848260208601612ac5565b91505092915050565b600081519050612bce81614059565b92915050565b600082601f830112612be557600080fd5b8135612bf5848260208601612b03565b91505092915050565b600081359050612c0d81614070565b92915050565b600060208284031215612c2557600080fd5b6000612c3384828501612b41565b91505092915050565b60008060408385031215612c4f57600080fd5b6000612c5d85828601612b41565b9250506020612c6e85828601612b41565b9150509250929050565b600080600060608486031215612c8d57600080fd5b6000612c9b86828701612b41565b9350506020612cac86828701612b41565b9250506040612cbd86828701612bfe565b9150509250925092565b60008060008060808587031215612cdd57600080fd5b6000612ceb87828801612b41565b9450506020612cfc87828801612b41565b9350506040612d0d87828801612bfe565b925050606085013567ffffffffffffffff811115612d2a57600080fd5b612d3687828801612b95565b91505092959194509250565b60008060408385031215612d5557600080fd5b6000612d6385828601612b41565b9250506020612d7485828601612b56565b9150509250929050565b60008060408385031215612d9157600080fd5b6000612d9f85828601612b41565b9250506020612db085828601612bfe565b9150509250929050565b600060208284031215612dcc57600080fd5b6000612dda84828501612b6b565b91505092915050565b600060208284031215612df557600080fd5b6000612e0384828501612b80565b91505092915050565b600060208284031215612e1e57600080fd5b6000612e2c84828501612bbf565b91505092915050565b600060208284031215612e4757600080fd5b600082013567ffffffffffffffff811115612e6157600080fd5b612e6d84828501612bd4565b91505092915050565b600060208284031215612e8857600080fd5b6000612e9684828501612bfe565b91505092915050565b600080600060608486031215612eb457600080fd5b6000612ec286828701612bfe565b9350506020612ed386828701612bfe565b9250506040612ee486828701612b41565b9150509250925092565b612ef78161382b565b82525050565b612f068161383d565b82525050565b6000612f1782613722565b612f218185613738565b9350612f318185602086016138c0565b612f3a81613a8c565b840191505092915050565b6000612f508261372d565b612f5a8185613754565b9350612f6a8185602086016138c0565b612f7381613a8c565b840191505092915050565b6000612f898261372d565b612f938185613765565b9350612fa38185602086016138c0565b80840191505092915050565b6000612fbc602b83613754565b9150612fc782613a9d565b604082019050919050565b6000612fdf601483613754565b9150612fea82613aec565b602082019050919050565b6000613002603283613754565b915061300d82613b15565b604082019050919050565b6000613025602683613754565b915061303082613b64565b604082019050919050565b6000613048602583613754565b915061305382613bb3565b604082019050919050565b600061306b601c83613754565b915061307682613c02565b602082019050919050565b600061308e602483613754565b915061309982613c2b565b604082019050919050565b60006130b1601983613754565b91506130bc82613c7a565b602082019050919050565b60006130d4602c83613754565b91506130df82613ca3565b604082019050919050565b60006130f7601083613754565b915061310282613cf2565b602082019050919050565b600061311a603883613754565b915061312582613d1b565b604082019050919050565b600061313d600b83613754565b915061314882613d6a565b602082019050919050565b6000613160602a83613754565b915061316b82613d93565b604082019050919050565b6000613183602983613754565b915061318e82613de2565b604082019050919050565b60006131a6602083613754565b91506131b182613e31565b602082019050919050565b60006131c9602c83613754565b91506131d482613e5a565b604082019050919050565b60006131ec602083613754565b91506131f782613ea9565b602082019050919050565b600061320f602f83613754565b915061321a82613ed2565b604082019050919050565b6000613232602183613754565b915061323d82613f21565b604082019050919050565b6000613255600f83613754565b915061326082613f70565b602082019050919050565b6000613278600083613749565b915061328382613f99565b600082019050919050565b600061329b603183613754565b91506132a682613f9c565b604082019050919050565b60006132be601e83613754565b91506132c982613feb565b602082019050919050565b6132dd816138a7565b82525050565b60006132ef8285612f7e565b91506132fb8284612f7e565b91508190509392505050565b60006133128261326b565b9150819050919050565b60006020820190506133316000830184612eee565b92915050565b600060808201905061334c6000830187612eee565b6133596020830186612eee565b61336660408301856132d4565b81810360608301526133788184612f0c565b905095945050505050565b60006020820190506133986000830184612efd565b92915050565b600060208201905081810360008301526133b88184612f45565b905092915050565b600060208201905081810360008301526133d981612faf565b9050919050565b600060208201905081810360008301526133f981612fd2565b9050919050565b6000602082019050818103600083015261341981612ff5565b9050919050565b6000602082019050818103600083015261343981613018565b9050919050565b600060208201905081810360008301526134598161303b565b9050919050565b600060208201905081810360008301526134798161305e565b9050919050565b6000602082019050818103600083015261349981613081565b9050919050565b600060208201905081810360008301526134b9816130a4565b9050919050565b600060208201905081810360008301526134d9816130c7565b9050919050565b600060208201905081810360008301526134f9816130ea565b9050919050565b600060208201905081810360008301526135198161310d565b9050919050565b6000602082019050818103600083015261353981613130565b9050919050565b6000602082019050818103600083015261355981613153565b9050919050565b6000602082019050818103600083015261357981613176565b9050919050565b6000602082019050818103600083015261359981613199565b9050919050565b600060208201905081810360008301526135b9816131bc565b9050919050565b600060208201905081810360008301526135d9816131df565b9050919050565b600060208201905081810360008301526135f981613202565b9050919050565b6000602082019050818103600083015261361981613225565b9050919050565b6000602082019050818103600083015261363981613248565b9050919050565b600060208201905081810360008301526136598161328e565b9050919050565b60006020820190508181036000830152613679816132b1565b9050919050565b600060208201905061369560008301846132d4565b92915050565b60006136a56136b6565b90506136b18282613925565b919050565b6000604051905090565b600067ffffffffffffffff8211156136db576136da613a5d565b5b6136e482613a8c565b9050602081019050919050565b600067ffffffffffffffff82111561370c5761370b613a5d565b5b61371582613a8c565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061377b826138a7565b9150613786836138a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137bb576137ba6139d0565b5b828201905092915050565b60006137d1826138a7565b91506137dc836138a7565b9250826137ec576137eb6139ff565b5b828204905092915050565b6000613802826138a7565b915061380d836138a7565b9250828210156138205761381f6139d0565b5b828203905092915050565b600061383682613887565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006138808261382b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138de5780820151818401526020810190506138c3565b838111156138ed576000848401525b50505050565b6000600282049050600182168061390b57607f821691505b6020821081141561391f5761391e613a2e565b5b50919050565b61392e82613a8c565b810181811067ffffffffffffffff8211171561394d5761394c613a5d565b5b80604052505050565b6000613961826138a7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613994576139936139d0565b5b600182019050919050565b60006139aa826138a7565b91506139b5836138a7565b9250826139c5576139c46139ff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4f6e6c79204d696e746572000000000000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572204661696c65640000000000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420456e6f7567682042616c616e6365204f6620436f6e74726163740000600082015250565b61401d8161382b565b811461402857600080fd5b50565b6140348161383d565b811461403f57600080fd5b50565b61404b81613849565b811461405657600080fd5b50565b61406281613875565b811461406d57600080fd5b50565b614079816138a7565b811461408457600080fd5b5056fea2646970667358221220bb688f93a5ab4bc489a9a10058b93a1955fd679fc9b36ce8c7ed86dad1d12ab264736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f6d6574612e6561702e77336c6f636b2e696f2f6f776e6572732f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003968747470733a2f2f6d6574612e6561702e77336c6f636b2e696f2f636f6e7472616374732f77336c6f636b4541504f776e657273436c75622f00000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): https://meta.eap.w3lock.io/owners/
Arg [1] : _contractURI (string): https://meta.eap.w3lock.io/contracts/w3lockEAPOwnersClub/
Arg [2] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [4] : 68747470733a2f2f6d6574612e6561702e77336c6f636b2e696f2f6f776e6572
Arg [5] : 732f000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000039
Arg [7] : 68747470733a2f2f6d6574612e6561702e77336c6f636b2e696f2f636f6e7472
Arg [8] : 616374732f77336c6f636b4541504f776e657273436c75622f00000000000000


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.