Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
NFT
Overview
Max Total Supply
253 BNNO
Holders
191
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SrBananos
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* $$$$$$\ $$$$$$\ $$$$$$$\ $$\ $$\ $$$$$$\ $$$$$$$$\ $$$$$$$$\ $$$$$$\ $$\ $$\ $$$$$$$$\ $$$$$$$$\ $$$$$$$$\ $$$$$$$$\ $$$$$$\ $$ __$$\ $$ __$$\ $$ __$$\ $$ | $$ |$$ __$$\\__$$ __|$$ _____|$$ __$$\ $$$\ $$ |$$ _____|\__$$ __|$$ _____|$$ _____|$$ __$$\ $$ / \__|$$ / $$ |$$ | $$ | $$ | $$ |$$ / $$ | $$ | $$ | $$ / \__| $$$$\ $$ |$$ | $$ | $$ | $$ | $$ / \__| $$ |$$$$\ $$ | $$ |$$ | $$ | $$$$$$$$ |$$$$$$$$ | $$ | $$$$$\ \$$$$$$\ $$ $$\$$ |$$$$$\ $$ | $$$$$\ $$$$$\ \$$$$$$\ $$ |\_$$ |$$ | $$ |$$ | $$ | $$ __$$ |$$ __$$ | $$ | $$ __| \____$$\ $$ \$$$$ |$$ __| $$ | $$ __| $$ __| \____$$\ $$ | $$ |$$ | $$ |$$ | $$ | $$ | $$ |$$ | $$ | $$ | $$ | $$\ $$ | $$ |\$$$ |$$ | $$ | $$ | $$ | $$\ $$ | \$$$$$$ | $$$$$$ |$$$$$$$ | $$ | $$ |$$ | $$ | $$ | $$$$$$$$\ \$$$$$$ | $$ | \$$ |$$ | $$ | $$$$$$$$\ $$$$$$$$\ \$$$$$$ | \______/ \______/ \_______/ \__| \__|\__| \__| \__| \________| \______/ \__| \__|\__| \__| \________|\________| \______/ */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.11; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; interface IERC721 is IERC165 { function ownerOf(uint256 tokenId) external view returns (address owner); } pragma solidity ^0.8.11; contract SrBananos is ERC1155, Ownable { // Publc Constants uint256 public constant MAX_SUPPLY = 10044; uint256 public constant MAX_MINTS = 2; uint256 public constant BANANA_PRICE = 0.035 ether; string public name; string public symbol; // Variables string private baseURI; uint256 public _minted = 0; address SuperBanana; // Sale controllers bool public PublicPaused = true; bool public WhitelistPaused = true; // Mappings mapping(address => uint256) public addressPublicMintedBalance; mapping (uint256 => uint256) private AlreadyClaimed; // Instance of God Hates Nftees smart contract IERC721 NFTEE = IERC721(0xE6d48bF4ee912235398b96E16Db6F310c21e82CB); constructor( string memory _uri, string memory _name, string memory _symbol ) ERC1155(_uri) { name = _name; symbol = _symbol; } function MintWhitelist(uint256 amount, uint256 NfTeesId) public payable { require(!WhitelistPaused, "Whitelist sale is paused"); require(amount + _minted <= MAX_SUPPLY, "Banana: Exceed max supply"); require(amount > 0 && amount <= MAX_MINTS); address _owner = NFTEE.ownerOf(NfTeesId); require(_owner == msg.sender, "Must be Owner of OG collection to mint"); require(msg.value == amount * BANANA_PRICE, "Invalid funds provided"); require(AlreadyClaimed[NfTeesId] < 2 , "Bananas already claimed"); require(AlreadyClaimed[NfTeesId] + amount <= 2, "Cannot claim too many bananas"); _minted += amount; AlreadyClaimed[NfTeesId] += amount; _mint(msg.sender, 0, amount, ""); delete _owner; } function MintPublic(uint256 amount) public payable { require(!PublicPaused, "Paused"); require(amount + _minted <= MAX_SUPPLY, "Banana: Exceed max supply"); require(amount > 0 && amount <= MAX_MINTS, "Invalid mint amount"); uint256 addressPublicMintedCount = addressPublicMintedBalance[msg.sender]; require(addressPublicMintedCount + amount <= MAX_MINTS, "max NFT per address exceeded"); require(msg.value == amount * BANANA_PRICE, "Invalid funds provided"); addressPublicMintedBalance[msg.sender] += amount; _minted += amount; _mint(msg.sender, 0, amount, ""); delete addressPublicMintedCount; } function setWhitelistPause(bool _state) public onlyOwner { WhitelistPaused = _state; } function setPublicPause(bool _state) public onlyOwner { PublicPaused = _state; } function CheckHowManyClaimed(uint256 NftID) public view returns (uint256){ uint256 claimed = AlreadyClaimed[NftID]; return claimed; } function burnBanana(address burnTokenAddress) external { require(msg.sender == SuperBanana , "Invalid caller, must be called from SuperBanana Smart Contract"); _burn(burnTokenAddress, 0, 1); } function setSuperBananaAddress(address SuperBananaAddress) external onlyOwner { SuperBanana = SuperBananaAddress; } function updateUri(string memory _newUri) external onlyOwner { _setURI(_newUri); } function MintAdmin(uint256 amount) external onlyOwner { require(amount + _minted <= MAX_SUPPLY, "Banana: Exceed max supply"); _minted += amount; _mint(msg.sender, 0, amount, ""); } function withdrawMoney() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "WITHDRAW FAILED!"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"BANANA_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"NftID","type":"uint256"}],"name":"CheckHowManyClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MintAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"NfTeesId","type":"uint256"}],"name":"MintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PublicPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WhitelistPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressPublicMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"burnTokenAddress","type":"address"}],"name":"burnBanana","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"SuperBananaAddress","type":"address"}],"name":"setSuperBananaAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistPause","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"updateUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006007556001600860146101000a81548160ff0219169083151502179055506001600860156101000a81548160ff02191690831515021790555073e6d48bf4ee912235398b96e16db6f310c21e82cb600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000a157600080fd5b5060405162004aad38038062004aad8339818101604052810190620000c791906200046c565b82620000d9816200013560201b60201c565b50620000fa620000ee6200015160201b60201c565b6200015960201b60201c565b8160049080519060200190620001129291906200021f565b5080600590805190602001906200012b9291906200021f565b505050506200058a565b80600290805190602001906200014d9291906200021f565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022d9062000554565b90600052602060002090601f0160209004810192826200025157600085556200029d565b82601f106200026c57805160ff19168380011785556200029d565b828001600101855582156200029d579182015b828111156200029c5782518255916020019190600101906200027f565b5b509050620002ac9190620002b0565b5090565b5b80821115620002cb576000816000905550600101620002b1565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200033882620002ed565b810181811067ffffffffffffffff821117156200035a5762000359620002fe565b5b80604052505050565b60006200036f620002cf565b90506200037d82826200032d565b919050565b600067ffffffffffffffff821115620003a0576200039f620002fe565b5b620003ab82620002ed565b9050602081019050919050565b60005b83811015620003d8578082015181840152602081019050620003bb565b83811115620003e8576000848401525b50505050565b600062000405620003ff8462000382565b62000363565b905082815260208101848484011115620004245762000423620002e8565b5b62000431848285620003b8565b509392505050565b600082601f830112620004515762000450620002e3565b5b815162000463848260208601620003ee565b91505092915050565b600080600060608486031215620004885762000487620002d9565b5b600084015167ffffffffffffffff811115620004a957620004a8620002de565b5b620004b78682870162000439565b935050602084015167ffffffffffffffff811115620004db57620004da620002de565b5b620004e98682870162000439565b925050604084015167ffffffffffffffff8111156200050d576200050c620002de565b5b6200051b8682870162000439565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200056d57607f821691505b6020821081141562000584576200058362000525565b5b50919050565b614513806200059a6000396000f3fe6080604052600436106101cb5760003560e01c806369600801116100f7578063ac44600211610095578063e985e9c511610064578063e985e9c514610646578063f242432a14610683578063f2fde38b146106ac578063facfb40d146106d5576101cb565b8063ac446002146105bf578063bd90d735146105d6578063cce132d1146105f2578063da63d8641461061d576101cb565b80638da5cb5b116100d15780638da5cb5b1461051557806395d89b4114610540578063a22cb4651461056b578063a533ead414610594576101cb565b806369600801146104ac5780636eea3441146104d5578063715018a6146104fe576101cb565b80632c19b7f31161016f5780634e1273f41161013e5780634e1273f4146103ff57806354310baa1461043c578063570b3c6a14610467578063643439df14610490576101cb565b80632c19b7f3146103575780632eb2c2d61461038257806332cb6b0c146103ab5780633314f318146103d6576101cb565b806306fdde03116101ab57806306fdde03146102875780630e89341c146102b25780630e9e533d146102ef578063144f24781461031a576101cb565b80624e5104146101d0578062fdd58e1461020d57806301ffc9a71461024a575b600080fd5b3480156101dc57600080fd5b506101f760048036038101906101f2919061293e565b6106fe565b6040516102049190612984565b60405180910390f35b34801561021957600080fd5b50610234600480360381019061022f91906129cb565b610716565b6040516102419190612984565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c9190612a63565b6107df565b60405161027e9190612aab565b60405180910390f35b34801561029357600080fd5b5061029c6108c1565b6040516102a99190612b5f565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190612b81565b61094f565b6040516102e69190612b5f565b60405180910390f35b3480156102fb57600080fd5b506103046109e3565b6040516103119190612aab565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c9190612b81565b6109f6565b60405161034e9190612984565b60405180910390f35b34801561036357600080fd5b5061036c610a18565b6040516103799190612984565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a49190612dab565b610a1e565b005b3480156103b757600080fd5b506103c0610abf565b6040516103cd9190612984565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f89190612b81565b610ac5565b005b34801561040b57600080fd5b5061042660048036038101906104219190612f3d565b610b57565b6040516104339190613073565b60405180910390f35b34801561044857600080fd5b50610451610c70565b60405161045e9190612aab565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190613136565b610c83565b005b6104aa60048036038101906104a59190612b81565b610c97565b005b3480156104b857600080fd5b506104d360048036038101906104ce91906131ab565b610f03565b005b3480156104e157600080fd5b506104fc60048036038101906104f791906131ab565b610f28565b005b34801561050a57600080fd5b50610513610f4d565b005b34801561052157600080fd5b5061052a610f61565b60405161053791906131e7565b60405180910390f35b34801561054c57600080fd5b50610555610f8b565b6040516105629190612b5f565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d9190613202565b611019565b005b3480156105a057600080fd5b506105a961102f565b6040516105b69190612984565b60405180910390f35b3480156105cb57600080fd5b506105d461103a565b005b6105f060048036038101906105eb9190613242565b6110f1565b005b3480156105fe57600080fd5b5061060761142f565b6040516106149190612984565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f919061293e565b611434565b005b34801561065257600080fd5b5061066d60048036038101906106689190613282565b611480565b60405161067a9190612aab565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a591906132c2565b611514565b005b3480156106b857600080fd5b506106d360048036038101906106ce919061293e565b6115b5565b005b3480156106e157600080fd5b506106fc60048036038101906106f7919061293e565b611639565b005b60096020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077e906133cb565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108aa57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ba57506108b9826116d9565b5b9050919050565b600480546108ce9061341a565b80601f01602080910402602001604051908101604052809291908181526020018280546108fa9061341a565b80156109475780601f1061091c57610100808354040283529160200191610947565b820191906000526020600020905b81548152906001019060200180831161092a57829003601f168201915b505050505081565b60606002805461095e9061341a565b80601f016020809104026020016040519081016040528092919081815260200182805461098a9061341a565b80156109d75780601f106109ac576101008083540402835291602001916109d7565b820191906000526020600020905b8154815290600101906020018083116109ba57829003601f168201915b50505050509050919050565b600860149054906101000a900460ff1681565b600080600a600084815260200190815260200160002054905080915050919050565b60075481565b610a26611743565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a6c5750610a6b85610a66611743565b611480565b5b610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa2906134be565b60405180910390fd5b610ab8858585858561174b565b5050505050565b61273c81565b610acd611a6d565b61273c60075482610ade919061350d565b1115610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b16906135af565b60405180910390fd5b8060076000828254610b31919061350d565b92505081905550610b543360008360405180602001604052806000815250611aeb565b50565b60608151835114610b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9490613641565b60405180910390fd5b6000835167ffffffffffffffff811115610bba57610bb9612bb3565b5b604051908082528060200260200182016040528015610be85781602001602082028036833780820191505090505b50905060005b8451811015610c6557610c35858281518110610c0d57610c0c613661565b5b6020026020010151858381518110610c2857610c27613661565b5b6020026020010151610716565b828281518110610c4857610c47613661565b5b60200260200101818152505080610c5e90613690565b9050610bee565b508091505092915050565b600860159054906101000a900460ff1681565b610c8b611a6d565b610c9481611c9c565b50565b600860149054906101000a900460ff1615610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90613725565b60405180910390fd5b61273c60075482610cf8919061350d565b1115610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d30906135af565b60405180910390fd5b600081118015610d4a575060028111155b610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090613791565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060028282610ddb919061350d565b1115610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e13906137fd565b60405180910390fd5b667c58508723800082610e2f919061381d565b3414610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e67906138c3565b60405180910390fd5b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ebf919061350d565b925050819055508160076000828254610ed8919061350d565b92505081905550610efb3360008460405180602001604052806000815250611aeb565b600090505050565b610f0b611a6d565b80600860156101000a81548160ff02191690831515021790555050565b610f30611a6d565b80600860146101000a81548160ff02191690831515021790555050565b610f55611a6d565b610f5f6000611cb6565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054610f989061341a565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc49061341a565b80156110115780601f10610fe657610100808354040283529160200191611011565b820191906000526020600020905b815481529060010190602001808311610ff457829003601f168201915b505050505081565b61102b611024611743565b8383611d7c565b5050565b667c58508723800081565b611042611a6d565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161106890613914565b60006040518083038185875af1925050503d80600081146110a5576040519150601f19603f3d011682016040523d82523d6000602084013e6110aa565b606091505b50509050806110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590613975565b60405180910390fd5b50565b600860159054906101000a900460ff1615611141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611138906139e1565b60405180910390fd5b61273c60075483611152919061350d565b1115611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a906135af565b60405180910390fd5b6000821180156111a4575060028211155b6111ad57600080fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161120a9190612984565b602060405180830381865afa158015611227573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124b9190613a16565b90503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b290613ab5565b60405180910390fd5b667c585087238000836112ce919061381d565b341461130f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611306906138c3565b60405180910390fd5b6002600a60008481526020019081526020016000205410611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90613b21565b60405180910390fd5b600283600a600085815260200190815260200160002054611386919061350d565b11156113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90613b8d565b60405180910390fd5b82600760008282546113d9919061350d565b9250508190555082600a60008481526020019081526020016000206000828254611403919061350d565b925050819055506114263360008560405180602001604052806000815250611aeb565b60009050505050565b600281565b61143c611a6d565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61151c611743565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061156257506115618561155c611743565b611480565b5b6115a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611598906134be565b60405180910390fd5b6115ae8585858585611ee9565b5050505050565b6115bd611a6d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490613c1f565b60405180910390fd5b61163681611cb6565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090613cb1565b60405180910390fd5b6116d68160006001612185565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b815183511461178f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178690613d43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f690613dd5565b60405180910390fd5b6000611809611743565b90506118198187878787876123cc565b60005b84518110156119ca57600085828151811061183a57611839613661565b5b60200260200101519050600085838151811061185957611858613661565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190613e67565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119af919061350d565b92505081905550505050806119c390613690565b905061181c565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611a41929190613e87565b60405180910390a4611a578187878787876123d4565b611a658187878787876123dc565b505050505050565b611a75611743565b73ffffffffffffffffffffffffffffffffffffffff16611a93610f61565b73ffffffffffffffffffffffffffffffffffffffff1614611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090613f0a565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5290613f9c565b60405180910390fd5b6000611b65611743565b90506000611b72856125b4565b90506000611b7f856125b4565b9050611b90836000898585896123cc565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bef919061350d565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611c6d929190613fbc565b60405180910390a4611c84836000898585896123d4565b611c938360008989898961262e565b50505050505050565b8060029080519060200190611cb2929190612829565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de290614057565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611edc9190612aab565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5090613dd5565b60405180910390fd5b6000611f63611743565b90506000611f70856125b4565b90506000611f7d856125b4565b9050611f8d8389898585896123cc565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b90613e67565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d9919061350d565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051612156929190613fbc565b60405180910390a461216c848a8a86868a6123d4565b61217a848a8a8a8a8a61262e565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec906140e9565b60405180910390fd5b60006121ff611743565b9050600061220c846125b4565b90506000612219846125b4565b9050612239838760008585604051806020016040528060008152506123cc565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050848110156122d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c79061417b565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62898960405161239d929190613fbc565b60405180910390a46123c3848860008686604051806020016040528060008152506123d4565b50505050505050565b505050505050565b505050505050565b6123fb8473ffffffffffffffffffffffffffffffffffffffff16612806565b156125ac578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016124419594939291906141f0565b6020604051808303816000875af192505050801561247d57506040513d601f19601f8201168201806040525081019061247a919061426d565b60015b612523576124896142a7565b806308c379a014156124e6575061249e6142c9565b806124a957506124e8565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dd9190612b5f565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251a906143d1565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146125aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a190614463565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156125d3576125d2612bb3565b5b6040519080825280602002602001820160405280156126015781602001602082028036833780820191505090505b509050828160008151811061261957612618613661565b5b60200260200101818152505080915050919050565b61264d8473ffffffffffffffffffffffffffffffffffffffff16612806565b156127fe578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612693959493929190614483565b6020604051808303816000875af19250505080156126cf57506040513d601f19601f820116820180604052508101906126cc919061426d565b60015b612775576126db6142a7565b806308c379a0141561273857506126f06142c9565b806126fb575061273a565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272f9190612b5f565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276c906143d1565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f390614463565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546128359061341a565b90600052602060002090601f016020900481019282612857576000855561289e565b82601f1061287057805160ff191683800117855561289e565b8280016001018555821561289e579182015b8281111561289d578251825591602001919060010190612882565b5b5090506128ab91906128af565b5090565b5b808211156128c85760008160009055506001016128b0565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061290b826128e0565b9050919050565b61291b81612900565b811461292657600080fd5b50565b60008135905061293881612912565b92915050565b600060208284031215612954576129536128d6565b5b600061296284828501612929565b91505092915050565b6000819050919050565b61297e8161296b565b82525050565b60006020820190506129996000830184612975565b92915050565b6129a88161296b565b81146129b357600080fd5b50565b6000813590506129c58161299f565b92915050565b600080604083850312156129e2576129e16128d6565b5b60006129f085828601612929565b9250506020612a01858286016129b6565b9150509250929050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a4081612a0b565b8114612a4b57600080fd5b50565b600081359050612a5d81612a37565b92915050565b600060208284031215612a7957612a786128d6565b5b6000612a8784828501612a4e565b91505092915050565b60008115159050919050565b612aa581612a90565b82525050565b6000602082019050612ac06000830184612a9c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b00578082015181840152602081019050612ae5565b83811115612b0f576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b3182612ac6565b612b3b8185612ad1565b9350612b4b818560208601612ae2565b612b5481612b15565b840191505092915050565b60006020820190508181036000830152612b798184612b26565b905092915050565b600060208284031215612b9757612b966128d6565b5b6000612ba5848285016129b6565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612beb82612b15565b810181811067ffffffffffffffff82111715612c0a57612c09612bb3565b5b80604052505050565b6000612c1d6128cc565b9050612c298282612be2565b919050565b600067ffffffffffffffff821115612c4957612c48612bb3565b5b602082029050602081019050919050565b600080fd5b6000612c72612c6d84612c2e565b612c13565b90508083825260208201905060208402830185811115612c9557612c94612c5a565b5b835b81811015612cbe5780612caa88826129b6565b845260208401935050602081019050612c97565b5050509392505050565b600082601f830112612cdd57612cdc612bae565b5b8135612ced848260208601612c5f565b91505092915050565b600080fd5b600067ffffffffffffffff821115612d1657612d15612bb3565b5b612d1f82612b15565b9050602081019050919050565b82818337600083830152505050565b6000612d4e612d4984612cfb565b612c13565b905082815260208101848484011115612d6a57612d69612cf6565b5b612d75848285612d2c565b509392505050565b600082601f830112612d9257612d91612bae565b5b8135612da2848260208601612d3b565b91505092915050565b600080600080600060a08688031215612dc757612dc66128d6565b5b6000612dd588828901612929565b9550506020612de688828901612929565b945050604086013567ffffffffffffffff811115612e0757612e066128db565b5b612e1388828901612cc8565b935050606086013567ffffffffffffffff811115612e3457612e336128db565b5b612e4088828901612cc8565b925050608086013567ffffffffffffffff811115612e6157612e606128db565b5b612e6d88828901612d7d565b9150509295509295909350565b600067ffffffffffffffff821115612e9557612e94612bb3565b5b602082029050602081019050919050565b6000612eb9612eb484612e7a565b612c13565b90508083825260208201905060208402830185811115612edc57612edb612c5a565b5b835b81811015612f055780612ef18882612929565b845260208401935050602081019050612ede565b5050509392505050565b600082601f830112612f2457612f23612bae565b5b8135612f34848260208601612ea6565b91505092915050565b60008060408385031215612f5457612f536128d6565b5b600083013567ffffffffffffffff811115612f7257612f716128db565b5b612f7e85828601612f0f565b925050602083013567ffffffffffffffff811115612f9f57612f9e6128db565b5b612fab85828601612cc8565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612fea8161296b565b82525050565b6000612ffc8383612fe1565b60208301905092915050565b6000602082019050919050565b600061302082612fb5565b61302a8185612fc0565b935061303583612fd1565b8060005b8381101561306657815161304d8882612ff0565b975061305883613008565b925050600181019050613039565b5085935050505092915050565b6000602082019050818103600083015261308d8184613015565b905092915050565b600067ffffffffffffffff8211156130b0576130af612bb3565b5b6130b982612b15565b9050602081019050919050565b60006130d96130d484613095565b612c13565b9050828152602081018484840111156130f5576130f4612cf6565b5b613100848285612d2c565b509392505050565b600082601f83011261311d5761311c612bae565b5b813561312d8482602086016130c6565b91505092915050565b60006020828403121561314c5761314b6128d6565b5b600082013567ffffffffffffffff81111561316a576131696128db565b5b61317684828501613108565b91505092915050565b61318881612a90565b811461319357600080fd5b50565b6000813590506131a58161317f565b92915050565b6000602082840312156131c1576131c06128d6565b5b60006131cf84828501613196565b91505092915050565b6131e181612900565b82525050565b60006020820190506131fc60008301846131d8565b92915050565b60008060408385031215613219576132186128d6565b5b600061322785828601612929565b925050602061323885828601613196565b9150509250929050565b60008060408385031215613259576132586128d6565b5b6000613267858286016129b6565b9250506020613278858286016129b6565b9150509250929050565b60008060408385031215613299576132986128d6565b5b60006132a785828601612929565b92505060206132b885828601612929565b9150509250929050565b600080600080600060a086880312156132de576132dd6128d6565b5b60006132ec88828901612929565b95505060206132fd88828901612929565b945050604061330e888289016129b6565b935050606061331f888289016129b6565b925050608086013567ffffffffffffffff8111156133405761333f6128db565b5b61334c88828901612d7d565b9150509295509295909350565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b60006133b5602a83612ad1565b91506133c082613359565b604082019050919050565b600060208201905081810360008301526133e4816133a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061343257607f821691505b60208210811415613446576134456133eb565b5b50919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b60006134a8602f83612ad1565b91506134b38261344c565b604082019050919050565b600060208201905081810360008301526134d78161349b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135188261296b565b91506135238361296b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613558576135576134de565b5b828201905092915050565b7f42616e616e613a20457863656564206d617820737570706c7900000000000000600082015250565b6000613599601983612ad1565b91506135a482613563565b602082019050919050565b600060208201905081810360008301526135c88161358c565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b600061362b602983612ad1565b9150613636826135cf565b604082019050919050565b6000602082019050818103600083015261365a8161361e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061369b8261296b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136ce576136cd6134de565b5b600182019050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b600061370f600683612ad1565b915061371a826136d9565b602082019050919050565b6000602082019050818103600083015261373e81613702565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b600061377b601383612ad1565b915061378682613745565b602082019050919050565b600060208201905081810360008301526137aa8161376e565b9050919050565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b60006137e7601c83612ad1565b91506137f2826137b1565b602082019050919050565b60006020820190508181036000830152613816816137da565b9050919050565b60006138288261296b565b91506138338361296b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561386c5761386b6134de565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b60006138ad601683612ad1565b91506138b882613877565b602082019050919050565b600060208201905081810360008301526138dc816138a0565b9050919050565b600081905092915050565b50565b60006138fe6000836138e3565b9150613909826138ee565b600082019050919050565b600061391f826138f1565b9150819050919050565b7f5749544844524157204641494c45442100000000000000000000000000000000600082015250565b600061395f601083612ad1565b915061396a82613929565b602082019050919050565b6000602082019050818103600083015261398e81613952565b9050919050565b7f57686974656c6973742073616c65206973207061757365640000000000000000600082015250565b60006139cb601883612ad1565b91506139d682613995565b602082019050919050565b600060208201905081810360008301526139fa816139be565b9050919050565b600081519050613a1081612912565b92915050565b600060208284031215613a2c57613a2b6128d6565b5b6000613a3a84828501613a01565b91505092915050565b7f4d757374206265204f776e6572206f66204f4720636f6c6c656374696f6e207460008201527f6f206d696e740000000000000000000000000000000000000000000000000000602082015250565b6000613a9f602683612ad1565b9150613aaa82613a43565b604082019050919050565b60006020820190508181036000830152613ace81613a92565b9050919050565b7f42616e616e617320616c726561647920636c61696d6564000000000000000000600082015250565b6000613b0b601783612ad1565b9150613b1682613ad5565b602082019050919050565b60006020820190508181036000830152613b3a81613afe565b9050919050565b7f43616e6e6f7420636c61696d20746f6f206d616e792062616e616e6173000000600082015250565b6000613b77601d83612ad1565b9150613b8282613b41565b602082019050919050565b60006020820190508181036000830152613ba681613b6a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c09602683612ad1565b9150613c1482613bad565b604082019050919050565b60006020820190508181036000830152613c3881613bfc565b9050919050565b7f496e76616c69642063616c6c65722c206d7573742062652063616c6c6564206660008201527f726f6d20537570657242616e616e6120536d61727420436f6e74726163740000602082015250565b6000613c9b603e83612ad1565b9150613ca682613c3f565b604082019050919050565b60006020820190508181036000830152613cca81613c8e565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613d2d602883612ad1565b9150613d3882613cd1565b604082019050919050565b60006020820190508181036000830152613d5c81613d20565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613dbf602583612ad1565b9150613dca82613d63565b604082019050919050565b60006020820190508181036000830152613dee81613db2565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613e51602a83612ad1565b9150613e5c82613df5565b604082019050919050565b60006020820190508181036000830152613e8081613e44565b9050919050565b60006040820190508181036000830152613ea18185613015565b90508181036020830152613eb58184613015565b90509392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ef4602083612ad1565b9150613eff82613ebe565b602082019050919050565b60006020820190508181036000830152613f2381613ee7565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f86602183612ad1565b9150613f9182613f2a565b604082019050919050565b60006020820190508181036000830152613fb581613f79565b9050919050565b6000604082019050613fd16000830185612975565b613fde6020830184612975565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614041602983612ad1565b915061404c82613fe5565b604082019050919050565b6000602082019050818103600083015261407081614034565b9050919050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006140d3602383612ad1565b91506140de82614077565b604082019050919050565b60006020820190508181036000830152614102816140c6565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614165602483612ad1565b915061417082614109565b604082019050919050565b6000602082019050818103600083015261419481614158565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006141c28261419b565b6141cc81856141a6565b93506141dc818560208601612ae2565b6141e581612b15565b840191505092915050565b600060a08201905061420560008301886131d8565b61421260208301876131d8565b81810360408301526142248186613015565b905081810360608301526142388185613015565b9050818103608083015261424c81846141b7565b90509695505050505050565b60008151905061426781612a37565b92915050565b600060208284031215614283576142826128d6565b5b600061429184828501614258565b91505092915050565b60008160e01c9050919050565b600060033d11156142c65760046000803e6142c360005161429a565b90505b90565b600060443d10156142d95761435c565b6142e16128cc565b60043d036004823e80513d602482011167ffffffffffffffff8211171561430957505061435c565b808201805167ffffffffffffffff811115614327575050505061435c565b80602083010160043d03850181111561434457505050505061435c565b61435382602001850186612be2565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006143bb603483612ad1565b91506143c68261435f565b604082019050919050565b600060208201905081810360008301526143ea816143ae565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061444d602883612ad1565b9150614458826143f1565b604082019050919050565b6000602082019050818103600083015261447c81614440565b9050919050565b600060a08201905061449860008301886131d8565b6144a560208301876131d8565b6144b26040830186612975565b6144bf6060830185612975565b81810360808301526144d181846141b7565b9050969550505050505056fea264697066735822122061c1ddaad814a05897724a766e0762ed36338a642f4f5e3fc51c320e8dd9d7d164736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5545334e574d51624a64555179365a3575774c4332724d4236434768697956614a585675547a6e616437696f2f62616e616e612e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a53722042616e616e6f73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004424e4e4f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101cb5760003560e01c806369600801116100f7578063ac44600211610095578063e985e9c511610064578063e985e9c514610646578063f242432a14610683578063f2fde38b146106ac578063facfb40d146106d5576101cb565b8063ac446002146105bf578063bd90d735146105d6578063cce132d1146105f2578063da63d8641461061d576101cb565b80638da5cb5b116100d15780638da5cb5b1461051557806395d89b4114610540578063a22cb4651461056b578063a533ead414610594576101cb565b806369600801146104ac5780636eea3441146104d5578063715018a6146104fe576101cb565b80632c19b7f31161016f5780634e1273f41161013e5780634e1273f4146103ff57806354310baa1461043c578063570b3c6a14610467578063643439df14610490576101cb565b80632c19b7f3146103575780632eb2c2d61461038257806332cb6b0c146103ab5780633314f318146103d6576101cb565b806306fdde03116101ab57806306fdde03146102875780630e89341c146102b25780630e9e533d146102ef578063144f24781461031a576101cb565b80624e5104146101d0578062fdd58e1461020d57806301ffc9a71461024a575b600080fd5b3480156101dc57600080fd5b506101f760048036038101906101f2919061293e565b6106fe565b6040516102049190612984565b60405180910390f35b34801561021957600080fd5b50610234600480360381019061022f91906129cb565b610716565b6040516102419190612984565b60405180910390f35b34801561025657600080fd5b50610271600480360381019061026c9190612a63565b6107df565b60405161027e9190612aab565b60405180910390f35b34801561029357600080fd5b5061029c6108c1565b6040516102a99190612b5f565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190612b81565b61094f565b6040516102e69190612b5f565b60405180910390f35b3480156102fb57600080fd5b506103046109e3565b6040516103119190612aab565b60405180910390f35b34801561032657600080fd5b50610341600480360381019061033c9190612b81565b6109f6565b60405161034e9190612984565b60405180910390f35b34801561036357600080fd5b5061036c610a18565b6040516103799190612984565b60405180910390f35b34801561038e57600080fd5b506103a960048036038101906103a49190612dab565b610a1e565b005b3480156103b757600080fd5b506103c0610abf565b6040516103cd9190612984565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f89190612b81565b610ac5565b005b34801561040b57600080fd5b5061042660048036038101906104219190612f3d565b610b57565b6040516104339190613073565b60405180910390f35b34801561044857600080fd5b50610451610c70565b60405161045e9190612aab565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190613136565b610c83565b005b6104aa60048036038101906104a59190612b81565b610c97565b005b3480156104b857600080fd5b506104d360048036038101906104ce91906131ab565b610f03565b005b3480156104e157600080fd5b506104fc60048036038101906104f791906131ab565b610f28565b005b34801561050a57600080fd5b50610513610f4d565b005b34801561052157600080fd5b5061052a610f61565b60405161053791906131e7565b60405180910390f35b34801561054c57600080fd5b50610555610f8b565b6040516105629190612b5f565b60405180910390f35b34801561057757600080fd5b50610592600480360381019061058d9190613202565b611019565b005b3480156105a057600080fd5b506105a961102f565b6040516105b69190612984565b60405180910390f35b3480156105cb57600080fd5b506105d461103a565b005b6105f060048036038101906105eb9190613242565b6110f1565b005b3480156105fe57600080fd5b5061060761142f565b6040516106149190612984565b60405180910390f35b34801561062957600080fd5b50610644600480360381019061063f919061293e565b611434565b005b34801561065257600080fd5b5061066d60048036038101906106689190613282565b611480565b60405161067a9190612aab565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a591906132c2565b611514565b005b3480156106b857600080fd5b506106d360048036038101906106ce919061293e565b6115b5565b005b3480156106e157600080fd5b506106fc60048036038101906106f7919061293e565b611639565b005b60096020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077e906133cb565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108aa57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ba57506108b9826116d9565b5b9050919050565b600480546108ce9061341a565b80601f01602080910402602001604051908101604052809291908181526020018280546108fa9061341a565b80156109475780601f1061091c57610100808354040283529160200191610947565b820191906000526020600020905b81548152906001019060200180831161092a57829003601f168201915b505050505081565b60606002805461095e9061341a565b80601f016020809104026020016040519081016040528092919081815260200182805461098a9061341a565b80156109d75780601f106109ac576101008083540402835291602001916109d7565b820191906000526020600020905b8154815290600101906020018083116109ba57829003601f168201915b50505050509050919050565b600860149054906101000a900460ff1681565b600080600a600084815260200190815260200160002054905080915050919050565b60075481565b610a26611743565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610a6c5750610a6b85610a66611743565b611480565b5b610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa2906134be565b60405180910390fd5b610ab8858585858561174b565b5050505050565b61273c81565b610acd611a6d565b61273c60075482610ade919061350d565b1115610b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b16906135af565b60405180910390fd5b8060076000828254610b31919061350d565b92505081905550610b543360008360405180602001604052806000815250611aeb565b50565b60608151835114610b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9490613641565b60405180910390fd5b6000835167ffffffffffffffff811115610bba57610bb9612bb3565b5b604051908082528060200260200182016040528015610be85781602001602082028036833780820191505090505b50905060005b8451811015610c6557610c35858281518110610c0d57610c0c613661565b5b6020026020010151858381518110610c2857610c27613661565b5b6020026020010151610716565b828281518110610c4857610c47613661565b5b60200260200101818152505080610c5e90613690565b9050610bee565b508091505092915050565b600860159054906101000a900460ff1681565b610c8b611a6d565b610c9481611c9c565b50565b600860149054906101000a900460ff1615610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90613725565b60405180910390fd5b61273c60075482610cf8919061350d565b1115610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d30906135af565b60405180910390fd5b600081118015610d4a575060028111155b610d89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8090613791565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060028282610ddb919061350d565b1115610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e13906137fd565b60405180910390fd5b667c58508723800082610e2f919061381d565b3414610e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e67906138c3565b60405180910390fd5b81600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ebf919061350d565b925050819055508160076000828254610ed8919061350d565b92505081905550610efb3360008460405180602001604052806000815250611aeb565b600090505050565b610f0b611a6d565b80600860156101000a81548160ff02191690831515021790555050565b610f30611a6d565b80600860146101000a81548160ff02191690831515021790555050565b610f55611a6d565b610f5f6000611cb6565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60058054610f989061341a565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc49061341a565b80156110115780601f10610fe657610100808354040283529160200191611011565b820191906000526020600020905b815481529060010190602001808311610ff457829003601f168201915b505050505081565b61102b611024611743565b8383611d7c565b5050565b667c58508723800081565b611042611a6d565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161106890613914565b60006040518083038185875af1925050503d80600081146110a5576040519150601f19603f3d011682016040523d82523d6000602084013e6110aa565b606091505b50509050806110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590613975565b60405180910390fd5b50565b600860159054906101000a900460ff1615611141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611138906139e1565b60405180910390fd5b61273c60075483611152919061350d565b1115611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a906135af565b60405180910390fd5b6000821180156111a4575060028211155b6111ad57600080fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161120a9190612984565b602060405180830381865afa158015611227573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124b9190613a16565b90503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b290613ab5565b60405180910390fd5b667c585087238000836112ce919061381d565b341461130f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611306906138c3565b60405180910390fd5b6002600a60008481526020019081526020016000205410611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c90613b21565b60405180910390fd5b600283600a600085815260200190815260200160002054611386919061350d565b11156113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90613b8d565b60405180910390fd5b82600760008282546113d9919061350d565b9250508190555082600a60008481526020019081526020016000206000828254611403919061350d565b925050819055506114263360008560405180602001604052806000815250611aeb565b60009050505050565b600281565b61143c611a6d565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61151c611743565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061156257506115618561155c611743565b611480565b5b6115a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611598906134be565b60405180910390fd5b6115ae8585858585611ee9565b5050505050565b6115bd611a6d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490613c1f565b60405180910390fd5b61163681611cb6565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c090613cb1565b60405180910390fd5b6116d68160006001612185565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b815183511461178f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178690613d43565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f690613dd5565b60405180910390fd5b6000611809611743565b90506118198187878787876123cc565b60005b84518110156119ca57600085828151811061183a57611839613661565b5b60200260200101519050600085838151811061185957611858613661565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190613e67565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119af919061350d565b92505081905550505050806119c390613690565b905061181c565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611a41929190613e87565b60405180910390a4611a578187878787876123d4565b611a658187878787876123dc565b505050505050565b611a75611743565b73ffffffffffffffffffffffffffffffffffffffff16611a93610f61565b73ffffffffffffffffffffffffffffffffffffffff1614611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090613f0a565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5290613f9c565b60405180910390fd5b6000611b65611743565b90506000611b72856125b4565b90506000611b7f856125b4565b9050611b90836000898585896123cc565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bef919061350d565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051611c6d929190613fbc565b60405180910390a4611c84836000898585896123d4565b611c938360008989898961262e565b50505050505050565b8060029080519060200190611cb2929190612829565b5050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611deb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de290614057565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611edc9190612aab565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5090613dd5565b60405180910390fd5b6000611f63611743565b90506000611f70856125b4565b90506000611f7d856125b4565b9050611f8d8389898585896123cc565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b90613e67565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120d9919061350d565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a604051612156929190613fbc565b60405180910390a461216c848a8a86868a6123d4565b61217a848a8a8a8a8a61262e565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec906140e9565b60405180910390fd5b60006121ff611743565b9050600061220c846125b4565b90506000612219846125b4565b9050612239838760008585604051806020016040528060008152506123cc565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050848110156122d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c79061417b565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62898960405161239d929190613fbc565b60405180910390a46123c3848860008686604051806020016040528060008152506123d4565b50505050505050565b505050505050565b505050505050565b6123fb8473ffffffffffffffffffffffffffffffffffffffff16612806565b156125ac578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016124419594939291906141f0565b6020604051808303816000875af192505050801561247d57506040513d601f19601f8201168201806040525081019061247a919061426d565b60015b612523576124896142a7565b806308c379a014156124e6575061249e6142c9565b806124a957506124e8565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dd9190612b5f565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251a906143d1565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146125aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a190614463565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156125d3576125d2612bb3565b5b6040519080825280602002602001820160405280156126015781602001602082028036833780820191505090505b509050828160008151811061261957612618613661565b5b60200260200101818152505080915050919050565b61264d8473ffffffffffffffffffffffffffffffffffffffff16612806565b156127fe578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612693959493929190614483565b6020604051808303816000875af19250505080156126cf57506040513d601f19601f820116820180604052508101906126cc919061426d565b60015b612775576126db6142a7565b806308c379a0141561273857506126f06142c9565b806126fb575061273a565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272f9190612b5f565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276c906143d1565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f390614463565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546128359061341a565b90600052602060002090601f016020900481019282612857576000855561289e565b82601f1061287057805160ff191683800117855561289e565b8280016001018555821561289e579182015b8281111561289d578251825591602001919060010190612882565b5b5090506128ab91906128af565b5090565b5b808211156128c85760008160009055506001016128b0565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061290b826128e0565b9050919050565b61291b81612900565b811461292657600080fd5b50565b60008135905061293881612912565b92915050565b600060208284031215612954576129536128d6565b5b600061296284828501612929565b91505092915050565b6000819050919050565b61297e8161296b565b82525050565b60006020820190506129996000830184612975565b92915050565b6129a88161296b565b81146129b357600080fd5b50565b6000813590506129c58161299f565b92915050565b600080604083850312156129e2576129e16128d6565b5b60006129f085828601612929565b9250506020612a01858286016129b6565b9150509250929050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a4081612a0b565b8114612a4b57600080fd5b50565b600081359050612a5d81612a37565b92915050565b600060208284031215612a7957612a786128d6565b5b6000612a8784828501612a4e565b91505092915050565b60008115159050919050565b612aa581612a90565b82525050565b6000602082019050612ac06000830184612a9c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b00578082015181840152602081019050612ae5565b83811115612b0f576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b3182612ac6565b612b3b8185612ad1565b9350612b4b818560208601612ae2565b612b5481612b15565b840191505092915050565b60006020820190508181036000830152612b798184612b26565b905092915050565b600060208284031215612b9757612b966128d6565b5b6000612ba5848285016129b6565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612beb82612b15565b810181811067ffffffffffffffff82111715612c0a57612c09612bb3565b5b80604052505050565b6000612c1d6128cc565b9050612c298282612be2565b919050565b600067ffffffffffffffff821115612c4957612c48612bb3565b5b602082029050602081019050919050565b600080fd5b6000612c72612c6d84612c2e565b612c13565b90508083825260208201905060208402830185811115612c9557612c94612c5a565b5b835b81811015612cbe5780612caa88826129b6565b845260208401935050602081019050612c97565b5050509392505050565b600082601f830112612cdd57612cdc612bae565b5b8135612ced848260208601612c5f565b91505092915050565b600080fd5b600067ffffffffffffffff821115612d1657612d15612bb3565b5b612d1f82612b15565b9050602081019050919050565b82818337600083830152505050565b6000612d4e612d4984612cfb565b612c13565b905082815260208101848484011115612d6a57612d69612cf6565b5b612d75848285612d2c565b509392505050565b600082601f830112612d9257612d91612bae565b5b8135612da2848260208601612d3b565b91505092915050565b600080600080600060a08688031215612dc757612dc66128d6565b5b6000612dd588828901612929565b9550506020612de688828901612929565b945050604086013567ffffffffffffffff811115612e0757612e066128db565b5b612e1388828901612cc8565b935050606086013567ffffffffffffffff811115612e3457612e336128db565b5b612e4088828901612cc8565b925050608086013567ffffffffffffffff811115612e6157612e606128db565b5b612e6d88828901612d7d565b9150509295509295909350565b600067ffffffffffffffff821115612e9557612e94612bb3565b5b602082029050602081019050919050565b6000612eb9612eb484612e7a565b612c13565b90508083825260208201905060208402830185811115612edc57612edb612c5a565b5b835b81811015612f055780612ef18882612929565b845260208401935050602081019050612ede565b5050509392505050565b600082601f830112612f2457612f23612bae565b5b8135612f34848260208601612ea6565b91505092915050565b60008060408385031215612f5457612f536128d6565b5b600083013567ffffffffffffffff811115612f7257612f716128db565b5b612f7e85828601612f0f565b925050602083013567ffffffffffffffff811115612f9f57612f9e6128db565b5b612fab85828601612cc8565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612fea8161296b565b82525050565b6000612ffc8383612fe1565b60208301905092915050565b6000602082019050919050565b600061302082612fb5565b61302a8185612fc0565b935061303583612fd1565b8060005b8381101561306657815161304d8882612ff0565b975061305883613008565b925050600181019050613039565b5085935050505092915050565b6000602082019050818103600083015261308d8184613015565b905092915050565b600067ffffffffffffffff8211156130b0576130af612bb3565b5b6130b982612b15565b9050602081019050919050565b60006130d96130d484613095565b612c13565b9050828152602081018484840111156130f5576130f4612cf6565b5b613100848285612d2c565b509392505050565b600082601f83011261311d5761311c612bae565b5b813561312d8482602086016130c6565b91505092915050565b60006020828403121561314c5761314b6128d6565b5b600082013567ffffffffffffffff81111561316a576131696128db565b5b61317684828501613108565b91505092915050565b61318881612a90565b811461319357600080fd5b50565b6000813590506131a58161317f565b92915050565b6000602082840312156131c1576131c06128d6565b5b60006131cf84828501613196565b91505092915050565b6131e181612900565b82525050565b60006020820190506131fc60008301846131d8565b92915050565b60008060408385031215613219576132186128d6565b5b600061322785828601612929565b925050602061323885828601613196565b9150509250929050565b60008060408385031215613259576132586128d6565b5b6000613267858286016129b6565b9250506020613278858286016129b6565b9150509250929050565b60008060408385031215613299576132986128d6565b5b60006132a785828601612929565b92505060206132b885828601612929565b9150509250929050565b600080600080600060a086880312156132de576132dd6128d6565b5b60006132ec88828901612929565b95505060206132fd88828901612929565b945050604061330e888289016129b6565b935050606061331f888289016129b6565b925050608086013567ffffffffffffffff8111156133405761333f6128db565b5b61334c88828901612d7d565b9150509295509295909350565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b60006133b5602a83612ad1565b91506133c082613359565b604082019050919050565b600060208201905081810360008301526133e4816133a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061343257607f821691505b60208210811415613446576134456133eb565b5b50919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206e6f7220617070726f7665640000000000000000000000000000000000602082015250565b60006134a8602f83612ad1565b91506134b38261344c565b604082019050919050565b600060208201905081810360008301526134d78161349b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006135188261296b565b91506135238361296b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613558576135576134de565b5b828201905092915050565b7f42616e616e613a20457863656564206d617820737570706c7900000000000000600082015250565b6000613599601983612ad1565b91506135a482613563565b602082019050919050565b600060208201905081810360008301526135c88161358c565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b600061362b602983612ad1565b9150613636826135cf565b604082019050919050565b6000602082019050818103600083015261365a8161361e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061369b8261296b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136ce576136cd6134de565b5b600182019050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b600061370f600683612ad1565b915061371a826136d9565b602082019050919050565b6000602082019050818103600083015261373e81613702565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b600061377b601383612ad1565b915061378682613745565b602082019050919050565b600060208201905081810360008301526137aa8161376e565b9050919050565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b60006137e7601c83612ad1565b91506137f2826137b1565b602082019050919050565b60006020820190508181036000830152613816816137da565b9050919050565b60006138288261296b565b91506138338361296b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561386c5761386b6134de565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b60006138ad601683612ad1565b91506138b882613877565b602082019050919050565b600060208201905081810360008301526138dc816138a0565b9050919050565b600081905092915050565b50565b60006138fe6000836138e3565b9150613909826138ee565b600082019050919050565b600061391f826138f1565b9150819050919050565b7f5749544844524157204641494c45442100000000000000000000000000000000600082015250565b600061395f601083612ad1565b915061396a82613929565b602082019050919050565b6000602082019050818103600083015261398e81613952565b9050919050565b7f57686974656c6973742073616c65206973207061757365640000000000000000600082015250565b60006139cb601883612ad1565b91506139d682613995565b602082019050919050565b600060208201905081810360008301526139fa816139be565b9050919050565b600081519050613a1081612912565b92915050565b600060208284031215613a2c57613a2b6128d6565b5b6000613a3a84828501613a01565b91505092915050565b7f4d757374206265204f776e6572206f66204f4720636f6c6c656374696f6e207460008201527f6f206d696e740000000000000000000000000000000000000000000000000000602082015250565b6000613a9f602683612ad1565b9150613aaa82613a43565b604082019050919050565b60006020820190508181036000830152613ace81613a92565b9050919050565b7f42616e616e617320616c726561647920636c61696d6564000000000000000000600082015250565b6000613b0b601783612ad1565b9150613b1682613ad5565b602082019050919050565b60006020820190508181036000830152613b3a81613afe565b9050919050565b7f43616e6e6f7420636c61696d20746f6f206d616e792062616e616e6173000000600082015250565b6000613b77601d83612ad1565b9150613b8282613b41565b602082019050919050565b60006020820190508181036000830152613ba681613b6a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c09602683612ad1565b9150613c1482613bad565b604082019050919050565b60006020820190508181036000830152613c3881613bfc565b9050919050565b7f496e76616c69642063616c6c65722c206d7573742062652063616c6c6564206660008201527f726f6d20537570657242616e616e6120536d61727420436f6e74726163740000602082015250565b6000613c9b603e83612ad1565b9150613ca682613c3f565b604082019050919050565b60006020820190508181036000830152613cca81613c8e565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613d2d602883612ad1565b9150613d3882613cd1565b604082019050919050565b60006020820190508181036000830152613d5c81613d20565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613dbf602583612ad1565b9150613dca82613d63565b604082019050919050565b60006020820190508181036000830152613dee81613db2565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613e51602a83612ad1565b9150613e5c82613df5565b604082019050919050565b60006020820190508181036000830152613e8081613e44565b9050919050565b60006040820190508181036000830152613ea18185613015565b90508181036020830152613eb58184613015565b90509392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ef4602083612ad1565b9150613eff82613ebe565b602082019050919050565b60006020820190508181036000830152613f2381613ee7565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f86602183612ad1565b9150613f9182613f2a565b604082019050919050565b60006020820190508181036000830152613fb581613f79565b9050919050565b6000604082019050613fd16000830185612975565b613fde6020830184612975565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614041602983612ad1565b915061404c82613fe5565b604082019050919050565b6000602082019050818103600083015261407081614034565b9050919050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006140d3602383612ad1565b91506140de82614077565b604082019050919050565b60006020820190508181036000830152614102816140c6565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614165602483612ad1565b915061417082614109565b604082019050919050565b6000602082019050818103600083015261419481614158565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006141c28261419b565b6141cc81856141a6565b93506141dc818560208601612ae2565b6141e581612b15565b840191505092915050565b600060a08201905061420560008301886131d8565b61421260208301876131d8565b81810360408301526142248186613015565b905081810360608301526142388185613015565b9050818103608083015261424c81846141b7565b90509695505050505050565b60008151905061426781612a37565b92915050565b600060208284031215614283576142826128d6565b5b600061429184828501614258565b91505092915050565b60008160e01c9050919050565b600060033d11156142c65760046000803e6142c360005161429a565b90505b90565b600060443d10156142d95761435c565b6142e16128cc565b60043d036004823e80513d602482011167ffffffffffffffff8211171561430957505061435c565b808201805167ffffffffffffffff811115614327575050505061435c565b80602083010160043d03850181111561434457505050505061435c565b61435382602001850186612be2565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b60006143bb603483612ad1565b91506143c68261435f565b604082019050919050565b600060208201905081810360008301526143ea816143ae565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061444d602883612ad1565b9150614458826143f1565b604082019050919050565b6000602082019050818103600083015261447c81614440565b9050919050565b600060a08201905061449860008301886131d8565b6144a560208301876131d8565b6144b26040830186612975565b6144bf6060830185612975565b81810360808301526144d181846141b7565b9050969550505050505056fea264697066735822122061c1ddaad814a05897724a766e0762ed36338a642f4f5e3fc51c320e8dd9d7d164736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5545334e574d51624a64555179365a3575774c4332724d4236434768697956614a585675547a6e616437696f2f62616e616e612e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a53722042616e616e6f73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004424e4e4f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmUE3NWMQbJdUQy6Z5uwLC2rMB6CGhiyVaJXVuTznad7io/banana.json
Arg [1] : _name (string): Sr Bananos
Arg [2] : _symbol (string): BNNO
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [4] : 697066733a2f2f516d5545334e574d51624a64555179365a3575774c4332724d
Arg [5] : 4236434768697956614a585675547a6e616437696f2f62616e616e612e6a736f
Arg [6] : 6e00000000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 53722042616e616e6f7300000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 424e4e4f00000000000000000000000000000000000000000000000000000000
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.