Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
443 DEPICTIVES
Holders
111
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 DEPICTIVESLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Depictives
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity 0.8.6; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; /** * @title Depictives * @author artist: expfunction (twitter.com/expfunction) * @author dev: maximonee (twitter.com/maximonee_) * @notice This contract provides minting for Depictives NFT by twitter.com/expfunction */ contract Depictives is ERC721, Ownable, ReentrancyGuard { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIds; constructor( string memory name, string memory symbol) ERC721( name, symbol ) { // Start token IDs at 1 _tokenIds.increment(); } bool public preSaleActive; bool public publicSaleActive; bool public isSaleHalted; bool private ownerSupplyMinted; uint16 private constant MAX_SUPPLY = 2048; uint16 private constant OWNER_SUPPLY = 50; bytes32 public merkleRoot = 0x77ca49bd64f871f31f6d417d2a20095d696362ae03c345bbe310d8f248b873fe; uint16 private constant APOSTLE_FREE_MINTS = 10; uint16 private constant AUGURY_FREE_MINTS = 1; uint256 private constant MAX_MULTI_MINT_AMOUNT = 5; uint256 public constant PRICE = 0.15 ether; uint256 private preSaleLaunchTime = 1640210400; uint256 private publicSaleLaunchTime = 1640296800; mapping(address => uint16) private apostleHolderMints; mapping(address => uint16) private auguryHolderMints; mapping(address => bool) private apostleHolders; mapping(address => bool) private auguryHolders; address private constant F_ADDRESS = 0xB32b819c70C54e8aCfe24dF78E70D3D828FBA194; address private constant M_ADDRESS = 0x180c5E11d2e4844e9EF8D155A69085200Bb38f0b; uint16 private constant F_CUT = 90; uint16 private constant M_CUT = 10; string public baseTokenURI = "https://arweave.net/TBD/"; function _genMerkleLeaf(address account, uint256 mints) internal pure returns (bytes32) { return keccak256(abi.encodePacked(account, mints)); } function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } function setPreSaleState(bool _preSaleActiveState) external onlyOwner { preSaleActive = _preSaleActiveState; } function setPublicSaleState(bool _publicSaleActiveState) external onlyOwner { publicSaleActive = _publicSaleActiveState; } function setPreSaleTime(uint32 _time) external onlyOwner { preSaleLaunchTime = _time; } function setPublicSaleTime(uint32 _time) external onlyOwner { publicSaleLaunchTime = _time; } /** Give the ability to halt the sale if necessary due to automatic sale enablement based on time */ function setSaleHaltedState(bool _saleHaltedState) external onlyOwner { isSaleHalted = _saleHaltedState; } function setApostleHolders(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { apostleHolderMints[addresses[i]] = APOSTLE_FREE_MINTS; apostleHolders[addresses[i]] = true; } } function setAuguryHolders(address[] calldata addresses) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { auguryHolderMints[addresses[i]] = AUGURY_FREE_MINTS; auguryHolders[addresses[i]] = true; } } function isPreSaleActive() public view returns (bool) { return ((block.timestamp >= preSaleLaunchTime || preSaleActive) && !isSaleHalted); } function isPublicSaleActive() public view returns (bool) { return ((block.timestamp >= publicSaleLaunchTime || publicSaleActive) && !isSaleHalted); } 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(), ".json")) : ""; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } /** Update the base token URI */ function setBaseURI(string memory _newBaseURI) public onlyOwner { baseTokenURI = _newBaseURI; } function _numberOfFreeMints(address addr) internal view returns (uint16) { return apostleHolderMints[addr] + auguryHolderMints[addr]; } /** * @notice Allow an Apostle holder to mint their free Depictives */ function freeMint() public nonReentrant { require(isPreSaleActive() && !isPublicSaleActive(), "SALE_NOT_ACTIVE"); require(apostleHolderMints[msg.sender] > 0 || auguryHolderMints[msg.sender] > 0, "NOT_APOSTLE_HOLDER_OR_ALREADY_DONE"); uint16 numberOfFreeMints = _numberOfFreeMints(msg.sender); require(totalSupply() + numberOfFreeMints <= MAX_SUPPLY, "MAX_SUPPLY_REACHED"); for (uint256 i = 0; i < numberOfFreeMints; i++) { uint256 tokenId = _tokenIds.current(); _safeMint(msg.sender, tokenId); _tokenIds.increment(); } apostleHolderMints[msg.sender] = 0; auguryHolderMints[msg.sender] = 0; } function mintOwnerSupply(address addr) public nonReentrant onlyOwner { require(!ownerSupplyMinted, "OWNER_MINT_COMPLETED"); require(totalSupply() + OWNER_SUPPLY <= MAX_SUPPLY, "MAX_SUPPLY_REACHED"); for (uint256 i = 0; i < OWNER_SUPPLY; i++) { uint256 tokenId = _tokenIds.current(); _safeMint(addr, tokenId); _tokenIds.increment(); } ownerSupplyMinted = true; } /** * @notice Allow public to bulk mint tokens */ function mint(uint256 numberOfMints, bytes memory data) public payable nonReentrant { require( apostleHolderMints[msg.sender] == 0 && auguryHolderMints[msg.sender] == 0, "FREE_CLAIM_AVAILABLE" ); if (isPreSaleActive() && !isPublicSaleActive()) { require(data.length != 0, "NOT_PRESALE_ELIGIBLE"); (address addr, uint256 mintAllocation, bytes32[] memory proof) = abi.decode(data, (address, uint256, bytes32[])); require(MerkleProof.verify(proof, merkleRoot, _genMerkleLeaf(msg.sender, mintAllocation)), "INVALID_PROOF"); require(addr == msg.sender, "INVALID_SENDER"); require(numberOfMints + balanceOf(msg.sender) <= mintAllocation, "PRESALE_LIMIT_REACHED"); } else { require(isPublicSaleActive(), "SALE_NOT_ACTIVE"); require(numberOfMints <= MAX_MULTI_MINT_AMOUNT, "TOO_LARGE_PER_TX"); } require(totalSupply() + numberOfMints <= MAX_SUPPLY, "MAX_SUPPLY_REACHED"); require(msg.value >= PRICE * numberOfMints, "INVALID_PRICE"); for (uint256 i = 0; i < numberOfMints; i++) { uint256 tokenId = _tokenIds.current(); _safeMint(msg.sender, tokenId); _tokenIds.increment(); } } function withdrawProceeds() external onlyOwner nonReentrant { uint256 value = address(this).balance; uint256 fPayout = (value * F_CUT) / 100; uint256 mPayout = (value * M_CUT) / 100; payable(F_ADDRESS).transfer(fPayout); payable(M_ADDRESS).transfer(mPayout); } function totalSupply() public view returns (uint256) { return _tokenIds.current() - 1; } }
// 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 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// 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 (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/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 (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/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// 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); }
{ "evmVersion": "berlin", "libraries": {}, "metadata": { "bytecodeHash": "none", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 800 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
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":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleHalted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"mintOwnerSupply","outputs":[],"stateMutability":"nonpayable","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":"preSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setApostleHolders","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":"address[]","name":"addresses","type":"address[]"}],"name":"setAuguryHolders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_preSaleActiveState","type":"bool"}],"name":"setPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_time","type":"uint32"}],"name":"setPreSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicSaleActiveState","type":"bool"}],"name":"setPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_time","type":"uint32"}],"name":"setPublicSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleHaltedState","type":"bool"}],"name":"setSaleHaltedState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawProceeds","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
7f77ca49bd64f871f31f6d417d2a20095d696362ae03c345bbe310d8f248b873fe600a556361c39fe0600b556361c4f160600c5560c0604052601860808190527f68747470733a2f2f617277656176652e6e65742f5442442f000000000000000060a090815262000074916011919062000177565b503480156200008257600080fd5b506040516200331338038062003313833981016040819052620000a591620002d4565b815182908290620000be90600090602085019062000177565b508051620000d490600190602084019062000177565b505050620000f1620000eb6200011860201b60201c565b6200011c565b60016007819055506200011060086200016e60201b62001da21760201c565b505062000391565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b82805462000185906200033e565b90600052602060002090601f016020900481019282620001a95760008555620001f4565b82601f10620001c457805160ff1916838001178555620001f4565b82800160010185558215620001f4579182015b82811115620001f4578251825591602001919060010190620001d7565b506200020292915062000206565b5090565b5b8082111562000202576000815560010162000207565b600082601f8301126200022f57600080fd5b81516001600160401b03808211156200024c576200024c6200037b565b604051601f8301601f19908116603f011681019082821181831017156200027757620002776200037b565b816040528381526020925086838588010111156200029457600080fd5b600091505b83821015620002b8578582018301518183018401529082019062000299565b83821115620002ca5760008385830101525b9695505050505050565b60008060408385031215620002e857600080fd5b82516001600160401b03808211156200030057600080fd5b6200030e868387016200021d565b935060208501519150808211156200032557600080fd5b5062000334858286016200021d565b9150509250929050565b600181811c908216806200035357607f821691505b602082108114156200037557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612f7280620003a16000396000f3fe6080604052600436106102855760003560e01c80638108848811610153578063a22cb465116100cb578063db7fd4081161007f578063ef354b2311610064578063ef354b23146106d6578063f2fde38b146106f6578063f944399b1461071657600080fd5b8063db7fd4081461067a578063e985e9c51461068d57600080fd5b8063bc8893b4116100b0578063bc8893b414610626578063c87b56dd14610645578063d547cfb71461066557600080fd5b8063a22cb465146105e6578063b88d4fde1461060657600080fd5b80639038e6931161012257806395d89b411161010757806395d89b411461059c5780639b960ddf146105b15780639d044ed3146105d157600080fd5b80639038e693146105675780639293a5c71461057c57600080fd5b806381088488146104f357806384494708146105135780638d859f3e1461052d5780638da5cb5b1461054957600080fd5b806342842e0e116102015780636352211e116101b557806370a082311161019a57806370a082311461049e578063715018a6146104be5780637cb64759146104d357600080fd5b80636352211e1461045e5780636b66f9001461047e57600080fd5b806355f804b3116101e657806355f804b3146104095780635b70ea9f1461042957806360eb3f541461043e57600080fd5b806342842e0e146103c957806349afbfe9146103e957600080fd5b806318160ddd1161025857806323b872dd1161023d57806323b872dd146103735780632eb4a7ab146103935780633ca6fb8c146103a957600080fd5b806318160ddd1461033b5780631e84c4131461035e57600080fd5b806301ffc9a71461028a57806306fdde03146102bf578063081812fc146102e1578063095ea7b314610319575b600080fd5b34801561029657600080fd5b506102aa6102a5366004612bb1565b610736565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d4610788565b6040516102b69190612d60565b3480156102ed57600080fd5b506103016102fc366004612b98565b61081a565b6040516001600160a01b0390911681526020016102b6565b34801561032557600080fd5b50610339610334366004612adc565b6108b4565b005b34801561034757600080fd5b506103506109ca565b6040519081526020016102b6565b34801561036a57600080fd5b506102aa6109e6565b34801561037f57600080fd5b5061033961038e3660046129fa565b610a18565b34801561039f57600080fd5b50610350600a5481565b3480156103b557600080fd5b506103396103c4366004612b7d565b610a9f565b3480156103d557600080fd5b506103396103e43660046129fa565b610afa565b3480156103f557600080fd5b50610339610404366004612b08565b610b15565b34801561041557600080fd5b50610339610424366004612beb565b610c36565b34801561043557600080fd5b50610339610c95565b34801561044a57600080fd5b50610339610459366004612c7b565b610eb5565b34801561046a57600080fd5b50610301610479366004612b98565b610f08565b34801561048a57600080fd5b506103396104993660046128d7565b610f93565b3480156104aa57600080fd5b506103506104b93660046128d7565b611147565b3480156104ca57600080fd5b506103396111e1565b3480156104df57600080fd5b506103396104ee366004612b98565b611235565b3480156104ff57600080fd5b5061033961050e366004612b08565b611282565b34801561051f57600080fd5b506009546102aa9060ff1681565b34801561053957600080fd5b50610350670214e8348c4f000081565b34801561055557600080fd5b506006546001600160a01b0316610301565b34801561057357600080fd5b506103396113a3565b34801561058857600080fd5b50610339610597366004612b7d565b611509565b3480156105a857600080fd5b506102d461156b565b3480156105bd57600080fd5b506009546102aa9062010000900460ff1681565b3480156105dd57600080fd5b506102aa61157a565b3480156105f257600080fd5b50610339610601366004612aa7565b6115a6565b34801561061257600080fd5b50610339610621366004612a3b565b6115b1565b34801561063257600080fd5b506009546102aa90610100900460ff1681565b34801561065157600080fd5b506102d4610660366004612b98565b61163f565b34801561067157600080fd5b506102d4611728565b610339610688366004612c34565b6117b6565b34801561069957600080fd5b506102aa6106a83660046129c1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106e257600080fd5b506103396106f1366004612c7b565b611c1b565b34801561070257600080fd5b506103396107113660046128d7565b611c6e565b34801561072257600080fd5b50610339610731366004612b7d565b611d3e565b60006001600160e01b031982166380ac58cd60e01b148061076757506001600160e01b03198216635b5e139f60e01b145b8061078257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461079790612e58565b80601f01602080910402602001604051908101604052809291908181526020018280546107c390612e58565b80156108105780601f106107e557610100808354040283529160200191610810565b820191906000526020600020905b8154815290600101906020018083116107f357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108985760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108bf82610f08565b9050806001600160a01b0316836001600160a01b0316141561092d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161088f565b336001600160a01b0382161480610949575061094981336106a8565b6109bb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161088f565b6109c58383611dab565b505050565b600060016109d760085490565b6109e19190612e15565b905090565b6000600c5442101580610a005750600954610100900460ff165b80156109e157505060095462010000900460ff161590565b610a223382611e19565b610a945760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161088f565b6109c5838383611f10565b6006546001600160a01b03163314610ae75760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b6009805460ff1916911515919091179055565b6109c5838383604051806020016040528060008152506115b1565b6006546001600160a01b03163314610b5d5760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b60005b818110156109c5576001600e6000858585818110610b8057610b80612eee565b9050602002016020810190610b9591906128d7565b6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548161ffff021916908361ffff160217905550600160106000858585818110610be757610be7612eee565b9050602002016020810190610bfc91906128d7565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610c2e81612e93565b915050610b60565b6006546001600160a01b03163314610c7e5760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b8051610c919060119060208401906127b1565b5050565b60026007541415610ce85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161088f565b6002600755610cf561157a565b8015610d065750610d046109e6565b155b610d445760405162461bcd60e51b815260206004820152600f60248201526e53414c455f4e4f545f41435449564560881b604482015260640161088f565b336000908152600d602052604090205461ffff16151580610d775750336000908152600e602052604090205461ffff1615155b610dce5760405162461bcd60e51b815260206004820152602260248201527f4e4f545f41504f53544c455f484f4c4445525f4f525f414c52454144595f444f6044820152614e4560f01b606482015260840161088f565b6000610dd9336120c4565b905061080061ffff8216610deb6109ca565b610df59190612dca565b1115610e385760405162461bcd60e51b815260206004820152601260248201527113505617d4d55414131657d4915050d2115160721b604482015260640161088f565b60005b8161ffff16811015610e7f576000610e5260085490565b9050610e5e33826120f9565b610e6c600880546001019055565b5080610e7781612e93565b915050610e3b565b5050336000908152600d60209081526040808320805461ffff19908116909155600e909252909120805490911690556001600755565b6006546001600160a01b03163314610efd5760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b63ffffffff16600c55565b6000818152600260205260408120546001600160a01b0316806107825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161088f565b60026007541415610fe65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161088f565b60026007556006546001600160a01b031633146110335760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b6009546301000000900460ff161561108d5760405162461bcd60e51b815260206004820152601460248201527f4f574e45525f4d494e545f434f4d504c45544544000000000000000000000000604482015260640161088f565b610800603261109a6109ca565b6110a49190612dca565b11156110e75760405162461bcd60e51b815260206004820152601260248201527113505617d4d55414131657d4915050d2115160721b604482015260640161088f565b60005b603281101561112b5760006110fe60085490565b905061110a83826120f9565b611118600880546001019055565b508061112381612e93565b9150506110ea565b50506009805463ff000000191663010000001790556001600755565b60006001600160a01b0382166111c55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161088f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112295760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b6112336000612113565b565b6006546001600160a01b0316331461127d5760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b600a55565b6006546001600160a01b031633146112ca5760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b60005b818110156109c557600a600d60008585858181106112ed576112ed612eee565b905060200201602081019061130291906128d7565b6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548161ffff021916908361ffff1602179055506001600f600085858581811061135457611354612eee565b905060200201602081019061136991906128d7565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061139b81612e93565b9150506112cd565b6006546001600160a01b031633146113eb5760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b6002600754141561143e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161088f565b60026007554760006064611453605a84612df6565b61145d9190612de2565b90506000606461146e600a85612df6565b6114789190612de2565b60405190915073b32b819c70c54e8acfe24df78e70d3d828fba1949083156108fc029084906000818181858888f193505050501580156114bc573d6000803e3d6000fd5b5060405173180c5e11d2e4844e9ef8d155a69085200bb38f0b9082156108fc029083906000818181858888f193505050501580156114fe573d6000803e3d6000fd5b505060016007555050565b6006546001600160a01b031633146115515760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b600980549115156101000261ff0019909216919091179055565b60606001805461079790612e58565b6000600b5442101580610a00575060095460ff1680156109e157505060095462010000900460ff161590565b610c91338383612165565b6115bb3383611e19565b61162d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161088f565b61163984848484612234565b50505050565b6000818152600260205260409020546060906001600160a01b03166116cc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161088f565b60006116d66122b2565b905060008151116116f65760405180602001604052806000815250611721565b80611700846122c1565b604051602001611711929190612ccd565b6040516020818303038152906040525b9392505050565b6011805461173590612e58565b80601f016020809104026020016040519081016040528092919081815260200182805461176190612e58565b80156117ae5780601f10611783576101008083540402835291602001916117ae565b820191906000526020600020905b81548152906001019060200180831161179157829003601f168201915b505050505081565b600260075414156118095760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161088f565b6002600755336000908152600d602052604090205461ffff161580156118405750336000908152600e602052604090205461ffff16155b61188c5760405162461bcd60e51b815260206004820152601460248201527f465245455f434c41494d5f415641494c41424c45000000000000000000000000604482015260640161088f565b61189461157a565b80156118a557506118a36109e6565b155b15611a7d5780516118f85760405162461bcd60e51b815260206004820152601460248201527f4e4f545f50524553414c455f454c494749424c45000000000000000000000000604482015260640161088f565b60008060008380602001905181019061191191906128f4565b92509250925061196f81600a5461196a33866040516bffffffffffffffffffffffff19606084901b1660208201526034810182905260009060540160405160208183030381529060405280519060200120905092915050565b6123d7565b6119bb5760405162461bcd60e51b815260206004820152600d60248201527f494e56414c49445f50524f4f4600000000000000000000000000000000000000604482015260640161088f565b6001600160a01b0383163314611a135760405162461bcd60e51b815260206004820152600e60248201527f494e56414c49445f53454e444552000000000000000000000000000000000000604482015260640161088f565b81611a1d33611147565b611a279087612dca565b1115611a755760405162461bcd60e51b815260206004820152601560248201527f50524553414c455f4c494d49545f524541434845440000000000000000000000604482015260640161088f565b505050611b14565b611a856109e6565b611ac35760405162461bcd60e51b815260206004820152600f60248201526e53414c455f4e4f545f41435449564560881b604482015260640161088f565b6005821115611b145760405162461bcd60e51b815260206004820152601060248201527f544f4f5f4c415247455f5045525f545800000000000000000000000000000000604482015260640161088f565b61080082611b206109ca565b611b2a9190612dca565b1115611b6d5760405162461bcd60e51b815260206004820152601260248201527113505617d4d55414131657d4915050d2115160721b604482015260640161088f565b611b7f82670214e8348c4f0000612df6565b341015611bce5760405162461bcd60e51b815260206004820152600d60248201527f494e56414c49445f505249434500000000000000000000000000000000000000604482015260640161088f565b60005b82811015611c11576000611be460085490565b9050611bf033826120f9565b611bfe600880546001019055565b5080611c0981612e93565b915050611bd1565b5050600160075550565b6006546001600160a01b03163314611c635760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b63ffffffff16600b55565b6006546001600160a01b03163314611cb65760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b6001600160a01b038116611d325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161088f565b611d3b81612113565b50565b6006546001600160a01b03163314611d865760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b60098054911515620100000262ff000019909216919091179055565b80546001019055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611de082610f08565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611e925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161088f565b6000611e9d83610f08565b9050806001600160a01b0316846001600160a01b03161480611ed85750836001600160a01b0316611ecd8461081a565b6001600160a01b0316145b80611f0857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f2382610f08565b6001600160a01b031614611f9f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161088f565b6001600160a01b0382166120015760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161088f565b61200c600082611dab565b6001600160a01b0383166000908152600360205260408120805460019290612035908490612e15565b90915550506001600160a01b0382166000908152600360205260408120805460019290612063908490612dca565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0381166000908152600e6020908152604080832054600d9092528220546107829161ffff9081169116612da4565b610c918282604051806020016040528060008152506123ed565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156121c75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161088f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61223f848484611f10565b61224b8484848461246b565b6116395760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161088f565b60606011805461079790612e58565b6060816122e55750506040805180820190915260018152600360fc1b602082015290565b8160005b811561230f57806122f981612e93565b91506123089050600a83612de2565b91506122e9565b60008167ffffffffffffffff81111561232a5761232a612f04565b6040519080825280601f01601f191660200182016040528015612354576020820181803683370190505b5090505b8415611f0857612369600183612e15565b9150612376600a86612eae565b612381906030612dca565b60f81b81838151811061239657612396612eee565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506123d0600a86612de2565b9450612358565b6000826123e485846125c3565b14949350505050565b6123f7838361266f565b612404600084848461246b565b6109c55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161088f565b60006001600160a01b0384163b156125b857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124af903390899088908890600401612d24565b602060405180830381600087803b1580156124c957600080fd5b505af19250505080156124f9575060408051601f3d908101601f191682019092526124f691810190612bce565b60015b61259e573d808015612527576040519150601f19603f3d011682016040523d82523d6000602084013e61252c565b606091505b5080516125965760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161088f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f08565b506001949350505050565b600081815b84518110156126675760008582815181106125e5576125e5612eee565b60200260200101519050808311612627576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612654565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061265f81612e93565b9150506125c8565b509392505050565b6001600160a01b0382166126c55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161088f565b6000818152600260205260409020546001600160a01b03161561272a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161088f565b6001600160a01b0382166000908152600360205260408120805460019290612753908490612dca565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546127bd90612e58565b90600052602060002090601f0160209004810192826127df5760008555612825565b82601f106127f857805160ff1916838001178555612825565b82800160010185558215612825579182015b8281111561282557825182559160200191906001019061280a565b50612831929150612835565b5090565b5b808211156128315760008155600101612836565b600067ffffffffffffffff83111561286457612864612f04565b612877601f8401601f1916602001612d73565b905082815283838301111561288b57600080fd5b828260208301376000602084830101529392505050565b803580151581146128b257600080fd5b919050565b600082601f8301126128c857600080fd5b6117218383356020850161284a565b6000602082840312156128e957600080fd5b813561172181612f1a565b60008060006060848603121561290957600080fd5b835161291481612f1a565b809350506020808501519250604085015167ffffffffffffffff8082111561293b57600080fd5b818701915087601f83011261294f57600080fd5b81518181111561296157612961612f04565b8060051b9150612972848301612d73565b8181528481019084860184860187018c101561298d57600080fd5b600095505b838610156129b0578051835260019590950194918601918601612992565b508096505050505050509250925092565b600080604083850312156129d457600080fd5b82356129df81612f1a565b915060208301356129ef81612f1a565b809150509250929050565b600080600060608486031215612a0f57600080fd5b8335612a1a81612f1a565b92506020840135612a2a81612f1a565b929592945050506040919091013590565b60008060008060808587031215612a5157600080fd5b8435612a5c81612f1a565b93506020850135612a6c81612f1a565b925060408501359150606085013567ffffffffffffffff811115612a8f57600080fd5b612a9b878288016128b7565b91505092959194509250565b60008060408385031215612aba57600080fd5b8235612ac581612f1a565b9150612ad3602084016128a2565b90509250929050565b60008060408385031215612aef57600080fd5b8235612afa81612f1a565b946020939093013593505050565b60008060208385031215612b1b57600080fd5b823567ffffffffffffffff80821115612b3357600080fd5b818501915085601f830112612b4757600080fd5b813581811115612b5657600080fd5b8660208260051b8501011115612b6b57600080fd5b60209290920196919550909350505050565b600060208284031215612b8f57600080fd5b611721826128a2565b600060208284031215612baa57600080fd5b5035919050565b600060208284031215612bc357600080fd5b813561172181612f2f565b600060208284031215612be057600080fd5b815161172181612f2f565b600060208284031215612bfd57600080fd5b813567ffffffffffffffff811115612c1457600080fd5b8201601f81018413612c2557600080fd5b611f088482356020840161284a565b60008060408385031215612c4757600080fd5b82359150602083013567ffffffffffffffff811115612c6557600080fd5b612c71858286016128b7565b9150509250929050565b600060208284031215612c8d57600080fd5b813563ffffffff8116811461172157600080fd5b60008151808452612cb9816020860160208601612e2c565b601f01601f19169290920160200192915050565b60008351612cdf818460208801612e2c565b835190830190612cf3818360208801612e2c565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612d566080830184612ca1565b9695505050505050565b6020815260006117216020830184612ca1565b604051601f8201601f1916810167ffffffffffffffff81118282101715612d9c57612d9c612f04565b604052919050565b600061ffff808316818516808303821115612dc157612dc1612ec2565b01949350505050565b60008219821115612ddd57612ddd612ec2565b500190565b600082612df157612df1612ed8565b500490565b6000816000190483118215151615612e1057612e10612ec2565b500290565b600082821015612e2757612e27612ec2565b500390565b60005b83811015612e47578181015183820152602001612e2f565b838111156116395750506000910152565b600181811c90821680612e6c57607f821691505b60208210811415612e8d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ea757612ea7612ec2565b5060010190565b600082612ebd57612ebd612ed8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611d3b57600080fd5b6001600160e01b031981168114611d3b57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a164736f6c6343000806000a00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a4465706963746976657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4445504943544956455300000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102855760003560e01c80638108848811610153578063a22cb465116100cb578063db7fd4081161007f578063ef354b2311610064578063ef354b23146106d6578063f2fde38b146106f6578063f944399b1461071657600080fd5b8063db7fd4081461067a578063e985e9c51461068d57600080fd5b8063bc8893b4116100b0578063bc8893b414610626578063c87b56dd14610645578063d547cfb71461066557600080fd5b8063a22cb465146105e6578063b88d4fde1461060657600080fd5b80639038e6931161012257806395d89b411161010757806395d89b411461059c5780639b960ddf146105b15780639d044ed3146105d157600080fd5b80639038e693146105675780639293a5c71461057c57600080fd5b806381088488146104f357806384494708146105135780638d859f3e1461052d5780638da5cb5b1461054957600080fd5b806342842e0e116102015780636352211e116101b557806370a082311161019a57806370a082311461049e578063715018a6146104be5780637cb64759146104d357600080fd5b80636352211e1461045e5780636b66f9001461047e57600080fd5b806355f804b3116101e657806355f804b3146104095780635b70ea9f1461042957806360eb3f541461043e57600080fd5b806342842e0e146103c957806349afbfe9146103e957600080fd5b806318160ddd1161025857806323b872dd1161023d57806323b872dd146103735780632eb4a7ab146103935780633ca6fb8c146103a957600080fd5b806318160ddd1461033b5780631e84c4131461035e57600080fd5b806301ffc9a71461028a57806306fdde03146102bf578063081812fc146102e1578063095ea7b314610319575b600080fd5b34801561029657600080fd5b506102aa6102a5366004612bb1565b610736565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d4610788565b6040516102b69190612d60565b3480156102ed57600080fd5b506103016102fc366004612b98565b61081a565b6040516001600160a01b0390911681526020016102b6565b34801561032557600080fd5b50610339610334366004612adc565b6108b4565b005b34801561034757600080fd5b506103506109ca565b6040519081526020016102b6565b34801561036a57600080fd5b506102aa6109e6565b34801561037f57600080fd5b5061033961038e3660046129fa565b610a18565b34801561039f57600080fd5b50610350600a5481565b3480156103b557600080fd5b506103396103c4366004612b7d565b610a9f565b3480156103d557600080fd5b506103396103e43660046129fa565b610afa565b3480156103f557600080fd5b50610339610404366004612b08565b610b15565b34801561041557600080fd5b50610339610424366004612beb565b610c36565b34801561043557600080fd5b50610339610c95565b34801561044a57600080fd5b50610339610459366004612c7b565b610eb5565b34801561046a57600080fd5b50610301610479366004612b98565b610f08565b34801561048a57600080fd5b506103396104993660046128d7565b610f93565b3480156104aa57600080fd5b506103506104b93660046128d7565b611147565b3480156104ca57600080fd5b506103396111e1565b3480156104df57600080fd5b506103396104ee366004612b98565b611235565b3480156104ff57600080fd5b5061033961050e366004612b08565b611282565b34801561051f57600080fd5b506009546102aa9060ff1681565b34801561053957600080fd5b50610350670214e8348c4f000081565b34801561055557600080fd5b506006546001600160a01b0316610301565b34801561057357600080fd5b506103396113a3565b34801561058857600080fd5b50610339610597366004612b7d565b611509565b3480156105a857600080fd5b506102d461156b565b3480156105bd57600080fd5b506009546102aa9062010000900460ff1681565b3480156105dd57600080fd5b506102aa61157a565b3480156105f257600080fd5b50610339610601366004612aa7565b6115a6565b34801561061257600080fd5b50610339610621366004612a3b565b6115b1565b34801561063257600080fd5b506009546102aa90610100900460ff1681565b34801561065157600080fd5b506102d4610660366004612b98565b61163f565b34801561067157600080fd5b506102d4611728565b610339610688366004612c34565b6117b6565b34801561069957600080fd5b506102aa6106a83660046129c1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106e257600080fd5b506103396106f1366004612c7b565b611c1b565b34801561070257600080fd5b506103396107113660046128d7565b611c6e565b34801561072257600080fd5b50610339610731366004612b7d565b611d3e565b60006001600160e01b031982166380ac58cd60e01b148061076757506001600160e01b03198216635b5e139f60e01b145b8061078257506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461079790612e58565b80601f01602080910402602001604051908101604052809291908181526020018280546107c390612e58565b80156108105780601f106107e557610100808354040283529160200191610810565b820191906000526020600020905b8154815290600101906020018083116107f357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108985760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108bf82610f08565b9050806001600160a01b0316836001600160a01b0316141561092d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161088f565b336001600160a01b0382161480610949575061094981336106a8565b6109bb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161088f565b6109c58383611dab565b505050565b600060016109d760085490565b6109e19190612e15565b905090565b6000600c5442101580610a005750600954610100900460ff165b80156109e157505060095462010000900460ff161590565b610a223382611e19565b610a945760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161088f565b6109c5838383611f10565b6006546001600160a01b03163314610ae75760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b6009805460ff1916911515919091179055565b6109c5838383604051806020016040528060008152506115b1565b6006546001600160a01b03163314610b5d5760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b60005b818110156109c5576001600e6000858585818110610b8057610b80612eee565b9050602002016020810190610b9591906128d7565b6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548161ffff021916908361ffff160217905550600160106000858585818110610be757610be7612eee565b9050602002016020810190610bfc91906128d7565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610c2e81612e93565b915050610b60565b6006546001600160a01b03163314610c7e5760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b8051610c919060119060208401906127b1565b5050565b60026007541415610ce85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161088f565b6002600755610cf561157a565b8015610d065750610d046109e6565b155b610d445760405162461bcd60e51b815260206004820152600f60248201526e53414c455f4e4f545f41435449564560881b604482015260640161088f565b336000908152600d602052604090205461ffff16151580610d775750336000908152600e602052604090205461ffff1615155b610dce5760405162461bcd60e51b815260206004820152602260248201527f4e4f545f41504f53544c455f484f4c4445525f4f525f414c52454144595f444f6044820152614e4560f01b606482015260840161088f565b6000610dd9336120c4565b905061080061ffff8216610deb6109ca565b610df59190612dca565b1115610e385760405162461bcd60e51b815260206004820152601260248201527113505617d4d55414131657d4915050d2115160721b604482015260640161088f565b60005b8161ffff16811015610e7f576000610e5260085490565b9050610e5e33826120f9565b610e6c600880546001019055565b5080610e7781612e93565b915050610e3b565b5050336000908152600d60209081526040808320805461ffff19908116909155600e909252909120805490911690556001600755565b6006546001600160a01b03163314610efd5760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b63ffffffff16600c55565b6000818152600260205260408120546001600160a01b0316806107825760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161088f565b60026007541415610fe65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161088f565b60026007556006546001600160a01b031633146110335760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b6009546301000000900460ff161561108d5760405162461bcd60e51b815260206004820152601460248201527f4f574e45525f4d494e545f434f4d504c45544544000000000000000000000000604482015260640161088f565b610800603261109a6109ca565b6110a49190612dca565b11156110e75760405162461bcd60e51b815260206004820152601260248201527113505617d4d55414131657d4915050d2115160721b604482015260640161088f565b60005b603281101561112b5760006110fe60085490565b905061110a83826120f9565b611118600880546001019055565b508061112381612e93565b9150506110ea565b50506009805463ff000000191663010000001790556001600755565b60006001600160a01b0382166111c55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161088f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112295760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b6112336000612113565b565b6006546001600160a01b0316331461127d5760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b600a55565b6006546001600160a01b031633146112ca5760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b60005b818110156109c557600a600d60008585858181106112ed576112ed612eee565b905060200201602081019061130291906128d7565b6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548161ffff021916908361ffff1602179055506001600f600085858581811061135457611354612eee565b905060200201602081019061136991906128d7565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061139b81612e93565b9150506112cd565b6006546001600160a01b031633146113eb5760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b6002600754141561143e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161088f565b60026007554760006064611453605a84612df6565b61145d9190612de2565b90506000606461146e600a85612df6565b6114789190612de2565b60405190915073b32b819c70c54e8acfe24df78e70d3d828fba1949083156108fc029084906000818181858888f193505050501580156114bc573d6000803e3d6000fd5b5060405173180c5e11d2e4844e9ef8d155a69085200bb38f0b9082156108fc029083906000818181858888f193505050501580156114fe573d6000803e3d6000fd5b505060016007555050565b6006546001600160a01b031633146115515760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b600980549115156101000261ff0019909216919091179055565b60606001805461079790612e58565b6000600b5442101580610a00575060095460ff1680156109e157505060095462010000900460ff161590565b610c91338383612165565b6115bb3383611e19565b61162d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161088f565b61163984848484612234565b50505050565b6000818152600260205260409020546060906001600160a01b03166116cc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161088f565b60006116d66122b2565b905060008151116116f65760405180602001604052806000815250611721565b80611700846122c1565b604051602001611711929190612ccd565b6040516020818303038152906040525b9392505050565b6011805461173590612e58565b80601f016020809104026020016040519081016040528092919081815260200182805461176190612e58565b80156117ae5780601f10611783576101008083540402835291602001916117ae565b820191906000526020600020905b81548152906001019060200180831161179157829003601f168201915b505050505081565b600260075414156118095760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161088f565b6002600755336000908152600d602052604090205461ffff161580156118405750336000908152600e602052604090205461ffff16155b61188c5760405162461bcd60e51b815260206004820152601460248201527f465245455f434c41494d5f415641494c41424c45000000000000000000000000604482015260640161088f565b61189461157a565b80156118a557506118a36109e6565b155b15611a7d5780516118f85760405162461bcd60e51b815260206004820152601460248201527f4e4f545f50524553414c455f454c494749424c45000000000000000000000000604482015260640161088f565b60008060008380602001905181019061191191906128f4565b92509250925061196f81600a5461196a33866040516bffffffffffffffffffffffff19606084901b1660208201526034810182905260009060540160405160208183030381529060405280519060200120905092915050565b6123d7565b6119bb5760405162461bcd60e51b815260206004820152600d60248201527f494e56414c49445f50524f4f4600000000000000000000000000000000000000604482015260640161088f565b6001600160a01b0383163314611a135760405162461bcd60e51b815260206004820152600e60248201527f494e56414c49445f53454e444552000000000000000000000000000000000000604482015260640161088f565b81611a1d33611147565b611a279087612dca565b1115611a755760405162461bcd60e51b815260206004820152601560248201527f50524553414c455f4c494d49545f524541434845440000000000000000000000604482015260640161088f565b505050611b14565b611a856109e6565b611ac35760405162461bcd60e51b815260206004820152600f60248201526e53414c455f4e4f545f41435449564560881b604482015260640161088f565b6005821115611b145760405162461bcd60e51b815260206004820152601060248201527f544f4f5f4c415247455f5045525f545800000000000000000000000000000000604482015260640161088f565b61080082611b206109ca565b611b2a9190612dca565b1115611b6d5760405162461bcd60e51b815260206004820152601260248201527113505617d4d55414131657d4915050d2115160721b604482015260640161088f565b611b7f82670214e8348c4f0000612df6565b341015611bce5760405162461bcd60e51b815260206004820152600d60248201527f494e56414c49445f505249434500000000000000000000000000000000000000604482015260640161088f565b60005b82811015611c11576000611be460085490565b9050611bf033826120f9565b611bfe600880546001019055565b5080611c0981612e93565b915050611bd1565b5050600160075550565b6006546001600160a01b03163314611c635760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b63ffffffff16600b55565b6006546001600160a01b03163314611cb65760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b6001600160a01b038116611d325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161088f565b611d3b81612113565b50565b6006546001600160a01b03163314611d865760405162461bcd60e51b81526020600482018190526024820152600080516020612f46833981519152604482015260640161088f565b60098054911515620100000262ff000019909216919091179055565b80546001019055565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611de082610f08565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611e925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161088f565b6000611e9d83610f08565b9050806001600160a01b0316846001600160a01b03161480611ed85750836001600160a01b0316611ecd8461081a565b6001600160a01b0316145b80611f0857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f2382610f08565b6001600160a01b031614611f9f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161088f565b6001600160a01b0382166120015760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161088f565b61200c600082611dab565b6001600160a01b0383166000908152600360205260408120805460019290612035908490612e15565b90915550506001600160a01b0382166000908152600360205260408120805460019290612063908490612dca565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0381166000908152600e6020908152604080832054600d9092528220546107829161ffff9081169116612da4565b610c918282604051806020016040528060008152506123ed565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156121c75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161088f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61223f848484611f10565b61224b8484848461246b565b6116395760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161088f565b60606011805461079790612e58565b6060816122e55750506040805180820190915260018152600360fc1b602082015290565b8160005b811561230f57806122f981612e93565b91506123089050600a83612de2565b91506122e9565b60008167ffffffffffffffff81111561232a5761232a612f04565b6040519080825280601f01601f191660200182016040528015612354576020820181803683370190505b5090505b8415611f0857612369600183612e15565b9150612376600a86612eae565b612381906030612dca565b60f81b81838151811061239657612396612eee565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506123d0600a86612de2565b9450612358565b6000826123e485846125c3565b14949350505050565b6123f7838361266f565b612404600084848461246b565b6109c55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161088f565b60006001600160a01b0384163b156125b857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124af903390899088908890600401612d24565b602060405180830381600087803b1580156124c957600080fd5b505af19250505080156124f9575060408051601f3d908101601f191682019092526124f691810190612bce565b60015b61259e573d808015612527576040519150601f19603f3d011682016040523d82523d6000602084013e61252c565b606091505b5080516125965760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161088f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f08565b506001949350505050565b600081815b84518110156126675760008582815181106125e5576125e5612eee565b60200260200101519050808311612627576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612654565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061265f81612e93565b9150506125c8565b509392505050565b6001600160a01b0382166126c55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161088f565b6000818152600260205260409020546001600160a01b03161561272a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161088f565b6001600160a01b0382166000908152600360205260408120805460019290612753908490612dca565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546127bd90612e58565b90600052602060002090601f0160209004810192826127df5760008555612825565b82601f106127f857805160ff1916838001178555612825565b82800160010185558215612825579182015b8281111561282557825182559160200191906001019061280a565b50612831929150612835565b5090565b5b808211156128315760008155600101612836565b600067ffffffffffffffff83111561286457612864612f04565b612877601f8401601f1916602001612d73565b905082815283838301111561288b57600080fd5b828260208301376000602084830101529392505050565b803580151581146128b257600080fd5b919050565b600082601f8301126128c857600080fd5b6117218383356020850161284a565b6000602082840312156128e957600080fd5b813561172181612f1a565b60008060006060848603121561290957600080fd5b835161291481612f1a565b809350506020808501519250604085015167ffffffffffffffff8082111561293b57600080fd5b818701915087601f83011261294f57600080fd5b81518181111561296157612961612f04565b8060051b9150612972848301612d73565b8181528481019084860184860187018c101561298d57600080fd5b600095505b838610156129b0578051835260019590950194918601918601612992565b508096505050505050509250925092565b600080604083850312156129d457600080fd5b82356129df81612f1a565b915060208301356129ef81612f1a565b809150509250929050565b600080600060608486031215612a0f57600080fd5b8335612a1a81612f1a565b92506020840135612a2a81612f1a565b929592945050506040919091013590565b60008060008060808587031215612a5157600080fd5b8435612a5c81612f1a565b93506020850135612a6c81612f1a565b925060408501359150606085013567ffffffffffffffff811115612a8f57600080fd5b612a9b878288016128b7565b91505092959194509250565b60008060408385031215612aba57600080fd5b8235612ac581612f1a565b9150612ad3602084016128a2565b90509250929050565b60008060408385031215612aef57600080fd5b8235612afa81612f1a565b946020939093013593505050565b60008060208385031215612b1b57600080fd5b823567ffffffffffffffff80821115612b3357600080fd5b818501915085601f830112612b4757600080fd5b813581811115612b5657600080fd5b8660208260051b8501011115612b6b57600080fd5b60209290920196919550909350505050565b600060208284031215612b8f57600080fd5b611721826128a2565b600060208284031215612baa57600080fd5b5035919050565b600060208284031215612bc357600080fd5b813561172181612f2f565b600060208284031215612be057600080fd5b815161172181612f2f565b600060208284031215612bfd57600080fd5b813567ffffffffffffffff811115612c1457600080fd5b8201601f81018413612c2557600080fd5b611f088482356020840161284a565b60008060408385031215612c4757600080fd5b82359150602083013567ffffffffffffffff811115612c6557600080fd5b612c71858286016128b7565b9150509250929050565b600060208284031215612c8d57600080fd5b813563ffffffff8116811461172157600080fd5b60008151808452612cb9816020860160208601612e2c565b601f01601f19169290920160200192915050565b60008351612cdf818460208801612e2c565b835190830190612cf3818360208801612e2c565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612d566080830184612ca1565b9695505050505050565b6020815260006117216020830184612ca1565b604051601f8201601f1916810167ffffffffffffffff81118282101715612d9c57612d9c612f04565b604052919050565b600061ffff808316818516808303821115612dc157612dc1612ec2565b01949350505050565b60008219821115612ddd57612ddd612ec2565b500190565b600082612df157612df1612ed8565b500490565b6000816000190483118215151615612e1057612e10612ec2565b500290565b600082821015612e2757612e27612ec2565b500390565b60005b83811015612e47578181015183820152602001612e2f565b838111156116395750506000910152565b600181811c90821680612e6c57607f821691505b60208210811415612e8d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ea757612ea7612ec2565b5060010190565b600082612ebd57612ebd612ed8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611d3b57600080fd5b6001600160e01b031981168114611d3b57600080fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a164736f6c6343000806000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a4465706963746976657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4445504943544956455300000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Depictives
Arg [1] : symbol (string): DEPICTIVES
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 4465706963746976657300000000000000000000000000000000000000000000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 4445504943544956455300000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.