Overview
TokenID
2
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
dweebz
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* . ... . ..... ... ...... ..... ...................... ...... ........................... .................................... ...................................... ........................................ ......................................... ..............'''............'''........''.. 'cooooc;. .;' .c:'.,lo:'.',:oxOOkdl,'....';ldkOkxo;'.';dO00OOko; 'clooo .:l' .l0K00KNNXd' cXX:.oWXl':0Xd,'lONWNKKXWW0l'..;xKNWXKXNWXx;':dOOOOOXWXl .c0KKK0 lOWX: ......'cKWO',0WO';KWO;';:,'oXWXxlokKWMWx,.;OWW0old0NWWKc.';:,',ckNWx. .. ,dXW0: .dOl. oNX:.oNNo'dWNd'...:0MNd;xNWNKkl,',dNW0:lKWWXOd:'.:OXd:dXWWX: ;ONXo. .;l; .xWK, 'OMK;;KMKc...;OWNd;cdoccodc,'oNM0::ddoccdo;.,lo:,:xKWNl 'xXNk, .;:::coONXl cXWd'oNWx,..'lKWNOxodkKWNd'.;kWWKxdodOXW0:.':lllloOWWd. .lKWNkc;;:;. .oXNNNNX0d; .dNO''kNO;...':x0NWWWNKOl,...,oOXNWWWX0d:''cONWWWWWXx' lXWWWNNWWWNx. .'',''.. .'. .:;'.....',:cllc;''.....',;cllc:,'...';clllll;. .,;;;;;;;;,. ............................................. ............................................ .......................................... ........................................ ...................................... .................................... .................................. ................................ ............................. ........................ . ................ .. ................ ... ................. ................... ............... ............. .... .... ... ... */ pragma solidity >=0.7.0 <0.9.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract dweebz is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public cost = 0.042 ether; uint256 public maxSupply = 4200; uint256 public maxMintAmountPerTx = 7; bool public paused = true; bool public revealed = false; constructor() ERC721("dweebz", "DWEEBZ") { setHiddenMetadataUri("ipfs://QmTc2k3TthS8e1GpGdLZpayRT5iSCGtsCJES5A9knnmHTF"); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function totalSupply() public view returns (uint256) { return supply.current(); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); _mintLoop(msg.sender, _mintAmount); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw(uint256 _rewardPctAmount) public onlyOwner { // pct rewarded to founder, owylee.eth (bool hs, ) = payable(0x25dBcB2550Abe56e15FEC436F56fB7664dd11a07).call{value: address(this).balance * _rewardPctAmount / 100}(""); require(hs); // transfer remaining balance to dweebz.eth (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function _mintLoop(address _receiver, uint256 _mintAmount) internal { for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); } } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// 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 (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 (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 (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardPctAmount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600890805190602001906200002b92919062000367565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200007992919062000367565b50669536c708910000600b55611068600c556007600d556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff021916908315150217905550348015620000d357600080fd5b506040518060400160405280600681526020017f64776565627a00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f44574545425a000000000000000000000000000000000000000000000000000081525081600090805190602001906200015892919062000367565b5080600190805190602001906200017192919062000367565b5050506200019462000188620001c460201b60201c565b620001cc60201b60201c565b620001be604051806060016040528060358152602001620044a1603591396200029260201b60201c565b620004ff565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a2620001c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002c86200033d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000318906200043e565b60405180910390fd5b80600a90805190602001906200033992919062000367565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003759062000471565b90600052602060002090601f016020900481019282620003995760008555620003e5565b82601f10620003b457805160ff1916838001178555620003e5565b82800160010185558215620003e5579182015b82811115620003e4578251825591602001919060010190620003c7565b5b509050620003f49190620003f8565b5090565b5b8082111562000413576000816000905550600101620003f9565b5090565b60006200042660208362000460565b91506200043382620004d6565b602082019050919050565b60006020820190508181036000830152620004598162000417565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200048a57607f821691505b60208210811415620004a157620004a0620004a7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613f92806200050f6000396000f3fe6080604052600436106101ee5760003560e01c806362b99ad41161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106ca578063d5abeb0114610707578063e0a8085314610732578063e985e9c51461075b578063f2fde38b14610798576101ee565b8063a0712d6814610631578063a22cb4651461064d578063a45ba8e714610676578063b88d4fde146106a1576101ee565b80637ec4a659116100dc5780637ec4a659146105875780638da5cb5b146105b057806394354fd0146105db57806395d89b4114610606576101ee565b806362b99ad4146104cb5780636352211e146104f657806370a0823114610533578063715018a614610570576101ee565b806323b872dd116101855780634fdd43cb116101545780634fdd43cb14610421578063518302271461044a5780635503a0e8146104755780635c975abb146104a0576101ee565b806323b872dd146103695780632e1a7d4d1461039257806342842e0e146103bb578063438b6300146103e4576101ee565b806313faede6116101c157806313faede6146102c157806316ba10e0146102ec57806316c38b3c1461031557806318160ddd1461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612bfc565b6107c1565b604051610227919061324e565b60405180910390f35b34801561023c57600080fd5b506102456108a3565b6040516102529190613269565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612c9f565b610935565b60405161028f91906131c5565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612b8f565b6109ba565b005b3480156102cd57600080fd5b506102d6610ad2565b6040516102e3919061350b565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612c56565b610ad8565b005b34801561032157600080fd5b5061033c60048036038101906103379190612bcf565b610b6e565b005b34801561034a57600080fd5b50610353610c07565b604051610360919061350b565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b9190612a79565b610c18565b005b34801561039e57600080fd5b506103b960048036038101906103b49190612c9f565b610c78565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190612a79565b610e17565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612a0c565b610e37565b604051610418919061322c565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190612c56565b610f42565b005b34801561045657600080fd5b5061045f610fd8565b60405161046c919061324e565b60405180910390f35b34801561048157600080fd5b5061048a610feb565b6040516104979190613269565b60405180910390f35b3480156104ac57600080fd5b506104b5611079565b6040516104c2919061324e565b60405180910390f35b3480156104d757600080fd5b506104e061108c565b6040516104ed9190613269565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612c9f565b61111a565b60405161052a91906131c5565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612a0c565b6111cc565b604051610567919061350b565b60405180910390f35b34801561057c57600080fd5b50610585611284565b005b34801561059357600080fd5b506105ae60048036038101906105a99190612c56565b61130c565b005b3480156105bc57600080fd5b506105c56113a2565b6040516105d291906131c5565b60405180910390f35b3480156105e757600080fd5b506105f06113cc565b6040516105fd919061350b565b60405180910390f35b34801561061257600080fd5b5061061b6113d2565b6040516106289190613269565b60405180910390f35b61064b60048036038101906106469190612c9f565b611464565b005b34801561065957600080fd5b50610674600480360381019061066f9190612b4f565b6115bd565b005b34801561068257600080fd5b5061068b6115d3565b6040516106989190613269565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190612acc565b611661565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190612c9f565b6116c3565b6040516106fe9190613269565b60405180910390f35b34801561071357600080fd5b5061071c61181c565b604051610729919061350b565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190612bcf565b611822565b005b34801561076757600080fd5b50610782600480360381019061077d9190612a39565b6118bb565b60405161078f919061324e565b60405180910390f35b3480156107a457600080fd5b506107bf60048036038101906107ba9190612a0c565b61194f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061089c575061089b82611a47565b5b9050919050565b6060600080546108b290613814565b80601f01602080910402602001604051908101604052809291908181526020018280546108de90613814565b801561092b5780601f106109005761010080835404028352916020019161092b565b820191906000526020600020905b81548152906001019060200180831161090e57829003601f168201915b5050505050905090565b600061094082611ab1565b61097f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109769061340b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c58261111a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d9061348b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a55611b1d565b73ffffffffffffffffffffffffffffffffffffffff161480610a845750610a8381610a7e611b1d565b6118bb565b5b610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba9061338b565b60405180910390fd5b610acd8383611b25565b505050565b600b5481565b610ae0611b1d565b73ffffffffffffffffffffffffffffffffffffffff16610afe6113a2565b73ffffffffffffffffffffffffffffffffffffffff1614610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b9061342b565b60405180910390fd5b8060099080519060200190610b6a929190612820565b5050565b610b76611b1d565b73ffffffffffffffffffffffffffffffffffffffff16610b946113a2565b73ffffffffffffffffffffffffffffffffffffffff1614610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be19061342b565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610c136007611bde565b905090565b610c29610c23611b1d565b82611bec565b610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f906134cb565b60405180910390fd5b610c73838383611cca565b505050565b610c80611b1d565b73ffffffffffffffffffffffffffffffffffffffff16610c9e6113a2565b73ffffffffffffffffffffffffffffffffffffffff1614610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb9061342b565b60405180910390fd5b60007325dbcb2550abe56e15fec436f56fb7664dd11a0773ffffffffffffffffffffffffffffffffffffffff1660648347610d2f91906136d0565b610d39919061369f565b604051610d45906131b0565b60006040518083038185875af1925050503d8060008114610d82576040519150601f19603f3d011682016040523d82523d6000602084013e610d87565b606091505b5050905080610d9557600080fd5b6000610d9f6113a2565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dc2906131b0565b60006040518083038185875af1925050503d8060008114610dff576040519150601f19603f3d011682016040523d82523d6000602084013e610e04565b606091505b5050905080610e1257600080fd5b505050565b610e3283838360405180602001604052806000815250611661565b505050565b60606000610e44836111cc565b905060008167ffffffffffffffff811115610e6257610e616139ad565b5b604051908082528060200260200182016040528015610e905781602001602082028036833780820191505090505b50905060006001905060005b8381108015610ead5750600c548211155b15610f36576000610ebd8361111a565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f225782848381518110610f0757610f0661397e565b5b6020026020010181815250508180610f1e90613877565b9250505b8280610f2d90613877565b93505050610e9c565b82945050505050919050565b610f4a611b1d565b73ffffffffffffffffffffffffffffffffffffffff16610f686113a2565b73ffffffffffffffffffffffffffffffffffffffff1614610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb59061342b565b60405180910390fd5b80600a9080519060200190610fd4929190612820565b5050565b600e60019054906101000a900460ff1681565b60098054610ff890613814565b80601f016020809104026020016040519081016040528092919081815260200182805461102490613814565b80156110715780601f1061104657610100808354040283529160200191611071565b820191906000526020600020905b81548152906001019060200180831161105457829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b6008805461109990613814565b80601f01602080910402602001604051908101604052809291908181526020018280546110c590613814565b80156111125780601f106110e757610100808354040283529160200191611112565b820191906000526020600020905b8154815290600101906020018083116110f557829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba906133cb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611234906133ab565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61128c611b1d565b73ffffffffffffffffffffffffffffffffffffffff166112aa6113a2565b73ffffffffffffffffffffffffffffffffffffffff1614611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f79061342b565b60405180910390fd5b61130a6000611f31565b565b611314611b1d565b73ffffffffffffffffffffffffffffffffffffffff166113326113a2565b73ffffffffffffffffffffffffffffffffffffffff1614611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f9061342b565b60405180910390fd5b806008908051906020019061139e929190612820565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546113e190613814565b80601f016020809104026020016040519081016040528092919081815260200182805461140d90613814565b801561145a5780601f1061142f5761010080835404028352916020019161145a565b820191906000526020600020905b81548152906001019060200180831161143d57829003601f168201915b5050505050905090565b806000811180156114775750600d548111155b6114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad9061330b565b60405180910390fd5b600c54816114c46007611bde565b6114ce9190613649565b111561150f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611506906134ab565b60405180910390fd5b600e60009054906101000a900460ff161561155f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115569061344b565b60405180910390fd5b81600b5461156d91906136d0565b3410156115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a6906134eb565b60405180910390fd5b6115b93383611ff7565b5050565b6115cf6115c8611b1d565b8383612037565b5050565b600a80546115e090613814565b80601f016020809104026020016040519081016040528092919081815260200182805461160c90613814565b80156116595780601f1061162e57610100808354040283529160200191611659565b820191906000526020600020905b81548152906001019060200180831161163c57829003601f168201915b505050505081565b61167261166c611b1d565b83611bec565b6116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a8906134cb565b60405180910390fd5b6116bd848484846121a4565b50505050565b60606116ce82611ab1565b61170d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117049061346b565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514156117bb57600a805461173690613814565b80601f016020809104026020016040519081016040528092919081815260200182805461176290613814565b80156117af5780601f10611784576101008083540402835291602001916117af565b820191906000526020600020905b81548152906001019060200180831161179257829003601f168201915b50505050509050611817565b60006117c5612200565b905060008151116117e55760405180602001604052806000815250611813565b806117ef84612292565b60096040516020016118039392919061317f565b6040516020818303038152906040525b9150505b919050565b600c5481565b61182a611b1d565b73ffffffffffffffffffffffffffffffffffffffff166118486113a2565b73ffffffffffffffffffffffffffffffffffffffff161461189e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118959061342b565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611957611b1d565b73ffffffffffffffffffffffffffffffffffffffff166119756113a2565b73ffffffffffffffffffffffffffffffffffffffff16146119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c29061342b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a32906132ab565b60405180910390fd5b611a4481611f31565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b988361111a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611bf782611ab1565b611c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2d9061336b565b60405180910390fd5b6000611c418361111a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cb057508373ffffffffffffffffffffffffffffffffffffffff16611c9884610935565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cc15750611cc081856118bb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cea8261111a565b73ffffffffffffffffffffffffffffffffffffffff1614611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d37906132cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da79061332b565b60405180910390fd5b611dbb8383836123f3565b611dc6600082611b25565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e16919061372a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e6d9190613649565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f2c8383836123f8565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156120325761200c60076123fd565b61201f8361201a6007611bde565b612413565b808061202a90613877565b915050611ffa565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d9061334b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612197919061324e565b60405180910390a3505050565b6121af848484611cca565b6121bb84848484612431565b6121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f19061328b565b60405180910390fd5b50505050565b60606008805461220f90613814565b80601f016020809104026020016040519081016040528092919081815260200182805461223b90613814565b80156122885780601f1061225d57610100808354040283529160200191612288565b820191906000526020600020905b81548152906001019060200180831161226b57829003601f168201915b5050505050905090565b606060008214156122da576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123ee565b600082905060005b6000821461230c5780806122f590613877565b915050600a82612305919061369f565b91506122e2565b60008167ffffffffffffffff811115612328576123276139ad565b5b6040519080825280601f01601f19166020018201604052801561235a5781602001600182028036833780820191505090505b5090505b600085146123e757600182612373919061372a565b9150600a8561238291906138c0565b603061238e9190613649565b60f81b8183815181106123a4576123a361397e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123e0919061369f565b945061235e565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b61242d8282604051806020016040528060008152506125c8565b5050565b60006124528473ffffffffffffffffffffffffffffffffffffffff16612623565b156125bb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261247b611b1d565b8786866040518563ffffffff1660e01b815260040161249d94939291906131e0565b602060405180830381600087803b1580156124b757600080fd5b505af19250505080156124e857506040513d601f19601f820116820180604052508101906124e59190612c29565b60015b61256b573d8060008114612518576040519150601f19603f3d011682016040523d82523d6000602084013e61251d565b606091505b50600081511415612563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255a9061328b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125c0565b600190505b949350505050565b6125d28383612646565b6125df6000848484612431565b61261e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126159061328b565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ad906133eb565b60405180910390fd5b6126bf81611ab1565b156126ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f6906132eb565b60405180910390fd5b61270b600083836123f3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461275b9190613649565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461281c600083836123f8565b5050565b82805461282c90613814565b90600052602060002090601f01602090048101928261284e5760008555612895565b82601f1061286757805160ff1916838001178555612895565b82800160010185558215612895579182015b82811115612894578251825591602001919060010190612879565b5b5090506128a291906128a6565b5090565b5b808211156128bf5760008160009055506001016128a7565b5090565b60006128d66128d18461354b565b613526565b9050828152602081018484840111156128f2576128f16139e1565b5b6128fd8482856137d2565b509392505050565b60006129186129138461357c565b613526565b905082815260208101848484011115612934576129336139e1565b5b61293f8482856137d2565b509392505050565b60008135905061295681613f00565b92915050565b60008135905061296b81613f17565b92915050565b60008135905061298081613f2e565b92915050565b60008151905061299581613f2e565b92915050565b600082601f8301126129b0576129af6139dc565b5b81356129c08482602086016128c3565b91505092915050565b600082601f8301126129de576129dd6139dc565b5b81356129ee848260208601612905565b91505092915050565b600081359050612a0681613f45565b92915050565b600060208284031215612a2257612a216139eb565b5b6000612a3084828501612947565b91505092915050565b60008060408385031215612a5057612a4f6139eb565b5b6000612a5e85828601612947565b9250506020612a6f85828601612947565b9150509250929050565b600080600060608486031215612a9257612a916139eb565b5b6000612aa086828701612947565b9350506020612ab186828701612947565b9250506040612ac2868287016129f7565b9150509250925092565b60008060008060808587031215612ae657612ae56139eb565b5b6000612af487828801612947565b9450506020612b0587828801612947565b9350506040612b16878288016129f7565b925050606085013567ffffffffffffffff811115612b3757612b366139e6565b5b612b438782880161299b565b91505092959194509250565b60008060408385031215612b6657612b656139eb565b5b6000612b7485828601612947565b9250506020612b858582860161295c565b9150509250929050565b60008060408385031215612ba657612ba56139eb565b5b6000612bb485828601612947565b9250506020612bc5858286016129f7565b9150509250929050565b600060208284031215612be557612be46139eb565b5b6000612bf38482850161295c565b91505092915050565b600060208284031215612c1257612c116139eb565b5b6000612c2084828501612971565b91505092915050565b600060208284031215612c3f57612c3e6139eb565b5b6000612c4d84828501612986565b91505092915050565b600060208284031215612c6c57612c6b6139eb565b5b600082013567ffffffffffffffff811115612c8a57612c896139e6565b5b612c96848285016129c9565b91505092915050565b600060208284031215612cb557612cb46139eb565b5b6000612cc3848285016129f7565b91505092915050565b6000612cd88383613161565b60208301905092915050565b612ced8161375e565b82525050565b6000612cfe826135d2565b612d088185613600565b9350612d13836135ad565b8060005b83811015612d44578151612d2b8882612ccc565b9750612d36836135f3565b925050600181019050612d17565b5085935050505092915050565b612d5a81613770565b82525050565b6000612d6b826135dd565b612d758185613611565b9350612d858185602086016137e1565b612d8e816139f0565b840191505092915050565b6000612da4826135e8565b612dae818561362d565b9350612dbe8185602086016137e1565b612dc7816139f0565b840191505092915050565b6000612ddd826135e8565b612de7818561363e565b9350612df78185602086016137e1565b80840191505092915050565b60008154612e1081613814565b612e1a818661363e565b94506001821660008114612e355760018114612e4657612e79565b60ff19831686528186019350612e79565b612e4f856135bd565b60005b83811015612e7157815481890152600182019150602081019050612e52565b838801955050505b50505092915050565b6000612e8f60328361362d565b9150612e9a82613a01565b604082019050919050565b6000612eb260268361362d565b9150612ebd82613a50565b604082019050919050565b6000612ed560258361362d565b9150612ee082613a9f565b604082019050919050565b6000612ef8601c8361362d565b9150612f0382613aee565b602082019050919050565b6000612f1b60148361362d565b9150612f2682613b17565b602082019050919050565b6000612f3e60248361362d565b9150612f4982613b40565b604082019050919050565b6000612f6160198361362d565b9150612f6c82613b8f565b602082019050919050565b6000612f84602c8361362d565b9150612f8f82613bb8565b604082019050919050565b6000612fa760388361362d565b9150612fb282613c07565b604082019050919050565b6000612fca602a8361362d565b9150612fd582613c56565b604082019050919050565b6000612fed60298361362d565b9150612ff882613ca5565b604082019050919050565b600061301060208361362d565b915061301b82613cf4565b602082019050919050565b6000613033602c8361362d565b915061303e82613d1d565b604082019050919050565b600061305660208361362d565b915061306182613d6c565b602082019050919050565b600061307960178361362d565b915061308482613d95565b602082019050919050565b600061309c602f8361362d565b91506130a782613dbe565b604082019050919050565b60006130bf60218361362d565b91506130ca82613e0d565b604082019050919050565b60006130e2600083613622565b91506130ed82613e5c565b600082019050919050565b600061310560148361362d565b915061311082613e5f565b602082019050919050565b600061312860318361362d565b915061313382613e88565b604082019050919050565b600061314b60138361362d565b915061315682613ed7565b602082019050919050565b61316a816137c8565b82525050565b613179816137c8565b82525050565b600061318b8286612dd2565b91506131978285612dd2565b91506131a38284612e03565b9150819050949350505050565b60006131bb826130d5565b9150819050919050565b60006020820190506131da6000830184612ce4565b92915050565b60006080820190506131f56000830187612ce4565b6132026020830186612ce4565b61320f6040830185613170565b81810360608301526132218184612d60565b905095945050505050565b600060208201905081810360008301526132468184612cf3565b905092915050565b60006020820190506132636000830184612d51565b92915050565b600060208201905081810360008301526132838184612d99565b905092915050565b600060208201905081810360008301526132a481612e82565b9050919050565b600060208201905081810360008301526132c481612ea5565b9050919050565b600060208201905081810360008301526132e481612ec8565b9050919050565b6000602082019050818103600083015261330481612eeb565b9050919050565b6000602082019050818103600083015261332481612f0e565b9050919050565b6000602082019050818103600083015261334481612f31565b9050919050565b6000602082019050818103600083015261336481612f54565b9050919050565b6000602082019050818103600083015261338481612f77565b9050919050565b600060208201905081810360008301526133a481612f9a565b9050919050565b600060208201905081810360008301526133c481612fbd565b9050919050565b600060208201905081810360008301526133e481612fe0565b9050919050565b6000602082019050818103600083015261340481613003565b9050919050565b6000602082019050818103600083015261342481613026565b9050919050565b6000602082019050818103600083015261344481613049565b9050919050565b600060208201905081810360008301526134648161306c565b9050919050565b600060208201905081810360008301526134848161308f565b9050919050565b600060208201905081810360008301526134a4816130b2565b9050919050565b600060208201905081810360008301526134c4816130f8565b9050919050565b600060208201905081810360008301526134e48161311b565b9050919050565b600060208201905081810360008301526135048161313e565b9050919050565b60006020820190506135206000830184613170565b92915050565b6000613530613541565b905061353c8282613846565b919050565b6000604051905090565b600067ffffffffffffffff821115613566576135656139ad565b5b61356f826139f0565b9050602081019050919050565b600067ffffffffffffffff821115613597576135966139ad565b5b6135a0826139f0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613654826137c8565b915061365f836137c8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613694576136936138f1565b5b828201905092915050565b60006136aa826137c8565b91506136b5836137c8565b9250826136c5576136c4613920565b5b828204905092915050565b60006136db826137c8565b91506136e6836137c8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561371f5761371e6138f1565b5b828202905092915050565b6000613735826137c8565b9150613740836137c8565b925082821015613753576137526138f1565b5b828203905092915050565b6000613769826137a8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137ff5780820151818401526020810190506137e4565b8381111561380e576000848401525b50505050565b6000600282049050600182168061382c57607f821691505b602082108114156138405761383f61394f565b5b50919050565b61384f826139f0565b810181811067ffffffffffffffff8211171561386e5761386d6139ad565b5b80604052505050565b6000613882826137c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138b5576138b46138f1565b5b600182019050919050565b60006138cb826137c8565b91506138d6836137c8565b9250826138e6576138e5613920565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613f098161375e565b8114613f1457600080fd5b50565b613f2081613770565b8114613f2b57600080fd5b50565b613f378161377c565b8114613f4257600080fd5b50565b613f4e816137c8565b8114613f5957600080fd5b5056fea2646970667358221220ecb569baaeb4501b1d249ad9f82f03e9d93f2600ea68d59f4c0aba17d722659664736f6c63430008070033697066733a2f2f516d5463326b3354746853386531477047644c5a706179525435695343477473434a45533541396b6e6e6d485446
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c806362b99ad41161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106ca578063d5abeb0114610707578063e0a8085314610732578063e985e9c51461075b578063f2fde38b14610798576101ee565b8063a0712d6814610631578063a22cb4651461064d578063a45ba8e714610676578063b88d4fde146106a1576101ee565b80637ec4a659116100dc5780637ec4a659146105875780638da5cb5b146105b057806394354fd0146105db57806395d89b4114610606576101ee565b806362b99ad4146104cb5780636352211e146104f657806370a0823114610533578063715018a614610570576101ee565b806323b872dd116101855780634fdd43cb116101545780634fdd43cb14610421578063518302271461044a5780635503a0e8146104755780635c975abb146104a0576101ee565b806323b872dd146103695780632e1a7d4d1461039257806342842e0e146103bb578063438b6300146103e4576101ee565b806313faede6116101c157806313faede6146102c157806316ba10e0146102ec57806316c38b3c1461031557806318160ddd1461033e576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612bfc565b6107c1565b604051610227919061324e565b60405180910390f35b34801561023c57600080fd5b506102456108a3565b6040516102529190613269565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612c9f565b610935565b60405161028f91906131c5565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612b8f565b6109ba565b005b3480156102cd57600080fd5b506102d6610ad2565b6040516102e3919061350b565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612c56565b610ad8565b005b34801561032157600080fd5b5061033c60048036038101906103379190612bcf565b610b6e565b005b34801561034a57600080fd5b50610353610c07565b604051610360919061350b565b60405180910390f35b34801561037557600080fd5b50610390600480360381019061038b9190612a79565b610c18565b005b34801561039e57600080fd5b506103b960048036038101906103b49190612c9f565b610c78565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190612a79565b610e17565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612a0c565b610e37565b604051610418919061322c565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190612c56565b610f42565b005b34801561045657600080fd5b5061045f610fd8565b60405161046c919061324e565b60405180910390f35b34801561048157600080fd5b5061048a610feb565b6040516104979190613269565b60405180910390f35b3480156104ac57600080fd5b506104b5611079565b6040516104c2919061324e565b60405180910390f35b3480156104d757600080fd5b506104e061108c565b6040516104ed9190613269565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190612c9f565b61111a565b60405161052a91906131c5565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612a0c565b6111cc565b604051610567919061350b565b60405180910390f35b34801561057c57600080fd5b50610585611284565b005b34801561059357600080fd5b506105ae60048036038101906105a99190612c56565b61130c565b005b3480156105bc57600080fd5b506105c56113a2565b6040516105d291906131c5565b60405180910390f35b3480156105e757600080fd5b506105f06113cc565b6040516105fd919061350b565b60405180910390f35b34801561061257600080fd5b5061061b6113d2565b6040516106289190613269565b60405180910390f35b61064b60048036038101906106469190612c9f565b611464565b005b34801561065957600080fd5b50610674600480360381019061066f9190612b4f565b6115bd565b005b34801561068257600080fd5b5061068b6115d3565b6040516106989190613269565b60405180910390f35b3480156106ad57600080fd5b506106c860048036038101906106c39190612acc565b611661565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190612c9f565b6116c3565b6040516106fe9190613269565b60405180910390f35b34801561071357600080fd5b5061071c61181c565b604051610729919061350b565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190612bcf565b611822565b005b34801561076757600080fd5b50610782600480360381019061077d9190612a39565b6118bb565b60405161078f919061324e565b60405180910390f35b3480156107a457600080fd5b506107bf60048036038101906107ba9190612a0c565b61194f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061089c575061089b82611a47565b5b9050919050565b6060600080546108b290613814565b80601f01602080910402602001604051908101604052809291908181526020018280546108de90613814565b801561092b5780601f106109005761010080835404028352916020019161092b565b820191906000526020600020905b81548152906001019060200180831161090e57829003601f168201915b5050505050905090565b600061094082611ab1565b61097f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109769061340b565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c58261111a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d9061348b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a55611b1d565b73ffffffffffffffffffffffffffffffffffffffff161480610a845750610a8381610a7e611b1d565b6118bb565b5b610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba9061338b565b60405180910390fd5b610acd8383611b25565b505050565b600b5481565b610ae0611b1d565b73ffffffffffffffffffffffffffffffffffffffff16610afe6113a2565b73ffffffffffffffffffffffffffffffffffffffff1614610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b9061342b565b60405180910390fd5b8060099080519060200190610b6a929190612820565b5050565b610b76611b1d565b73ffffffffffffffffffffffffffffffffffffffff16610b946113a2565b73ffffffffffffffffffffffffffffffffffffffff1614610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be19061342b565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610c136007611bde565b905090565b610c29610c23611b1d565b82611bec565b610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f906134cb565b60405180910390fd5b610c73838383611cca565b505050565b610c80611b1d565b73ffffffffffffffffffffffffffffffffffffffff16610c9e6113a2565b73ffffffffffffffffffffffffffffffffffffffff1614610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb9061342b565b60405180910390fd5b60007325dbcb2550abe56e15fec436f56fb7664dd11a0773ffffffffffffffffffffffffffffffffffffffff1660648347610d2f91906136d0565b610d39919061369f565b604051610d45906131b0565b60006040518083038185875af1925050503d8060008114610d82576040519150601f19603f3d011682016040523d82523d6000602084013e610d87565b606091505b5050905080610d9557600080fd5b6000610d9f6113a2565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dc2906131b0565b60006040518083038185875af1925050503d8060008114610dff576040519150601f19603f3d011682016040523d82523d6000602084013e610e04565b606091505b5050905080610e1257600080fd5b505050565b610e3283838360405180602001604052806000815250611661565b505050565b60606000610e44836111cc565b905060008167ffffffffffffffff811115610e6257610e616139ad565b5b604051908082528060200260200182016040528015610e905781602001602082028036833780820191505090505b50905060006001905060005b8381108015610ead5750600c548211155b15610f36576000610ebd8361111a565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f225782848381518110610f0757610f0661397e565b5b6020026020010181815250508180610f1e90613877565b9250505b8280610f2d90613877565b93505050610e9c565b82945050505050919050565b610f4a611b1d565b73ffffffffffffffffffffffffffffffffffffffff16610f686113a2565b73ffffffffffffffffffffffffffffffffffffffff1614610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb59061342b565b60405180910390fd5b80600a9080519060200190610fd4929190612820565b5050565b600e60019054906101000a900460ff1681565b60098054610ff890613814565b80601f016020809104026020016040519081016040528092919081815260200182805461102490613814565b80156110715780601f1061104657610100808354040283529160200191611071565b820191906000526020600020905b81548152906001019060200180831161105457829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b6008805461109990613814565b80601f01602080910402602001604051908101604052809291908181526020018280546110c590613814565b80156111125780601f106110e757610100808354040283529160200191611112565b820191906000526020600020905b8154815290600101906020018083116110f557829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba906133cb565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611234906133ab565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61128c611b1d565b73ffffffffffffffffffffffffffffffffffffffff166112aa6113a2565b73ffffffffffffffffffffffffffffffffffffffff1614611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f79061342b565b60405180910390fd5b61130a6000611f31565b565b611314611b1d565b73ffffffffffffffffffffffffffffffffffffffff166113326113a2565b73ffffffffffffffffffffffffffffffffffffffff1614611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f9061342b565b60405180910390fd5b806008908051906020019061139e929190612820565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546113e190613814565b80601f016020809104026020016040519081016040528092919081815260200182805461140d90613814565b801561145a5780601f1061142f5761010080835404028352916020019161145a565b820191906000526020600020905b81548152906001019060200180831161143d57829003601f168201915b5050505050905090565b806000811180156114775750600d548111155b6114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad9061330b565b60405180910390fd5b600c54816114c46007611bde565b6114ce9190613649565b111561150f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611506906134ab565b60405180910390fd5b600e60009054906101000a900460ff161561155f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115569061344b565b60405180910390fd5b81600b5461156d91906136d0565b3410156115af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a6906134eb565b60405180910390fd5b6115b93383611ff7565b5050565b6115cf6115c8611b1d565b8383612037565b5050565b600a80546115e090613814565b80601f016020809104026020016040519081016040528092919081815260200182805461160c90613814565b80156116595780601f1061162e57610100808354040283529160200191611659565b820191906000526020600020905b81548152906001019060200180831161163c57829003601f168201915b505050505081565b61167261166c611b1d565b83611bec565b6116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a8906134cb565b60405180910390fd5b6116bd848484846121a4565b50505050565b60606116ce82611ab1565b61170d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117049061346b565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514156117bb57600a805461173690613814565b80601f016020809104026020016040519081016040528092919081815260200182805461176290613814565b80156117af5780601f10611784576101008083540402835291602001916117af565b820191906000526020600020905b81548152906001019060200180831161179257829003601f168201915b50505050509050611817565b60006117c5612200565b905060008151116117e55760405180602001604052806000815250611813565b806117ef84612292565b60096040516020016118039392919061317f565b6040516020818303038152906040525b9150505b919050565b600c5481565b61182a611b1d565b73ffffffffffffffffffffffffffffffffffffffff166118486113a2565b73ffffffffffffffffffffffffffffffffffffffff161461189e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118959061342b565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611957611b1d565b73ffffffffffffffffffffffffffffffffffffffff166119756113a2565b73ffffffffffffffffffffffffffffffffffffffff16146119cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c29061342b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a32906132ab565b60405180910390fd5b611a4481611f31565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b988361111a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611bf782611ab1565b611c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2d9061336b565b60405180910390fd5b6000611c418361111a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cb057508373ffffffffffffffffffffffffffffffffffffffff16611c9884610935565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cc15750611cc081856118bb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cea8261111a565b73ffffffffffffffffffffffffffffffffffffffff1614611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d37906132cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da79061332b565b60405180910390fd5b611dbb8383836123f3565b611dc6600082611b25565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e16919061372a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e6d9190613649565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f2c8383836123f8565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156120325761200c60076123fd565b61201f8361201a6007611bde565b612413565b808061202a90613877565b915050611ffa565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d9061334b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612197919061324e565b60405180910390a3505050565b6121af848484611cca565b6121bb84848484612431565b6121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f19061328b565b60405180910390fd5b50505050565b60606008805461220f90613814565b80601f016020809104026020016040519081016040528092919081815260200182805461223b90613814565b80156122885780601f1061225d57610100808354040283529160200191612288565b820191906000526020600020905b81548152906001019060200180831161226b57829003601f168201915b5050505050905090565b606060008214156122da576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123ee565b600082905060005b6000821461230c5780806122f590613877565b915050600a82612305919061369f565b91506122e2565b60008167ffffffffffffffff811115612328576123276139ad565b5b6040519080825280601f01601f19166020018201604052801561235a5781602001600182028036833780820191505090505b5090505b600085146123e757600182612373919061372a565b9150600a8561238291906138c0565b603061238e9190613649565b60f81b8183815181106123a4576123a361397e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123e0919061369f565b945061235e565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b61242d8282604051806020016040528060008152506125c8565b5050565b60006124528473ffffffffffffffffffffffffffffffffffffffff16612623565b156125bb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261247b611b1d565b8786866040518563ffffffff1660e01b815260040161249d94939291906131e0565b602060405180830381600087803b1580156124b757600080fd5b505af19250505080156124e857506040513d601f19601f820116820180604052508101906124e59190612c29565b60015b61256b573d8060008114612518576040519150601f19603f3d011682016040523d82523d6000602084013e61251d565b606091505b50600081511415612563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255a9061328b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125c0565b600190505b949350505050565b6125d28383612646565b6125df6000848484612431565b61261e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126159061328b565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ad906133eb565b60405180910390fd5b6126bf81611ab1565b156126ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f6906132eb565b60405180910390fd5b61270b600083836123f3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461275b9190613649565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461281c600083836123f8565b5050565b82805461282c90613814565b90600052602060002090601f01602090048101928261284e5760008555612895565b82601f1061286757805160ff1916838001178555612895565b82800160010185558215612895579182015b82811115612894578251825591602001919060010190612879565b5b5090506128a291906128a6565b5090565b5b808211156128bf5760008160009055506001016128a7565b5090565b60006128d66128d18461354b565b613526565b9050828152602081018484840111156128f2576128f16139e1565b5b6128fd8482856137d2565b509392505050565b60006129186129138461357c565b613526565b905082815260208101848484011115612934576129336139e1565b5b61293f8482856137d2565b509392505050565b60008135905061295681613f00565b92915050565b60008135905061296b81613f17565b92915050565b60008135905061298081613f2e565b92915050565b60008151905061299581613f2e565b92915050565b600082601f8301126129b0576129af6139dc565b5b81356129c08482602086016128c3565b91505092915050565b600082601f8301126129de576129dd6139dc565b5b81356129ee848260208601612905565b91505092915050565b600081359050612a0681613f45565b92915050565b600060208284031215612a2257612a216139eb565b5b6000612a3084828501612947565b91505092915050565b60008060408385031215612a5057612a4f6139eb565b5b6000612a5e85828601612947565b9250506020612a6f85828601612947565b9150509250929050565b600080600060608486031215612a9257612a916139eb565b5b6000612aa086828701612947565b9350506020612ab186828701612947565b9250506040612ac2868287016129f7565b9150509250925092565b60008060008060808587031215612ae657612ae56139eb565b5b6000612af487828801612947565b9450506020612b0587828801612947565b9350506040612b16878288016129f7565b925050606085013567ffffffffffffffff811115612b3757612b366139e6565b5b612b438782880161299b565b91505092959194509250565b60008060408385031215612b6657612b656139eb565b5b6000612b7485828601612947565b9250506020612b858582860161295c565b9150509250929050565b60008060408385031215612ba657612ba56139eb565b5b6000612bb485828601612947565b9250506020612bc5858286016129f7565b9150509250929050565b600060208284031215612be557612be46139eb565b5b6000612bf38482850161295c565b91505092915050565b600060208284031215612c1257612c116139eb565b5b6000612c2084828501612971565b91505092915050565b600060208284031215612c3f57612c3e6139eb565b5b6000612c4d84828501612986565b91505092915050565b600060208284031215612c6c57612c6b6139eb565b5b600082013567ffffffffffffffff811115612c8a57612c896139e6565b5b612c96848285016129c9565b91505092915050565b600060208284031215612cb557612cb46139eb565b5b6000612cc3848285016129f7565b91505092915050565b6000612cd88383613161565b60208301905092915050565b612ced8161375e565b82525050565b6000612cfe826135d2565b612d088185613600565b9350612d13836135ad565b8060005b83811015612d44578151612d2b8882612ccc565b9750612d36836135f3565b925050600181019050612d17565b5085935050505092915050565b612d5a81613770565b82525050565b6000612d6b826135dd565b612d758185613611565b9350612d858185602086016137e1565b612d8e816139f0565b840191505092915050565b6000612da4826135e8565b612dae818561362d565b9350612dbe8185602086016137e1565b612dc7816139f0565b840191505092915050565b6000612ddd826135e8565b612de7818561363e565b9350612df78185602086016137e1565b80840191505092915050565b60008154612e1081613814565b612e1a818661363e565b94506001821660008114612e355760018114612e4657612e79565b60ff19831686528186019350612e79565b612e4f856135bd565b60005b83811015612e7157815481890152600182019150602081019050612e52565b838801955050505b50505092915050565b6000612e8f60328361362d565b9150612e9a82613a01565b604082019050919050565b6000612eb260268361362d565b9150612ebd82613a50565b604082019050919050565b6000612ed560258361362d565b9150612ee082613a9f565b604082019050919050565b6000612ef8601c8361362d565b9150612f0382613aee565b602082019050919050565b6000612f1b60148361362d565b9150612f2682613b17565b602082019050919050565b6000612f3e60248361362d565b9150612f4982613b40565b604082019050919050565b6000612f6160198361362d565b9150612f6c82613b8f565b602082019050919050565b6000612f84602c8361362d565b9150612f8f82613bb8565b604082019050919050565b6000612fa760388361362d565b9150612fb282613c07565b604082019050919050565b6000612fca602a8361362d565b9150612fd582613c56565b604082019050919050565b6000612fed60298361362d565b9150612ff882613ca5565b604082019050919050565b600061301060208361362d565b915061301b82613cf4565b602082019050919050565b6000613033602c8361362d565b915061303e82613d1d565b604082019050919050565b600061305660208361362d565b915061306182613d6c565b602082019050919050565b600061307960178361362d565b915061308482613d95565b602082019050919050565b600061309c602f8361362d565b91506130a782613dbe565b604082019050919050565b60006130bf60218361362d565b91506130ca82613e0d565b604082019050919050565b60006130e2600083613622565b91506130ed82613e5c565b600082019050919050565b600061310560148361362d565b915061311082613e5f565b602082019050919050565b600061312860318361362d565b915061313382613e88565b604082019050919050565b600061314b60138361362d565b915061315682613ed7565b602082019050919050565b61316a816137c8565b82525050565b613179816137c8565b82525050565b600061318b8286612dd2565b91506131978285612dd2565b91506131a38284612e03565b9150819050949350505050565b60006131bb826130d5565b9150819050919050565b60006020820190506131da6000830184612ce4565b92915050565b60006080820190506131f56000830187612ce4565b6132026020830186612ce4565b61320f6040830185613170565b81810360608301526132218184612d60565b905095945050505050565b600060208201905081810360008301526132468184612cf3565b905092915050565b60006020820190506132636000830184612d51565b92915050565b600060208201905081810360008301526132838184612d99565b905092915050565b600060208201905081810360008301526132a481612e82565b9050919050565b600060208201905081810360008301526132c481612ea5565b9050919050565b600060208201905081810360008301526132e481612ec8565b9050919050565b6000602082019050818103600083015261330481612eeb565b9050919050565b6000602082019050818103600083015261332481612f0e565b9050919050565b6000602082019050818103600083015261334481612f31565b9050919050565b6000602082019050818103600083015261336481612f54565b9050919050565b6000602082019050818103600083015261338481612f77565b9050919050565b600060208201905081810360008301526133a481612f9a565b9050919050565b600060208201905081810360008301526133c481612fbd565b9050919050565b600060208201905081810360008301526133e481612fe0565b9050919050565b6000602082019050818103600083015261340481613003565b9050919050565b6000602082019050818103600083015261342481613026565b9050919050565b6000602082019050818103600083015261344481613049565b9050919050565b600060208201905081810360008301526134648161306c565b9050919050565b600060208201905081810360008301526134848161308f565b9050919050565b600060208201905081810360008301526134a4816130b2565b9050919050565b600060208201905081810360008301526134c4816130f8565b9050919050565b600060208201905081810360008301526134e48161311b565b9050919050565b600060208201905081810360008301526135048161313e565b9050919050565b60006020820190506135206000830184613170565b92915050565b6000613530613541565b905061353c8282613846565b919050565b6000604051905090565b600067ffffffffffffffff821115613566576135656139ad565b5b61356f826139f0565b9050602081019050919050565b600067ffffffffffffffff821115613597576135966139ad565b5b6135a0826139f0565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613654826137c8565b915061365f836137c8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613694576136936138f1565b5b828201905092915050565b60006136aa826137c8565b91506136b5836137c8565b9250826136c5576136c4613920565b5b828204905092915050565b60006136db826137c8565b91506136e6836137c8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561371f5761371e6138f1565b5b828202905092915050565b6000613735826137c8565b9150613740836137c8565b925082821015613753576137526138f1565b5b828203905092915050565b6000613769826137a8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137ff5780820151818401526020810190506137e4565b8381111561380e576000848401525b50505050565b6000600282049050600182168061382c57607f821691505b602082108114156138405761383f61394f565b5b50919050565b61384f826139f0565b810181811067ffffffffffffffff8211171561386e5761386d6139ad565b5b80604052505050565b6000613882826137c8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138b5576138b46138f1565b5b600182019050919050565b60006138cb826137c8565b91506138d6836137c8565b9250826138e6576138e5613920565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613f098161375e565b8114613f1457600080fd5b50565b613f2081613770565b8114613f2b57600080fd5b50565b613f378161377c565b8114613f4257600080fd5b50565b613f4e816137c8565b8114613f5957600080fd5b5056fea2646970667358221220ecb569baaeb4501b1d249ad9f82f03e9d93f2600ea68d59f4c0aba17d722659664736f6c63430008070033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.