Contract Overview
Balance:
0 AVAX
AVAX Value:
$0.00
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x4e114ae789f1515f1ca54f6e8a3ca1439cf8b1160fc27a8ff5f1415f70c0ed8c | Set Approval For... | 27636129 | 11 days 13 hrs ago | 0x28034bad8e4962ba99b2d3f096f2334ecd16032d | IN | 0x19138202c0767b95111c7605f2ac377d77c1e35a | 0 AVAX | 0.001259037 | |
0x468e32b2d56b0cdf29f13fc41f1d0ce6ca6da208a5dd55dac870072ae6b5a605 | Set Approval For... | 27631438 | 11 days 16 hrs ago | 0x28034bad8e4962ba99b2d3f096f2334ecd16032d | IN | 0x19138202c0767b95111c7605f2ac377d77c1e35a | 0 AVAX | 0.0012357215 | |
0x47193f152b2f103b35b09daf6e2d351723e04798b2f3593704454cf04521d5ca | 0x60c06040 | 27630612 | 11 days 16 hrs ago | 0x28034bad8e4962ba99b2d3f096f2334ecd16032d | IN | Create: ThisContract | 0 AVAX | 0.192485225 |
[ Download CSV Export ]
Contract Name:
ThisContract
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at snowtrace.io on 2023-03-19 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @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 payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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 ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: ubaiiid.sol pragma solidity ^0.8.7; error SaleInactive(); error SoldOut(); error InvalidPrice(); error WithdrawFailed(); error InvalidQuantity(); contract ThisContract is ERC721A, Ownable { uint256 _currentIndex = 1; //Make first tokenId = first json file. string baseExtension = ".json"; uint256 _mintamount = 2350; //It will be equal to quantity. uint256 public maxPerWallet = 0; uint256 public maxPerTransaction = 0; uint256 public immutable supply = 0; uint256 public price = 0.001 ether; uint256 public presalePrice = 0.0001 ether; uint256 public presaleMaxPerWallet = 1; uint256 public presaleMaxPerTransaction = 1; uint256 public immutable presaleSupply = 300; enum SaleState {CLOSED, OPEN, PRESALE} SaleState public saleState = SaleState.CLOSED; string public _baseTokenURI; mapping(address => uint256) public addressMintBalance; constructor( string memory _name, string memory _symbol, string memory _baseUri ) ERC721A(_name, _symbol) { _baseTokenURI = _baseUri; // It will mint the quantity at the address that deployed this contract. _safeMint(msg.sender, _mintamount); } function mint(uint256 qty) external payable { if (saleState != SaleState.OPEN) revert SaleInactive(); if (_currentIndex > supply) revert SoldOut(); if (msg.value != price * qty) revert InvalidPrice(); if (addressMintBalance[msg.sender] + qty > maxPerWallet) revert InvalidQuantity(); if (qty > maxPerTransaction) revert InvalidQuantity(); _safeMint(msg.sender, qty); addressMintBalance[msg.sender] += qty; } function presale(uint256 qty) external payable { if (saleState != SaleState.PRESALE) revert SaleInactive(); if (_currentIndex > presaleSupply) revert SoldOut(); if (msg.value != presalePrice * qty) revert InvalidPrice(); if (addressMintBalance[msg.sender] + qty > presaleMaxPerWallet) revert InvalidQuantity(); if (qty > presaleMaxPerTransaction) revert InvalidQuantity(); _safeMint(msg.sender, qty); addressMintBalance[msg.sender] += qty; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory baseURI) external onlyOwner { _baseTokenURI = baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length != 0 ? string(abi.encodePacked(_baseTokenURI, _toString(tokenId), baseExtension)) : ''; } function setPrice(uint256 newPrice) external onlyOwner { price = newPrice; } function setPresalePrice(uint256 newPrice) external onlyOwner { presalePrice = newPrice; } function setSaleState(uint8 _state) external onlyOwner { saleState = SaleState(_state); } function freeMint(uint256 qty, address recipient) external onlyOwner { if (_currentIndex > supply) revert SoldOut(); _safeMint(recipient, qty); } function setPerWalletMax(uint256 _val) external onlyOwner { maxPerWallet = _val; } function setPerTransactionMax(uint256 _val) external onlyOwner { maxPerTransaction = _val; } function setPresalePerWalletMax(uint256 _val) external onlyOwner { presaleMaxPerWallet = _val; } function setPresalePerTransactionMax(uint256 _val) external onlyOwner { presaleMaxPerTransaction = _val; } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); if (!success) revert WithdrawFailed(); } function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } }
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidPrice","type":"error"},{"inputs":[],"name":"InvalidQuantity","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":"SaleInactive","type":"error"},{"inputs":[],"name":"SoldOut","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":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","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":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleMaxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"payable","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":"payable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"enum ThisContract.SaleState","name":"","type":"uint8"}],"stateMutability":"view","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"setPerTransactionMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"setPerWalletMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"setPresalePerTransactionMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"setPresalePerWalletMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_state","type":"uint8"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c060405260016009556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a9080519060200190620000569291906200072b565b5061092e600b556000600c556000600d55600060809081525066038d7ea4c68000600e55655af3107a4000600f556001601055600160115561012c60a0908152506000601260006101000a81548160ff02191690836002811115620000c057620000bf62000b99565b5b0217905550348015620000d257600080fd5b5060405162003cc338038062003cc38339818101604052810190620000f89190620008a2565b82828160029080519060200190620001129291906200072b565b5080600390805190602001906200012b9291906200072b565b506200013c6200019a60201b60201c565b60008190555050506200016462000158620001a360201b60201c565b620001ab60201b60201c565b80601390805190602001906200017c9291906200072b565b506200019133600b546200027160201b60201c565b50505062000c65565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002938282604051806020016040528060008152506200029760201b60201c565b5050565b620002a983836200034860201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146200034357600080549050600083820390505b620002f260008683806001019450866200053160201b60201c565b62000329576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110620002d75781600054146200034057600080fd5b50505b505050565b60008054905060008214156200038a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200039f6000848385620006a360201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506200042e83620004106000866000620006a960201b60201c565b6200042185620006d960201b60201c565b17620006e960201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114620004d157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000494565b5060008214156200050e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506200052c60008483856200071460201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200055f6200071a60201b60201c565b8786866040518563ffffffff1660e01b8152600401620005839493929190620009be565b602060405180830381600087803b1580156200059e57600080fd5b505af1925050508015620005d257506040513d601f19601f82011682018060405250810190620005cf919062000870565b60015b62000650573d806000811462000605576040519150601f19603f3d011682016040523d82523d6000602084013e6200060a565b606091505b5060008151141562000648576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e8620006c88686846200072260201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b828054620007399062000b2d565b90600052602060002090601f0160209004810192826200075d5760008555620007a9565b82601f106200077857805160ff1916838001178555620007a9565b82800160010185558215620007a9579182015b82811115620007a85782518255916020019190600101906200078b565b5b509050620007b89190620007bc565b5090565b5b80821115620007d7576000816000905550600101620007bd565b5090565b6000620007f2620007ec8462000a3b565b62000a12565b90508281526020810184848401111562000811576200081062000c2b565b5b6200081e84828562000af7565b509392505050565b600081519050620008378162000c4b565b92915050565b600082601f83011262000855576200085462000c26565b5b815162000867848260208601620007db565b91505092915050565b60006020828403121562000889576200088862000c35565b5b6000620008998482850162000826565b91505092915050565b600080600060608486031215620008be57620008bd62000c35565b5b600084015167ffffffffffffffff811115620008df57620008de62000c30565b5b620008ed868287016200083d565b935050602084015167ffffffffffffffff81111562000911576200091062000c30565b5b6200091f868287016200083d565b925050604084015167ffffffffffffffff81111562000943576200094262000c30565b5b62000951868287016200083d565b9150509250925092565b620009668162000a8d565b82525050565b6000620009798262000a71565b62000985818562000a7c565b93506200099781856020860162000af7565b620009a28162000c3a565b840191505092915050565b620009b88162000aed565b82525050565b6000608082019050620009d560008301876200095b565b620009e460208301866200095b565b620009f36040830185620009ad565b818103606083015262000a0781846200096c565b905095945050505050565b600062000a1e62000a31565b905062000a2c828262000b63565b919050565b6000604051905090565b600067ffffffffffffffff82111562000a595762000a5862000bf7565b5b62000a648262000c3a565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600062000a9a8262000acd565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b1757808201518184015260208101905062000afa565b8381111562000b27576000848401525b50505050565b6000600282049050600182168062000b4657607f821691505b6020821081141562000b5d5762000b5c62000bc8565b5b50919050565b62000b6e8262000c3a565b810181811067ffffffffffffffff8211171562000b905762000b8f62000bf7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000c568162000aa1565b811462000c6257600080fd5b50565b60805160a05161302362000ca0600039600081816115df015261183701526000818161096a01528181610f57015261130e01526130236000f3fe60806040526004361061023a5760003560e01c80635a67de071161012e578063a22cb465116100ab578063cfc86f7b1161006f578063cfc86f7b146107fa578063e341f5ca14610825578063e6ab14341461084e578063e985e9c51461086a578063f2fde38b146108a75761023a565b8063a22cb46514610724578063b3a196e91461074d578063b88d4fde14610778578063bd3b14d314610794578063c87b56dd146107bd5761023a565b80638da5cb5b116100f25780638da5cb5b1461065e57806391b7f5ed1461068957806395d89b41146106b2578063a035b1fe146106dd578063a0712d68146107085761023a565b80635a67de0714610579578063603f4d52146105a25780636352211e146105cd57806370a082311461060a578063715018a6146106475761023a565b80633406c726116101bc57806342842e0e1161018057806342842e0e146104b3578063453c2310146104cf5780634b980d67146104fa57806350cf22c11461052557806355f804b3146105505761023a565b80633406c726146103f157806334861c751461042e5780633549345e1461045757806339117668146104805780633ccfd60b146104a95761023a565b8063095ea7b311610203578063095ea7b31461033a5780630d0ee1701461035657806312c23bd81461037f57806318160ddd146103aa57806323b872dd146103d55761023a565b80620e7fa81461023f57806301ffc9a71461026a578063047fc9aa146102a757806306fdde03146102d2578063081812fc146102fd575b600080fd5b34801561024b57600080fd5b506102546108d0565b6040516102619190612b18565b60405180910390f35b34801561027657600080fd5b50610291600480360381019061028c9190612707565b6108d6565b60405161029e9190612a80565b60405180910390f35b3480156102b357600080fd5b506102bc610968565b6040516102c99190612b18565b60405180910390f35b3480156102de57600080fd5b506102e761098c565b6040516102f49190612ab6565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f91906127aa565b610a1e565b6040516103319190612a19565b60405180910390f35b610354600480360381019061034f91906126c7565b610a9d565b005b34801561036257600080fd5b5061037d600480360381019061037891906127aa565b610be1565b005b34801561038b57600080fd5b50610394610bf3565b6040516103a19190612b18565b60405180910390f35b3480156103b657600080fd5b506103bf610bf9565b6040516103cc9190612b18565b60405180910390f35b6103ef60048036038101906103ea91906125b1565b610c10565b005b3480156103fd57600080fd5b5061041860048036038101906104139190612544565b610f35565b6040516104259190612b18565b60405180910390f35b34801561043a57600080fd5b50610455600480360381019061045091906127d7565b610f4d565b005b34801561046357600080fd5b5061047e600480360381019061047991906127aa565b610fbf565b005b34801561048c57600080fd5b506104a760048036038101906104a291906127aa565b610fd1565b005b6104b1610fe3565b005b6104cd60048036038101906104c891906125b1565b61103b565b005b3480156104db57600080fd5b506104e461105b565b6040516104f19190612b18565b60405180910390f35b34801561050657600080fd5b5061050f611061565b60405161051c9190612b18565b60405180910390f35b34801561053157600080fd5b5061053a611067565b6040516105479190612b18565b60405180910390f35b34801561055c57600080fd5b5061057760048036038101906105729190612761565b61106d565b005b34801561058557600080fd5b506105a0600480360381019061059b9190612817565b61108f565b005b3480156105ae57600080fd5b506105b76110d9565b6040516105c49190612a9b565b60405180910390f35b3480156105d957600080fd5b506105f460048036038101906105ef91906127aa565b6110ec565b6040516106019190612a19565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c9190612544565b6110fe565b60405161063e9190612b18565b60405180910390f35b34801561065357600080fd5b5061065c6111b7565b005b34801561066a57600080fd5b506106736111cb565b6040516106809190612a19565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab91906127aa565b6111f5565b005b3480156106be57600080fd5b506106c7611207565b6040516106d49190612ab6565b60405180910390f35b3480156106e957600080fd5b506106f2611299565b6040516106ff9190612b18565b60405180910390f35b610722600480360381019061071d91906127aa565b61129f565b005b34801561073057600080fd5b5061074b60048036038101906107469190612687565b6114d2565b005b34801561075957600080fd5b506107626115dd565b60405161076f9190612b18565b60405180910390f35b610792600480360381019061078d9190612604565b611601565b005b3480156107a057600080fd5b506107bb60048036038101906107b691906127aa565b611674565b005b3480156107c957600080fd5b506107e460048036038101906107df91906127aa565b611686565b6040516107f19190612ab6565b60405180910390f35b34801561080657600080fd5b5061080f611729565b60405161081c9190612ab6565b60405180910390f35b34801561083157600080fd5b5061084c600480360381019061084791906127aa565b6117b7565b005b610868600480360381019061086391906127aa565b6117c9565b005b34801561087657600080fd5b50610891600480360381019061088c9190612571565b6119fb565b60405161089e9190612a80565b60405180910390f35b3480156108b357600080fd5b506108ce60048036038101906108c99190612544565b611a8f565b005b600f5481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109615750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60606002805461099b90612daa565b80601f01602080910402602001604051908101604052809291908181526020018280546109c790612daa565b8015610a145780601f106109e957610100808354040283529160200191610a14565b820191906000526020600020905b8154815290600101906020018083116109f757829003601f168201915b5050505050905090565b6000610a2982611b13565b610a5f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa8826110ec565b90508073ffffffffffffffffffffffffffffffffffffffff16610ac9611b72565b73ffffffffffffffffffffffffffffffffffffffff1614610b2c57610af581610af0611b72565b6119fb565b610b2b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610be9611b7a565b8060118190555050565b60105481565b6000610c03611bf8565b6001546000540303905090565b6000610c1b82611c01565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c82576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c8e84611ccf565b91509150610ca48187610c9f611b72565b611cf6565b610cf057610cb986610cb4611b72565b6119fb565b610cef576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d57576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d648686866001611d3a565b8015610d6f57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e3d85610e19888887611d40565b7c020000000000000000000000000000000000000000000000000000000017611d68565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ec5576000600185019050600060046000838152602001908152602001600020541415610ec3576000548114610ec2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f2d8686866001611d93565b505050505050565b60146020528060005260406000206000915090505481565b610f55611b7a565b7f00000000000000000000000000000000000000000000000000000000000000006009541115610fb1576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fbb8183611d99565b5050565b610fc7611b7a565b80600f8190555050565b610fd9611b7a565b80600c8190555050565b610feb611b7a565b610ff36111cb565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611038573d6000803e3d6000fd5b50565b61105683838360405180602001604052806000815250611601565b505050565b600c5481565b600d5481565b60115481565b611075611b7a565b806013908051906020019061108b929190612343565b5050565b611097611b7a565b8060ff1660028111156110ad576110ac612e3c565b5b601260006101000a81548160ff021916908360028111156110d1576110d0612e3c565b5b021790555050565b601260009054906101000a900460ff1681565b60006110f782611c01565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611166576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111bf611b7a565b6111c96000611db7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111fd611b7a565b80600e8190555050565b60606003805461121690612daa565b80601f016020809104026020016040519081016040528092919081815260200182805461124290612daa565b801561128f5780601f106112645761010080835404028352916020019161128f565b820191906000526020600020905b81548152906001019060200180831161127257829003601f168201915b5050505050905090565b600e5481565b600160028111156112b3576112b2612e3c565b5b601260009054906101000a900460ff1660028111156112d5576112d4612e3c565b5b1461130c576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006009541115611368576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e546113769190612c68565b34146113ad576040517ebfc92100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c5481601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113fb9190612c12565b1115611433576040517f524f409b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d5481111561146f576040517f524f409b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114793382611d99565b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114c89190612c12565b9250508190555050565b80600760006114df611b72565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661158c611b72565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115d19190612a80565b60405180910390a35050565b7f000000000000000000000000000000000000000000000000000000000000000081565b61160c848484610c10565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461166e5761163784848484611e7d565b61166d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61167c611b7a565b80600d8190555050565b606061169182611b13565b6116c7576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116d1611fdd565b90506000815114156116f25760405180602001604052806000815250611721565b60136116fd8461206f565b600a604051602001611711939291906129e8565b6040516020818303038152906040525b915050919050565b6013805461173690612daa565b80601f016020809104026020016040519081016040528092919081815260200182805461176290612daa565b80156117af5780601f10611784576101008083540402835291602001916117af565b820191906000526020600020905b81548152906001019060200180831161179257829003601f168201915b505050505081565b6117bf611b7a565b8060108190555050565b6002808111156117dc576117db612e3c565b5b601260009054906101000a900460ff1660028111156117fe576117fd612e3c565b5b14611835576040517f3f88677400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006009541115611891576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f5461189f9190612c68565b34146118d6576040517ebfc92100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60105481601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119249190612c12565b111561195c576040517f524f409b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601154811115611998576040517f524f409b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119a23382611d99565b80601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f19190612c12565b9250508190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a97611b7a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90612ad8565b60405180910390fd5b611b1081611db7565b50565b600081611b1e611bf8565b11158015611b2d575060005482105b8015611b6b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611b826120c8565b73ffffffffffffffffffffffffffffffffffffffff16611ba06111cb565b73ffffffffffffffffffffffffffffffffffffffff1614611bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bed90612af8565b60405180910390fd5b565b60006001905090565b60008082905080611c10611bf8565b11611c9857600054811015611c975760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c95575b6000811415611c8b576004600083600190039350838152602001908152602001600020549050611c60565b8092505050611cca565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d578686846120d0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611db38282604051806020016040528060008152506120d9565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ea3611b72565b8786866040518563ffffffff1660e01b8152600401611ec59493929190612a34565b602060405180830381600087803b158015611edf57600080fd5b505af1925050508015611f1057506040513d601f19601f82011682018060405250810190611f0d9190612734565b60015b611f8a573d8060008114611f40576040519150601f19603f3d011682016040523d82523d6000602084013e611f45565b606091505b50600081511415611f82576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060138054611fec90612daa565b80601f016020809104026020016040519081016040528092919081815260200182805461201890612daa565b80156120655780601f1061203a57610100808354040283529160200191612065565b820191906000526020600020905b81548152906001019060200180831161204857829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b6001156120b357600184039350600a81066030018453600a81049050806120ae576120b3565b612088565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b6120e38383612176565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461217157600080549050600083820390505b6121236000868380600101945086611e7d565b612159576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061211057816000541461216e57600080fd5b50505b505050565b60008054905060008214156121b7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121c46000848385611d3a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061223b8361222c6000866000611d40565b61223585612333565b17611d68565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122dc57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122a1565b506000821415612318576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061232e6000848385611d93565b505050565b60006001821460e11b9050919050565b82805461234f90612daa565b90600052602060002090601f01602090048101928261237157600085556123b8565b82601f1061238a57805160ff19168380011785556123b8565b828001600101855582156123b8579182015b828111156123b757825182559160200191906001019061239c565b5b5090506123c591906123c9565b5090565b5b808211156123e25760008160009055506001016123ca565b5090565b60006123f96123f484612b58565b612b33565b90508281526020810184848401111561241557612414612ece565b5b612420848285612d68565b509392505050565b600061243b61243684612b89565b612b33565b90508281526020810184848401111561245757612456612ece565b5b612462848285612d68565b509392505050565b60008135905061247981612f7a565b92915050565b60008135905061248e81612f91565b92915050565b6000813590506124a381612fa8565b92915050565b6000815190506124b881612fa8565b92915050565b600082601f8301126124d3576124d2612ec9565b5b81356124e38482602086016123e6565b91505092915050565b600082601f83011261250157612500612ec9565b5b8135612511848260208601612428565b91505092915050565b60008135905061252981612fbf565b92915050565b60008135905061253e81612fd6565b92915050565b60006020828403121561255a57612559612ed8565b5b60006125688482850161246a565b91505092915050565b6000806040838503121561258857612587612ed8565b5b60006125968582860161246a565b92505060206125a78582860161246a565b9150509250929050565b6000806000606084860312156125ca576125c9612ed8565b5b60006125d88682870161246a565b93505060206125e98682870161246a565b92505060406125fa8682870161251a565b9150509250925092565b6000806000806080858703121561261e5761261d612ed8565b5b600061262c8782880161246a565b945050602061263d8782880161246a565b935050604061264e8782880161251a565b925050606085013567ffffffffffffffff81111561266f5761266e612ed3565b5b61267b878288016124be565b91505092959194509250565b6000806040838503121561269e5761269d612ed8565b5b60006126ac8582860161246a565b92505060206126bd8582860161247f565b9150509250929050565b600080604083850312156126de576126dd612ed8565b5b60006126ec8582860161246a565b92505060206126fd8582860161251a565b9150509250929050565b60006020828403121561271d5761271c612ed8565b5b600061272b84828501612494565b91505092915050565b60006020828403121561274a57612749612ed8565b5b6000612758848285016124a9565b91505092915050565b60006020828403121561277757612776612ed8565b5b600082013567ffffffffffffffff81111561279557612794612ed3565b5b6127a1848285016124ec565b91505092915050565b6000602082840312156127c0576127bf612ed8565b5b60006127ce8482850161251a565b91505092915050565b600080604083850312156127ee576127ed612ed8565b5b60006127fc8582860161251a565b925050602061280d8582860161246a565b9150509250929050565b60006020828403121561282d5761282c612ed8565b5b600061283b8482850161252f565b91505092915050565b61284d81612cc2565b82525050565b61285c81612cd4565b82525050565b600061286d82612bcf565b6128778185612be5565b9350612887818560208601612d77565b61289081612edd565b840191505092915050565b6128a481612d56565b82525050565b60006128b582612bda565b6128bf8185612bf6565b93506128cf818560208601612d77565b6128d881612edd565b840191505092915050565b60006128ee82612bda565b6128f88185612c07565b9350612908818560208601612d77565b80840191505092915050565b6000815461292181612daa565b61292b8186612c07565b9450600182166000811461294657600181146129575761298a565b60ff1983168652818601935061298a565b61296085612bba565b60005b8381101561298257815481890152600182019150602081019050612963565b838801955050505b50505092915050565b60006129a0602683612bf6565b91506129ab82612eee565b604082019050919050565b60006129c3602083612bf6565b91506129ce82612f3d565b602082019050919050565b6129e281612d3f565b82525050565b60006129f48286612914565b9150612a0082856128e3565b9150612a0c8284612914565b9150819050949350505050565b6000602082019050612a2e6000830184612844565b92915050565b6000608082019050612a496000830187612844565b612a566020830186612844565b612a6360408301856129d9565b8181036060830152612a758184612862565b905095945050505050565b6000602082019050612a956000830184612853565b92915050565b6000602082019050612ab0600083018461289b565b92915050565b60006020820190508181036000830152612ad081846128aa565b905092915050565b60006020820190508181036000830152612af181612993565b9050919050565b60006020820190508181036000830152612b11816129b6565b9050919050565b6000602082019050612b2d60008301846129d9565b92915050565b6000612b3d612b4e565b9050612b498282612ddc565b919050565b6000604051905090565b600067ffffffffffffffff821115612b7357612b72612e9a565b5b612b7c82612edd565b9050602081019050919050565b600067ffffffffffffffff821115612ba457612ba3612e9a565b5b612bad82612edd565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c1d82612d3f565b9150612c2883612d3f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c5d57612c5c612e0d565b5b828201905092915050565b6000612c7382612d3f565b9150612c7e83612d3f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cb757612cb6612e0d565b5b828202905092915050565b6000612ccd82612d1f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050612d1a82612f66565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612d6182612d0c565b9050919050565b82818337600083830152505050565b60005b83811015612d95578082015181840152602081019050612d7a565b83811115612da4576000848401525b50505050565b60006002820490506001821680612dc257607f821691505b60208210811415612dd657612dd5612e6b565b5b50919050565b612de582612edd565b810181811067ffffffffffffffff82111715612e0457612e03612e9a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60038110612f7757612f76612e3c565b5b50565b612f8381612cc2565b8114612f8e57600080fd5b50565b612f9a81612cd4565b8114612fa557600080fd5b50565b612fb181612ce0565b8114612fbc57600080fd5b50565b612fc881612d3f565b8114612fd357600080fd5b50565b612fdf81612d49565b8114612fea57600080fd5b5056fea264697066735822122081be2f32330f41d9f1a91d6cd78667aeeaa9b212e4a03006dd2cb6f302d1c56864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e4176617850756e6b732047656e32000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000741502047656e32000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656964706b6b327764626b366d333732727733636b3261726e6a376164336f7279357164666963736d6871626c70666232647a3569342f0000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e4176617850756e6b732047656e32000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000741502047656e32000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656964706b6b327764626b366d333732727733636b3261726e6a376164336f7279357164666963736d6871626c70666232647a3569342f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): AvaxPunks Gen2
Arg [1] : _symbol (string): AP Gen2
Arg [2] : _baseUri (string): ipfs://bafybeidpkk2wdbk6m372rw3ck2arnj7ad3ory5qdficsmhqblpfb2dz5i4/
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 4176617850756e6b732047656e32000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 41502047656e3200000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 697066733a2f2f6261667962656964706b6b327764626b366d33373272773363
Arg [9] : 6b3261726e6a376164336f7279357164666963736d6871626c70666232647a35
Arg [10] : 69342f0000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
55204:4111:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55601:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21997:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55518:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22899:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29390:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28823:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58881:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55654:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18650:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33029:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55944:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58369:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58146:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58545:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59198:114;;;:::i;:::-;;35950:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55437:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55475:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55699:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57577:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58258:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55854:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24292:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19834:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58048:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23075:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55560:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56326:481;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29948:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55749:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36741:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58649:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57689:351;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55908:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58763:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56815:515;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30339:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55601:42;;;;:::o;21997:639::-;22082:4;22421:10;22406:25;;:11;:25;;;;:102;;;;22498:10;22483:25;;:11;:25;;;;22406:102;:179;;;;22575:10;22560:25;;:11;:25;;;;22406:179;22386:199;;21997:639;;;:::o;55518:35::-;;;:::o;22899:100::-;22953:13;22986:5;22979:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22899:100;:::o;29390:218::-;29466:7;29491:16;29499:7;29491;:16::i;:::-;29486:64;;29516:34;;;;;;;;;;;;;;29486:64;29570:15;:24;29586:7;29570:24;;;;;;;;;;;:30;;;;;;;;;;;;29563:37;;29390:218;;;:::o;28823:408::-;28912:13;28928:16;28936:7;28928;:16::i;:::-;28912:32;;28984:5;28961:28;;:19;:17;:19::i;:::-;:28;;;28957:175;;29009:44;29026:5;29033:19;:17;:19::i;:::-;29009:16;:44::i;:::-;29004:128;;29081:35;;;;;;;;;;;;;;29004:128;28957:175;29177:2;29144:15;:24;29160:7;29144:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29215:7;29211:2;29195:28;;29204:5;29195:28;;;;;;;;;;;;28901:330;28823:408;;:::o;58881:120::-;2014:13;:11;:13::i;:::-;58989:4:::1;58962:24;:31;;;;58881:120:::0;:::o;55654:38::-;;;;:::o;18650:323::-;18711:7;18939:15;:13;:15::i;:::-;18924:12;;18908:13;;:28;:46;18901:53;;18650:323;:::o;33029:2825::-;33171:27;33201;33220:7;33201:18;:27::i;:::-;33171:57;;33286:4;33245:45;;33261:19;33245:45;;;33241:86;;33299:28;;;;;;;;;;;;;;33241:86;33341:27;33370:23;33397:35;33424:7;33397:26;:35::i;:::-;33340:92;;;;33532:68;33557:15;33574:4;33580:19;:17;:19::i;:::-;33532:24;:68::i;:::-;33527:180;;33620:43;33637:4;33643:19;:17;:19::i;:::-;33620:16;:43::i;:::-;33615:92;;33672:35;;;;;;;;;;;;;;33615:92;33527:180;33738:1;33724:16;;:2;:16;;;33720:52;;;33749:23;;;;;;;;;;;;;;33720:52;33785:43;33807:4;33813:2;33817:7;33826:1;33785:21;:43::i;:::-;33921:15;33918:160;;;34061:1;34040:19;34033:30;33918:160;34458:18;:24;34477:4;34458:24;;;;;;;;;;;;;;;;34456:26;;;;;;;;;;;;34527:18;:22;34546:2;34527:22;;;;;;;;;;;;;;;;34525:24;;;;;;;;;;;34849:146;34886:2;34935:45;34950:4;34956:2;34960:19;34935:14;:45::i;:::-;15049:8;34907:73;34849:18;:146::i;:::-;34820:17;:26;34838:7;34820:26;;;;;;;;;;;:175;;;;35166:1;15049:8;35115:19;:47;:52;35111:627;;;35188:19;35220:1;35210:7;:11;35188:33;;35377:1;35343:17;:30;35361:11;35343:30;;;;;;;;;;;;:35;35339:384;;;35481:13;;35466:11;:28;35462:242;;35661:19;35628:17;:30;35646:11;35628:30;;;;;;;;;;;:52;;;;35462:242;35339:384;35169:569;35111:627;35785:7;35781:2;35766:27;;35775:4;35766:27;;;;;;;;;;;;35804:42;35825:4;35831:2;35835:7;35844:1;35804:20;:42::i;:::-;33160:2694;;;33029:2825;;;:::o;55944:53::-;;;;;;;;;;;;;;;;;:::o;58369:168::-;2014:13;:11;:13::i;:::-;58469:6:::1;58453:13;;:22;58449:44;;;58484:9;;;;;;;;;;;;;;58449:44;58504:25;58514:9;58525:3;58504:9;:25::i;:::-;58369:168:::0;;:::o;58146:104::-;2014:13;:11;:13::i;:::-;58234:8:::1;58219:12;:23;;;;58146:104:::0;:::o;58545:96::-;2014:13;:11;:13::i;:::-;58629:4:::1;58614:12;:19;;;;58545:96:::0;:::o;59198:114::-;2014:13;:11;:13::i;:::-;59264:7:::1;:5;:7::i;:::-;59256:25;;:48;59282:21;59256:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59198:114::o:0;35950:193::-;36096:39;36113:4;36119:2;36123:7;36096:39;;;;;;;;;;;;:16;:39::i;:::-;35950:193;;;:::o;55437:31::-;;;;:::o;55475:36::-;;;;:::o;55699:43::-;;;;:::o;57577:104::-;2014:13;:11;:13::i;:::-;57666:7:::1;57650:13;:23;;;;;;;;;;;;:::i;:::-;;57577:104:::0;:::o;58258:103::-;2014:13;:11;:13::i;:::-;58346:6:::1;58336:17;;;;;;;;;;:::i;:::-;;58324:9;;:29;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;58258:103:::0;:::o;55854:45::-;;;;;;;;;;;;;:::o;24292:152::-;24364:7;24407:27;24426:7;24407:18;:27::i;:::-;24384:52;;24292:152;;;:::o;19834:233::-;19906:7;19947:1;19930:19;;:5;:19;;;19926:60;;;19958:28;;;;;;;;;;;;;;19926:60;13993:13;20004:18;:25;20023:5;20004:25;;;;;;;;;;;;;;;;:55;19997:62;;19834:233;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;58048:90::-;2014:13;:11;:13::i;:::-;58122:8:::1;58114:5;:16;;;;58048:90:::0;:::o;23075:104::-;23131:13;23164:7;23157:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23075:104;:::o;55560:34::-;;;;:::o;56326:481::-;56398:14;56385:27;;;;;;;;:::i;:::-;;:9;;;;;;;;;;;:27;;;;;;;;:::i;:::-;;;56381:54;;56421:14;;;;;;;;;;;;;;56381:54;56466:6;56450:13;;:22;56446:44;;;56481:9;;;;;;;;;;;;;;56446:44;56526:3;56518:5;;:11;;;;:::i;:::-;56505:9;:24;56501:51;;56538:14;;;;;;;;;;;;;;56501:51;56608:12;;56602:3;56569:18;:30;56588:10;56569:30;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:51;56565:81;;;56629:17;;;;;;;;;;;;;;56565:81;56667:17;;56661:3;:23;56657:53;;;56693:17;;;;;;;;;;;;;;56657:53;56723:26;56733:10;56745:3;56723:9;:26::i;:::-;56796:3;56762:18;:30;56781:10;56762:30;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;56326:481;:::o;29948:234::-;30095:8;30043:18;:39;30062:19;:17;:19::i;:::-;30043:39;;;;;;;;;;;;;;;:49;30083:8;30043:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30155:8;30119:55;;30134:19;:17;:19::i;:::-;30119:55;;;30165:8;30119:55;;;;;;:::i;:::-;;;;;;;;29948:234;;:::o;55749:44::-;;;:::o;36741:407::-;36916:31;36929:4;36935:2;36939:7;36916:12;:31::i;:::-;36980:1;36962:2;:14;;;:19;36958:183;;37001:56;37032:4;37038:2;37042:7;37051:5;37001:30;:56::i;:::-;36996:145;;37085:40;;;;;;;;;;;;;;36996:145;36958:183;36741:407;;;;:::o;58649:106::-;2014:13;:11;:13::i;:::-;58743:4:::1;58723:17;:24;;;;58649:106:::0;:::o;57689:351::-;57762:13;57793:16;57801:7;57793;:16::i;:::-;57788:59;;57818:29;;;;;;;;;;;;;;57788:59;57858:28;57889:10;:8;:10::i;:::-;57858:41;;57949:1;57923:14;57917:28;:33;;:115;;;;;;;;;;;;;;;;;57977:13;57992:18;58002:7;57992:9;:18::i;:::-;58012:13;57960:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57917:115;57910:122;;;57689:351;;;:::o;55908:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58763:110::-;2014:13;:11;:13::i;:::-;58861:4:::1;58839:19;:26;;;;58763:110:::0;:::o;56815:515::-;56890:17;56877:30;;;;;;;;:::i;:::-;;:9;;;;;;;;;;;:30;;;;;;;;:::i;:::-;;;56873:57;;56916:14;;;;;;;;;;;;;;56873:57;56961:13;56945;;:29;56941:51;;;56983:9;;;;;;;;;;;;;;56941:51;57035:3;57020:12;;:18;;;;:::i;:::-;57007:9;:31;57003:58;;57047:14;;;;;;;;;;;;;;57003:58;57117:19;;57111:3;57078:18;:30;57097:10;57078:30;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:58;57074:88;;;57145:17;;;;;;;;;;;;;;57074:88;57183:24;;57177:3;:30;57173:60;;;57216:17;;;;;;;;;;;;;;57173:60;57246:26;57256:10;57268:3;57246:9;:26::i;:::-;57319:3;57285:18;:30;57304:10;57285:30;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;56815:515;:::o;30339:164::-;30436:4;30460:18;:25;30479:5;30460:25;;;;;;;;;;;;;;;:35;30486:8;30460:35;;;;;;;;;;;;;;;;;;;;;;;;;30453:42;;30339:164;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;30761:282::-;30826:4;30882:7;30863:15;:13;:15::i;:::-;:26;;:66;;;;;30916:13;;30906:7;:23;30863:66;:153;;;;;31015:1;14769:8;30967:17;:26;30985:7;30967:26;;;;;;;;;;;;:44;:49;30863:153;30843:173;;30761:282;;;:::o;53069:105::-;53129:7;53156:10;53149:17;;53069:105;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;57346:101::-;57411:7;57438:1;57431:8;;57346:101;:::o;25447:1275::-;25514:7;25534:12;25549:7;25534:22;;25617:4;25598:15;:13;:15::i;:::-;:23;25594:1061;;25651:13;;25644:4;:20;25640:1015;;;25689:14;25706:17;:23;25724:4;25706:23;;;;;;;;;;;;25689:40;;25823:1;14769:8;25795:6;:24;:29;25791:845;;;26460:113;26477:1;26467:6;:11;26460:113;;;26520:17;:25;26538:6;;;;;;;26520:25;;;;;;;;;;;;26511:34;;26460:113;;;26606:6;26599:13;;;;;;25791:845;25666:989;25640:1015;25594:1061;26683:31;;;;;;;;;;;;;;25447:1275;;;;:::o;31924:485::-;32026:27;32055:23;32096:38;32137:15;:24;32153:7;32137:24;;;;;;;;;;;32096:65;;32314:18;32291:41;;32371:19;32365:26;32346:45;;32276:126;31924:485;;;:::o;31152:659::-;31301:11;31466:16;31459:5;31455:28;31446:37;;31626:16;31615:9;31611:32;31598:45;;31776:15;31765:9;31762:30;31754:5;31743:9;31740:20;31737:56;31727:66;;31152:659;;;;;:::o;37810:159::-;;;;;:::o;52378:311::-;52513:7;52533:16;15173:3;52559:19;:41;;52533:68;;15173:3;52627:31;52638:4;52644:2;52648:9;52627:10;:31::i;:::-;52619:40;;:62;;52612:69;;;52378:311;;;;;:::o;27270:450::-;27350:14;27518:16;27511:5;27507:28;27498:37;;27695:5;27681:11;27656:23;27652:41;27649:52;27642:5;27639:63;27629:73;;27270:450;;;;:::o;38634:158::-;;;;;:::o;46901:112::-;46978:27;46988:2;46992:8;46978:27;;;;;;;;;;;;:9;:27::i;:::-;46901:112;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;39232:716::-;39395:4;39441:2;39416:45;;;39462:19;:17;:19::i;:::-;39483:4;39489:7;39498:5;39416:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39412:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39716:1;39699:6;:13;:18;39695:235;;;39745:40;;;;;;;;;;;;;;39695:235;39888:6;39882:13;39873:6;39869:2;39865:15;39858:38;39412:529;39585:54;;;39575:64;;;:6;:64;;;;39568:71;;;39232:716;;;;;;:::o;57455:114::-;57515:13;57548;57541:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57455:114;:::o;53276:1745::-;53341:17;53775:4;53768;53762:11;53758:22;53867:1;53861:4;53854:15;53942:4;53939:1;53935:12;53928:19;;54024:1;54019:3;54012:14;54128:3;54367:5;54349:428;54375:1;54349:428;;;54415:1;54410:3;54406:11;54399:18;;54586:2;54580:4;54576:13;54572:2;54568:22;54563:3;54555:36;54680:2;54674:4;54670:13;54662:21;;54747:4;54737:25;;54755:5;;54737:25;54349:428;;;54353:21;54816:3;54811;54807:13;54931:4;54926:3;54922:14;54915:21;;54996:6;54991:3;54984:19;53380:1634;;;53276:1745;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;52079:147::-;52216:6;52079:147;;;;;:::o;46128:689::-;46259:19;46265:2;46269:8;46259:5;:19::i;:::-;46338:1;46320:2;:14;;;:19;46316:483;;46360:11;46374:13;;46360:27;;46406:13;46428:8;46422:3;:14;46406:30;;46455:233;46486:62;46525:1;46529:2;46533:7;;;;;;46542:5;46486:30;:62::i;:::-;46481:167;;46584:40;;;;;;;;;;;;;;46481:167;46683:3;46675:5;:11;46455:233;;46770:3;46753:13;;:20;46749:34;;46775:8;;;46749:34;46341:458;;46316:483;46128:689;;;:::o;40410:2966::-;40483:20;40506:13;;40483:36;;40546:1;40534:8;:13;40530:44;;;40556:18;;;;;;;;;;;;;;40530:44;40587:61;40617:1;40621:2;40625:12;40639:8;40587:21;:61::i;:::-;41131:1;14131:2;41101:1;:26;;41100:32;41088:8;:45;41062:18;:22;41081:2;41062:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41410:139;41447:2;41501:33;41524:1;41528:2;41532:1;41501:14;:33::i;:::-;41468:30;41489:8;41468:20;:30::i;:::-;:66;41410:18;:139::i;:::-;41376:17;:31;41394:12;41376:31;;;;;;;;;;;:173;;;;41566:16;41597:11;41626:8;41611:12;:23;41597:37;;42147:16;42143:2;42139:25;42127:37;;42519:12;42479:8;42438:1;42376:25;42317:1;42256;42229:335;42890:1;42876:12;42872:20;42830:346;42931:3;42922:7;42919:16;42830:346;;43149:7;43139:8;43136:1;43109:25;43106:1;43103;43098:59;42984:1;42975:7;42971:15;42960:26;;42830:346;;;42834:77;43221:1;43209:8;:13;43205:45;;;43231:19;;;;;;;;;;;;;;43205:45;43283:3;43267:13;:19;;;;40836:2462;;43308:60;43337:1;43341:2;43345:12;43359:8;43308:20;:60::i;:::-;40472:2904;40410:2966;;:::o;27822:324::-;27892:14;28125:1;28115:8;28112:15;28086:24;28082:46;28072:56;;27822:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:135::-;2321:5;2359:6;2346:20;2337:29;;2375:31;2400:5;2375:31;:::i;:::-;2277:135;;;;:::o;2418:329::-;2477:6;2526:2;2514:9;2505:7;2501:23;2497:32;2494:119;;;2532:79;;:::i;:::-;2494:119;2652:1;2677:53;2722:7;2713:6;2702:9;2698:22;2677:53;:::i;:::-;2667:63;;2623:117;2418:329;;;;:::o;2753:474::-;2821:6;2829;2878:2;2866:9;2857:7;2853:23;2849:32;2846:119;;;2884:79;;:::i;:::-;2846:119;3004:1;3029:53;3074:7;3065:6;3054:9;3050:22;3029:53;:::i;:::-;3019:63;;2975:117;3131:2;3157:53;3202:7;3193:6;3182:9;3178:22;3157:53;:::i;:::-;3147:63;;3102:118;2753:474;;;;;:::o;3233:619::-;3310:6;3318;3326;3375:2;3363:9;3354:7;3350:23;3346:32;3343:119;;;3381:79;;:::i;:::-;3343:119;3501:1;3526:53;3571:7;3562:6;3551:9;3547:22;3526:53;:::i;:::-;3516:63;;3472:117;3628:2;3654:53;3699:7;3690:6;3679:9;3675:22;3654:53;:::i;:::-;3644:63;;3599:118;3756:2;3782:53;3827:7;3818:6;3807:9;3803:22;3782:53;:::i;:::-;3772:63;;3727:118;3233:619;;;;;:::o;3858:943::-;3953:6;3961;3969;3977;4026:3;4014:9;4005:7;4001:23;3997:33;3994:120;;;4033:79;;:::i;:::-;3994:120;4153:1;4178:53;4223:7;4214:6;4203:9;4199:22;4178:53;:::i;:::-;4168:63;;4124:117;4280:2;4306:53;4351:7;4342:6;4331:9;4327:22;4306:53;:::i;:::-;4296:63;;4251:118;4408:2;4434:53;4479:7;4470:6;4459:9;4455:22;4434:53;:::i;:::-;4424:63;;4379:118;4564:2;4553:9;4549:18;4536:32;4595:18;4587:6;4584:30;4581:117;;;4617:79;;:::i;:::-;4581:117;4722:62;4776:7;4767:6;4756:9;4752:22;4722:62;:::i;:::-;4712:72;;4507:287;3858:943;;;;;;;:::o;4807:468::-;4872:6;4880;4929:2;4917:9;4908:7;4904:23;4900:32;4897:119;;;4935:79;;:::i;:::-;4897:119;5055:1;5080:53;5125:7;5116:6;5105:9;5101:22;5080:53;:::i;:::-;5070:63;;5026:117;5182:2;5208:50;5250:7;5241:6;5230:9;5226:22;5208:50;:::i;:::-;5198:60;;5153:115;4807:468;;;;;:::o;5281:474::-;5349:6;5357;5406:2;5394:9;5385:7;5381:23;5377:32;5374:119;;;5412:79;;:::i;:::-;5374:119;5532:1;5557:53;5602:7;5593:6;5582:9;5578:22;5557:53;:::i;:::-;5547:63;;5503:117;5659:2;5685:53;5730:7;5721:6;5710:9;5706:22;5685:53;:::i;:::-;5675:63;;5630:118;5281:474;;;;;:::o;5761:327::-;5819:6;5868:2;5856:9;5847:7;5843:23;5839:32;5836:119;;;5874:79;;:::i;:::-;5836:119;5994:1;6019:52;6063:7;6054:6;6043:9;6039:22;6019:52;:::i;:::-;6009:62;;5965:116;5761:327;;;;:::o;6094:349::-;6163:6;6212:2;6200:9;6191:7;6187:23;6183:32;6180:119;;;6218:79;;:::i;:::-;6180:119;6338:1;6363:63;6418:7;6409:6;6398:9;6394:22;6363:63;:::i;:::-;6353:73;;6309:127;6094:349;;;;:::o;6449:509::-;6518:6;6567:2;6555:9;6546:7;6542:23;6538:32;6535:119;;;6573:79;;:::i;:::-;6535:119;6721:1;6710:9;6706:17;6693:31;6751:18;6743:6;6740:30;6737:117;;;6773:79;;:::i;:::-;6737:117;6878:63;6933:7;6924:6;6913:9;6909:22;6878:63;:::i;:::-;6868:73;;6664:287;6449:509;;;;:::o;6964:329::-;7023:6;7072:2;7060:9;7051:7;7047:23;7043:32;7040:119;;;7078:79;;:::i;:::-;7040:119;7198:1;7223:53;7268:7;7259:6;7248:9;7244:22;7223:53;:::i;:::-;7213:63;;7169:117;6964:329;;;;:::o;7299:474::-;7367:6;7375;7424:2;7412:9;7403:7;7399:23;7395:32;7392:119;;;7430:79;;:::i;:::-;7392:119;7550:1;7575:53;7620:7;7611:6;7600:9;7596:22;7575:53;:::i;:::-;7565:63;;7521:117;7677:2;7703:53;7748:7;7739:6;7728:9;7724:22;7703:53;:::i;:::-;7693:63;;7648:118;7299:474;;;;;:::o;7779:325::-;7836:6;7885:2;7873:9;7864:7;7860:23;7856:32;7853:119;;;7891:79;;:::i;:::-;7853:119;8011:1;8036:51;8079:7;8070:6;8059:9;8055:22;8036:51;:::i;:::-;8026:61;;7982:115;7779:325;;;;:::o;8110:118::-;8197:24;8215:5;8197:24;:::i;:::-;8192:3;8185:37;8110:118;;:::o;8234:109::-;8315:21;8330:5;8315:21;:::i;:::-;8310:3;8303:34;8234:109;;:::o;8349:360::-;8435:3;8463:38;8495:5;8463:38;:::i;:::-;8517:70;8580:6;8575:3;8517:70;:::i;:::-;8510:77;;8596:52;8641:6;8636:3;8629:4;8622:5;8618:16;8596:52;:::i;:::-;8673:29;8695:6;8673:29;:::i;:::-;8668:3;8664:39;8657:46;;8439:270;8349:360;;;;:::o;8715:155::-;8814:49;8857:5;8814:49;:::i;:::-;8809:3;8802:62;8715:155;;:::o;8876:364::-;8964:3;8992:39;9025:5;8992:39;:::i;:::-;9047:71;9111:6;9106:3;9047:71;:::i;:::-;9040:78;;9127:52;9172:6;9167:3;9160:4;9153:5;9149:16;9127:52;:::i;:::-;9204:29;9226:6;9204:29;:::i;:::-;9199:3;9195:39;9188:46;;8968:272;8876:364;;;;:::o;9246:377::-;9352:3;9380:39;9413:5;9380:39;:::i;:::-;9435:89;9517:6;9512:3;9435:89;:::i;:::-;9428:96;;9533:52;9578:6;9573:3;9566:4;9559:5;9555:16;9533:52;:::i;:::-;9610:6;9605:3;9601:16;9594:23;;9356:267;9246:377;;;;:::o;9653:845::-;9756:3;9793:5;9787:12;9822:36;9848:9;9822:36;:::i;:::-;9874:89;9956:6;9951:3;9874:89;:::i;:::-;9867:96;;9994:1;9983:9;9979:17;10010:1;10005:137;;;;10156:1;10151:341;;;;9972:520;;10005:137;10089:4;10085:9;10074;10070:25;10065:3;10058:38;10125:6;10120:3;10116:16;10109:23;;10005:137;;10151:341;10218:38;10250:5;10218:38;:::i;:::-;10278:1;10292:154;10306:6;10303:1;10300:13;10292:154;;;10380:7;10374:14;10370:1;10365:3;10361:11;10354:35;10430:1;10421:7;10417:15;10406:26;;10328:4;10325:1;10321:12;10316:17;;10292:154;;;10475:6;10470:3;10466:16;10459:23;;10158:334;;9972:520;;9760:738;;9653:845;;;;:::o;10504:366::-;10646:3;10667:67;10731:2;10726:3;10667:67;:::i;:::-;10660:74;;10743:93;10832:3;10743:93;:::i;:::-;10861:2;10856:3;10852:12;10845:19;;10504:366;;;:::o;10876:::-;11018:3;11039:67;11103:2;11098:3;11039:67;:::i;:::-;11032:74;;11115:93;11204:3;11115:93;:::i;:::-;11233:2;11228:3;11224:12;11217:19;;10876:366;;;:::o;11248:118::-;11335:24;11353:5;11335:24;:::i;:::-;11330:3;11323:37;11248:118;;:::o;11372:583::-;11594:3;11616:92;11704:3;11695:6;11616:92;:::i;:::-;11609:99;;11725:95;11816:3;11807:6;11725:95;:::i;:::-;11718:102;;11837:92;11925:3;11916:6;11837:92;:::i;:::-;11830:99;;11946:3;11939:10;;11372:583;;;;;;:::o;11961:222::-;12054:4;12092:2;12081:9;12077:18;12069:26;;12105:71;12173:1;12162:9;12158:17;12149:6;12105:71;:::i;:::-;11961:222;;;;:::o;12189:640::-;12384:4;12422:3;12411:9;12407:19;12399:27;;12436:71;12504:1;12493:9;12489:17;12480:6;12436:71;:::i;:::-;12517:72;12585:2;12574:9;12570:18;12561:6;12517:72;:::i;:::-;12599;12667:2;12656:9;12652:18;12643:6;12599:72;:::i;:::-;12718:9;12712:4;12708:20;12703:2;12692:9;12688:18;12681:48;12746:76;12817:4;12808:6;12746:76;:::i;:::-;12738:84;;12189:640;;;;;;;:::o;12835:210::-;12922:4;12960:2;12949:9;12945:18;12937:26;;12973:65;13035:1;13024:9;13020:17;13011:6;12973:65;:::i;:::-;12835:210;;;;:::o;13051:246::-;13156:4;13194:2;13183:9;13179:18;13171:26;;13207:83;13287:1;13276:9;13272:17;13263:6;13207:83;:::i;:::-;13051:246;;;;:::o;13303:313::-;13416:4;13454:2;13443:9;13439:18;13431:26;;13503:9;13497:4;13493:20;13489:1;13478:9;13474:17;13467:47;13531:78;13604:4;13595:6;13531:78;:::i;:::-;13523:86;;13303:313;;;;:::o;13622:419::-;13788:4;13826:2;13815:9;13811:18;13803:26;;13875:9;13869:4;13865:20;13861:1;13850:9;13846:17;13839:47;13903:131;14029:4;13903:131;:::i;:::-;13895:139;;13622:419;;;:::o;14047:::-;14213:4;14251:2;14240:9;14236:18;14228:26;;14300:9;14294:4;14290:20;14286:1;14275:9;14271:17;14264:47;14328:131;14454:4;14328:131;:::i;:::-;14320:139;;14047:419;;;:::o;14472:222::-;14565:4;14603:2;14592:9;14588:18;14580:26;;14616:71;14684:1;14673:9;14669:17;14660:6;14616:71;:::i;:::-;14472:222;;;;:::o;14700:129::-;14734:6;14761:20;;:::i;:::-;14751:30;;14790:33;14818:4;14810:6;14790:33;:::i;:::-;14700:129;;;:::o;14835:75::-;14868:6;14901:2;14895:9;14885:19;;14835:75;:::o;14916:307::-;14977:4;15067:18;15059:6;15056:30;15053:56;;;15089:18;;:::i;:::-;15053:56;15127:29;15149:6;15127:29;:::i;:::-;15119:37;;15211:4;15205;15201:15;15193:23;;14916:307;;;:::o;15229:308::-;15291:4;15381:18;15373:6;15370:30;15367:56;;;15403:18;;:::i;:::-;15367:56;15441:29;15463:6;15441:29;:::i;:::-;15433:37;;15525:4;15519;15515:15;15507:23;;15229:308;;;:::o;15543:141::-;15592:4;15615:3;15607:11;;15638:3;15635:1;15628:14;15672:4;15669:1;15659:18;15651:26;;15543:141;;;:::o;15690:98::-;15741:6;15775:5;15769:12;15759:22;;15690:98;;;:::o;15794:99::-;15846:6;15880:5;15874:12;15864:22;;15794:99;;;:::o;15899:168::-;15982:11;16016:6;16011:3;16004:19;16056:4;16051:3;16047:14;16032:29;;15899:168;;;;:::o;16073:169::-;16157:11;16191:6;16186:3;16179:19;16231:4;16226:3;16222:14;16207:29;;16073:169;;;;:::o;16248:148::-;16350:11;16387:3;16372:18;;16248:148;;;;:::o;16402:305::-;16442:3;16461:20;16479:1;16461:20;:::i;:::-;16456:25;;16495:20;16513:1;16495:20;:::i;:::-;16490:25;;16649:1;16581:66;16577:74;16574:1;16571:81;16568:107;;;16655:18;;:::i;:::-;16568:107;16699:1;16696;16692:9;16685:16;;16402:305;;;;:::o;16713:348::-;16753:7;16776:20;16794:1;16776:20;:::i;:::-;16771:25;;16810:20;16828:1;16810:20;:::i;:::-;16805:25;;16998:1;16930:66;16926:74;16923:1;16920:81;16915:1;16908:9;16901:17;16897:105;16894:131;;;17005:18;;:::i;:::-;16894:131;17053:1;17050;17046:9;17035:20;;16713:348;;;;:::o;17067:96::-;17104:7;17133:24;17151:5;17133:24;:::i;:::-;17122:35;;17067:96;;;:::o;17169:90::-;17203:7;17246:5;17239:13;17232:21;17221:32;;17169:90;;;:::o;17265:149::-;17301:7;17341:66;17334:5;17330:78;17319:89;;17265:149;;;:::o;17420:139::-;17471:7;17500:5;17489:16;;17506:47;17547:5;17506:47;:::i;:::-;17420:139;;;:::o;17565:126::-;17602:7;17642:42;17635:5;17631:54;17620:65;;17565:126;;;:::o;17697:77::-;17734:7;17763:5;17752:16;;17697:77;;;:::o;17780:86::-;17815:7;17855:4;17848:5;17844:16;17833:27;;17780:86;;;:::o;17872:139::-;17934:9;17967:38;17999:5;17967:38;:::i;:::-;17954:51;;17872:139;;;:::o;18017:154::-;18101:6;18096:3;18091;18078:30;18163:1;18154:6;18149:3;18145:16;18138:27;18017:154;;;:::o;18177:307::-;18245:1;18255:113;18269:6;18266:1;18263:13;18255:113;;;18354:1;18349:3;18345:11;18339:18;18335:1;18330:3;18326:11;18319:39;18291:2;18288:1;18284:10;18279:15;;18255:113;;;18386:6;18383:1;18380:13;18377:101;;;18466:1;18457:6;18452:3;18448:16;18441:27;18377:101;18226:258;18177:307;;;:::o;18490:320::-;18534:6;18571:1;18565:4;18561:12;18551:22;;18618:1;18612:4;18608:12;18639:18;18629:81;;18695:4;18687:6;18683:17;18673:27;;18629:81;18757:2;18749:6;18746:14;18726:18;18723:38;18720:84;;;18776:18;;:::i;:::-;18720:84;18541:269;18490:320;;;:::o;18816:281::-;18899:27;18921:4;18899:27;:::i;:::-;18891:6;18887:40;19029:6;19017:10;19014:22;18993:18;18981:10;18978:34;18975:62;18972:88;;;19040:18;;:::i;:::-;18972:88;19080:10;19076:2;19069:22;18859:238;18816:281;;:::o;19103:180::-;19151:77;19148:1;19141:88;19248:4;19245:1;19238:15;19272:4;19269:1;19262:15;19289:180;19337:77;19334:1;19327:88;19434:4;19431:1;19424:15;19458:4;19455:1;19448:15;19475:180;19523:77;19520:1;19513:88;19620:4;19617:1;19610:15;19644:4;19641:1;19634:15;19661:180;19709:77;19706:1;19699:88;19806:4;19803:1;19796:15;19830:4;19827:1;19820:15;19847:117;19956:1;19953;19946:12;19970:117;20079:1;20076;20069:12;20093:117;20202:1;20199;20192:12;20216:117;20325:1;20322;20315:12;20339:102;20380:6;20431:2;20427:7;20422:2;20415:5;20411:14;20407:28;20397:38;;20339:102;;;:::o;20447:225::-;20587:34;20583:1;20575:6;20571:14;20564:58;20656:8;20651:2;20643:6;20639:15;20632:33;20447:225;:::o;20678:182::-;20818:34;20814:1;20806:6;20802:14;20795:58;20678:182;:::o;20866:119::-;20953:1;20946:5;20943:12;20933:46;;20959:18;;:::i;:::-;20933:46;20866:119;:::o;20991:122::-;21064:24;21082:5;21064:24;:::i;:::-;21057:5;21054:35;21044:63;;21103:1;21100;21093:12;21044:63;20991:122;:::o;21119:116::-;21189:21;21204:5;21189:21;:::i;:::-;21182:5;21179:32;21169:60;;21225:1;21222;21215:12;21169:60;21119:116;:::o;21241:120::-;21313:23;21330:5;21313:23;:::i;:::-;21306:5;21303:34;21293:62;;21351:1;21348;21341:12;21293:62;21241:120;:::o;21367:122::-;21440:24;21458:5;21440:24;:::i;:::-;21433:5;21430:35;21420:63;;21479:1;21476;21469:12;21420:63;21367:122;:::o;21495:118::-;21566:22;21582:5;21566:22;:::i;:::-;21559:5;21556:33;21546:61;;21603:1;21600;21593:12;21546:61;21495:118;:::o
Swarm Source
ipfs://81be2f32330f41d9f1a91d6cd78667aeeaa9b212e4a03006dd2cb6f302d1c568
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.