CRC-721
Overview
Max Total Supply
24 BalliesAllStar
Holders
16
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
1 BalliesAllStarLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
BalliesAllStar
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2023-05-11 */ // Sources flattened with hardhat v2.9.9 https://hardhat.org // File erc721a/contracts/[email protected] // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ 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); } // File erc721a/contracts/[email protected] // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ 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))) : ''; } /** * @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) } } } // File erc721a/contracts/extensions/[email protected] // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721AQueryable compliant contract. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File erc721a/contracts/extensions/[email protected] // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * - `extraData` = `0` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * - `extraData` = `<Extra data when token was burned>` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` * - `extraData` = `<Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File contracts/BalliesAllStar.sol //SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.17; /* ▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄ ▄ ▄ ▄▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄ ▐░░░░░░░░░░▌ ▐░░░░░░░░░░░▌▐░▌ ▐░▌ ▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌ ▐░█▀▀▀▀▀▀▀█░▌▐░█▀▀▀▀▀▀▀█░▌▐░▌ ▐░▌ ▀▀▀▀█░█▀▀▀▀ ▐░█▀▀▀▀▀▀▀▀▀ ▐░█▀▀▀▀▀▀▀▀▀ ▐░▌ ▐░▌▐░▌ ▐░▌▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░█▄▄▄▄▄▄▄█░▌▐░█▄▄▄▄▄▄▄█░▌▐░▌ ▐░▌ ▐░▌ ▐░█▄▄▄▄▄▄▄▄▄ ▐░█▄▄▄▄▄▄▄▄▄ ▐░░░░░░░░░░▌ ▐░░░░░░░░░░░▌▐░▌ ▐░▌ ▐░▌ ▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌ ▐░█▀▀▀▀▀▀▀█░▌▐░█▀▀▀▀▀▀▀█░▌▐░▌ ▐░▌ ▐░▌ ▐░█▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀█░▌ ▐░▌ ▐░▌▐░▌ ▐░▌▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░█▄▄▄▄▄▄▄█░▌▐░▌ ▐░▌▐░█▄▄▄▄▄▄▄▄▄ ▐░█▄▄▄▄▄▄▄▄▄ ▄▄▄▄█░█▄▄▄▄ ▐░█▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄█░▌ ▐░░░░░░░░░░▌ ▐░▌ ▐░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌ ▀▀▀▀▀▀▀▀▀▀ ▀ ▀ ▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀ ▄▄▄▄▄▄▄▄▄▄▄ ▄ ▄ ▄▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄▄▄ ▐░░░░░░░░░░░▌▐░▌ ▐░▌ ▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌ ▐░█▀▀▀▀▀▀▀█░▌▐░▌ ▐░▌ ▐░█▀▀▀▀▀▀▀▀▀ ▀▀▀▀█░█▀▀▀▀ ▐░█▀▀▀▀▀▀▀█░▌▐░█▀▀▀▀▀▀▀█░▌▐░█▀▀▀▀▀▀▀▀▀ ▐░▌ ▐░▌▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌▐░▌ ▐░▌▐░▌ ▐░█▄▄▄▄▄▄▄█░▌▐░▌ ▐░▌ ▄▄▄▄▄▄▄▄▄▄▄ ▐░█▄▄▄▄▄▄▄▄▄ ▐░▌ ▐░█▄▄▄▄▄▄▄█░▌▐░█▄▄▄▄▄▄▄█░▌▐░█▄▄▄▄▄▄▄▄▄ ▐░░░░░░░░░░░▌▐░▌ ▐░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌ ▐░▌ ▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌ ▐░█▀▀▀▀▀▀▀█░▌▐░▌ ▐░▌ ▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀█░▌ ▐░▌ ▐░█▀▀▀▀▀▀▀█░▌▐░█▀▀▀▀█░█▀▀ ▀▀▀▀▀▀▀▀▀█░▌ ▐░▌ ▐░▌▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌▐░▌ ▐░▌ ▐░▌ ▐░▌ ▐░▌▐░█▄▄▄▄▄▄▄▄▄ ▐░█▄▄▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄▄▄█░▌ ▐░▌ ▐░▌ ▐░▌▐░▌ ▐░▌ ▄▄▄▄▄▄▄▄▄█░▌ ▐░▌ ▐░▌▐░░░░░░░░░░░▌▐░░░░░░░░░░░▌ ▐░░░░░░░░░░░▌ ▐░▌ ▐░▌ ▐░▌▐░▌ ▐░▌▐░░░░░░░░░░░▌ ▀ ▀ ▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀ ▀▀▀▀▀▀▀▀▀▀▀ ▀ ▀ ▀ ▀ ▀ ▀▀▀▀▀▀▀▀▀▀▀ */ contract BalliesAllStar is ERC721A, ERC721AQueryable, Ownable { uint16 public collectionSize = 24; uint16 public maxQtyPerBatchMint = 24; string private _baseTokenURI = "ipfs://bafybeicm5zk4jnelp737gbgpvz4mxgvo5eomyxyzer6q5utgshf7s2b7ui/"; string private _contractURI = "ipfs://QmWAt1AzL2qiuAfQmJywT5HAgK9MYxh6FcBfC1SUkbb9E8/contracts/contract_uri"; constructor() ERC721A("Ballies All-Stars", "BalliesAllStar") {} /// Restricted Functions /** * Admin mint * @param to to address * @param qty batch mint quantity */ function adminMint(address to, uint16 qty) external onlyOwner { require(qty <= maxQtyPerBatchMint, "Ballies: invalid max qty"); require(to != address(0), "Ballies: invalid address"); require( _totalMinted() + qty <= collectionSize, "Ballies: reached max supply" ); _mint(to, qty); } /** * Set base URI for metadata * @param uri new uri */ function setBaseURI(string calldata uri) external onlyOwner { _baseTokenURI = uri; } /** * Update collection size * @param _collectionSize new collection size */ function setCollectionSize(uint16 _collectionSize) external onlyOwner { require( _collectionSize >= _totalMinted(), "Ballies: lower than already minted" ); collectionSize = _collectionSize; } /** * Update contract uri * @param uri new uri */ function setContractURI(string calldata uri) external onlyOwner { _contractURI = uri; } /** * Update max quantity per batch mint * @param _maxQtyPerBatchMint batchm mint quantity */ function setMaxQtyPerBatchMint( uint16 _maxQtyPerBatchMint ) external onlyOwner { maxQtyPerBatchMint = _maxQtyPerBatchMint; } // Withdraw contract funds to treasury wallet function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } /** * Check if token exists * @param _tokenId token id * @return bool */ function exists(uint256 _tokenId) external view returns (bool) { return _exists(_tokenId); } /** * Get contract URI * @return string */ function contractURI() public view returns (string memory) { return _contractURI; } /** * Get token uri * @param tokenId token id * @return string */ function tokenURI( uint256 tokenId ) public view override(ERC721A, IERC721A) returns (string memory) { require(_exists(tokenId), "Ballies: nonexistent token"); return super.tokenURI(tokenId); } /** * Override base uri * @return string token uri */ function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } /** * Override start token id to 1 * @return uint256 start token id */ function _startTokenId() internal view virtual override returns (uint256) { return 1; } /// Helper Functions function delBuildNumber10() internal pure {} // etherscan trick }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"InvalidQueryRange","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":"uint16","name":"qty","type":"uint16"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxQtyPerBatchMint","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_collectionSize","type":"uint16"}],"name":"setCollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxQtyPerBatchMint","type":"uint16"}],"name":"setMaxQtyPerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6008805463ffffffff60a01b19166203000360a31b179055610100604052604360808181529062001ffe60a0396009906200003b9082620001f5565b506040518060800160405280604c815260200162001fb2604c9139600a90620000659082620001f5565b503480156200007357600080fd5b506040518060400160405280601181526020017042616c6c69657320416c6c2d537461727360781b8152506040518060400160405280600e81526020016d2130b63634b2b9a0b63629ba30b960911b8152508160029081620000d69190620001f5565b506003620000e58282620001f5565b5050600160005550620000f833620000fe565b620002c1565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200017b57607f821691505b6020821081036200019c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001f057600081815260208120601f850160051c81016020861015620001cb5750805b601f850160051c820191505b81811015620001ec57828155600101620001d7565b5050505b505050565b81516001600160401b0381111562000211576200021162000150565b620002298162000222845462000166565b84620001a2565b602080601f831160018114620002615760008415620002485750858301515b600019600386901b1c1916600185901b178555620001ec565b600085815260208120601f198616915b82811015620002925788860151825594840194600190910190840162000271565b5085821015620002b15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611ce180620002d16000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f5780639b8bf816116100a2578063c87b56dd11610071578063c87b56dd1461043e578063e8a3d48514610451578063e985e9c514610459578063f2fde38b1461046c57600080fd5b80639b8bf816146103e5578063a22cb465146103f8578063b88d4fde1461040b578063c23dc68f1461041e57600080fd5b8063938e3d7b116100de578063938e3d7b146103a257806394b75b7f146103b557806395d89b41146103ca57806399a2557a146103d257600080fd5b8063715018a6146103565780637ab1c6231461035e5780638462151c146103715780638da5cb5b1461039157600080fd5b80633ccfd60b1161018757806355f804b31161015657806355f804b3146102fd5780635bbb2177146103105780636352211e1461033057806370a082311461034357600080fd5b80633ccfd60b146102a757806342842e0e146102af57806345c0f533146102c25780634f558e79146102ea57600080fd5b8063095ea7b3116101c3578063095ea7b31461025257806318160ddd1461026757806323b872dd146102815780633ae7e5891461029457600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f8366004611597565b61047f565b60405190151581526020015b60405180910390f35b61021a6104d1565b6040516102099190611604565b61023a610235366004611617565b610563565b6040516001600160a01b039091168152602001610209565b61026561026036600461164c565b6105a7565b005b60015460005403600019015b604051908152602001610209565b61026561028f366004611676565b610647565b6102656102a23660046116c4565b6107e0565b61026561080a565b6102656102bd366004611676565b610845565b6008546102d790600160a01b900461ffff1681565b60405161ffff9091168152602001610209565b6101fd6102f8366004611617565b610865565b61026561030b3660046116df565b610870565b61032361031e366004611798565b610885565b604051610209919061187b565b61023a61033e366004611617565b610953565b6102736103513660046118bd565b61095e565b6102656109ad565b61026561036c3660046118d8565b6109c1565b61038461037f3660046118bd565b610b0b565b604051610209919061190b565b6008546001600160a01b031661023a565b6102656103b03660046116df565b610c14565b6008546102d790600160b01b900461ffff1681565b61021a610c29565b6103846103e0366004611943565b610c38565b6102656103f33660046116c4565b610dc0565b610265610406366004611976565b610e4f565b6102656104193660046119b2565b610ee4565b61043161042c366004611617565b610f2e565b6040516102099190611a72565b61021a61044c366004611617565b610fb6565b61021a611016565b6101fd610467366004611a80565b611025565b61026561047a3660046118bd565b611053565b60006301ffc9a760e01b6001600160e01b0319831614806104b057506380ac58cd60e01b6001600160e01b03198316145b806104cb5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104e090611aaa565b80601f016020809104026020016040519081016040528092919081815260200182805461050c90611aaa565b80156105595780601f1061052e57610100808354040283529160200191610559565b820191906000526020600020905b81548152906001019060200180831161053c57829003601f168201915b5050505050905090565b600061056e826110cc565b61058b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105b282610953565b9050336001600160a01b038216146105eb576105ce8133611025565b6105eb576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061065282611101565b9050836001600160a01b0316816001600160a01b0316146106855760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106d2576106b58633611025565b6106d257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106f957604051633a954ecd60e21b815260040160405180910390fd5b801561070457600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610796576001840160008181526004602052604081205490036107945760005481146107945760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6107e8611170565b6008805461ffff909216600160b01b0261ffff60b01b19909216919091179055565b610812611170565b6040514790339082156108fc029083906000818181858888f19350505050158015610841573d6000803e3d6000fd5b5050565b61086083838360405180602001604052806000815250610ee4565b505050565b60006104cb826110cc565b610878611170565b6009610860828483611b2a565b805160609060008167ffffffffffffffff8111156108a5576108a5611751565b6040519080825280602002602001820160405280156108f757816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816108c35790505b50905060005b82811461094b5761092685828151811061091957610919611beb565b6020026020010151610f2e565b82828151811061093857610938611beb565b60209081029190910101526001016108fd565b509392505050565b60006104cb82611101565b60006001600160a01b038216610987576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6109b5611170565b6109bf60006111ca565b565b6109c9611170565b60085461ffff600160b01b90910481169082161115610a2f5760405162461bcd60e51b815260206004820152601860248201527f42616c6c6965733a20696e76616c6964206d617820717479000000000000000060448201526064015b60405180910390fd5b6001600160a01b038216610a855760405162461bcd60e51b815260206004820152601860248201527f42616c6c6965733a20696e76616c6964206164647265737300000000000000006044820152606401610a26565b60085461ffff600160a01b9091048116908216610aa56000546000190190565b610aaf9190611c01565b1115610afd5760405162461bcd60e51b815260206004820152601b60248201527f42616c6c6965733a2072656163686564206d617820737570706c7900000000006044820152606401610a26565b610841828261ffff1661121c565b60606000806000610b1b8561095e565b905060008167ffffffffffffffff811115610b3857610b38611751565b604051908082528060200260200182016040528015610b61578160200160208202803683370190505b509050610b8e60408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610c0857610ba1816112fc565b91508160400151610c005781516001600160a01b031615610bc157815194505b876001600160a01b0316856001600160a01b031603610c005780838780600101985081518110610bf357610bf3611beb565b6020026020010181815250505b600101610b91565b50909695505050505050565b610c1c611170565b600a610860828483611b2a565b6060600380546104e090611aaa565b6060818310610c5a57604051631960ccad60e11b815260040160405180910390fd5b600080610c6660005490565b90506001851015610c7657600194505b80841115610c82578093505b6000610c8d8761095e565b905084861015610cac5785850381811015610ca6578091505b50610cb0565b5060005b60008167ffffffffffffffff811115610ccb57610ccb611751565b604051908082528060200260200182016040528015610cf4578160200160208202803683370190505b50905081600003610d0a579350610db992505050565b6000610d1588610f2e565b905060008160400151610d26575080515b885b888114158015610d385750848714155b15610dad57610d46816112fc565b92508260400151610da55782516001600160a01b031615610d6657825191505b8a6001600160a01b0316826001600160a01b031603610da55780848880600101995081518110610d9857610d98611beb565b6020026020010181815250505b600101610d28565b50505092835250909150505b9392505050565b610dc8611170565b600054600019018161ffff161015610e2d5760405162461bcd60e51b815260206004820152602260248201527f42616c6c6965733a206c6f776572207468616e20616c7265616479206d696e74604482015261195960f21b6064820152608401610a26565b6008805461ffff909216600160a01b0261ffff60a01b19909216919091179055565b336001600160a01b03831603610e785760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eef848484610647565b6001600160a01b0383163b15610f2857610f0b84848484611338565b610f28576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040805160808101825260008082526020820181905291810182905260608101919091526040805160808101825260008082526020820181905291810182905260608101919091526001831080610f8757506000548310155b15610f925792915050565b610f9b836112fc565b9050806040015115610fad5792915050565b610db983611423565b6060610fc1826110cc565b61100d5760405162461bcd60e51b815260206004820152601a60248201527f42616c6c6965733a206e6f6e6578697374656e7420746f6b656e0000000000006044820152606401610a26565b6104cb82611458565b6060600a80546104e090611aaa565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61105b611170565b6001600160a01b0381166110c05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a26565b6110c9816111ca565b50565b6000816001111580156110e0575060005482105b80156104cb575050600090815260046020526040902054600160e01b161590565b60008180600111611157576000548110156111575760008181526004602052604081205490600160e01b82169003611155575b80600003610db9575060001901600081815260046020526040902054611134565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146109bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b03831661124557604051622e076360e81b815260040160405180910390fd5b816000036112665760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106112b05760005550505050565b6040805160808101825260008082526020820181905291810182905260608101919091526000828152600460205260409020546104cb906114db565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061136d903390899088908890600401611c22565b6020604051808303816000875af19250505080156113a8575060408051601f3d908101601f191682019092526113a591810190611c5f565b60015b611406573d8080156113d6576040519150601f19603f3d011682016040523d82523d6000602084013e6113db565b606091505b5080516000036113fe576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6040805160808101825260008082526020820181905291810182905260608101919091526104cb61145383611101565b6114db565b6060611463826110cc565b61148057604051630a14c4b560e41b815260040160405180910390fd5b600061148a611523565b905080516000036114aa5760405180602001604052806000815250610db9565b806114b484611532565b6040516020016114c5929190611c7c565b6040516020818303038152906040529392505050565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6060600980546104e090611aaa565b604080516080810191829052607f0190826030600a8206018353600a90045b801561156f57600183039250600a81066030018353600a9004611551565b50819003601f19909101908152919050565b6001600160e01b0319811681146110c957600080fd5b6000602082840312156115a957600080fd5b8135610db981611581565b60005b838110156115cf5781810151838201526020016115b7565b50506000910152565b600081518084526115f08160208601602086016115b4565b601f01601f19169290920160200192915050565b602081526000610db960208301846115d8565b60006020828403121561162957600080fd5b5035919050565b80356001600160a01b038116811461164757600080fd5b919050565b6000806040838503121561165f57600080fd5b61166883611630565b946020939093013593505050565b60008060006060848603121561168b57600080fd5b61169484611630565b92506116a260208501611630565b9150604084013590509250925092565b803561ffff8116811461164757600080fd5b6000602082840312156116d657600080fd5b610db9826116b2565b600080602083850312156116f257600080fd5b823567ffffffffffffffff8082111561170a57600080fd5b818501915085601f83011261171e57600080fd5b81358181111561172d57600080fd5b86602082850101111561173f57600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561179057611790611751565b604052919050565b600060208083850312156117ab57600080fd5b823567ffffffffffffffff808211156117c357600080fd5b818501915085601f8301126117d757600080fd5b8135818111156117e9576117e9611751565b8060051b91506117fa848301611767565b818152918301840191848101908884111561181457600080fd5b938501935b8385101561183257843582529385019390850190611819565b98975050505050505050565b80516001600160a01b0316825260208082015167ffffffffffffffff169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610c08576118aa83855161183e565b9284019260809290920191600101611897565b6000602082840312156118cf57600080fd5b610db982611630565b600080604083850312156118eb57600080fd5b6118f483611630565b9150611902602084016116b2565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015610c0857835183529284019291840191600101611927565b60008060006060848603121561195857600080fd5b61196184611630565b95602085013595506040909401359392505050565b6000806040838503121561198957600080fd5b61199283611630565b9150602083013580151581146119a757600080fd5b809150509250929050565b600080600080608085870312156119c857600080fd5b6119d185611630565b935060206119e0818701611630565b935060408601359250606086013567ffffffffffffffff80821115611a0457600080fd5b818801915088601f830112611a1857600080fd5b813581811115611a2a57611a2a611751565b611a3c601f8201601f19168501611767565b91508082528984828501011115611a5257600080fd5b808484018584013760008482840101525080935050505092959194509250565b608081016104cb828461183e565b60008060408385031215611a9357600080fd5b611a9c83611630565b915061190260208401611630565b600181811c90821680611abe57607f821691505b602082108103611ade57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561086057600081815260208120601f850160051c81016020861015611b0b5750805b601f850160051c820191505b818110156107d857828155600101611b17565b67ffffffffffffffff831115611b4257611b42611751565b611b5683611b508354611aaa565b83611ae4565b6000601f841160018114611b8a5760008515611b725750838201355b600019600387901b1c1916600186901b178355611be4565b600083815260209020601f19861690835b82811015611bbb5786850135825560209485019460019092019101611b9b565b5086821015611bd85760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052603260045260246000fd5b808201808211156104cb57634e487b7160e01b600052601160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c55908301846115d8565b9695505050505050565b600060208284031215611c7157600080fd5b8151610db981611581565b60008351611c8e8184602088016115b4565b835190830190611ca28183602088016115b4565b0194935050505056fea26469706673582212202285241c7504c353415c5b0a6d5bb08afd9a69e38a8a74927fc57007cc8c95be64736f6c63430008110033697066733a2f2f516d57417431417a4c327169754166516d4a797754354841674b394d5978683646634266433153556b62623945382f636f6e7472616374732f636f6e74726163745f757269697066733a2f2f62616679626569636d357a6b346a6e656c7037333767626770767a346d7867766f35656f6d7978797a6572367135757467736866377332623775692f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f5780639b8bf816116100a2578063c87b56dd11610071578063c87b56dd1461043e578063e8a3d48514610451578063e985e9c514610459578063f2fde38b1461046c57600080fd5b80639b8bf816146103e5578063a22cb465146103f8578063b88d4fde1461040b578063c23dc68f1461041e57600080fd5b8063938e3d7b116100de578063938e3d7b146103a257806394b75b7f146103b557806395d89b41146103ca57806399a2557a146103d257600080fd5b8063715018a6146103565780637ab1c6231461035e5780638462151c146103715780638da5cb5b1461039157600080fd5b80633ccfd60b1161018757806355f804b31161015657806355f804b3146102fd5780635bbb2177146103105780636352211e1461033057806370a082311461034357600080fd5b80633ccfd60b146102a757806342842e0e146102af57806345c0f533146102c25780634f558e79146102ea57600080fd5b8063095ea7b3116101c3578063095ea7b31461025257806318160ddd1461026757806323b872dd146102815780633ae7e5891461029457600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f8366004611597565b61047f565b60405190151581526020015b60405180910390f35b61021a6104d1565b6040516102099190611604565b61023a610235366004611617565b610563565b6040516001600160a01b039091168152602001610209565b61026561026036600461164c565b6105a7565b005b60015460005403600019015b604051908152602001610209565b61026561028f366004611676565b610647565b6102656102a23660046116c4565b6107e0565b61026561080a565b6102656102bd366004611676565b610845565b6008546102d790600160a01b900461ffff1681565b60405161ffff9091168152602001610209565b6101fd6102f8366004611617565b610865565b61026561030b3660046116df565b610870565b61032361031e366004611798565b610885565b604051610209919061187b565b61023a61033e366004611617565b610953565b6102736103513660046118bd565b61095e565b6102656109ad565b61026561036c3660046118d8565b6109c1565b61038461037f3660046118bd565b610b0b565b604051610209919061190b565b6008546001600160a01b031661023a565b6102656103b03660046116df565b610c14565b6008546102d790600160b01b900461ffff1681565b61021a610c29565b6103846103e0366004611943565b610c38565b6102656103f33660046116c4565b610dc0565b610265610406366004611976565b610e4f565b6102656104193660046119b2565b610ee4565b61043161042c366004611617565b610f2e565b6040516102099190611a72565b61021a61044c366004611617565b610fb6565b61021a611016565b6101fd610467366004611a80565b611025565b61026561047a3660046118bd565b611053565b60006301ffc9a760e01b6001600160e01b0319831614806104b057506380ac58cd60e01b6001600160e01b03198316145b806104cb5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104e090611aaa565b80601f016020809104026020016040519081016040528092919081815260200182805461050c90611aaa565b80156105595780601f1061052e57610100808354040283529160200191610559565b820191906000526020600020905b81548152906001019060200180831161053c57829003601f168201915b5050505050905090565b600061056e826110cc565b61058b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105b282610953565b9050336001600160a01b038216146105eb576105ce8133611025565b6105eb576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061065282611101565b9050836001600160a01b0316816001600160a01b0316146106855760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106d2576106b58633611025565b6106d257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166106f957604051633a954ecd60e21b815260040160405180910390fd5b801561070457600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610796576001840160008181526004602052604081205490036107945760005481146107945760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6107e8611170565b6008805461ffff909216600160b01b0261ffff60b01b19909216919091179055565b610812611170565b6040514790339082156108fc029083906000818181858888f19350505050158015610841573d6000803e3d6000fd5b5050565b61086083838360405180602001604052806000815250610ee4565b505050565b60006104cb826110cc565b610878611170565b6009610860828483611b2a565b805160609060008167ffffffffffffffff8111156108a5576108a5611751565b6040519080825280602002602001820160405280156108f757816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816108c35790505b50905060005b82811461094b5761092685828151811061091957610919611beb565b6020026020010151610f2e565b82828151811061093857610938611beb565b60209081029190910101526001016108fd565b509392505050565b60006104cb82611101565b60006001600160a01b038216610987576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6109b5611170565b6109bf60006111ca565b565b6109c9611170565b60085461ffff600160b01b90910481169082161115610a2f5760405162461bcd60e51b815260206004820152601860248201527f42616c6c6965733a20696e76616c6964206d617820717479000000000000000060448201526064015b60405180910390fd5b6001600160a01b038216610a855760405162461bcd60e51b815260206004820152601860248201527f42616c6c6965733a20696e76616c6964206164647265737300000000000000006044820152606401610a26565b60085461ffff600160a01b9091048116908216610aa56000546000190190565b610aaf9190611c01565b1115610afd5760405162461bcd60e51b815260206004820152601b60248201527f42616c6c6965733a2072656163686564206d617820737570706c7900000000006044820152606401610a26565b610841828261ffff1661121c565b60606000806000610b1b8561095e565b905060008167ffffffffffffffff811115610b3857610b38611751565b604051908082528060200260200182016040528015610b61578160200160208202803683370190505b509050610b8e60408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610c0857610ba1816112fc565b91508160400151610c005781516001600160a01b031615610bc157815194505b876001600160a01b0316856001600160a01b031603610c005780838780600101985081518110610bf357610bf3611beb565b6020026020010181815250505b600101610b91565b50909695505050505050565b610c1c611170565b600a610860828483611b2a565b6060600380546104e090611aaa565b6060818310610c5a57604051631960ccad60e11b815260040160405180910390fd5b600080610c6660005490565b90506001851015610c7657600194505b80841115610c82578093505b6000610c8d8761095e565b905084861015610cac5785850381811015610ca6578091505b50610cb0565b5060005b60008167ffffffffffffffff811115610ccb57610ccb611751565b604051908082528060200260200182016040528015610cf4578160200160208202803683370190505b50905081600003610d0a579350610db992505050565b6000610d1588610f2e565b905060008160400151610d26575080515b885b888114158015610d385750848714155b15610dad57610d46816112fc565b92508260400151610da55782516001600160a01b031615610d6657825191505b8a6001600160a01b0316826001600160a01b031603610da55780848880600101995081518110610d9857610d98611beb565b6020026020010181815250505b600101610d28565b50505092835250909150505b9392505050565b610dc8611170565b600054600019018161ffff161015610e2d5760405162461bcd60e51b815260206004820152602260248201527f42616c6c6965733a206c6f776572207468616e20616c7265616479206d696e74604482015261195960f21b6064820152608401610a26565b6008805461ffff909216600160a01b0261ffff60a01b19909216919091179055565b336001600160a01b03831603610e785760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eef848484610647565b6001600160a01b0383163b15610f2857610f0b84848484611338565b610f28576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6040805160808101825260008082526020820181905291810182905260608101919091526040805160808101825260008082526020820181905291810182905260608101919091526001831080610f8757506000548310155b15610f925792915050565b610f9b836112fc565b9050806040015115610fad5792915050565b610db983611423565b6060610fc1826110cc565b61100d5760405162461bcd60e51b815260206004820152601a60248201527f42616c6c6965733a206e6f6e6578697374656e7420746f6b656e0000000000006044820152606401610a26565b6104cb82611458565b6060600a80546104e090611aaa565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61105b611170565b6001600160a01b0381166110c05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a26565b6110c9816111ca565b50565b6000816001111580156110e0575060005482105b80156104cb575050600090815260046020526040902054600160e01b161590565b60008180600111611157576000548110156111575760008181526004602052604081205490600160e01b82169003611155575b80600003610db9575060001901600081815260046020526040902054611134565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146109bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a26565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b03831661124557604051622e076360e81b815260040160405180910390fd5b816000036112665760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106112b05760005550505050565b6040805160808101825260008082526020820181905291810182905260608101919091526000828152600460205260409020546104cb906114db565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061136d903390899088908890600401611c22565b6020604051808303816000875af19250505080156113a8575060408051601f3d908101601f191682019092526113a591810190611c5f565b60015b611406573d8080156113d6576040519150601f19603f3d011682016040523d82523d6000602084013e6113db565b606091505b5080516000036113fe576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6040805160808101825260008082526020820181905291810182905260608101919091526104cb61145383611101565b6114db565b6060611463826110cc565b61148057604051630a14c4b560e41b815260040160405180910390fd5b600061148a611523565b905080516000036114aa5760405180602001604052806000815250610db9565b806114b484611532565b6040516020016114c5929190611c7c565b6040516020818303038152906040529392505050565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6060600980546104e090611aaa565b604080516080810191829052607f0190826030600a8206018353600a90045b801561156f57600183039250600a81066030018353600a9004611551565b50819003601f19909101908152919050565b6001600160e01b0319811681146110c957600080fd5b6000602082840312156115a957600080fd5b8135610db981611581565b60005b838110156115cf5781810151838201526020016115b7565b50506000910152565b600081518084526115f08160208601602086016115b4565b601f01601f19169290920160200192915050565b602081526000610db960208301846115d8565b60006020828403121561162957600080fd5b5035919050565b80356001600160a01b038116811461164757600080fd5b919050565b6000806040838503121561165f57600080fd5b61166883611630565b946020939093013593505050565b60008060006060848603121561168b57600080fd5b61169484611630565b92506116a260208501611630565b9150604084013590509250925092565b803561ffff8116811461164757600080fd5b6000602082840312156116d657600080fd5b610db9826116b2565b600080602083850312156116f257600080fd5b823567ffffffffffffffff8082111561170a57600080fd5b818501915085601f83011261171e57600080fd5b81358181111561172d57600080fd5b86602082850101111561173f57600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561179057611790611751565b604052919050565b600060208083850312156117ab57600080fd5b823567ffffffffffffffff808211156117c357600080fd5b818501915085601f8301126117d757600080fd5b8135818111156117e9576117e9611751565b8060051b91506117fa848301611767565b818152918301840191848101908884111561181457600080fd5b938501935b8385101561183257843582529385019390850190611819565b98975050505050505050565b80516001600160a01b0316825260208082015167ffffffffffffffff169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b81811015610c08576118aa83855161183e565b9284019260809290920191600101611897565b6000602082840312156118cf57600080fd5b610db982611630565b600080604083850312156118eb57600080fd5b6118f483611630565b9150611902602084016116b2565b90509250929050565b6020808252825182820181905260009190848201906040850190845b81811015610c0857835183529284019291840191600101611927565b60008060006060848603121561195857600080fd5b61196184611630565b95602085013595506040909401359392505050565b6000806040838503121561198957600080fd5b61199283611630565b9150602083013580151581146119a757600080fd5b809150509250929050565b600080600080608085870312156119c857600080fd5b6119d185611630565b935060206119e0818701611630565b935060408601359250606086013567ffffffffffffffff80821115611a0457600080fd5b818801915088601f830112611a1857600080fd5b813581811115611a2a57611a2a611751565b611a3c601f8201601f19168501611767565b91508082528984828501011115611a5257600080fd5b808484018584013760008482840101525080935050505092959194509250565b608081016104cb828461183e565b60008060408385031215611a9357600080fd5b611a9c83611630565b915061190260208401611630565b600181811c90821680611abe57607f821691505b602082108103611ade57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561086057600081815260208120601f850160051c81016020861015611b0b5750805b601f850160051c820191505b818110156107d857828155600101611b17565b67ffffffffffffffff831115611b4257611b42611751565b611b5683611b508354611aaa565b83611ae4565b6000601f841160018114611b8a5760008515611b725750838201355b600019600387901b1c1916600186901b178355611be4565b600083815260209020601f19861690835b82811015611bbb5786850135825560209485019460019092019101611b9b565b5086821015611bd85760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b600052603260045260246000fd5b808201808211156104cb57634e487b7160e01b600052601160045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c55908301846115d8565b9695505050505050565b600060208284031215611c7157600080fd5b8151610db981611581565b60008351611c8e8184602088016115b4565b835190830190611ca28183602088016115b4565b0194935050505056fea26469706673582212202285241c7504c353415c5b0a6d5bb08afd9a69e38a8a74927fc57007cc8c95be64736f6c63430008110033
Deployed Bytecode Sourcemap
62929:3399:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14664:615;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;14664:615:0;;;;;;;;20311:100;;;:::i;:::-;;;;;;;:::i;22257:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;22257:204:0;1533:203:1;21805:386:0;;;;;;:::i;:::-;;:::i;:::-;;13718:315;66217:1;13984:12;13771:7;13968:13;:28;-1:-1:-1;;13968:46:0;13718:315;;;2324:25:1;;;2312:2;2297:18;13718:315:0;2178:177:1;31522:2800:0;;;;;;:::i;:::-;;:::i;64745:153::-;;;;;;:::i;:::-;;:::i;64957:145::-;;;:::i;23147:185::-;;;;;;:::i;:::-;;:::i;62998:33::-;;;;;-1:-1:-1;;;62998:33:0;;;;;;;;;3220:6:1;3208:19;;;3190:38;;3178:2;3163:18;62998:33:0;3046:188:1;65212:106:0;;;;;;:::i;:::-;;:::i;63981:98::-;;;;;;:::i;:::-;;:::i;48898:468::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;20100:144::-;;;;;;:::i;:::-;;:::i;15343:224::-;;;;;;:::i;:::-;;:::i;56395:103::-;;;:::i;63534:360::-;;;;;;:::i;:::-;;:::i;52710:892::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;55747:87::-;55820:6;;-1:-1:-1;;;;;55820:6:0;55747:87;;64519:101;;;;;;:::i;:::-;;:::i;63038:37::-;;;;;-1:-1:-1;;;63038:37:0;;;;;;20480:104;;;:::i;49756:2505::-;;;;;;:::i;:::-;;:::i;64187:251::-;;;;;;:::i;:::-;;:::i;22533:308::-;;;;;;:::i;:::-;;:::i;23403:399::-;;;;;;:::i;:::-;;:::i;48319:420::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65592:232::-;;;;;;:::i;:::-;;:::i;65392:97::-;;;:::i;22912:164::-;;;;;;:::i;:::-;;:::i;56653:201::-;;;;;;:::i;:::-;;:::i;14664:615::-;14749:4;-1:-1:-1;;;;;;;;;15049:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15126:25:0;;;15049:102;:179;;;-1:-1:-1;;;;;;;;;;15203:25:0;;;15049:179;15029:199;14664:615;-1:-1:-1;;14664:615:0:o;20311:100::-;20365:13;20398:5;20391:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20311:100;:::o;22257:204::-;22325:7;22350:16;22358:7;22350;:16::i;:::-;22345:64;;22375:34;;-1:-1:-1;;;22375:34:0;;;;;;;;;;;22345:64;-1:-1:-1;22429:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22429:24:0;;22257:204::o;21805:386::-;21878:13;21894:16;21902:7;21894;:16::i;:::-;21878:32;-1:-1:-1;42705:10:0;-1:-1:-1;;;;;21927:28:0;;;21923:175;;21975:44;21992:5;42705:10;22912:164;:::i;21975:44::-;21970:128;;22047:35;;-1:-1:-1;;;22047:35:0;;;;;;;;;;;21970:128;22110:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22110:29:0;-1:-1:-1;;;;;22110:29:0;;;;;;;;;22155:28;;22110:24;;22155:28;;;;;;;21867:324;21805:386;;:::o;31522:2800::-;31656:27;31686;31705:7;31686:18;:27::i;:::-;31656:57;;31771:4;-1:-1:-1;;;;;31730:45:0;31746:19;-1:-1:-1;;;;;31730:45:0;;31726:86;;31784:28;;-1:-1:-1;;;31784:28:0;;;;;;;;;;;31726:86;31826:27;30252:21;;;30079:15;30294:4;30287:36;30376:4;30360:21;;30466:26;;42705:10;31219:30;;;-1:-1:-1;;;;;30917:26:0;;31198:19;;;31195:55;32005:174;;32092:43;32109:4;42705:10;22912:164;:::i;32092:43::-;32087:92;;32144:35;;-1:-1:-1;;;32144:35:0;;;;;;;;;;;32087:92;-1:-1:-1;;;;;32196:16:0;;32192:52;;32221:23;;-1:-1:-1;;;32221:23:0;;;;;;;;;;;32192:52;32393:15;32390:160;;;32533:1;32512:19;32505:30;32390:160;-1:-1:-1;;;;;32928:24:0;;;;;;;:18;:24;;;;;;32926:26;;-1:-1:-1;;32926:26:0;;;32997:22;;;;;;;;;32995:24;;-1:-1:-1;32995:24:0;;;19999:11;19975:22;19971:40;19958:62;-1:-1:-1;;;19958:62:0;33290:26;;;;:17;:26;;;;;:174;;;;-1:-1:-1;;;33584:46:0;;:51;;33580:626;;33688:1;33678:11;;33656:19;33811:30;;;:17;:30;;;;;;:35;;33807:384;;33949:13;;33934:11;:28;33930:242;;34096:30;;;;:17;:30;;;;;:52;;;33930:242;33637:569;33580:626;34253:7;34249:2;-1:-1:-1;;;;;34234:27:0;34243:4;-1:-1:-1;;;;;34234:27:0;;;;;;;;;;;34272:42;31645:2677;;;31522:2800;;;:::o;64745:153::-;55633:13;:11;:13::i;:::-;64850:18:::1;:40:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;64850:40:0::1;-1:-1:-1::0;;;;64850:40:0;;::::1;::::0;;;::::1;::::0;;64745:153::o;64957:145::-;55633:13;:11;:13::i;:::-;65057:37:::1;::::0;65025:21:::1;::::0;65065:10:::1;::::0;65057:37;::::1;;;::::0;65025:21;;65007:15:::1;65057:37:::0;65007:15;65057:37;65025:21;65065:10;65057:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;64996:106;64957:145::o:0;23147:185::-;23285:39;23302:4;23308:2;23312:7;23285:39;;;;;;;;;;;;:16;:39::i;:::-;23147:185;;;:::o;65212:106::-;65269:4;65293:17;65301:8;65293:7;:17::i;63981:98::-;55633:13;:11;:13::i;:::-;64052::::1;:19;64068:3:::0;;64052:13;:19:::1;:::i;48898:468::-:0;49073:15;;48987:23;;49048:22;49073:15;49140:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49140:36:0;;-1:-1:-1;;49140:36:0;;;;;;;;;;;;49103:73;;49196:9;49191:125;49212:14;49207:1;:19;49191:125;;49268:32;49288:8;49297:1;49288:11;;;;;;;;:::i;:::-;;;;;;;49268:19;:32::i;:::-;49252:10;49263:1;49252:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;49228:3;;49191:125;;;-1:-1:-1;49337:10:0;48898:468;-1:-1:-1;;;48898:468:0:o;20100:144::-;20164:7;20207:27;20226:7;20207:18;:27::i;15343:224::-;15407:7;-1:-1:-1;;;;;15431:19:0;;15427:60;;15459:28;;-1:-1:-1;;;15459:28:0;;;;;;;;;;;15427:60;-1:-1:-1;;;;;;15505:25:0;;;;;:18;:25;;;;;;9898:13;15505:54;;15343:224::o;56395:103::-;55633:13;:11;:13::i;:::-;56460:30:::1;56487:1;56460:18;:30::i;:::-;56395:103::o:0;63534:360::-;55633:13;:11;:13::i;:::-;63622:18:::1;::::0;::::1;-1:-1:-1::0;;;63622:18:0;;::::1;::::0;::::1;63615:25:::0;;::::1;;;63607:62;;;::::0;-1:-1:-1;;;63607:62:0;;12344:2:1;63607:62:0::1;::::0;::::1;12326:21:1::0;12383:2;12363:18;;;12356:30;12422:26;12402:18;;;12395:54;12466:18;;63607:62:0::1;;;;;;;;;-1:-1:-1::0;;;;;63688:16:0;::::1;63680:53;;;::::0;-1:-1:-1;;;63680:53:0;;12697:2:1;63680:53:0::1;::::0;::::1;12679:21:1::0;12736:2;12716:18;;;12709:30;12775:26;12755:18;;;12748:54;12819:18;;63680:53:0::1;12495:348:1::0;63680:53:0::1;63790:14;::::0;::::1;-1:-1:-1::0;;;63790:14:0;;::::1;::::0;::::1;::::0;63766:20;::::1;:14;14178:7:::0;14366:13;-1:-1:-1;;14366:31:0;;14131:285;63766:14:::1;:20;;;;:::i;:::-;:38;;63744:115;;;::::0;-1:-1:-1;;;63744:115:0;;13277:2:1;63744:115:0::1;::::0;::::1;13259:21:1::0;13316:2;13296:18;;;13289:30;13355:29;13335:18;;;13328:57;13402:18;;63744:115:0::1;13075:351:1::0;63744:115:0::1;63872:14;63878:2;63882:3;63872:14;;:5;:14::i;52710:892::-:0;52780:16;52834:19;52868:25;52908:22;52933:16;52943:5;52933:9;:16::i;:::-;52908:41;;52964:25;53006:14;52992:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52992:29:0;;52964:57;;53036:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53036:31:0;66217:1;53082:472;53131:14;53116:11;:29;53082:472;;53183:15;53196:1;53183:12;:15::i;:::-;53171:27;;53221:9;:16;;;53262:8;53217:73;53312:14;;-1:-1:-1;;;;;53312:28:0;;53308:111;;53385:14;;;-1:-1:-1;53308:111:0;53462:5;-1:-1:-1;;;;;53441:26:0;:17;-1:-1:-1;;;;;53441:26:0;;53437:102;;53518:1;53492:8;53501:13;;;;;;53492:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;53437:102;53147:3;;53082:472;;;-1:-1:-1;53575:8:0;;52710:892;-1:-1:-1;;;;;;52710:892:0:o;64519:101::-;55633:13;:11;:13::i;:::-;64594:12:::1;:18;64609:3:::0;;64594:12;:18:::1;:::i;20480:104::-:0;20536:13;20569:7;20562:14;;;;;:::i;49756:2505::-;49891:16;49958:4;49949:5;:13;49945:45;;49971:19;;-1:-1:-1;;;49971:19:0;;;;;;;;;;;49945:45;50005:19;50039:17;50059:14;13460:7;13487:13;;13413:95;50059:14;50039:34;-1:-1:-1;66217:1:0;50151:5;:23;50147:87;;;66217:1;50195:23;;50147:87;50310:9;50303:4;:16;50299:73;;;50347:9;50340:16;;50299:73;50386:25;50414:16;50424:5;50414:9;:16::i;:::-;50386:44;;50608:4;50600:5;:12;50596:278;;;50655:12;;;50690:31;;;50686:111;;;50766:11;50746:31;;50686:111;50614:198;50596:278;;;-1:-1:-1;50857:1:0;50596:278;50888:25;50930:17;50916:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50916:32:0;;50888:60;;50967:17;50988:1;50967:22;50963:78;;51017:8;-1:-1:-1;51010:15:0;;-1:-1:-1;;;51010:15:0;50963:78;51185:31;51219:26;51239:5;51219:19;:26::i;:::-;51185:60;;51260:25;51505:9;:16;;;51500:92;;-1:-1:-1;51562:14:0;;51500:92;51623:5;51606:478;51635:4;51630:1;:9;;:45;;;;;51658:17;51643:11;:32;;51630:45;51606:478;;;51713:15;51726:1;51713:12;:15::i;:::-;51701:27;;51751:9;:16;;;51792:8;51747:73;51842:14;;-1:-1:-1;;;;;51842:28:0;;51838:111;;51915:14;;;-1:-1:-1;51838:111:0;51992:5;-1:-1:-1;;;;;51971:26:0;:17;-1:-1:-1;;;;;51971:26:0;;51967:102;;52048:1;52022:8;52031:13;;;;;;52022:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;51967:102;51677:3;;51606:478;;;-1:-1:-1;;;52169:29:0;;;-1:-1:-1;52176:8:0;;-1:-1:-1;;49756:2505:0;;;;;;:::o;64187:251::-;55633:13;:11;:13::i;:::-;14178:7;14366:13;-1:-1:-1;;14366:31:0;64290:15:::1;:33;;;;64268:117;;;::::0;-1:-1:-1;;;64268:117:0;;13633:2:1;64268:117:0::1;::::0;::::1;13615:21:1::0;13672:2;13652:18;;;13645:30;13711:34;13691:18;;;13684:62;-1:-1:-1;;;13762:18:1;;;13755:32;13804:19;;64268:117:0::1;13431:398:1::0;64268:117:0::1;64398:14;:32:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;64398:32:0::1;-1:-1:-1::0;;;;64398:32:0;;::::1;::::0;;;::::1;::::0;;64187:251::o;22533:308::-;42705:10;-1:-1:-1;;;;;22632:31:0;;;22628:61;;22672:17;;-1:-1:-1;;;22672:17:0;;;;;;;;;;;22628:61;42705:10;22702:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22702:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22702:60:0;;;;;;;;;;22778:55;;540:41:1;;;22702:49:0;;42705:10;22778:55;;513:18:1;22778:55:0;;;;;;;22533:308;;:::o;23403:399::-;23570:31;23583:4;23589:2;23593:7;23570:12;:31::i;:::-;-1:-1:-1;;;;;23616:14:0;;;:19;23612:183;;23655:56;23686:4;23692:2;23696:7;23705:5;23655:30;:56::i;:::-;23650:145;;23739:40;;-1:-1:-1;;;23739:40:0;;;;;;;;;;;23650:145;23403:399;;;;:::o;48319:420::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66217:1:0;48475:7;:25;:54;;;-1:-1:-1;13460:7:0;13487:13;48504:7;:25;;48475:54;48471:103;;;48553:9;48319:420;-1:-1:-1;;48319:420:0:o;48471:103::-;48596:21;48609:7;48596:12;:21::i;:::-;48584:33;;48632:9;:16;;;48628:65;;;48672:9;48319:420;-1:-1:-1;;48319:420:0:o;48628:65::-;48710:21;48723:7;48710:12;:21::i;65592:232::-;65692:13;65726:16;65734:7;65726;:16::i;:::-;65718:55;;;;-1:-1:-1;;;65718:55:0;;14036:2:1;65718:55:0;;;14018:21:1;14075:2;14055:18;;;14048:30;14114:28;14094:18;;;14087:56;14160:18;;65718:55:0;13834:350:1;65718:55:0;65793:23;65808:7;65793:14;:23::i;65392:97::-;65436:13;65469:12;65462:19;;;;;:::i;22912:164::-;-1:-1:-1;;;;;23033:25:0;;;23009:4;23033:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22912:164::o;56653:201::-;55633:13;:11;:13::i;:::-;-1:-1:-1;;;;;56742:22:0;::::1;56734:73;;;::::0;-1:-1:-1;;;56734:73:0;;14391:2:1;56734:73:0::1;::::0;::::1;14373:21:1::0;14430:2;14410:18;;;14403:30;14469:34;14449:18;;;14442:62;-1:-1:-1;;;14520:18:1;;;14513:36;14566:19;;56734:73:0::1;14189:402:1::0;56734:73:0::1;56818:28;56837:8;56818:18;:28::i;:::-;56653:201:::0;:::o;24057:273::-;24114:4;24170:7;66217:1;24151:26;;:66;;;;;24204:13;;24194:7;:23;24151:66;:152;;;;-1:-1:-1;;24255:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24255:43:0;:48;;24057:273::o;17017:1129::-;17084:7;17119;;66217:1;17168:23;17164:915;;17221:13;;17214:4;:20;17210:869;;;17259:14;17276:23;;;:17;:23;;;;;;;-1:-1:-1;;;17365:23:0;;:28;;17361:699;;17884:113;17891:6;17901:1;17891:11;17884:113;;-1:-1:-1;;;17962:6:0;17944:25;;;;:17;:25;;;;;;17884:113;;17361:699;17236:843;17210:869;18107:31;;-1:-1:-1;;;18107:31:0;;;;;;;;;;;55912:132;55820:6;;-1:-1:-1;;;;;55820:6:0;42705:10;55976:23;55968:68;;;;-1:-1:-1;;;55968:68:0;;14798:2:1;55968:68:0;;;14780:21:1;;;14817:18;;;14810:30;14876:34;14856:18;;;14849:62;14928:18;;55968:68:0;14596:356:1;57014:191:0;57107:6;;;-1:-1:-1;;;;;57124:17:0;;;-1:-1:-1;;;;;;57124:17:0;;;;;;;57157:40;;57107:6;;;57124:17;57107:6;;57157:40;;57088:16;;57157:40;57077:128;57014:191;:::o;25888:1529::-;25953:20;25976:13;-1:-1:-1;;;;;26004:16:0;;26000:48;;26029:19;;-1:-1:-1;;;26029:19:0;;;;;;;;;;;26000:48;26063:8;26075:1;26063:13;26059:44;;26085:18;;-1:-1:-1;;;26085:18:0;;;;;;;;;;;26059:44;-1:-1:-1;;;;;26591:22:0;;;;;;:18;:22;;10035:2;26591:22;;:70;;26629:31;26617:44;;26591:70;;;19999:11;19975:22;19971:40;-1:-1:-1;21709:15:0;;21684:23;21680:45;19968:51;19958:62;26904:31;;;;:17;:31;;;;;:173;26922:12;27153:23;;;27191:101;27218:35;;27243:9;;;;;-1:-1:-1;;;;;27218:35:0;;;27235:1;;27218:35;;27235:1;;27218:35;27287:3;27277:7;:13;27191:101;;27308:13;:19;-1:-1:-1;23147:185:0;;;:::o;18694:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18814:24:0;;;;:17;:24;;;;;;18795:44;;:18;:44::i;38273:716::-;38457:88;;-1:-1:-1;;;38457:88:0;;38436:4;;-1:-1:-1;;;;;38457:45:0;;;;;:88;;42705:10;;38524:4;;38530:7;;38539:5;;38457:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38457:88:0;;;;;;;;-1:-1:-1;;38457:88:0;;;;;;;;;;;;:::i;:::-;;;38453:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38740:6;:13;38757:1;38740:18;38736:235;;38786:40;;-1:-1:-1;;;38786:40:0;;;;;;;;;;;38736:235;38929:6;38923:13;38914:6;38910:2;38906:15;38899:38;38453:529;-1:-1:-1;;;;;;38616:64:0;-1:-1:-1;;;38616:64:0;;-1:-1:-1;38273:716:0;;;;;;:::o;19350:158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19453:47:0;19472:27;19491:7;19472:18;:27::i;:::-;19453:18;:47::i;20655:318::-;20728:13;20759:16;20767:7;20759;:16::i;:::-;20754:59;;20784:29;;-1:-1:-1;;;20784:29:0;;;;;;;;;;;20754:59;20826:21;20850:10;:8;:10::i;:::-;20826:34;;20884:7;20878:21;20903:1;20878:26;:87;;;;;;;;;;;;;;;;;20931:7;20940:18;20950:7;20940:9;:18::i;:::-;20914:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20871:94;20655:318;-1:-1:-1;;;20655:318:0:o;18240:363::-;-1:-1:-1;;;;;;;;;;;;;18350:41:0;;;;10552:3;18436:32;;;18402:67;;-1:-1:-1;;;18402:67:0;-1:-1:-1;;;18499:23:0;;:28;;-1:-1:-1;;;18480:47:0;;;;11069:3;18567:27;;;;-1:-1:-1;;;18538:57:0;-1:-1:-1;18240:363:0:o;65909:114::-;65969:13;66002;65995:20;;;;;:::i;42829:1960::-;43298:4;43292:11;;43305:3;43288:21;;43383:17;;;;44079:11;;;43958:5;44211:2;44225;44215:13;;44207:22;44079:11;44194:36;44266:2;44256:13;;43850:697;44285:4;43850:697;;;44476:1;44471:3;44467:11;44460:18;;44527:2;44521:4;44517:13;44513:2;44509:22;44504:3;44496:36;44380:2;44370:13;;43850:697;;;-1:-1:-1;44577:13:0;;;-1:-1:-1;;44692:12:0;;;44752:19;;;44692:12;42829:1960;-1:-1:-1;42829:1960:0: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:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:159::-;2760:20;;2820:6;2809:18;;2799:29;;2789:57;;2842:1;2839;2832:12;2857:184;2915:6;2968:2;2956:9;2947:7;2943:23;2939:32;2936:52;;;2984:1;2981;2974:12;2936:52;3007:28;3025:9;3007:28;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:127::-;3897:10;3892:3;3888:20;3885:1;3878:31;3928:4;3925:1;3918:15;3952:4;3949:1;3942:15;3968:275;4039:2;4033:9;4104:2;4085:13;;-1:-1:-1;;4081:27:1;4069:40;;4139:18;4124:34;;4160:22;;;4121:62;4118:88;;;4186:18;;:::i;:::-;4222:2;4215:22;3968:275;;-1:-1:-1;3968:275:1:o;4248:946::-;4332:6;4363:2;4406;4394:9;4385:7;4381:23;4377:32;4374:52;;;4422:1;4419;4412:12;4374:52;4462:9;4449:23;4491:18;4532:2;4524:6;4521:14;4518:34;;;4548:1;4545;4538:12;4518:34;4586:6;4575:9;4571:22;4561:32;;4631:7;4624:4;4620:2;4616:13;4612:27;4602:55;;4653:1;4650;4643:12;4602:55;4689:2;4676:16;4711:2;4707;4704:10;4701:36;;;4717:18;;:::i;:::-;4763:2;4760:1;4756:10;4746:20;;4786:28;4810:2;4806;4802:11;4786:28;:::i;:::-;4848:15;;;4918:11;;;4914:20;;;4879:12;;;;4946:19;;;4943:39;;;4978:1;4975;4968:12;4943:39;5002:11;;;;5022:142;5038:6;5033:3;5030:15;5022:142;;;5104:17;;5092:30;;5055:12;;;;5142;;;;5022:142;;;5183:5;4248:946;-1:-1:-1;;;;;;;;4248:946:1:o;5199:349::-;5283:12;;-1:-1:-1;;;;;5279:38:1;5267:51;;5371:4;5360:16;;;5354:23;5379:18;5350:48;5334:14;;;5327:72;5462:4;5451:16;;;5445:23;5438:31;5431:39;5415:14;;;5408:63;5524:4;5513:16;;;5507:23;5532:8;5503:38;5487:14;;5480:62;5199:349::o;5553:720::-;5784:2;5836:21;;;5906:13;;5809:18;;;5928:22;;;5755:4;;5784:2;6007:15;;;;5981:2;5966:18;;;5755:4;6050:197;6064:6;6061:1;6058:13;6050:197;;;6113:52;6161:3;6152:6;6146:13;6113:52;:::i;:::-;6222:15;;;;6194:4;6185:14;;;;;6086:1;6079:9;6050:197;;6278:186;6337:6;6390:2;6378:9;6369:7;6365:23;6361:32;6358:52;;;6406:1;6403;6396:12;6358:52;6429:29;6448:9;6429:29;:::i;6469:258::-;6536:6;6544;6597:2;6585:9;6576:7;6572:23;6568:32;6565:52;;;6613:1;6610;6603:12;6565:52;6636:29;6655:9;6636:29;:::i;:::-;6626:39;;6684:37;6717:2;6706:9;6702:18;6684:37;:::i;:::-;6674:47;;6469:258;;;;;:::o;6732:632::-;6903:2;6955:21;;;7025:13;;6928:18;;;7047:22;;;6874:4;;6903:2;7126:15;;;;7100:2;7085:18;;;6874:4;7169:169;7183:6;7180:1;7177:13;7169:169;;;7244:13;;7232:26;;7313:15;;;;7278:12;;;;7205:1;7198:9;7169:169;;7369:322;7446:6;7454;7462;7515:2;7503:9;7494:7;7490:23;7486:32;7483:52;;;7531:1;7528;7521:12;7483:52;7554:29;7573:9;7554:29;:::i;:::-;7544:39;7630:2;7615:18;;7602:32;;-1:-1:-1;7681:2:1;7666:18;;;7653:32;;7369:322;-1:-1:-1;;;7369:322:1:o;7696:347::-;7761:6;7769;7822:2;7810:9;7801:7;7797:23;7793:32;7790:52;;;7838:1;7835;7828:12;7790:52;7861:29;7880:9;7861:29;:::i;:::-;7851:39;;7940:2;7929:9;7925:18;7912:32;7987:5;7980:13;7973:21;7966:5;7963:32;7953:60;;8009:1;8006;7999:12;7953:60;8032:5;8022:15;;;7696:347;;;;;:::o;8048:980::-;8143:6;8151;8159;8167;8220:3;8208:9;8199:7;8195:23;8191:33;8188:53;;;8237:1;8234;8227:12;8188:53;8260:29;8279:9;8260:29;:::i;:::-;8250:39;;8308:2;8329:38;8363:2;8352:9;8348:18;8329:38;:::i;:::-;8319:48;;8414:2;8403:9;8399:18;8386:32;8376:42;;8469:2;8458:9;8454:18;8441:32;8492:18;8533:2;8525:6;8522:14;8519:34;;;8549:1;8546;8539:12;8519:34;8587:6;8576:9;8572:22;8562:32;;8632:7;8625:4;8621:2;8617:13;8613:27;8603:55;;8654:1;8651;8644:12;8603:55;8690:2;8677:16;8712:2;8708;8705:10;8702:36;;;8718:18;;:::i;:::-;8760:53;8803:2;8784:13;;-1:-1:-1;;8780:27:1;8776:36;;8760:53;:::i;:::-;8747:66;;8836:2;8829:5;8822:17;8876:7;8871:2;8866;8862;8858:11;8854:20;8851:33;8848:53;;;8897:1;8894;8887:12;8848:53;8952:2;8947;8943;8939:11;8934:2;8927:5;8923:14;8910:45;8996:1;8991:2;8986;8979:5;8975:14;8971:23;8964:34;;9017:5;9007:15;;;;;8048:980;;;;;;;:::o;9033:264::-;9227:3;9212:19;;9240:51;9216:9;9273:6;9240:51;:::i;9302:260::-;9370:6;9378;9431:2;9419:9;9410:7;9406:23;9402:32;9399:52;;;9447:1;9444;9437:12;9399:52;9470:29;9489:9;9470:29;:::i;:::-;9460:39;;9518:38;9552:2;9541:9;9537:18;9518:38;:::i;9567:380::-;9646:1;9642:12;;;;9689;;;9710:61;;9764:4;9756:6;9752:17;9742:27;;9710:61;9817:2;9809:6;9806:14;9786:18;9783:38;9780:161;;9863:10;9858:3;9854:20;9851:1;9844:31;9898:4;9895:1;9888:15;9926:4;9923:1;9916:15;9780:161;;9567:380;;;:::o;10078:545::-;10180:2;10175:3;10172:11;10169:448;;;10216:1;10241:5;10237:2;10230:17;10286:4;10282:2;10272:19;10356:2;10344:10;10340:19;10337:1;10333:27;10327:4;10323:38;10392:4;10380:10;10377:20;10374:47;;;-1:-1:-1;10415:4:1;10374:47;10470:2;10465:3;10461:12;10458:1;10454:20;10448:4;10444:31;10434:41;;10525:82;10543:2;10536:5;10533:13;10525:82;;;10588:17;;;10569:1;10558:13;10525:82;;10799:1206;10923:18;10918:3;10915:27;10912:53;;;10945:18;;:::i;:::-;10974:94;11064:3;11024:38;11056:4;11050:11;11024:38;:::i;:::-;11018:4;10974:94;:::i;:::-;11094:1;11119:2;11114:3;11111:11;11136:1;11131:616;;;;11791:1;11808:3;11805:93;;;-1:-1:-1;11864:19:1;;;11851:33;11805:93;-1:-1:-1;;10756:1:1;10752:11;;;10748:24;10744:29;10734:40;10780:1;10776:11;;;10731:57;11911:78;;11104:895;;11131:616;10025:1;10018:14;;;10062:4;10049:18;;-1:-1:-1;;11167:17:1;;;11268:9;11290:229;11304:7;11301:1;11298:14;11290:229;;;11393:19;;;11380:33;11365:49;;11500:4;11485:20;;;;11453:1;11441:14;;;;11320:12;11290:229;;;11294:3;11547;11538:7;11535:16;11532:159;;;11671:1;11667:6;11661:3;11655;11652:1;11648:11;11644:21;11640:34;11636:39;11623:9;11618:3;11614:19;11601:33;11597:79;11589:6;11582:95;11532:159;;;11734:1;11728:3;11725:1;11721:11;11717:19;11711:4;11704:33;11104:895;;;10799:1206;;;:::o;12010:127::-;12071:10;12066:3;12062:20;12059:1;12052:31;12102:4;12099:1;12092:15;12126:4;12123:1;12116:15;12848:222;12913:9;;;12934:10;;;12931:133;;;12986:10;12981:3;12977:20;12974:1;12967:31;13021:4;13018:1;13011:15;13049:4;13046:1;13039:15;14957:489;-1:-1:-1;;;;;15226:15:1;;;15208:34;;15278:15;;15273:2;15258:18;;15251:43;15325:2;15310:18;;15303:34;;;15373:3;15368:2;15353:18;;15346:31;;;15151:4;;15394:46;;15420:19;;15412:6;15394:46;:::i;:::-;15386:54;14957:489;-1:-1:-1;;;;;;14957:489:1:o;15451:249::-;15520:6;15573:2;15561:9;15552:7;15548:23;15544:32;15541:52;;;15589:1;15586;15579:12;15541:52;15621:9;15615:16;15640:30;15664:5;15640:30;:::i;15705:496::-;15884:3;15922:6;15916:13;15938:66;15997:6;15992:3;15985:4;15977:6;15973:17;15938:66;:::i;:::-;16067:13;;16026:16;;;;16089:70;16067:13;16026:16;16136:4;16124:17;;16089:70;:::i;:::-;16175:20;;15705:496;-1:-1:-1;;;;15705:496:1:o
Swarm Source
ipfs://2285241c7504c353415c5b0a6d5bb08afd9a69e38a8a74927fc57007cc8c95be
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.