ERC-721
Overview
Max Total Supply
7,388 EJB
Holders
2,459
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 EJBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EmojiBattle
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-05 */ // File: contracts/EmojiBattle.sol pragma solidity ^0.8.16; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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); } } 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of 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 through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } contract ERC721A is IERC721A { // 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 tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 { 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; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @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 See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @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)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, 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 { _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 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 { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); 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 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _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 { 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 Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * 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) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _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)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { 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 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; } /** * @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 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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } contract EmojiBattle is Ownable, ERC721A { string public baseURI = "https://bafybeibm5e3nbygem4xfp2agyiejsngqrczb56jctiawvx6joxll7sozwq.ipfs.nftstorage.link/"; bool public isMintOpen = false; bool public isFreeMintOpen = true; uint256 public immutable unitPrice = 0.003 ether; uint256 public immutable maxSupply = 7777; uint256 public immutable maxWalletSupply = 10; uint256 public immutable maxWalletFreeSupply = 3; constructor(uint256 _mintCntToOwner) ERC721A('Emoji Battle', 'EJB') { _mint(msg.sender, _mintCntToOwner); } function _baseURI() internal view override returns (string memory) { return baseURI; } function _startTokenId() internal pure override returns (uint256) { return 1; } function startTokenId() external pure returns (uint256) { return _startTokenId(); } function nextTokenId() external view returns (uint256) { return _nextTokenId(); } function numberMinted(address owner) external view returns (uint256) { return _numberMinted(owner); } function getBalance() external view returns (uint256) { return address(this).balance; } function mint(uint256 quantity) external payable { unchecked { require(isMintOpen, '0'); uint256 currentSupply = _nextTokenId() - 1; require((currentSupply + quantity) <= maxSupply, '1'); uint256 walletSupply = _numberMinted(msg.sender); require((walletSupply + quantity) <= maxWalletSupply, '2'); if (isFreeMintOpen == false || currentSupply >= 7333) { require(msg.value >= unitPrice * quantity, '3'); } else { uint256 walletFreeSupply = walletSupply > maxWalletFreeSupply ? maxWalletFreeSupply : walletSupply; uint256 freeQuantity = maxWalletFreeSupply > walletFreeSupply ? maxWalletFreeSupply - walletFreeSupply : 0; require( msg.value >= unitPrice * (quantity > freeQuantity ? quantity - freeQuantity : 0), '4' ); } } _mint(msg.sender, quantity); } function setBaseURI(string calldata uri) external onlyOwner { baseURI = uri; } function setIsMintOpen(bool _isMintOpen) external onlyOwner { isMintOpen = _isMintOpen; } function setIsFreeMintOpen(bool _isFreeMintOpen) external onlyOwner { isFreeMintOpen = _isFreeMintOpen; } function withdraw(address to) external onlyOwner { payable(to).transfer(address(this).balance); } function marketMint(address[] memory marketmintaddress, uint256[] memory mintquantity) public onlyOwner { for (uint256 i = 0; i < marketmintaddress.length; i++) { require(totalSupply() + mintquantity[i] <= maxSupply, "Exceed supply"); _safeMint(marketmintaddress[i], mintquantity[i]); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_mintCntToOwner","type":"uint256"}],"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"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"marketmintaddress","type":"address[]"},{"internalType":"uint256[]","name":"mintquantity","type":"uint256[]"}],"name":"marketMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isFreeMintOpen","type":"bool"}],"name":"setIsFreeMintOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isMintOpen","type":"bool"}],"name":"setIsMintOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":[],"name":"unitPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
610180604052605961010081815290620020bb61012039600990620000259082620002ec565b50600a805461ffff1916610100178155660aa87bee538000608052611e6160a05260c052600360e0523480156200005b57600080fd5b5060405162002114380380620021148339810160408190526200007e91620003b8565b6040518060400160405280600c81526020016b456d6f6a6920426174746c6560a01b8152506040518060400160405280600381526020016222a52160e91b815250620000d9620000d36200011060201b60201c565b62000114565b6003620000e78382620002ec565b506004620000f68282620002ec565b5050600180555062000109338262000164565b50620003d2565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001546001600160a01b0383166200018e57604051622e076360e81b815260040160405180910390fd5b81600003620001b05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210620001fa57600155505b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200027357607f821691505b6020821081036200029457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200024357600081815260208120601f850160051c81016020861015620002c35750805b601f850160051c820191505b81811015620002e457828155600101620002cf565b505050505050565b81516001600160401b0381111562000308576200030862000248565b62000320816200031984546200025e565b846200029a565b602080601f8311600181146200035857600084156200033f5750858301515b600019600386901b1c1916600185901b178555620002e4565b600085815260208120601f198616915b82811015620003895788860151825594840194600190910190840162000368565b5085821015620003a85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620003cb57600080fd5b5051919050565b60805160a05160c05160e051611c706200044b600039600081816103d501528181610d2c01528181610d5901528181610d800152610dae0152600081816104ee0152610c5b01526000818161058101528181610be70152610fee0152600081816105e901528181610cd00152610de50152611c706000f3fe6080604052600436106101f95760003560e01c806375794a3c1161010d578063b88d4fde116100a0578063e6798baa1161006f578063e6798baa146105c3578063e73faa2d146105d7578063e9014f9d1461060b578063e985e9c51461062b578063f2fde38b1461064b57600080fd5b8063b88d4fde1461052f578063c87b56dd1461054f578063d5abeb011461056f578063dc33e681146105a357600080fd5b8063a0712d68116100dc578063a0712d68146104a9578063a22cb465146104bc578063a542f1c4146104dc578063a6f5f0141461051057600080fd5b806375794a3c146104415780638da5cb5b1461045657806395d89b41146104745780639da2f5f51461048957600080fd5b806323b872dd116101905780636352211e1161015f5780636352211e146103a357806365d547ec146103c35780636c0360eb146103f757806370a082311461040c578063715018a61461042c57600080fd5b806323b872dd1461032357806342842e0e1461034357806351cff8d91461036357806355f804b31461038357600080fd5b806312065fe0116101cc57806312065fe0146102af578063125c917c146102cc57806318160ddd146102ec578063199080161461030957600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611583565b61066b565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b506102486106bd565b60405161022a91906115f0565b34801561026157600080fd5b50610275610270366004611603565b61074f565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611638565b610793565b005b3480156102bb57600080fd5b50475b60405190815260200161022a565b3480156102d857600080fd5b506102ad6102e7366004611672565b610833565b3480156102f857600080fd5b5060025460015403600019016102be565b34801561031557600080fd5b50600a5461021e9060ff1681565b34801561032f57600080fd5b506102ad61033e36600461168d565b610855565b34801561034f57600080fd5b506102ad61035e36600461168d565b6109ee565b34801561036f57600080fd5b506102ad61037e3660046116c9565b610a0e565b34801561038f57600080fd5b506102ad61039e3660046116e4565b610a4f565b3480156103af57600080fd5b506102756103be366004611603565b610a64565b3480156103cf57600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000000081565b34801561040357600080fd5b50610248610a6f565b34801561041857600080fd5b506102be6104273660046116c9565b610afd565b34801561043857600080fd5b506102ad610b4c565b34801561044d57600080fd5b506102be610b60565b34801561046257600080fd5b506000546001600160a01b0316610275565b34801561048057600080fd5b50610248610b70565b34801561049557600080fd5b506102ad6104a4366004611672565b610b7f565b6102ad6104b7366004611603565b610b9a565b3480156104c857600080fd5b506102ad6104d7366004611756565b610e4a565b3480156104e857600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000000081565b34801561051c57600080fd5b50600a5461021e90610100900460ff1681565b34801561053b57600080fd5b506102ad61054a3660046117d0565b610edf565b34801561055b57600080fd5b5061024861056a366004611603565b610f29565b34801561057b57600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105af57600080fd5b506102be6105be3660046116c9565b610fad565b3480156105cf57600080fd5b5060016102be565b3480156105e357600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000000081565b34801561061757600080fd5b506102ad61062636600461191f565b610fd8565b34801561063757600080fd5b5061021e6106463660046119df565b6110d0565b34801561065757600080fd5b506102ad6106663660046116c9565b6110fe565b60006301ffc9a760e01b6001600160e01b03198316148061069c57506380ac58cd60e01b6001600160e01b03198316145b806106b75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106cc90611a09565b80601f01602080910402602001604051908101604052809291908181526020018280546106f890611a09565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b600061075a82611174565b610777576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061079e82610a64565b9050336001600160a01b038216146107d7576107ba81336110d0565b6107d7576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61083b6111a9565b600a80549115156101000261ff0019909216919091179055565b600061086082611203565b9050836001600160a01b0316816001600160a01b0316146108935760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176108e0576108c386336110d0565b6108e057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661090757604051633a954ecd60e21b815260040160405180910390fd5b801561091257600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b841690036109a4576001840160008181526005602052604081205490036109a25760015481146109a25760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610a0983838360405180602001604052806000815250610edf565b505050565b610a166111a9565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610a4b573d6000803e3d6000fd5b5050565b610a576111a9565b6009610a09828483611a89565b60006106b782611203565b60098054610a7c90611a09565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa890611a09565b8015610af55780601f10610aca57610100808354040283529160200191610af5565b820191906000526020600020905b815481529060010190602001808311610ad857829003601f168201915b505050505081565b60006001600160a01b038216610b26576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610b546111a9565b610b5e6000611272565b565b6000610b6b60015490565b905090565b6060600480546106cc90611a09565b610b876111a9565b600a805460ff1916911515919091179055565b600a5460ff16610bd55760405162461bcd60e51b81526020600482015260016024820152600360fc1b60448201526064015b60405180910390fd5b60006001610be260015490565b0390507f00000000000000000000000000000000000000000000000000000000000000008282011115610c3b5760405162461bcd60e51b81526020600482015260016024820152603160f81b6044820152606401610bcc565b336000908152600660205260409081902054901c67ffffffffffffffff167f00000000000000000000000000000000000000000000000000000000000000008382011115610caf5760405162461bcd60e51b81526020600482015260016024820152601960f91b6044820152606401610bcc565b600a54610100900460ff161580610cc85750611ca58210155b15610d2857827f000000000000000000000000000000000000000000000000000000000000000002341015610d235760405162461bcd60e51b81526020600482015260016024820152603360f81b6044820152606401610bcc565b610e3b565b60007f00000000000000000000000000000000000000000000000000000000000000008211610d575781610d79565b7f00000000000000000000000000000000000000000000000000000000000000005b90506000817f000000000000000000000000000000000000000000000000000000000000000011610dab576000610dcf565b817f0000000000000000000000000000000000000000000000000000000000000000035b9050808511610ddf576000610de3565b8085035b7f000000000000000000000000000000000000000000000000000000000000000002341015610e385760405162461bcd60e51b81526020600482015260016024820152600d60fa1b6044820152606401610bcc565b50505b5050610e4733826112c2565b50565b336001600160a01b03831603610e735760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eea848484610855565b6001600160a01b0383163b15610f2357610f06848484846113a2565b610f23576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f3482611174565b610f5157604051630a14c4b560e41b815260040160405180910390fd5b6000610f5b61148d565b90508051600003610f7b5760405180602001604052806000815250610fa6565b80610f858461149c565b604051602001610f96929190611b49565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c166106b7565b610fe06111a9565b60005b8251811015610a09577f000000000000000000000000000000000000000000000000000000000000000082828151811061101f5761101f611b88565b602002602001015161103a6002546001546000199190030190565b6110449190611bb4565b11156110825760405162461bcd60e51b815260206004820152600d60248201526c45786365656420737570706c7960981b6044820152606401610bcc565b6110be83828151811061109757611097611b88565b60200260200101518383815181106110b1576110b1611b88565b60200260200101516114eb565b806110c881611bc7565b915050610fe3565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6111066111a9565b6001600160a01b03811661116b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bcc565b610e4781611272565b600081600111158015611188575060015482105b80156106b7575050600090815260056020526040902054600160e01b161590565b6000546001600160a01b03163314610b5e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bcc565b60008180600111611259576001548110156112595760008181526005602052604081205490600160e01b82169003611257575b80600003610fa6575060001901600081815260056020526040902054611236565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001546001600160a01b0383166112eb57604051622e076360e81b815260040160405180910390fd5b8160000361130c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106113565760015550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113d7903390899088908890600401611be0565b6020604051808303816000875af1925050508015611412575060408051601f3d908101601f1916820190925261140f91810190611c1d565b60015b611470573d808015611440576040519150601f19603f3d011682016040523d82523d6000602084013e611445565b606091505b508051600003611468576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546106cc90611a09565b604080516080810191829052607f0190826030600a8206018353600a90045b80156114d957600183039250600a81066030018353600a90046114bb565b50819003601f19909101908152919050565b610a4b82826040518060200160405280600081525061150a83836112c2565b6001600160a01b0383163b15610a09576001548281035b61153460008683806001019450866113a2565b611551576040516368d2bf6b60e11b815260040160405180910390fd5b81811061152157816001541461156657600080fd5b5050505050565b6001600160e01b031981168114610e4757600080fd5b60006020828403121561159557600080fd5b8135610fa68161156d565b60005b838110156115bb5781810151838201526020016115a3565b50506000910152565b600081518084526115dc8160208601602086016115a0565b601f01601f19169290920160200192915050565b602081526000610fa660208301846115c4565b60006020828403121561161557600080fd5b5035919050565b80356001600160a01b038116811461163357600080fd5b919050565b6000806040838503121561164b57600080fd5b6116548361161c565b946020939093013593505050565b8035801515811461163357600080fd5b60006020828403121561168457600080fd5b610fa682611662565b6000806000606084860312156116a257600080fd5b6116ab8461161c565b92506116b96020850161161c565b9150604084013590509250925092565b6000602082840312156116db57600080fd5b610fa68261161c565b600080602083850312156116f757600080fd5b823567ffffffffffffffff8082111561170f57600080fd5b818501915085601f83011261172357600080fd5b81358181111561173257600080fd5b86602082850101111561174457600080fd5b60209290920196919550909350505050565b6000806040838503121561176957600080fd5b6117728361161c565b915061178060208401611662565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c8576117c8611789565b604052919050565b600080600080608085870312156117e657600080fd5b6117ef8561161c565b935060206117fe81870161161c565b935060408601359250606086013567ffffffffffffffff8082111561182257600080fd5b818801915088601f83011261183657600080fd5b81358181111561184857611848611789565b61185a601f8201601f1916850161179f565b9150808252898482850101111561187057600080fd5b808484018584013760008482840101525080935050505092959194509250565b600067ffffffffffffffff8211156118aa576118aa611789565b5060051b60200190565b600082601f8301126118c557600080fd5b813560206118da6118d583611890565b61179f565b82815260059290921b840181019181810190868411156118f957600080fd5b8286015b8481101561191457803583529183019183016118fd565b509695505050505050565b6000806040838503121561193257600080fd5b823567ffffffffffffffff8082111561194a57600080fd5b818501915085601f83011261195e57600080fd5b8135602061196e6118d583611890565b82815260059290921b8401810191818101908984111561198d57600080fd5b948201945b838610156119b2576119a38661161c565b82529482019490820190611992565b965050860135925050808211156119c857600080fd5b506119d5858286016118b4565b9150509250929050565b600080604083850312156119f257600080fd5b6119fb8361161c565b91506117806020840161161c565b600181811c90821680611a1d57607f821691505b602082108103611a3d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610a0957600081815260208120601f850160051c81016020861015611a6a5750805b601f850160051c820191505b818110156109e657828155600101611a76565b67ffffffffffffffff831115611aa157611aa1611789565b611ab583611aaf8354611a09565b83611a43565b6000601f841160018114611ae95760008515611ad15750838201355b600019600387901b1c1916600186901b178355611566565b600083815260209020601f19861690835b82811015611b1a5786850135825560209485019460019092019101611afa565b5086821015611b375760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60008351611b5b8184602088016115a0565b835190830190611b6f8183602088016115a0565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156106b7576106b7611b9e565b600060018201611bd957611bd9611b9e565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c13908301846115c4565b9695505050505050565b600060208284031215611c2f57600080fd5b8151610fa68161156d56fea2646970667358221220e0cbe9a5b082d05e54cc6d8f0ac9146a6cc8e8bc17ba64aabf614d4cf1d997fd64736f6c6343000810003368747470733a2f2f62616679626569626d3565336e627967656d347866703261677969656a736e677172637a6235366a63746961777678366a6f786c6c37736f7a77712e697066732e6e667473746f726167652e6c696e6b2f0000000000000000000000000000000000000000000000000000000000000014
Deployed Bytecode
0x6080604052600436106101f95760003560e01c806375794a3c1161010d578063b88d4fde116100a0578063e6798baa1161006f578063e6798baa146105c3578063e73faa2d146105d7578063e9014f9d1461060b578063e985e9c51461062b578063f2fde38b1461064b57600080fd5b8063b88d4fde1461052f578063c87b56dd1461054f578063d5abeb011461056f578063dc33e681146105a357600080fd5b8063a0712d68116100dc578063a0712d68146104a9578063a22cb465146104bc578063a542f1c4146104dc578063a6f5f0141461051057600080fd5b806375794a3c146104415780638da5cb5b1461045657806395d89b41146104745780639da2f5f51461048957600080fd5b806323b872dd116101905780636352211e1161015f5780636352211e146103a357806365d547ec146103c35780636c0360eb146103f757806370a082311461040c578063715018a61461042c57600080fd5b806323b872dd1461032357806342842e0e1461034357806351cff8d91461036357806355f804b31461038357600080fd5b806312065fe0116101cc57806312065fe0146102af578063125c917c146102cc57806318160ddd146102ec578063199080161461030957600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611583565b61066b565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b506102486106bd565b60405161022a91906115f0565b34801561026157600080fd5b50610275610270366004611603565b61074f565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611638565b610793565b005b3480156102bb57600080fd5b50475b60405190815260200161022a565b3480156102d857600080fd5b506102ad6102e7366004611672565b610833565b3480156102f857600080fd5b5060025460015403600019016102be565b34801561031557600080fd5b50600a5461021e9060ff1681565b34801561032f57600080fd5b506102ad61033e36600461168d565b610855565b34801561034f57600080fd5b506102ad61035e36600461168d565b6109ee565b34801561036f57600080fd5b506102ad61037e3660046116c9565b610a0e565b34801561038f57600080fd5b506102ad61039e3660046116e4565b610a4f565b3480156103af57600080fd5b506102756103be366004611603565b610a64565b3480156103cf57600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000000381565b34801561040357600080fd5b50610248610a6f565b34801561041857600080fd5b506102be6104273660046116c9565b610afd565b34801561043857600080fd5b506102ad610b4c565b34801561044d57600080fd5b506102be610b60565b34801561046257600080fd5b506000546001600160a01b0316610275565b34801561048057600080fd5b50610248610b70565b34801561049557600080fd5b506102ad6104a4366004611672565b610b7f565b6102ad6104b7366004611603565b610b9a565b3480156104c857600080fd5b506102ad6104d7366004611756565b610e4a565b3480156104e857600080fd5b506102be7f000000000000000000000000000000000000000000000000000000000000000a81565b34801561051c57600080fd5b50600a5461021e90610100900460ff1681565b34801561053b57600080fd5b506102ad61054a3660046117d0565b610edf565b34801561055b57600080fd5b5061024861056a366004611603565b610f29565b34801561057b57600080fd5b506102be7f0000000000000000000000000000000000000000000000000000000000001e6181565b3480156105af57600080fd5b506102be6105be3660046116c9565b610fad565b3480156105cf57600080fd5b5060016102be565b3480156105e357600080fd5b506102be7f000000000000000000000000000000000000000000000000000aa87bee53800081565b34801561061757600080fd5b506102ad61062636600461191f565b610fd8565b34801561063757600080fd5b5061021e6106463660046119df565b6110d0565b34801561065757600080fd5b506102ad6106663660046116c9565b6110fe565b60006301ffc9a760e01b6001600160e01b03198316148061069c57506380ac58cd60e01b6001600160e01b03198316145b806106b75750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106cc90611a09565b80601f01602080910402602001604051908101604052809291908181526020018280546106f890611a09565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b600061075a82611174565b610777576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061079e82610a64565b9050336001600160a01b038216146107d7576107ba81336110d0565b6107d7576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61083b6111a9565b600a80549115156101000261ff0019909216919091179055565b600061086082611203565b9050836001600160a01b0316816001600160a01b0316146108935760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176108e0576108c386336110d0565b6108e057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661090757604051633a954ecd60e21b815260040160405180910390fd5b801561091257600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b841690036109a4576001840160008181526005602052604081205490036109a25760015481146109a25760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610a0983838360405180602001604052806000815250610edf565b505050565b610a166111a9565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610a4b573d6000803e3d6000fd5b5050565b610a576111a9565b6009610a09828483611a89565b60006106b782611203565b60098054610a7c90611a09565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa890611a09565b8015610af55780601f10610aca57610100808354040283529160200191610af5565b820191906000526020600020905b815481529060010190602001808311610ad857829003601f168201915b505050505081565b60006001600160a01b038216610b26576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610b546111a9565b610b5e6000611272565b565b6000610b6b60015490565b905090565b6060600480546106cc90611a09565b610b876111a9565b600a805460ff1916911515919091179055565b600a5460ff16610bd55760405162461bcd60e51b81526020600482015260016024820152600360fc1b60448201526064015b60405180910390fd5b60006001610be260015490565b0390507f0000000000000000000000000000000000000000000000000000000000001e618282011115610c3b5760405162461bcd60e51b81526020600482015260016024820152603160f81b6044820152606401610bcc565b336000908152600660205260409081902054901c67ffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000a8382011115610caf5760405162461bcd60e51b81526020600482015260016024820152601960f91b6044820152606401610bcc565b600a54610100900460ff161580610cc85750611ca58210155b15610d2857827f000000000000000000000000000000000000000000000000000aa87bee53800002341015610d235760405162461bcd60e51b81526020600482015260016024820152603360f81b6044820152606401610bcc565b610e3b565b60007f00000000000000000000000000000000000000000000000000000000000000038211610d575781610d79565b7f00000000000000000000000000000000000000000000000000000000000000035b90506000817f000000000000000000000000000000000000000000000000000000000000000311610dab576000610dcf565b817f0000000000000000000000000000000000000000000000000000000000000003035b9050808511610ddf576000610de3565b8085035b7f000000000000000000000000000000000000000000000000000aa87bee53800002341015610e385760405162461bcd60e51b81526020600482015260016024820152600d60fa1b6044820152606401610bcc565b50505b5050610e4733826112c2565b50565b336001600160a01b03831603610e735760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eea848484610855565b6001600160a01b0383163b15610f2357610f06848484846113a2565b610f23576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f3482611174565b610f5157604051630a14c4b560e41b815260040160405180910390fd5b6000610f5b61148d565b90508051600003610f7b5760405180602001604052806000815250610fa6565b80610f858461149c565b604051602001610f96929190611b49565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600660205260408082205467ffffffffffffffff911c166106b7565b610fe06111a9565b60005b8251811015610a09577f0000000000000000000000000000000000000000000000000000000000001e6182828151811061101f5761101f611b88565b602002602001015161103a6002546001546000199190030190565b6110449190611bb4565b11156110825760405162461bcd60e51b815260206004820152600d60248201526c45786365656420737570706c7960981b6044820152606401610bcc565b6110be83828151811061109757611097611b88565b60200260200101518383815181106110b1576110b1611b88565b60200260200101516114eb565b806110c881611bc7565b915050610fe3565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6111066111a9565b6001600160a01b03811661116b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bcc565b610e4781611272565b600081600111158015611188575060015482105b80156106b7575050600090815260056020526040902054600160e01b161590565b6000546001600160a01b03163314610b5e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610bcc565b60008180600111611259576001548110156112595760008181526005602052604081205490600160e01b82169003611257575b80600003610fa6575060001901600081815260056020526040902054611236565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001546001600160a01b0383166112eb57604051622e076360e81b815260040160405180910390fd5b8160000361130c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106113565760015550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113d7903390899088908890600401611be0565b6020604051808303816000875af1925050508015611412575060408051601f3d908101601f1916820190925261140f91810190611c1d565b60015b611470573d808015611440576040519150601f19603f3d011682016040523d82523d6000602084013e611445565b606091505b508051600003611468576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546106cc90611a09565b604080516080810191829052607f0190826030600a8206018353600a90045b80156114d957600183039250600a81066030018353600a90046114bb565b50819003601f19909101908152919050565b610a4b82826040518060200160405280600081525061150a83836112c2565b6001600160a01b0383163b15610a09576001548281035b61153460008683806001019450866113a2565b611551576040516368d2bf6b60e11b815260040160405180910390fd5b81811061152157816001541461156657600080fd5b5050505050565b6001600160e01b031981168114610e4757600080fd5b60006020828403121561159557600080fd5b8135610fa68161156d565b60005b838110156115bb5781810151838201526020016115a3565b50506000910152565b600081518084526115dc8160208601602086016115a0565b601f01601f19169290920160200192915050565b602081526000610fa660208301846115c4565b60006020828403121561161557600080fd5b5035919050565b80356001600160a01b038116811461163357600080fd5b919050565b6000806040838503121561164b57600080fd5b6116548361161c565b946020939093013593505050565b8035801515811461163357600080fd5b60006020828403121561168457600080fd5b610fa682611662565b6000806000606084860312156116a257600080fd5b6116ab8461161c565b92506116b96020850161161c565b9150604084013590509250925092565b6000602082840312156116db57600080fd5b610fa68261161c565b600080602083850312156116f757600080fd5b823567ffffffffffffffff8082111561170f57600080fd5b818501915085601f83011261172357600080fd5b81358181111561173257600080fd5b86602082850101111561174457600080fd5b60209290920196919550909350505050565b6000806040838503121561176957600080fd5b6117728361161c565b915061178060208401611662565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117c8576117c8611789565b604052919050565b600080600080608085870312156117e657600080fd5b6117ef8561161c565b935060206117fe81870161161c565b935060408601359250606086013567ffffffffffffffff8082111561182257600080fd5b818801915088601f83011261183657600080fd5b81358181111561184857611848611789565b61185a601f8201601f1916850161179f565b9150808252898482850101111561187057600080fd5b808484018584013760008482840101525080935050505092959194509250565b600067ffffffffffffffff8211156118aa576118aa611789565b5060051b60200190565b600082601f8301126118c557600080fd5b813560206118da6118d583611890565b61179f565b82815260059290921b840181019181810190868411156118f957600080fd5b8286015b8481101561191457803583529183019183016118fd565b509695505050505050565b6000806040838503121561193257600080fd5b823567ffffffffffffffff8082111561194a57600080fd5b818501915085601f83011261195e57600080fd5b8135602061196e6118d583611890565b82815260059290921b8401810191818101908984111561198d57600080fd5b948201945b838610156119b2576119a38661161c565b82529482019490820190611992565b965050860135925050808211156119c857600080fd5b506119d5858286016118b4565b9150509250929050565b600080604083850312156119f257600080fd5b6119fb8361161c565b91506117806020840161161c565b600181811c90821680611a1d57607f821691505b602082108103611a3d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610a0957600081815260208120601f850160051c81016020861015611a6a5750805b601f850160051c820191505b818110156109e657828155600101611a76565b67ffffffffffffffff831115611aa157611aa1611789565b611ab583611aaf8354611a09565b83611a43565b6000601f841160018114611ae95760008515611ad15750838201355b600019600387901b1c1916600186901b178355611566565b600083815260209020601f19861690835b82811015611b1a5786850135825560209485019460019092019101611afa565b5086821015611b375760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60008351611b5b8184602088016115a0565b835190830190611b6f8183602088016115a0565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b808201808211156106b7576106b7611b9e565b600060018201611bd957611bd9611b9e565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c13908301846115c4565b9695505050505050565b600060208284031215611c2f57600080fd5b8151610fa68161156d56fea2646970667358221220e0cbe9a5b082d05e54cc6d8f0ac9146a6cc8e8bc17ba64aabf614d4cf1d997fd64736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000014
-----Decoded View---------------
Arg [0] : _mintCntToOwner (uint256): 20
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000014
Deployed Bytecode Sourcemap
46206:2883:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16065:615;;;;;;;;;;-1:-1:-1;16065:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;16065:615:0;;;;;;;;21712:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23667:204::-;;;;;;;;;;-1:-1:-1;23667:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;23667:204:0;1533:203:1;23215:386:0;;;;;;;;;;-1:-1:-1;23215:386:0;;;;;:::i;:::-;;:::i;:::-;;47282:95;;;;;;;;;;-1:-1:-1;47350:21:0;47282:95;;;2324:25:1;;;2312:2;2297:18;47282:95:0;2178:177:1;48541:113:0;;;;;;;;;;-1:-1:-1;48541:113:0;;;;;:::i;:::-;;:::i;15119:315::-;;;;;;;;;;-1:-1:-1;15385:12:0;;46962:1;15369:13;:28;-1:-1:-1;;15369:46:0;15119:315;;46374:30;;;;;;;;;;-1:-1:-1;46374:30:0;;;;;;;;32932:2800;;;;;;;;;;-1:-1:-1;32932:2800:0;;;;;:::i;:::-;;:::i;24557:185::-;;;;;;;;;;-1:-1:-1;24557:185:0;;;;;:::i;:::-;;:::i;48660:105::-;;;;;;;;;;-1:-1:-1;48660:105:0;;;;;:::i;:::-;;:::i;48346:86::-;;;;;;;;;;-1:-1:-1;48346:86:0;;;;;:::i;:::-;;:::i;21501:144::-;;;;;;;;;;-1:-1:-1;21501:144:0;;;;;:::i;:::-;;:::i;46606:48::-;;;;;;;;;;;;;;;46252:115;;;;;;;;;;;;;:::i;16744:224::-;;;;;;;;;;-1:-1:-1;16744:224:0;;;;;:::i;:::-;;:::i;1533:103::-;;;;;;;;;;;;;:::i;47072:89::-;;;;;;;;;;;;;:::i;885:87::-;;;;;;;;;;-1:-1:-1;931:7:0;958:6;-1:-1:-1;;;;;958:6:0;885:87;;21881:104;;;;;;;;;;;;;:::i;48438:97::-;;;;;;;;;;-1:-1:-1;48438:97:0;;;;;:::i;:::-;;:::i;47383:957::-;;;;;;:::i;:::-;;:::i;23943:308::-;;;;;;;;;;-1:-1:-1;23943:308:0;;;;;:::i;:::-;;:::i;46554:45::-;;;;;;;;;;;;;;;46411:33;;;;;;;;;;-1:-1:-1;46411:33:0;;;;;;;;;;;24813:399;;;;;;;;;;-1:-1:-1;24813:399:0;;;;;:::i;:::-;;:::i;22056:327::-;;;;;;;;;;-1:-1:-1;22056:327:0;;;;;:::i;:::-;;:::i;46506:41::-;;;;;;;;;;;;;;;47167:109;;;;;;;;;;-1:-1:-1;47167:109:0;;;;;:::i;:::-;;:::i;46975:91::-;;;;;;;;;;-1:-1:-1;46962:1:0;46975:91;47072:89;46451:48;;;;;;;;;;;;;;;48771:315;;;;;;;;;;-1:-1:-1;48771:315:0;;;;;:::i;:::-;;:::i;24322:164::-;;;;;;;;;;-1:-1:-1;24322:164:0;;;;;:::i;:::-;;:::i;1791:201::-;;;;;;;;;;-1:-1:-1;1791:201:0;;;;;:::i;:::-;;:::i;16065:615::-;16150:4;-1:-1:-1;;;;;;;;;16450:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16527:25:0;;;16450:102;:179;;;-1:-1:-1;;;;;;;;;;16604:25:0;;;16450:179;16430:199;16065:615;-1:-1:-1;;16065:615:0:o;21712:100::-;21766:13;21799:5;21792:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21712:100;:::o;23667:204::-;23735:7;23760:16;23768:7;23760;:16::i;:::-;23755:64;;23785:34;;-1:-1:-1;;;23785:34:0;;;;;;;;;;;23755:64;-1:-1:-1;23839:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23839:24:0;;23667:204::o;23215:386::-;23288:13;23304:16;23312:7;23304;:16::i;:::-;23288:32;-1:-1:-1;44115:10:0;-1:-1:-1;;;;;23337:28:0;;;23333:175;;23385:44;23402:5;44115:10;24322:164;:::i;23385:44::-;23380:128;;23457:35;;-1:-1:-1;;;23457:35:0;;;;;;;;;;;23380:128;23520:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23520:29:0;-1:-1:-1;;;;;23520:29:0;;;;;;;;;23565:28;;23520:24;;23565:28;;;;;;;23277:324;23215:386;;:::o;48541:113::-;771:13;:11;:13::i;:::-;48616:14:::1;:32:::0;;;::::1;;;;-1:-1:-1::0;;48616:32:0;;::::1;::::0;;;::::1;::::0;;48541:113::o;32932:2800::-;33066:27;33096;33115:7;33096:18;:27::i;:::-;33066:57;;33181:4;-1:-1:-1;;;;;33140:45:0;33156:19;-1:-1:-1;;;;;33140:45:0;;33136:86;;33194:28;;-1:-1:-1;;;33194:28:0;;;;;;;;;;;33136:86;33236:27;31662:21;;;31489:15;31704:4;31697:36;31786:4;31770:21;;31876:26;;44115:10;32629:30;;;-1:-1:-1;;;;;32327:26:0;;32608:19;;;32605:55;33415:174;;33502:43;33519:4;44115:10;24322:164;:::i;33502:43::-;33497:92;;33554:35;;-1:-1:-1;;;33554:35:0;;;;;;;;;;;33497:92;-1:-1:-1;;;;;33606:16:0;;33602:52;;33631:23;;-1:-1:-1;;;33631:23:0;;;;;;;;;;;33602:52;33803:15;33800:160;;;33943:1;33922:19;33915:30;33800:160;-1:-1:-1;;;;;34338:24:0;;;;;;;:18;:24;;;;;;34336:26;;-1:-1:-1;;34336:26:0;;;34407:22;;;;;;;;;34405:24;;-1:-1:-1;34405:24:0;;;21400:11;21376:22;21372:40;21359:62;-1:-1:-1;;;21359:62:0;34700:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;34994:46:0;;:51;;34990:626;;35098:1;35088:11;;35066:19;35221:30;;;:17;:30;;;;;;:35;;35217:384;;35359:13;;35344:11;:28;35340:242;;35506:30;;;;:17;:30;;;;;:52;;;35340:242;35047:569;34990:626;35663:7;35659:2;-1:-1:-1;;;;;35644:27:0;35653:4;-1:-1:-1;;;;;35644:27:0;;;;;;;;;;;35682:42;33055:2677;;;32932:2800;;;:::o;24557:185::-;24695:39;24712:4;24718:2;24722:7;24695:39;;;;;;;;;;;;:16;:39::i;:::-;24557:185;;;:::o;48660:105::-;771:13;:11;:13::i;:::-;48716:43:::1;::::0;-1:-1:-1;;;;;48716:20:0;::::1;::::0;48737:21:::1;48716:43:::0;::::1;;;::::0;::::1;::::0;;;48737:21;48716:20;:43;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48660:105:::0;:::o;48346:86::-;771:13;:11;:13::i;:::-;48413:7:::1;:13;48423:3:::0;;48413:7;:13:::1;:::i;21501:144::-:0;21565:7;21608:27;21627:7;21608:18;:27::i;46252:115::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16744:224::-;16808:7;-1:-1:-1;;;;;16832:19:0;;16828:60;;16860:28;;-1:-1:-1;;;16860:28:0;;;;;;;;;;;16828:60;-1:-1:-1;;;;;;16906:25:0;;;;;:18;:25;;;;;;11299:13;16906:54;;16744:224::o;1533:103::-;771:13;:11;:13::i;:::-;1598:30:::1;1625:1;1598:18;:30::i;:::-;1533:103::o:0;47072:89::-;47118:7;47141:14;14888:13;;;14814:95;47141:14;47134:21;;47072:89;:::o;21881:104::-;21937:13;21970:7;21963:14;;;;;:::i;48438:97::-;771:13;:11;:13::i;:::-;48505:10:::1;:24:::0;;-1:-1:-1;;48505:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48438:97::o;47383:957::-;47466:10;;;;47458:24;;;;-1:-1:-1;;;47458:24:0;;10403:2:1;47458:24:0;;;10385:21:1;10442:1;10422:18;;;10415:29;-1:-1:-1;;;10460:18:1;;;10453:31;10501:18;;47458:24:0;;;;;;;;;47493:21;47534:1;47517:14;14888:13;;;14814:95;47517:14;:18;47493:42;;47582:9;47569:8;47553:13;:24;47552:39;;47544:53;;;;-1:-1:-1;;;47544:53:0;;10732:2:1;47544:53:0;;;10714:21:1;10771:1;10751:18;;;10744:29;-1:-1:-1;;;10789:18:1;;;10782:31;10830:18;;47544:53:0;10530:324:1;47544:53:0;47645:10;47608:20;17139:25;;;:18;:25;;11436:2;17139:25;;;;;:49;;11299:13;17138:80;47702:15;47674:23;;;47673:44;;47665:58;;;;-1:-1:-1;;;47665:58:0;;11061:2:1;47665:58:0;;;11043:21:1;11100:1;11080:18;;;11073:29;-1:-1:-1;;;11118:18:1;;;11111:31;11159:18;;47665:58:0;10859:324:1;47665:58:0;47738:14;;;;;;;:23;;:48;;;47782:4;47765:13;:21;;47738:48;47734:558;;;47832:8;47820:9;:20;47807:9;:33;;47799:47;;;;-1:-1:-1;;;47799:47:0;;11390:2:1;47799:47:0;;;11372:21:1;11429:1;11409:18;;;11402:29;-1:-1:-1;;;11447:18:1;;;11440:31;11488:18;;47799:47:0;11188:324:1;47799:47:0;47734:558;;;47873:24;47915:19;47900:12;:34;:97;;47985:12;47900:97;;;47950:19;47900:97;47873:124;;48008:20;48053:16;48031:19;:38;:109;;48139:1;48031:109;;;48107:16;48085:19;:38;48031:109;48008:132;;48210:12;48199:8;:23;:53;;48251:1;48199:53;;;48236:12;48225:8;:23;48199:53;48186:9;:67;48173:9;:80;;48151:131;;;;-1:-1:-1;;;48151:131:0;;11719:2:1;48151:131:0;;;11701:21:1;11758:1;11738:18;;;11731:29;-1:-1:-1;;;11776:18:1;;;11769:31;11817:18;;48151:131:0;11517:324:1;48151:131:0;47862:430;;47734:558;47439:860;;48307:27;48313:10;48325:8;48307:5;:27::i;:::-;47383:957;:::o;23943:308::-;44115:10;-1:-1:-1;;;;;24042:31:0;;;24038:61;;24082:17;;-1:-1:-1;;;24082:17:0;;;;;;;;;;;24038:61;44115:10;24112:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24112:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24112:60:0;;;;;;;;;;24188:55;;540:41:1;;;24112:49:0;;44115:10;24188:55;;513:18:1;24188:55:0;;;;;;;23943:308;;:::o;24813:399::-;24980:31;24993:4;24999:2;25003:7;24980:12;:31::i;:::-;-1:-1:-1;;;;;25026:14:0;;;:19;25022:183;;25065:56;25096:4;25102:2;25106:7;25115:5;25065:30;:56::i;:::-;25060:145;;25149:40;;-1:-1:-1;;;25149:40:0;;;;;;;;;;;25060:145;24813:399;;;;:::o;22056:327::-;22129:13;22160:16;22168:7;22160;:16::i;:::-;22155:59;;22185:29;;-1:-1:-1;;;22185:29:0;;;;;;;;;;;22155:59;22227:21;22251:10;:8;:10::i;:::-;22227:34;;22285:7;22279:21;22304:1;22279:26;:96;;;;;;;;;;;;;;;;;22332:7;22341:18;22351:7;22341:9;:18::i;:::-;22315:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22279:96;22272:103;22056:327;-1:-1:-1;;;22056:327:0:o;47167:109::-;-1:-1:-1;;;;;17139:25:0;;47227:7;17139:25;;;:18;:25;;11436:2;17139:25;;;;11299:13;17139:49;;17138:80;47250:20;17050:176;48771:315;771:13;:11;:13::i;:::-;48887:9:::1;48882:199;48906:17;:24;48902:1;:28;48882:199;;;48989:9;48970:12;48983:1;48970:15;;;;;;;;:::i;:::-;;;;;;;48954:13;15385:12:::0;;46962:1;15369:13;-1:-1:-1;;15369:28:0;;;:46;;15119:315;48954:13:::1;:31;;;;:::i;:::-;:44;;48946:70;;;::::0;-1:-1:-1;;;48946:70:0;;13110:2:1;48946:70:0::1;::::0;::::1;13092:21:1::0;13149:2;13129:18;;;13122:30;-1:-1:-1;;;13168:18:1;;;13161:43;13221:18;;48946:70:0::1;12908:337:1::0;48946:70:0::1;49025:48;49035:17;49053:1;49035:20;;;;;;;;:::i;:::-;;;;;;;49057:12;49070:1;49057:15;;;;;;;;:::i;:::-;;;;;;;49025:9;:48::i;:::-;48932:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48882:199;;24322:164:::0;-1:-1:-1;;;;;24443:25:0;;;24419:4;24443:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24322:164::o;1791:201::-;771:13;:11;:13::i;:::-;-1:-1:-1;;;;;1880:22:0;::::1;1872:73;;;::::0;-1:-1:-1;;;1872:73:0;;13592:2:1;1872:73:0::1;::::0;::::1;13574:21:1::0;13631:2;13611:18;;;13604:30;13670:34;13650:18;;;13643:62;-1:-1:-1;;;13721:18:1;;;13714:36;13767:19;;1872:73:0::1;13390:402:1::0;1872:73:0::1;1956:28;1975:8;1956:18;:28::i;25467:273::-:0;25524:4;25580:7;46962:1;25561:26;;:66;;;;;25614:13;;25604:7;:23;25561:66;:152;;;;-1:-1:-1;;25665:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25665:43:0;:48;;25467:273::o;1050:132::-;931:7;958:6;-1:-1:-1;;;;;958:6:0;44115:10;1114:23;1106:68;;;;-1:-1:-1;;;1106:68:0;;13999:2:1;1106:68:0;;;13981:21:1;;;14018:18;;;14011:30;14077:34;14057:18;;;14050:62;14129:18;;1106:68:0;13797:356:1;18418:1129:0;18485:7;18520;;46962:1;18569:23;18565:915;;18622:13;;18615:4;:20;18611:869;;;18660:14;18677:23;;;:17;:23;;;;;;;-1:-1:-1;;;18766:23:0;;:28;;18762:699;;19285:113;19292:6;19302:1;19292:11;19285:113;;-1:-1:-1;;;19363:6:0;19345:25;;;;:17;:25;;;;;;19285:113;;18762:699;18637:843;18611:869;19508:31;;-1:-1:-1;;;19508:31:0;;;;;;;;;;;2152:191;2226:16;2245:6;;-1:-1:-1;;;;;2262:17:0;;;-1:-1:-1;;;;;;2262:17:0;;;;;;2295:40;;2245:6;;;;;;;2295:40;;2226:16;2295:40;2215:128;2152:191;:::o;27298:1529::-;27386:13;;-1:-1:-1;;;;;27414:16:0;;27410:48;;27439:19;;-1:-1:-1;;;27439:19:0;;;;;;;;;;;27410:48;27473:8;27485:1;27473:13;27469:44;;27495:18;;-1:-1:-1;;;27495:18:0;;;;;;;;;;;27469:44;-1:-1:-1;;;;;28001:22:0;;;;;;:18;:22;;11436:2;28001:22;;:70;;28039:31;28027:44;;28001:70;;;21400:11;21376:22;21372:40;-1:-1:-1;23119:15:0;;23094:23;23090:45;21369:51;21359:62;28314:31;;;;:17;:31;;;;;:173;28332:12;28563:23;;;28601:101;28628:35;;28653:9;;;;;-1:-1:-1;;;;;28628:35:0;;;28645:1;;28628:35;;28645:1;;28628:35;28697:3;28687:7;:13;28601:101;;28718:13;:19;-1:-1:-1;24557:185:0;;;:::o;39683:716::-;39867:88;;-1:-1:-1;;;39867:88:0;;39846:4;;-1:-1:-1;;;;;39867:45:0;;;;;:88;;44115:10;;39934:4;;39940:7;;39949:5;;39867:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39867:88:0;;;;;;;;-1:-1:-1;;39867:88:0;;;;;;;;;;;;:::i;:::-;;;39863:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40150:6;:13;40167:1;40150:18;40146:235;;40196:40;;-1:-1:-1;;;40196:40:0;;;;;;;;;;;40146:235;40339:6;40333:13;40324:6;40320:2;40316:15;40309:38;39863:529;-1:-1:-1;;;;;;40026:64:0;-1:-1:-1;;;40026:64:0;;-1:-1:-1;39683:716:0;;;;;;:::o;46782:94::-;46834:13;46863:7;46856:14;;;;;:::i;44239:1960::-;44708:4;44702:11;;44715:3;44698:21;;44793:17;;;;45489:11;;;45368:5;45621:2;45635;45625:13;;45617:22;45489:11;45604:36;45676:2;45666:13;;45260:697;45695:4;45260:697;;;45886:1;45881:3;45877:11;45870:18;;45937:2;45931:4;45927:13;45923:2;45919:22;45914:3;45906:36;45790:2;45780:13;;45260:697;;;-1:-1:-1;45987:13:0;;;-1:-1:-1;;46102:12:0;;;46162:19;;;46102:12;44239:1960;-1:-1:-1;44239:1960:0:o;25824:104::-;25893:27;25903:2;25907:8;25893:27;;;;;;;;;;;;26467:19;26473:2;26477:8;26467:5;:19::i;:::-;-1:-1:-1;;;;;26528:14:0;;;:19;26524:483;;26582:13;;26630:14;;;26663:233;26694:62;26733:1;26737:2;26741:7;;;;;;26750:5;26694:30;:62::i;:::-;26689:167;;26792:40;;-1:-1:-1;;;26792:40:0;;;;;;;;;;;26689:167;26891:3;26883:5;:11;26663:233;;26978:3;26961:13;;:20;26957:34;;26983:8;;;26957:34;26549:458;;26344:681;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:160::-;2425:20;;2481:13;;2474:21;2464:32;;2454:60;;2510:1;2507;2500:12;2525:180;2581:6;2634:2;2622:9;2613:7;2609:23;2605:32;2602:52;;;2650:1;2647;2640:12;2602:52;2673:26;2689:9;2673:26;:::i;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3043:186::-;3102:6;3155:2;3143:9;3134:7;3130:23;3126:32;3123:52;;;3171:1;3168;3161:12;3123:52;3194:29;3213:9;3194:29;:::i;3234:592::-;3305:6;3313;3366:2;3354:9;3345:7;3341:23;3337:32;3334:52;;;3382:1;3379;3372:12;3334:52;3422:9;3409:23;3451:18;3492:2;3484:6;3481:14;3478:34;;;3508:1;3505;3498:12;3478:34;3546:6;3535:9;3531:22;3521:32;;3591:7;3584:4;3580:2;3576:13;3572:27;3562:55;;3613:1;3610;3603:12;3562:55;3653:2;3640:16;3679:2;3671:6;3668:14;3665:34;;;3695:1;3692;3685:12;3665:34;3740:7;3735:2;3726:6;3722:2;3718:15;3714:24;3711:37;3708:57;;;3761:1;3758;3751:12;3708:57;3792:2;3784:11;;;;;3814:6;;-1:-1:-1;3234:592:1;;-1:-1:-1;;;;3234:592:1:o;3831:254::-;3896:6;3904;3957:2;3945:9;3936:7;3932:23;3928:32;3925:52;;;3973:1;3970;3963:12;3925:52;3996:29;4015:9;3996:29;:::i;:::-;3986:39;;4044:35;4075:2;4064:9;4060:18;4044:35;:::i;:::-;4034:45;;3831:254;;;;;:::o;4090:127::-;4151:10;4146:3;4142:20;4139:1;4132:31;4182:4;4179:1;4172:15;4206:4;4203:1;4196:15;4222:275;4293:2;4287:9;4358:2;4339:13;;-1:-1:-1;;4335:27:1;4323:40;;4393:18;4378:34;;4414:22;;;4375:62;4372:88;;;4440:18;;:::i;:::-;4476:2;4469:22;4222:275;;-1:-1:-1;4222:275:1:o;4502:980::-;4597:6;4605;4613;4621;4674:3;4662:9;4653:7;4649:23;4645:33;4642:53;;;4691:1;4688;4681:12;4642:53;4714:29;4733:9;4714:29;:::i;:::-;4704:39;;4762:2;4783:38;4817:2;4806:9;4802:18;4783:38;:::i;:::-;4773:48;;4868:2;4857:9;4853:18;4840:32;4830:42;;4923:2;4912:9;4908:18;4895:32;4946:18;4987:2;4979:6;4976:14;4973:34;;;5003:1;5000;4993:12;4973:34;5041:6;5030:9;5026:22;5016:32;;5086:7;5079:4;5075:2;5071:13;5067:27;5057:55;;5108:1;5105;5098:12;5057:55;5144:2;5131:16;5166:2;5162;5159:10;5156:36;;;5172:18;;:::i;:::-;5214:53;5257:2;5238:13;;-1:-1:-1;;5234:27:1;5230:36;;5214:53;:::i;:::-;5201:66;;5290:2;5283:5;5276:17;5330:7;5325:2;5320;5316;5312:11;5308:20;5305:33;5302:53;;;5351:1;5348;5341:12;5302:53;5406:2;5401;5397;5393:11;5388:2;5381:5;5377:14;5364:45;5450:1;5445:2;5440;5433:5;5429:14;5425:23;5418:34;;5471:5;5461:15;;;;;4502:980;;;;;;;:::o;5487:183::-;5547:4;5580:18;5572:6;5569:30;5566:56;;;5602:18;;:::i;:::-;-1:-1:-1;5647:1:1;5643:14;5659:4;5639:25;;5487:183::o;5675:662::-;5729:5;5782:3;5775:4;5767:6;5763:17;5759:27;5749:55;;5800:1;5797;5790:12;5749:55;5836:6;5823:20;5862:4;5886:60;5902:43;5942:2;5902:43;:::i;:::-;5886:60;:::i;:::-;5980:15;;;6066:1;6062:10;;;;6050:23;;6046:32;;;6011:12;;;;6090:15;;;6087:35;;;6118:1;6115;6108:12;6087:35;6154:2;6146:6;6142:15;6166:142;6182:6;6177:3;6174:15;6166:142;;;6248:17;;6236:30;;6286:12;;;;6199;;6166:142;;;-1:-1:-1;6326:5:1;5675:662;-1:-1:-1;;;;;;5675:662:1:o;6342:1146::-;6460:6;6468;6521:2;6509:9;6500:7;6496:23;6492:32;6489:52;;;6537:1;6534;6527:12;6489:52;6577:9;6564:23;6606:18;6647:2;6639:6;6636:14;6633:34;;;6663:1;6660;6653:12;6633:34;6701:6;6690:9;6686:22;6676:32;;6746:7;6739:4;6735:2;6731:13;6727:27;6717:55;;6768:1;6765;6758:12;6717:55;6804:2;6791:16;6826:4;6850:60;6866:43;6906:2;6866:43;:::i;6850:60::-;6944:15;;;7026:1;7022:10;;;;7014:19;;7010:28;;;6975:12;;;;7050:19;;;7047:39;;;7082:1;7079;7072:12;7047:39;7106:11;;;;7126:148;7142:6;7137:3;7134:15;7126:148;;;7208:23;7227:3;7208:23;:::i;:::-;7196:36;;7159:12;;;;7252;;;;7126:148;;;7293:5;-1:-1:-1;;7336:18:1;;7323:32;;-1:-1:-1;;7367:16:1;;;7364:36;;;7396:1;7393;7386:12;7364:36;;7419:63;7474:7;7463:8;7452:9;7448:24;7419:63;:::i;:::-;7409:73;;;6342:1146;;;;;:::o;7493:260::-;7561:6;7569;7622:2;7610:9;7601:7;7597:23;7593:32;7590:52;;;7638:1;7635;7628:12;7590:52;7661:29;7680:9;7661:29;:::i;:::-;7651:39;;7709:38;7743:2;7732:9;7728:18;7709:38;:::i;7758:380::-;7837:1;7833:12;;;;7880;;;7901:61;;7955:4;7947:6;7943:17;7933:27;;7901:61;8008:2;8000:6;7997:14;7977:18;7974:38;7971:161;;8054:10;8049:3;8045:20;8042:1;8035:31;8089:4;8086:1;8079:15;8117:4;8114:1;8107:15;7971:161;;7758:380;;;:::o;8269:545::-;8371:2;8366:3;8363:11;8360:448;;;8407:1;8432:5;8428:2;8421:17;8477:4;8473:2;8463:19;8547:2;8535:10;8531:19;8528:1;8524:27;8518:4;8514:38;8583:4;8571:10;8568:20;8565:47;;;-1:-1:-1;8606:4:1;8565:47;8661:2;8656:3;8652:12;8649:1;8645:20;8639:4;8635:31;8625:41;;8716:82;8734:2;8727:5;8724:13;8716:82;;;8779:17;;;8760:1;8749:13;8716:82;;8990:1206;9114:18;9109:3;9106:27;9103:53;;;9136:18;;:::i;:::-;9165:94;9255:3;9215:38;9247:4;9241:11;9215:38;:::i;:::-;9209:4;9165:94;:::i;:::-;9285:1;9310:2;9305:3;9302:11;9327:1;9322:616;;;;9982:1;9999:3;9996:93;;;-1:-1:-1;10055:19:1;;;10042:33;9996:93;-1:-1:-1;;8947:1:1;8943:11;;;8939:24;8935:29;8925:40;8971:1;8967:11;;;8922:57;10102:78;;9295:895;;9322:616;8216:1;8209:14;;;8253:4;8240:18;;-1:-1:-1;;9358:17:1;;;9459:9;9481:229;9495:7;9492:1;9489:14;9481:229;;;9584:19;;;9571:33;9556:49;;9691:4;9676:20;;;;9644:1;9632:14;;;;9511:12;9481:229;;;9485:3;9738;9729:7;9726:16;9723:159;;;9862:1;9858:6;9852:3;9846;9843:1;9839:11;9835:21;9831:34;9827:39;9814:9;9809:3;9805:19;9792:33;9788:79;9780:6;9773:95;9723:159;;;9925:1;9919:3;9916:1;9912:11;9908:19;9902:4;9895:33;9295:895;;8990:1206;;;:::o;11846:663::-;12126:3;12164:6;12158:13;12180:66;12239:6;12234:3;12227:4;12219:6;12215:17;12180:66;:::i;:::-;12309:13;;12268:16;;;;12331:70;12309:13;12268:16;12378:4;12366:17;;12331:70;:::i;:::-;-1:-1:-1;;;12423:20:1;;12452:22;;;12501:1;12490:13;;11846:663;-1:-1:-1;;;;11846:663:1:o;12514:127::-;12575:10;12570:3;12566:20;12563:1;12556:31;12606:4;12603:1;12596:15;12630:4;12627:1;12620:15;12646:127;12707:10;12702:3;12698:20;12695:1;12688:31;12738:4;12735:1;12728:15;12762:4;12759:1;12752:15;12778:125;12843:9;;;12864:10;;;12861:36;;;12877:18;;:::i;13250:135::-;13289:3;13310:17;;;13307:43;;13330:18;;:::i;:::-;-1:-1:-1;13377:1:1;13366:13;;13250:135::o;14158:489::-;-1:-1:-1;;;;;14427:15:1;;;14409:34;;14479:15;;14474:2;14459:18;;14452:43;14526:2;14511:18;;14504:34;;;14574:3;14569:2;14554:18;;14547:31;;;14352:4;;14595:46;;14621:19;;14613:6;14595:46;:::i;:::-;14587:54;14158:489;-1:-1:-1;;;;;;14158:489:1:o;14652:249::-;14721:6;14774:2;14762:9;14753:7;14749:23;14745:32;14742:52;;;14790:1;14787;14780:12;14742:52;14822:9;14816:16;14841:30;14865:5;14841:30;:::i
Swarm Source
ipfs://e0cbe9a5b082d05e54cc6d8f0ac9146a6cc8e8bc17ba64aabf614d4cf1d997fd
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.