ERC-721
Overview
Max Total Supply
2,222 BBOLS
Holders
1,466
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BBOLSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheBubols
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-18 */ // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/TheBubols.sol pragma solidity ^0.8.12; /* The Bubols NFT are limited edition Digital Collectible items. The Copyright of the artwork and IP attached to the collectible remains with the autor APPO 2022(IH1I) */ // Import relevant libraries /// The Bubols smart contract of awesomeness contract TheBubols is ERC721, Ownable { /// Minted token tracking of randomly generated NFT using Counters for Counters.Counter; Counters.Counter private supply; using Strings for uint256; using SafeMath for uint256; // One token free (excluding mint gas fees) additionaly possible at 0.06 ether uint256 public constant MaxSupply = 2222; uint256 public constant Price = 0.06 ether; uint128 public constant MaxPerWallet = 2; uint128 public constant FreeMint = 1; string public constant baseExtension = ".json"; string private baseURI; string private notRevealedUri; bool private Paused; bool public PublicSale; bool public revealed; /// Contract initialization. constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721(_name, _symbol) {setBaseURI(_initBaseURI); setNotRevealedURI("ipfs://QmRZWwRStq5Tcg39pGvnd2ojTyidG1Zmv9ytXDHwmx1HDP/bubson.json"); } ///Sets the base token URI function _baseURI() internal view virtual override returns (string memory) { return baseURI; } /// Get NFT price in ETH after free mint (additional 0.06 ETH) (Read-Only) function getCurrentPriceForQuantity(uint256 _quantityToMint) private view returns (uint256) { // First Mint is FREE if (balanceOf(msg.sender) > 0) { return Price * _quantityToMint; } else { return Price * (_quantityToMint - FreeMint); } } function totalSupply() public view returns (uint256) { return supply.current(); } // Mint NFT Wallet Check 1 Free Mint (2 max per wallet) function MintBobols(uint256 _quantityToMint) public payable{ require(PublicSale == true, "Public Sale has not yet starded"); require(Paused == false, "Public Sale is paused"); require(_quantityToMint > 0 && _quantityToMint <= MaxPerWallet, "Invalid mint amount!"); require((_quantityToMint + balanceOf(msg.sender)) <= MaxPerWallet, "Sorry, only 2 mints per wallet"); require((_quantityToMint + totalSupply()) <= MaxSupply,"Total supply of NFTs exceeded"); require(msg.value == getCurrentPriceForQuantity(_quantityToMint),"Entered ETH not match current price"); for (uint256 i = 0; i < _quantityToMint; i+=1) { supply.increment(); uint256 newItemId = supply.current(); _safeMint(msg.sender, newItemId); } } // Mint NFT Counter Optimization function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MaxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } // NFT Metadata Reveal versus not revealed function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId),"ERC721Metadata: Ups! URI query for nonexistent token" ); if(revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } // Reveal NFTs funcition function reveal() public onlyOwner { revealed = true; } // Reveal NFTs URI refresh funcition function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } // Pause-Play Button - Just in case function isPause(bool val) public onlyOwner { Paused = val; } // Public Sale launch function isPublicSale(bool val) public onlyOwner { PublicSale = val; } // Incase New URI is requiered function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } /// Owners initial promotional mint reserve. (~50 promotional mints to the contract owner) function mintReserve(uint256 _quantityToMint) public onlyOwner { require(_quantityToMint >= 1, "Minimum number to mint is 1"); require((_quantityToMint + totalSupply()) <= MaxSupply,"Exceeds maximum supply"); for (uint256 i = 0; i < _quantityToMint; i+=1) { supply.increment(); uint256 newItemId = supply.current(); _safeMint(msg.sender, newItemId); } } /** Smart contract ETH withdraw */ function withdrawBalance() public onlyOwner { require(address(this).balance > 0, "Balance is 0"); payable(owner()).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FreeMint","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxPerWallet","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantityToMint","type":"uint256"}],"name":"MintBobols","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"isPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"isPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantityToMint","type":"uint256"}],"name":"mintReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620026b5380380620026b5833981016040819052620000349162000344565b8251839083906200004d906000906020850190620001d1565b50805162000063906001906020840190620001d1565b505050620000806200007a620000b860201b60201c565b620000bc565b6200008b816200010e565b620000af604051806080016040528060418152602001620026546041913962000176565b50505062000412565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b031633146200015d5760405162461bcd60e51b815260206004820181905260248201526000805160206200269583398151915260448201526064015b60405180910390fd5b805162000172906008906020840190620001d1565b5050565b6006546001600160a01b03163314620001c15760405162461bcd60e51b8152602060048201819052602482015260008051602062002695833981519152604482015260640162000154565b8051620001729060099060208401905b828054620001df90620003d5565b90600052602060002090601f0160209004810192826200020357600085556200024e565b82601f106200021e57805160ff19168380011785556200024e565b828001600101855582156200024e579182015b828111156200024e57825182559160200191906001019062000231565b506200025c92915062000260565b5090565b5b808211156200025c576000815560010162000261565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200029f57600080fd5b81516001600160401b0380821115620002bc57620002bc62000277565b604051601f8301601f19908116603f01168101908282118183101715620002e757620002e762000277565b816040528381526020925086838588010111156200030457600080fd5b600091505b8382101562000328578582018301518183018401529082019062000309565b838211156200033a5760008385830101525b9695505050505050565b6000806000606084860312156200035a57600080fd5b83516001600160401b03808211156200037257600080fd5b62000380878388016200028d565b945060208601519150808211156200039757600080fd5b620003a5878388016200028d565b93506040860151915080821115620003bc57600080fd5b50620003cb868287016200028d565b9150509250925092565b600181811c90821680620003ea57607f821691505b602082108114156200040c57634e487b7160e01b600052602260045260246000fd5b50919050565b61223280620004226000396000f3fe6080604052600436106101ee5760003560e01c80638bec1c6d1161010d578063b88d4fde116100a0578063e8695ff41161006f578063e8695ff414610590578063e985e9c5146105a5578063f2c4ce1e146105ee578063f2fde38b1461060e578063f906751b1461062e57600080fd5b8063b88d4fde146104ff578063c66828621461051f578063c87b56dd14610550578063c898223c1461057057600080fd5b8063a22cb465116100dc578063a22cb465146104a1578063a475b5dd146104c1578063b36c1284146104d6578063b828da94146104ec57600080fd5b80638bec1c6d1461041d5780638da5cb5b1461045357806395d89b41146104715780639dfde2011461048657600080fd5b8063438b63001161018557806362aa5ae41161015457806362aa5ae4146103a85780636352211e146103c857806370a08231146103e8578063715018a61461040857600080fd5b8063438b630014610326578063518302271461035357806355f804b3146103735780635fd8c7101461039357600080fd5b80630f59c6eb116101c15780630f59c6eb146102a457806318160ddd146102c357806323b872dd146102e657806342842e0e1461030657600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611c23565b61064e565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d6106a0565b60405161021f9190611c98565b34801561025657600080fd5b5061026a610265366004611cab565b610732565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611cdb565b6107cc565b005b3480156102b057600080fd5b50600a5461021390610100900460ff1681565b3480156102cf57600080fd5b506102d86108e2565b60405190815260200161021f565b3480156102f257600080fd5b506102a2610301366004611d05565b6108f2565b34801561031257600080fd5b506102a2610321366004611d05565b610923565b34801561033257600080fd5b50610346610341366004611d41565b61093e565b60405161021f9190611d5c565b34801561035f57600080fd5b50600a546102139062010000900460ff1681565b34801561037f57600080fd5b506102a261038e366004611e2c565b610a1f565b34801561039f57600080fd5b506102a2610a60565b3480156103b457600080fd5b506102a26103c3366004611e85565b610b05565b3480156103d457600080fd5b5061026a6103e3366004611cab565b610b42565b3480156103f457600080fd5b506102d8610403366004611d41565b610bb9565b34801561041457600080fd5b506102a2610c40565b34801561042957600080fd5b50610432600281565b6040516fffffffffffffffffffffffffffffffff909116815260200161021f565b34801561045f57600080fd5b506006546001600160a01b031661026a565b34801561047d57600080fd5b5061023d610c76565b34801561049257600080fd5b506102d866d529ae9e86000081565b3480156104ad57600080fd5b506102a26104bc366004611ea0565b610c85565b3480156104cd57600080fd5b506102a2610c90565b3480156104e257600080fd5b506102d86108ae81565b6102a26104fa366004611cab565b610ccd565b34801561050b57600080fd5b506102a261051a366004611ed3565b610f35565b34801561052b57600080fd5b5061023d60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561055c57600080fd5b5061023d61056b366004611cab565b610f6d565b34801561057c57600080fd5b506102a261058b366004611e85565b61110e565b34801561059c57600080fd5b50610432600181565b3480156105b157600080fd5b506102136105c0366004611f4f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105fa57600080fd5b506102a2610609366004611e2c565b611152565b34801561061a57600080fd5b506102a2610629366004611d41565b61118f565b34801561063a57600080fd5b506102a2610649366004611cab565b611227565b60006001600160e01b031982166380ac58cd60e01b148061067f57506001600160e01b03198216635b5e139f60e01b145b8061069a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106af90611f79565b80601f01602080910402602001604051908101604052809291908181526020018280546106db90611f79565b80156107285780601f106106fd57610100808354040283529160200191610728565b820191906000526020600020905b81548152906001019060200180831161070b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107d782610b42565b9050806001600160a01b0316836001600160a01b031614156108455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107a7565b336001600160a01b0382161480610861575061086181336105c0565b6108d35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107a7565b6108dd8383611341565b505050565b60006108ed60075490565b905090565b6108fc33826113af565b6109185760405162461bcd60e51b81526004016107a790611fb4565b6108dd8383836114a6565b6108dd83838360405180602001604052806000815250610f35565b6060600061094b83610bb9565b905060008167ffffffffffffffff81111561096857610968611da0565b604051908082528060200260200182016040528015610991578160200160208202803683370190505b509050600160005b83811080156109aa57506108ae8211155b15610a155760006109ba83610b42565b9050866001600160a01b0316816001600160a01b03161415610a0257828483815181106109e9576109e9612005565b6020908102919091010152816109fe81612031565b9250505b82610a0c81612031565b93505050610999565b5090949350505050565b6006546001600160a01b03163314610a495760405162461bcd60e51b81526004016107a79061204c565b8051610a5c906008906020840190611b74565b5050565b6006546001600160a01b03163314610a8a5760405162461bcd60e51b81526004016107a79061204c565b60004711610ac95760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b60448201526064016107a7565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b02573d6000803e3d6000fd5b50565b6006546001600160a01b03163314610b2f5760405162461bcd60e51b81526004016107a79061204c565b600a805460ff1916911515919091179055565b6000818152600260205260408120546001600160a01b03168061069a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107a7565b60006001600160a01b038216610c245760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107a7565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c6a5760405162461bcd60e51b81526004016107a79061204c565b610c746000611642565b565b6060600180546106af90611f79565b610a5c338383611694565b6006546001600160a01b03163314610cba5760405162461bcd60e51b81526004016107a79061204c565b600a805462ff0000191662010000179055565b600a5460ff610100909104161515600114610d2a5760405162461bcd60e51b815260206004820152601f60248201527f5075626c69632053616c6520686173206e6f742079657420737461726465640060448201526064016107a7565b600a5460ff1615610d755760405162461bcd60e51b8152602060048201526015602482015274141d589b1a58c814d85b19481a5cc81c185d5cd959605a1b60448201526064016107a7565b600081118015610d86575060028111155b610dc95760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107a7565b6002610dd433610bb9565b610dde9083612081565b1115610e2c5760405162461bcd60e51b815260206004820152601e60248201527f536f7272792c206f6e6c792032206d696e7473207065722077616c6c6574000060448201526064016107a7565b6108ae610e376108e2565b610e419083612081565b1115610e8f5760405162461bcd60e51b815260206004820152601d60248201527f546f74616c20737570706c79206f66204e46547320657863656564656400000060448201526064016107a7565b610e9881611763565b3414610ef25760405162461bcd60e51b815260206004820152602360248201527f456e746572656420455448206e6f74206d617463682063757272656e7420707260448201526269636560e81b60648201526084016107a7565b60005b81811015610a5c57610f0b600780546001019055565b6000610f1660075490565b9050610f2233826117a7565b50610f2e600182612081565b9050610ef5565b610f3f33836113af565b610f5b5760405162461bcd60e51b81526004016107a790611fb4565b610f67848484846117c1565b50505050565b6000818152600260205260409020546060906001600160a01b0316610ff15760405162461bcd60e51b815260206004820152603460248201527f4552433732314d657461646174613a205570732120555249207175657279206660448201527337b9103737b732bc34b9ba32b73a103a37b5b2b760611b60648201526084016107a7565b600a5462010000900460ff16611093576009805461100e90611f79565b80601f016020809104026020016040519081016040528092919081815260200182805461103a90611f79565b80156110875780601f1061105c57610100808354040283529160200191611087565b820191906000526020600020905b81548152906001019060200180831161106a57829003601f168201915b50505050509050919050565b600061109d6117f4565b905060008151116110bd5760405180602001604052806000815250611107565b806110c784611803565b60405180604001604052806005815260200164173539b7b760d91b8152506040516020016110f793929190612099565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146111385760405162461bcd60e51b81526004016107a79061204c565b600a80549115156101000261ff0019909216919091179055565b6006546001600160a01b0316331461117c5760405162461bcd60e51b81526004016107a79061204c565b8051610a5c906009906020840190611b74565b6006546001600160a01b031633146111b95760405162461bcd60e51b81526004016107a79061204c565b6001600160a01b03811661121e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a7565b610b0281611642565b6006546001600160a01b031633146112515760405162461bcd60e51b81526004016107a79061204c565b60018110156112a25760405162461bcd60e51b815260206004820152601b60248201527f4d696e696d756d206e756d62657220746f206d696e742069732031000000000060448201526064016107a7565b6108ae6112ad6108e2565b6112b79083612081565b11156112fe5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b60448201526064016107a7565b60005b81811015610a5c57611317600780546001019055565b600061132260075490565b905061132e33826117a7565b5061133a600182612081565b9050611301565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061137682610b42565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114285760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107a7565b600061143383610b42565b9050806001600160a01b0316846001600160a01b0316148061146e5750836001600160a01b031661146384610732565b6001600160a01b0316145b8061149e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114b982610b42565b6001600160a01b03161461151d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107a7565b6001600160a01b03821661157f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107a7565b61158a600082611341565b6001600160a01b03831660009081526003602052604081208054600192906115b39084906120dc565b90915550506001600160a01b03821660009081526003602052604081208054600192906115e1908490612081565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116f65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107a7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008061176f33610bb9565b11156117865761069a8266d529ae9e8600006120f3565b6117916001836120dc565b61069a9066d529ae9e8600006120f3565b919050565b610a5c828260405180602001604052806000815250611901565b6117cc8484846114a6565b6117d884848484611934565b610f675760405162461bcd60e51b81526004016107a790612112565b6060600880546106af90611f79565b6060816118275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611851578061183b81612031565b915061184a9050600a8361217a565b915061182b565b60008167ffffffffffffffff81111561186c5761186c611da0565b6040519080825280601f01601f191660200182016040528015611896576020820181803683370190505b5090505b841561149e576118ab6001836120dc565b91506118b8600a8661218e565b6118c3906030612081565b60f81b8183815181106118d8576118d8612005565b60200101906001600160f81b031916908160001a9053506118fa600a8661217a565b945061189a565b61190b8383611a32565b6119186000848484611934565b6108dd5760405162461bcd60e51b81526004016107a790612112565b60006001600160a01b0384163b15611a2757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119789033908990889088906004016121a2565b6020604051808303816000875af19250505080156119b3575060408051601f3d908101601f191682019092526119b0918101906121df565b60015b611a0d573d8080156119e1576040519150601f19603f3d011682016040523d82523d6000602084013e6119e6565b606091505b508051611a055760405162461bcd60e51b81526004016107a790612112565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061149e565b506001949350505050565b6001600160a01b038216611a885760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107a7565b6000818152600260205260409020546001600160a01b031615611aed5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107a7565b6001600160a01b0382166000908152600360205260408120805460019290611b16908490612081565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b8090611f79565b90600052602060002090601f016020900481019282611ba25760008555611be8565b82601f10611bbb57805160ff1916838001178555611be8565b82800160010185558215611be8579182015b82811115611be8578251825591602001919060010190611bcd565b50611bf4929150611bf8565b5090565b5b80821115611bf45760008155600101611bf9565b6001600160e01b031981168114610b0257600080fd5b600060208284031215611c3557600080fd5b813561110781611c0d565b60005b83811015611c5b578181015183820152602001611c43565b83811115610f675750506000910152565b60008151808452611c84816020860160208601611c40565b601f01601f19169290920160200192915050565b6020815260006111076020830184611c6c565b600060208284031215611cbd57600080fd5b5035919050565b80356001600160a01b03811681146117a257600080fd5b60008060408385031215611cee57600080fd5b611cf783611cc4565b946020939093013593505050565b600080600060608486031215611d1a57600080fd5b611d2384611cc4565b9250611d3160208501611cc4565b9150604084013590509250925092565b600060208284031215611d5357600080fd5b61110782611cc4565b6020808252825182820181905260009190848201906040850190845b81811015611d9457835183529284019291840191600101611d78565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611dd157611dd1611da0565b604051601f8501601f19908116603f01168101908282118183101715611df957611df9611da0565b81604052809350858152868686011115611e1257600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e3e57600080fd5b813567ffffffffffffffff811115611e5557600080fd5b8201601f81018413611e6657600080fd5b61149e84823560208401611db6565b803580151581146117a257600080fd5b600060208284031215611e9757600080fd5b61110782611e75565b60008060408385031215611eb357600080fd5b611ebc83611cc4565b9150611eca60208401611e75565b90509250929050565b60008060008060808587031215611ee957600080fd5b611ef285611cc4565b9350611f0060208601611cc4565b925060408501359150606085013567ffffffffffffffff811115611f2357600080fd5b8501601f81018713611f3457600080fd5b611f4387823560208401611db6565b91505092959194509250565b60008060408385031215611f6257600080fd5b611f6b83611cc4565b9150611eca60208401611cc4565b600181811c90821680611f8d57607f821691505b60208210811415611fae57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156120455761204561201b565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156120945761209461201b565b500190565b600084516120ab818460208901611c40565b8451908301906120bf818360208901611c40565b84519101906120d2818360208801611c40565b0195945050505050565b6000828210156120ee576120ee61201b565b500390565b600081600019048311821515161561210d5761210d61201b565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261218957612189612164565b500490565b60008261219d5761219d612164565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121d590830184611c6c565b9695505050505050565b6000602082840312156121f157600080fd5b815161110781611c0d56fea2646970667358221220c5ff07efc71b92cf4976a6f3305e2412f6846f241e02816f560dbeab66220a4b64736f6c634300080c0033697066733a2f2f516d525a5777525374713554636733397047766e64326f6a5479696447315a6d76397974584448776d78314844502f627562736f6e2e6a736f6e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a546865204275626f6c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000542424f4c530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d525a5777525374713554636733397047766e64326f6a5479696447315a6d76397974584448776d78314844502f00000000000000000000
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80638bec1c6d1161010d578063b88d4fde116100a0578063e8695ff41161006f578063e8695ff414610590578063e985e9c5146105a5578063f2c4ce1e146105ee578063f2fde38b1461060e578063f906751b1461062e57600080fd5b8063b88d4fde146104ff578063c66828621461051f578063c87b56dd14610550578063c898223c1461057057600080fd5b8063a22cb465116100dc578063a22cb465146104a1578063a475b5dd146104c1578063b36c1284146104d6578063b828da94146104ec57600080fd5b80638bec1c6d1461041d5780638da5cb5b1461045357806395d89b41146104715780639dfde2011461048657600080fd5b8063438b63001161018557806362aa5ae41161015457806362aa5ae4146103a85780636352211e146103c857806370a08231146103e8578063715018a61461040857600080fd5b8063438b630014610326578063518302271461035357806355f804b3146103735780635fd8c7101461039357600080fd5b80630f59c6eb116101c15780630f59c6eb146102a457806318160ddd146102c357806323b872dd146102e657806342842e0e1461030657600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611c23565b61064e565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d6106a0565b60405161021f9190611c98565b34801561025657600080fd5b5061026a610265366004611cab565b610732565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611cdb565b6107cc565b005b3480156102b057600080fd5b50600a5461021390610100900460ff1681565b3480156102cf57600080fd5b506102d86108e2565b60405190815260200161021f565b3480156102f257600080fd5b506102a2610301366004611d05565b6108f2565b34801561031257600080fd5b506102a2610321366004611d05565b610923565b34801561033257600080fd5b50610346610341366004611d41565b61093e565b60405161021f9190611d5c565b34801561035f57600080fd5b50600a546102139062010000900460ff1681565b34801561037f57600080fd5b506102a261038e366004611e2c565b610a1f565b34801561039f57600080fd5b506102a2610a60565b3480156103b457600080fd5b506102a26103c3366004611e85565b610b05565b3480156103d457600080fd5b5061026a6103e3366004611cab565b610b42565b3480156103f457600080fd5b506102d8610403366004611d41565b610bb9565b34801561041457600080fd5b506102a2610c40565b34801561042957600080fd5b50610432600281565b6040516fffffffffffffffffffffffffffffffff909116815260200161021f565b34801561045f57600080fd5b506006546001600160a01b031661026a565b34801561047d57600080fd5b5061023d610c76565b34801561049257600080fd5b506102d866d529ae9e86000081565b3480156104ad57600080fd5b506102a26104bc366004611ea0565b610c85565b3480156104cd57600080fd5b506102a2610c90565b3480156104e257600080fd5b506102d86108ae81565b6102a26104fa366004611cab565b610ccd565b34801561050b57600080fd5b506102a261051a366004611ed3565b610f35565b34801561052b57600080fd5b5061023d60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561055c57600080fd5b5061023d61056b366004611cab565b610f6d565b34801561057c57600080fd5b506102a261058b366004611e85565b61110e565b34801561059c57600080fd5b50610432600181565b3480156105b157600080fd5b506102136105c0366004611f4f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105fa57600080fd5b506102a2610609366004611e2c565b611152565b34801561061a57600080fd5b506102a2610629366004611d41565b61118f565b34801561063a57600080fd5b506102a2610649366004611cab565b611227565b60006001600160e01b031982166380ac58cd60e01b148061067f57506001600160e01b03198216635b5e139f60e01b145b8061069a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106af90611f79565b80601f01602080910402602001604051908101604052809291908181526020018280546106db90611f79565b80156107285780601f106106fd57610100808354040283529160200191610728565b820191906000526020600020905b81548152906001019060200180831161070b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107d782610b42565b9050806001600160a01b0316836001600160a01b031614156108455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107a7565b336001600160a01b0382161480610861575061086181336105c0565b6108d35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107a7565b6108dd8383611341565b505050565b60006108ed60075490565b905090565b6108fc33826113af565b6109185760405162461bcd60e51b81526004016107a790611fb4565b6108dd8383836114a6565b6108dd83838360405180602001604052806000815250610f35565b6060600061094b83610bb9565b905060008167ffffffffffffffff81111561096857610968611da0565b604051908082528060200260200182016040528015610991578160200160208202803683370190505b509050600160005b83811080156109aa57506108ae8211155b15610a155760006109ba83610b42565b9050866001600160a01b0316816001600160a01b03161415610a0257828483815181106109e9576109e9612005565b6020908102919091010152816109fe81612031565b9250505b82610a0c81612031565b93505050610999565b5090949350505050565b6006546001600160a01b03163314610a495760405162461bcd60e51b81526004016107a79061204c565b8051610a5c906008906020840190611b74565b5050565b6006546001600160a01b03163314610a8a5760405162461bcd60e51b81526004016107a79061204c565b60004711610ac95760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b60448201526064016107a7565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b02573d6000803e3d6000fd5b50565b6006546001600160a01b03163314610b2f5760405162461bcd60e51b81526004016107a79061204c565b600a805460ff1916911515919091179055565b6000818152600260205260408120546001600160a01b03168061069a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107a7565b60006001600160a01b038216610c245760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107a7565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c6a5760405162461bcd60e51b81526004016107a79061204c565b610c746000611642565b565b6060600180546106af90611f79565b610a5c338383611694565b6006546001600160a01b03163314610cba5760405162461bcd60e51b81526004016107a79061204c565b600a805462ff0000191662010000179055565b600a5460ff610100909104161515600114610d2a5760405162461bcd60e51b815260206004820152601f60248201527f5075626c69632053616c6520686173206e6f742079657420737461726465640060448201526064016107a7565b600a5460ff1615610d755760405162461bcd60e51b8152602060048201526015602482015274141d589b1a58c814d85b19481a5cc81c185d5cd959605a1b60448201526064016107a7565b600081118015610d86575060028111155b610dc95760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016107a7565b6002610dd433610bb9565b610dde9083612081565b1115610e2c5760405162461bcd60e51b815260206004820152601e60248201527f536f7272792c206f6e6c792032206d696e7473207065722077616c6c6574000060448201526064016107a7565b6108ae610e376108e2565b610e419083612081565b1115610e8f5760405162461bcd60e51b815260206004820152601d60248201527f546f74616c20737570706c79206f66204e46547320657863656564656400000060448201526064016107a7565b610e9881611763565b3414610ef25760405162461bcd60e51b815260206004820152602360248201527f456e746572656420455448206e6f74206d617463682063757272656e7420707260448201526269636560e81b60648201526084016107a7565b60005b81811015610a5c57610f0b600780546001019055565b6000610f1660075490565b9050610f2233826117a7565b50610f2e600182612081565b9050610ef5565b610f3f33836113af565b610f5b5760405162461bcd60e51b81526004016107a790611fb4565b610f67848484846117c1565b50505050565b6000818152600260205260409020546060906001600160a01b0316610ff15760405162461bcd60e51b815260206004820152603460248201527f4552433732314d657461646174613a205570732120555249207175657279206660448201527337b9103737b732bc34b9ba32b73a103a37b5b2b760611b60648201526084016107a7565b600a5462010000900460ff16611093576009805461100e90611f79565b80601f016020809104026020016040519081016040528092919081815260200182805461103a90611f79565b80156110875780601f1061105c57610100808354040283529160200191611087565b820191906000526020600020905b81548152906001019060200180831161106a57829003601f168201915b50505050509050919050565b600061109d6117f4565b905060008151116110bd5760405180602001604052806000815250611107565b806110c784611803565b60405180604001604052806005815260200164173539b7b760d91b8152506040516020016110f793929190612099565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146111385760405162461bcd60e51b81526004016107a79061204c565b600a80549115156101000261ff0019909216919091179055565b6006546001600160a01b0316331461117c5760405162461bcd60e51b81526004016107a79061204c565b8051610a5c906009906020840190611b74565b6006546001600160a01b031633146111b95760405162461bcd60e51b81526004016107a79061204c565b6001600160a01b03811661121e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a7565b610b0281611642565b6006546001600160a01b031633146112515760405162461bcd60e51b81526004016107a79061204c565b60018110156112a25760405162461bcd60e51b815260206004820152601b60248201527f4d696e696d756d206e756d62657220746f206d696e742069732031000000000060448201526064016107a7565b6108ae6112ad6108e2565b6112b79083612081565b11156112fe5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b60448201526064016107a7565b60005b81811015610a5c57611317600780546001019055565b600061132260075490565b905061132e33826117a7565b5061133a600182612081565b9050611301565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061137682610b42565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114285760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107a7565b600061143383610b42565b9050806001600160a01b0316846001600160a01b0316148061146e5750836001600160a01b031661146384610732565b6001600160a01b0316145b8061149e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114b982610b42565b6001600160a01b03161461151d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016107a7565b6001600160a01b03821661157f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107a7565b61158a600082611341565b6001600160a01b03831660009081526003602052604081208054600192906115b39084906120dc565b90915550506001600160a01b03821660009081526003602052604081208054600192906115e1908490612081565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116f65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107a7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008061176f33610bb9565b11156117865761069a8266d529ae9e8600006120f3565b6117916001836120dc565b61069a9066d529ae9e8600006120f3565b919050565b610a5c828260405180602001604052806000815250611901565b6117cc8484846114a6565b6117d884848484611934565b610f675760405162461bcd60e51b81526004016107a790612112565b6060600880546106af90611f79565b6060816118275750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611851578061183b81612031565b915061184a9050600a8361217a565b915061182b565b60008167ffffffffffffffff81111561186c5761186c611da0565b6040519080825280601f01601f191660200182016040528015611896576020820181803683370190505b5090505b841561149e576118ab6001836120dc565b91506118b8600a8661218e565b6118c3906030612081565b60f81b8183815181106118d8576118d8612005565b60200101906001600160f81b031916908160001a9053506118fa600a8661217a565b945061189a565b61190b8383611a32565b6119186000848484611934565b6108dd5760405162461bcd60e51b81526004016107a790612112565b60006001600160a01b0384163b15611a2757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119789033908990889088906004016121a2565b6020604051808303816000875af19250505080156119b3575060408051601f3d908101601f191682019092526119b0918101906121df565b60015b611a0d573d8080156119e1576040519150601f19603f3d011682016040523d82523d6000602084013e6119e6565b606091505b508051611a055760405162461bcd60e51b81526004016107a790612112565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061149e565b506001949350505050565b6001600160a01b038216611a885760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107a7565b6000818152600260205260409020546001600160a01b031615611aed5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107a7565b6001600160a01b0382166000908152600360205260408120805460019290611b16908490612081565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b8090611f79565b90600052602060002090601f016020900481019282611ba25760008555611be8565b82601f10611bbb57805160ff1916838001178555611be8565b82800160010185558215611be8579182015b82811115611be8578251825591602001919060010190611bcd565b50611bf4929150611bf8565b5090565b5b80821115611bf45760008155600101611bf9565b6001600160e01b031981168114610b0257600080fd5b600060208284031215611c3557600080fd5b813561110781611c0d565b60005b83811015611c5b578181015183820152602001611c43565b83811115610f675750506000910152565b60008151808452611c84816020860160208601611c40565b601f01601f19169290920160200192915050565b6020815260006111076020830184611c6c565b600060208284031215611cbd57600080fd5b5035919050565b80356001600160a01b03811681146117a257600080fd5b60008060408385031215611cee57600080fd5b611cf783611cc4565b946020939093013593505050565b600080600060608486031215611d1a57600080fd5b611d2384611cc4565b9250611d3160208501611cc4565b9150604084013590509250925092565b600060208284031215611d5357600080fd5b61110782611cc4565b6020808252825182820181905260009190848201906040850190845b81811015611d9457835183529284019291840191600101611d78565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611dd157611dd1611da0565b604051601f8501601f19908116603f01168101908282118183101715611df957611df9611da0565b81604052809350858152868686011115611e1257600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e3e57600080fd5b813567ffffffffffffffff811115611e5557600080fd5b8201601f81018413611e6657600080fd5b61149e84823560208401611db6565b803580151581146117a257600080fd5b600060208284031215611e9757600080fd5b61110782611e75565b60008060408385031215611eb357600080fd5b611ebc83611cc4565b9150611eca60208401611e75565b90509250929050565b60008060008060808587031215611ee957600080fd5b611ef285611cc4565b9350611f0060208601611cc4565b925060408501359150606085013567ffffffffffffffff811115611f2357600080fd5b8501601f81018713611f3457600080fd5b611f4387823560208401611db6565b91505092959194509250565b60008060408385031215611f6257600080fd5b611f6b83611cc4565b9150611eca60208401611cc4565b600181811c90821680611f8d57607f821691505b60208210811415611fae57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156120455761204561201b565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156120945761209461201b565b500190565b600084516120ab818460208901611c40565b8451908301906120bf818360208901611c40565b84519101906120d2818360208801611c40565b0195945050505050565b6000828210156120ee576120ee61201b565b500390565b600081600019048311821515161561210d5761210d61201b565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261218957612189612164565b500490565b60008261219d5761219d612164565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121d590830184611c6c565b9695505050505050565b6000602082840312156121f157600080fd5b815161110781611c0d56fea2646970667358221220c5ff07efc71b92cf4976a6f3305e2412f6846f241e02816f560dbeab66220a4b64736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a546865204275626f6c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000542424f4c530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d525a5777525374713554636733397047766e64326f6a5479696447315a6d76397974584448776d78314844502f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): The Bubols
Arg [1] : _symbol (string): BBOLS
Arg [2] : _initBaseURI (string): ipfs://QmRZWwRStq5Tcg39pGvnd2ojTyidG1Zmv9ytXDHwmx1HDP/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 546865204275626f6c7300000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 42424f4c53000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d525a5777525374713554636733397047766e64326f6a54
Arg [9] : 79696447315a6d76397974584448776d78314844502f00000000000000000000
Deployed Bytecode Sourcemap
46051:5291:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32601:305;;;;;;;;;;-1:-1:-1;32601:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;32601:305:0;;;;;;;;33546:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35105:221::-;;;;;;;;;;-1:-1:-1;35105:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;35105:221:0;1528:203:1;34628:411:0;;;;;;;;;;-1:-1:-1;34628:411:0;;;;;:::i;:::-;;:::i;:::-;;46716:22;;;;;;;;;;-1:-1:-1;46716:22:0;;;;;;;;;;;47630:95;;;;;;;;;;;;;:::i;:::-;;;2319:25:1;;;2307:2;2292:18;47630:95:0;2173:177:1;35855:339:0;;;;;;;;;;-1:-1:-1;35855:339:0;;;;;:::i;:::-;;:::i;36265:185::-;;;;;;;;;;-1:-1:-1;36265:185:0;;;;;:::i;:::-;;:::i;48665:692::-;;;;;;;;;;-1:-1:-1;48665:692:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46745:20::-;;;;;;;;;;-1:-1:-1;46745:20:0;;;;;;;;;;;50472:104;;;;;;;;;;-1:-1:-1;50472:104:0;;;;;:::i;:::-;;:::i;51165:172::-;;;;;;;;;;;;;:::i;50234:75::-;;;;;;;;;;-1:-1:-1;50234:75:0;;;;;:::i;:::-;;:::i;33240:239::-;;;;;;;;;;-1:-1:-1;33240:239:0;;;;;:::i;:::-;;:::i;32970:208::-;;;;;;;;;;-1:-1:-1;32970:208:0;;;;;:::i;:::-;;:::i;13222:103::-;;;;;;;;;;;;;:::i;46482:40::-;;;;;;;;;;;;46521:1;46482:40;;;;;5267:34:1;5255:47;;;5237:66;;5225:2;5210:18;46482:40:0;5091:218:1;12571:87:0;;;;;;;;;;-1:-1:-1;12644:6:0;;-1:-1:-1;;;;;12644:6:0;12571:87;;33715:104;;;;;;;;;;;;;:::i;46433:42::-;;;;;;;;;;;;46465:10;46433:42;;35398:155;;;;;;;;;;-1:-1:-1;35398:155:0;;;;;:::i;:::-;;:::i;49940:69::-;;;;;;;;;;;;;:::i;46386:40::-;;;;;;;;;;;;46422:4;46386:40;;47794:827;;;;;;:::i;:::-;;:::i;36521:328::-;;;;;;;;;;-1:-1:-1;36521:328:0;;;;;:::i;:::-;;:::i;46572:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;46572:46:0;;;;;49413:489;;;;;;;;;;-1:-1:-1;49413:489:0;;;;;:::i;:::-;;:::i;50344:84::-;;;;;;;;;;-1:-1:-1;50344:84:0;;;;;:::i;:::-;;:::i;46529:36::-;;;;;;;;;;;;46564:1;46529:36;;35624:164;;;;;;;;;;-1:-1:-1;35624:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35745:25:0;;;35721:4;35745:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35624:164;50059:126;;;;;;;;;;-1:-1:-1;50059:126:0;;;;;:::i;:::-;;:::i;13480:201::-;;;;;;;;;;-1:-1:-1;13480:201:0;;;;;:::i;:::-;;:::i;50680:437::-;;;;;;;;;;-1:-1:-1;50680:437:0;;;;;:::i;:::-;;:::i;32601:305::-;32703:4;-1:-1:-1;;;;;;32740:40:0;;-1:-1:-1;;;32740:40:0;;:105;;-1:-1:-1;;;;;;;32797:48:0;;-1:-1:-1;;;32797:48:0;32740:105;:158;;;-1:-1:-1;;;;;;;;;;25464:40:0;;;32862:36;32720:178;32601:305;-1:-1:-1;;32601:305:0:o;33546:100::-;33600:13;33633:5;33626:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33546:100;:::o;35105:221::-;35181:7;38448:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38448:16:0;35201:73;;;;-1:-1:-1;;;35201:73:0;;7097:2:1;35201:73:0;;;7079:21:1;7136:2;7116:18;;;7109:30;7175:34;7155:18;;;7148:62;-1:-1:-1;;;7226:18:1;;;7219:42;7278:19;;35201:73:0;;;;;;;;;-1:-1:-1;35294:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35294:24:0;;35105:221::o;34628:411::-;34709:13;34725:23;34740:7;34725:14;:23::i;:::-;34709:39;;34773:5;-1:-1:-1;;;;;34767:11:0;:2;-1:-1:-1;;;;;34767:11:0;;;34759:57;;;;-1:-1:-1;;;34759:57:0;;7510:2:1;34759:57:0;;;7492:21:1;7549:2;7529:18;;;7522:30;7588:34;7568:18;;;7561:62;-1:-1:-1;;;7639:18:1;;;7632:31;7680:19;;34759:57:0;7308:397:1;34759:57:0;11375:10;-1:-1:-1;;;;;34851:21:0;;;;:62;;-1:-1:-1;34876:37:0;34893:5;11375:10;35624:164;:::i;34876:37::-;34829:168;;;;-1:-1:-1;;;34829:168:0;;7912:2:1;34829:168:0;;;7894:21:1;7951:2;7931:18;;;7924:30;7990:34;7970:18;;;7963:62;8061:26;8041:18;;;8034:54;8105:19;;34829:168:0;7710:420:1;34829:168:0;35010:21;35019:2;35023:7;35010:8;:21::i;:::-;34698:341;34628:411;;:::o;47630:95::-;47674:7;47701:16;:6;7991:14;;7899:114;47701:16;47694:23;;47630:95;:::o;35855:339::-;36050:41;11375:10;36083:7;36050:18;:41::i;:::-;36042:103;;;;-1:-1:-1;;;36042:103:0;;;;;;;:::i;:::-;36158:28;36168:4;36174:2;36178:7;36158:9;:28::i;36265:185::-;36403:39;36420:4;36426:2;36430:7;36403:39;;;;;;;;;;;;:16;:39::i;48665:692::-;48725:16;48759:23;48785:17;48795:6;48785:9;:17::i;:::-;48759:43;;48813:30;48860:15;48846:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48846:30:0;-1:-1:-1;48813:63:0;-1:-1:-1;48912:1:0;48887:22;48964:353;48989:15;48971;:33;:64;;;;;46422:4;49008:14;:27;;48971:64;48964:353;;;49052:25;49080:23;49088:14;49080:7;:23::i;:::-;49052:51;;49145:6;-1:-1:-1;;;;;49124:27:0;:17;-1:-1:-1;;;;;49124:27:0;;49120:153;;;49205:14;49172:13;49186:15;49172:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;49240:17;;;;:::i;:::-;;;;49120:153;49289:16;;;;:::i;:::-;;;;49037:280;48964:353;;;-1:-1:-1;49336:13:0;;48665:692;-1:-1:-1;;;;48665:692:0:o;50472:104::-;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;50547:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50472:104:::0;:::o;51165:172::-;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;51252:1:::1;51228:21;:25;51220:50;;;::::0;-1:-1:-1;;;51220:50:0;;9520:2:1;51220:50:0::1;::::0;::::1;9502:21:1::0;9559:2;9539:18;;;9532:30;-1:-1:-1;;;9578:18:1;;;9571:42;9630:18;;51220:50:0::1;9318:336:1::0;51220:50:0::1;12644:6:::0;;51281:48:::1;::::0;-1:-1:-1;;;;;12644:6:0;;;;51307:21:::1;51281:48:::0;::::1;;;::::0;::::1;::::0;;;51307:21;12644:6;51281:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51165:172::o:0;50234:75::-;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;50289:6:::1;:12:::0;;-1:-1:-1;;50289:12:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50234:75::o;33240:239::-;33312:7;33348:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33348:16:0;33383:19;33375:73;;;;-1:-1:-1;;;33375:73:0;;9861:2:1;33375:73:0;;;9843:21:1;9900:2;9880:18;;;9873:30;9939:34;9919:18;;;9912:62;-1:-1:-1;;;9990:18:1;;;9983:39;10039:19;;33375:73:0;9659:405:1;32970:208:0;33042:7;-1:-1:-1;;;;;33070:19:0;;33062:74;;;;-1:-1:-1;;;33062:74:0;;10271:2:1;33062:74:0;;;10253:21:1;10310:2;10290:18;;;10283:30;10349:34;10329:18;;;10322:62;-1:-1:-1;;;10400:18:1;;;10393:40;10450:19;;33062:74:0;10069:406:1;33062:74:0;-1:-1:-1;;;;;;33154:16:0;;;;;:9;:16;;;;;;;32970:208::o;13222:103::-;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;13287:30:::1;13314:1;13287:18;:30::i;:::-;13222:103::o:0;33715:104::-;33771:13;33804:7;33797:14;;;;;:::i;35398:155::-;35493:52;11375:10;35526:8;35536;35493:18;:52::i;49940:69::-;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;49986:8:::1;:15:::0;;-1:-1:-1;;49986:15:0::1;::::0;::::1;::::0;;49940:69::o;47794:827::-;47872:10;;;;;;;;:18;;:10;:18;47864:62;;;;-1:-1:-1;;;47864:62:0;;10682:2:1;47864:62:0;;;10664:21:1;10721:2;10701:18;;;10694:30;10760:33;10740:18;;;10733:61;10811:18;;47864:62:0;10480:355:1;47864:62:0;47945:6;;;;:15;47937:49;;;;-1:-1:-1;;;47937:49:0;;11042:2:1;47937:49:0;;;11024:21:1;11081:2;11061:18;;;11054:30;-1:-1:-1;;;11100:18:1;;;11093:51;11161:18;;47937:49:0;10840:345:1;47937:49:0;48023:1;48005:15;:19;:54;;;;-1:-1:-1;46521:1:0;48028:31;;;48005:54;47997:87;;;;-1:-1:-1;;;47997:87:0;;11392:2:1;47997:87:0;;;11374:21:1;11431:2;11411:18;;;11404:30;-1:-1:-1;;;11450:18:1;;;11443:50;11510:18;;47997:87:0;11190:344:1;47997:87:0;46521:1;48122:21;48132:10;48122:9;:21::i;:::-;48104:39;;:15;:39;:::i;:::-;48103:57;;48095:100;;;;-1:-1:-1;;;48095:100:0;;11874:2:1;48095:100:0;;;11856:21:1;11913:2;11893:18;;;11886:30;11952:32;11932:18;;;11925:60;12002:18;;48095:100:0;11672:354:1;48095:100:0;46422:4;48233:13;:11;:13::i;:::-;48215:31;;:15;:31;:::i;:::-;48214:46;;48206:87;;;;-1:-1:-1;;;48206:87:0;;12233:2:1;48206:87:0;;;12215:21:1;12272:2;12252:18;;;12245:30;12311:31;12291:18;;;12284:59;12360:18;;48206:87:0;12031:353:1;48206:87:0;48325:43;48352:15;48325:26;:43::i;:::-;48312:9;:56;48304:103;;;;-1:-1:-1;;;48304:103:0;;12591:2:1;48304:103:0;;;12573:21:1;12630:2;12610:18;;;12603:30;12669:34;12649:18;;;12642:62;-1:-1:-1;;;12720:18:1;;;12713:33;12763:19;;48304:103:0;12389:399:1;48304:103:0;48427:9;48422:192;48446:15;48442:1;:19;48422:192;;;48484:18;:6;8110:19;;8128:1;8110:19;;;8021:127;48484:18;48519:17;48539:16;:6;7991:14;;7899:114;48539:16;48519:36;;48570:32;48580:10;48592:9;48570;:32::i;:::-;-1:-1:-1;48463:4:0;48466:1;48463:4;;:::i;:::-;;;48422:192;;36521:328;36696:41;11375:10;36729:7;36696:18;:41::i;:::-;36688:103;;;;-1:-1:-1;;;36688:103:0;;;;;;;:::i;:::-;36802:39;36816:4;36822:2;36826:7;36835:5;36802:13;:39::i;:::-;36521:328;;;;:::o;49413:489::-;38424:4;38448:16;;;:7;:16;;;;;;49486:13;;-1:-1:-1;;;;;38448:16:0;49517:90;;;;-1:-1:-1;;;49517:90:0;;12995:2:1;49517:90:0;;;12977:21:1;13034:2;13014:18;;;13007:30;13073:34;13053:18;;;13046:62;-1:-1:-1;;;13124:18:1;;;13117:50;13184:19;;49517:90:0;12793:416:1;49517:90:0;49623:8;;;;;;;49620:70;;49664:14;49657:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49413:489;;;:::o;49620:70::-;49702:28;49733:10;:8;:10::i;:::-;49702:41;;49792:1;49767:14;49761:28;:32;:133;;;;;;;;;;;;;;;;;49829:14;49845:18;:7;:16;:18::i;:::-;49865:13;;;;;;;;;;;;;-1:-1:-1;;;49865:13:0;;;49812:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49761:133;49754:140;49413:489;-1:-1:-1;;;49413:489:0:o;50344:84::-;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;50404:10:::1;:16:::0;;;::::1;;;;-1:-1:-1::0;;50404:16:0;;::::1;::::0;;;::::1;::::0;;50344:84::o;50059:126::-;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;50145:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;13480:201::-:0;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13569:22:0;::::1;13561:73;;;::::0;-1:-1:-1;;;13561:73:0;;14085:2:1;13561:73:0::1;::::0;::::1;14067:21:1::0;14124:2;14104:18;;;14097:30;14163:34;14143:18;;;14136:62;-1:-1:-1;;;14214:18:1;;;14207:36;14260:19;;13561:73:0::1;13883:402:1::0;13561:73:0::1;13645:28;13664:8;13645:18;:28::i;50680:437::-:0;12644:6;;-1:-1:-1;;;;;12644:6:0;11375:10;12791:23;12783:68;;;;-1:-1:-1;;;12783:68:0;;;;;;;:::i;:::-;50781:1:::1;50762:15;:20;;50754:60;;;::::0;-1:-1:-1;;;50754:60:0;;14492:2:1;50754:60:0::1;::::0;::::1;14474:21:1::0;14531:2;14511:18;;;14504:30;14570:29;14550:18;;;14543:57;14617:18;;50754:60:0::1;14290:351:1::0;50754:60:0::1;46422:4;50852:13;:11;:13::i;:::-;50834:31;::::0;:15;:31:::1;:::i;:::-;50833:46;;50825:80;;;::::0;-1:-1:-1;;;50825:80:0;;14848:2:1;50825:80:0::1;::::0;::::1;14830:21:1::0;14887:2;14867:18;;;14860:30;-1:-1:-1;;;14906:18:1;;;14899:52;14968:18;;50825:80:0::1;14646:346:1::0;50825:80:0::1;50923:9;50918:192;50942:15;50938:1;:19;50918:192;;;50980:18;:6;8110:19:::0;;8128:1;8110:19;;;8021:127;50980:18:::1;51015:17;51035:16;:6;7991:14:::0;;7899:114;51035:16:::1;51015:36;;51066:32;51076:10;51088:9;51066;:32::i;:::-;-1:-1:-1::0;50959:4:0::1;50962:1;50959:4:::0;::::1;:::i;:::-;;;50918:192;;42505:174:::0;42580:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42580:29:0;-1:-1:-1;;;;;42580:29:0;;;;;;;;:24;;42634:23;42580:24;42634:14;:23::i;:::-;-1:-1:-1;;;;;42625:46:0;;;;;;;;;;;42505:174;;:::o;38653:348::-;38746:4;38448:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38448:16:0;38763:73;;;;-1:-1:-1;;;38763:73:0;;15199:2:1;38763:73:0;;;15181:21:1;15238:2;15218:18;;;15211:30;15277:34;15257:18;;;15250:62;-1:-1:-1;;;15328:18:1;;;15321:42;15380:19;;38763:73:0;14997:408:1;38763:73:0;38847:13;38863:23;38878:7;38863:14;:23::i;:::-;38847:39;;38916:5;-1:-1:-1;;;;;38905:16:0;:7;-1:-1:-1;;;;;38905:16:0;;:51;;;;38949:7;-1:-1:-1;;;;;38925:31:0;:20;38937:7;38925:11;:20::i;:::-;-1:-1:-1;;;;;38925:31:0;;38905:51;:87;;;-1:-1:-1;;;;;;35745:25:0;;;35721:4;35745:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38960:32;38897:96;38653:348;-1:-1:-1;;;;38653:348:0:o;41762:625::-;41921:4;-1:-1:-1;;;;;41894:31:0;:23;41909:7;41894:14;:23::i;:::-;-1:-1:-1;;;;;41894:31:0;;41886:81;;;;-1:-1:-1;;;41886:81:0;;15612:2:1;41886:81:0;;;15594:21:1;15651:2;15631:18;;;15624:30;15690:34;15670:18;;;15663:62;-1:-1:-1;;;15741:18:1;;;15734:35;15786:19;;41886:81:0;15410:401:1;41886:81:0;-1:-1:-1;;;;;41986:16:0;;41978:65;;;;-1:-1:-1;;;41978:65:0;;16018:2:1;41978:65:0;;;16000:21:1;16057:2;16037:18;;;16030:30;16096:34;16076:18;;;16069:62;-1:-1:-1;;;16147:18:1;;;16140:34;16191:19;;41978:65:0;15816:400:1;41978:65:0;42160:29;42177:1;42181:7;42160:8;:29::i;:::-;-1:-1:-1;;;;;42202:15:0;;;;;;:9;:15;;;;;:20;;42221:1;;42202:15;:20;;42221:1;;42202:20;:::i;:::-;;;;-1:-1:-1;;;;;;;42233:13:0;;;;;;:9;:13;;;;;:18;;42250:1;;42233:13;:18;;42250:1;;42233:18;:::i;:::-;;;;-1:-1:-1;;42262:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42262:21:0;-1:-1:-1;;;;;42262:21:0;;;;;;;;;42301:27;;42262:16;;42301:27;;;;;;;34698:341;34628:411;;:::o;13841:191::-;13934:6;;;-1:-1:-1;;;;;13951:17:0;;;-1:-1:-1;;;;;;13951:17:0;;;;;;;13984:40;;13934:6;;;13951:17;13934:6;;13984:40;;13915:16;;13984:40;13904:128;13841:191;:::o;42821:315::-;42976:8;-1:-1:-1;;;;;42967:17:0;:5;-1:-1:-1;;;;;42967:17:0;;;42959:55;;;;-1:-1:-1;;;42959:55:0;;16553:2:1;42959:55:0;;;16535:21:1;16592:2;16572:18;;;16565:30;16631:27;16611:18;;;16604:55;16676:18;;42959:55:0;16351:349:1;42959:55:0;-1:-1:-1;;;;;43025:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;43025:46:0;;;;;;;;;;43087:41;;540::1;;;43087::0;;513:18:1;43087:41:0;;;;;;;42821:315;;;:::o;47317:305::-;47400:7;47479:1;47455:21;47465:10;47455:9;:21::i;:::-;:25;47451:164;;;47504:23;47512:15;46465:10;47504:23;:::i;47451:164::-;47576:26;46564:1;47576:15;:26;:::i;:::-;47567:36;;46465:10;47567:36;:::i;47451:164::-;47317:305;;;:::o;39343:110::-;39419:26;39429:2;39433:7;39419:26;;;;;;;;;;;;:9;:26::i;37731:315::-;37888:28;37898:4;37904:2;37908:7;37888:9;:28::i;:::-;37935:48;37958:4;37964:2;37968:7;37977:5;37935:22;:48::i;:::-;37927:111;;;;-1:-1:-1;;;37927:111:0;;;;;;;:::i;47121:108::-;47181:13;47214:7;47207:14;;;;;:::i;8857:723::-;8913:13;9134:10;9130:53;;-1:-1:-1;;9161:10:0;;;;;;;;;;;;-1:-1:-1;;;9161:10:0;;;;;8857:723::o;9130:53::-;9208:5;9193:12;9249:78;9256:9;;9249:78;;9282:8;;;;:::i;:::-;;-1:-1:-1;9305:10:0;;-1:-1:-1;9313:2:0;9305:10;;:::i;:::-;;;9249:78;;;9337:19;9369:6;9359:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9359:17:0;;9337:39;;9387:154;9394:10;;9387:154;;9421:11;9431:1;9421:11;;:::i;:::-;;-1:-1:-1;9490:10:0;9498:2;9490:5;:10;:::i;:::-;9477:24;;:2;:24;:::i;:::-;9464:39;;9447:6;9454;9447:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9447:56:0;;;;;;;;-1:-1:-1;9518:11:0;9527:2;9518:11;;:::i;:::-;;;9387:154;;39680:321;39810:18;39816:2;39820:7;39810:5;:18::i;:::-;39861:54;39892:1;39896:2;39900:7;39909:5;39861:22;:54::i;:::-;39839:154;;;;-1:-1:-1;;;39839:154:0;;;;;;;:::i;43701:799::-;43856:4;-1:-1:-1;;;;;43877:13:0;;15567:19;:23;43873:620;;43913:72;;-1:-1:-1;;;43913:72:0;;-1:-1:-1;;;;;43913:36:0;;;;;:72;;11375:10;;43964:4;;43970:7;;43979:5;;43913:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43913:72:0;;;;;;;;-1:-1:-1;;43913:72:0;;;;;;;;;;;;:::i;:::-;;;43909:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44155:13:0;;44151:272;;44198:60;;-1:-1:-1;;;44198:60:0;;;;;;;:::i;44151:272::-;44373:6;44367:13;44358:6;44354:2;44350:15;44343:38;43909:529;-1:-1:-1;;;;;;44036:51:0;-1:-1:-1;;;44036:51:0;;-1:-1:-1;44029:58:0;;43873:620;-1:-1:-1;44477:4:0;43701:799;;;;;;:::o;40337:439::-;-1:-1:-1;;;;;40417:16:0;;40409:61;;;;-1:-1:-1;;;40409:61:0;;18621:2:1;40409:61:0;;;18603:21:1;;;18640:18;;;18633:30;18699:34;18679:18;;;18672:62;18751:18;;40409:61:0;18419:356:1;40409:61:0;38424:4;38448:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38448:16:0;:30;40481:58;;;;-1:-1:-1;;;40481:58:0;;18982:2:1;40481:58:0;;;18964:21:1;19021:2;19001:18;;;18994:30;19060;19040:18;;;19033:58;19108:18;;40481:58:0;18780:352:1;40481:58:0;-1:-1:-1;;;;;40610:13:0;;;;;;:9;:13;;;;;:18;;40627:1;;40610:13;:18;;40627:1;;40610:18;:::i;:::-;;;;-1:-1:-1;;40639:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40639:21:0;-1:-1:-1;;;;;40639:21:0;;;;;;;;40678:33;;40639:16;;;40678:33;;40639:16;;40678:33;50547:21:::1;50472:104:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1914:254;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:632::-;3050:2;3102:21;;;3172:13;;3075:18;;;3194:22;;;3021:4;;3050:2;3273:15;;;;3247:2;3232:18;;;3021:4;3316:169;3330:6;3327:1;3324:13;3316:169;;;3391:13;;3379:26;;3460:15;;;;3425:12;;;;3352:1;3345:9;3316:169;;;-1:-1:-1;3502:3:1;;2879:632;-1:-1:-1;;;;;;2879:632:1:o;3516:127::-;3577:10;3572:3;3568:20;3565:1;3558:31;3608:4;3605:1;3598:15;3632:4;3629:1;3622:15;3648:632;3713:5;3743:18;3784:2;3776:6;3773:14;3770:40;;;3790:18;;:::i;:::-;3865:2;3859:9;3833:2;3919:15;;-1:-1:-1;;3915:24:1;;;3941:2;3911:33;3907:42;3895:55;;;3965:18;;;3985:22;;;3962:46;3959:72;;;4011:18;;:::i;:::-;4051:10;4047:2;4040:22;4080:6;4071:15;;4110:6;4102;4095:22;4150:3;4141:6;4136:3;4132:16;4129:25;4126:45;;;4167:1;4164;4157:12;4126:45;4217:6;4212:3;4205:4;4197:6;4193:17;4180:44;4272:1;4265:4;4256:6;4248;4244:19;4240:30;4233:41;;;;3648:632;;;;;:::o;4285:451::-;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:52;;;4423:1;4420;4413:12;4375:52;4463:9;4450:23;4496:18;4488:6;4485:30;4482:50;;;4528:1;4525;4518:12;4482:50;4551:22;;4604:4;4596:13;;4592:27;-1:-1:-1;4582:55:1;;4633:1;4630;4623:12;4582:55;4656:74;4722:7;4717:2;4704:16;4699:2;4695;4691:11;4656:74;:::i;4741:160::-;4806:20;;4862:13;;4855:21;4845:32;;4835:60;;4891:1;4888;4881:12;4906:180;4962:6;5015:2;5003:9;4994:7;4990:23;4986:32;4983:52;;;5031:1;5028;5021:12;4983:52;5054:26;5070:9;5054:26;:::i;5314:254::-;5379:6;5387;5440:2;5428:9;5419:7;5415:23;5411:32;5408:52;;;5456:1;5453;5446:12;5408:52;5479:29;5498:9;5479:29;:::i;:::-;5469:39;;5527:35;5558:2;5547:9;5543:18;5527:35;:::i;:::-;5517:45;;5314:254;;;;;:::o;5573:667::-;5668:6;5676;5684;5692;5745:3;5733:9;5724:7;5720:23;5716:33;5713:53;;;5762:1;5759;5752:12;5713:53;5785:29;5804:9;5785:29;:::i;:::-;5775:39;;5833:38;5867:2;5856:9;5852:18;5833:38;:::i;:::-;5823:48;;5918:2;5907:9;5903:18;5890:32;5880:42;;5973:2;5962:9;5958:18;5945:32;6000:18;5992:6;5989:30;5986:50;;;6032:1;6029;6022:12;5986:50;6055:22;;6108:4;6100:13;;6096:27;-1:-1:-1;6086:55:1;;6137:1;6134;6127:12;6086:55;6160:74;6226:7;6221:2;6208:16;6203:2;6199;6195:11;6160:74;:::i;:::-;6150:84;;;5573:667;;;;;;;:::o;6245:260::-;6313:6;6321;6374:2;6362:9;6353:7;6349:23;6345:32;6342:52;;;6390:1;6387;6380:12;6342:52;6413:29;6432:9;6413:29;:::i;:::-;6403:39;;6461:38;6495:2;6484:9;6480:18;6461:38;:::i;6510:380::-;6589:1;6585:12;;;;6632;;;6653:61;;6707:4;6699:6;6695:17;6685:27;;6653:61;6760:2;6752:6;6749:14;6729:18;6726:38;6723:161;;;6806:10;6801:3;6797:20;6794:1;6787:31;6841:4;6838:1;6831:15;6869:4;6866:1;6859:15;6723:161;;6510:380;;;:::o;8135:413::-;8337:2;8319:21;;;8376:2;8356:18;;;8349:30;8415:34;8410:2;8395:18;;8388:62;-1:-1:-1;;;8481:2:1;8466:18;;8459:47;8538:3;8523:19;;8135:413::o;8553:127::-;8614:10;8609:3;8605:20;8602:1;8595:31;8645:4;8642:1;8635:15;8669:4;8666:1;8659:15;8685:127;8746:10;8741:3;8737:20;8734:1;8727:31;8777:4;8774:1;8767:15;8801:4;8798:1;8791:15;8817:135;8856:3;-1:-1:-1;;8877:17:1;;8874:43;;;8897:18;;:::i;:::-;-1:-1:-1;8944:1:1;8933:13;;8817:135::o;8957:356::-;9159:2;9141:21;;;9178:18;;;9171:30;9237:34;9232:2;9217:18;;9210:62;9304:2;9289:18;;8957:356::o;11539:128::-;11579:3;11610:1;11606:6;11603:1;11600:13;11597:39;;;11616:18;;:::i;:::-;-1:-1:-1;11652:9:1;;11539:128::o;13214:664::-;13441:3;13479:6;13473:13;13495:53;13541:6;13536:3;13529:4;13521:6;13517:17;13495:53;:::i;:::-;13611:13;;13570:16;;;;13633:57;13611:13;13570:16;13667:4;13655:17;;13633:57;:::i;:::-;13757:13;;13712:20;;;13779:57;13757:13;13712:20;13813:4;13801:17;;13779:57;:::i;:::-;13852:20;;13214:664;-1:-1:-1;;;;;13214:664:1:o;16221:125::-;16261:4;16289:1;16286;16283:8;16280:34;;;16294:18;;:::i;:::-;-1:-1:-1;16331:9:1;;16221:125::o;16705:168::-;16745:7;16811:1;16807;16803:6;16799:14;16796:1;16793:21;16788:1;16781:9;16774:17;16770:45;16767:71;;;16818:18;;:::i;:::-;-1:-1:-1;16858:9:1;;16705:168::o;16878:414::-;17080:2;17062:21;;;17119:2;17099:18;;;17092:30;17158:34;17153:2;17138:18;;17131:62;-1:-1:-1;;;17224:2:1;17209:18;;17202:48;17282:3;17267:19;;16878:414::o;17297:127::-;17358:10;17353:3;17349:20;17346:1;17339:31;17389:4;17386:1;17379:15;17413:4;17410:1;17403:15;17429:120;17469:1;17495;17485:35;;17500:18;;:::i;:::-;-1:-1:-1;17534:9:1;;17429:120::o;17554:112::-;17586:1;17612;17602:35;;17617:18;;:::i;:::-;-1:-1:-1;17651:9:1;;17554:112::o;17671:489::-;-1:-1:-1;;;;;17940:15:1;;;17922:34;;17992:15;;17987:2;17972:18;;17965:43;18039:2;18024:18;;18017:34;;;18087:3;18082:2;18067:18;;18060:31;;;17865:4;;18108:46;;18134:19;;18126:6;18108:46;:::i;:::-;18100:54;17671:489;-1:-1:-1;;;;;;17671:489:1:o;18165:249::-;18234:6;18287:2;18275:9;18266:7;18262:23;18258:32;18255:52;;;18303:1;18300;18293:12;18255:52;18335:9;18329:16;18354:30;18378:5;18354:30;:::i
Swarm Source
ipfs://c5ff07efc71b92cf4976a6f3305e2412f6846f241e02816f560dbeab66220a4b
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.