ERC-721
Overview
Max Total Supply
235 DBNFT
Holders
66
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DBNFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DuckBuckNFT
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; // ____________ ______________ ____________ ______________ __ //| \ \ / | \ |_/ \ _ \ \ / | \ |_/ \ //| ___ | | | | ____| __| |_| | | | | ____| __| //| | | | | | | | / / | | | | / //| |___| | |__| | |____ \__ _ \ |__| | |____ \__ //| | | | _ | |_| | | | _ | //|________/__________/________/___| \__|_______/_________/________/___| \__| contract DuckBuckNFT is ERC721Enumerable, Ownable { uint public constant ADOPTION_CAPACITY = 30; uint public constant ADOPTION_ENERGY_COST = 66900000000000000; //0.0669 ETH uint public constant DUCKS_IN_A_ROW_COST = 60210000000000000; //0.06021 ETH uint public constant PEKING_PLATTER_COST = 53520000000000000; //0.05352 ETH uint public constant BAD_MOTHER_DUCKER_COST = 46830000000000000; //0.04683 ETH uint public constant MOBY_DUCK_COST = 10000000000000000000; //10 ETH string public DBNFT_PROVENANCE = ""; using Counters for Counters.Counter; Counters.Counter private _duckCounter; Counters.Counter private _youABadMotherDucker; Counters.Counter private _whaleHarpoons; uint private _totalDucks; uint private _totalBadMotherDuckers; uint private _totalMobyDucks; uint private _ducksInARowQty; uint private _pekingDuckPlatterQty; uint private _badMotherDuckerQty; bool private _isAdopting; mapping (address => uint256) private _badMotherDuckers; mapping (address => uint256) private _mobyDucks; mapping (uint => uint) private _studFees; constructor() ERC721("Duck Buck NFT", "DBNFT") { _totalDucks = 10200; _totalBadMotherDuckers = 50; _totalMobyDucks = 5; _ducksInARowQty = 10; _pekingDuckPlatterQty = 20; _badMotherDuckerQty = 30; } function adoptSomeDucks(uint _ducks) external payable { require(_isAdopting, "Adoption agency is closed."); require(_ducks >= 1, "You can''t adopt less than 1 duck, you silly goose!"); require(_duckCounter.current() <= _totalDucks, "We''re all out of ducks to give!"); require(_ducks <= ADOPTION_CAPACITY, "Your living situation is not suitable for that many ducks!"); require(_duckCounter.current() + _ducks <= _totalDucks, "We''re running out of ducks to give! Select less ducks to adopt!"); require(msg.value >= ADOPTION_ENERGY_COST * _ducks, "More ether needed to adopt ducks!"); adoptionPaperwork(_ducks); } function ducksInARow() external payable { require(_isAdopting, "Adoption agency is closed."); require(_duckCounter.current() <= _totalDucks, "We''re all out of ducks to give!"); require((_duckCounter.current() + _ducksInARowQty) <= _totalDucks, "We''re running out of ducks to give! You took too long to get your ducks in a row!"); require(msg.value >= DUCKS_IN_A_ROW_COST * _ducksInARowQty, "More ether needed to adopt ducks!"); adoptionPaperwork(_ducksInARowQty); } function pekingDuckPlatter() external payable { require(_isAdopting, "Adoption agency is closed."); require(_duckCounter.current() <= _totalDucks, "We''re all out of ducks to give!"); require((_duckCounter.current() + _pekingDuckPlatterQty) <= _totalDucks, "We''re running out of ducks to give! No more platters can be cooked up."); require(msg.value >= PEKING_PLATTER_COST * _pekingDuckPlatterQty, "More ether needed to adopt ducks!"); adoptionPaperwork(_pekingDuckPlatterQty); } function badMotherDucker() external payable { require(_isAdopting, "Adoption agency is closed."); require(_duckCounter.current() <= _totalDucks, "We''re all out of ducks to give!"); require(_badMotherDuckers[msg.sender] <= 0, "You are a known Bad Mother Ducker. Don''t be greedy."); require((_duckCounter.current() + _badMotherDuckerQty) <= _totalDucks, "We''re running out of ducks to give! Apparently you aren''t a Bad Mother Ducker."); require(_youABadMotherDucker.current() <= _totalBadMotherDuckers, "We''ve hit our limit of Bad Mother Duckers! You a Sad Mother Ducker!"); require(msg.value >= BAD_MOTHER_DUCKER_COST * _badMotherDuckerQty, "More ether needed to adopt ducks!"); adoptionPaperwork(_badMotherDuckerQty); _youABadMotherDucker.increment(); _badMotherDuckers[msg.sender] += 1; emit BadMotherDucker(msg.sender); } function mobyDuck() external payable { require(_isAdopting, "Adoption agency is closed."); require(_duckCounter.current() <= _totalDucks, "We''re all out of ducks to give!"); require(_mobyDucks[msg.sender] <= 0, "We love our whales! Save some krill for others."); require((_duckCounter.current() + _badMotherDuckerQty) <= _totalDucks, "We''re running out of ducks to give! Apparently you aren''t a Moby Duck."); require(_whaleHarpoons.current() <= _totalMobyDucks, "We''ve run out of harpoons! Find another way!"); require(msg.value >= MOBY_DUCK_COST, "More ether needed to adopt ducks!"); adoptionPaperwork(_badMotherDuckerQty); _whaleHarpoons.increment(); _mobyDucks[msg.sender] += 1; emit MobyDuck(msg.sender); } function adoptionPaperwork(uint _ducks) internal { for (uint i = 0; i < _ducks; i++) { _duckCounter.increment(); _safeMint(msg.sender, _duckCounter.current()); } } function _baseURI() internal pure override returns (string memory) { return "https://duckbucknft.com/tokens/"; } function isABadMotherDucker(address potentialMotherDucker) external view returns (bool) { return _badMotherDuckers[potentialMotherDucker] > 0; } function isAMobyDuck(address potentialMobyDuck) external view returns (bool) { return _mobyDucks[potentialMobyDuck] > 0; } function setStudFee(uint feeInWei, uint tokenId) external { require(tokenId > 0, "Token id is invalid"); require(tokenId <= _totalDucks, "Token id is too big."); require(ownerOf(tokenId) == msg.sender, "Only the owner of a token may set the stud fee."); _studFees[tokenId] = feeInWei; } function getStudFee(uint tokenId) external view returns (uint) { require(tokenId > 0, "Token id is invalid."); require(tokenId <= _totalDucks, "Token id is too big."); return _studFees[tokenId]; } // Duck God Functions function withdraw(address recipient, uint amountToCredit) external onlyOwner { require(amountToCredit > 0, "Credit amount must be a postive integer."); require(amountToCredit <= address(this).balance, "Credit amount must be less than or equal to the balance of the contract."); payable(recipient).transfer(amountToCredit); } function setAdopting(bool isAdopting) external onlyOwner { _isAdopting = isAdopting; } function getAdopting() external view returns (bool) { return _isAdopting; } function reserveDucks() external onlyOwner { for (uint i = 0; i < 200; i++) { _duckCounter.increment(); _safeMint(msg.sender, _duckCounter.current()); } } //Provenance? I thought you said Providence! Gahhh! function setProvenanceHash(string memory provenanceHash) external onlyOwner { DBNFT_PROVENANCE = provenanceHash; } function getPurchasedBadMotherDuckers() public view returns (uint) { return _youABadMotherDucker.current(); } function getPurchasedWhaleHarpoons() public view returns (uint){ return _whaleHarpoons.current(); } event BadMotherDucker(address indexed from); event MobyDuck(address indexed from); }
// SPDX-License-Identifier: MIT 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT 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}. 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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly 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` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } }
// SPDX-License-Identifier: MIT 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 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 pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. 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; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT 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 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); }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
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":"from","type":"address"}],"name":"BadMotherDucker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"}],"name":"MobyDuck","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ADOPTION_CAPACITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADOPTION_ENERGY_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BAD_MOTHER_DUCKER_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DBNFT_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DUCKS_IN_A_ROW_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MOBY_DUCK_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PEKING_PLATTER_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ducks","type":"uint256"}],"name":"adoptSomeDucks","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"badMotherDucker","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ducksInARow","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getAdopting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPurchasedBadMotherDuckers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPurchasedWhaleHarpoons","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getStudFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"potentialMotherDucker","type":"address"}],"name":"isABadMotherDucker","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"potentialMobyDuck","type":"address"}],"name":"isAMobyDuck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"mobyDuck","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":"pekingDuckPlatter","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveDucks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isAdopting","type":"bool"}],"name":"setAdopting","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":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"feeInWei","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"setStudFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amountToCredit","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600b90805190602001906200002b929190620001ca565b503480156200003957600080fd5b506040518060400160405280600d81526020017f4475636b204275636b204e4654000000000000000000000000000000000000008152506040518060400160405280600581526020017f44424e46540000000000000000000000000000000000000000000000000000008152508160009080519060200190620000be929190620001ca565b508060019080519060200190620000d7929190620001ca565b5050506000620000ec620001c260201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506127d8600f8190555060326010819055506005601181905550600a6012819055506014601381905550601e601481905550620002df565b600033905090565b828054620001d8906200027a565b90600052602060002090601f016020900481019282620001fc576000855562000248565b82601f106200021757805160ff191683800117855562000248565b8280016001018555821562000248579182015b82811115620002475782518255916020019190600101906200022a565b5b5090506200025791906200025b565b5090565b5b80821115620002765760008160009055506001016200025c565b5090565b600060028204905060018216806200029357607f821691505b60208210811415620002aa57620002a9620002b0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61581c80620002ef6000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063b3a4f157116100b6578063d2afee9e1161007a578063d2afee9e14610839578063d6759cef14610864578063e5b4cd1b146108a1578063e985e9c5146108cc578063f2fde38b14610909578063f3fef3a31461093257610251565b8063b3a4f15714610742578063b88d4fde1461076b578063c272fe5914610794578063c3cf4224146107bf578063c87b56dd146107fc57610251565b806395d89b41116100fd57806395d89b41146106af5780639affcc4c146106da578063a22cb465146106e4578063addfcc061461070d578063b33606021461073857610251565b806370a08231146105da578063715018a614610617578063876ba9481461062e5780638da5cb5b1461065957806391a245051461068457610251565b80632f745c59116101d257806342842e0e1161019657806342842e0e146104e657806342b1cfd71461050f5780634f6ccce71461053a5780635ef20311146105775780636352211e1461058157806363f7ed9e146105be57610251565b80632f745c591461040c5780632f7a0b9d1461044957806330971926146104865780633af6aab5146104b157806341590e7a146104dc57610251565b80631096952311610219578063109695231461034d57806316be33451461037657806318160ddd1461038d57806323b872dd146103b85780632e9c93cd146103e157610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb5780630c33504a14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613b40565b61095b565b60405161028a91906142c5565b60405180910390f35b34801561029f57600080fd5b506102a86109d5565b6040516102b591906142e0565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613bd3565b610a67565b6040516102f2919061425e565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613adb565b610aec565b005b34801561033057600080fd5b5061034b60048036038101906103469190613bfc565b610c04565b005b34801561035957600080fd5b50610374600480360381019061036f9190613b92565b610d1e565b005b34801561038257600080fd5b5061038b610db4565b005b34801561039957600080fd5b506103a2610e6f565b6040516103af91906147c2565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da91906139d5565b610e7c565b005b3480156103ed57600080fd5b506103f6610edc565b60405161040391906147c2565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190613adb565b610ee7565b60405161044091906147c2565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190613bd3565b610f8c565b60405161047d91906147c2565b60405180910390f35b34801561049257600080fd5b5061049b611030565b6040516104a891906147c2565b60405180910390f35b3480156104bd57600080fd5b506104c661103b565b6040516104d391906147c2565b60405180910390f35b6104e4611046565b005b3480156104f257600080fd5b5061050d600480360381019061050891906139d5565b611317565b005b34801561051b57600080fd5b50610524611337565b60405161053191906142c5565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c9190613bd3565b61134e565b60405161056e91906147c2565b60405180910390f35b61057f6113e5565b005b34801561058d57600080fd5b506105a860048036038101906105a39190613bd3565b6116aa565b6040516105b5919061425e565b60405180910390f35b6105d860048036038101906105d39190613bd3565b61175c565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190613970565b61193b565b60405161060e91906147c2565b60405180910390f35b34801561062357600080fd5b5061062c6119f3565b005b34801561063a57600080fd5b50610643611b30565b60405161065091906142e0565b60405180910390f35b34801561066557600080fd5b5061066e611bbe565b60405161067b919061425e565b60405180910390f35b34801561069057600080fd5b50610699611be8565b6040516106a691906147c2565b60405180910390f35b3480156106bb57600080fd5b506106c4611bf3565b6040516106d191906142e0565b60405180910390f35b6106e2611c85565b005b3480156106f057600080fd5b5061070b60048036038101906107069190613a9f565b611de1565b005b34801561071957600080fd5b50610722611f62565b60405161072f91906147c2565b60405180910390f35b610740611f73565b005b34801561074e57600080fd5b5061076960048036038101906107649190613b17565b6120cf565b005b34801561077757600080fd5b50610792600480360381019061078d9190613a24565b612168565b005b3480156107a057600080fd5b506107a96121ca565b6040516107b691906147c2565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190613970565b6121d6565b6040516107f391906142c5565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e9190613bd3565b612221565b60405161083091906142e0565b60405180910390f35b34801561084557600080fd5b5061084e6122c8565b60405161085b91906147c2565b60405180910390f35b34801561087057600080fd5b5061088b60048036038101906108869190613970565b6122cd565b60405161089891906142c5565b60405180910390f35b3480156108ad57600080fd5b506108b6612318565b6040516108c391906147c2565b60405180910390f35b3480156108d857600080fd5b506108f360048036038101906108ee9190613999565b612329565b60405161090091906142c5565b60405180910390f35b34801561091557600080fd5b50610930600480360381019061092b9190613970565b6123bd565b005b34801561093e57600080fd5b5061095960048036038101906109549190613adb565b612569565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ce57506109cd826126b6565b5b9050919050565b6060600080546109e490614a72565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1090614a72565b8015610a5d5780601f10610a3257610100808354040283529160200191610a5d565b820191906000526020600020905b815481529060010190602001808311610a4057829003601f168201915b5050505050905090565b6000610a7282612798565b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa8906145e2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af7826116aa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f906146c2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b87612804565b73ffffffffffffffffffffffffffffffffffffffff161480610bb65750610bb581610bb0612804565b612329565b5b610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90614542565b60405180910390fd5b610bff838361280c565b505050565b60008111610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e906143e2565b60405180910390fd5b600f54811115610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390614522565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16610cac826116aa565b73ffffffffffffffffffffffffffffffffffffffff1614610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf9906146a2565b60405180910390fd5b8160186000838152602001908152602001600020819055505050565b610d26612804565b73ffffffffffffffffffffffffffffffffffffffff16610d44611bbe565b73ffffffffffffffffffffffffffffffffffffffff1614610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190614602565b60405180910390fd5b80600b9080519060200190610db0929190613794565b5050565b610dbc612804565b73ffffffffffffffffffffffffffffffffffffffff16610dda611bbe565b73ffffffffffffffffffffffffffffffffffffffff1614610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790614602565b60405180910390fd5b60005b60c8811015610e6c57610e46600c6128c5565b610e5933610e54600c6128db565b6128e9565b8080610e6490614ad5565b915050610e33565b50565b6000600880549050905090565b610e8d610e87612804565b82612907565b610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390614722565b60405180910390fd5b610ed78383836129e5565b505050565b66a65fa30ad4e00081565b6000610ef28361193b565b8210610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90614342565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000808211610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc7906145a2565b60405180910390fd5b600f54821115611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c90614522565b60405180910390fd5b60186000838152602001908152602001600020549050919050565b66be24280c61000081565b66edad320f79400081565b601560009054906101000a900460ff16611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90614482565b60405180910390fd5b600f546110a2600c6128db565b11156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da906144c2565b60405180910390fd5b6000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d906146e2565b60405180910390fd5b600f54601454611176600c6128db565b61118091906148a7565b11156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b8906143a2565b60405180910390fd5b6010546111ce600d6128db565b111561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690614702565b60405180910390fd5b60145466a65fa30ad4e000611224919061492e565b341015611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90614762565b60405180910390fd5b611271601454612c41565b61127b600d6128c5565b6001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112cb91906148a7565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167f94d88cd87db131e2562c45cf369314416ea29d4af5760c9aacbf76478ca9577960405160405180910390a2565b61133283838360405180602001604052806000815250612168565b505050565b6000601560009054906101000a900460ff16905090565b6000611358610e6f565b8210611399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139090614742565b60405180910390fd5b600882815481106113d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601560009054906101000a900460ff16611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90614482565b60405180910390fd5b600f54611441600c6128db565b1115611482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611479906144c2565b60405180910390fd5b6000601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90614662565b60405180910390fd5b600f54601454611515600c6128db565b61151f91906148a7565b1115611560576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611557906144a2565b60405180910390fd5b60115461156d600e6128db565b11156115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a590614422565b60405180910390fd5b678ac7230489e800003410156115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f090614762565b60405180910390fd5b611604601454612c41565b61160e600e6128c5565b6001601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461165e91906148a7565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167f24a279800d69d41a7e536c96dd64b3779cfa769fa95f53b57a90436690a8defc60405160405180910390a2565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614582565b60405180910390fd5b80915050919050565b601560009054906101000a900460ff166117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290614482565b60405180910390fd5b60018110156117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e690614502565b60405180910390fd5b600f546117fc600c6128db565b111561183d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611834906144c2565b60405180910390fd5b601e811115611881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187890614302565b60405180910390fd5b600f548161188f600c6128db565b61189991906148a7565b11156118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190614322565b60405180910390fd5b8066edad320f7940006118ed919061492e565b34101561192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690614762565b60405180910390fd5b61193881612c41565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390614562565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119fb612804565b73ffffffffffffffffffffffffffffffffffffffff16611a19611bbe565b73ffffffffffffffffffffffffffffffffffffffff1614611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690614602565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b8054611b3d90614a72565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6990614a72565b8015611bb65780601f10611b8b57610100808354040283529160200191611bb6565b820191906000526020600020905b815481529060010190602001808311611b9957829003601f168201915b505050505081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b66d5e8ad0ded200081565b606060018054611c0290614a72565b80601f0160208091040260200160405190810160405280929190818152602001828054611c2e90614a72565b8015611c7b5780601f10611c5057610100808354040283529160200191611c7b565b820191906000526020600020905b815481529060010190602001808311611c5e57829003601f168201915b5050505050905090565b601560009054906101000a900460ff16611cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccb90614482565b60405180910390fd5b600f54611ce1600c6128db565b1115611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d19906144c2565b60405180910390fd5b600f54601354611d32600c6128db565b611d3c91906148a7565b1115611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7490614402565b60405180910390fd5b60135466be24280c610000611d92919061492e565b341015611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90614762565b60405180910390fd5b611ddf601354612c41565b565b611de9612804565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90614462565b60405180910390fd5b8060056000611e64612804565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f11612804565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f5691906142c5565b60405180910390a35050565b6000611f6e600d6128db565b905090565b601560009054906101000a900460ff16611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb990614482565b60405180910390fd5b600f54611fcf600c6128db565b1115612010576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612007906144c2565b60405180910390fd5b600f54601254612020600c6128db565b61202a91906148a7565b111561206b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206290614622565b60405180910390fd5b60125466d5e8ad0ded2000612080919061492e565b3410156120c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b990614762565b60405180910390fd5b6120cd601254612c41565b565b6120d7612804565b73ffffffffffffffffffffffffffffffffffffffff166120f5611bbe565b73ffffffffffffffffffffffffffffffffffffffff161461214b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214290614602565b60405180910390fd5b80601560006101000a81548160ff02191690831515021790555050565b612179612173612804565b83612907565b6121b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121af90614722565b60405180910390fd5b6121c484848484612c80565b50505050565b678ac7230489e8000081565b600080601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b606061222c82612798565b61226b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226290614682565b60405180910390fd5b6000612275612cdc565b9050600081511161229557604051806020016040528060008152506122c0565b8061229f84612d19565b6040516020016122b092919061423a565b6040516020818303038152906040525b915050919050565b601e81565b600080601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b6000612324600e6128db565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123c5612804565b73ffffffffffffffffffffffffffffffffffffffff166123e3611bbe565b73ffffffffffffffffffffffffffffffffffffffff1614612439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243090614602565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a090614382565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612571612804565b73ffffffffffffffffffffffffffffffffffffffff1661258f611bbe565b73ffffffffffffffffffffffffffffffffffffffff16146125e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dc90614602565b60405180910390fd5b60008111612628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261f90614782565b60405180910390fd5b4781111561266b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612662906147a2565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156126b1573d6000803e3d6000fd5b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061278157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612791575061279082612ec6565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661287f836116aa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001816000016000828254019250508190555050565b600081600001549050919050565b612903828260405180602001604052806000815250612f30565b5050565b600061291282612798565b612951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612948906144e2565b60405180910390fd5b600061295c836116aa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129cb57508373ffffffffffffffffffffffffffffffffffffffff166129b384610a67565b73ffffffffffffffffffffffffffffffffffffffff16145b806129dc57506129db8185612329565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a05826116aa565b73ffffffffffffffffffffffffffffffffffffffff1614612a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5290614642565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac290614442565b60405180910390fd5b612ad6838383612f8b565b612ae160008261280c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b319190614988565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b8891906148a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60005b81811015612c7c57612c56600c6128c5565b612c6933612c64600c6128db565b6128e9565b8080612c7490614ad5565b915050612c44565b5050565b612c8b8484846129e5565b612c978484848461309f565b612cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccd90614362565b60405180910390fd5b50505050565b60606040518060400160405280601f81526020017f68747470733a2f2f6475636b6275636b6e66742e636f6d2f746f6b656e732f00815250905090565b60606000821415612d61576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ec1565b600082905060005b60008214612d93578080612d7c90614ad5565b915050600a82612d8c91906148fd565b9150612d69565b60008167ffffffffffffffff811115612dd5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e075781602001600182028036833780820191505090505b5090505b60008514612eba57600182612e209190614988565b9150600a85612e2f9190614b1e565b6030612e3b91906148a7565b60f81b818381518110612e77577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612eb391906148fd565b9450612e0b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f3a8383613236565b612f47600084848461309f565b612f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7d90614362565b60405180910390fd5b505050565b612f96838383613404565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fd957612fd481613409565b613018565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613017576130168382613452565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561305b57613056816135bf565b61309a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613099576130988282613702565b5b5b505050565b60006130c08473ffffffffffffffffffffffffffffffffffffffff16613781565b15613229578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130e9612804565b8786866040518563ffffffff1660e01b815260040161310b9493929190614279565b602060405180830381600087803b15801561312557600080fd5b505af192505050801561315657506040513d601f19601f820116820180604052508101906131539190613b69565b60015b6131d9573d8060008114613186576040519150601f19603f3d011682016040523d82523d6000602084013e61318b565b606091505b506000815114156131d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c890614362565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061322e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329d906145c2565b60405180910390fd5b6132af81612798565b156132ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e6906143c2565b60405180910390fd5b6132fb60008383612f8b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461334b91906148a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161345f8461193b565b6134699190614988565b905060006007600084815260200190815260200160002054905081811461354e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135d39190614988565b9050600060096000848152602001908152602001600020549050600060088381548110613629577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613671577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061370d8361193b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b8280546137a090614a72565b90600052602060002090601f0160209004810192826137c25760008555613809565b82601f106137db57805160ff1916838001178555613809565b82800160010185558215613809579182015b828111156138085782518255916020019190600101906137ed565b5b509050613816919061381a565b5090565b5b8082111561383357600081600090555060010161381b565b5090565b600061384a61384584614802565b6147dd565b90508281526020810184848401111561386257600080fd5b61386d848285614a30565b509392505050565b600061388861388384614833565b6147dd565b9050828152602081018484840111156138a057600080fd5b6138ab848285614a30565b509392505050565b6000813590506138c28161578a565b92915050565b6000813590506138d7816157a1565b92915050565b6000813590506138ec816157b8565b92915050565b600081519050613901816157b8565b92915050565b600082601f83011261391857600080fd5b8135613928848260208601613837565b91505092915050565b600082601f83011261394257600080fd5b8135613952848260208601613875565b91505092915050565b60008135905061396a816157cf565b92915050565b60006020828403121561398257600080fd5b6000613990848285016138b3565b91505092915050565b600080604083850312156139ac57600080fd5b60006139ba858286016138b3565b92505060206139cb858286016138b3565b9150509250929050565b6000806000606084860312156139ea57600080fd5b60006139f8868287016138b3565b9350506020613a09868287016138b3565b9250506040613a1a8682870161395b565b9150509250925092565b60008060008060808587031215613a3a57600080fd5b6000613a48878288016138b3565b9450506020613a59878288016138b3565b9350506040613a6a8782880161395b565b925050606085013567ffffffffffffffff811115613a8757600080fd5b613a9387828801613907565b91505092959194509250565b60008060408385031215613ab257600080fd5b6000613ac0858286016138b3565b9250506020613ad1858286016138c8565b9150509250929050565b60008060408385031215613aee57600080fd5b6000613afc858286016138b3565b9250506020613b0d8582860161395b565b9150509250929050565b600060208284031215613b2957600080fd5b6000613b37848285016138c8565b91505092915050565b600060208284031215613b5257600080fd5b6000613b60848285016138dd565b91505092915050565b600060208284031215613b7b57600080fd5b6000613b89848285016138f2565b91505092915050565b600060208284031215613ba457600080fd5b600082013567ffffffffffffffff811115613bbe57600080fd5b613bca84828501613931565b91505092915050565b600060208284031215613be557600080fd5b6000613bf38482850161395b565b91505092915050565b60008060408385031215613c0f57600080fd5b6000613c1d8582860161395b565b9250506020613c2e8582860161395b565b9150509250929050565b613c41816149bc565b82525050565b613c50816149ce565b82525050565b6000613c6182614864565b613c6b818561487a565b9350613c7b818560208601614a3f565b613c8481614c0b565b840191505092915050565b6000613c9a8261486f565b613ca4818561488b565b9350613cb4818560208601614a3f565b613cbd81614c0b565b840191505092915050565b6000613cd38261486f565b613cdd818561489c565b9350613ced818560208601614a3f565b80840191505092915050565b6000613d06603a8361488b565b9150613d1182614c1c565b604082019050919050565b6000613d2960418361488b565b9150613d3482614c6b565b606082019050919050565b6000613d4c602b8361488b565b9150613d5782614ce0565b604082019050919050565b6000613d6f60328361488b565b9150613d7a82614d2f565b604082019050919050565b6000613d9260268361488b565b9150613d9d82614d7e565b604082019050919050565b6000613db560518361488b565b9150613dc082614dcd565b606082019050919050565b6000613dd8601c8361488b565b9150613de382614e42565b602082019050919050565b6000613dfb60138361488b565b9150613e0682614e6b565b602082019050919050565b6000613e1e60488361488b565b9150613e2982614e94565b606082019050919050565b6000613e41602e8361488b565b9150613e4c82614f09565b604082019050919050565b6000613e6460248361488b565b9150613e6f82614f58565b604082019050919050565b6000613e8760198361488b565b9150613e9282614fa7565b602082019050919050565b6000613eaa601a8361488b565b9150613eb582614fd0565b602082019050919050565b6000613ecd60498361488b565b9150613ed882614ff9565b606082019050919050565b6000613ef060208361488b565b9150613efb8261506e565b602082019050919050565b6000613f13602c8361488b565b9150613f1e82615097565b604082019050919050565b6000613f3660338361488b565b9150613f41826150e6565b604082019050919050565b6000613f5960148361488b565b9150613f6482615135565b602082019050919050565b6000613f7c60388361488b565b9150613f878261515e565b604082019050919050565b6000613f9f602a8361488b565b9150613faa826151ad565b604082019050919050565b6000613fc260298361488b565b9150613fcd826151fc565b604082019050919050565b6000613fe560148361488b565b9150613ff08261524b565b602082019050919050565b600061400860208361488b565b915061401382615274565b602082019050919050565b600061402b602c8361488b565b91506140368261529d565b604082019050919050565b600061404e60208361488b565b9150614059826152ec565b602082019050919050565b600061407160538361488b565b915061407c82615315565b606082019050919050565b600061409460298361488b565b915061409f8261538a565b604082019050919050565b60006140b760308361488b565b91506140c2826153d9565b604082019050919050565b60006140da602f8361488b565b91506140e582615428565b604082019050919050565b60006140fd602f8361488b565b915061410882615477565b604082019050919050565b600061412060218361488b565b915061412b826154c6565b604082019050919050565b600061414360358361488b565b915061414e82615515565b604082019050919050565b600061416660458361488b565b915061417182615564565b606082019050919050565b600061418960318361488b565b9150614194826155d9565b604082019050919050565b60006141ac602c8361488b565b91506141b782615628565b604082019050919050565b60006141cf60218361488b565b91506141da82615677565b604082019050919050565b60006141f260288361488b565b91506141fd826156c6565b604082019050919050565b600061421560488361488b565b915061422082615715565b606082019050919050565b61423481614a26565b82525050565b60006142468285613cc8565b91506142528284613cc8565b91508190509392505050565b60006020820190506142736000830184613c38565b92915050565b600060808201905061428e6000830187613c38565b61429b6020830186613c38565b6142a8604083018561422b565b81810360608301526142ba8184613c56565b905095945050505050565b60006020820190506142da6000830184613c47565b92915050565b600060208201905081810360008301526142fa8184613c8f565b905092915050565b6000602082019050818103600083015261431b81613cf9565b9050919050565b6000602082019050818103600083015261433b81613d1c565b9050919050565b6000602082019050818103600083015261435b81613d3f565b9050919050565b6000602082019050818103600083015261437b81613d62565b9050919050565b6000602082019050818103600083015261439b81613d85565b9050919050565b600060208201905081810360008301526143bb81613da8565b9050919050565b600060208201905081810360008301526143db81613dcb565b9050919050565b600060208201905081810360008301526143fb81613dee565b9050919050565b6000602082019050818103600083015261441b81613e11565b9050919050565b6000602082019050818103600083015261443b81613e34565b9050919050565b6000602082019050818103600083015261445b81613e57565b9050919050565b6000602082019050818103600083015261447b81613e7a565b9050919050565b6000602082019050818103600083015261449b81613e9d565b9050919050565b600060208201905081810360008301526144bb81613ec0565b9050919050565b600060208201905081810360008301526144db81613ee3565b9050919050565b600060208201905081810360008301526144fb81613f06565b9050919050565b6000602082019050818103600083015261451b81613f29565b9050919050565b6000602082019050818103600083015261453b81613f4c565b9050919050565b6000602082019050818103600083015261455b81613f6f565b9050919050565b6000602082019050818103600083015261457b81613f92565b9050919050565b6000602082019050818103600083015261459b81613fb5565b9050919050565b600060208201905081810360008301526145bb81613fd8565b9050919050565b600060208201905081810360008301526145db81613ffb565b9050919050565b600060208201905081810360008301526145fb8161401e565b9050919050565b6000602082019050818103600083015261461b81614041565b9050919050565b6000602082019050818103600083015261463b81614064565b9050919050565b6000602082019050818103600083015261465b81614087565b9050919050565b6000602082019050818103600083015261467b816140aa565b9050919050565b6000602082019050818103600083015261469b816140cd565b9050919050565b600060208201905081810360008301526146bb816140f0565b9050919050565b600060208201905081810360008301526146db81614113565b9050919050565b600060208201905081810360008301526146fb81614136565b9050919050565b6000602082019050818103600083015261471b81614159565b9050919050565b6000602082019050818103600083015261473b8161417c565b9050919050565b6000602082019050818103600083015261475b8161419f565b9050919050565b6000602082019050818103600083015261477b816141c2565b9050919050565b6000602082019050818103600083015261479b816141e5565b9050919050565b600060208201905081810360008301526147bb81614208565b9050919050565b60006020820190506147d7600083018461422b565b92915050565b60006147e76147f8565b90506147f38282614aa4565b919050565b6000604051905090565b600067ffffffffffffffff82111561481d5761481c614bdc565b5b61482682614c0b565b9050602081019050919050565b600067ffffffffffffffff82111561484e5761484d614bdc565b5b61485782614c0b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006148b282614a26565b91506148bd83614a26565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148f2576148f1614b4f565b5b828201905092915050565b600061490882614a26565b915061491383614a26565b92508261492357614922614b7e565b5b828204905092915050565b600061493982614a26565b915061494483614a26565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561497d5761497c614b4f565b5b828202905092915050565b600061499382614a26565b915061499e83614a26565b9250828210156149b1576149b0614b4f565b5b828203905092915050565b60006149c782614a06565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a5d578082015181840152602081019050614a42565b83811115614a6c576000848401525b50505050565b60006002820490506001821680614a8a57607f821691505b60208210811415614a9e57614a9d614bad565b5b50919050565b614aad82614c0b565b810181811067ffffffffffffffff82111715614acc57614acb614bdc565b5b80604052505050565b6000614ae082614a26565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b1357614b12614b4f565b5b600182019050919050565b6000614b2982614a26565b9150614b3483614a26565b925082614b4457614b43614b7e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f7572206c6976696e6720736974756174696f6e206973206e6f742073756960008201527f7461626c6520666f722074686174206d616e79206475636b7321000000000000602082015250565b7f5765272772652072756e6e696e67206f7574206f66206475636b7320746f206760008201527f69766521202053656c656374206c657373206475636b7320746f2061646f707460208201527f2100000000000000000000000000000000000000000000000000000000000000604082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5765272772652072756e6e696e67206f7574206f66206475636b7320746f206760008201527f6976652120204170706172656e746c7920796f75206172656e2727742061204260208201527f6164204d6f74686572204475636b65722e000000000000000000000000000000604082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546f6b656e20696420697320696e76616c696400000000000000000000000000600082015250565b7f5765272772652072756e6e696e67206f7574206f66206475636b7320746f206760008201527f6976652120204e6f206d6f726520706c6174746572732063616e20626520636f60208201527f6f6b65642075702e000000000000000000000000000000000000000000000000604082015250565b7f5765272776652072756e206f7574206f6620686172706f6f6e7321202046696e60008201527f6420616e6f746865722077617921000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f41646f7074696f6e206167656e637920697320636c6f7365642e000000000000600082015250565b7f5765272772652072756e6e696e67206f7574206f66206475636b7320746f206760008201527f6976652120204170706172656e746c7920796f75206172656e2727742061204d60208201527f6f6279204475636b2e0000000000000000000000000000000000000000000000604082015250565b7f57652727726520616c6c206f7574206f66206475636b7320746f206769766521600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f752063616e2727742061646f7074206c657373207468616e20312064756360008201527f6b2c20796f752073696c6c7920676f6f73652100000000000000000000000000602082015250565b7f546f6b656e20696420697320746f6f206269672e000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f546f6b656e20696420697320696e76616c69642e000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5765272772652072756e6e696e67206f7574206f66206475636b7320746f206760008201527f697665212020596f7520746f6f6b20746f6f206c6f6e6720746f20676574207960208201527f6f7572206475636b7320696e206120726f772100000000000000000000000000604082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5765206c6f7665206f7572207768616c65732120205361766520736f6d65206b60008201527f72696c6c20666f72206f74686572732e00000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4f6e6c7920746865206f776e6572206f66206120746f6b656e206d617920736560008201527f74207468652073747564206665652e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f75206172652061206b6e6f776e20426164204d6f74686572204475636b6560008201527f722e2020446f6e272774206265206772656564792e0000000000000000000000602082015250565b7f57652727766520686974206f7572206c696d6974206f6620426164204d6f746860008201527f6572204475636b657273212020596f75206120536164204d6f7468657220447560208201527f636b657221000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d6f7265206574686572206e656564656420746f2061646f7074206475636b7360008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f43726564697420616d6f756e74206d757374206265206120706f73746976652060008201527f696e74656765722e000000000000000000000000000000000000000000000000602082015250565b7f43726564697420616d6f756e74206d757374206265206c657373207468616e2060008201527f6f7220657175616c20746f207468652062616c616e6365206f6620746865206360208201527f6f6e74726163742e000000000000000000000000000000000000000000000000604082015250565b615793816149bc565b811461579e57600080fd5b50565b6157aa816149ce565b81146157b557600080fd5b50565b6157c1816149da565b81146157cc57600080fd5b50565b6157d881614a26565b81146157e357600080fd5b5056fea26469706673582212204e9708d9178941fd6d0c87d04f0ae892ec1407dc8de0dc898bf12b4427a3e26464736f6c63430008040033
Deployed Bytecode
0x6080604052600436106102515760003560e01c806370a0823111610139578063b3a4f157116100b6578063d2afee9e1161007a578063d2afee9e14610839578063d6759cef14610864578063e5b4cd1b146108a1578063e985e9c5146108cc578063f2fde38b14610909578063f3fef3a31461093257610251565b8063b3a4f15714610742578063b88d4fde1461076b578063c272fe5914610794578063c3cf4224146107bf578063c87b56dd146107fc57610251565b806395d89b41116100fd57806395d89b41146106af5780639affcc4c146106da578063a22cb465146106e4578063addfcc061461070d578063b33606021461073857610251565b806370a08231146105da578063715018a614610617578063876ba9481461062e5780638da5cb5b1461065957806391a245051461068457610251565b80632f745c59116101d257806342842e0e1161019657806342842e0e146104e657806342b1cfd71461050f5780634f6ccce71461053a5780635ef20311146105775780636352211e1461058157806363f7ed9e146105be57610251565b80632f745c591461040c5780632f7a0b9d1461044957806330971926146104865780633af6aab5146104b157806341590e7a146104dc57610251565b80631096952311610219578063109695231461034d57806316be33451461037657806318160ddd1461038d57806323b872dd146103b85780632e9c93cd146103e157610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb5780630c33504a14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613b40565b61095b565b60405161028a91906142c5565b60405180910390f35b34801561029f57600080fd5b506102a86109d5565b6040516102b591906142e0565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613bd3565b610a67565b6040516102f2919061425e565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613adb565b610aec565b005b34801561033057600080fd5b5061034b60048036038101906103469190613bfc565b610c04565b005b34801561035957600080fd5b50610374600480360381019061036f9190613b92565b610d1e565b005b34801561038257600080fd5b5061038b610db4565b005b34801561039957600080fd5b506103a2610e6f565b6040516103af91906147c2565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da91906139d5565b610e7c565b005b3480156103ed57600080fd5b506103f6610edc565b60405161040391906147c2565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190613adb565b610ee7565b60405161044091906147c2565b60405180910390f35b34801561045557600080fd5b50610470600480360381019061046b9190613bd3565b610f8c565b60405161047d91906147c2565b60405180910390f35b34801561049257600080fd5b5061049b611030565b6040516104a891906147c2565b60405180910390f35b3480156104bd57600080fd5b506104c661103b565b6040516104d391906147c2565b60405180910390f35b6104e4611046565b005b3480156104f257600080fd5b5061050d600480360381019061050891906139d5565b611317565b005b34801561051b57600080fd5b50610524611337565b60405161053191906142c5565b60405180910390f35b34801561054657600080fd5b50610561600480360381019061055c9190613bd3565b61134e565b60405161056e91906147c2565b60405180910390f35b61057f6113e5565b005b34801561058d57600080fd5b506105a860048036038101906105a39190613bd3565b6116aa565b6040516105b5919061425e565b60405180910390f35b6105d860048036038101906105d39190613bd3565b61175c565b005b3480156105e657600080fd5b5061060160048036038101906105fc9190613970565b61193b565b60405161060e91906147c2565b60405180910390f35b34801561062357600080fd5b5061062c6119f3565b005b34801561063a57600080fd5b50610643611b30565b60405161065091906142e0565b60405180910390f35b34801561066557600080fd5b5061066e611bbe565b60405161067b919061425e565b60405180910390f35b34801561069057600080fd5b50610699611be8565b6040516106a691906147c2565b60405180910390f35b3480156106bb57600080fd5b506106c4611bf3565b6040516106d191906142e0565b60405180910390f35b6106e2611c85565b005b3480156106f057600080fd5b5061070b60048036038101906107069190613a9f565b611de1565b005b34801561071957600080fd5b50610722611f62565b60405161072f91906147c2565b60405180910390f35b610740611f73565b005b34801561074e57600080fd5b5061076960048036038101906107649190613b17565b6120cf565b005b34801561077757600080fd5b50610792600480360381019061078d9190613a24565b612168565b005b3480156107a057600080fd5b506107a96121ca565b6040516107b691906147c2565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190613970565b6121d6565b6040516107f391906142c5565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e9190613bd3565b612221565b60405161083091906142e0565b60405180910390f35b34801561084557600080fd5b5061084e6122c8565b60405161085b91906147c2565b60405180910390f35b34801561087057600080fd5b5061088b60048036038101906108869190613970565b6122cd565b60405161089891906142c5565b60405180910390f35b3480156108ad57600080fd5b506108b6612318565b6040516108c391906147c2565b60405180910390f35b3480156108d857600080fd5b506108f360048036038101906108ee9190613999565b612329565b60405161090091906142c5565b60405180910390f35b34801561091557600080fd5b50610930600480360381019061092b9190613970565b6123bd565b005b34801561093e57600080fd5b5061095960048036038101906109549190613adb565b612569565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ce57506109cd826126b6565b5b9050919050565b6060600080546109e490614a72565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1090614a72565b8015610a5d5780601f10610a3257610100808354040283529160200191610a5d565b820191906000526020600020905b815481529060010190602001808311610a4057829003601f168201915b5050505050905090565b6000610a7282612798565b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa8906145e2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af7826116aa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5f906146c2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b87612804565b73ffffffffffffffffffffffffffffffffffffffff161480610bb65750610bb581610bb0612804565b612329565b5b610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90614542565b60405180910390fd5b610bff838361280c565b505050565b60008111610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e906143e2565b60405180910390fd5b600f54811115610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8390614522565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16610cac826116aa565b73ffffffffffffffffffffffffffffffffffffffff1614610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf9906146a2565b60405180910390fd5b8160186000838152602001908152602001600020819055505050565b610d26612804565b73ffffffffffffffffffffffffffffffffffffffff16610d44611bbe565b73ffffffffffffffffffffffffffffffffffffffff1614610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190614602565b60405180910390fd5b80600b9080519060200190610db0929190613794565b5050565b610dbc612804565b73ffffffffffffffffffffffffffffffffffffffff16610dda611bbe565b73ffffffffffffffffffffffffffffffffffffffff1614610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790614602565b60405180910390fd5b60005b60c8811015610e6c57610e46600c6128c5565b610e5933610e54600c6128db565b6128e9565b8080610e6490614ad5565b915050610e33565b50565b6000600880549050905090565b610e8d610e87612804565b82612907565b610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390614722565b60405180910390fd5b610ed78383836129e5565b505050565b66a65fa30ad4e00081565b6000610ef28361193b565b8210610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90614342565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000808211610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc7906145a2565b60405180910390fd5b600f54821115611015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100c90614522565b60405180910390fd5b60186000838152602001908152602001600020549050919050565b66be24280c61000081565b66edad320f79400081565b601560009054906101000a900460ff16611095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108c90614482565b60405180910390fd5b600f546110a2600c6128db565b11156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da906144c2565b60405180910390fd5b6000601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d906146e2565b60405180910390fd5b600f54601454611176600c6128db565b61118091906148a7565b11156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b8906143a2565b60405180910390fd5b6010546111ce600d6128db565b111561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690614702565b60405180910390fd5b60145466a65fa30ad4e000611224919061492e565b341015611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90614762565b60405180910390fd5b611271601454612c41565b61127b600d6128c5565b6001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112cb91906148a7565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167f94d88cd87db131e2562c45cf369314416ea29d4af5760c9aacbf76478ca9577960405160405180910390a2565b61133283838360405180602001604052806000815250612168565b505050565b6000601560009054906101000a900460ff16905090565b6000611358610e6f565b8210611399576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139090614742565b60405180910390fd5b600882815481106113d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b601560009054906101000a900460ff16611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b90614482565b60405180910390fd5b600f54611441600c6128db565b1115611482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611479906144c2565b60405180910390fd5b6000601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90614662565b60405180910390fd5b600f54601454611515600c6128db565b61151f91906148a7565b1115611560576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611557906144a2565b60405180910390fd5b60115461156d600e6128db565b11156115ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a590614422565b60405180910390fd5b678ac7230489e800003410156115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f090614762565b60405180910390fd5b611604601454612c41565b61160e600e6128c5565b6001601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461165e91906148a7565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167f24a279800d69d41a7e536c96dd64b3779cfa769fa95f53b57a90436690a8defc60405160405180910390a2565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614582565b60405180910390fd5b80915050919050565b601560009054906101000a900460ff166117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290614482565b60405180910390fd5b60018110156117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e690614502565b60405180910390fd5b600f546117fc600c6128db565b111561183d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611834906144c2565b60405180910390fd5b601e811115611881576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187890614302565b60405180910390fd5b600f548161188f600c6128db565b61189991906148a7565b11156118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190614322565b60405180910390fd5b8066edad320f7940006118ed919061492e565b34101561192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690614762565b60405180910390fd5b61193881612c41565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a390614562565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119fb612804565b73ffffffffffffffffffffffffffffffffffffffff16611a19611bbe565b73ffffffffffffffffffffffffffffffffffffffff1614611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690614602565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600b8054611b3d90614a72565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6990614a72565b8015611bb65780601f10611b8b57610100808354040283529160200191611bb6565b820191906000526020600020905b815481529060010190602001808311611b9957829003601f168201915b505050505081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b66d5e8ad0ded200081565b606060018054611c0290614a72565b80601f0160208091040260200160405190810160405280929190818152602001828054611c2e90614a72565b8015611c7b5780601f10611c5057610100808354040283529160200191611c7b565b820191906000526020600020905b815481529060010190602001808311611c5e57829003601f168201915b5050505050905090565b601560009054906101000a900460ff16611cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccb90614482565b60405180910390fd5b600f54611ce1600c6128db565b1115611d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d19906144c2565b60405180910390fd5b600f54601354611d32600c6128db565b611d3c91906148a7565b1115611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7490614402565b60405180910390fd5b60135466be24280c610000611d92919061492e565b341015611dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcb90614762565b60405180910390fd5b611ddf601354612c41565b565b611de9612804565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90614462565b60405180910390fd5b8060056000611e64612804565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f11612804565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f5691906142c5565b60405180910390a35050565b6000611f6e600d6128db565b905090565b601560009054906101000a900460ff16611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb990614482565b60405180910390fd5b600f54611fcf600c6128db565b1115612010576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612007906144c2565b60405180910390fd5b600f54601254612020600c6128db565b61202a91906148a7565b111561206b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206290614622565b60405180910390fd5b60125466d5e8ad0ded2000612080919061492e565b3410156120c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b990614762565b60405180910390fd5b6120cd601254612c41565b565b6120d7612804565b73ffffffffffffffffffffffffffffffffffffffff166120f5611bbe565b73ffffffffffffffffffffffffffffffffffffffff161461214b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214290614602565b60405180910390fd5b80601560006101000a81548160ff02191690831515021790555050565b612179612173612804565b83612907565b6121b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121af90614722565b60405180910390fd5b6121c484848484612c80565b50505050565b678ac7230489e8000081565b600080601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b606061222c82612798565b61226b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226290614682565b60405180910390fd5b6000612275612cdc565b9050600081511161229557604051806020016040528060008152506122c0565b8061229f84612d19565b6040516020016122b092919061423a565b6040516020818303038152906040525b915050919050565b601e81565b600080601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054119050919050565b6000612324600e6128db565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123c5612804565b73ffffffffffffffffffffffffffffffffffffffff166123e3611bbe565b73ffffffffffffffffffffffffffffffffffffffff1614612439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243090614602565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a090614382565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612571612804565b73ffffffffffffffffffffffffffffffffffffffff1661258f611bbe565b73ffffffffffffffffffffffffffffffffffffffff16146125e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dc90614602565b60405180910390fd5b60008111612628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261f90614782565b60405180910390fd5b4781111561266b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612662906147a2565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156126b1573d6000803e3d6000fd5b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061278157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612791575061279082612ec6565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661287f836116aa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001816000016000828254019250508190555050565b600081600001549050919050565b612903828260405180602001604052806000815250612f30565b5050565b600061291282612798565b612951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612948906144e2565b60405180910390fd5b600061295c836116aa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129cb57508373ffffffffffffffffffffffffffffffffffffffff166129b384610a67565b73ffffffffffffffffffffffffffffffffffffffff16145b806129dc57506129db8185612329565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a05826116aa565b73ffffffffffffffffffffffffffffffffffffffff1614612a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5290614642565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac290614442565b60405180910390fd5b612ad6838383612f8b565b612ae160008261280c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b319190614988565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b8891906148a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60005b81811015612c7c57612c56600c6128c5565b612c6933612c64600c6128db565b6128e9565b8080612c7490614ad5565b915050612c44565b5050565b612c8b8484846129e5565b612c978484848461309f565b612cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccd90614362565b60405180910390fd5b50505050565b60606040518060400160405280601f81526020017f68747470733a2f2f6475636b6275636b6e66742e636f6d2f746f6b656e732f00815250905090565b60606000821415612d61576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ec1565b600082905060005b60008214612d93578080612d7c90614ad5565b915050600a82612d8c91906148fd565b9150612d69565b60008167ffffffffffffffff811115612dd5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e075781602001600182028036833780820191505090505b5090505b60008514612eba57600182612e209190614988565b9150600a85612e2f9190614b1e565b6030612e3b91906148a7565b60f81b818381518110612e77577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612eb391906148fd565b9450612e0b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f3a8383613236565b612f47600084848461309f565b612f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7d90614362565b60405180910390fd5b505050565b612f96838383613404565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fd957612fd481613409565b613018565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613017576130168382613452565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561305b57613056816135bf565b61309a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613099576130988282613702565b5b5b505050565b60006130c08473ffffffffffffffffffffffffffffffffffffffff16613781565b15613229578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130e9612804565b8786866040518563ffffffff1660e01b815260040161310b9493929190614279565b602060405180830381600087803b15801561312557600080fd5b505af192505050801561315657506040513d601f19601f820116820180604052508101906131539190613b69565b60015b6131d9573d8060008114613186576040519150601f19603f3d011682016040523d82523d6000602084013e61318b565b606091505b506000815114156131d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c890614362565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061322e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161329d906145c2565b60405180910390fd5b6132af81612798565b156132ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e6906143c2565b60405180910390fd5b6132fb60008383612f8b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461334b91906148a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161345f8461193b565b6134699190614988565b905060006007600084815260200190815260200160002054905081811461354e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506135d39190614988565b9050600060096000848152602001908152602001600020549050600060088381548110613629577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613671577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136e6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061370d8361193b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b8280546137a090614a72565b90600052602060002090601f0160209004810192826137c25760008555613809565b82601f106137db57805160ff1916838001178555613809565b82800160010185558215613809579182015b828111156138085782518255916020019190600101906137ed565b5b509050613816919061381a565b5090565b5b8082111561383357600081600090555060010161381b565b5090565b600061384a61384584614802565b6147dd565b90508281526020810184848401111561386257600080fd5b61386d848285614a30565b509392505050565b600061388861388384614833565b6147dd565b9050828152602081018484840111156138a057600080fd5b6138ab848285614a30565b509392505050565b6000813590506138c28161578a565b92915050565b6000813590506138d7816157a1565b92915050565b6000813590506138ec816157b8565b92915050565b600081519050613901816157b8565b92915050565b600082601f83011261391857600080fd5b8135613928848260208601613837565b91505092915050565b600082601f83011261394257600080fd5b8135613952848260208601613875565b91505092915050565b60008135905061396a816157cf565b92915050565b60006020828403121561398257600080fd5b6000613990848285016138b3565b91505092915050565b600080604083850312156139ac57600080fd5b60006139ba858286016138b3565b92505060206139cb858286016138b3565b9150509250929050565b6000806000606084860312156139ea57600080fd5b60006139f8868287016138b3565b9350506020613a09868287016138b3565b9250506040613a1a8682870161395b565b9150509250925092565b60008060008060808587031215613a3a57600080fd5b6000613a48878288016138b3565b9450506020613a59878288016138b3565b9350506040613a6a8782880161395b565b925050606085013567ffffffffffffffff811115613a8757600080fd5b613a9387828801613907565b91505092959194509250565b60008060408385031215613ab257600080fd5b6000613ac0858286016138b3565b9250506020613ad1858286016138c8565b9150509250929050565b60008060408385031215613aee57600080fd5b6000613afc858286016138b3565b9250506020613b0d8582860161395b565b9150509250929050565b600060208284031215613b2957600080fd5b6000613b37848285016138c8565b91505092915050565b600060208284031215613b5257600080fd5b6000613b60848285016138dd565b91505092915050565b600060208284031215613b7b57600080fd5b6000613b89848285016138f2565b91505092915050565b600060208284031215613ba457600080fd5b600082013567ffffffffffffffff811115613bbe57600080fd5b613bca84828501613931565b91505092915050565b600060208284031215613be557600080fd5b6000613bf38482850161395b565b91505092915050565b60008060408385031215613c0f57600080fd5b6000613c1d8582860161395b565b9250506020613c2e8582860161395b565b9150509250929050565b613c41816149bc565b82525050565b613c50816149ce565b82525050565b6000613c6182614864565b613c6b818561487a565b9350613c7b818560208601614a3f565b613c8481614c0b565b840191505092915050565b6000613c9a8261486f565b613ca4818561488b565b9350613cb4818560208601614a3f565b613cbd81614c0b565b840191505092915050565b6000613cd38261486f565b613cdd818561489c565b9350613ced818560208601614a3f565b80840191505092915050565b6000613d06603a8361488b565b9150613d1182614c1c565b604082019050919050565b6000613d2960418361488b565b9150613d3482614c6b565b606082019050919050565b6000613d4c602b8361488b565b9150613d5782614ce0565b604082019050919050565b6000613d6f60328361488b565b9150613d7a82614d2f565b604082019050919050565b6000613d9260268361488b565b9150613d9d82614d7e565b604082019050919050565b6000613db560518361488b565b9150613dc082614dcd565b606082019050919050565b6000613dd8601c8361488b565b9150613de382614e42565b602082019050919050565b6000613dfb60138361488b565b9150613e0682614e6b565b602082019050919050565b6000613e1e60488361488b565b9150613e2982614e94565b606082019050919050565b6000613e41602e8361488b565b9150613e4c82614f09565b604082019050919050565b6000613e6460248361488b565b9150613e6f82614f58565b604082019050919050565b6000613e8760198361488b565b9150613e9282614fa7565b602082019050919050565b6000613eaa601a8361488b565b9150613eb582614fd0565b602082019050919050565b6000613ecd60498361488b565b9150613ed882614ff9565b606082019050919050565b6000613ef060208361488b565b9150613efb8261506e565b602082019050919050565b6000613f13602c8361488b565b9150613f1e82615097565b604082019050919050565b6000613f3660338361488b565b9150613f41826150e6565b604082019050919050565b6000613f5960148361488b565b9150613f6482615135565b602082019050919050565b6000613f7c60388361488b565b9150613f878261515e565b604082019050919050565b6000613f9f602a8361488b565b9150613faa826151ad565b604082019050919050565b6000613fc260298361488b565b9150613fcd826151fc565b604082019050919050565b6000613fe560148361488b565b9150613ff08261524b565b602082019050919050565b600061400860208361488b565b915061401382615274565b602082019050919050565b600061402b602c8361488b565b91506140368261529d565b604082019050919050565b600061404e60208361488b565b9150614059826152ec565b602082019050919050565b600061407160538361488b565b915061407c82615315565b606082019050919050565b600061409460298361488b565b915061409f8261538a565b604082019050919050565b60006140b760308361488b565b91506140c2826153d9565b604082019050919050565b60006140da602f8361488b565b91506140e582615428565b604082019050919050565b60006140fd602f8361488b565b915061410882615477565b604082019050919050565b600061412060218361488b565b915061412b826154c6565b604082019050919050565b600061414360358361488b565b915061414e82615515565b604082019050919050565b600061416660458361488b565b915061417182615564565b606082019050919050565b600061418960318361488b565b9150614194826155d9565b604082019050919050565b60006141ac602c8361488b565b91506141b782615628565b604082019050919050565b60006141cf60218361488b565b91506141da82615677565b604082019050919050565b60006141f260288361488b565b91506141fd826156c6565b604082019050919050565b600061421560488361488b565b915061422082615715565b606082019050919050565b61423481614a26565b82525050565b60006142468285613cc8565b91506142528284613cc8565b91508190509392505050565b60006020820190506142736000830184613c38565b92915050565b600060808201905061428e6000830187613c38565b61429b6020830186613c38565b6142a8604083018561422b565b81810360608301526142ba8184613c56565b905095945050505050565b60006020820190506142da6000830184613c47565b92915050565b600060208201905081810360008301526142fa8184613c8f565b905092915050565b6000602082019050818103600083015261431b81613cf9565b9050919050565b6000602082019050818103600083015261433b81613d1c565b9050919050565b6000602082019050818103600083015261435b81613d3f565b9050919050565b6000602082019050818103600083015261437b81613d62565b9050919050565b6000602082019050818103600083015261439b81613d85565b9050919050565b600060208201905081810360008301526143bb81613da8565b9050919050565b600060208201905081810360008301526143db81613dcb565b9050919050565b600060208201905081810360008301526143fb81613dee565b9050919050565b6000602082019050818103600083015261441b81613e11565b9050919050565b6000602082019050818103600083015261443b81613e34565b9050919050565b6000602082019050818103600083015261445b81613e57565b9050919050565b6000602082019050818103600083015261447b81613e7a565b9050919050565b6000602082019050818103600083015261449b81613e9d565b9050919050565b600060208201905081810360008301526144bb81613ec0565b9050919050565b600060208201905081810360008301526144db81613ee3565b9050919050565b600060208201905081810360008301526144fb81613f06565b9050919050565b6000602082019050818103600083015261451b81613f29565b9050919050565b6000602082019050818103600083015261453b81613f4c565b9050919050565b6000602082019050818103600083015261455b81613f6f565b9050919050565b6000602082019050818103600083015261457b81613f92565b9050919050565b6000602082019050818103600083015261459b81613fb5565b9050919050565b600060208201905081810360008301526145bb81613fd8565b9050919050565b600060208201905081810360008301526145db81613ffb565b9050919050565b600060208201905081810360008301526145fb8161401e565b9050919050565b6000602082019050818103600083015261461b81614041565b9050919050565b6000602082019050818103600083015261463b81614064565b9050919050565b6000602082019050818103600083015261465b81614087565b9050919050565b6000602082019050818103600083015261467b816140aa565b9050919050565b6000602082019050818103600083015261469b816140cd565b9050919050565b600060208201905081810360008301526146bb816140f0565b9050919050565b600060208201905081810360008301526146db81614113565b9050919050565b600060208201905081810360008301526146fb81614136565b9050919050565b6000602082019050818103600083015261471b81614159565b9050919050565b6000602082019050818103600083015261473b8161417c565b9050919050565b6000602082019050818103600083015261475b8161419f565b9050919050565b6000602082019050818103600083015261477b816141c2565b9050919050565b6000602082019050818103600083015261479b816141e5565b9050919050565b600060208201905081810360008301526147bb81614208565b9050919050565b60006020820190506147d7600083018461422b565b92915050565b60006147e76147f8565b90506147f38282614aa4565b919050565b6000604051905090565b600067ffffffffffffffff82111561481d5761481c614bdc565b5b61482682614c0b565b9050602081019050919050565b600067ffffffffffffffff82111561484e5761484d614bdc565b5b61485782614c0b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006148b282614a26565b91506148bd83614a26565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148f2576148f1614b4f565b5b828201905092915050565b600061490882614a26565b915061491383614a26565b92508261492357614922614b7e565b5b828204905092915050565b600061493982614a26565b915061494483614a26565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561497d5761497c614b4f565b5b828202905092915050565b600061499382614a26565b915061499e83614a26565b9250828210156149b1576149b0614b4f565b5b828203905092915050565b60006149c782614a06565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a5d578082015181840152602081019050614a42565b83811115614a6c576000848401525b50505050565b60006002820490506001821680614a8a57607f821691505b60208210811415614a9e57614a9d614bad565b5b50919050565b614aad82614c0b565b810181811067ffffffffffffffff82111715614acc57614acb614bdc565b5b80604052505050565b6000614ae082614a26565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b1357614b12614b4f565b5b600182019050919050565b6000614b2982614a26565b9150614b3483614a26565b925082614b4457614b43614b7e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f596f7572206c6976696e6720736974756174696f6e206973206e6f742073756960008201527f7461626c6520666f722074686174206d616e79206475636b7321000000000000602082015250565b7f5765272772652072756e6e696e67206f7574206f66206475636b7320746f206760008201527f69766521202053656c656374206c657373206475636b7320746f2061646f707460208201527f2100000000000000000000000000000000000000000000000000000000000000604082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5765272772652072756e6e696e67206f7574206f66206475636b7320746f206760008201527f6976652120204170706172656e746c7920796f75206172656e2727742061204260208201527f6164204d6f74686572204475636b65722e000000000000000000000000000000604082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546f6b656e20696420697320696e76616c696400000000000000000000000000600082015250565b7f5765272772652072756e6e696e67206f7574206f66206475636b7320746f206760008201527f6976652120204e6f206d6f726520706c6174746572732063616e20626520636f60208201527f6f6b65642075702e000000000000000000000000000000000000000000000000604082015250565b7f5765272776652072756e206f7574206f6620686172706f6f6e7321202046696e60008201527f6420616e6f746865722077617921000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f41646f7074696f6e206167656e637920697320636c6f7365642e000000000000600082015250565b7f5765272772652072756e6e696e67206f7574206f66206475636b7320746f206760008201527f6976652120204170706172656e746c7920796f75206172656e2727742061204d60208201527f6f6279204475636b2e0000000000000000000000000000000000000000000000604082015250565b7f57652727726520616c6c206f7574206f66206475636b7320746f206769766521600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f752063616e2727742061646f7074206c657373207468616e20312064756360008201527f6b2c20796f752073696c6c7920676f6f73652100000000000000000000000000602082015250565b7f546f6b656e20696420697320746f6f206269672e000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f546f6b656e20696420697320696e76616c69642e000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5765272772652072756e6e696e67206f7574206f66206475636b7320746f206760008201527f697665212020596f7520746f6f6b20746f6f206c6f6e6720746f20676574207960208201527f6f7572206475636b7320696e206120726f772100000000000000000000000000604082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f5765206c6f7665206f7572207768616c65732120205361766520736f6d65206b60008201527f72696c6c20666f72206f74686572732e00000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4f6e6c7920746865206f776e6572206f66206120746f6b656e206d617920736560008201527f74207468652073747564206665652e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f75206172652061206b6e6f776e20426164204d6f74686572204475636b6560008201527f722e2020446f6e272774206265206772656564792e0000000000000000000000602082015250565b7f57652727766520686974206f7572206c696d6974206f6620426164204d6f746860008201527f6572204475636b657273212020596f75206120536164204d6f7468657220447560208201527f636b657221000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4d6f7265206574686572206e656564656420746f2061646f7074206475636b7360008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f43726564697420616d6f756e74206d757374206265206120706f73746976652060008201527f696e74656765722e000000000000000000000000000000000000000000000000602082015250565b7f43726564697420616d6f756e74206d757374206265206c657373207468616e2060008201527f6f7220657175616c20746f207468652062616c616e6365206f6620746865206360208201527f6f6e74726163742e000000000000000000000000000000000000000000000000604082015250565b615793816149bc565b811461579e57600080fd5b50565b6157aa816149ce565b81146157b557600080fd5b50565b6157c1816149da565b81146157cc57600080fd5b50565b6157d881614a26565b81146157e357600080fd5b5056fea26469706673582212204e9708d9178941fd6d0c87d04f0ae892ec1407dc8de0dc898bf12b4427a3e26464736f6c63430008040033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.