ERC-721
Overview
Max Total Supply
908 BLNKRF
Holders
130
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 BLNKRFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BlinkRaffle
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-09 */ // 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: contracts/IERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs // This file has been adapted by The Blinkless to support Passive Viral Minting // www.theblinkless.com pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: contracts/ERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs // This file has been adapted by The Blinkless to support Passive Viral Minting // www.theblinkless.com pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; string public metadataPath; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection 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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, Strings.toString(tokenId),'.json')) : ''; } /** * @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 metadataPath; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/IERC721ABurnable.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721ABurnable. */ interface IERC721ABurnable is IERC721A { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) external; } // File: contracts/ERC721ABurnable.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721ABurnable. * * @dev ERC721A token that can be irreversibly burned (destroyed). */ abstract contract ERC721ABurnable is ERC721A, IERC721ABurnable { /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual override { _burn(tokenId, true); } } // File: contracts/BlinkRaffle.sol // creators: The Blinkless // DISCLAIMER: This file is provided for educational purposes only // and The Blinkless is not liable for its use or misuse. pragma solidity ^0.8.4; contract BlinkRaffle is ERC721ABurnable, Ownable { bool public currentlyMinting = false; uint256 public maxSupply = 5000; uint256 public mintPrice = 0.005 ether; address payoutWallet = 0xeD2faa60373eC70E57B39152aeE5Ce4ed7C333c7; //wallet for payouts constructor(string memory _metadataPath) ERC721A("Blink Raffle", "BLNKRF") { //mint initial token to owner _mint(msg.sender, 1); //set path to metadata metadataPath = _metadataPath; } /* * Ensures the caller is not a proxy contract or bot, but is an actual wallet. */ modifier callerIsUser() { //we only want to mint to real people require(tx.origin == msg.sender, "The caller is another contract"); _; } /** * Mint a token */ function mint(uint256 amount) external payable callerIsUser{ require(amount <= 10, "Max 10 per transaction"); require(currentlyMinting == true, "Minting disabled."); require(totalSupply() + amount < maxSupply, "Max supply reached."); require(msg.value >= (mintPrice * amount), "Not enough funds to mint."); //mint the token _mint(msg.sender, amount); } /** * Update the base URI for metadata */ function updateBaseURI(string memory baseURI) external onlyOwner{ metadataPath = baseURI; } /** * Update Price to mint */ function updateMintPrice(uint256 _mintPrice) external onlyOwner{ mintPrice = _mintPrice; } /** * Update mint status */ function updateCurrentlyMinting(bool _currentlyMinting) external onlyOwner{ currentlyMinting = _currentlyMinting; } /** * Update the payout wallet address */ function updatePayoutWallet(address _payoutWallet) public onlyOwner{ payoutWallet = _payoutWallet; } /** * Update max supply */ function updateMaxSupply(uint256 _maxSupply) public onlyOwner{ maxSupply = _maxSupply; } /* * Withdraw by owner */ function withdraw() external onlyOwner { (bool success, ) = payable(payoutWallet).call{value: address(this).balance}(""); require(success, "Transfer failed."); } /* * These are here to receive ETH sent to the contract address */ receive() external payable {} fallback() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_metadataPath","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentlyMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataPath","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"string","name":"baseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_currentlyMinting","type":"bool"}],"name":"updateCurrentlyMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"updateMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_payoutWallet","type":"address"}],"name":"updatePayoutWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526000600960146101000a81548160ff021916908315150217905550611388600a556611c37937e08000600b5573ed2faa60373ec70e57b39152aee5ce4ed7c333c7600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200009257600080fd5b50604051620038c3380380620038c38339818101604052810190620000b891906200062b565b6040518060400160405280600c81526020017f426c696e6b20526166666c6500000000000000000000000000000000000000008152506040518060400160405280600681526020017f424c4e4b5246000000000000000000000000000000000000000000000000000081525081600290805190602001906200013c929190620004fd565b50806003908051906020019062000155929190620004fd565b5062000166620001c160201b60201c565b60008190555050506200018e62000182620001c660201b60201c565b620001ce60201b60201c565b620001a13360016200029460201b60201c565b8060049080519060200190620001b9929190620004fd565b505062000800565b600090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805490506000821415620002d6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002eb60008483856200047d60201b60201c565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200037a836200035c60008660006200048360201b60201c565b6200036d85620004b360201b60201c565b17620004c360201b60201c565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200041d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050620003e0565b5060008214156200045a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620004786000848385620004ee60201b60201c565b505050565b50505050565b60008060e883901c905060e8620004a2868684620004f460201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60009392505050565b8280546200050b9062000711565b90600052602060002090601f0160209004810192826200052f57600085556200057b565b82601f106200054a57805160ff19168380011785556200057b565b828001600101855582156200057b579182015b828111156200057a5782518255916020019190600101906200055d565b5b5090506200058a91906200058e565b5090565b5b80821115620005a95760008160009055506001016200058f565b5090565b6000620005c4620005be84620006a5565b6200067c565b905082815260208101848484011115620005e357620005e2620007e0565b5b620005f0848285620006db565b509392505050565b600082601f83011262000610576200060f620007db565b5b815162000622848260208601620005ad565b91505092915050565b600060208284031215620006445762000643620007ea565b5b600082015167ffffffffffffffff811115620006655762000664620007e5565b5b6200067384828501620005f8565b91505092915050565b6000620006886200069b565b905062000696828262000747565b919050565b6000604051905090565b600067ffffffffffffffff821115620006c357620006c2620007ac565b5b620006ce82620007ef565b9050602081019050919050565b60005b83811015620006fb578082015181840152602081019050620006de565b838111156200070b576000848401525b50505050565b600060028204905060018216806200072a57607f821691505b602082108114156200074157620007406200077d565b5b50919050565b6200075282620007ef565b810181811067ffffffffffffffff82111715620007745762000773620007ac565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6130b380620008106000396000f3fe6080604052600436106101c55760003560e01c80636817c76c116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c514610610578063f103b4331461064d578063f2fde38b14610676578063fb28a5401461069f576101cc565b8063a22cb46514610556578063b88d4fde1461057f578063c87b56dd146105a8578063d5abeb01146105e5576101cc565b80638da5cb5b116100d15780638da5cb5b146104bb578063931688cb146104e657806395d89b411461050f578063a0712d681461053a576101cc565b80636817c76c1461043c57806370a0823114610467578063715018a6146104a4576101cc565b80633ccfd60b1161016457806347230c591161013e57806347230c59146103825780635c3d25ca146103ad5780636352211e146103d65780636744ff5414610413576101cc565b80633ccfd60b1461031957806342842e0e1461033057806342966c6814610359576101cc565b8063081812fc116101a0578063081812fc1461025f578063095ea7b31461029c57806318160ddd146102c557806323b872dd146102f0576101cc565b8062728e46146101ce57806301ffc9a7146101f757806306fdde0314610234576101cc565b366101cc57005b005b3480156101da57600080fd5b506101f560048036038101906101f0919061259c565b6106ca565b005b34801561020357600080fd5b5061021e600480360381019061021991906124f9565b6106dc565b60405161022b91906128a2565b60405180910390f35b34801561024057600080fd5b5061024961076e565b60405161025691906128bd565b60405180910390f35b34801561026b57600080fd5b506102866004803603810190610281919061259c565b610800565b604051610293919061283b565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be919061248c565b61087f565b005b3480156102d157600080fd5b506102da6109c3565b6040516102e791906129df565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190612376565b6109da565b005b34801561032557600080fd5b5061032e610cff565b005b34801561033c57600080fd5b5061035760048036038101906103529190612376565b610dd8565b005b34801561036557600080fd5b50610380600480360381019061037b919061259c565b610df8565b005b34801561038e57600080fd5b50610397610e06565b6040516103a491906128a2565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190612309565b610e19565b005b3480156103e257600080fd5b506103fd60048036038101906103f8919061259c565b610e65565b60405161040a919061283b565b60405180910390f35b34801561041f57600080fd5b5061043a600480360381019061043591906124cc565b610e77565b005b34801561044857600080fd5b50610451610e9c565b60405161045e91906129df565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190612309565b610ea2565b60405161049b91906129df565b60405180910390f35b3480156104b057600080fd5b506104b9610f5b565b005b3480156104c757600080fd5b506104d0610f6f565b6040516104dd919061283b565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190612553565b610f99565b005b34801561051b57600080fd5b50610524610fbb565b60405161053191906128bd565b60405180910390f35b610554600480360381019061054f919061259c565b61104d565b005b34801561056257600080fd5b5061057d6004803603810190610578919061244c565b611208565b005b34801561058b57600080fd5b506105a660048036038101906105a191906123c9565b611380565b005b3480156105b457600080fd5b506105cf60048036038101906105ca919061259c565b6113f3565b6040516105dc91906128bd565b60405180910390f35b3480156105f157600080fd5b506105fa611492565b60405161060791906129df565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190612336565b611498565b60405161064491906128a2565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f919061259c565b61152c565b005b34801561068257600080fd5b5061069d60048036038101906106989190612309565b61153e565b005b3480156106ab57600080fd5b506106b46115c2565b6040516106c191906128bd565b60405180910390f35b6106d2611650565b80600b8190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107675750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077d90612c9a565b80601f01602080910402602001604051908101604052809291908181526020018280546107a990612c9a565b80156107f65780601f106107cb576101008083540402835291602001916107f6565b820191906000526020600020905b8154815290600101906020018083116107d957829003601f168201915b5050505050905090565b600061080b826116ce565b610841576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088a82610e65565b90508073ffffffffffffffffffffffffffffffffffffffff166108ab61172d565b73ffffffffffffffffffffffffffffffffffffffff161461090e576108d7816108d261172d565b611498565b61090d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109cd611735565b6001546000540303905090565b60006109e58261173a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a4c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a5884611808565b91509150610a6e8187610a6961172d565b61182f565b610aba57610a8386610a7e61172d565b611498565b610ab9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b21576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2e8686866001611873565b8015610b3957600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c0785610be3888887611879565b7c0200000000000000000000000000000000000000000000000000000000176118a1565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c8f576000600185019050600060056000838152602001908152602001600020541415610c8d576000548114610c8c578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cf786868660016118cc565b505050505050565b610d07611650565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610d4f90612826565b60006040518083038185875af1925050503d8060008114610d8c576040519150601f19603f3d011682016040523d82523d6000602084013e610d91565b606091505b5050905080610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc906129bf565b60405180910390fd5b50565b610df383838360405180602001604052806000815250611380565b505050565b610e038160016118d2565b50565b600960149054906101000a900460ff1681565b610e21611650565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610e708261173a565b9050919050565b610e7f611650565b80600960146101000a81548160ff02191690831515021790555050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f0a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f63611650565b610f6d6000611b26565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fa1611650565b8060049080519060200190610fb792919061211d565b5050565b606060038054610fca90612c9a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff690612c9a565b80156110435780601f1061101857610100808354040283529160200191611043565b820191906000526020600020905b81548152906001019060200180831161102657829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b2906128ff565b60405180910390fd5b600a8111156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f69061295f565b60405180910390fd5b60011515600960149054906101000a900460ff16151514611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c9061297f565b60405180910390fd5b600a54816111616109c3565b61116b9190612acf565b106111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a29061293f565b60405180910390fd5b80600b546111b99190612b56565b3410156111fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f29061299f565b60405180910390fd5b6112053382611bec565b50565b61121061172d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611275576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061128261172d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661132f61172d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137491906128a2565b60405180910390a35050565b61138b8484846109da565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113ed576113b684848484611da9565b6113ec576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113fe826116ce565b611434576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061143e611f09565b905060008151141561145f576040518060200160405280600081525061148a565b8061146984611f9b565b60405160200161147a9291906127f7565b6040516020818303038152906040525b915050919050565b600a5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611534611650565b80600a8190555050565b611546611650565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad906128df565b60405180910390fd5b6115bf81611b26565b50565b600480546115cf90612c9a565b80601f01602080910402602001604051908101604052809291908181526020018280546115fb90612c9a565b80156116485780601f1061161d57610100808354040283529160200191611648565b820191906000526020600020905b81548152906001019060200180831161162b57829003601f168201915b505050505081565b6116586120fc565b73ffffffffffffffffffffffffffffffffffffffff16611676610f6f565b73ffffffffffffffffffffffffffffffffffffffff16146116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c39061291f565b60405180910390fd5b565b6000816116d9611735565b111580156116e8575060005482105b8015611726575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611749611735565b116117d1576000548110156117d05760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117ce575b60008114156117c4576005600083600190039350838152602001908152602001600020549050611799565b8092505050611803565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611890868684612104565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006118dd8361173a565b905060008190506000806118f086611808565b9150915084156119595761190c818461190761172d565b61182f565b611958576119218361191c61172d565b611498565b611957576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611967836000886001611873565b801561197257600082555b600160806001901b03600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611a1a836119d785600088611879565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176118a1565b600560008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415611aa2576000600187019050600060056000838152602001908152602001600020541415611aa0576000548114611a9f578460056000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b0c8360008860016118cc565b600160008154809291906001019190505550505050505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805490506000821415611c2d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c3a6000848385611873565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611cb183611ca26000866000611879565b611cab8561210d565b176118a1565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611d5257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d17565b506000821415611d8e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611da460008483856118cc565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dcf61172d565b8786866040518563ffffffff1660e01b8152600401611df19493929190612856565b602060405180830381600087803b158015611e0b57600080fd5b505af1925050508015611e3c57506040513d601f19601f82011682018060405250810190611e399190612526565b60015b611eb6573d8060008114611e6c576040519150601f19603f3d011682016040523d82523d6000602084013e611e71565b606091505b50600081511415611eae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060048054611f1890612c9a565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4490612c9a565b8015611f915780601f10611f6657610100808354040283529160200191611f91565b820191906000526020600020905b815481529060010190602001808311611f7457829003601f168201915b5050505050905090565b60606000821415611fe3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120f7565b600082905060005b60008214612015578080611ffe90612cfd565b915050600a8261200e9190612b25565b9150611feb565b60008167ffffffffffffffff81111561203157612030612e33565b5b6040519080825280601f01601f1916602001820160405280156120635781602001600182028036833780820191505090505b5090505b600085146120f05760018261207c9190612bb0565b9150600a8561208b9190612d46565b60306120979190612acf565b60f81b8183815181106120ad576120ac612e04565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120e99190612b25565b9450612067565b8093505050505b919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b82805461212990612c9a565b90600052602060002090601f01602090048101928261214b5760008555612192565b82601f1061216457805160ff1916838001178555612192565b82800160010185558215612192579182015b82811115612191578251825591602001919060010190612176565b5b50905061219f91906121a3565b5090565b5b808211156121bc5760008160009055506001016121a4565b5090565b60006121d36121ce84612a1f565b6129fa565b9050828152602081018484840111156121ef576121ee612e67565b5b6121fa848285612c58565b509392505050565b600061221561221084612a50565b6129fa565b90508281526020810184848401111561223157612230612e67565b5b61223c848285612c58565b509392505050565b60008135905061225381613021565b92915050565b60008135905061226881613038565b92915050565b60008135905061227d8161304f565b92915050565b6000815190506122928161304f565b92915050565b600082601f8301126122ad576122ac612e62565b5b81356122bd8482602086016121c0565b91505092915050565b600082601f8301126122db576122da612e62565b5b81356122eb848260208601612202565b91505092915050565b60008135905061230381613066565b92915050565b60006020828403121561231f5761231e612e71565b5b600061232d84828501612244565b91505092915050565b6000806040838503121561234d5761234c612e71565b5b600061235b85828601612244565b925050602061236c85828601612244565b9150509250929050565b60008060006060848603121561238f5761238e612e71565b5b600061239d86828701612244565b93505060206123ae86828701612244565b92505060406123bf868287016122f4565b9150509250925092565b600080600080608085870312156123e3576123e2612e71565b5b60006123f187828801612244565b945050602061240287828801612244565b9350506040612413878288016122f4565b925050606085013567ffffffffffffffff81111561243457612433612e6c565b5b61244087828801612298565b91505092959194509250565b6000806040838503121561246357612462612e71565b5b600061247185828601612244565b925050602061248285828601612259565b9150509250929050565b600080604083850312156124a3576124a2612e71565b5b60006124b185828601612244565b92505060206124c2858286016122f4565b9150509250929050565b6000602082840312156124e2576124e1612e71565b5b60006124f084828501612259565b91505092915050565b60006020828403121561250f5761250e612e71565b5b600061251d8482850161226e565b91505092915050565b60006020828403121561253c5761253b612e71565b5b600061254a84828501612283565b91505092915050565b60006020828403121561256957612568612e71565b5b600082013567ffffffffffffffff81111561258757612586612e6c565b5b612593848285016122c6565b91505092915050565b6000602082840312156125b2576125b1612e71565b5b60006125c0848285016122f4565b91505092915050565b6125d281612be4565b82525050565b6125e181612bf6565b82525050565b60006125f282612a81565b6125fc8185612a97565b935061260c818560208601612c67565b61261581612e76565b840191505092915050565b600061262b82612a8c565b6126358185612ab3565b9350612645818560208601612c67565b61264e81612e76565b840191505092915050565b600061266482612a8c565b61266e8185612ac4565b935061267e818560208601612c67565b80840191505092915050565b6000612697602683612ab3565b91506126a282612e87565b604082019050919050565b60006126ba601e83612ab3565b91506126c582612ed6565b602082019050919050565b60006126dd600583612ac4565b91506126e882612eff565b600582019050919050565b6000612700602083612ab3565b915061270b82612f28565b602082019050919050565b6000612723601383612ab3565b915061272e82612f51565b602082019050919050565b6000612746601683612ab3565b915061275182612f7a565b602082019050919050565b6000612769601183612ab3565b915061277482612fa3565b602082019050919050565b600061278c601983612ab3565b915061279782612fcc565b602082019050919050565b60006127af600083612aa8565b91506127ba82612ff5565b600082019050919050565b60006127d2601083612ab3565b91506127dd82612ff8565b602082019050919050565b6127f181612c4e565b82525050565b60006128038285612659565b915061280f8284612659565b915061281a826126d0565b91508190509392505050565b6000612831826127a2565b9150819050919050565b600060208201905061285060008301846125c9565b92915050565b600060808201905061286b60008301876125c9565b61287860208301866125c9565b61288560408301856127e8565b818103606083015261289781846125e7565b905095945050505050565b60006020820190506128b760008301846125d8565b92915050565b600060208201905081810360008301526128d78184612620565b905092915050565b600060208201905081810360008301526128f88161268a565b9050919050565b60006020820190508181036000830152612918816126ad565b9050919050565b60006020820190508181036000830152612938816126f3565b9050919050565b6000602082019050818103600083015261295881612716565b9050919050565b6000602082019050818103600083015261297881612739565b9050919050565b600060208201905081810360008301526129988161275c565b9050919050565b600060208201905081810360008301526129b88161277f565b9050919050565b600060208201905081810360008301526129d8816127c5565b9050919050565b60006020820190506129f460008301846127e8565b92915050565b6000612a04612a15565b9050612a108282612ccc565b919050565b6000604051905090565b600067ffffffffffffffff821115612a3a57612a39612e33565b5b612a4382612e76565b9050602081019050919050565b600067ffffffffffffffff821115612a6b57612a6a612e33565b5b612a7482612e76565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ada82612c4e565b9150612ae583612c4e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b1a57612b19612d77565b5b828201905092915050565b6000612b3082612c4e565b9150612b3b83612c4e565b925082612b4b57612b4a612da6565b5b828204905092915050565b6000612b6182612c4e565b9150612b6c83612c4e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ba557612ba4612d77565b5b828202905092915050565b6000612bbb82612c4e565b9150612bc683612c4e565b925082821015612bd957612bd8612d77565b5b828203905092915050565b6000612bef82612c2e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c85578082015181840152602081019050612c6a565b83811115612c94576000848401525b50505050565b60006002820490506001821680612cb257607f821691505b60208210811415612cc657612cc5612dd5565b5b50919050565b612cd582612e76565b810181811067ffffffffffffffff82111715612cf457612cf3612e33565b5b80604052505050565b6000612d0882612c4e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d3b57612d3a612d77565b5b600182019050919050565b6000612d5182612c4e565b9150612d5c83612c4e565b925082612d6c57612d6b612da6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d617820737570706c7920726561636865642e00000000000000000000000000600082015250565b7f4d617820313020706572207472616e73616374696f6e00000000000000000000600082015250565b7f4d696e74696e672064697361626c65642e000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682066756e647320746f206d696e742e00000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b61302a81612be4565b811461303557600080fd5b50565b61304181612bf6565b811461304c57600080fd5b50565b61305881612c02565b811461306357600080fd5b50565b61306f81612c4e565b811461307a57600080fd5b5056fea264697066735822122048b5e71d237ef181d32658ebed18121c2f14f195134d6f3ff65a71155c6a297f64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f6170702e746865626c696e6b6c6573732e636f6d2f726166666c657469636b65742f00000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101c55760003560e01c80636817c76c116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c514610610578063f103b4331461064d578063f2fde38b14610676578063fb28a5401461069f576101cc565b8063a22cb46514610556578063b88d4fde1461057f578063c87b56dd146105a8578063d5abeb01146105e5576101cc565b80638da5cb5b116100d15780638da5cb5b146104bb578063931688cb146104e657806395d89b411461050f578063a0712d681461053a576101cc565b80636817c76c1461043c57806370a0823114610467578063715018a6146104a4576101cc565b80633ccfd60b1161016457806347230c591161013e57806347230c59146103825780635c3d25ca146103ad5780636352211e146103d65780636744ff5414610413576101cc565b80633ccfd60b1461031957806342842e0e1461033057806342966c6814610359576101cc565b8063081812fc116101a0578063081812fc1461025f578063095ea7b31461029c57806318160ddd146102c557806323b872dd146102f0576101cc565b8062728e46146101ce57806301ffc9a7146101f757806306fdde0314610234576101cc565b366101cc57005b005b3480156101da57600080fd5b506101f560048036038101906101f0919061259c565b6106ca565b005b34801561020357600080fd5b5061021e600480360381019061021991906124f9565b6106dc565b60405161022b91906128a2565b60405180910390f35b34801561024057600080fd5b5061024961076e565b60405161025691906128bd565b60405180910390f35b34801561026b57600080fd5b506102866004803603810190610281919061259c565b610800565b604051610293919061283b565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be919061248c565b61087f565b005b3480156102d157600080fd5b506102da6109c3565b6040516102e791906129df565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190612376565b6109da565b005b34801561032557600080fd5b5061032e610cff565b005b34801561033c57600080fd5b5061035760048036038101906103529190612376565b610dd8565b005b34801561036557600080fd5b50610380600480360381019061037b919061259c565b610df8565b005b34801561038e57600080fd5b50610397610e06565b6040516103a491906128a2565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190612309565b610e19565b005b3480156103e257600080fd5b506103fd60048036038101906103f8919061259c565b610e65565b60405161040a919061283b565b60405180910390f35b34801561041f57600080fd5b5061043a600480360381019061043591906124cc565b610e77565b005b34801561044857600080fd5b50610451610e9c565b60405161045e91906129df565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190612309565b610ea2565b60405161049b91906129df565b60405180910390f35b3480156104b057600080fd5b506104b9610f5b565b005b3480156104c757600080fd5b506104d0610f6f565b6040516104dd919061283b565b60405180910390f35b3480156104f257600080fd5b5061050d60048036038101906105089190612553565b610f99565b005b34801561051b57600080fd5b50610524610fbb565b60405161053191906128bd565b60405180910390f35b610554600480360381019061054f919061259c565b61104d565b005b34801561056257600080fd5b5061057d6004803603810190610578919061244c565b611208565b005b34801561058b57600080fd5b506105a660048036038101906105a191906123c9565b611380565b005b3480156105b457600080fd5b506105cf60048036038101906105ca919061259c565b6113f3565b6040516105dc91906128bd565b60405180910390f35b3480156105f157600080fd5b506105fa611492565b60405161060791906129df565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190612336565b611498565b60405161064491906128a2565b60405180910390f35b34801561065957600080fd5b50610674600480360381019061066f919061259c565b61152c565b005b34801561068257600080fd5b5061069d60048036038101906106989190612309565b61153e565b005b3480156106ab57600080fd5b506106b46115c2565b6040516106c191906128bd565b60405180910390f35b6106d2611650565b80600b8190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107675750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077d90612c9a565b80601f01602080910402602001604051908101604052809291908181526020018280546107a990612c9a565b80156107f65780601f106107cb576101008083540402835291602001916107f6565b820191906000526020600020905b8154815290600101906020018083116107d957829003601f168201915b5050505050905090565b600061080b826116ce565b610841576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088a82610e65565b90508073ffffffffffffffffffffffffffffffffffffffff166108ab61172d565b73ffffffffffffffffffffffffffffffffffffffff161461090e576108d7816108d261172d565b611498565b61090d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109cd611735565b6001546000540303905090565b60006109e58261173a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a4c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a5884611808565b91509150610a6e8187610a6961172d565b61182f565b610aba57610a8386610a7e61172d565b611498565b610ab9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b21576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2e8686866001611873565b8015610b3957600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c0785610be3888887611879565b7c0200000000000000000000000000000000000000000000000000000000176118a1565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c8f576000600185019050600060056000838152602001908152602001600020541415610c8d576000548114610c8c578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cf786868660016118cc565b505050505050565b610d07611650565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610d4f90612826565b60006040518083038185875af1925050503d8060008114610d8c576040519150601f19603f3d011682016040523d82523d6000602084013e610d91565b606091505b5050905080610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc906129bf565b60405180910390fd5b50565b610df383838360405180602001604052806000815250611380565b505050565b610e038160016118d2565b50565b600960149054906101000a900460ff1681565b610e21611650565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000610e708261173a565b9050919050565b610e7f611650565b80600960146101000a81548160ff02191690831515021790555050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f0a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f63611650565b610f6d6000611b26565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fa1611650565b8060049080519060200190610fb792919061211d565b5050565b606060038054610fca90612c9a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff690612c9a565b80156110435780601f1061101857610100808354040283529160200191611043565b820191906000526020600020905b81548152906001019060200180831161102657829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b2906128ff565b60405180910390fd5b600a8111156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f69061295f565b60405180910390fd5b60011515600960149054906101000a900460ff16151514611155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114c9061297f565b60405180910390fd5b600a54816111616109c3565b61116b9190612acf565b106111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a29061293f565b60405180910390fd5b80600b546111b99190612b56565b3410156111fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f29061299f565b60405180910390fd5b6112053382611bec565b50565b61121061172d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611275576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061128261172d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661132f61172d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137491906128a2565b60405180910390a35050565b61138b8484846109da565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113ed576113b684848484611da9565b6113ec576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113fe826116ce565b611434576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061143e611f09565b905060008151141561145f576040518060200160405280600081525061148a565b8061146984611f9b565b60405160200161147a9291906127f7565b6040516020818303038152906040525b915050919050565b600a5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611534611650565b80600a8190555050565b611546611650565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad906128df565b60405180910390fd5b6115bf81611b26565b50565b600480546115cf90612c9a565b80601f01602080910402602001604051908101604052809291908181526020018280546115fb90612c9a565b80156116485780601f1061161d57610100808354040283529160200191611648565b820191906000526020600020905b81548152906001019060200180831161162b57829003601f168201915b505050505081565b6116586120fc565b73ffffffffffffffffffffffffffffffffffffffff16611676610f6f565b73ffffffffffffffffffffffffffffffffffffffff16146116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c39061291f565b60405180910390fd5b565b6000816116d9611735565b111580156116e8575060005482105b8015611726575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611749611735565b116117d1576000548110156117d05760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117ce575b60008114156117c4576005600083600190039350838152602001908152602001600020549050611799565b8092505050611803565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611890868684612104565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006118dd8361173a565b905060008190506000806118f086611808565b9150915084156119595761190c818461190761172d565b61182f565b611958576119218361191c61172d565b611498565b611957576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611967836000886001611873565b801561197257600082555b600160806001901b03600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611a1a836119d785600088611879565b7c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000017176118a1565b600560008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415611aa2576000600187019050600060056000838152602001908152602001600020541415611aa0576000548114611a9f578460056000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b0c8360008860016118cc565b600160008154809291906001019190505550505050505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805490506000821415611c2d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c3a6000848385611873565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611cb183611ca26000866000611879565b611cab8561210d565b176118a1565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611d5257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d17565b506000821415611d8e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611da460008483856118cc565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dcf61172d565b8786866040518563ffffffff1660e01b8152600401611df19493929190612856565b602060405180830381600087803b158015611e0b57600080fd5b505af1925050508015611e3c57506040513d601f19601f82011682018060405250810190611e399190612526565b60015b611eb6573d8060008114611e6c576040519150601f19603f3d011682016040523d82523d6000602084013e611e71565b606091505b50600081511415611eae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060048054611f1890612c9a565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4490612c9a565b8015611f915780601f10611f6657610100808354040283529160200191611f91565b820191906000526020600020905b815481529060010190602001808311611f7457829003601f168201915b5050505050905090565b60606000821415611fe3576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120f7565b600082905060005b60008214612015578080611ffe90612cfd565b915050600a8261200e9190612b25565b9150611feb565b60008167ffffffffffffffff81111561203157612030612e33565b5b6040519080825280601f01601f1916602001820160405280156120635781602001600182028036833780820191505090505b5090505b600085146120f05760018261207c9190612bb0565b9150600a8561208b9190612d46565b60306120979190612acf565b60f81b8183815181106120ad576120ac612e04565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120e99190612b25565b9450612067565b8093505050505b919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b82805461212990612c9a565b90600052602060002090601f01602090048101928261214b5760008555612192565b82601f1061216457805160ff1916838001178555612192565b82800160010185558215612192579182015b82811115612191578251825591602001919060010190612176565b5b50905061219f91906121a3565b5090565b5b808211156121bc5760008160009055506001016121a4565b5090565b60006121d36121ce84612a1f565b6129fa565b9050828152602081018484840111156121ef576121ee612e67565b5b6121fa848285612c58565b509392505050565b600061221561221084612a50565b6129fa565b90508281526020810184848401111561223157612230612e67565b5b61223c848285612c58565b509392505050565b60008135905061225381613021565b92915050565b60008135905061226881613038565b92915050565b60008135905061227d8161304f565b92915050565b6000815190506122928161304f565b92915050565b600082601f8301126122ad576122ac612e62565b5b81356122bd8482602086016121c0565b91505092915050565b600082601f8301126122db576122da612e62565b5b81356122eb848260208601612202565b91505092915050565b60008135905061230381613066565b92915050565b60006020828403121561231f5761231e612e71565b5b600061232d84828501612244565b91505092915050565b6000806040838503121561234d5761234c612e71565b5b600061235b85828601612244565b925050602061236c85828601612244565b9150509250929050565b60008060006060848603121561238f5761238e612e71565b5b600061239d86828701612244565b93505060206123ae86828701612244565b92505060406123bf868287016122f4565b9150509250925092565b600080600080608085870312156123e3576123e2612e71565b5b60006123f187828801612244565b945050602061240287828801612244565b9350506040612413878288016122f4565b925050606085013567ffffffffffffffff81111561243457612433612e6c565b5b61244087828801612298565b91505092959194509250565b6000806040838503121561246357612462612e71565b5b600061247185828601612244565b925050602061248285828601612259565b9150509250929050565b600080604083850312156124a3576124a2612e71565b5b60006124b185828601612244565b92505060206124c2858286016122f4565b9150509250929050565b6000602082840312156124e2576124e1612e71565b5b60006124f084828501612259565b91505092915050565b60006020828403121561250f5761250e612e71565b5b600061251d8482850161226e565b91505092915050565b60006020828403121561253c5761253b612e71565b5b600061254a84828501612283565b91505092915050565b60006020828403121561256957612568612e71565b5b600082013567ffffffffffffffff81111561258757612586612e6c565b5b612593848285016122c6565b91505092915050565b6000602082840312156125b2576125b1612e71565b5b60006125c0848285016122f4565b91505092915050565b6125d281612be4565b82525050565b6125e181612bf6565b82525050565b60006125f282612a81565b6125fc8185612a97565b935061260c818560208601612c67565b61261581612e76565b840191505092915050565b600061262b82612a8c565b6126358185612ab3565b9350612645818560208601612c67565b61264e81612e76565b840191505092915050565b600061266482612a8c565b61266e8185612ac4565b935061267e818560208601612c67565b80840191505092915050565b6000612697602683612ab3565b91506126a282612e87565b604082019050919050565b60006126ba601e83612ab3565b91506126c582612ed6565b602082019050919050565b60006126dd600583612ac4565b91506126e882612eff565b600582019050919050565b6000612700602083612ab3565b915061270b82612f28565b602082019050919050565b6000612723601383612ab3565b915061272e82612f51565b602082019050919050565b6000612746601683612ab3565b915061275182612f7a565b602082019050919050565b6000612769601183612ab3565b915061277482612fa3565b602082019050919050565b600061278c601983612ab3565b915061279782612fcc565b602082019050919050565b60006127af600083612aa8565b91506127ba82612ff5565b600082019050919050565b60006127d2601083612ab3565b91506127dd82612ff8565b602082019050919050565b6127f181612c4e565b82525050565b60006128038285612659565b915061280f8284612659565b915061281a826126d0565b91508190509392505050565b6000612831826127a2565b9150819050919050565b600060208201905061285060008301846125c9565b92915050565b600060808201905061286b60008301876125c9565b61287860208301866125c9565b61288560408301856127e8565b818103606083015261289781846125e7565b905095945050505050565b60006020820190506128b760008301846125d8565b92915050565b600060208201905081810360008301526128d78184612620565b905092915050565b600060208201905081810360008301526128f88161268a565b9050919050565b60006020820190508181036000830152612918816126ad565b9050919050565b60006020820190508181036000830152612938816126f3565b9050919050565b6000602082019050818103600083015261295881612716565b9050919050565b6000602082019050818103600083015261297881612739565b9050919050565b600060208201905081810360008301526129988161275c565b9050919050565b600060208201905081810360008301526129b88161277f565b9050919050565b600060208201905081810360008301526129d8816127c5565b9050919050565b60006020820190506129f460008301846127e8565b92915050565b6000612a04612a15565b9050612a108282612ccc565b919050565b6000604051905090565b600067ffffffffffffffff821115612a3a57612a39612e33565b5b612a4382612e76565b9050602081019050919050565b600067ffffffffffffffff821115612a6b57612a6a612e33565b5b612a7482612e76565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ada82612c4e565b9150612ae583612c4e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b1a57612b19612d77565b5b828201905092915050565b6000612b3082612c4e565b9150612b3b83612c4e565b925082612b4b57612b4a612da6565b5b828204905092915050565b6000612b6182612c4e565b9150612b6c83612c4e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ba557612ba4612d77565b5b828202905092915050565b6000612bbb82612c4e565b9150612bc683612c4e565b925082821015612bd957612bd8612d77565b5b828203905092915050565b6000612bef82612c2e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c85578082015181840152602081019050612c6a565b83811115612c94576000848401525b50505050565b60006002820490506001821680612cb257607f821691505b60208210811415612cc657612cc5612dd5565b5b50919050565b612cd582612e76565b810181811067ffffffffffffffff82111715612cf457612cf3612e33565b5b80604052505050565b6000612d0882612c4e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d3b57612d3a612d77565b5b600182019050919050565b6000612d5182612c4e565b9150612d5c83612c4e565b925082612d6c57612d6b612da6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d617820737570706c7920726561636865642e00000000000000000000000000600082015250565b7f4d617820313020706572207472616e73616374696f6e00000000000000000000600082015250565b7f4d696e74696e672064697361626c65642e000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682066756e647320746f206d696e742e00000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b61302a81612be4565b811461303557600080fd5b50565b61304181612bf6565b811461304c57600080fd5b50565b61305881612c02565b811461306357600080fd5b50565b61306f81612c4e565b811461307a57600080fd5b5056fea264697066735822122048b5e71d237ef181d32658ebed18121c2f14f195134d6f3ff65a71155c6a297f64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f6170702e746865626c696e6b6c6573732e636f6d2f726166666c657469636b65742f00000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _metadataPath (string): https://app.theblinkless.com/raffleticket/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002a
Arg [2] : 68747470733a2f2f6170702e746865626c696e6b6c6573732e636f6d2f726166
Arg [3] : 666c657469636b65742f00000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
58670:2482:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60130:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24758:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25660:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32130:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31571:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21411:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35843:2819;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60799:184;;;;;;;;;;;;;:::i;:::-;;38758:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58338:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58728:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60483:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27040:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60286:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58809:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22595:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59971:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25836:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59493:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32688:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39541:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26012:333;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58771:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33153:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60647:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19244:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60130:105;2014:13;:11;:13::i;:::-;60217:10:::1;60205:9;:22;;;;60130:105:::0;:::o;24758:639::-;24843:4;25182:10;25167:25;;:11;:25;;;;:102;;;;25259:10;25244:25;;:11;:25;;;;25167:102;:179;;;;25336:10;25321:25;;:11;:25;;;;25167:179;25147:199;;24758:639;;;:::o;25660:100::-;25714:13;25747:5;25740:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25660:100;:::o;32130:218::-;32206:7;32231:16;32239:7;32231;:16::i;:::-;32226:64;;32256:34;;;;;;;;;;;;;;32226:64;32310:15;:24;32326:7;32310:24;;;;;;;;;;;:30;;;;;;;;;;;;32303:37;;32130:218;;;:::o;31571:400::-;31652:13;31668:16;31676:7;31668;:16::i;:::-;31652:32;;31724:5;31701:28;;:19;:17;:19::i;:::-;:28;;;31697:175;;31749:44;31766:5;31773:19;:17;:19::i;:::-;31749:16;:44::i;:::-;31744:128;;31821:35;;;;;;;;;;;;;;31744:128;31697:175;31917:2;31884:15;:24;31900:7;31884:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31955:7;31951:2;31935:28;;31944:5;31935:28;;;;;;;;;;;;31641:330;31571:400;;:::o;21411:323::-;21472:7;21700:15;:13;:15::i;:::-;21685:12;;21669:13;;:28;:46;21662:53;;21411:323;:::o;35843:2819::-;35977:27;36007;36026:7;36007:18;:27::i;:::-;35977:57;;36092:4;36051:45;;36067:19;36051:45;;;36047:86;;36105:28;;;;;;;;;;;;;;36047:86;36147:27;36176:23;36203:35;36230:7;36203:26;:35::i;:::-;36146:92;;;;36338:68;36363:15;36380:4;36386:19;:17;:19::i;:::-;36338:24;:68::i;:::-;36333:180;;36426:43;36443:4;36449:19;:17;:19::i;:::-;36426:16;:43::i;:::-;36421:92;;36478:35;;;;;;;;;;;;;;36421:92;36333:180;36544:1;36530:16;;:2;:16;;;36526:52;;;36555:23;;;;;;;;;;;;;;36526:52;36591:43;36613:4;36619:2;36623:7;36632:1;36591:21;:43::i;:::-;36727:15;36724:160;;;36867:1;36846:19;36839:30;36724:160;37264:18;:24;37283:4;37264:24;;;;;;;;;;;;;;;;37262:26;;;;;;;;;;;;37333:18;:22;37352:2;37333:22;;;;;;;;;;;;;;;;37331:24;;;;;;;;;;;37655:146;37692:2;37741:45;37756:4;37762:2;37766:19;37741:14;:45::i;:::-;17775:8;37713:73;37655:18;:146::i;:::-;37626:17;:26;37644:7;37626:26;;;;;;;;;;;:175;;;;37972:1;17775:8;37921:19;:47;:52;37917:627;;;37994:19;38026:1;38016:7;:11;37994:33;;38183:1;38149:17;:30;38167:11;38149:30;;;;;;;;;;;;:35;38145:384;;;38287:13;;38272:11;:28;38268:242;;38467:19;38434:17;:30;38452:11;38434:30;;;;;;;;;;;:52;;;;38268:242;38145:384;37975:569;37917:627;38593:7;38589:2;38574:27;;38583:4;38574:27;;;;;;;;;;;;38612:42;38633:4;38639:2;38643:7;38652:1;38612:20;:42::i;:::-;35966:2696;;;35843:2819;;;:::o;60799:184::-;2014:13;:11;:13::i;:::-;60850:12:::1;60876;;;;;;;;;;;60868:26;;60902:21;60868:60;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60849:79;;;60947:7;60939:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;60838:145;60799:184::o:0;38758:185::-;38896:39;38913:4;38919:2;38923:7;38896:39;;;;;;;;;;;;:16;:39::i;:::-;38758:185;;;:::o;58338:94::-;58404:20;58410:7;58419:4;58404:5;:20::i;:::-;58338:94;:::o;58728:36::-;;;;;;;;;;;;;:::o;60483:114::-;2014:13;:11;:13::i;:::-;60576::::1;60561:12;;:28;;;;;;;;;;;;;;;;;;60483:114:::0;:::o;27040:152::-;27112:7;27155:27;27174:7;27155:18;:27::i;:::-;27132:52;;27040:152;;;:::o;60286:130::-;2014:13;:11;:13::i;:::-;60391:17:::1;60372:16;;:36;;;;;;;;;;;;;;;;;;60286:130:::0;:::o;58809:38::-;;;;:::o;22595:233::-;22667:7;22708:1;22691:19;;:5;:19;;;22687:60;;;22719:28;;;;;;;;;;;;;;22687:60;16719:13;22765:18;:25;22784:5;22765:25;;;;;;;;;;;;;;;;:55;22758:62;;22595:233;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;59971:106::-;2014:13;:11;:13::i;:::-;60062:7:::1;60047:12;:22;;;;;;;;;;;;:::i;:::-;;59971:106:::0;:::o;25836:104::-;25892:13;25925:7;25918:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25836:104;:::o;59493:411::-;59383:10;59370:23;;:9;:23;;;59362:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;59581:2:::1;59571:6;:12;;59563:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;59649:4;59629:24;;:16;;;;;;;;;;;:24;;;59621:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;59719:9;;59710:6;59694:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;59686:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;59797:6;59785:9;;:18;;;;:::i;:::-;59771:9;:33;;59763:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;59871:25;59877:10;59889:6;59871:5;:25::i;:::-;59493:411:::0;:::o;32688:308::-;32799:19;:17;:19::i;:::-;32787:31;;:8;:31;;;32783:61;;;32827:17;;;;;;;;;;;;;;32783:61;32909:8;32857:18;:39;32876:19;:17;:19::i;:::-;32857:39;;;;;;;;;;;;;;;:49;32897:8;32857:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32969:8;32933:55;;32948:19;:17;:19::i;:::-;32933:55;;;32979:8;32933:55;;;;;;:::i;:::-;;;;;;;;32688:308;;:::o;39541:399::-;39708:31;39721:4;39727:2;39731:7;39708:12;:31::i;:::-;39772:1;39754:2;:14;;;:19;39750:183;;39793:56;39824:4;39830:2;39834:7;39843:5;39793:30;:56::i;:::-;39788:145;;39877:40;;;;;;;;;;;;;;39788:145;39750:183;39541:399;;;;:::o;26012:333::-;26085:13;26116:16;26124:7;26116;:16::i;:::-;26111:59;;26141:29;;;;;;;;;;;;;;26111:59;26183:21;26207:10;:8;:10::i;:::-;26183:34;;26260:1;26241:7;26235:21;:26;;:102;;;;;;;;;;;;;;;;;26288:7;26297:25;26314:7;26297:16;:25::i;:::-;26271:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26235:102;26228:109;;;26012:333;;;:::o;58771:31::-;;;;:::o;33153:164::-;33250:4;33274:18;:25;33293:5;33274:25;;;;;;;;;;;;;;;:35;33300:8;33274:35;;;;;;;;;;;;;;;;;;;;;;;;;33267:42;;33153:164;;;;:::o;60647:102::-;2014:13;:11;:13::i;:::-;60731:10:::1;60719:9;:22;;;;60647:102:::0;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;19244:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;33575:282::-;33640:4;33696:7;33677:15;:13;:15::i;:::-;:26;;:66;;;;;33730:13;;33720:7;:23;33677:66;:153;;;;;33829:1;17495:8;33781:17;:26;33799:7;33781:26;;;;;;;;;;;;:44;:49;33677:153;33657:173;;33575:282;;;:::o;55615:105::-;55675:7;55702:10;55695:17;;55615:105;:::o;20927:92::-;20983:7;20927:92;:::o;28195:1275::-;28262:7;28282:12;28297:7;28282:22;;28365:4;28346:15;:13;:15::i;:::-;:23;28342:1061;;28399:13;;28392:4;:20;28388:1015;;;28437:14;28454:17;:23;28472:4;28454:23;;;;;;;;;;;;28437:40;;28571:1;17495:8;28543:6;:24;:29;28539:845;;;29208:113;29225:1;29215:6;:11;29208:113;;;29268:17;:25;29286:6;;;;;;;29268:25;;;;;;;;;;;;29259:34;;29208:113;;;29354:6;29347:13;;;;;;28539:845;28414:989;28388:1015;28342:1061;29431:31;;;;;;;;;;;;;;28195:1275;;;;:::o;34738:485::-;34840:27;34869:23;34910:38;34951:15;:24;34967:7;34951:24;;;;;;;;;;;34910:65;;35128:18;35105:41;;35185:19;35179:26;35160:45;;35090:126;34738:485;;;:::o;33966:659::-;34115:11;34280:16;34273:5;34269:28;34260:37;;34440:16;34429:9;34425:32;34412:45;;34590:15;34579:9;34576:30;34568:5;34557:9;34554:20;34551:56;34541:66;;33966:659;;;;;:::o;40602:159::-;;;;;:::o;54924:311::-;55059:7;55079:16;17899:3;55105:19;:41;;55079:68;;17899:3;55173:31;55184:4;55190:2;55194:9;55173:10;:31::i;:::-;55165:40;;:62;;55158:69;;;54924:311;;;;;:::o;30018:450::-;30098:14;30266:16;30259:5;30255:28;30246:37;;30443:5;30429:11;30404:23;30400:41;30397:52;30390:5;30387:63;30377:73;;30018:450;;;;:::o;41426:158::-;;;;;:::o;50144:3081::-;50224:27;50254;50273:7;50254:18;:27::i;:::-;50224:57;;50294:12;50325:19;50294:52;;50360:27;50389:23;50416:35;50443:7;50416:26;:35::i;:::-;50359:92;;;;50468:13;50464:316;;;50589:68;50614:15;50631:4;50637:19;:17;:19::i;:::-;50589:24;:68::i;:::-;50584:184;;50681:43;50698:4;50704:19;:17;:19::i;:::-;50681:16;:43::i;:::-;50676:92;;50733:35;;;;;;;;;;;;;;50676:92;50584:184;50464:316;50792:51;50814:4;50828:1;50832:7;50841:1;50792:21;:51::i;:::-;50936:15;50933:160;;;51076:1;51055:19;51048:30;50933:160;51754:1;16984:3;51724:1;:26;;51723:32;51695:18;:24;51714:4;51695:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;52022:176;52059:4;52130:53;52145:4;52159:1;52163:19;52130:14;:53::i;:::-;17775:8;17495;52083:43;52082:101;52022:18;:176::i;:::-;51993:17;:26;52011:7;51993:26;;;;;;;;;;;:205;;;;52369:1;17775:8;52318:19;:47;:52;52314:627;;;52391:19;52423:1;52413:7;:11;52391:33;;52580:1;52546:17;:30;52564:11;52546:30;;;;;;;;;;;;:35;52542:384;;;52684:13;;52669:11;:28;52665:242;;52864:19;52831:17;:30;52849:11;52831:30;;;;;;;;;;;:52;;;;52665:242;52542:384;52372:569;52314:627;52996:7;52992:1;52969:35;;52978:4;52969:35;;;;;;;;;;;;53015:50;53036:4;53050:1;53054:7;53063:1;53015:20;:50::i;:::-;53192:12;;:14;;;;;;;;;;;;;50213:3012;;;;50144:3081;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;43202:2720::-;43275:20;43298:13;;43275:36;;43338:1;43326:8;:13;43322:44;;;43348:18;;;;;;;;;;;;;;43322:44;43379:61;43409:1;43413:2;43417:12;43431:8;43379:21;:61::i;:::-;43923:1;16857:2;43893:1;:26;;43892:32;43880:8;:45;43854:18;:22;43873:2;43854:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;44202:139;44239:2;44293:33;44316:1;44320:2;44324:1;44293:14;:33::i;:::-;44260:30;44281:8;44260:20;:30::i;:::-;:66;44202:18;:139::i;:::-;44168:17;:31;44186:12;44168:31;;;;;;;;;;;:173;;;;44358:16;44389:11;44418:8;44403:12;:23;44389:37;;44939:16;44935:2;44931:25;44919:37;;45311:12;45271:8;45230:1;45168:25;45109:1;45048;45021:335;45436:1;45422:12;45418:20;45376:346;45477:3;45468:7;45465:16;45376:346;;45695:7;45685:8;45682:1;45655:25;45652:1;45649;45644:59;45530:1;45521:7;45517:15;45506:26;;45376:346;;;45380:77;45767:1;45755:8;:13;45751:45;;;45777:19;;;;;;;;;;;;;;45751:45;45829:3;45813:13;:19;;;;43628:2216;;45854:60;45883:1;45887:2;45891:12;45905:8;45854:20;:60::i;:::-;43264:2658;43202:2720;;:::o;42024:716::-;42187:4;42233:2;42208:45;;;42254:19;:17;:19::i;:::-;42275:4;42281:7;42290:5;42208:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42204:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42508:1;42491:6;:13;:18;42487:235;;;42537:40;;;;;;;;;;;;;;42487:235;42680:6;42674:13;42665:6;42661:2;42657:15;42650:38;42204:529;42377:54;;;42367:64;;;:6;:64;;;;42360:71;;;42024:716;;;;;;:::o;26593:104::-;26644:13;26677:12;26670:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26593:104;:::o;4023:723::-;4079:13;4309:1;4300:5;:10;4296:53;;;4327:10;;;;;;;;;;;;;;;;;;;;;4296:53;4359:12;4374:5;4359:20;;4390:14;4415:78;4430:1;4422:4;:9;4415:78;;4448:8;;;;;:::i;:::-;;;;4479:2;4471:10;;;;;:::i;:::-;;;4415:78;;;4503:19;4535:6;4525:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4503:39;;4553:154;4569:1;4560:5;:10;4553:154;;4597:1;4587:11;;;;;:::i;:::-;;;4664:2;4656:5;:10;;;;:::i;:::-;4643:2;:24;;;;:::i;:::-;4630:39;;4613:6;4620;4613:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4693:2;4684:11;;;;;:::i;:::-;;;4553:154;;;4731:6;4717:21;;;;;4023:723;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;54625:147::-;54762:6;54625:147;;;;;:::o;30570:324::-;30640:14;30873:1;30863:8;30860:15;30834:24;30830:46;30820:56;;30570:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:400::-;9749:3;9770:84;9852:1;9847:3;9770:84;:::i;:::-;9763:91;;9863:93;9952:3;9863:93;:::i;:::-;9981:1;9976:3;9972:11;9965:18;;9589:400;;;:::o;9995:366::-;10137:3;10158:67;10222:2;10217:3;10158:67;:::i;:::-;10151:74;;10234:93;10323:3;10234:93;:::i;:::-;10352:2;10347:3;10343:12;10336:19;;9995:366;;;:::o;10367:::-;10509:3;10530:67;10594:2;10589:3;10530:67;:::i;:::-;10523:74;;10606:93;10695:3;10606:93;:::i;:::-;10724:2;10719:3;10715:12;10708:19;;10367:366;;;:::o;10739:::-;10881:3;10902:67;10966:2;10961:3;10902:67;:::i;:::-;10895:74;;10978:93;11067:3;10978:93;:::i;:::-;11096:2;11091:3;11087:12;11080:19;;10739:366;;;:::o;11111:::-;11253:3;11274:67;11338:2;11333:3;11274:67;:::i;:::-;11267:74;;11350:93;11439:3;11350:93;:::i;:::-;11468:2;11463:3;11459:12;11452:19;;11111:366;;;:::o;11483:::-;11625:3;11646:67;11710:2;11705:3;11646:67;:::i;:::-;11639:74;;11722:93;11811:3;11722:93;:::i;:::-;11840:2;11835:3;11831:12;11824:19;;11483:366;;;:::o;11855:398::-;12014:3;12035:83;12116:1;12111:3;12035:83;:::i;:::-;12028:90;;12127:93;12216:3;12127:93;:::i;:::-;12245:1;12240:3;12236:11;12229:18;;11855:398;;;:::o;12259:366::-;12401:3;12422:67;12486:2;12481:3;12422:67;:::i;:::-;12415:74;;12498:93;12587:3;12498:93;:::i;:::-;12616:2;12611:3;12607:12;12600:19;;12259:366;;;:::o;12631:118::-;12718:24;12736:5;12718:24;:::i;:::-;12713:3;12706:37;12631:118;;:::o;12755:701::-;13036:3;13058:95;13149:3;13140:6;13058:95;:::i;:::-;13051:102;;13170:95;13261:3;13252:6;13170:95;:::i;:::-;13163:102;;13282:148;13426:3;13282:148;:::i;:::-;13275:155;;13447:3;13440:10;;12755:701;;;;;:::o;13462:379::-;13646:3;13668:147;13811:3;13668:147;:::i;:::-;13661:154;;13832:3;13825:10;;13462:379;;;:::o;13847:222::-;13940:4;13978:2;13967:9;13963:18;13955:26;;13991:71;14059:1;14048:9;14044:17;14035:6;13991:71;:::i;:::-;13847:222;;;;:::o;14075:640::-;14270:4;14308:3;14297:9;14293:19;14285:27;;14322:71;14390:1;14379:9;14375:17;14366:6;14322:71;:::i;:::-;14403:72;14471:2;14460:9;14456:18;14447:6;14403:72;:::i;:::-;14485;14553:2;14542:9;14538:18;14529:6;14485:72;:::i;:::-;14604:9;14598:4;14594:20;14589:2;14578:9;14574:18;14567:48;14632:76;14703:4;14694:6;14632:76;:::i;:::-;14624:84;;14075:640;;;;;;;:::o;14721:210::-;14808:4;14846:2;14835:9;14831:18;14823:26;;14859:65;14921:1;14910:9;14906:17;14897:6;14859:65;:::i;:::-;14721:210;;;;:::o;14937:313::-;15050:4;15088:2;15077:9;15073:18;15065:26;;15137:9;15131:4;15127:20;15123:1;15112:9;15108:17;15101:47;15165:78;15238:4;15229:6;15165:78;:::i;:::-;15157:86;;14937:313;;;;:::o;15256:419::-;15422:4;15460:2;15449:9;15445:18;15437:26;;15509:9;15503:4;15499:20;15495:1;15484:9;15480:17;15473:47;15537:131;15663:4;15537:131;:::i;:::-;15529:139;;15256:419;;;:::o;15681:::-;15847:4;15885:2;15874:9;15870:18;15862:26;;15934:9;15928:4;15924:20;15920:1;15909:9;15905:17;15898:47;15962:131;16088:4;15962:131;:::i;:::-;15954:139;;15681:419;;;:::o;16106:::-;16272:4;16310:2;16299:9;16295:18;16287:26;;16359:9;16353:4;16349:20;16345:1;16334:9;16330:17;16323:47;16387:131;16513:4;16387:131;:::i;:::-;16379:139;;16106:419;;;:::o;16531:::-;16697:4;16735:2;16724:9;16720:18;16712:26;;16784:9;16778:4;16774:20;16770:1;16759:9;16755:17;16748:47;16812:131;16938:4;16812:131;:::i;:::-;16804:139;;16531:419;;;:::o;16956:::-;17122:4;17160:2;17149:9;17145:18;17137:26;;17209:9;17203:4;17199:20;17195:1;17184:9;17180:17;17173:47;17237:131;17363:4;17237:131;:::i;:::-;17229:139;;16956:419;;;:::o;17381:::-;17547:4;17585:2;17574:9;17570:18;17562:26;;17634:9;17628:4;17624:20;17620:1;17609:9;17605:17;17598:47;17662:131;17788:4;17662:131;:::i;:::-;17654:139;;17381:419;;;:::o;17806:::-;17972:4;18010:2;17999:9;17995:18;17987:26;;18059:9;18053:4;18049:20;18045:1;18034:9;18030:17;18023:47;18087:131;18213:4;18087:131;:::i;:::-;18079:139;;17806:419;;;:::o;18231:::-;18397:4;18435:2;18424:9;18420:18;18412:26;;18484:9;18478:4;18474:20;18470:1;18459:9;18455:17;18448:47;18512:131;18638:4;18512:131;:::i;:::-;18504:139;;18231:419;;;:::o;18656:222::-;18749:4;18787:2;18776:9;18772:18;18764:26;;18800:71;18868:1;18857:9;18853:17;18844:6;18800:71;:::i;:::-;18656:222;;;;:::o;18884:129::-;18918:6;18945:20;;:::i;:::-;18935:30;;18974:33;19002:4;18994:6;18974:33;:::i;:::-;18884:129;;;:::o;19019:75::-;19052:6;19085:2;19079:9;19069:19;;19019:75;:::o;19100:307::-;19161:4;19251:18;19243:6;19240:30;19237:56;;;19273:18;;:::i;:::-;19237:56;19311:29;19333:6;19311:29;:::i;:::-;19303:37;;19395:4;19389;19385:15;19377:23;;19100:307;;;:::o;19413:308::-;19475:4;19565:18;19557:6;19554:30;19551:56;;;19587:18;;:::i;:::-;19551:56;19625:29;19647:6;19625:29;:::i;:::-;19617:37;;19709:4;19703;19699:15;19691:23;;19413:308;;;:::o;19727:98::-;19778:6;19812:5;19806:12;19796:22;;19727:98;;;:::o;19831:99::-;19883:6;19917:5;19911:12;19901:22;;19831:99;;;:::o;19936:168::-;20019:11;20053:6;20048:3;20041:19;20093:4;20088:3;20084:14;20069:29;;19936:168;;;;:::o;20110:147::-;20211:11;20248:3;20233:18;;20110:147;;;;:::o;20263:169::-;20347:11;20381:6;20376:3;20369:19;20421:4;20416:3;20412:14;20397:29;;20263:169;;;;:::o;20438:148::-;20540:11;20577:3;20562:18;;20438:148;;;;:::o;20592:305::-;20632:3;20651:20;20669:1;20651:20;:::i;:::-;20646:25;;20685:20;20703:1;20685:20;:::i;:::-;20680:25;;20839:1;20771:66;20767:74;20764:1;20761:81;20758:107;;;20845:18;;:::i;:::-;20758:107;20889:1;20886;20882:9;20875:16;;20592:305;;;;:::o;20903:185::-;20943:1;20960:20;20978:1;20960:20;:::i;:::-;20955:25;;20994:20;21012:1;20994:20;:::i;:::-;20989:25;;21033:1;21023:35;;21038:18;;:::i;:::-;21023:35;21080:1;21077;21073:9;21068:14;;20903:185;;;;:::o;21094:348::-;21134:7;21157:20;21175:1;21157:20;:::i;:::-;21152:25;;21191:20;21209:1;21191:20;:::i;:::-;21186:25;;21379:1;21311:66;21307:74;21304:1;21301:81;21296:1;21289:9;21282:17;21278:105;21275:131;;;21386:18;;:::i;:::-;21275:131;21434:1;21431;21427:9;21416:20;;21094:348;;;;:::o;21448:191::-;21488:4;21508:20;21526:1;21508:20;:::i;:::-;21503:25;;21542:20;21560:1;21542:20;:::i;:::-;21537:25;;21581:1;21578;21575:8;21572:34;;;21586:18;;:::i;:::-;21572:34;21631:1;21628;21624:9;21616:17;;21448:191;;;;:::o;21645:96::-;21682:7;21711:24;21729:5;21711:24;:::i;:::-;21700:35;;21645:96;;;:::o;21747:90::-;21781:7;21824:5;21817:13;21810:21;21799:32;;21747:90;;;:::o;21843:149::-;21879:7;21919:66;21912:5;21908:78;21897:89;;21843:149;;;:::o;21998:126::-;22035:7;22075:42;22068:5;22064:54;22053:65;;21998:126;;;:::o;22130:77::-;22167:7;22196:5;22185:16;;22130:77;;;:::o;22213:154::-;22297:6;22292:3;22287;22274:30;22359:1;22350:6;22345:3;22341:16;22334:27;22213:154;;;:::o;22373:307::-;22441:1;22451:113;22465:6;22462:1;22459:13;22451:113;;;22550:1;22545:3;22541:11;22535:18;22531:1;22526:3;22522:11;22515:39;22487:2;22484:1;22480:10;22475:15;;22451:113;;;22582:6;22579:1;22576:13;22573:101;;;22662:1;22653:6;22648:3;22644:16;22637:27;22573:101;22422:258;22373:307;;;:::o;22686:320::-;22730:6;22767:1;22761:4;22757:12;22747:22;;22814:1;22808:4;22804:12;22835:18;22825:81;;22891:4;22883:6;22879:17;22869:27;;22825:81;22953:2;22945:6;22942:14;22922:18;22919:38;22916:84;;;22972:18;;:::i;:::-;22916:84;22737:269;22686:320;;;:::o;23012:281::-;23095:27;23117:4;23095:27;:::i;:::-;23087:6;23083:40;23225:6;23213:10;23210:22;23189:18;23177:10;23174:34;23171:62;23168:88;;;23236:18;;:::i;:::-;23168:88;23276:10;23272:2;23265:22;23055:238;23012:281;;:::o;23299:233::-;23338:3;23361:24;23379:5;23361:24;:::i;:::-;23352:33;;23407:66;23400:5;23397:77;23394:103;;;23477:18;;:::i;:::-;23394:103;23524:1;23517:5;23513:13;23506:20;;23299:233;;;:::o;23538:176::-;23570:1;23587:20;23605:1;23587:20;:::i;:::-;23582:25;;23621:20;23639:1;23621:20;:::i;:::-;23616:25;;23660:1;23650:35;;23665:18;;:::i;:::-;23650:35;23706:1;23703;23699:9;23694:14;;23538:176;;;;:::o;23720:180::-;23768:77;23765:1;23758:88;23865:4;23862:1;23855:15;23889:4;23886:1;23879:15;23906:180;23954:77;23951:1;23944:88;24051:4;24048:1;24041:15;24075:4;24072:1;24065:15;24092:180;24140:77;24137:1;24130:88;24237:4;24234:1;24227:15;24261:4;24258:1;24251:15;24278:180;24326:77;24323:1;24316:88;24423:4;24420:1;24413:15;24447:4;24444:1;24437:15;24464:180;24512:77;24509:1;24502:88;24609:4;24606:1;24599:15;24633:4;24630:1;24623:15;24650:117;24759:1;24756;24749:12;24773:117;24882:1;24879;24872:12;24896:117;25005:1;25002;24995:12;25019:117;25128:1;25125;25118:12;25142:102;25183:6;25234:2;25230:7;25225:2;25218:5;25214:14;25210:28;25200:38;;25142:102;;;:::o;25250:225::-;25390:34;25386:1;25378:6;25374:14;25367:58;25459:8;25454:2;25446:6;25442:15;25435:33;25250:225;:::o;25481:180::-;25621:32;25617:1;25609:6;25605:14;25598:56;25481:180;:::o;25667:155::-;25807:7;25803:1;25795:6;25791:14;25784:31;25667:155;:::o;25828:182::-;25968:34;25964:1;25956:6;25952:14;25945:58;25828:182;:::o;26016:169::-;26156:21;26152:1;26144:6;26140:14;26133:45;26016:169;:::o;26191:172::-;26331:24;26327:1;26319:6;26315:14;26308:48;26191:172;:::o;26369:167::-;26509:19;26505:1;26497:6;26493:14;26486:43;26369:167;:::o;26542:175::-;26682:27;26678:1;26670:6;26666:14;26659:51;26542:175;:::o;26723:114::-;;:::o;26843:166::-;26983:18;26979:1;26971:6;26967:14;26960:42;26843:166;:::o;27015:122::-;27088:24;27106:5;27088:24;:::i;:::-;27081:5;27078:35;27068:63;;27127:1;27124;27117:12;27068:63;27015:122;:::o;27143:116::-;27213:21;27228:5;27213:21;:::i;:::-;27206:5;27203:32;27193:60;;27249:1;27246;27239:12;27193:60;27143:116;:::o;27265:120::-;27337:23;27354:5;27337:23;:::i;:::-;27330:5;27327:34;27317:62;;27375:1;27372;27365:12;27317:62;27265:120;:::o;27391:122::-;27464:24;27482:5;27464:24;:::i;:::-;27457:5;27454:35;27444:63;;27503:1;27500;27493:12;27444:63;27391:122;:::o
Swarm Source
ipfs://48b5e71d237ef181d32658ebed18121c2f14f195134d6f3ff65a71155c6a297f
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.