Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
8644
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PhunkyApeYachtClub
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract PhunkyApeYachtClub is ERC721, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIds; using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; uint256 _mintPrice = 42069000000000000; // Base URI string private _baseURIextended = "ipfs://QmZnBLTvnUpTjtQq5S6yRuCRjLBWzpKDEXwPwFRFus3kub/"; uint256 totalMinted; // treasury payouts address public staffOne = msg.sender; address public staffTwo = 0x7EC1939150F1CA31800280ae89E31fef72B669de; // partner payouts address public partnerOne = 0x4c677D4Fe4eC68a5F2C882CeC8a4c836ABca0832; address public partnerTwo = 0x57B2b690be38DCfC83Da0025355bB27A3858010e; address public partnerThree = 0x379c22629c3aEE7C3958c396fD1Bf5bbd20f2781; constructor(string memory _name, string memory _symbol) ERC721(_name, _symbol) {} function setBaseURI(string memory baseURI_) external onlyOwner { _baseURIextended = baseURI_; } function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require( _exists(tokenId), "ERC721Metadata: URI set of nonexistent token" ); _tokenURIs[tokenId] = _tokenURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, tokenId.toString(), ".json")); } function setMintPrice(uint256 price) external onlyOwner { _mintPrice = price; } function mint(address _to, uint256 amount) external payable { require(amount <= 30); require(amount > 0); require(_tokenIds.current() + amount <= 9999); require(msg.value == _mintPrice * amount); payable(staffOne).transfer(_getStaffPayout()); payable(staffTwo).transfer(_getStaffPayout()); payable(partnerOne).transfer(_getPartnerPayout()); payable(partnerTwo).transfer(_getPartnerPayout()); payable(partnerThree).transfer(_getPartnerPayout()); for (uint256 i = 0; i < amount; i++) { _mint(_to, _tokenIds.current()); _tokenIds.increment(); totalMinted++; } } function freeMint(address _to, uint256 amount) external { require(amount >= 1); // only valid for first 300 require(amount + _tokenIds.current() <= 299); for (uint256 i = 0; i < amount; i++) { _mint(_to, _tokenIds.current()); _tokenIds.increment(); totalMinted++; } } function reserve(address _to, uint256 amount) external { require(msg.sender == staffOne || msg.sender == staffTwo); require(_tokenIds.current() + amount <= 9999); for (uint256 i = 0; i < amount; i++) { _mint(_to, _tokenIds.current()); _tokenIds.increment(); totalMinted++; } } function getTotalMinted() public view returns (uint256) { return totalMinted; } function _getStaffPayout() internal returns (uint256) { return (msg.value / 100) * 35; } function _getPartnerPayout() internal returns (uint256) { return msg.value / 10; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// 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); } }
// 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; } }
// 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; }
// 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); }
// 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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; } }
// 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); } }
// 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; } }
// 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnerOne","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnerThree","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnerTwo","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"staffOne","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"staffTwo","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"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"}]
Contract Creation Code
608060405266957588590e500060095560405180606001604052806036815260200162003ce060369139600a90805190602001906200004092919062000335565b5033600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737ec1939150f1ca31800280ae89e31fef72b669de600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734c677d4fe4ec68a5f2c882cec8a4c836abca0832600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507357b2b690be38dcfc83da0025355bb27a3858010e600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073379c22629c3aee7c3958c396fd1bf5bbd20f2781601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001e357600080fd5b5060405162003d1638038062003d16833981810160405281019062000209919062000457565b818181600090805190602001906200022392919062000335565b5080600190805190602001906200023c92919062000335565b5050506200025f620002536200026760201b60201c565b6200026f60201b60201c565b5050620005fb565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003439062000567565b90600052602060002090601f016020900481019282620003675760008555620003b3565b82601f106200038257805160ff1916838001178555620003b3565b82800160010185558215620003b3579182015b82811115620003b257825182559160200191906001019062000395565b5b509050620003c29190620003c6565b5090565b5b80821115620003e1576000816000905550600101620003c7565b5090565b6000620003fc620003f684620004fe565b620004ca565b9050828152602081018484840111156200041557600080fd5b6200042284828562000531565b509392505050565b600082601f8301126200043c57600080fd5b81516200044e848260208601620003e5565b91505092915050565b600080604083850312156200046b57600080fd5b600083015167ffffffffffffffff8111156200048657600080fd5b62000494858286016200042a565b925050602083015167ffffffffffffffff811115620004b257600080fd5b620004c0858286016200042a565b9150509250929050565b6000604051905081810181811067ffffffffffffffff82111715620004f457620004f3620005cc565b5b8060405250919050565b600067ffffffffffffffff8211156200051c576200051b620005cc565b5b601f19601f8301169050602081019050919050565b60005b838110156200055157808201518184015260208101905062000534565b8381111562000561576000848401525b50505050565b600060028204905060018216806200058057607f821691505b602082108114156200059757620005966200059d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136d5806200060b6000396000f3fe60806040526004361061019c5760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063cc47a40b11610064578063cc47a40b146105a7578063e985e9c5146105d0578063f2fde38b1461060d578063f4a0a528146106365761019c565b8063b88d4fde14610516578063c720292d1461053f578063c87b56dd1461056a5761019c565b8063920437f0116100c6578063920437f01461046e57806395d89b41146104995780639883566e146104c4578063a22cb465146104ed5761019c565b8063715018a614610401578063715806a4146104185780638da5cb5b146104435761019c565b806337c017c01161015957806355f804b31161013357806355f804b31461033357806362f98f371461035c5780636352211e1461038757806370a08231146103c45761019c565b806337c017c0146102c357806340c10f19146102ee57806342842e0e1461030a5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780630ca1c5c91461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612785565b61065f565b6040516101d59190612fd3565b60405180910390f35b3480156101ea57600080fd5b506101f3610741565b6040516102009190612fee565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612818565b6107d3565b60405161023d9190612f6c565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612749565b610858565b005b34801561027b57600080fd5b50610284610970565b6040516102919190613210565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612643565b61097a565b005b3480156102cf57600080fd5b506102d86109da565b6040516102e59190612f6c565b60405180910390f35b61030860048036038101906103039190612749565b610a00565b005b34801561031657600080fd5b50610331600480360381019061032c9190612643565b610cdf565b005b34801561033f57600080fd5b5061035a600480360381019061035591906127d7565b610cff565b005b34801561036857600080fd5b50610371610d95565b60405161037e9190612f6c565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190612818565b610dbb565b6040516103bb9190612f6c565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906125de565b610e6d565b6040516103f89190613210565b60405180910390f35b34801561040d57600080fd5b50610416610f25565b005b34801561042457600080fd5b5061042d610fad565b60405161043a9190612f6c565b60405180910390f35b34801561044f57600080fd5b50610458610fd3565b6040516104659190612f6c565b60405180910390f35b34801561047a57600080fd5b50610483610ffd565b6040516104909190612f6c565b60405180910390f35b3480156104a557600080fd5b506104ae611023565b6040516104bb9190612fee565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190612749565b6110b5565b005b3480156104f957600080fd5b50610514600480360381019061050f919061270d565b61113e565b005b34801561052257600080fd5b5061053d60048036038101906105389190612692565b611154565b005b34801561054b57600080fd5b506105546111b6565b6040516105619190612f6c565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190612818565b6111dc565b60405161059e9190612fee565b60405180910390f35b3480156105b357600080fd5b506105ce60048036038101906105c99190612749565b61134f565b005b3480156105dc57600080fd5b506105f760048036038101906105f29190612607565b61147c565b6040516106049190612fd3565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f91906125de565b611510565b005b34801561064257600080fd5b5061065d60048036038101906106589190612818565b611608565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073a57506107398261168e565b5b9050919050565b606060008054610750906134ca565b80601f016020809104026020016040519081016040528092919081815260200182805461077c906134ca565b80156107c95780601f1061079e576101008083540402835291602001916107c9565b820191906000526020600020905b8154815290600101906020018083116107ac57829003601f168201915b5050505050905090565b60006107de826116f8565b61081d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081490613150565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086382610dbb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cb906131d0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f3611764565b73ffffffffffffffffffffffffffffffffffffffff16148061092257506109218161091c611764565b61147c565b5b610961576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610958906130d0565b60405180910390fd5b61096b838361176c565b505050565b6000600b54905090565b61098b610985611764565b82611825565b6109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c1906131f0565b60405180910390fd5b6109d5838383611903565b505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601e811115610a0e57600080fd5b60008111610a1b57600080fd5b61270f81610a296007611b5f565b610a3391906132ff565b1115610a3e57600080fd5b80600954610a4c9190613386565b3414610a5757600080fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc610a9b611b6d565b9081150290604051600060405180830381858888f19350505050158015610ac6573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc610b0b611b6d565b9081150290604051600060405180830381858888f19350505050158015610b36573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc610b7b611b8d565b9081150290604051600060405180830381858888f19350505050158015610ba6573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc610beb611b8d565b9081150290604051600060405180830381858888f19350505050158015610c16573d6000803e3d6000fd5b50601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc610c5b611b8d565b9081150290604051600060405180830381858888f19350505050158015610c86573d6000803e3d6000fd5b5060005b81811015610cda57610ca583610ca06007611b5f565b611ba1565b610caf6007611d6f565b600b6000815480929190610cc2906134fc565b91905055508080610cd2906134fc565b915050610c8a565b505050565b610cfa83838360405180602001604052806000815250611154565b505050565b610d07611764565b73ffffffffffffffffffffffffffffffffffffffff16610d25610fd3565b73ffffffffffffffffffffffffffffffffffffffff1614610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290613170565b60405180910390fd5b80600a9080519060200190610d91929190612402565b5050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90613110565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed5906130f0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f2d611764565b73ffffffffffffffffffffffffffffffffffffffff16610f4b610fd3565b73ffffffffffffffffffffffffffffffffffffffff1614610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9890613170565b60405180910390fd5b610fab6000611d85565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054611032906134ca565b80601f016020809104026020016040519081016040528092919081815260200182805461105e906134ca565b80156110ab5780601f10611080576101008083540402835291602001916110ab565b820191906000526020600020905b81548152906001019060200180831161108e57829003601f168201915b5050505050905090565b60018110156110c357600080fd5b61012b6110d06007611b5f565b826110db91906132ff565b11156110e657600080fd5b60005b8181101561113957611104836110ff6007611b5f565b611ba1565b61110e6007611d6f565b600b6000815480929190611121906134fc565b91905055508080611131906134fc565b9150506110e9565b505050565b611150611149611764565b8383611e4b565b5050565b61116561115f611764565b83611825565b6111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b906131f0565b60405180910390fd5b6111b084848484611fb8565b50505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606111e7826116f8565b611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d906131b0565b60405180910390fd5b6000600860008481526020019081526020016000208054611246906134ca565b80601f0160208091040260200160405190810160405280929190818152602001828054611272906134ca565b80156112bf5780601f10611294576101008083540402835291602001916112bf565b820191906000526020600020905b8154815290600101906020018083116112a257829003601f168201915b5050505050905060006112d0612014565b90506000815114156112e657819250505061134a565b60008251111561131b578082604051602001611303929190612f19565b6040516020818303038152906040529250505061134a565b80611325856120a6565b604051602001611336929190612f3d565b604051602081830303815290604052925050505b919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806113f85750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61140157600080fd5b61270f8161140f6007611b5f565b61141991906132ff565b111561142457600080fd5b60005b81811015611477576114428361143d6007611b5f565b611ba1565b61144c6007611d6f565b600b600081548092919061145f906134fc565b9190505550808061146f906134fc565b915050611427565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611518611764565b73ffffffffffffffffffffffffffffffffffffffff16611536610fd3565b73ffffffffffffffffffffffffffffffffffffffff161461158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390613170565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f390613030565b60405180910390fd5b61160581611d85565b50565b611610611764565b73ffffffffffffffffffffffffffffffffffffffff1661162e610fd3565b73ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90613170565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117df83610dbb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611830826116f8565b61186f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611866906130b0565b60405180910390fd5b600061187a83610dbb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118e957508373ffffffffffffffffffffffffffffffffffffffff166118d1846107d3565b73ffffffffffffffffffffffffffffffffffffffff16145b806118fa57506118f9818561147c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661192382610dbb565b73ffffffffffffffffffffffffffffffffffffffff1614611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197090613190565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090613070565b60405180910390fd5b6119f4838383612253565b6119ff60008261176c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4f91906133e0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aa691906132ff565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b60006023606434611b7e9190613355565b611b889190613386565b905090565b6000600a34611b9c9190613355565b905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0890613130565b60405180910390fd5b611c1a816116f8565b15611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613050565b60405180910390fd5b611c6660008383612253565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb691906132ff565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6001816000016000828254019250508190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb190613090565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fab9190612fd3565b60405180910390a3505050565b611fc3848484611903565b611fcf84848484612258565b61200e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200590613010565b60405180910390fd5b50505050565b6060600a8054612023906134ca565b80601f016020809104026020016040519081016040528092919081815260200182805461204f906134ca565b801561209c5780601f106120715761010080835404028352916020019161209c565b820191906000526020600020905b81548152906001019060200180831161207f57829003601f168201915b5050505050905090565b606060008214156120ee576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061224e565b600082905060005b60008214612120578080612109906134fc565b915050600a826121199190613355565b91506120f6565b60008167ffffffffffffffff811115612162577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121945781602001600182028036833780820191505090505b5090505b60008514612247576001826121ad91906133e0565b9150600a856121bc9190613545565b60306121c891906132ff565b60f81b818381518110612204577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122409190613355565b9450612198565b8093505050505b919050565b505050565b60006122798473ffffffffffffffffffffffffffffffffffffffff166123ef565b156123e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122a2611764565b8786866040518563ffffffff1660e01b81526004016122c49493929190612f87565b602060405180830381600087803b1580156122de57600080fd5b505af192505050801561230f57506040513d601f19601f8201168201806040525081019061230c91906127ae565b60015b612392573d806000811461233f576040519150601f19603f3d011682016040523d82523d6000602084013e612344565b606091505b5060008151141561238a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238190613010565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123e7565b600190505b949350505050565b600080823b905060008111915050919050565b82805461240e906134ca565b90600052602060002090601f0160209004810192826124305760008555612477565b82601f1061244957805160ff1916838001178555612477565b82800160010185558215612477579182015b8281111561247657825182559160200191906001019061245b565b5b5090506124849190612488565b5090565b5b808211156124a1576000816000905550600101612489565b5090565b60006124b86124b38461325c565b61322b565b9050828152602081018484840111156124d057600080fd5b6124db848285613488565b509392505050565b60006124f66124f18461328c565b61322b565b90508281526020810184848401111561250e57600080fd5b612519848285613488565b509392505050565b60008135905061253081613643565b92915050565b6000813590506125458161365a565b92915050565b60008135905061255a81613671565b92915050565b60008151905061256f81613671565b92915050565b600082601f83011261258657600080fd5b81356125968482602086016124a5565b91505092915050565b600082601f8301126125b057600080fd5b81356125c08482602086016124e3565b91505092915050565b6000813590506125d881613688565b92915050565b6000602082840312156125f057600080fd5b60006125fe84828501612521565b91505092915050565b6000806040838503121561261a57600080fd5b600061262885828601612521565b925050602061263985828601612521565b9150509250929050565b60008060006060848603121561265857600080fd5b600061266686828701612521565b935050602061267786828701612521565b9250506040612688868287016125c9565b9150509250925092565b600080600080608085870312156126a857600080fd5b60006126b687828801612521565b94505060206126c787828801612521565b93505060406126d8878288016125c9565b925050606085013567ffffffffffffffff8111156126f557600080fd5b61270187828801612575565b91505092959194509250565b6000806040838503121561272057600080fd5b600061272e85828601612521565b925050602061273f85828601612536565b9150509250929050565b6000806040838503121561275c57600080fd5b600061276a85828601612521565b925050602061277b858286016125c9565b9150509250929050565b60006020828403121561279757600080fd5b60006127a58482850161254b565b91505092915050565b6000602082840312156127c057600080fd5b60006127ce84828501612560565b91505092915050565b6000602082840312156127e957600080fd5b600082013567ffffffffffffffff81111561280357600080fd5b61280f8482850161259f565b91505092915050565b60006020828403121561282a57600080fd5b6000612838848285016125c9565b91505092915050565b61284a81613414565b82525050565b61285981613426565b82525050565b600061286a826132bc565b61287481856132d2565b9350612884818560208601613497565b61288d81613632565b840191505092915050565b60006128a3826132c7565b6128ad81856132e3565b93506128bd818560208601613497565b6128c681613632565b840191505092915050565b60006128dc826132c7565b6128e681856132f4565b93506128f6818560208601613497565b80840191505092915050565b600061290f6032836132e3565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006129756026836132e3565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129db601c836132e3565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612a1b6024836132e3565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a816019836132e3565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612ac1602c836132e3565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612b276038836132e3565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612b8d602a836132e3565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612bf36029836132e3565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c596020836132e3565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000612c99602c836132e3565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612cff6005836132f4565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000612d3f6020836132e3565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612d7f6029836132e3565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612de5602f836132e3565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000612e4b6021836132e3565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612eb16031836132e3565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b612f138161347e565b82525050565b6000612f2582856128d1565b9150612f3182846128d1565b91508190509392505050565b6000612f4982856128d1565b9150612f5582846128d1565b9150612f6082612cf2565b91508190509392505050565b6000602082019050612f816000830184612841565b92915050565b6000608082019050612f9c6000830187612841565b612fa96020830186612841565b612fb66040830185612f0a565b8181036060830152612fc8818461285f565b905095945050505050565b6000602082019050612fe86000830184612850565b92915050565b600060208201905081810360008301526130088184612898565b905092915050565b6000602082019050818103600083015261302981612902565b9050919050565b6000602082019050818103600083015261304981612968565b9050919050565b60006020820190508181036000830152613069816129ce565b9050919050565b6000602082019050818103600083015261308981612a0e565b9050919050565b600060208201905081810360008301526130a981612a74565b9050919050565b600060208201905081810360008301526130c981612ab4565b9050919050565b600060208201905081810360008301526130e981612b1a565b9050919050565b6000602082019050818103600083015261310981612b80565b9050919050565b6000602082019050818103600083015261312981612be6565b9050919050565b6000602082019050818103600083015261314981612c4c565b9050919050565b6000602082019050818103600083015261316981612c8c565b9050919050565b6000602082019050818103600083015261318981612d32565b9050919050565b600060208201905081810360008301526131a981612d72565b9050919050565b600060208201905081810360008301526131c981612dd8565b9050919050565b600060208201905081810360008301526131e981612e3e565b9050919050565b6000602082019050818103600083015261320981612ea4565b9050919050565b60006020820190506132256000830184612f0a565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561325257613251613603565b5b8060405250919050565b600067ffffffffffffffff82111561327757613276613603565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156132a7576132a6613603565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061330a8261347e565b91506133158361347e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561334a57613349613576565b5b828201905092915050565b60006133608261347e565b915061336b8361347e565b92508261337b5761337a6135a5565b5b828204905092915050565b60006133918261347e565b915061339c8361347e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133d5576133d4613576565b5b828202905092915050565b60006133eb8261347e565b91506133f68361347e565b92508282101561340957613408613576565b5b828203905092915050565b600061341f8261345e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134b557808201518184015260208101905061349a565b838111156134c4576000848401525b50505050565b600060028204905060018216806134e257607f821691505b602082108114156134f6576134f56135d4565b5b50919050565b60006135078261347e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561353a57613539613576565b5b600182019050919050565b60006135508261347e565b915061355b8361347e565b92508261356b5761356a6135a5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61364c81613414565b811461365757600080fd5b50565b61366381613426565b811461366e57600080fd5b50565b61367a81613432565b811461368557600080fd5b50565b6136918161347e565b811461369c57600080fd5b5056fea2646970667358221220bb21a85de8e3cfb30951cb3ff9ba4aab7bb5e5e24a442cd951257bd70b4e160464736f6c63430008000033697066733a2f2f516d5a6e424c54766e5570546a74517135533679527543526a4c42577a704b4445587750774652467573336b75622f0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000125068756e6b794170655961636874436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045041594300000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061019c5760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063cc47a40b11610064578063cc47a40b146105a7578063e985e9c5146105d0578063f2fde38b1461060d578063f4a0a528146106365761019c565b8063b88d4fde14610516578063c720292d1461053f578063c87b56dd1461056a5761019c565b8063920437f0116100c6578063920437f01461046e57806395d89b41146104995780639883566e146104c4578063a22cb465146104ed5761019c565b8063715018a614610401578063715806a4146104185780638da5cb5b146104435761019c565b806337c017c01161015957806355f804b31161013357806355f804b31461033357806362f98f371461035c5780636352211e1461038757806370a08231146103c45761019c565b806337c017c0146102c357806340c10f19146102ee57806342842e0e1461030a5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780630ca1c5c91461026f57806323b872dd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612785565b61065f565b6040516101d59190612fd3565b60405180910390f35b3480156101ea57600080fd5b506101f3610741565b6040516102009190612fee565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612818565b6107d3565b60405161023d9190612f6c565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612749565b610858565b005b34801561027b57600080fd5b50610284610970565b6040516102919190613210565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190612643565b61097a565b005b3480156102cf57600080fd5b506102d86109da565b6040516102e59190612f6c565b60405180910390f35b61030860048036038101906103039190612749565b610a00565b005b34801561031657600080fd5b50610331600480360381019061032c9190612643565b610cdf565b005b34801561033f57600080fd5b5061035a600480360381019061035591906127d7565b610cff565b005b34801561036857600080fd5b50610371610d95565b60405161037e9190612f6c565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190612818565b610dbb565b6040516103bb9190612f6c565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906125de565b610e6d565b6040516103f89190613210565b60405180910390f35b34801561040d57600080fd5b50610416610f25565b005b34801561042457600080fd5b5061042d610fad565b60405161043a9190612f6c565b60405180910390f35b34801561044f57600080fd5b50610458610fd3565b6040516104659190612f6c565b60405180910390f35b34801561047a57600080fd5b50610483610ffd565b6040516104909190612f6c565b60405180910390f35b3480156104a557600080fd5b506104ae611023565b6040516104bb9190612fee565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190612749565b6110b5565b005b3480156104f957600080fd5b50610514600480360381019061050f919061270d565b61113e565b005b34801561052257600080fd5b5061053d60048036038101906105389190612692565b611154565b005b34801561054b57600080fd5b506105546111b6565b6040516105619190612f6c565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190612818565b6111dc565b60405161059e9190612fee565b60405180910390f35b3480156105b357600080fd5b506105ce60048036038101906105c99190612749565b61134f565b005b3480156105dc57600080fd5b506105f760048036038101906105f29190612607565b61147c565b6040516106049190612fd3565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f91906125de565b611510565b005b34801561064257600080fd5b5061065d60048036038101906106589190612818565b611608565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073a57506107398261168e565b5b9050919050565b606060008054610750906134ca565b80601f016020809104026020016040519081016040528092919081815260200182805461077c906134ca565b80156107c95780601f1061079e576101008083540402835291602001916107c9565b820191906000526020600020905b8154815290600101906020018083116107ac57829003601f168201915b5050505050905090565b60006107de826116f8565b61081d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081490613150565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086382610dbb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cb906131d0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f3611764565b73ffffffffffffffffffffffffffffffffffffffff16148061092257506109218161091c611764565b61147c565b5b610961576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610958906130d0565b60405180910390fd5b61096b838361176c565b505050565b6000600b54905090565b61098b610985611764565b82611825565b6109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c1906131f0565b60405180910390fd5b6109d5838383611903565b505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601e811115610a0e57600080fd5b60008111610a1b57600080fd5b61270f81610a296007611b5f565b610a3391906132ff565b1115610a3e57600080fd5b80600954610a4c9190613386565b3414610a5757600080fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc610a9b611b6d565b9081150290604051600060405180830381858888f19350505050158015610ac6573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc610b0b611b6d565b9081150290604051600060405180830381858888f19350505050158015610b36573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc610b7b611b8d565b9081150290604051600060405180830381858888f19350505050158015610ba6573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc610beb611b8d565b9081150290604051600060405180830381858888f19350505050158015610c16573d6000803e3d6000fd5b50601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc610c5b611b8d565b9081150290604051600060405180830381858888f19350505050158015610c86573d6000803e3d6000fd5b5060005b81811015610cda57610ca583610ca06007611b5f565b611ba1565b610caf6007611d6f565b600b6000815480929190610cc2906134fc565b91905055508080610cd2906134fc565b915050610c8a565b505050565b610cfa83838360405180602001604052806000815250611154565b505050565b610d07611764565b73ffffffffffffffffffffffffffffffffffffffff16610d25610fd3565b73ffffffffffffffffffffffffffffffffffffffff1614610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7290613170565b60405180910390fd5b80600a9080519060200190610d91929190612402565b5050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b90613110565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed5906130f0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f2d611764565b73ffffffffffffffffffffffffffffffffffffffff16610f4b610fd3565b73ffffffffffffffffffffffffffffffffffffffff1614610fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9890613170565b60405180910390fd5b610fab6000611d85565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054611032906134ca565b80601f016020809104026020016040519081016040528092919081815260200182805461105e906134ca565b80156110ab5780601f10611080576101008083540402835291602001916110ab565b820191906000526020600020905b81548152906001019060200180831161108e57829003601f168201915b5050505050905090565b60018110156110c357600080fd5b61012b6110d06007611b5f565b826110db91906132ff565b11156110e657600080fd5b60005b8181101561113957611104836110ff6007611b5f565b611ba1565b61110e6007611d6f565b600b6000815480929190611121906134fc565b91905055508080611131906134fc565b9150506110e9565b505050565b611150611149611764565b8383611e4b565b5050565b61116561115f611764565b83611825565b6111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b906131f0565b60405180910390fd5b6111b084848484611fb8565b50505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606111e7826116f8565b611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d906131b0565b60405180910390fd5b6000600860008481526020019081526020016000208054611246906134ca565b80601f0160208091040260200160405190810160405280929190818152602001828054611272906134ca565b80156112bf5780601f10611294576101008083540402835291602001916112bf565b820191906000526020600020905b8154815290600101906020018083116112a257829003601f168201915b5050505050905060006112d0612014565b90506000815114156112e657819250505061134a565b60008251111561131b578082604051602001611303929190612f19565b6040516020818303038152906040529250505061134a565b80611325856120a6565b604051602001611336929190612f3d565b604051602081830303815290604052925050505b919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806113f85750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61140157600080fd5b61270f8161140f6007611b5f565b61141991906132ff565b111561142457600080fd5b60005b81811015611477576114428361143d6007611b5f565b611ba1565b61144c6007611d6f565b600b600081548092919061145f906134fc565b9190505550808061146f906134fc565b915050611427565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611518611764565b73ffffffffffffffffffffffffffffffffffffffff16611536610fd3565b73ffffffffffffffffffffffffffffffffffffffff161461158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158390613170565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f390613030565b60405180910390fd5b61160581611d85565b50565b611610611764565b73ffffffffffffffffffffffffffffffffffffffff1661162e610fd3565b73ffffffffffffffffffffffffffffffffffffffff1614611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90613170565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166117df83610dbb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611830826116f8565b61186f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611866906130b0565b60405180910390fd5b600061187a83610dbb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118e957508373ffffffffffffffffffffffffffffffffffffffff166118d1846107d3565b73ffffffffffffffffffffffffffffffffffffffff16145b806118fa57506118f9818561147c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661192382610dbb565b73ffffffffffffffffffffffffffffffffffffffff1614611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197090613190565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090613070565b60405180910390fd5b6119f4838383612253565b6119ff60008261176c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4f91906133e0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611aa691906132ff565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b60006023606434611b7e9190613355565b611b889190613386565b905090565b6000600a34611b9c9190613355565b905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0890613130565b60405180910390fd5b611c1a816116f8565b15611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5190613050565b60405180910390fd5b611c6660008383612253565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cb691906132ff565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6001816000016000828254019250508190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb190613090565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fab9190612fd3565b60405180910390a3505050565b611fc3848484611903565b611fcf84848484612258565b61200e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200590613010565b60405180910390fd5b50505050565b6060600a8054612023906134ca565b80601f016020809104026020016040519081016040528092919081815260200182805461204f906134ca565b801561209c5780601f106120715761010080835404028352916020019161209c565b820191906000526020600020905b81548152906001019060200180831161207f57829003601f168201915b5050505050905090565b606060008214156120ee576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061224e565b600082905060005b60008214612120578080612109906134fc565b915050600a826121199190613355565b91506120f6565b60008167ffffffffffffffff811115612162577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121945781602001600182028036833780820191505090505b5090505b60008514612247576001826121ad91906133e0565b9150600a856121bc9190613545565b60306121c891906132ff565b60f81b818381518110612204577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122409190613355565b9450612198565b8093505050505b919050565b505050565b60006122798473ffffffffffffffffffffffffffffffffffffffff166123ef565b156123e2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122a2611764565b8786866040518563ffffffff1660e01b81526004016122c49493929190612f87565b602060405180830381600087803b1580156122de57600080fd5b505af192505050801561230f57506040513d601f19601f8201168201806040525081019061230c91906127ae565b60015b612392573d806000811461233f576040519150601f19603f3d011682016040523d82523d6000602084013e612344565b606091505b5060008151141561238a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238190613010565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506123e7565b600190505b949350505050565b600080823b905060008111915050919050565b82805461240e906134ca565b90600052602060002090601f0160209004810192826124305760008555612477565b82601f1061244957805160ff1916838001178555612477565b82800160010185558215612477579182015b8281111561247657825182559160200191906001019061245b565b5b5090506124849190612488565b5090565b5b808211156124a1576000816000905550600101612489565b5090565b60006124b86124b38461325c565b61322b565b9050828152602081018484840111156124d057600080fd5b6124db848285613488565b509392505050565b60006124f66124f18461328c565b61322b565b90508281526020810184848401111561250e57600080fd5b612519848285613488565b509392505050565b60008135905061253081613643565b92915050565b6000813590506125458161365a565b92915050565b60008135905061255a81613671565b92915050565b60008151905061256f81613671565b92915050565b600082601f83011261258657600080fd5b81356125968482602086016124a5565b91505092915050565b600082601f8301126125b057600080fd5b81356125c08482602086016124e3565b91505092915050565b6000813590506125d881613688565b92915050565b6000602082840312156125f057600080fd5b60006125fe84828501612521565b91505092915050565b6000806040838503121561261a57600080fd5b600061262885828601612521565b925050602061263985828601612521565b9150509250929050565b60008060006060848603121561265857600080fd5b600061266686828701612521565b935050602061267786828701612521565b9250506040612688868287016125c9565b9150509250925092565b600080600080608085870312156126a857600080fd5b60006126b687828801612521565b94505060206126c787828801612521565b93505060406126d8878288016125c9565b925050606085013567ffffffffffffffff8111156126f557600080fd5b61270187828801612575565b91505092959194509250565b6000806040838503121561272057600080fd5b600061272e85828601612521565b925050602061273f85828601612536565b9150509250929050565b6000806040838503121561275c57600080fd5b600061276a85828601612521565b925050602061277b858286016125c9565b9150509250929050565b60006020828403121561279757600080fd5b60006127a58482850161254b565b91505092915050565b6000602082840312156127c057600080fd5b60006127ce84828501612560565b91505092915050565b6000602082840312156127e957600080fd5b600082013567ffffffffffffffff81111561280357600080fd5b61280f8482850161259f565b91505092915050565b60006020828403121561282a57600080fd5b6000612838848285016125c9565b91505092915050565b61284a81613414565b82525050565b61285981613426565b82525050565b600061286a826132bc565b61287481856132d2565b9350612884818560208601613497565b61288d81613632565b840191505092915050565b60006128a3826132c7565b6128ad81856132e3565b93506128bd818560208601613497565b6128c681613632565b840191505092915050565b60006128dc826132c7565b6128e681856132f4565b93506128f6818560208601613497565b80840191505092915050565b600061290f6032836132e3565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006129756026836132e3565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129db601c836132e3565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612a1b6024836132e3565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a816019836132e3565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612ac1602c836132e3565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612b276038836132e3565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000612b8d602a836132e3565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000612bf36029836132e3565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612c596020836132e3565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000612c99602c836132e3565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612cff6005836132f4565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000612d3f6020836132e3565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000612d7f6029836132e3565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612de5602f836132e3565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000612e4b6021836132e3565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612eb16031836132e3565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b612f138161347e565b82525050565b6000612f2582856128d1565b9150612f3182846128d1565b91508190509392505050565b6000612f4982856128d1565b9150612f5582846128d1565b9150612f6082612cf2565b91508190509392505050565b6000602082019050612f816000830184612841565b92915050565b6000608082019050612f9c6000830187612841565b612fa96020830186612841565b612fb66040830185612f0a565b8181036060830152612fc8818461285f565b905095945050505050565b6000602082019050612fe86000830184612850565b92915050565b600060208201905081810360008301526130088184612898565b905092915050565b6000602082019050818103600083015261302981612902565b9050919050565b6000602082019050818103600083015261304981612968565b9050919050565b60006020820190508181036000830152613069816129ce565b9050919050565b6000602082019050818103600083015261308981612a0e565b9050919050565b600060208201905081810360008301526130a981612a74565b9050919050565b600060208201905081810360008301526130c981612ab4565b9050919050565b600060208201905081810360008301526130e981612b1a565b9050919050565b6000602082019050818103600083015261310981612b80565b9050919050565b6000602082019050818103600083015261312981612be6565b9050919050565b6000602082019050818103600083015261314981612c4c565b9050919050565b6000602082019050818103600083015261316981612c8c565b9050919050565b6000602082019050818103600083015261318981612d32565b9050919050565b600060208201905081810360008301526131a981612d72565b9050919050565b600060208201905081810360008301526131c981612dd8565b9050919050565b600060208201905081810360008301526131e981612e3e565b9050919050565b6000602082019050818103600083015261320981612ea4565b9050919050565b60006020820190506132256000830184612f0a565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561325257613251613603565b5b8060405250919050565b600067ffffffffffffffff82111561327757613276613603565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156132a7576132a6613603565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061330a8261347e565b91506133158361347e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561334a57613349613576565b5b828201905092915050565b60006133608261347e565b915061336b8361347e565b92508261337b5761337a6135a5565b5b828204905092915050565b60006133918261347e565b915061339c8361347e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133d5576133d4613576565b5b828202905092915050565b60006133eb8261347e565b91506133f68361347e565b92508282101561340957613408613576565b5b828203905092915050565b600061341f8261345e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134b557808201518184015260208101905061349a565b838111156134c4576000848401525b50505050565b600060028204905060018216806134e257607f821691505b602082108114156134f6576134f56135d4565b5b50919050565b60006135078261347e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561353a57613539613576565b5b600182019050919050565b60006135508261347e565b915061355b8361347e565b92508261356b5761356a6135a5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61364c81613414565b811461365757600080fd5b50565b61366381613426565b811461366e57600080fd5b50565b61367a81613432565b811461368557600080fd5b50565b6136918161347e565b811461369c57600080fd5b5056fea2646970667358221220bb21a85de8e3cfb30951cb3ff9ba4aab7bb5e5e24a442cd951257bd70b4e160464736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000125068756e6b794170655961636874436c7562000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045041594300000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): PhunkyApeYachtClub
Arg [1] : _symbol (string): PAYC
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 5068756e6b794170655961636874436c75620000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 5041594300000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ 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.