ERC-721
Overview
Max Total Supply
919 BunnyBuds
Holders
208
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BunnyBudsLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BunnyBuds
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import "./Accountable.sol"; pragma solidity ^0.8.0; contract BunnyBuds is ERC721Enumerable, Ownable, Accountable { using Address for address; KIA private koalas; uint256 public constant MAX_SUPPLY = 10000; // One too high uint256 private constant MAX_KOALA_SUPPLY = 1701; // One too high -- Checks against current tokenID index uint256 private constant MAX_WHITELIST_SUPPLY = 3701; // One too high uint256 private constant RESERVES = 201; // One too high uint256 public saleTimeKoalas = 1633557600; // Wednesday, October 6th, 2021 6:00 PM EST uint256 public saleTimeWhitelist = 1633730400; // Friday, October 8th, 2021 6:00 PM EST uint256 public saleTimePublic = 1633986000; // Monday, October 11th, 2021 5:00 PM EST uint256 private _maxPerTransaction = 16; // One too high uint256 private _maxPerPresale = 11; // One too high uint256 private _price = 6 * 10 ** 16; // .06 ETH string private _baseTokenURI; mapping(address => bool) addressWhitelisted; mapping(address => uint256) addressToMintsUsed; event BunnyMinted ( address minter, uint256 tokenId ); constructor( string memory baseURI, address[] memory _splits, uint256[] memory _splitWeights, address _koalasAddress ) ERC721("BunnyBuds", "BunnyBuds") Accountable(_splits, _splitWeights) { setBaseURI(baseURI); koalas = KIA(_koalasAddress); } modifier mintIsValid() { require(!address(msg.sender).isContract() && tx.origin == msg.sender, "Contracts cannot mint."); _; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setPrice(uint256 _newWEIPrice) public onlyOwner { _price = _newWEIPrice; } function getPrice() public view returns (uint256) { return _price; } function setSaleTimeKoalas(uint256 _time) public onlyOwner { saleTimeKoalas = _time; } function setSaleTimeWhitelist(uint256 _time) public onlyOwner { saleTimeWhitelist = _time; } function setSaleTimePublic(uint256 _time) public onlyOwner { saleTimePublic = _time; } function setMaxPerTransaction(uint256 _max) public onlyOwner { _maxPerTransaction = _max; } function getMaxPerTransaction() public view returns (uint256) { return _maxPerTransaction; } function setMaxPerPresaleAddress(uint256 _max) public onlyOwner { _maxPerPresale = _max; } function getMaxPerPresaleAddress() public view returns (uint256) { return _maxPerPresale; } function setWhitelistAddresses(address[] memory _address) public onlyOwner { for (uint256 i; i < _address.length; i++) { addressWhitelisted[_address[i]] = true; } } /** * NOTE: This function is super weird looking and we are actually subtracting one. * We are doing this because the value is always stored as one higher than it * really is to avoid gte calls for whitelist max cap management however if they are * not whitelisted 0 is still returned. */ function getPresaleMintsAvailable(address _address) public view returns (uint256) { if(koalas.balanceOf(_address) > 0 || addressWhitelisted[_address]) { return _maxPerPresale - addressToMintsUsed[_address] - 1; } else { return 0; } } function _mint(uint256 totalSupply, uint256 _count) internal { uint256 tokenId; for (uint256 i; i < _count; i++) { tokenId = totalSupply + i; _safeMint(msg.sender, tokenId); emit BunnyMinted(msg.sender, tokenId); } } /** * NOTE: This function allows the passing of count however a maximum cap of 40 is * recommended to prevent any unexpected issues like running out of gas. */ function collectReserves(uint256 _count) public onlyOwner { require(block.timestamp < saleTimePublic, "Public access already began." ); uint256 totalSupply = totalSupply(); require(totalSupply + _count < RESERVES, "Beyond max limit"); _mint(totalSupply, _count); } function koalaMint(uint256 _count) public payable mintIsValid { require(koalas.balanceOf(msg.sender) > 0, "Wallet does not contain a KIA."); require(saleTimeKoalas < block.timestamp, "KIA presale not started."); require(addressToMintsUsed[msg.sender] + _count < _maxPerPresale, "Exceeds wallet presale limit."); uint256 totalSupply = totalSupply(); require(totalSupply + _count < MAX_KOALA_SUPPLY, "KIA presale ended."); require(_price * _count == msg.value, "Transaction value incorrect."); addressToMintsUsed[msg.sender] += _count; _mint(totalSupply, _count); tallySplits(); } function whitelistMint(uint256 _count) public payable mintIsValid { require(addressWhitelisted[msg.sender], "Not on whitelist."); require(saleTimeWhitelist < block.timestamp, "Whitelist presale not started."); require(addressToMintsUsed[msg.sender] + _count < _maxPerPresale, "Exceeds wallet presale limit."); uint256 totalSupply = totalSupply(); require(totalSupply + _count < MAX_WHITELIST_SUPPLY, "Whitelist presale ended."); require(_price * _count == msg.value, "Transaction value incorrect."); addressToMintsUsed[msg.sender] += _count; _mint(totalSupply, _count); tallySplits(); } function mint(uint256 _count) public payable mintIsValid { require(saleTimePublic < block.timestamp, "Sale not started."); uint256 totalSupply = totalSupply(); require(totalSupply + _count < MAX_SUPPLY, "Exceeds max supply."); require(_count < _maxPerTransaction, "Exceeds max per transaction."); require(_price * _count == msg.value, "Transaction value incorrect."); _mint(totalSupply, _count); tallySplits(); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { return new uint256[](0); } uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } } abstract contract KIA { function balanceOf(address owner) external virtual view returns (uint256 balance); }
// 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.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 "../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 "../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 Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Context.sol"; abstract contract Accountable is Context { address[] private splits; uint256[] private splitWeights; mapping(address => uint256) private splitAmounts; event WithdrawProcessed( address indexed ownerWithdrawing, uint256 indexed amount ); constructor(address[] memory _splits, uint256[] memory _splitWeights) { splits = _splits; splitWeights = _splitWeights; } modifier hasSplits() { require(splits.length > 0, "Splits have not been set."); require(splitWeights.length > 0, "Split weights have not been set."); _; } // Returns the splitAmount in wei. function getSplitBalance(address _address) public view returns (uint256) { return splitAmounts[_address]; } // With this each team member can withdraw their cut at anytime they like. // Must be a real amount that is greater than zero and within their available balance. function withdrawSplit(uint256 _amount) external hasSplits { require(_amount > 0, "Withdrawals of 0 cannot take place."); require( splitAmounts[msg.sender] >= _amount, "This value is more than available to withdraw." ); splitAmounts[msg.sender] -= _amount; (bool success, ) = payable(msg.sender).call{value: _amount}(""); require(success, "Transfer failed."); emit WithdrawProcessed(msg.sender, _amount); } // This should be run in any function that is paying the contract. // At the time of minting we are crediting each team member with the proper amount. function tallySplits() internal hasSplits { uint256 each; for (uint256 i; i < splits.length; i++) { // ((value * (25 / 100)) / 100) each = ((msg.value * splitWeights[i] / 100)); splitAmounts[splits[i]] += each; } } }
// 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 "../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 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); }
// 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address[]","name":"_splits","type":"address[]"},{"internalType":"uint256[]","name":"_splitWeights","type":"uint256[]"},{"internalType":"address","name":"_koalasAddress","type":"address"}],"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":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"BunnyMinted","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"ownerWithdrawing","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawProcessed","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"collectReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxPerPresaleAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getPresaleMintsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getSplitBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"koalaMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","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":[],"name":"saleTimeKoalas","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleTimePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleTimeWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPerPresaleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWEIPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setSaleTimeKoalas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setSaleTimePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setSaleTimeWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"setWhitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawSplit","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405263615e1c60600f55636160bf60601055636164a5d06011556010601255600b60135566d529ae9e8600006014553480156200003e57600080fd5b50604051620064be380380620064be8339818101604052810190620000649190620006ce565b82826040518060400160405280600981526020017f42756e6e794275647300000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f42756e6e794275647300000000000000000000000000000000000000000000008152508160009080519060200190620000ea92919062000359565b5080600190805190602001906200010392919062000359565b505050620001266200011a620001b660201b60201c565b620001be60201b60201c565b81600b90805190602001906200013e929190620003ea565b5080600c90805190602001906200015792919062000479565b5050506200016b846200028460201b60201c565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050620009fb565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000294620001b660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002ba6200032f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000313576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030a90620007c7565b60405180910390fd5b80601590805190602001906200032b92919062000359565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003679062000933565b90600052602060002090601f0160209004810192826200038b5760008555620003d7565b82601f10620003a657805160ff1916838001178555620003d7565b82800160010185558215620003d7579182015b82811115620003d6578251825591602001919060010190620003b9565b5b509050620003e69190620004cb565b5090565b82805482825590600052602060002090810192821562000466579160200282015b82811115620004655782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200040b565b5b509050620004759190620004cb565b5090565b828054828255906000526020600020908101928215620004b8579160200282015b82811115620004b75782518255916020019190600101906200049a565b5b509050620004c79190620004cb565b5090565b5b80821115620004e6576000816000905550600101620004cc565b5090565b600062000501620004fb846200081d565b620007e9565b905080838252602082019050828560208602820111156200052157600080fd5b60005b858110156200055557816200053a888262000619565b84526020840193506020830192505060018101905062000524565b5050509392505050565b60006200057662000570846200084c565b620007e9565b905080838252602082019050828560208602820111156200059657600080fd5b60005b85811015620005ca5781620005af8882620006b7565b84526020840193506020830192505060018101905062000599565b5050509392505050565b6000620005eb620005e5846200087b565b620007e9565b9050828152602081018484840111156200060457600080fd5b62000611848285620008fd565b509392505050565b6000815190506200062a81620009c7565b92915050565b600082601f8301126200064257600080fd5b815162000654848260208601620004ea565b91505092915050565b600082601f8301126200066f57600080fd5b8151620006818482602086016200055f565b91505092915050565b600082601f8301126200069c57600080fd5b8151620006ae848260208601620005d4565b91505092915050565b600081519050620006c881620009e1565b92915050565b60008060008060808587031215620006e557600080fd5b600085015167ffffffffffffffff8111156200070057600080fd5b6200070e878288016200068a565b945050602085015167ffffffffffffffff8111156200072c57600080fd5b6200073a8782880162000630565b935050604085015167ffffffffffffffff8111156200075857600080fd5b62000766878288016200065d565b9250506060620007798782880162000619565b91505092959194509250565b600062000794602083620008ae565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620007e28162000785565b9050919050565b6000604051905081810181811067ffffffffffffffff8211171562000813576200081262000998565b5b8060405250919050565b600067ffffffffffffffff8211156200083b576200083a62000998565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156200086a576200086962000998565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000899576200089862000998565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000620008cc82620008d3565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200091d57808201518184015260208101905062000900565b838111156200092d576000848401525b50505050565b600060028204905060018216806200094c57607f821691505b6020821081141562000963576200096262000969565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620009d281620008bf565b8114620009de57600080fd5b50565b620009ec81620008f3565b8114620009f857600080fd5b50565b615ab38062000a0b6000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063a22cb465116100b6578063cd33a7891161007a578063cd33a789146108bf578063e5d089ff146108e8578063e985e9c514610911578063f2fde38b1461094e578063f52ccc2d14610977578063fd2e908d146109a057610251565b8063a22cb465146107ca578063b88d4fde146107f3578063b8d63f451461081c578063c87b56dd14610859578063ccfdd2f81461089657610251565b80638da5cb5b116100fd5780638da5cb5b1461070457806391b7f5ed1461072f57806395d89b411461075857806398d5fdca14610783578063a0712d68146107ae57610251565b806370a082311461063e578063715018a61461067b5780637de8b9861461069257806382dffc33146106bd578063868ff4a2146106e857610251565b806332cb6b0c116101d25780634f6ccce7116101965780634f6ccce71461051757806355f804b3146105545780635d84074e1461057d57806361877440146105ba5780636352211e146105d65780636e4856191461061357610251565b806332cb6b0c14610434578063341408501461045f57806336d50e0a1461048857806342842e0e146104b1578063438b6300146104da57610251565b806318160ddd1161021957806318160ddd1461034d57806320234ac71461037857806323b872dd146103a3578063292dc99e146103cc5780632f745c59146103f757610251565b806301ffc9a71461025657806306fdde031461029357806307affcdd146102be578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906141c2565b6109c9565b60405161028a91906150a1565b60405180910390f35b34801561029f57600080fd5b506102a8610a43565b6040516102b591906150bc565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190614255565b610ad5565b005b3480156102f357600080fd5b5061030e60048036038101906103099190614255565b610b5b565b60405161031b9190614fef565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190614145565b610be0565b005b34801561035957600080fd5b50610362610cf8565b60405161036f919061557e565b60405180910390f35b34801561038457600080fd5b5061038d610d05565b60405161039a919061557e565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c5919061403f565b610d0f565b005b3480156103d857600080fd5b506103e1610d6f565b6040516103ee919061557e565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190614145565b610d75565b60405161042b919061557e565b60405180910390f35b34801561044057600080fd5b50610449610e1a565b604051610456919061557e565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190614255565b610e20565b005b34801561049457600080fd5b506104af60048036038101906104aa9190614255565b610ea6565b005b3480156104bd57600080fd5b506104d860048036038101906104d3919061403f565b611145565b005b3480156104e657600080fd5b5061050160048036038101906104fc9190613fda565b611165565b60405161050e919061507f565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190614255565b6112e1565b60405161054b919061557e565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190614214565b611378565b005b34801561058957600080fd5b506105a4600480360381019061059f9190613fda565b61140e565b6040516105b1919061557e565b60405180910390f35b6105d460048036038101906105cf9190614255565b611580565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190614255565b6118eb565b60405161060a9190614fef565b60405180910390f35b34801561061f57600080fd5b5061062861199d565b604051610635919061557e565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190613fda565b6119a3565b604051610672919061557e565b60405180910390f35b34801561068757600080fd5b50610690611a5b565b005b34801561069e57600080fd5b506106a7611ae3565b6040516106b4919061557e565b60405180910390f35b3480156106c957600080fd5b506106d2611ae9565b6040516106df919061557e565b60405180910390f35b61070260048036038101906106fd9190614255565b611af3565b005b34801561071057600080fd5b50610719611dfd565b6040516107269190614fef565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190614255565b611e27565b005b34801561076457600080fd5b5061076d611ead565b60405161077a91906150bc565b60405180910390f35b34801561078f57600080fd5b50610798611f3f565b6040516107a5919061557e565b60405180910390f35b6107c860048036038101906107c39190614255565b611f49565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190614109565b612127565b005b3480156107ff57600080fd5b5061081a6004803603810190610815919061408e565b6122a8565b005b34801561082857600080fd5b50610843600480360381019061083e9190613fda565b61230a565b604051610850919061557e565b60405180910390f35b34801561086557600080fd5b50610880600480360381019061087b9190614255565b612353565b60405161088d91906150bc565b60405180910390f35b3480156108a257600080fd5b506108bd60048036038101906108b89190614255565b6123fa565b005b3480156108cb57600080fd5b506108e660048036038101906108e19190614255565b612480565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190614255565b612506565b005b34801561091d57600080fd5b5061093860048036038101906109339190614003565b61262e565b60405161094591906150a1565b60405180910390f35b34801561095a57600080fd5b5061097560048036038101906109709190613fda565b6126c2565b005b34801561098357600080fd5b5061099e60048036038101906109999190614181565b6127ba565b005b3480156109ac57600080fd5b506109c760048036038101906109c29190614255565b6128f1565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3c5750610a3b82612977565b5b9050919050565b606060008054610a52906158a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7e906158a8565b8015610acb5780601f10610aa057610100808354040283529160200191610acb565b820191906000526020600020905b815481529060010190602001808311610aae57829003601f168201915b5050505050905090565b610add612a59565b73ffffffffffffffffffffffffffffffffffffffff16610afb611dfd565b73ffffffffffffffffffffffffffffffffffffffff1614610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b489061537e565b60405180910390fd5b8060108190555050565b6000610b6682612a61565b610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c9061535e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610beb826118eb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c539061547e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7b612a59565b73ffffffffffffffffffffffffffffffffffffffff161480610caa5750610ca981610ca4612a59565b61262e565b5b610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce09061525e565b60405180910390fd5b610cf38383612acd565b505050565b6000600880549050905090565b6000601254905090565b610d20610d1a612a59565b82612b86565b610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d56906154be565b60405180910390fd5b610d6a838383612c64565b505050565b60115481565b6000610d80836119a3565b8210610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db8906150de565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610e28612a59565b73ffffffffffffffffffffffffffffffffffffffff16610e46611dfd565b73ffffffffffffffffffffffffffffffffffffffff1614610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e939061537e565b60405180910390fd5b8060118190555050565b6000600b8054905011610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee5906152fe565b60405180910390fd5b6000600c8054905011610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d9061519e565b60405180910390fd5b60008111610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f709061531e565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff2906152de565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461104a91906157be565b9250508190555060003373ffffffffffffffffffffffffffffffffffffffff168260405161107790614fda565b60006040518083038185875af1925050503d80600081146110b4576040519150601f19603f3d011682016040523d82523d6000602084013e6110b9565b606091505b50509050806110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f49061549e565b60405180910390fd5b813373ffffffffffffffffffffffffffffffffffffffff167f44b2ff9ffcefe2052a8afdbed44a04bf3db4592ae90c6b96c818bd28573e41e860405160405180910390a35050565b611160838383604051806020016040528060008152506122a8565b505050565b60606000611172836119a3565b905060008114156111f557600067ffffffffffffffff8111156111be577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111ec5781602001602082028036833780820191505090505b509150506112dc565b60008167ffffffffffffffff811115611237577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112655781602001602082028036833780820191505090505b50905060005b828110156112d55761127d8582610d75565b8282815181106112b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806112cd906158da565b91505061126b565b5080925050505b919050565b60006112eb610cf8565b821061132c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611323906154fe565b60405180910390fd5b60088281548110611366577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b611380612a59565b73ffffffffffffffffffffffffffffffffffffffff1661139e611dfd565b73ffffffffffffffffffffffffffffffffffffffff16146113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb9061537e565b60405180910390fd5b806015908051906020019061140a929190613d53565b5050565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161146c9190614fef565b60206040518083038186803b15801561148457600080fd5b505afa158015611498573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114bc919061427e565b11806115115750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611576576001601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460135461156591906157be565b61156f91906157be565b905061157b565b600090505b919050565b61159f3373ffffffffffffffffffffffffffffffffffffffff16612ec0565b1580156115d757503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d9061543e565b60405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016116739190614fef565b60206040518083038186803b15801561168b57600080fd5b505afa15801561169f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c3919061427e565b11611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa9061545e565b60405180910390fd5b42600f5410611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e9061527e565b60405180910390fd5b60135481601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461179591906156dd565b106117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc9061553e565b60405180910390fd5b60006117df610cf8565b90506106a582826117f091906156dd565b10611830576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611827906153fe565b60405180910390fd5b348260145461183f9190615764565b1461187f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611876906153be565b60405180910390fd5b81601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118ce91906156dd565b925050819055506118df8183612ed3565b6118e7612f49565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b906152be565b60405180910390fd5b80915050919050565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b9061529e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a63612a59565b73ffffffffffffffffffffffffffffffffffffffff16611a81611dfd565b73ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace9061537e565b60405180910390fd5b611ae16000613119565b565b60105481565b6000601354905090565b611b123373ffffffffffffffffffffffffffffffffffffffff16612ec0565b158015611b4a57503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b611b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b809061543e565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c9061523e565b60405180910390fd5b4260105410611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c509061551e565b60405180910390fd5b60135481601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ca791906156dd565b10611ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cde9061553e565b60405180910390fd5b6000611cf1610cf8565b9050610e758282611d0291906156dd565b10611d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d399061517e565b60405180910390fd5b3482601454611d519190615764565b14611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d88906153be565b60405180910390fd5b81601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611de091906156dd565b92505081905550611df18183612ed3565b611df9612f49565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e2f612a59565b73ffffffffffffffffffffffffffffffffffffffff16611e4d611dfd565b73ffffffffffffffffffffffffffffffffffffffff1614611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a9061537e565b60405180910390fd5b8060148190555050565b606060018054611ebc906158a8565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee8906158a8565b8015611f355780601f10611f0a57610100808354040283529160200191611f35565b820191906000526020600020905b815481529060010190602001808311611f1857829003601f168201915b5050505050905090565b6000601454905090565b611f683373ffffffffffffffffffffffffffffffffffffffff16612ec0565b158015611fa057503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd69061543e565b60405180910390fd5b4260115410612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a9061513e565b60405180910390fd5b600061202d610cf8565b9050612710828261203e91906156dd565b1061207e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120759061541e565b60405180910390fd5b60125482106120c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b9906154de565b60405180910390fd5b34826014546120d19190615764565b14612111576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612108906153be565b60405180910390fd5b61211b8183612ed3565b612123612f49565b5050565b61212f612a59565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561219d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612194906151de565b60405180910390fd5b80600560006121aa612a59565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612257612a59565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161229c91906150a1565b60405180910390a35050565b6122b96122b3612a59565b83612b86565b6122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef906154be565b60405180910390fd5b612304848484846131df565b50505050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606061235e82612a61565b61239d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612394906153de565b60405180910390fd5b60006123a761323b565b905060008151116123c757604051806020016040528060008152506123f2565b806123d1846132cd565b6040516020016123e2929190614fb6565b6040516020818303038152906040525b915050919050565b612402612a59565b73ffffffffffffffffffffffffffffffffffffffff16612420611dfd565b73ffffffffffffffffffffffffffffffffffffffff1614612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d9061537e565b60405180910390fd5b8060128190555050565b612488612a59565b73ffffffffffffffffffffffffffffffffffffffff166124a6611dfd565b73ffffffffffffffffffffffffffffffffffffffff16146124fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f39061537e565b60405180910390fd5b80600f8190555050565b61250e612a59565b73ffffffffffffffffffffffffffffffffffffffff1661252c611dfd565b73ffffffffffffffffffffffffffffffffffffffff1614612582576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125799061537e565b60405180910390fd5b60115442106125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd906151fe565b60405180910390fd5b60006125d0610cf8565b905060c982826125e091906156dd565b10612620576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126179061555e565b60405180910390fd5b61262a8183612ed3565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6126ca612a59565b73ffffffffffffffffffffffffffffffffffffffff166126e8611dfd565b73ffffffffffffffffffffffffffffffffffffffff161461273e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127359061537e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a59061511e565b60405180910390fd5b6127b781613119565b50565b6127c2612a59565b73ffffffffffffffffffffffffffffffffffffffff166127e0611dfd565b73ffffffffffffffffffffffffffffffffffffffff1614612836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282d9061537e565b60405180910390fd5b60005b81518110156128ed57600160166000848481518110612881577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806128e5906158da565b915050612839565b5050565b6128f9612a59565b73ffffffffffffffffffffffffffffffffffffffff16612917611dfd565b73ffffffffffffffffffffffffffffffffffffffff161461296d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129649061537e565b60405180910390fd5b8060138190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a4257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a525750612a518261347a565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b40836118eb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b9182612a61565b612bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc79061521e565b60405180910390fd5b6000612bdb836118eb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c4a57508373ffffffffffffffffffffffffffffffffffffffff16612c3284610b5b565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c5b5750612c5a818561262e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c84826118eb565b73ffffffffffffffffffffffffffffffffffffffff1614612cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd19061539e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d41906151be565b60405180910390fd5b612d558383836134e4565b612d60600082612acd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612db091906157be565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e0791906156dd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080823b905060008111915050919050565b6000805b82811015612f43578084612eeb91906156dd565b9150612ef733836135f8565b7fcf788ac63fff5ca87a7e21d570a0b99ec63208e1e3cc4c1f25390ea8bd2febf73383604051612f28929190615056565b60405180910390a18080612f3b906158da565b915050612ed7565b50505050565b6000600b8054905011612f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f88906152fe565b60405180910390fd5b6000600c8054905011612fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd09061519e565b60405180910390fd5b6000805b600b80549050811015613115576064600c8281548110613026577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001543461303c9190615764565b6130469190615733565b915081600d6000600b8481548110613087577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130fb91906156dd565b92505081905550808061310d906158da565b915050612fdd565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6131ea848484612c64565b6131f684848484613616565b613235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322c906150fe565b60405180910390fd5b50505050565b60606015805461324a906158a8565b80601f0160208091040260200160405190810160405280929190818152602001828054613276906158a8565b80156132c35780601f10613298576101008083540402835291602001916132c3565b820191906000526020600020905b8154815290600101906020018083116132a657829003601f168201915b5050505050905090565b60606000821415613315576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613475565b600082905060005b60008214613347578080613330906158da565b915050600a826133409190615733565b915061331d565b60008167ffffffffffffffff811115613389577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133bb5781602001600182028036833780820191505090505b5090505b6000851461346e576001826133d491906157be565b9150600a856133e39190615923565b60306133ef91906156dd565b60f81b81838151811061342b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134679190615733565b94506133bf565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6134ef8383836137ad565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135325761352d816137b2565b613571565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146135705761356f83826137fb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135b4576135af81613968565b6135f3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146135f2576135f18282613aab565b5b5b505050565b613612828260405180602001604052806000815250613b2a565b5050565b60006136378473ffffffffffffffffffffffffffffffffffffffff16612ec0565b156137a0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613660612a59565b8786866040518563ffffffff1660e01b8152600401613682949392919061500a565b602060405180830381600087803b15801561369c57600080fd5b505af19250505080156136cd57506040513d601f19601f820116820180604052508101906136ca91906141eb565b60015b613750573d80600081146136fd576040519150601f19603f3d011682016040523d82523d6000602084013e613702565b606091505b50600081511415613748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373f906150fe565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137a5565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613808846119a3565b61381291906157be565b90506000600760008481526020019081526020016000205490508181146138f7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061397c91906157be565b90506000600960008481526020019081526020016000205490506000600883815481106139d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613a8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613ab6836119a3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b613b348383613b85565b613b416000848484613616565b613b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b77906150fe565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bec9061533e565b60405180910390fd5b613bfe81612a61565b15613c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c359061515e565b60405180910390fd5b613c4a600083836134e4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c9a91906156dd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613d5f906158a8565b90600052602060002090601f016020900481019282613d815760008555613dc8565b82601f10613d9a57805160ff1916838001178555613dc8565b82800160010185558215613dc8579182015b82811115613dc7578251825591602001919060010190613dac565b5b509050613dd59190613dd9565b5090565b5b80821115613df2576000816000905550600101613dda565b5090565b6000613e09613e04846155ca565b615599565b90508083825260208201905082856020860282011115613e2857600080fd5b60005b85811015613e585781613e3e8882613ede565b845260208401935060208301925050600181019050613e2b565b5050509392505050565b6000613e75613e70846155f6565b615599565b905082815260208101848484011115613e8d57600080fd5b613e98848285615866565b509392505050565b6000613eb3613eae84615626565b615599565b905082815260208101848484011115613ecb57600080fd5b613ed6848285615866565b509392505050565b600081359050613eed81615a21565b92915050565b600082601f830112613f0457600080fd5b8135613f14848260208601613df6565b91505092915050565b600081359050613f2c81615a38565b92915050565b600081359050613f4181615a4f565b92915050565b600081519050613f5681615a4f565b92915050565b600082601f830112613f6d57600080fd5b8135613f7d848260208601613e62565b91505092915050565b600082601f830112613f9757600080fd5b8135613fa7848260208601613ea0565b91505092915050565b600081359050613fbf81615a66565b92915050565b600081519050613fd481615a66565b92915050565b600060208284031215613fec57600080fd5b6000613ffa84828501613ede565b91505092915050565b6000806040838503121561401657600080fd5b600061402485828601613ede565b925050602061403585828601613ede565b9150509250929050565b60008060006060848603121561405457600080fd5b600061406286828701613ede565b935050602061407386828701613ede565b925050604061408486828701613fb0565b9150509250925092565b600080600080608085870312156140a457600080fd5b60006140b287828801613ede565b94505060206140c387828801613ede565b93505060406140d487828801613fb0565b925050606085013567ffffffffffffffff8111156140f157600080fd5b6140fd87828801613f5c565b91505092959194509250565b6000806040838503121561411c57600080fd5b600061412a85828601613ede565b925050602061413b85828601613f1d565b9150509250929050565b6000806040838503121561415857600080fd5b600061416685828601613ede565b925050602061417785828601613fb0565b9150509250929050565b60006020828403121561419357600080fd5b600082013567ffffffffffffffff8111156141ad57600080fd5b6141b984828501613ef3565b91505092915050565b6000602082840312156141d457600080fd5b60006141e284828501613f32565b91505092915050565b6000602082840312156141fd57600080fd5b600061420b84828501613f47565b91505092915050565b60006020828403121561422657600080fd5b600082013567ffffffffffffffff81111561424057600080fd5b61424c84828501613f86565b91505092915050565b60006020828403121561426757600080fd5b600061427584828501613fb0565b91505092915050565b60006020828403121561429057600080fd5b600061429e84828501613fc5565b91505092915050565b60006142b38383614f98565b60208301905092915050565b6142c8816157f2565b82525050565b60006142d982615666565b6142e38185615694565b93506142ee83615656565b8060005b8381101561431f57815161430688826142a7565b975061431183615687565b9250506001810190506142f2565b5085935050505092915050565b61433581615804565b82525050565b600061434682615671565b61435081856156a5565b9350614360818560208601615875565b61436981615a10565b840191505092915050565b600061437f8261567c565b61438981856156c1565b9350614399818560208601615875565b6143a281615a10565b840191505092915050565b60006143b88261567c565b6143c281856156d2565b93506143d2818560208601615875565b80840191505092915050565b60006143eb602b836156c1565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006144516032836156c1565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006144b76026836156c1565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061451d6011836156c1565b91507f53616c65206e6f7420737461727465642e0000000000000000000000000000006000830152602082019050919050565b600061455d601c836156c1565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061459d6018836156c1565b91507f57686974656c6973742070726573616c6520656e6465642e00000000000000006000830152602082019050919050565b60006145dd6020836156c1565b91507f53706c697420776569676874732068617665206e6f74206265656e207365742e6000830152602082019050919050565b600061461d6024836156c1565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146836019836156c1565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006146c3601c836156c1565b91507f5075626c69632061636365737320616c726561647920626567616e2e000000006000830152602082019050919050565b6000614703602c836156c1565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006147696011836156c1565b91507f4e6f74206f6e2077686974656c6973742e0000000000000000000000000000006000830152602082019050919050565b60006147a96038836156c1565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061480f6018836156c1565b91507f4b49412070726573616c65206e6f7420737461727465642e00000000000000006000830152602082019050919050565b600061484f602a836156c1565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006148b56029836156c1565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061491b602e836156c1565b91507f546869732076616c7565206973206d6f7265207468616e20617661696c61626c60008301527f6520746f2077697468647261772e0000000000000000000000000000000000006020830152604082019050919050565b60006149816019836156c1565b91507f53706c6974732068617665206e6f74206265656e207365742e000000000000006000830152602082019050919050565b60006149c16023836156c1565b91507f5769746864726177616c73206f6620302063616e6e6f742074616b6520706c6160008301527f63652e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a276020836156c1565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614a67602c836156c1565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614acd6020836156c1565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614b0d6029836156c1565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b73601c836156c1565b91507f5472616e73616374696f6e2076616c756520696e636f72726563742e000000006000830152602082019050919050565b6000614bb3602f836156c1565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614c196012836156c1565b91507f4b49412070726573616c6520656e6465642e00000000000000000000000000006000830152602082019050919050565b6000614c596013836156c1565b91507f45786365656473206d617820737570706c792e000000000000000000000000006000830152602082019050919050565b6000614c996016836156c1565b91507f436f6e7472616374732063616e6e6f74206d696e742e000000000000000000006000830152602082019050919050565b6000614cd9601e836156c1565b91507f57616c6c657420646f6573206e6f7420636f6e7461696e2061204b49412e00006000830152602082019050919050565b6000614d196021836156c1565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d7f6000836156b6565b9150600082019050919050565b6000614d996010836156c1565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b6000614dd96031836156c1565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614e3f601c836156c1565b91507f45786365656473206d617820706572207472616e73616374696f6e2e000000006000830152602082019050919050565b6000614e7f602c836156c1565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614ee5601e836156c1565b91507f57686974656c6973742070726573616c65206e6f7420737461727465642e00006000830152602082019050919050565b6000614f25601d836156c1565b91507f457863656564732077616c6c65742070726573616c65206c696d69742e0000006000830152602082019050919050565b6000614f656010836156c1565b91507f4265796f6e64206d6178206c696d6974000000000000000000000000000000006000830152602082019050919050565b614fa18161585c565b82525050565b614fb08161585c565b82525050565b6000614fc282856143ad565b9150614fce82846143ad565b91508190509392505050565b6000614fe582614d72565b9150819050919050565b600060208201905061500460008301846142bf565b92915050565b600060808201905061501f60008301876142bf565b61502c60208301866142bf565b6150396040830185614fa7565b818103606083015261504b818461433b565b905095945050505050565b600060408201905061506b60008301856142bf565b6150786020830184614fa7565b9392505050565b6000602082019050818103600083015261509981846142ce565b905092915050565b60006020820190506150b6600083018461432c565b92915050565b600060208201905081810360008301526150d68184614374565b905092915050565b600060208201905081810360008301526150f7816143de565b9050919050565b6000602082019050818103600083015261511781614444565b9050919050565b60006020820190508181036000830152615137816144aa565b9050919050565b6000602082019050818103600083015261515781614510565b9050919050565b6000602082019050818103600083015261517781614550565b9050919050565b6000602082019050818103600083015261519781614590565b9050919050565b600060208201905081810360008301526151b7816145d0565b9050919050565b600060208201905081810360008301526151d781614610565b9050919050565b600060208201905081810360008301526151f781614676565b9050919050565b60006020820190508181036000830152615217816146b6565b9050919050565b60006020820190508181036000830152615237816146f6565b9050919050565b600060208201905081810360008301526152578161475c565b9050919050565b600060208201905081810360008301526152778161479c565b9050919050565b6000602082019050818103600083015261529781614802565b9050919050565b600060208201905081810360008301526152b781614842565b9050919050565b600060208201905081810360008301526152d7816148a8565b9050919050565b600060208201905081810360008301526152f78161490e565b9050919050565b6000602082019050818103600083015261531781614974565b9050919050565b60006020820190508181036000830152615337816149b4565b9050919050565b6000602082019050818103600083015261535781614a1a565b9050919050565b6000602082019050818103600083015261537781614a5a565b9050919050565b6000602082019050818103600083015261539781614ac0565b9050919050565b600060208201905081810360008301526153b781614b00565b9050919050565b600060208201905081810360008301526153d781614b66565b9050919050565b600060208201905081810360008301526153f781614ba6565b9050919050565b6000602082019050818103600083015261541781614c0c565b9050919050565b6000602082019050818103600083015261543781614c4c565b9050919050565b6000602082019050818103600083015261545781614c8c565b9050919050565b6000602082019050818103600083015261547781614ccc565b9050919050565b6000602082019050818103600083015261549781614d0c565b9050919050565b600060208201905081810360008301526154b781614d8c565b9050919050565b600060208201905081810360008301526154d781614dcc565b9050919050565b600060208201905081810360008301526154f781614e32565b9050919050565b6000602082019050818103600083015261551781614e72565b9050919050565b6000602082019050818103600083015261553781614ed8565b9050919050565b6000602082019050818103600083015261555781614f18565b9050919050565b6000602082019050818103600083015261557781614f58565b9050919050565b60006020820190506155936000830184614fa7565b92915050565b6000604051905081810181811067ffffffffffffffff821117156155c0576155bf6159e1565b5b8060405250919050565b600067ffffffffffffffff8211156155e5576155e46159e1565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615611576156106159e1565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615641576156406159e1565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006156e88261585c565b91506156f38361585c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561572857615727615954565b5b828201905092915050565b600061573e8261585c565b91506157498361585c565b92508261575957615758615983565b5b828204905092915050565b600061576f8261585c565b915061577a8361585c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156157b3576157b2615954565b5b828202905092915050565b60006157c98261585c565b91506157d48361585c565b9250828210156157e7576157e6615954565b5b828203905092915050565b60006157fd8261583c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615893578082015181840152602081019050615878565b838111156158a2576000848401525b50505050565b600060028204905060018216806158c057607f821691505b602082108114156158d4576158d36159b2565b5b50919050565b60006158e58261585c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561591857615917615954565b5b600182019050919050565b600061592e8261585c565b91506159398361585c565b92508261594957615948615983565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615a2a816157f2565b8114615a3557600080fd5b50565b615a4181615804565b8114615a4c57600080fd5b50565b615a5881615810565b8114615a6357600080fd5b50565b615a6f8161585c565b8114615a7a57600080fd5b5056fea2646970667358221220e0c8cdd7885a8d35da58b437778ecd94c2a7e195ffb4e0912174e603f0afffb664736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001800000000000000000000000003f5fb35468e9834a43dca1c160c69eaae78b63600000000000000000000000000000000000000000000000000000000000000025687474703a2f2f7777772e62756e6e79627564732e696f2f6170692f6d657461646174612f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c3568ac6d3eb093e34263a19837e79201125dff000000000000000000000000b97209f8c03be18135da49f1eed9681f5add890c000000000000000000000000f72ad1a5c6a0671eea3ebbf999d37a05196ca10f00000000000000000000000062180042606624f02d8a130da8a3171e9b33894d00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000019
Deployed Bytecode
0x6080604052600436106102515760003560e01c806370a0823111610139578063a22cb465116100b6578063cd33a7891161007a578063cd33a789146108bf578063e5d089ff146108e8578063e985e9c514610911578063f2fde38b1461094e578063f52ccc2d14610977578063fd2e908d146109a057610251565b8063a22cb465146107ca578063b88d4fde146107f3578063b8d63f451461081c578063c87b56dd14610859578063ccfdd2f81461089657610251565b80638da5cb5b116100fd5780638da5cb5b1461070457806391b7f5ed1461072f57806395d89b411461075857806398d5fdca14610783578063a0712d68146107ae57610251565b806370a082311461063e578063715018a61461067b5780637de8b9861461069257806382dffc33146106bd578063868ff4a2146106e857610251565b806332cb6b0c116101d25780634f6ccce7116101965780634f6ccce71461051757806355f804b3146105545780635d84074e1461057d57806361877440146105ba5780636352211e146105d65780636e4856191461061357610251565b806332cb6b0c14610434578063341408501461045f57806336d50e0a1461048857806342842e0e146104b1578063438b6300146104da57610251565b806318160ddd1161021957806318160ddd1461034d57806320234ac71461037857806323b872dd146103a3578063292dc99e146103cc5780632f745c59146103f757610251565b806301ffc9a71461025657806306fdde031461029357806307affcdd146102be578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906141c2565b6109c9565b60405161028a91906150a1565b60405180910390f35b34801561029f57600080fd5b506102a8610a43565b6040516102b591906150bc565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190614255565b610ad5565b005b3480156102f357600080fd5b5061030e60048036038101906103099190614255565b610b5b565b60405161031b9190614fef565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190614145565b610be0565b005b34801561035957600080fd5b50610362610cf8565b60405161036f919061557e565b60405180910390f35b34801561038457600080fd5b5061038d610d05565b60405161039a919061557e565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c5919061403f565b610d0f565b005b3480156103d857600080fd5b506103e1610d6f565b6040516103ee919061557e565b60405180910390f35b34801561040357600080fd5b5061041e60048036038101906104199190614145565b610d75565b60405161042b919061557e565b60405180910390f35b34801561044057600080fd5b50610449610e1a565b604051610456919061557e565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190614255565b610e20565b005b34801561049457600080fd5b506104af60048036038101906104aa9190614255565b610ea6565b005b3480156104bd57600080fd5b506104d860048036038101906104d3919061403f565b611145565b005b3480156104e657600080fd5b5061050160048036038101906104fc9190613fda565b611165565b60405161050e919061507f565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190614255565b6112e1565b60405161054b919061557e565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190614214565b611378565b005b34801561058957600080fd5b506105a4600480360381019061059f9190613fda565b61140e565b6040516105b1919061557e565b60405180910390f35b6105d460048036038101906105cf9190614255565b611580565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190614255565b6118eb565b60405161060a9190614fef565b60405180910390f35b34801561061f57600080fd5b5061062861199d565b604051610635919061557e565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190613fda565b6119a3565b604051610672919061557e565b60405180910390f35b34801561068757600080fd5b50610690611a5b565b005b34801561069e57600080fd5b506106a7611ae3565b6040516106b4919061557e565b60405180910390f35b3480156106c957600080fd5b506106d2611ae9565b6040516106df919061557e565b60405180910390f35b61070260048036038101906106fd9190614255565b611af3565b005b34801561071057600080fd5b50610719611dfd565b6040516107269190614fef565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190614255565b611e27565b005b34801561076457600080fd5b5061076d611ead565b60405161077a91906150bc565b60405180910390f35b34801561078f57600080fd5b50610798611f3f565b6040516107a5919061557e565b60405180910390f35b6107c860048036038101906107c39190614255565b611f49565b005b3480156107d657600080fd5b506107f160048036038101906107ec9190614109565b612127565b005b3480156107ff57600080fd5b5061081a6004803603810190610815919061408e565b6122a8565b005b34801561082857600080fd5b50610843600480360381019061083e9190613fda565b61230a565b604051610850919061557e565b60405180910390f35b34801561086557600080fd5b50610880600480360381019061087b9190614255565b612353565b60405161088d91906150bc565b60405180910390f35b3480156108a257600080fd5b506108bd60048036038101906108b89190614255565b6123fa565b005b3480156108cb57600080fd5b506108e660048036038101906108e19190614255565b612480565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190614255565b612506565b005b34801561091d57600080fd5b5061093860048036038101906109339190614003565b61262e565b60405161094591906150a1565b60405180910390f35b34801561095a57600080fd5b5061097560048036038101906109709190613fda565b6126c2565b005b34801561098357600080fd5b5061099e60048036038101906109999190614181565b6127ba565b005b3480156109ac57600080fd5b506109c760048036038101906109c29190614255565b6128f1565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a3c5750610a3b82612977565b5b9050919050565b606060008054610a52906158a8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7e906158a8565b8015610acb5780601f10610aa057610100808354040283529160200191610acb565b820191906000526020600020905b815481529060010190602001808311610aae57829003601f168201915b5050505050905090565b610add612a59565b73ffffffffffffffffffffffffffffffffffffffff16610afb611dfd565b73ffffffffffffffffffffffffffffffffffffffff1614610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b489061537e565b60405180910390fd5b8060108190555050565b6000610b6682612a61565b610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c9061535e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610beb826118eb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c539061547e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7b612a59565b73ffffffffffffffffffffffffffffffffffffffff161480610caa5750610ca981610ca4612a59565b61262e565b5b610ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce09061525e565b60405180910390fd5b610cf38383612acd565b505050565b6000600880549050905090565b6000601254905090565b610d20610d1a612a59565b82612b86565b610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d56906154be565b60405180910390fd5b610d6a838383612c64565b505050565b60115481565b6000610d80836119a3565b8210610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db8906150de565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610e28612a59565b73ffffffffffffffffffffffffffffffffffffffff16610e46611dfd565b73ffffffffffffffffffffffffffffffffffffffff1614610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e939061537e565b60405180910390fd5b8060118190555050565b6000600b8054905011610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee5906152fe565b60405180910390fd5b6000600c8054905011610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d9061519e565b60405180910390fd5b60008111610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f709061531e565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff2906152de565b60405180910390fd5b80600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461104a91906157be565b9250508190555060003373ffffffffffffffffffffffffffffffffffffffff168260405161107790614fda565b60006040518083038185875af1925050503d80600081146110b4576040519150601f19603f3d011682016040523d82523d6000602084013e6110b9565b606091505b50509050806110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f49061549e565b60405180910390fd5b813373ffffffffffffffffffffffffffffffffffffffff167f44b2ff9ffcefe2052a8afdbed44a04bf3db4592ae90c6b96c818bd28573e41e860405160405180910390a35050565b611160838383604051806020016040528060008152506122a8565b505050565b60606000611172836119a3565b905060008114156111f557600067ffffffffffffffff8111156111be577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111ec5781602001602082028036833780820191505090505b509150506112dc565b60008167ffffffffffffffff811115611237577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156112655781602001602082028036833780820191505090505b50905060005b828110156112d55761127d8582610d75565b8282815181106112b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806112cd906158da565b91505061126b565b5080925050505b919050565b60006112eb610cf8565b821061132c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611323906154fe565b60405180910390fd5b60088281548110611366577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b611380612a59565b73ffffffffffffffffffffffffffffffffffffffff1661139e611dfd565b73ffffffffffffffffffffffffffffffffffffffff16146113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb9061537e565b60405180910390fd5b806015908051906020019061140a929190613d53565b5050565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161146c9190614fef565b60206040518083038186803b15801561148457600080fd5b505afa158015611498573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114bc919061427e565b11806115115750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611576576001601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460135461156591906157be565b61156f91906157be565b905061157b565b600090505b919050565b61159f3373ffffffffffffffffffffffffffffffffffffffff16612ec0565b1580156115d757503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d9061543e565b60405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016116739190614fef565b60206040518083038186803b15801561168b57600080fd5b505afa15801561169f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116c3919061427e565b11611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa9061545e565b60405180910390fd5b42600f5410611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e9061527e565b60405180910390fd5b60135481601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461179591906156dd565b106117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc9061553e565b60405180910390fd5b60006117df610cf8565b90506106a582826117f091906156dd565b10611830576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611827906153fe565b60405180910390fd5b348260145461183f9190615764565b1461187f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611876906153be565b60405180910390fd5b81601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118ce91906156dd565b925050819055506118df8183612ed3565b6118e7612f49565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b906152be565b60405180910390fd5b80915050919050565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b9061529e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a63612a59565b73ffffffffffffffffffffffffffffffffffffffff16611a81611dfd565b73ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace9061537e565b60405180910390fd5b611ae16000613119565b565b60105481565b6000601354905090565b611b123373ffffffffffffffffffffffffffffffffffffffff16612ec0565b158015611b4a57503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b611b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b809061543e565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c9061523e565b60405180910390fd5b4260105410611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c509061551e565b60405180910390fd5b60135481601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ca791906156dd565b10611ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cde9061553e565b60405180910390fd5b6000611cf1610cf8565b9050610e758282611d0291906156dd565b10611d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d399061517e565b60405180910390fd5b3482601454611d519190615764565b14611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d88906153be565b60405180910390fd5b81601760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611de091906156dd565b92505081905550611df18183612ed3565b611df9612f49565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e2f612a59565b73ffffffffffffffffffffffffffffffffffffffff16611e4d611dfd565b73ffffffffffffffffffffffffffffffffffffffff1614611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a9061537e565b60405180910390fd5b8060148190555050565b606060018054611ebc906158a8565b80601f0160208091040260200160405190810160405280929190818152602001828054611ee8906158a8565b8015611f355780601f10611f0a57610100808354040283529160200191611f35565b820191906000526020600020905b815481529060010190602001808311611f1857829003601f168201915b5050505050905090565b6000601454905090565b611f683373ffffffffffffffffffffffffffffffffffffffff16612ec0565b158015611fa057503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd69061543e565b60405180910390fd5b4260115410612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a9061513e565b60405180910390fd5b600061202d610cf8565b9050612710828261203e91906156dd565b1061207e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120759061541e565b60405180910390fd5b60125482106120c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b9906154de565b60405180910390fd5b34826014546120d19190615764565b14612111576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612108906153be565b60405180910390fd5b61211b8183612ed3565b612123612f49565b5050565b61212f612a59565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561219d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612194906151de565b60405180910390fd5b80600560006121aa612a59565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612257612a59565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161229c91906150a1565b60405180910390a35050565b6122b96122b3612a59565b83612b86565b6122f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ef906154be565b60405180910390fd5b612304848484846131df565b50505050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606061235e82612a61565b61239d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612394906153de565b60405180910390fd5b60006123a761323b565b905060008151116123c757604051806020016040528060008152506123f2565b806123d1846132cd565b6040516020016123e2929190614fb6565b6040516020818303038152906040525b915050919050565b612402612a59565b73ffffffffffffffffffffffffffffffffffffffff16612420611dfd565b73ffffffffffffffffffffffffffffffffffffffff1614612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d9061537e565b60405180910390fd5b8060128190555050565b612488612a59565b73ffffffffffffffffffffffffffffffffffffffff166124a6611dfd565b73ffffffffffffffffffffffffffffffffffffffff16146124fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f39061537e565b60405180910390fd5b80600f8190555050565b61250e612a59565b73ffffffffffffffffffffffffffffffffffffffff1661252c611dfd565b73ffffffffffffffffffffffffffffffffffffffff1614612582576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125799061537e565b60405180910390fd5b60115442106125c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bd906151fe565b60405180910390fd5b60006125d0610cf8565b905060c982826125e091906156dd565b10612620576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126179061555e565b60405180910390fd5b61262a8183612ed3565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6126ca612a59565b73ffffffffffffffffffffffffffffffffffffffff166126e8611dfd565b73ffffffffffffffffffffffffffffffffffffffff161461273e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127359061537e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a59061511e565b60405180910390fd5b6127b781613119565b50565b6127c2612a59565b73ffffffffffffffffffffffffffffffffffffffff166127e0611dfd565b73ffffffffffffffffffffffffffffffffffffffff1614612836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282d9061537e565b60405180910390fd5b60005b81518110156128ed57600160166000848481518110612881577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806128e5906158da565b915050612839565b5050565b6128f9612a59565b73ffffffffffffffffffffffffffffffffffffffff16612917611dfd565b73ffffffffffffffffffffffffffffffffffffffff161461296d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129649061537e565b60405180910390fd5b8060138190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a4257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a525750612a518261347a565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b40836118eb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b9182612a61565b612bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc79061521e565b60405180910390fd5b6000612bdb836118eb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c4a57508373ffffffffffffffffffffffffffffffffffffffff16612c3284610b5b565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c5b5750612c5a818561262e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c84826118eb565b73ffffffffffffffffffffffffffffffffffffffff1614612cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd19061539e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d41906151be565b60405180910390fd5b612d558383836134e4565b612d60600082612acd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612db091906157be565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e0791906156dd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080823b905060008111915050919050565b6000805b82811015612f43578084612eeb91906156dd565b9150612ef733836135f8565b7fcf788ac63fff5ca87a7e21d570a0b99ec63208e1e3cc4c1f25390ea8bd2febf73383604051612f28929190615056565b60405180910390a18080612f3b906158da565b915050612ed7565b50505050565b6000600b8054905011612f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f88906152fe565b60405180910390fd5b6000600c8054905011612fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd09061519e565b60405180910390fd5b6000805b600b80549050811015613115576064600c8281548110613026577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001543461303c9190615764565b6130469190615733565b915081600d6000600b8481548110613087577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130fb91906156dd565b92505081905550808061310d906158da565b915050612fdd565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6131ea848484612c64565b6131f684848484613616565b613235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322c906150fe565b60405180910390fd5b50505050565b60606015805461324a906158a8565b80601f0160208091040260200160405190810160405280929190818152602001828054613276906158a8565b80156132c35780601f10613298576101008083540402835291602001916132c3565b820191906000526020600020905b8154815290600101906020018083116132a657829003601f168201915b5050505050905090565b60606000821415613315576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613475565b600082905060005b60008214613347578080613330906158da565b915050600a826133409190615733565b915061331d565b60008167ffffffffffffffff811115613389577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133bb5781602001600182028036833780820191505090505b5090505b6000851461346e576001826133d491906157be565b9150600a856133e39190615923565b60306133ef91906156dd565b60f81b81838151811061342b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134679190615733565b94506133bf565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6134ef8383836137ad565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135325761352d816137b2565b613571565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146135705761356f83826137fb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135b4576135af81613968565b6135f3565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146135f2576135f18282613aab565b5b5b505050565b613612828260405180602001604052806000815250613b2a565b5050565b60006136378473ffffffffffffffffffffffffffffffffffffffff16612ec0565b156137a0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613660612a59565b8786866040518563ffffffff1660e01b8152600401613682949392919061500a565b602060405180830381600087803b15801561369c57600080fd5b505af19250505080156136cd57506040513d601f19601f820116820180604052508101906136ca91906141eb565b60015b613750573d80600081146136fd576040519150601f19603f3d011682016040523d82523d6000602084013e613702565b606091505b50600081511415613748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161373f906150fe565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137a5565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613808846119a3565b61381291906157be565b90506000600760008481526020019081526020016000205490508181146138f7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061397c91906157be565b90506000600960008481526020019081526020016000205490506000600883815481106139d2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613a8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613ab6836119a3565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b613b348383613b85565b613b416000848484613616565b613b80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b77906150fe565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bec9061533e565b60405180910390fd5b613bfe81612a61565b15613c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c359061515e565b60405180910390fd5b613c4a600083836134e4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c9a91906156dd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613d5f906158a8565b90600052602060002090601f016020900481019282613d815760008555613dc8565b82601f10613d9a57805160ff1916838001178555613dc8565b82800160010185558215613dc8579182015b82811115613dc7578251825591602001919060010190613dac565b5b509050613dd59190613dd9565b5090565b5b80821115613df2576000816000905550600101613dda565b5090565b6000613e09613e04846155ca565b615599565b90508083825260208201905082856020860282011115613e2857600080fd5b60005b85811015613e585781613e3e8882613ede565b845260208401935060208301925050600181019050613e2b565b5050509392505050565b6000613e75613e70846155f6565b615599565b905082815260208101848484011115613e8d57600080fd5b613e98848285615866565b509392505050565b6000613eb3613eae84615626565b615599565b905082815260208101848484011115613ecb57600080fd5b613ed6848285615866565b509392505050565b600081359050613eed81615a21565b92915050565b600082601f830112613f0457600080fd5b8135613f14848260208601613df6565b91505092915050565b600081359050613f2c81615a38565b92915050565b600081359050613f4181615a4f565b92915050565b600081519050613f5681615a4f565b92915050565b600082601f830112613f6d57600080fd5b8135613f7d848260208601613e62565b91505092915050565b600082601f830112613f9757600080fd5b8135613fa7848260208601613ea0565b91505092915050565b600081359050613fbf81615a66565b92915050565b600081519050613fd481615a66565b92915050565b600060208284031215613fec57600080fd5b6000613ffa84828501613ede565b91505092915050565b6000806040838503121561401657600080fd5b600061402485828601613ede565b925050602061403585828601613ede565b9150509250929050565b60008060006060848603121561405457600080fd5b600061406286828701613ede565b935050602061407386828701613ede565b925050604061408486828701613fb0565b9150509250925092565b600080600080608085870312156140a457600080fd5b60006140b287828801613ede565b94505060206140c387828801613ede565b93505060406140d487828801613fb0565b925050606085013567ffffffffffffffff8111156140f157600080fd5b6140fd87828801613f5c565b91505092959194509250565b6000806040838503121561411c57600080fd5b600061412a85828601613ede565b925050602061413b85828601613f1d565b9150509250929050565b6000806040838503121561415857600080fd5b600061416685828601613ede565b925050602061417785828601613fb0565b9150509250929050565b60006020828403121561419357600080fd5b600082013567ffffffffffffffff8111156141ad57600080fd5b6141b984828501613ef3565b91505092915050565b6000602082840312156141d457600080fd5b60006141e284828501613f32565b91505092915050565b6000602082840312156141fd57600080fd5b600061420b84828501613f47565b91505092915050565b60006020828403121561422657600080fd5b600082013567ffffffffffffffff81111561424057600080fd5b61424c84828501613f86565b91505092915050565b60006020828403121561426757600080fd5b600061427584828501613fb0565b91505092915050565b60006020828403121561429057600080fd5b600061429e84828501613fc5565b91505092915050565b60006142b38383614f98565b60208301905092915050565b6142c8816157f2565b82525050565b60006142d982615666565b6142e38185615694565b93506142ee83615656565b8060005b8381101561431f57815161430688826142a7565b975061431183615687565b9250506001810190506142f2565b5085935050505092915050565b61433581615804565b82525050565b600061434682615671565b61435081856156a5565b9350614360818560208601615875565b61436981615a10565b840191505092915050565b600061437f8261567c565b61438981856156c1565b9350614399818560208601615875565b6143a281615a10565b840191505092915050565b60006143b88261567c565b6143c281856156d2565b93506143d2818560208601615875565b80840191505092915050565b60006143eb602b836156c1565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006144516032836156c1565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006144b76026836156c1565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061451d6011836156c1565b91507f53616c65206e6f7420737461727465642e0000000000000000000000000000006000830152602082019050919050565b600061455d601c836156c1565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061459d6018836156c1565b91507f57686974656c6973742070726573616c6520656e6465642e00000000000000006000830152602082019050919050565b60006145dd6020836156c1565b91507f53706c697420776569676874732068617665206e6f74206265656e207365742e6000830152602082019050919050565b600061461d6024836156c1565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146836019836156c1565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006146c3601c836156c1565b91507f5075626c69632061636365737320616c726561647920626567616e2e000000006000830152602082019050919050565b6000614703602c836156c1565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006147696011836156c1565b91507f4e6f74206f6e2077686974656c6973742e0000000000000000000000000000006000830152602082019050919050565b60006147a96038836156c1565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061480f6018836156c1565b91507f4b49412070726573616c65206e6f7420737461727465642e00000000000000006000830152602082019050919050565b600061484f602a836156c1565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006148b56029836156c1565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061491b602e836156c1565b91507f546869732076616c7565206973206d6f7265207468616e20617661696c61626c60008301527f6520746f2077697468647261772e0000000000000000000000000000000000006020830152604082019050919050565b60006149816019836156c1565b91507f53706c6974732068617665206e6f74206265656e207365742e000000000000006000830152602082019050919050565b60006149c16023836156c1565b91507f5769746864726177616c73206f6620302063616e6e6f742074616b6520706c6160008301527f63652e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a276020836156c1565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614a67602c836156c1565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614acd6020836156c1565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614b0d6029836156c1565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b73601c836156c1565b91507f5472616e73616374696f6e2076616c756520696e636f72726563742e000000006000830152602082019050919050565b6000614bb3602f836156c1565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614c196012836156c1565b91507f4b49412070726573616c6520656e6465642e00000000000000000000000000006000830152602082019050919050565b6000614c596013836156c1565b91507f45786365656473206d617820737570706c792e000000000000000000000000006000830152602082019050919050565b6000614c996016836156c1565b91507f436f6e7472616374732063616e6e6f74206d696e742e000000000000000000006000830152602082019050919050565b6000614cd9601e836156c1565b91507f57616c6c657420646f6573206e6f7420636f6e7461696e2061204b49412e00006000830152602082019050919050565b6000614d196021836156c1565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d7f6000836156b6565b9150600082019050919050565b6000614d996010836156c1565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b6000614dd96031836156c1565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614e3f601c836156c1565b91507f45786365656473206d617820706572207472616e73616374696f6e2e000000006000830152602082019050919050565b6000614e7f602c836156c1565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614ee5601e836156c1565b91507f57686974656c6973742070726573616c65206e6f7420737461727465642e00006000830152602082019050919050565b6000614f25601d836156c1565b91507f457863656564732077616c6c65742070726573616c65206c696d69742e0000006000830152602082019050919050565b6000614f656010836156c1565b91507f4265796f6e64206d6178206c696d6974000000000000000000000000000000006000830152602082019050919050565b614fa18161585c565b82525050565b614fb08161585c565b82525050565b6000614fc282856143ad565b9150614fce82846143ad565b91508190509392505050565b6000614fe582614d72565b9150819050919050565b600060208201905061500460008301846142bf565b92915050565b600060808201905061501f60008301876142bf565b61502c60208301866142bf565b6150396040830185614fa7565b818103606083015261504b818461433b565b905095945050505050565b600060408201905061506b60008301856142bf565b6150786020830184614fa7565b9392505050565b6000602082019050818103600083015261509981846142ce565b905092915050565b60006020820190506150b6600083018461432c565b92915050565b600060208201905081810360008301526150d68184614374565b905092915050565b600060208201905081810360008301526150f7816143de565b9050919050565b6000602082019050818103600083015261511781614444565b9050919050565b60006020820190508181036000830152615137816144aa565b9050919050565b6000602082019050818103600083015261515781614510565b9050919050565b6000602082019050818103600083015261517781614550565b9050919050565b6000602082019050818103600083015261519781614590565b9050919050565b600060208201905081810360008301526151b7816145d0565b9050919050565b600060208201905081810360008301526151d781614610565b9050919050565b600060208201905081810360008301526151f781614676565b9050919050565b60006020820190508181036000830152615217816146b6565b9050919050565b60006020820190508181036000830152615237816146f6565b9050919050565b600060208201905081810360008301526152578161475c565b9050919050565b600060208201905081810360008301526152778161479c565b9050919050565b6000602082019050818103600083015261529781614802565b9050919050565b600060208201905081810360008301526152b781614842565b9050919050565b600060208201905081810360008301526152d7816148a8565b9050919050565b600060208201905081810360008301526152f78161490e565b9050919050565b6000602082019050818103600083015261531781614974565b9050919050565b60006020820190508181036000830152615337816149b4565b9050919050565b6000602082019050818103600083015261535781614a1a565b9050919050565b6000602082019050818103600083015261537781614a5a565b9050919050565b6000602082019050818103600083015261539781614ac0565b9050919050565b600060208201905081810360008301526153b781614b00565b9050919050565b600060208201905081810360008301526153d781614b66565b9050919050565b600060208201905081810360008301526153f781614ba6565b9050919050565b6000602082019050818103600083015261541781614c0c565b9050919050565b6000602082019050818103600083015261543781614c4c565b9050919050565b6000602082019050818103600083015261545781614c8c565b9050919050565b6000602082019050818103600083015261547781614ccc565b9050919050565b6000602082019050818103600083015261549781614d0c565b9050919050565b600060208201905081810360008301526154b781614d8c565b9050919050565b600060208201905081810360008301526154d781614dcc565b9050919050565b600060208201905081810360008301526154f781614e32565b9050919050565b6000602082019050818103600083015261551781614e72565b9050919050565b6000602082019050818103600083015261553781614ed8565b9050919050565b6000602082019050818103600083015261555781614f18565b9050919050565b6000602082019050818103600083015261557781614f58565b9050919050565b60006020820190506155936000830184614fa7565b92915050565b6000604051905081810181811067ffffffffffffffff821117156155c0576155bf6159e1565b5b8060405250919050565b600067ffffffffffffffff8211156155e5576155e46159e1565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615611576156106159e1565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115615641576156406159e1565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006156e88261585c565b91506156f38361585c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561572857615727615954565b5b828201905092915050565b600061573e8261585c565b91506157498361585c565b92508261575957615758615983565b5b828204905092915050565b600061576f8261585c565b915061577a8361585c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156157b3576157b2615954565b5b828202905092915050565b60006157c98261585c565b91506157d48361585c565b9250828210156157e7576157e6615954565b5b828203905092915050565b60006157fd8261583c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615893578082015181840152602081019050615878565b838111156158a2576000848401525b50505050565b600060028204905060018216806158c057607f821691505b602082108114156158d4576158d36159b2565b5b50919050565b60006158e58261585c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561591857615917615954565b5b600182019050919050565b600061592e8261585c565b91506159398361585c565b92508261594957615948615983565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615a2a816157f2565b8114615a3557600080fd5b50565b615a4181615804565b8114615a4c57600080fd5b50565b615a5881615810565b8114615a6357600080fd5b50565b615a6f8161585c565b8114615a7a57600080fd5b5056fea2646970667358221220e0c8cdd7885a8d35da58b437778ecd94c2a7e195ffb4e0912174e603f0afffb664736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001800000000000000000000000003f5fb35468e9834a43dca1c160c69eaae78b63600000000000000000000000000000000000000000000000000000000000000025687474703a2f2f7777772e62756e6e79627564732e696f2f6170692f6d657461646174612f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c3568ac6d3eb093e34263a19837e79201125dff000000000000000000000000b97209f8c03be18135da49f1eed9681f5add890c000000000000000000000000f72ad1a5c6a0671eea3ebbf999d37a05196ca10f00000000000000000000000062180042606624f02d8a130da8a3171e9b33894d00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000019000000000000000000000000000000000000000000000000000000000000001900000000000000000000000000000000000000000000000000000000000000190000000000000000000000000000000000000000000000000000000000000019
-----Decoded View---------------
Arg [0] : baseURI (string): http://www.bunnybuds.io/api/metadata/
Arg [1] : _splits (address[]): 0x0C3568ac6d3eb093e34263A19837E79201125dfF,0xb97209F8c03Be18135DA49f1EeD9681F5add890c,0xf72Ad1a5C6a0671EeA3ebbf999d37a05196ca10F,0x62180042606624f02D8A130dA8A3171e9b33894d
Arg [2] : _splitWeights (uint256[]): 25,25,25,25
Arg [3] : _koalasAddress (address): 0x3f5FB35468e9834A43dcA1C160c69EaAE78b6360
-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 0000000000000000000000003f5fb35468e9834a43dca1c160c69eaae78b6360
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [5] : 687474703a2f2f7777772e62756e6e79627564732e696f2f6170692f6d657461
Arg [6] : 646174612f000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 0000000000000000000000000c3568ac6d3eb093e34263a19837e79201125dff
Arg [9] : 000000000000000000000000b97209f8c03be18135da49f1eed9681f5add890c
Arg [10] : 000000000000000000000000f72ad1a5c6a0671eea3ebbf999d37a05196ca10f
Arg [11] : 00000000000000000000000062180042606624f02d8a130da8a3171e9b33894d
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000019
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000019
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.