ERC-721
NFT
Overview
Max Total Supply
8,192 DerpyBirbs
Holders
1,829
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 DerpyBirbsLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DerpyBirbs
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; /** ______ _______ ______ _______ __ __ _______ ___ ______ _______ _______ | | | || _ | | || | | | | _ || | | _ | | _ || | | _ || ___|| | || | _ || |_| | | |_| || | | | || | |_| || _____| | | | || |___ | |_||_ | |_| || | | || | | |_||_ | || |_____ | |_| || ___|| __ || ___||_ _| | _ | | | | __ || _ | |_____ | | || |___ | | | || | | | | |_| || | | | | || |_| | _____| | |______| |_______||___| |_||___| |___| |_______||___| |___| |_||_______||_______| By Process Smith & DMADDE Studios */ contract DerpyBirbs is Context, ERC721Enumerable, ERC721Burnable, Ownable { uint internal constant MAX_MINTS_PER_TRANSACTION = 16; uint internal constant TOKEN_LIMIT = 8192; uint private nonce = 0; uint[TOKEN_LIMIT] private indices; uint private numTokens = 0; uint256 internal _mintPrice = 0; address payable internal artTeam = payable(0xdEC5190D59Ed370Aeed30341DCda3a2b8888e9c2); address payable internal fappablo = payable(0xb72e9541FE46384D6942291F7B11db6bBB7dA956); address payable internal astronio = payable(0x9cCF31738Efcd642ABbe39202F7BD78f1495B8A4); address payable internal devasto = payable(0x7AC742F86aBF7E53314eBe4Cc7C71a5aAa930f6b); string internal _baseTokenURI; bool internal saleStarted = false; bool internal URISet = false; uint internal devSupplyAwarded = 0; /** * Token URIs will be autogenerated based on `baseURI` and their token IDs. * See {ERC721-tokenURI}. */ constructor(string memory name, string memory symbol,string memory baseTokenURI) ERC721(name, symbol) { _baseTokenURI = baseTokenURI; //dont call awardDevs() here, initial supply here, too much gas for one transaction } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } /** * Can only be called twice. Gives 64 total Birbs to devs for giveaways, marketing purposes and team members. * 28 of these will go to Treasure Chests holders. */ function give32BirbsToDevs() external onlyOwner { require(saleStarted == false,"Sale has already started"); require(devSupplyAwarded < 2,"Dev supply has already been awarded"); uint i; uint id; for(i = 0; i < 32; i++){ id = randomIndex(); _mint(fappablo, id); numTokens = numTokens + 1; } devSupplyAwarded = devSupplyAwarded+1; } /** * Credits to LarvaLabs Meebits contract */ function randomIndex() internal returns (uint) { uint totalSize = TOKEN_LIMIT - numTokens; uint index = uint(keccak256(abi.encodePacked(nonce, msg.sender, block.difficulty, block.timestamp))) % totalSize; uint value = 0; if (indices[index] != 0) { value = indices[index]; } else { value = index; } // Move last value to selected position if (indices[totalSize - 1] == 0) { // Array position not initialized, so use position indices[index] = totalSize - 1; } else { // Array position holds a value so use that indices[index] = indices[totalSize - 1]; } nonce++; // Don't allow a zero index, start counting at 1 return value+1; } /** * @dev Creates a new token. Its token ID will be automatically * assigned (and available on the emitted {IERC721-Transfer} event), and the token * URI autogenerated based on the base URI passed at construction. * * See {ERC721-_mint}. * */ function mint(address to, uint amount) external payable{ //check sale start require(saleStarted == true, "Sale has not started yet"); //only 8192 birbs require(numTokens < TOKEN_LIMIT, "No Birbs left in the nest"); //mint at least one require(amount > 0, "Must mint at least one"); //32 max per transaction require(amount <= MAX_MINTS_PER_TRANSACTION, "Trying to mint too many"); //dont overmint require(amount <= TOKEN_LIMIT-numTokens,"Not enough Birbs left to mint"); //check payment require(msg.value >= _mintPrice * amount, "msg.value too low"); uint id; uint i; for(i = 0; i < amount; i++){ id = randomIndex(); _mint(to, id); numTokens = numTokens + 1; } } /** * @dev Withdraws funds to dev and art teams * */ function withdrawFunds() external virtual { uint256 halfBalance = address(this).balance / 2; uint256 thirdOfHalfBalance = halfBalance / 3; artTeam.transfer(halfBalance); fappablo.transfer(thirdOfHalfBalance); astronio.transfer(thirdOfHalfBalance); devasto.transfer(thirdOfHalfBalance); } /** * Devs cant change URI after the sale begins */ function setBaseURI(string memory baseTokenURI) external onlyOwner { require(saleStarted == false,"Can't change metadata after the sale has started"); _baseTokenURI = baseTokenURI; URISet = true; } /** * Start the sale (cant be stopped later) */ function startSale(uint256 mintPrice) external virtual onlyOwner { require(saleStarted == false,"Sale has already started"); require(URISet == true, "URI not set"); require(mintPrice > 0.01 ether,"Price too low"); _mintPrice = mintPrice; saleStarted = true; } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } function getAmountMinted() external view returns (uint256) { return numTokens; } function getMaxSupply() external pure returns (uint256) { return TOKEN_LIMIT; } function getMintPrice() external view returns (uint256) { return _mintPrice; } function hasSaleStarted() external view returns (bool) { return saleStarted; } }
// 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// 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}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { 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 { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT 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 "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// 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 "../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; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } 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 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) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT 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": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"give32BirbsToDevs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hasSaleStarted","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"startSale","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":[],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600b55600061200c55600061200d5573dec5190d59ed370aeed30341dcda3a2b8888e9c261200e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b72e9541fe46384d6942291f7b11db6bbb7da95661200f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739ccf31738efcd642abbe39202f7bd78f1495b8a461201060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737ac742f86abf7e53314ebe4cc7c71a5aaa930f6b61201160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600061201360006101000a81548160ff021916908315150217905550600061201360016101000a81548160ff021916908315150217905550600061201455348015620001b857600080fd5b5060405162004f9938038062004f998339818101604052810190620001de919062000453565b82828160009080519060200190620001f892919062000325565b5080600190805190602001906200021192919062000325565b50505062000234620002286200025760201b60201c565b6200025f60201b60201c565b8061201290805190602001906200024d92919062000325565b5050505062000690565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200033390620005a1565b90600052602060002090601f016020900481019282620003575760008555620003a3565b82601f106200037257805160ff1916838001178555620003a3565b82800160010185558215620003a3579182015b82811115620003a257825182559160200191906001019062000385565b5b509050620003b29190620003b6565b5090565b5b80821115620003d1576000816000905550600101620003b7565b5090565b6000620003ec620003e68462000535565b6200050c565b9050828152602081018484840111156200040b576200040a62000670565b5b620004188482856200056b565b509392505050565b600082601f8301126200043857620004376200066b565b5b81516200044a848260208601620003d5565b91505092915050565b6000806000606084860312156200046f576200046e6200067a565b5b600084015167ffffffffffffffff81111562000490576200048f62000675565b5b6200049e8682870162000420565b935050602084015167ffffffffffffffff811115620004c257620004c162000675565b5b620004d08682870162000420565b925050604084015167ffffffffffffffff811115620004f457620004f362000675565b5b620005028682870162000420565b9150509250925092565b6000620005186200052b565b9050620005268282620005d7565b919050565b6000604051905090565b600067ffffffffffffffff8211156200055357620005526200063c565b5b6200055e826200067f565b9050602081019050919050565b60005b838110156200058b5780820151818401526020810190506200056e565b838111156200059b576000848401525b50505050565b60006002820490506001821680620005ba57607f821691505b60208210811415620005d157620005d06200060d565b5b50919050565b620005e2826200067f565b810181811067ffffffffffffffff821117156200060457620006036200063c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6148f980620006a06000396000f3fe6080604052600436106101c25760003560e01c80634c0f38c2116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd1461060b578063e777df2014610648578063e985e9c514610673578063f2fde38b146106b0576101c2565b806395d89b4114610563578063a22cb4651461058e578063a7f93ebd146105b7578063b88d4fde146105e2576101c2565b80636352211e116100d15780636352211e146104a757806370a08231146104e4578063715018a6146105215780638da5cb5b14610538576101c2565b80634c0f38c2146104165780634f6ccce71461044157806355f804b31461047e576101c2565b80631c8b232d116101645780632f745c591161013e5780632f745c591461036b57806340c10f19146103a857806342842e0e146103c457806342966c68146103ed576101c2565b80631c8b232d1461030057806323b872dd1461032b57806324600fc314610354576101c2565b8063081812fc116101a0578063081812fc14610246578063095ea7b3146102835780630e3ab61d146102ac57806318160ddd146102d5576101c2565b806301a60e99146101c757806301ffc9a7146101de57806306fdde031461021b575b600080fd5b3480156101d357600080fd5b506101dc6106d9565b005b3480156101ea57600080fd5b506102056004803603810190610200919061314e565b61087f565b604051610212919061380f565b60405180910390f35b34801561022757600080fd5b50610230610891565b60405161023d919061382a565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906131f1565b610923565b60405161027a91906137a8565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a5919061310e565b6109a8565b005b3480156102b857600080fd5b506102d360048036038101906102ce91906131f1565b610ac0565b005b3480156102e157600080fd5b506102ea610c5a565b6040516102f79190613c0c565b60405180910390f35b34801561030c57600080fd5b50610315610c67565b604051610322919061380f565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612ff8565b610c7f565b005b34801561036057600080fd5b50610369610cdf565b005b34801561037757600080fd5b50610392600480360381019061038d919061310e565b610ead565b60405161039f9190613c0c565b60405180910390f35b6103c260048036038101906103bd919061310e565b610f52565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190612ff8565b61116f565b005b3480156103f957600080fd5b50610414600480360381019061040f91906131f1565b61118f565b005b34801561042257600080fd5b5061042b6111eb565b6040516104389190613c0c565b60405180910390f35b34801561044d57600080fd5b50610468600480360381019061046391906131f1565b6111f5565b6040516104759190613c0c565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a091906131a8565b611266565b005b3480156104b357600080fd5b506104ce60048036038101906104c991906131f1565b611370565b6040516104db91906137a8565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190612f8b565b611422565b6040516105189190613c0c565b60405180910390f35b34801561052d57600080fd5b506105366114da565b005b34801561054457600080fd5b5061054d611562565b60405161055a91906137a8565b60405180910390f35b34801561056f57600080fd5b5061057861158c565b604051610585919061382a565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b091906130ce565b61161e565b005b3480156105c357600080fd5b506105cc61179f565b6040516105d99190613c0c565b60405180910390f35b3480156105ee57600080fd5b506106096004803603810190610604919061304b565b6117aa565b005b34801561061757600080fd5b50610632600480360381019061062d91906131f1565b61180c565b60405161063f919061382a565b60405180910390f35b34801561065457600080fd5b5061065d6118b3565b60405161066a9190613c0c565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612fb8565b6118be565b6040516106a7919061380f565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612f8b565b611952565b005b6106e1611a4a565b73ffffffffffffffffffffffffffffffffffffffff166106ff611562565b73ffffffffffffffffffffffffffffffffffffffff1614610755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074c90613a8c565b60405180910390fd5b6000151561201360009054906101000a900460ff161515146107ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a390613a2c565b60405180910390fd5b600261201454106107f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e99061396c565b60405180910390fd5b600080600091505b60208210156108645761080b611a52565b905061083a61200f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611bac565b600161200c5461084a9190613cf1565b61200c81905550818061085c90613f1f565b9250506107fa565b6001612014546108749190613cf1565b612014819055505050565b600061088a82611d7a565b9050919050565b6060600080546108a090613ebc565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc90613ebc565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611df4565b61096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490613a6c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b382611370565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90613aec565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a43611a4a565b73ffffffffffffffffffffffffffffffffffffffff161480610a725750610a7181610a6c611a4a565b6118be565b5b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa8906139cc565b60405180910390fd5b610abb8383611e60565b505050565b610ac8611a4a565b73ffffffffffffffffffffffffffffffffffffffff16610ae6611562565b73ffffffffffffffffffffffffffffffffffffffff1614610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3390613a8c565b60405180910390fd5b6000151561201360009054906101000a900460ff16151514610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90613a2c565b60405180910390fd5b6001151561201360019054906101000a900460ff16151514610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be19061386c565b60405180910390fd5b662386f26fc100008111610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a90613b0c565b60405180910390fd5b8061200d81905550600161201360006101000a81548160ff02191690831515021790555050565b6000600880549050905090565b600061201360009054906101000a900460ff16905090565b610c90610c8a611a4a565b82611f19565b610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690613b2c565b60405180910390fd5b610cda838383611ff7565b505050565b6000600247610cee9190613d47565b90506000600382610cff9190613d47565b905061200e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610d6a573d6000803e3d6000fd5b5061200f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610dd4573d6000803e3d6000fd5b5061201060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e3e573d6000803e3d6000fd5b5061201160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ea8573d6000803e3d6000fd5b505050565b6000610eb883611422565b8210610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef09061388c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6001151561201360009054906101000a900460ff16151514610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa09061384c565b60405180910390fd5b61200061200c5410610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe79061390c565b60405180910390fd5b60008111611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613b8c565b60405180910390fd5b6010811115611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90613bcc565b60405180910390fd5b61200c546120006110889190613dd2565b8111156110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c19061398c565b60405180910390fd5b8061200d546110d99190613d78565b34101561111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290613bec565b60405180910390fd5b600080600090505b8281101561116957611133611a52565b915061113f8483611bac565b600161200c5461114f9190613cf1565b61200c81905550808061116190613f1f565b915050611123565b50505050565b61118a838383604051806020016040528060008152506117aa565b505050565b6111a061119a611a4a565b82611f19565b6111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d690613b6c565b60405180910390fd5b6111e881612253565b50565b6000612000905090565b60006111ff610c5a565b8210611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123790613b4c565b60405180910390fd5b6008828154811061125457611253614083565b5b90600052602060002001549050919050565b61126e611a4a565b73ffffffffffffffffffffffffffffffffffffffff1661128c611562565b73ffffffffffffffffffffffffffffffffffffffff16146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990613a8c565b60405180910390fd5b6000151561201360009054906101000a900460ff16151514611339576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133090613bac565b60405180910390fd5b806120129080519060200190611350929190612d9f565b50600161201360016101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141090613a0c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a906139ec565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e2611a4a565b73ffffffffffffffffffffffffffffffffffffffff16611500611562565b73ffffffffffffffffffffffffffffffffffffffff1614611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613a8c565b60405180910390fd5b6115606000612364565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461159b90613ebc565b80601f01602080910402602001604051908101604052809291908181526020018280546115c790613ebc565b80156116145780601f106115e957610100808354040283529160200191611614565b820191906000526020600020905b8154815290600101906020018083116115f757829003601f168201915b5050505050905090565b611626611a4a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b9061394c565b60405180910390fd5b80600560006116a1611a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661174e611a4a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611793919061380f565b60405180910390a35050565b600061200d54905090565b6117bb6117b5611a4a565b83611f19565b6117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190613b2c565b60405180910390fd5b6118068484848461242a565b50505050565b606061181782611df4565b611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90613acc565b60405180910390fd5b6000611860612486565b9050600081511161188057604051806020016040528060008152506118ab565b8061188a84612519565b60405160200161189b929190613736565b6040516020818303038152906040525b915050919050565b600061200c54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61195a611a4a565b73ffffffffffffffffffffffffffffffffffffffff16611978611562565b73ffffffffffffffffffffffffffffffffffffffff16146119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590613a8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a35906138cc565b60405180910390fd5b611a4781612364565b50565b600033905090565b60008061200c54612000611a669190613dd2565b9050600081600b54334442604051602001611a84949392919061375a565b6040516020818303038152906040528051906020012060001c611aa79190613f96565b9050600080600c836120008110611ac157611ac0614083565b5b015414611ae657600c826120008110611add57611adc614083565b5b01549050611aea565b8190505b6000600c600185611afb9190613dd2565b6120008110611b0d57611b0c614083565b5b01541415611b4157600183611b229190613dd2565b600c836120008110611b3757611b36614083565b5b0181905550611b7f565b600c600184611b509190613dd2565b6120008110611b6257611b61614083565b5b0154600c836120008110611b7957611b78614083565b5b01819055505b600b6000815480929190611b9290613f1f565b9190505550600181611ba49190613cf1565b935050505090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390613a4c565b60405180910390fd5b611c2581611df4565b15611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c906138ec565b60405180910390fd5b611c716000838361267a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc19190613cf1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ded5750611dec8261268a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ed383611370565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f2482611df4565b611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a906139ac565b60405180910390fd5b6000611f6e83611370565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fdd57508373ffffffffffffffffffffffffffffffffffffffff16611fc584610923565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fee5750611fed81856118be565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661201782611370565b73ffffffffffffffffffffffffffffffffffffffff161461206d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206490613aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d49061392c565b60405180910390fd5b6120e883838361267a565b6120f3600082611e60565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121439190613dd2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461219a9190613cf1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061225e82611370565b905061226c8160008461267a565b612277600083611e60565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122c79190613dd2565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612435848484611ff7565b6124418484848461276c565b612480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612477906138ac565b60405180910390fd5b50505050565b6060612012805461249690613ebc565b80601f01602080910402602001604051908101604052809291908181526020018280546124c290613ebc565b801561250f5780601f106124e45761010080835404028352916020019161250f565b820191906000526020600020905b8154815290600101906020018083116124f257829003601f168201915b5050505050905090565b60606000821415612561576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612675565b600082905060005b6000821461259357808061257c90613f1f565b915050600a8261258c9190613d47565b9150612569565b60008167ffffffffffffffff8111156125af576125ae6140b2565b5b6040519080825280601f01601f1916602001820160405280156125e15781602001600182028036833780820191505090505b5090505b6000851461266e576001826125fa9190613dd2565b9150600a856126099190613f96565b60306126159190613cf1565b60f81b81838151811061262b5761262a614083565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126679190613d47565b94506125e5565b8093505050505b919050565b612685838383612903565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061275557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612765575061276482612a17565b5b9050919050565b600061278d8473ffffffffffffffffffffffffffffffffffffffff16612a81565b156128f6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127b6611a4a565b8786866040518563ffffffff1660e01b81526004016127d894939291906137c3565b602060405180830381600087803b1580156127f257600080fd5b505af192505050801561282357506040513d601f19601f82011682018060405250810190612820919061317b565b60015b6128a6573d8060008114612853576040519150601f19603f3d011682016040523d82523d6000602084013e612858565b606091505b5060008151141561289e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612895906138ac565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128fb565b600190505b949350505050565b61290e838383612a94565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129515761294c81612a99565b612990565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461298f5761298e8382612ae2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d3576129ce81612c4f565b612a12565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a1157612a108282612d20565b5b5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612aef84611422565b612af99190613dd2565b9050600060076000848152602001908152602001600020549050818114612bde576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c639190613dd2565b9050600060096000848152602001908152602001600020549050600060088381548110612c9357612c92614083565b5b906000526020600020015490508060088381548110612cb557612cb4614083565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d0457612d03614054565b5b6001900381819060005260206000200160009055905550505050565b6000612d2b83611422565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612dab90613ebc565b90600052602060002090601f016020900481019282612dcd5760008555612e14565b82601f10612de657805160ff1916838001178555612e14565b82800160010185558215612e14579182015b82811115612e13578251825591602001919060010190612df8565b5b509050612e219190612e25565b5090565b5b80821115612e3e576000816000905550600101612e26565b5090565b6000612e55612e5084613c4c565b613c27565b905082815260208101848484011115612e7157612e706140e6565b5b612e7c848285613e7a565b509392505050565b6000612e97612e9284613c7d565b613c27565b905082815260208101848484011115612eb357612eb26140e6565b5b612ebe848285613e7a565b509392505050565b600081359050612ed581614867565b92915050565b600081359050612eea8161487e565b92915050565b600081359050612eff81614895565b92915050565b600081519050612f1481614895565b92915050565b600082601f830112612f2f57612f2e6140e1565b5b8135612f3f848260208601612e42565b91505092915050565b600082601f830112612f5d57612f5c6140e1565b5b8135612f6d848260208601612e84565b91505092915050565b600081359050612f85816148ac565b92915050565b600060208284031215612fa157612fa06140f0565b5b6000612faf84828501612ec6565b91505092915050565b60008060408385031215612fcf57612fce6140f0565b5b6000612fdd85828601612ec6565b9250506020612fee85828601612ec6565b9150509250929050565b600080600060608486031215613011576130106140f0565b5b600061301f86828701612ec6565b935050602061303086828701612ec6565b925050604061304186828701612f76565b9150509250925092565b60008060008060808587031215613065576130646140f0565b5b600061307387828801612ec6565b945050602061308487828801612ec6565b935050604061309587828801612f76565b925050606085013567ffffffffffffffff8111156130b6576130b56140eb565b5b6130c287828801612f1a565b91505092959194509250565b600080604083850312156130e5576130e46140f0565b5b60006130f385828601612ec6565b925050602061310485828601612edb565b9150509250929050565b60008060408385031215613125576131246140f0565b5b600061313385828601612ec6565b925050602061314485828601612f76565b9150509250929050565b600060208284031215613164576131636140f0565b5b600061317284828501612ef0565b91505092915050565b600060208284031215613191576131906140f0565b5b600061319f84828501612f05565b91505092915050565b6000602082840312156131be576131bd6140f0565b5b600082013567ffffffffffffffff8111156131dc576131db6140eb565b5b6131e884828501612f48565b91505092915050565b600060208284031215613207576132066140f0565b5b600061321584828501612f76565b91505092915050565b61322781613e06565b82525050565b61323e61323982613e06565b613f68565b82525050565b61324d81613e18565b82525050565b600061325e82613cae565b6132688185613cc4565b9350613278818560208601613e89565b613281816140f5565b840191505092915050565b600061329782613cb9565b6132a18185613cd5565b93506132b1818560208601613e89565b6132ba816140f5565b840191505092915050565b60006132d082613cb9565b6132da8185613ce6565b93506132ea818560208601613e89565b80840191505092915050565b6000613303601883613cd5565b915061330e82614113565b602082019050919050565b6000613326600b83613cd5565b91506133318261413c565b602082019050919050565b6000613349602b83613cd5565b915061335482614165565b604082019050919050565b600061336c603283613cd5565b9150613377826141b4565b604082019050919050565b600061338f602683613cd5565b915061339a82614203565b604082019050919050565b60006133b2601c83613cd5565b91506133bd82614252565b602082019050919050565b60006133d5601983613cd5565b91506133e08261427b565b602082019050919050565b60006133f8602483613cd5565b9150613403826142a4565b604082019050919050565b600061341b601983613cd5565b9150613426826142f3565b602082019050919050565b600061343e602383613cd5565b91506134498261431c565b604082019050919050565b6000613461601d83613cd5565b915061346c8261436b565b602082019050919050565b6000613484602c83613cd5565b915061348f82614394565b604082019050919050565b60006134a7603883613cd5565b91506134b2826143e3565b604082019050919050565b60006134ca602a83613cd5565b91506134d582614432565b604082019050919050565b60006134ed602983613cd5565b91506134f882614481565b604082019050919050565b6000613510601883613cd5565b915061351b826144d0565b602082019050919050565b6000613533602083613cd5565b915061353e826144f9565b602082019050919050565b6000613556602c83613cd5565b915061356182614522565b604082019050919050565b6000613579602083613cd5565b915061358482614571565b602082019050919050565b600061359c602983613cd5565b91506135a78261459a565b604082019050919050565b60006135bf602f83613cd5565b91506135ca826145e9565b604082019050919050565b60006135e2602183613cd5565b91506135ed82614638565b604082019050919050565b6000613605600d83613cd5565b915061361082614687565b602082019050919050565b6000613628603183613cd5565b9150613633826146b0565b604082019050919050565b600061364b602c83613cd5565b9150613656826146ff565b604082019050919050565b600061366e603083613cd5565b91506136798261474e565b604082019050919050565b6000613691601683613cd5565b915061369c8261479d565b602082019050919050565b60006136b4603083613cd5565b91506136bf826147c6565b604082019050919050565b60006136d7601783613cd5565b91506136e282614815565b602082019050919050565b60006136fa601183613cd5565b91506137058261483e565b602082019050919050565b61371981613e70565b82525050565b61373061372b82613e70565b613f8c565b82525050565b600061374282856132c5565b915061374e82846132c5565b91508190509392505050565b6000613766828761371f565b602082019150613776828661322d565b601482019150613786828561371f565b602082019150613796828461371f565b60208201915081905095945050505050565b60006020820190506137bd600083018461321e565b92915050565b60006080820190506137d8600083018761321e565b6137e5602083018661321e565b6137f26040830185613710565b81810360608301526138048184613253565b905095945050505050565b60006020820190506138246000830184613244565b92915050565b60006020820190508181036000830152613844818461328c565b905092915050565b60006020820190508181036000830152613865816132f6565b9050919050565b6000602082019050818103600083015261388581613319565b9050919050565b600060208201905081810360008301526138a58161333c565b9050919050565b600060208201905081810360008301526138c58161335f565b9050919050565b600060208201905081810360008301526138e581613382565b9050919050565b60006020820190508181036000830152613905816133a5565b9050919050565b60006020820190508181036000830152613925816133c8565b9050919050565b60006020820190508181036000830152613945816133eb565b9050919050565b600060208201905081810360008301526139658161340e565b9050919050565b6000602082019050818103600083015261398581613431565b9050919050565b600060208201905081810360008301526139a581613454565b9050919050565b600060208201905081810360008301526139c581613477565b9050919050565b600060208201905081810360008301526139e58161349a565b9050919050565b60006020820190508181036000830152613a05816134bd565b9050919050565b60006020820190508181036000830152613a25816134e0565b9050919050565b60006020820190508181036000830152613a4581613503565b9050919050565b60006020820190508181036000830152613a6581613526565b9050919050565b60006020820190508181036000830152613a8581613549565b9050919050565b60006020820190508181036000830152613aa58161356c565b9050919050565b60006020820190508181036000830152613ac58161358f565b9050919050565b60006020820190508181036000830152613ae5816135b2565b9050919050565b60006020820190508181036000830152613b05816135d5565b9050919050565b60006020820190508181036000830152613b25816135f8565b9050919050565b60006020820190508181036000830152613b458161361b565b9050919050565b60006020820190508181036000830152613b658161363e565b9050919050565b60006020820190508181036000830152613b8581613661565b9050919050565b60006020820190508181036000830152613ba581613684565b9050919050565b60006020820190508181036000830152613bc5816136a7565b9050919050565b60006020820190508181036000830152613be5816136ca565b9050919050565b60006020820190508181036000830152613c05816136ed565b9050919050565b6000602082019050613c216000830184613710565b92915050565b6000613c31613c42565b9050613c3d8282613eee565b919050565b6000604051905090565b600067ffffffffffffffff821115613c6757613c666140b2565b5b613c70826140f5565b9050602081019050919050565b600067ffffffffffffffff821115613c9857613c976140b2565b5b613ca1826140f5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cfc82613e70565b9150613d0783613e70565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d3c57613d3b613fc7565b5b828201905092915050565b6000613d5282613e70565b9150613d5d83613e70565b925082613d6d57613d6c613ff6565b5b828204905092915050565b6000613d8382613e70565b9150613d8e83613e70565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dc757613dc6613fc7565b5b828202905092915050565b6000613ddd82613e70565b9150613de883613e70565b925082821015613dfb57613dfa613fc7565b5b828203905092915050565b6000613e1182613e50565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ea7578082015181840152602081019050613e8c565b83811115613eb6576000848401525b50505050565b60006002820490506001821680613ed457607f821691505b60208210811415613ee857613ee7614025565b5b50919050565b613ef7826140f5565b810181811067ffffffffffffffff82111715613f1657613f156140b2565b5b80604052505050565b6000613f2a82613e70565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f5d57613f5c613fc7565b5b600182019050919050565b6000613f7382613f7a565b9050919050565b6000613f8582614106565b9050919050565b6000819050919050565b6000613fa182613e70565b9150613fac83613e70565b925082613fbc57613fbb613ff6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f53616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f555249206e6f7420736574000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f204269726273206c65667420696e20746865206e65737400000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f44657620737570706c792068617320616c7265616479206265656e206177617260008201527f6465640000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204269726273206c65667420746f206d696e74000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920737461727465640000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f507269636520746f6f206c6f7700000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b7f43616e2774206368616e6765206d65746164617461206166746572207468652060008201527f73616c6520686173207374617274656400000000000000000000000000000000602082015250565b7f547279696e6720746f206d696e7420746f6f206d616e79000000000000000000600082015250565b7f6d73672e76616c756520746f6f206c6f77000000000000000000000000000000600082015250565b61487081613e06565b811461487b57600080fd5b50565b61488781613e18565b811461489257600080fd5b50565b61489e81613e24565b81146148a957600080fd5b50565b6148b581613e70565b81146148c057600080fd5b5056fea264697066735822122042736a6fb72685a38063bf58492a14b69fa236b76b589124168138e1e49214cf64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b4465727079204269726273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a446572707942697262730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046e6f6e6500000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80634c0f38c2116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd1461060b578063e777df2014610648578063e985e9c514610673578063f2fde38b146106b0576101c2565b806395d89b4114610563578063a22cb4651461058e578063a7f93ebd146105b7578063b88d4fde146105e2576101c2565b80636352211e116100d15780636352211e146104a757806370a08231146104e4578063715018a6146105215780638da5cb5b14610538576101c2565b80634c0f38c2146104165780634f6ccce71461044157806355f804b31461047e576101c2565b80631c8b232d116101645780632f745c591161013e5780632f745c591461036b57806340c10f19146103a857806342842e0e146103c457806342966c68146103ed576101c2565b80631c8b232d1461030057806323b872dd1461032b57806324600fc314610354576101c2565b8063081812fc116101a0578063081812fc14610246578063095ea7b3146102835780630e3ab61d146102ac57806318160ddd146102d5576101c2565b806301a60e99146101c757806301ffc9a7146101de57806306fdde031461021b575b600080fd5b3480156101d357600080fd5b506101dc6106d9565b005b3480156101ea57600080fd5b506102056004803603810190610200919061314e565b61087f565b604051610212919061380f565b60405180910390f35b34801561022757600080fd5b50610230610891565b60405161023d919061382a565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906131f1565b610923565b60405161027a91906137a8565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a5919061310e565b6109a8565b005b3480156102b857600080fd5b506102d360048036038101906102ce91906131f1565b610ac0565b005b3480156102e157600080fd5b506102ea610c5a565b6040516102f79190613c0c565b60405180910390f35b34801561030c57600080fd5b50610315610c67565b604051610322919061380f565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612ff8565b610c7f565b005b34801561036057600080fd5b50610369610cdf565b005b34801561037757600080fd5b50610392600480360381019061038d919061310e565b610ead565b60405161039f9190613c0c565b60405180910390f35b6103c260048036038101906103bd919061310e565b610f52565b005b3480156103d057600080fd5b506103eb60048036038101906103e69190612ff8565b61116f565b005b3480156103f957600080fd5b50610414600480360381019061040f91906131f1565b61118f565b005b34801561042257600080fd5b5061042b6111eb565b6040516104389190613c0c565b60405180910390f35b34801561044d57600080fd5b50610468600480360381019061046391906131f1565b6111f5565b6040516104759190613c0c565b60405180910390f35b34801561048a57600080fd5b506104a560048036038101906104a091906131a8565b611266565b005b3480156104b357600080fd5b506104ce60048036038101906104c991906131f1565b611370565b6040516104db91906137a8565b60405180910390f35b3480156104f057600080fd5b5061050b60048036038101906105069190612f8b565b611422565b6040516105189190613c0c565b60405180910390f35b34801561052d57600080fd5b506105366114da565b005b34801561054457600080fd5b5061054d611562565b60405161055a91906137a8565b60405180910390f35b34801561056f57600080fd5b5061057861158c565b604051610585919061382a565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b091906130ce565b61161e565b005b3480156105c357600080fd5b506105cc61179f565b6040516105d99190613c0c565b60405180910390f35b3480156105ee57600080fd5b506106096004803603810190610604919061304b565b6117aa565b005b34801561061757600080fd5b50610632600480360381019061062d91906131f1565b61180c565b60405161063f919061382a565b60405180910390f35b34801561065457600080fd5b5061065d6118b3565b60405161066a9190613c0c565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612fb8565b6118be565b6040516106a7919061380f565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612f8b565b611952565b005b6106e1611a4a565b73ffffffffffffffffffffffffffffffffffffffff166106ff611562565b73ffffffffffffffffffffffffffffffffffffffff1614610755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074c90613a8c565b60405180910390fd5b6000151561201360009054906101000a900460ff161515146107ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a390613a2c565b60405180910390fd5b600261201454106107f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e99061396c565b60405180910390fd5b600080600091505b60208210156108645761080b611a52565b905061083a61200f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682611bac565b600161200c5461084a9190613cf1565b61200c81905550818061085c90613f1f565b9250506107fa565b6001612014546108749190613cf1565b612014819055505050565b600061088a82611d7a565b9050919050565b6060600080546108a090613ebc565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc90613ebc565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611df4565b61096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490613a6c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b382611370565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90613aec565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a43611a4a565b73ffffffffffffffffffffffffffffffffffffffff161480610a725750610a7181610a6c611a4a565b6118be565b5b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa8906139cc565b60405180910390fd5b610abb8383611e60565b505050565b610ac8611a4a565b73ffffffffffffffffffffffffffffffffffffffff16610ae6611562565b73ffffffffffffffffffffffffffffffffffffffff1614610b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3390613a8c565b60405180910390fd5b6000151561201360009054906101000a900460ff16151514610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90613a2c565b60405180910390fd5b6001151561201360019054906101000a900460ff16151514610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be19061386c565b60405180910390fd5b662386f26fc100008111610c33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2a90613b0c565b60405180910390fd5b8061200d81905550600161201360006101000a81548160ff02191690831515021790555050565b6000600880549050905090565b600061201360009054906101000a900460ff16905090565b610c90610c8a611a4a565b82611f19565b610ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc690613b2c565b60405180910390fd5b610cda838383611ff7565b505050565b6000600247610cee9190613d47565b90506000600382610cff9190613d47565b905061200e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610d6a573d6000803e3d6000fd5b5061200f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610dd4573d6000803e3d6000fd5b5061201060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e3e573d6000803e3d6000fd5b5061201160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ea8573d6000803e3d6000fd5b505050565b6000610eb883611422565b8210610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef09061388c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6001151561201360009054906101000a900460ff16151514610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa09061384c565b60405180910390fd5b61200061200c5410610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe79061390c565b60405180910390fd5b60008111611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613b8c565b60405180910390fd5b6010811115611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90613bcc565b60405180910390fd5b61200c546120006110889190613dd2565b8111156110ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c19061398c565b60405180910390fd5b8061200d546110d99190613d78565b34101561111b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111290613bec565b60405180910390fd5b600080600090505b8281101561116957611133611a52565b915061113f8483611bac565b600161200c5461114f9190613cf1565b61200c81905550808061116190613f1f565b915050611123565b50505050565b61118a838383604051806020016040528060008152506117aa565b505050565b6111a061119a611a4a565b82611f19565b6111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d690613b6c565b60405180910390fd5b6111e881612253565b50565b6000612000905090565b60006111ff610c5a565b8210611240576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123790613b4c565b60405180910390fd5b6008828154811061125457611253614083565b5b90600052602060002001549050919050565b61126e611a4a565b73ffffffffffffffffffffffffffffffffffffffff1661128c611562565b73ffffffffffffffffffffffffffffffffffffffff16146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990613a8c565b60405180910390fd5b6000151561201360009054906101000a900460ff16151514611339576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133090613bac565b60405180910390fd5b806120129080519060200190611350929190612d9f565b50600161201360016101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141090613a0c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148a906139ec565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114e2611a4a565b73ffffffffffffffffffffffffffffffffffffffff16611500611562565b73ffffffffffffffffffffffffffffffffffffffff1614611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613a8c565b60405180910390fd5b6115606000612364565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461159b90613ebc565b80601f01602080910402602001604051908101604052809291908181526020018280546115c790613ebc565b80156116145780601f106115e957610100808354040283529160200191611614565b820191906000526020600020905b8154815290600101906020018083116115f757829003601f168201915b5050505050905090565b611626611a4a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168b9061394c565b60405180910390fd5b80600560006116a1611a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661174e611a4a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611793919061380f565b60405180910390a35050565b600061200d54905090565b6117bb6117b5611a4a565b83611f19565b6117fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f190613b2c565b60405180910390fd5b6118068484848461242a565b50505050565b606061181782611df4565b611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90613acc565b60405180910390fd5b6000611860612486565b9050600081511161188057604051806020016040528060008152506118ab565b8061188a84612519565b60405160200161189b929190613736565b6040516020818303038152906040525b915050919050565b600061200c54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61195a611a4a565b73ffffffffffffffffffffffffffffffffffffffff16611978611562565b73ffffffffffffffffffffffffffffffffffffffff16146119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590613a8c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a35906138cc565b60405180910390fd5b611a4781612364565b50565b600033905090565b60008061200c54612000611a669190613dd2565b9050600081600b54334442604051602001611a84949392919061375a565b6040516020818303038152906040528051906020012060001c611aa79190613f96565b9050600080600c836120008110611ac157611ac0614083565b5b015414611ae657600c826120008110611add57611adc614083565b5b01549050611aea565b8190505b6000600c600185611afb9190613dd2565b6120008110611b0d57611b0c614083565b5b01541415611b4157600183611b229190613dd2565b600c836120008110611b3757611b36614083565b5b0181905550611b7f565b600c600184611b509190613dd2565b6120008110611b6257611b61614083565b5b0154600c836120008110611b7957611b78614083565b5b01819055505b600b6000815480929190611b9290613f1f565b9190505550600181611ba49190613cf1565b935050505090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390613a4c565b60405180910390fd5b611c2581611df4565b15611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c906138ec565b60405180910390fd5b611c716000838361267a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cc19190613cf1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ded5750611dec8261268a565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ed383611370565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f2482611df4565b611f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5a906139ac565b60405180910390fd5b6000611f6e83611370565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fdd57508373ffffffffffffffffffffffffffffffffffffffff16611fc584610923565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fee5750611fed81856118be565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661201782611370565b73ffffffffffffffffffffffffffffffffffffffff161461206d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206490613aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d49061392c565b60405180910390fd5b6120e883838361267a565b6120f3600082611e60565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121439190613dd2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461219a9190613cf1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061225e82611370565b905061226c8160008461267a565b612277600083611e60565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122c79190613dd2565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612435848484611ff7565b6124418484848461276c565b612480576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612477906138ac565b60405180910390fd5b50505050565b6060612012805461249690613ebc565b80601f01602080910402602001604051908101604052809291908181526020018280546124c290613ebc565b801561250f5780601f106124e45761010080835404028352916020019161250f565b820191906000526020600020905b8154815290600101906020018083116124f257829003601f168201915b5050505050905090565b60606000821415612561576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612675565b600082905060005b6000821461259357808061257c90613f1f565b915050600a8261258c9190613d47565b9150612569565b60008167ffffffffffffffff8111156125af576125ae6140b2565b5b6040519080825280601f01601f1916602001820160405280156125e15781602001600182028036833780820191505090505b5090505b6000851461266e576001826125fa9190613dd2565b9150600a856126099190613f96565b60306126159190613cf1565b60f81b81838151811061262b5761262a614083565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126679190613d47565b94506125e5565b8093505050505b919050565b612685838383612903565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061275557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612765575061276482612a17565b5b9050919050565b600061278d8473ffffffffffffffffffffffffffffffffffffffff16612a81565b156128f6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127b6611a4a565b8786866040518563ffffffff1660e01b81526004016127d894939291906137c3565b602060405180830381600087803b1580156127f257600080fd5b505af192505050801561282357506040513d601f19601f82011682018060405250810190612820919061317b565b60015b6128a6573d8060008114612853576040519150601f19603f3d011682016040523d82523d6000602084013e612858565b606091505b5060008151141561289e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612895906138ac565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128fb565b600190505b949350505050565b61290e838383612a94565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129515761294c81612a99565b612990565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461298f5761298e8382612ae2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d3576129ce81612c4f565b612a12565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612a1157612a108282612d20565b5b5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612aef84611422565b612af99190613dd2565b9050600060076000848152602001908152602001600020549050818114612bde576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c639190613dd2565b9050600060096000848152602001908152602001600020549050600060088381548110612c9357612c92614083565b5b906000526020600020015490508060088381548110612cb557612cb4614083565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612d0457612d03614054565b5b6001900381819060005260206000200160009055905550505050565b6000612d2b83611422565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612dab90613ebc565b90600052602060002090601f016020900481019282612dcd5760008555612e14565b82601f10612de657805160ff1916838001178555612e14565b82800160010185558215612e14579182015b82811115612e13578251825591602001919060010190612df8565b5b509050612e219190612e25565b5090565b5b80821115612e3e576000816000905550600101612e26565b5090565b6000612e55612e5084613c4c565b613c27565b905082815260208101848484011115612e7157612e706140e6565b5b612e7c848285613e7a565b509392505050565b6000612e97612e9284613c7d565b613c27565b905082815260208101848484011115612eb357612eb26140e6565b5b612ebe848285613e7a565b509392505050565b600081359050612ed581614867565b92915050565b600081359050612eea8161487e565b92915050565b600081359050612eff81614895565b92915050565b600081519050612f1481614895565b92915050565b600082601f830112612f2f57612f2e6140e1565b5b8135612f3f848260208601612e42565b91505092915050565b600082601f830112612f5d57612f5c6140e1565b5b8135612f6d848260208601612e84565b91505092915050565b600081359050612f85816148ac565b92915050565b600060208284031215612fa157612fa06140f0565b5b6000612faf84828501612ec6565b91505092915050565b60008060408385031215612fcf57612fce6140f0565b5b6000612fdd85828601612ec6565b9250506020612fee85828601612ec6565b9150509250929050565b600080600060608486031215613011576130106140f0565b5b600061301f86828701612ec6565b935050602061303086828701612ec6565b925050604061304186828701612f76565b9150509250925092565b60008060008060808587031215613065576130646140f0565b5b600061307387828801612ec6565b945050602061308487828801612ec6565b935050604061309587828801612f76565b925050606085013567ffffffffffffffff8111156130b6576130b56140eb565b5b6130c287828801612f1a565b91505092959194509250565b600080604083850312156130e5576130e46140f0565b5b60006130f385828601612ec6565b925050602061310485828601612edb565b9150509250929050565b60008060408385031215613125576131246140f0565b5b600061313385828601612ec6565b925050602061314485828601612f76565b9150509250929050565b600060208284031215613164576131636140f0565b5b600061317284828501612ef0565b91505092915050565b600060208284031215613191576131906140f0565b5b600061319f84828501612f05565b91505092915050565b6000602082840312156131be576131bd6140f0565b5b600082013567ffffffffffffffff8111156131dc576131db6140eb565b5b6131e884828501612f48565b91505092915050565b600060208284031215613207576132066140f0565b5b600061321584828501612f76565b91505092915050565b61322781613e06565b82525050565b61323e61323982613e06565b613f68565b82525050565b61324d81613e18565b82525050565b600061325e82613cae565b6132688185613cc4565b9350613278818560208601613e89565b613281816140f5565b840191505092915050565b600061329782613cb9565b6132a18185613cd5565b93506132b1818560208601613e89565b6132ba816140f5565b840191505092915050565b60006132d082613cb9565b6132da8185613ce6565b93506132ea818560208601613e89565b80840191505092915050565b6000613303601883613cd5565b915061330e82614113565b602082019050919050565b6000613326600b83613cd5565b91506133318261413c565b602082019050919050565b6000613349602b83613cd5565b915061335482614165565b604082019050919050565b600061336c603283613cd5565b9150613377826141b4565b604082019050919050565b600061338f602683613cd5565b915061339a82614203565b604082019050919050565b60006133b2601c83613cd5565b91506133bd82614252565b602082019050919050565b60006133d5601983613cd5565b91506133e08261427b565b602082019050919050565b60006133f8602483613cd5565b9150613403826142a4565b604082019050919050565b600061341b601983613cd5565b9150613426826142f3565b602082019050919050565b600061343e602383613cd5565b91506134498261431c565b604082019050919050565b6000613461601d83613cd5565b915061346c8261436b565b602082019050919050565b6000613484602c83613cd5565b915061348f82614394565b604082019050919050565b60006134a7603883613cd5565b91506134b2826143e3565b604082019050919050565b60006134ca602a83613cd5565b91506134d582614432565b604082019050919050565b60006134ed602983613cd5565b91506134f882614481565b604082019050919050565b6000613510601883613cd5565b915061351b826144d0565b602082019050919050565b6000613533602083613cd5565b915061353e826144f9565b602082019050919050565b6000613556602c83613cd5565b915061356182614522565b604082019050919050565b6000613579602083613cd5565b915061358482614571565b602082019050919050565b600061359c602983613cd5565b91506135a78261459a565b604082019050919050565b60006135bf602f83613cd5565b91506135ca826145e9565b604082019050919050565b60006135e2602183613cd5565b91506135ed82614638565b604082019050919050565b6000613605600d83613cd5565b915061361082614687565b602082019050919050565b6000613628603183613cd5565b9150613633826146b0565b604082019050919050565b600061364b602c83613cd5565b9150613656826146ff565b604082019050919050565b600061366e603083613cd5565b91506136798261474e565b604082019050919050565b6000613691601683613cd5565b915061369c8261479d565b602082019050919050565b60006136b4603083613cd5565b91506136bf826147c6565b604082019050919050565b60006136d7601783613cd5565b91506136e282614815565b602082019050919050565b60006136fa601183613cd5565b91506137058261483e565b602082019050919050565b61371981613e70565b82525050565b61373061372b82613e70565b613f8c565b82525050565b600061374282856132c5565b915061374e82846132c5565b91508190509392505050565b6000613766828761371f565b602082019150613776828661322d565b601482019150613786828561371f565b602082019150613796828461371f565b60208201915081905095945050505050565b60006020820190506137bd600083018461321e565b92915050565b60006080820190506137d8600083018761321e565b6137e5602083018661321e565b6137f26040830185613710565b81810360608301526138048184613253565b905095945050505050565b60006020820190506138246000830184613244565b92915050565b60006020820190508181036000830152613844818461328c565b905092915050565b60006020820190508181036000830152613865816132f6565b9050919050565b6000602082019050818103600083015261388581613319565b9050919050565b600060208201905081810360008301526138a58161333c565b9050919050565b600060208201905081810360008301526138c58161335f565b9050919050565b600060208201905081810360008301526138e581613382565b9050919050565b60006020820190508181036000830152613905816133a5565b9050919050565b60006020820190508181036000830152613925816133c8565b9050919050565b60006020820190508181036000830152613945816133eb565b9050919050565b600060208201905081810360008301526139658161340e565b9050919050565b6000602082019050818103600083015261398581613431565b9050919050565b600060208201905081810360008301526139a581613454565b9050919050565b600060208201905081810360008301526139c581613477565b9050919050565b600060208201905081810360008301526139e58161349a565b9050919050565b60006020820190508181036000830152613a05816134bd565b9050919050565b60006020820190508181036000830152613a25816134e0565b9050919050565b60006020820190508181036000830152613a4581613503565b9050919050565b60006020820190508181036000830152613a6581613526565b9050919050565b60006020820190508181036000830152613a8581613549565b9050919050565b60006020820190508181036000830152613aa58161356c565b9050919050565b60006020820190508181036000830152613ac58161358f565b9050919050565b60006020820190508181036000830152613ae5816135b2565b9050919050565b60006020820190508181036000830152613b05816135d5565b9050919050565b60006020820190508181036000830152613b25816135f8565b9050919050565b60006020820190508181036000830152613b458161361b565b9050919050565b60006020820190508181036000830152613b658161363e565b9050919050565b60006020820190508181036000830152613b8581613661565b9050919050565b60006020820190508181036000830152613ba581613684565b9050919050565b60006020820190508181036000830152613bc5816136a7565b9050919050565b60006020820190508181036000830152613be5816136ca565b9050919050565b60006020820190508181036000830152613c05816136ed565b9050919050565b6000602082019050613c216000830184613710565b92915050565b6000613c31613c42565b9050613c3d8282613eee565b919050565b6000604051905090565b600067ffffffffffffffff821115613c6757613c666140b2565b5b613c70826140f5565b9050602081019050919050565b600067ffffffffffffffff821115613c9857613c976140b2565b5b613ca1826140f5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cfc82613e70565b9150613d0783613e70565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d3c57613d3b613fc7565b5b828201905092915050565b6000613d5282613e70565b9150613d5d83613e70565b925082613d6d57613d6c613ff6565b5b828204905092915050565b6000613d8382613e70565b9150613d8e83613e70565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dc757613dc6613fc7565b5b828202905092915050565b6000613ddd82613e70565b9150613de883613e70565b925082821015613dfb57613dfa613fc7565b5b828203905092915050565b6000613e1182613e50565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613ea7578082015181840152602081019050613e8c565b83811115613eb6576000848401525b50505050565b60006002820490506001821680613ed457607f821691505b60208210811415613ee857613ee7614025565b5b50919050565b613ef7826140f5565b810181811067ffffffffffffffff82111715613f1657613f156140b2565b5b80604052505050565b6000613f2a82613e70565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f5d57613f5c613fc7565b5b600182019050919050565b6000613f7382613f7a565b9050919050565b6000613f8582614106565b9050919050565b6000819050919050565b6000613fa182613e70565b9150613fac83613e70565b925082613fbc57613fbb613ff6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f53616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f555249206e6f7420736574000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f204269726273206c65667420696e20746865206e65737400000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f44657620737570706c792068617320616c7265616479206265656e206177617260008201527f6465640000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204269726273206c65667420746f206d696e74000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f53616c652068617320616c726561647920737461727465640000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f507269636520746f6f206c6f7700000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b7f43616e2774206368616e6765206d65746164617461206166746572207468652060008201527f73616c6520686173207374617274656400000000000000000000000000000000602082015250565b7f547279696e6720746f206d696e7420746f6f206d616e79000000000000000000600082015250565b7f6d73672e76616c756520746f6f206c6f77000000000000000000000000000000600082015250565b61487081613e06565b811461487b57600080fd5b50565b61488781613e18565b811461489257600080fd5b50565b61489e81613e24565b81146148a957600080fd5b50565b6148b581613e70565b81146148c057600080fd5b5056fea264697066735822122042736a6fb72685a38063bf58492a14b69fa236b76b589124168138e1e49214cf64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b4465727079204269726273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a446572707942697262730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000046e6f6e6500000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Derpy Birbs
Arg [1] : symbol (string): DerpyBirbs
Arg [2] : baseTokenURI (string): none
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 4465727079204269726273000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 4465727079426972627300000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 6e6f6e6500000000000000000000000000000000000000000000000000000000
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.