Overview
APE Balance
0 APE
APE Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
7533067 | 5 days ago | 2 APE |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
BOBO
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2025-01-04 */ // 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: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: bobo.sol pragma solidity ^0.8.26; contract BOBO is ERC721A, Ownable { using Strings for uint256; uint256 public MAX_SUPPLY = 333; uint256 public constant MAX_PER_WALLET = 10; uint256 public PRICE = 1 ether; //Ape string public baseURI; uint256[] private tokenIds; constructor(string memory _initialBaseURI) ERC721A("BOBO", "BOBO") { baseURI = _initialBaseURI; for (uint256 i = 1; i <= MAX_SUPPLY; i++) { tokenIds.push(i); } } function mint(uint256 quantity) external payable { require(totalSupply() + quantity <= MAX_SUPPLY, "Exceeds max supply"); require(balanceOf(msg.sender) + quantity <= MAX_PER_WALLET, "Exceeds max per wallet"); require(msg.value >= PRICE * quantity, "Insufficient payment"); for (uint256 i = 0; i < quantity; i++) { uint256 randomIndex = _randomIndex(tokenIds.length); uint256 tokenId = tokenIds[randomIndex]; tokenIds[randomIndex] = tokenIds[tokenIds.length - 1]; tokenIds.pop(); _mint(msg.sender, tokenId); } (bool success, ) = payable(owner()).call{ value: msg.value }(""); require(success, "Transfer failed"); } function _randomIndex(uint256 length) private view returns (uint256) { require(length > 0, "No more tokens available"); return uint256( keccak256( abi.encodePacked( block.prevrandao, msg.sender, block.timestamp, tx.gasprice, totalSupply() ) ) ) % length; } function reduceMaxSupply(uint256 newMaxSupply) external onlyOwner { require(newMaxSupply < MAX_SUPPLY, "New max supply must be less than current max supply"); require(totalSupply() <= newMaxSupply, "New max supply must be greater than total supply"); MAX_SUPPLY = newMaxSupply; while (tokenIds.length > newMaxSupply) { tokenIds.pop(); } } function updatePrice(uint256 newPrice) external onlyOwner { PRICE = newPrice; } function _baseURI() internal view override returns (string memory) { return baseURI; } function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function tokenURI(uint256 tokenId) public view override returns (string memory) { require(_exists(tokenId), "URI query for nonexistent token"); string memory baseURI_ = _baseURI(); return bytes(baseURI_).length > 0 ? string(abi.encodePacked(baseURI_, tokenId.toString(), ".json")) : ""; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "No funds to withdraw"); (bool success, ) = payable(owner()).call{ value: balance }(""); require(success, "Withdraw failed"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initialBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"newMaxSupply","type":"uint256"}],"name":"reduceMaxSupply","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405261014d600955670de0b6b3a7640000600a55348015610021575f80fd5b506040516138fe3803806138fe8339818101604052810190610043919061037a565b6040518060400160405280600481526020017f424f424f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424f424f0000000000000000000000000000000000000000000000000000000081525081600290816100be91906105ce565b5080600390816100ce91906105ce565b506100dd61015f60201b60201c565b5f8190555050506101006100f561016360201b60201c565b61016a60201b60201c565b80600b908161010f91906105ce565b505f600190505b600954811161015857600c81908060018154018082558091505060019003905f5260205f20015f90919091909150558080610150906106ca565b915050610116565b5050610711565b5f90565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61028c82610246565b810181811067ffffffffffffffff821117156102ab576102aa610256565b5b80604052505050565b5f6102bd61022d565b90506102c98282610283565b919050565b5f67ffffffffffffffff8211156102e8576102e7610256565b5b6102f182610246565b9050602081019050919050565b8281835e5f83830152505050565b5f61031e610319846102ce565b6102b4565b90508281526020810184848401111561033a57610339610242565b5b6103458482856102fe565b509392505050565b5f82601f8301126103615761036061023e565b5b815161037184826020860161030c565b91505092915050565b5f6020828403121561038f5761038e610236565b5b5f82015167ffffffffffffffff8111156103ac576103ab61023a565b5b6103b88482850161034d565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061040f57607f821691505b602082108103610422576104216103cb565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026104847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610449565b61048e8683610449565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6104d26104cd6104c8846104a6565b6104af565b6104a6565b9050919050565b5f819050919050565b6104eb836104b8565b6104ff6104f7826104d9565b848454610455565b825550505050565b5f90565b610513610507565b61051e8184846104e2565b505050565b5b81811015610541576105365f8261050b565b600181019050610524565b5050565b601f8211156105865761055781610428565b6105608461043a565b8101602085101561056f578190505b61058361057b8561043a565b830182610523565b50505b505050565b5f82821c905092915050565b5f6105a65f198460080261058b565b1980831691505092915050565b5f6105be8383610597565b9150826002028217905092915050565b6105d7826103c1565b67ffffffffffffffff8111156105f0576105ef610256565b5b6105fa82546103f8565b610605828285610545565b5f60209050601f831160018114610636575f8415610624578287015190505b61062e85826105b3565b865550610695565b601f19841661064486610428565b5f5b8281101561066b57848901518255600182019150602085019450602081019050610646565b868310156106885784890151610684601f891682610597565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6106d4826104a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036107065761070561069d565b5b600182019050919050565b6131e08061071e5f395ff3fe608060405260043610610180575f3560e01c806370a08231116100d057806395d89b4111610089578063b88d4fde11610063578063b88d4fde14610500578063c87b56dd1461051c578063e985e9c514610558578063f2fde38b1461059457610180565b806395d89b4114610492578063a0712d68146104bc578063a22cb465146104d857610180565b806370a082311461039c578063715018a6146103d857806373532802146103ee5780638d6cc56d146104165780638d859f3e1461043e5780638da5cb5b1461046857610180565b806323b872dd1161013d57806342842e0e1161011757806342842e0e146102f257806355f804b31461030e5780636352211e146103365780636c0360eb1461037257610180565b806323b872dd1461029657806332cb6b0c146102b25780633ccfd60b146102dc57610180565b806301ffc9a71461018457806306fdde03146101c0578063081812fc146101ea578063095ea7b3146102265780630f2cdd6c1461024257806318160ddd1461026c575b5f80fd5b34801561018f575f80fd5b506101aa60048036038101906101a59190611f8d565b6105bc565b6040516101b79190611fd2565b60405180910390f35b3480156101cb575f80fd5b506101d461064d565b6040516101e1919061205b565b60405180910390f35b3480156101f5575f80fd5b50610210600480360381019061020b91906120ae565b6106dd565b60405161021d9190612118565b60405180910390f35b610240600480360381019061023b919061215b565b610757565b005b34801561024d575f80fd5b50610256610896565b60405161026391906121a8565b60405180910390f35b348015610277575f80fd5b5061028061089b565b60405161028d91906121a8565b60405180910390f35b6102b060048036038101906102ab91906121c1565b6108b0565b005b3480156102bd575f80fd5b506102c6610bbe565b6040516102d391906121a8565b60405180910390f35b3480156102e7575f80fd5b506102f0610bc4565b005b61030c600480360381019061030791906121c1565b610cc5565b005b348015610319575f80fd5b50610334600480360381019061032f919061233d565b610ce4565b005b348015610341575f80fd5b5061035c600480360381019061035791906120ae565b610cff565b6040516103699190612118565b60405180910390f35b34801561037d575f80fd5b50610386610d10565b604051610393919061205b565b60405180910390f35b3480156103a7575f80fd5b506103c260048036038101906103bd9190612384565b610d9c565b6040516103cf91906121a8565b60405180910390f35b3480156103e3575f80fd5b506103ec610e51565b005b3480156103f9575f80fd5b50610414600480360381019061040f91906120ae565b610e64565b005b348015610421575f80fd5b5061043c600480360381019061043791906120ae565b610f3c565b005b348015610449575f80fd5b50610452610f4e565b60405161045f91906121a8565b60405180910390f35b348015610473575f80fd5b5061047c610f54565b6040516104899190612118565b60405180910390f35b34801561049d575f80fd5b506104a6610f7c565b6040516104b3919061205b565b60405180910390f35b6104d660048036038101906104d191906120ae565b61100c565b005b3480156104e3575f80fd5b506104fe60048036038101906104f991906123d9565b611285565b005b61051a600480360381019061051591906124b5565b61138b565b005b348015610527575f80fd5b50610542600480360381019061053d91906120ae565b6113fd565b60405161054f919061205b565b60405180910390f35b348015610563575f80fd5b5061057e60048036038101906105799190612535565b6114a1565b60405161058b9190611fd2565b60405180910390f35b34801561059f575f80fd5b506105ba60048036038101906105b59190612384565b61152f565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061061657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106465750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461065c906125a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610688906125a0565b80156106d35780601f106106aa576101008083540402835291602001916106d3565b820191905f5260205f20905b8154815290600101906020018083116106b657829003601f168201915b5050505050905090565b5f6106e7826115b1565b61071d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61076182610cff565b90508073ffffffffffffffffffffffffffffffffffffffff1661078261160b565b73ffffffffffffffffffffffffffffffffffffffff16146107e5576107ae816107a961160b565b6114a1565b6107e4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a81565b5f6108a4611612565b6001545f540303905090565b5f6108ba82611616565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610921576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061092c846116d9565b91509150610942818761093d61160b565b6116fc565b61098e576109578661095261160b565b6114a1565b61098d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036109f3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a00868686600161173f565b8015610a0a575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610ad285610aae888887611745565b7c02000000000000000000000000000000000000000000000000000000001761176c565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610b4e575f6001850190505f60045f8381526020019081526020015f205403610b4c575f548114610b4b578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610bb68686866001611796565b505050505050565b60095481565b610bcc61179c565b5f4790505f8111610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c099061261a565b60405180910390fd5b5f610c1b610f54565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c3e90612665565b5f6040518083038185875af1925050503d805f8114610c78576040519150601f19603f3d011682016040523d82523d5f602084013e610c7d565b606091505b5050905080610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb8906126c3565b60405180910390fd5b5050565b610cdf83838360405180602001604052805f81525061138b565b505050565b610cec61179c565b80600b9081610cfb919061287e565b5050565b5f610d0982611616565b9050919050565b600b8054610d1d906125a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610d49906125a0565b8015610d945780601f10610d6b57610100808354040283529160200191610d94565b820191905f5260205f20905b815481529060010190602001808311610d7757829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e02576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610e5961179c565b610e625f61181a565b565b610e6c61179c565b6009548110610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea7906129bd565b60405180910390fd5b80610eb961089b565b1115610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef190612a4b565b60405180910390fd5b806009819055505b80600c805490501115610f3957600c805480610f2157610f20612a69565b5b600190038181905f5260205f20015f90559055610f02565b50565b610f4461179c565b80600a8190555050565b600a5481565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f8b906125a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb7906125a0565b80156110025780601f10610fd957610100808354040283529160200191611002565b820191905f5260205f20905b815481529060010190602001808311610fe557829003601f168201915b5050505050905090565b6009548161101861089b565b6110229190612ac3565b1115611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90612b40565b60405180910390fd5b600a8161106f33610d9c565b6110799190612ac3565b11156110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190612ba8565b60405180910390fd5b80600a546110c89190612bc6565b34101561110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190612c51565b60405180910390fd5b5f5b818110156111d1575f611123600c805490506118dd565b90505f600c828154811061113a57611139612c6f565b5b905f5260205f2001549050600c6001600c805490506111599190612c9c565b8154811061116a57611169612c6f565b5b905f5260205f200154600c838154811061118757611186612c6f565b5b905f5260205f200181905550600c8054806111a5576111a4612a69565b5b600190038181905f5260205f20015f905590556111c2338261196a565b5050808060010191505061110c565b505f6111db610f54565b73ffffffffffffffffffffffffffffffffffffffff16346040516111fe90612665565b5f6040518083038185875af1925050503d805f8114611238576040519150601f19603f3d011682016040523d82523d5f602084013e61123d565b606091505b5050905080611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890612d19565b60405180910390fd5b5050565b8060075f61129161160b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133a61160b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137f9190611fd2565b60405180910390a35050565b6113968484846108b0565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146113f7576113c084848484611b13565b6113f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611408826115b1565b611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e90612d81565b60405180910390fd5b5f611450611c5e565b90505f81511161146e5760405180602001604052805f815250611499565b8061147884611cee565b604051602001611489929190612e23565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61153761179c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159c90612ec1565b60405180910390fd5b6115ae8161181a565b50565b5f816115bb611612565b111580156115c957505f5482105b801561160457505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f90565b5f8082905080611624611612565b116116a2575f548110156116a1575f60045f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361169f575b5f81036116955760045f836001900393508381526020019081526020015f2054905061166e565b80925050506116d4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e861175b868684611db8565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6117a4611dc0565b73ffffffffffffffffffffffffffffffffffffffff166117c2610f54565b73ffffffffffffffffffffffffffffffffffffffff1614611818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180f90612f29565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f808211611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790612f91565b60405180910390fd5b814433423a61192d61089b565b604051602001611941959493929190613014565b604051602081830303815290604052805190602001205f1c611963919061309f565b9050919050565b5f805490505f82036119a8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119b45f84838561173f565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611a2683611a175f865f611745565b611a2085611dc7565b1761176c565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114611ac05780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050611a87565b505f8203611afa576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611b0e5f848385611796565b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b3861160b565b8786866040518563ffffffff1660e01b8152600401611b5a9493929190613121565b6020604051808303815f875af1925050508015611b9557506040513d601f19601f82011682018060405250810190611b92919061317f565b60015b611c0b573d805f8114611bc3576040519150601f19603f3d011682016040523d82523d5f602084013e611bc8565b606091505b505f815103611c03576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611c6d906125a0565b80601f0160208091040260200160405190810160405280929190818152602001828054611c99906125a0565b8015611ce45780601f10611cbb57610100808354040283529160200191611ce4565b820191905f5260205f20905b815481529060010190602001808311611cc757829003601f168201915b5050505050905090565b60605f6001611cfc84611dd6565b0190505f8167ffffffffffffffff811115611d1a57611d19612219565b5b6040519080825280601f01601f191660200182016040528015611d4c5781602001600182028036833780820191505090505b5090505f82602001820190505b600115611dad578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611da257611da1613072565b5b0494505f8503611d59575b819350505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611e32577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611e2857611e27613072565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611e6f576d04ee2d6d415b85acef81000000008381611e6557611e64613072565b5b0492506020810190505b662386f26fc100008310611e9e57662386f26fc100008381611e9457611e93613072565b5b0492506010810190505b6305f5e1008310611ec7576305f5e1008381611ebd57611ebc613072565b5b0492506008810190505b6127108310611eec576127108381611ee257611ee1613072565b5b0492506004810190505b60648310611f0f5760648381611f0557611f04613072565b5b0492506002810190505b600a8310611f1e576001810190505b80915050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f6c81611f38565b8114611f76575f80fd5b50565b5f81359050611f8781611f63565b92915050565b5f60208284031215611fa257611fa1611f30565b5b5f611faf84828501611f79565b91505092915050565b5f8115159050919050565b611fcc81611fb8565b82525050565b5f602082019050611fe55f830184611fc3565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61202d82611feb565b6120378185611ff5565b9350612047818560208601612005565b61205081612013565b840191505092915050565b5f6020820190508181035f8301526120738184612023565b905092915050565b5f819050919050565b61208d8161207b565b8114612097575f80fd5b50565b5f813590506120a881612084565b92915050565b5f602082840312156120c3576120c2611f30565b5b5f6120d08482850161209a565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612102826120d9565b9050919050565b612112816120f8565b82525050565b5f60208201905061212b5f830184612109565b92915050565b61213a816120f8565b8114612144575f80fd5b50565b5f8135905061215581612131565b92915050565b5f806040838503121561217157612170611f30565b5b5f61217e85828601612147565b925050602061218f8582860161209a565b9150509250929050565b6121a28161207b565b82525050565b5f6020820190506121bb5f830184612199565b92915050565b5f805f606084860312156121d8576121d7611f30565b5b5f6121e586828701612147565b93505060206121f686828701612147565b92505060406122078682870161209a565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61224f82612013565b810181811067ffffffffffffffff8211171561226e5761226d612219565b5b80604052505050565b5f612280611f27565b905061228c8282612246565b919050565b5f67ffffffffffffffff8211156122ab576122aa612219565b5b6122b482612013565b9050602081019050919050565b828183375f83830152505050565b5f6122e16122dc84612291565b612277565b9050828152602081018484840111156122fd576122fc612215565b5b6123088482856122c1565b509392505050565b5f82601f83011261232457612323612211565b5b81356123348482602086016122cf565b91505092915050565b5f6020828403121561235257612351611f30565b5b5f82013567ffffffffffffffff81111561236f5761236e611f34565b5b61237b84828501612310565b91505092915050565b5f6020828403121561239957612398611f30565b5b5f6123a684828501612147565b91505092915050565b6123b881611fb8565b81146123c2575f80fd5b50565b5f813590506123d3816123af565b92915050565b5f80604083850312156123ef576123ee611f30565b5b5f6123fc85828601612147565b925050602061240d858286016123c5565b9150509250929050565b5f67ffffffffffffffff82111561243157612430612219565b5b61243a82612013565b9050602081019050919050565b5f61245961245484612417565b612277565b90508281526020810184848401111561247557612474612215565b5b6124808482856122c1565b509392505050565b5f82601f83011261249c5761249b612211565b5b81356124ac848260208601612447565b91505092915050565b5f805f80608085870312156124cd576124cc611f30565b5b5f6124da87828801612147565b94505060206124eb87828801612147565b93505060406124fc8782880161209a565b925050606085013567ffffffffffffffff81111561251d5761251c611f34565b5b61252987828801612488565b91505092959194509250565b5f806040838503121561254b5761254a611f30565b5b5f61255885828601612147565b925050602061256985828601612147565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806125b757607f821691505b6020821081036125ca576125c9612573565b5b50919050565b7f4e6f2066756e647320746f2077697468647261770000000000000000000000005f82015250565b5f612604601483611ff5565b915061260f826125d0565b602082019050919050565b5f6020820190508181035f830152612631816125f8565b9050919050565b5f81905092915050565b50565b5f6126505f83612638565b915061265b82612642565b5f82019050919050565b5f61266f82612645565b9150819050919050565b7f5769746864726177206661696c656400000000000000000000000000000000005f82015250565b5f6126ad600f83611ff5565b91506126b882612679565b602082019050919050565b5f6020820190508181035f8301526126da816126a1565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261273d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612702565b6127478683612702565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61278261277d6127788461207b565b61275f565b61207b565b9050919050565b5f819050919050565b61279b83612768565b6127af6127a782612789565b84845461270e565b825550505050565b5f90565b6127c36127b7565b6127ce818484612792565b505050565b5b818110156127f1576127e65f826127bb565b6001810190506127d4565b5050565b601f82111561283657612807816126e1565b612810846126f3565b8101602085101561281f578190505b61283361282b856126f3565b8301826127d3565b50505b505050565b5f82821c905092915050565b5f6128565f198460080261283b565b1980831691505092915050565b5f61286e8383612847565b9150826002028217905092915050565b61288782611feb565b67ffffffffffffffff8111156128a05761289f612219565b5b6128aa82546125a0565b6128b58282856127f5565b5f60209050601f8311600181146128e6575f84156128d4578287015190505b6128de8582612863565b865550612945565b601f1984166128f4866126e1565b5f5b8281101561291b578489015182556001820191506020850194506020810190506128f6565b868310156129385784890151612934601f891682612847565b8355505b6001600288020188555050505b505050505050565b7f4e6577206d617820737570706c79206d757374206265206c657373207468616e5f8201527f2063757272656e74206d617820737570706c7900000000000000000000000000602082015250565b5f6129a7603383611ff5565b91506129b28261294d565b604082019050919050565b5f6020820190508181035f8301526129d48161299b565b9050919050565b7f4e6577206d617820737570706c79206d757374206265206772656174657220745f8201527f68616e20746f74616c20737570706c7900000000000000000000000000000000602082015250565b5f612a35603083611ff5565b9150612a40826129db565b604082019050919050565b5f6020820190508181035f830152612a6281612a29565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612acd8261207b565b9150612ad88361207b565b9250828201905080821115612af057612aef612a96565b5b92915050565b7f45786365656473206d617820737570706c7900000000000000000000000000005f82015250565b5f612b2a601283611ff5565b9150612b3582612af6565b602082019050919050565b5f6020820190508181035f830152612b5781612b1e565b9050919050565b7f45786365656473206d6178207065722077616c6c6574000000000000000000005f82015250565b5f612b92601683611ff5565b9150612b9d82612b5e565b602082019050919050565b5f6020820190508181035f830152612bbf81612b86565b9050919050565b5f612bd08261207b565b9150612bdb8361207b565b9250828202612be98161207b565b91508282048414831517612c0057612bff612a96565b5b5092915050565b7f496e73756666696369656e74207061796d656e740000000000000000000000005f82015250565b5f612c3b601483611ff5565b9150612c4682612c07565b602082019050919050565b5f6020820190508181035f830152612c6881612c2f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f612ca68261207b565b9150612cb18361207b565b9250828203905081811115612cc957612cc8612a96565b5b92915050565b7f5472616e73666572206661696c656400000000000000000000000000000000005f82015250565b5f612d03600f83611ff5565b9150612d0e82612ccf565b602082019050919050565b5f6020820190508181035f830152612d3081612cf7565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e005f82015250565b5f612d6b601f83611ff5565b9150612d7682612d37565b602082019050919050565b5f6020820190508181035f830152612d9881612d5f565b9050919050565b5f81905092915050565b5f612db382611feb565b612dbd8185612d9f565b9350612dcd818560208601612005565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612e0d600583612d9f565b9150612e1882612dd9565b600582019050919050565b5f612e2e8285612da9565b9150612e3a8284612da9565b9150612e4582612e01565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612eab602683611ff5565b9150612eb682612e51565b604082019050919050565b5f6020820190508181035f830152612ed881612e9f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612f13602083611ff5565b9150612f1e82612edf565b602082019050919050565b5f6020820190508181035f830152612f4081612f07565b9050919050565b7f4e6f206d6f726520746f6b656e7320617661696c61626c6500000000000000005f82015250565b5f612f7b601883611ff5565b9150612f8682612f47565b602082019050919050565b5f6020820190508181035f830152612fa881612f6f565b9050919050565b5f819050919050565b612fc9612fc48261207b565b612faf565b82525050565b5f8160601b9050919050565b5f612fe582612fcf565b9050919050565b5f612ff682612fdb565b9050919050565b61300e613009826120f8565b612fec565b82525050565b5f61301f8288612fb8565b60208201915061302f8287612ffd565b60148201915061303f8286612fb8565b60208201915061304f8285612fb8565b60208201915061305f8284612fb8565b6020820191508190509695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6130a98261207b565b91506130b48361207b565b9250826130c4576130c3613072565b5b828206905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f6130f3826130cf565b6130fd81856130d9565b935061310d818560208601612005565b61311681612013565b840191505092915050565b5f6080820190506131345f830187612109565b6131416020830186612109565b61314e6040830185612199565b818103606083015261316081846130e9565b905095945050505050565b5f8151905061317981611f63565b92915050565b5f6020828403121561319457613193611f30565b5b5f6131a18482850161316b565b9150509291505056fea2646970667358221220b7b94cb3863e10b78ecb564bae30d6398787b9e7a9fb2c2005154d3fa645553164736f6c634300081a003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696836646735777a3232656e66366f333766713274647933633568786d6b6f6b6e3478666c6c70736f727670726966626f646f796d2f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405260043610610180575f3560e01c806370a08231116100d057806395d89b4111610089578063b88d4fde11610063578063b88d4fde14610500578063c87b56dd1461051c578063e985e9c514610558578063f2fde38b1461059457610180565b806395d89b4114610492578063a0712d68146104bc578063a22cb465146104d857610180565b806370a082311461039c578063715018a6146103d857806373532802146103ee5780638d6cc56d146104165780638d859f3e1461043e5780638da5cb5b1461046857610180565b806323b872dd1161013d57806342842e0e1161011757806342842e0e146102f257806355f804b31461030e5780636352211e146103365780636c0360eb1461037257610180565b806323b872dd1461029657806332cb6b0c146102b25780633ccfd60b146102dc57610180565b806301ffc9a71461018457806306fdde03146101c0578063081812fc146101ea578063095ea7b3146102265780630f2cdd6c1461024257806318160ddd1461026c575b5f80fd5b34801561018f575f80fd5b506101aa60048036038101906101a59190611f8d565b6105bc565b6040516101b79190611fd2565b60405180910390f35b3480156101cb575f80fd5b506101d461064d565b6040516101e1919061205b565b60405180910390f35b3480156101f5575f80fd5b50610210600480360381019061020b91906120ae565b6106dd565b60405161021d9190612118565b60405180910390f35b610240600480360381019061023b919061215b565b610757565b005b34801561024d575f80fd5b50610256610896565b60405161026391906121a8565b60405180910390f35b348015610277575f80fd5b5061028061089b565b60405161028d91906121a8565b60405180910390f35b6102b060048036038101906102ab91906121c1565b6108b0565b005b3480156102bd575f80fd5b506102c6610bbe565b6040516102d391906121a8565b60405180910390f35b3480156102e7575f80fd5b506102f0610bc4565b005b61030c600480360381019061030791906121c1565b610cc5565b005b348015610319575f80fd5b50610334600480360381019061032f919061233d565b610ce4565b005b348015610341575f80fd5b5061035c600480360381019061035791906120ae565b610cff565b6040516103699190612118565b60405180910390f35b34801561037d575f80fd5b50610386610d10565b604051610393919061205b565b60405180910390f35b3480156103a7575f80fd5b506103c260048036038101906103bd9190612384565b610d9c565b6040516103cf91906121a8565b60405180910390f35b3480156103e3575f80fd5b506103ec610e51565b005b3480156103f9575f80fd5b50610414600480360381019061040f91906120ae565b610e64565b005b348015610421575f80fd5b5061043c600480360381019061043791906120ae565b610f3c565b005b348015610449575f80fd5b50610452610f4e565b60405161045f91906121a8565b60405180910390f35b348015610473575f80fd5b5061047c610f54565b6040516104899190612118565b60405180910390f35b34801561049d575f80fd5b506104a6610f7c565b6040516104b3919061205b565b60405180910390f35b6104d660048036038101906104d191906120ae565b61100c565b005b3480156104e3575f80fd5b506104fe60048036038101906104f991906123d9565b611285565b005b61051a600480360381019061051591906124b5565b61138b565b005b348015610527575f80fd5b50610542600480360381019061053d91906120ae565b6113fd565b60405161054f919061205b565b60405180910390f35b348015610563575f80fd5b5061057e60048036038101906105799190612535565b6114a1565b60405161058b9190611fd2565b60405180910390f35b34801561059f575f80fd5b506105ba60048036038101906105b59190612384565b61152f565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061061657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106465750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461065c906125a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610688906125a0565b80156106d35780601f106106aa576101008083540402835291602001916106d3565b820191905f5260205f20905b8154815290600101906020018083116106b657829003601f168201915b5050505050905090565b5f6106e7826115b1565b61071d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61076182610cff565b90508073ffffffffffffffffffffffffffffffffffffffff1661078261160b565b73ffffffffffffffffffffffffffffffffffffffff16146107e5576107ae816107a961160b565b6114a1565b6107e4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a81565b5f6108a4611612565b6001545f540303905090565b5f6108ba82611616565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610921576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061092c846116d9565b91509150610942818761093d61160b565b6116fc565b61098e576109578661095261160b565b6114a1565b61098d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036109f3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a00868686600161173f565b8015610a0a575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610ad285610aae888887611745565b7c02000000000000000000000000000000000000000000000000000000001761176c565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610b4e575f6001850190505f60045f8381526020019081526020015f205403610b4c575f548114610b4b578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610bb68686866001611796565b505050505050565b60095481565b610bcc61179c565b5f4790505f8111610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c099061261a565b60405180910390fd5b5f610c1b610f54565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c3e90612665565b5f6040518083038185875af1925050503d805f8114610c78576040519150601f19603f3d011682016040523d82523d5f602084013e610c7d565b606091505b5050905080610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb8906126c3565b60405180910390fd5b5050565b610cdf83838360405180602001604052805f81525061138b565b505050565b610cec61179c565b80600b9081610cfb919061287e565b5050565b5f610d0982611616565b9050919050565b600b8054610d1d906125a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610d49906125a0565b8015610d945780601f10610d6b57610100808354040283529160200191610d94565b820191905f5260205f20905b815481529060010190602001808311610d7757829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e02576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610e5961179c565b610e625f61181a565b565b610e6c61179c565b6009548110610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea7906129bd565b60405180910390fd5b80610eb961089b565b1115610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef190612a4b565b60405180910390fd5b806009819055505b80600c805490501115610f3957600c805480610f2157610f20612a69565b5b600190038181905f5260205f20015f90559055610f02565b50565b610f4461179c565b80600a8190555050565b600a5481565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f8b906125a0565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb7906125a0565b80156110025780601f10610fd957610100808354040283529160200191611002565b820191905f5260205f20905b815481529060010190602001808311610fe557829003601f168201915b5050505050905090565b6009548161101861089b565b6110229190612ac3565b1115611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a90612b40565b60405180910390fd5b600a8161106f33610d9c565b6110799190612ac3565b11156110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190612ba8565b60405180910390fd5b80600a546110c89190612bc6565b34101561110a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110190612c51565b60405180910390fd5b5f5b818110156111d1575f611123600c805490506118dd565b90505f600c828154811061113a57611139612c6f565b5b905f5260205f2001549050600c6001600c805490506111599190612c9c565b8154811061116a57611169612c6f565b5b905f5260205f200154600c838154811061118757611186612c6f565b5b905f5260205f200181905550600c8054806111a5576111a4612a69565b5b600190038181905f5260205f20015f905590556111c2338261196a565b5050808060010191505061110c565b505f6111db610f54565b73ffffffffffffffffffffffffffffffffffffffff16346040516111fe90612665565b5f6040518083038185875af1925050503d805f8114611238576040519150601f19603f3d011682016040523d82523d5f602084013e61123d565b606091505b5050905080611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890612d19565b60405180910390fd5b5050565b8060075f61129161160b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133a61160b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137f9190611fd2565b60405180910390a35050565b6113968484846108b0565b5f8373ffffffffffffffffffffffffffffffffffffffff163b146113f7576113c084848484611b13565b6113f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611408826115b1565b611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e90612d81565b60405180910390fd5b5f611450611c5e565b90505f81511161146e5760405180602001604052805f815250611499565b8061147884611cee565b604051602001611489929190612e23565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61153761179c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159c90612ec1565b60405180910390fd5b6115ae8161181a565b50565b5f816115bb611612565b111580156115c957505f5482105b801561160457505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f90565b5f8082905080611624611612565b116116a2575f548110156116a1575f60045f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361169f575b5f81036116955760045f836001900393508381526020019081526020015f2054905061166e565b80925050506116d4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e861175b868684611db8565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6117a4611dc0565b73ffffffffffffffffffffffffffffffffffffffff166117c2610f54565b73ffffffffffffffffffffffffffffffffffffffff1614611818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180f90612f29565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f808211611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790612f91565b60405180910390fd5b814433423a61192d61089b565b604051602001611941959493929190613014565b604051602081830303815290604052805190602001205f1c611963919061309f565b9050919050565b5f805490505f82036119a8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119b45f84838561173f565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611a2683611a175f865f611745565b611a2085611dc7565b1761176c565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114611ac05780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050611a87565b505f8203611afa576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611b0e5f848385611796565b505050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b3861160b565b8786866040518563ffffffff1660e01b8152600401611b5a9493929190613121565b6020604051808303815f875af1925050508015611b9557506040513d601f19601f82011682018060405250810190611b92919061317f565b60015b611c0b573d805f8114611bc3576040519150601f19603f3d011682016040523d82523d5f602084013e611bc8565b606091505b505f815103611c03576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611c6d906125a0565b80601f0160208091040260200160405190810160405280929190818152602001828054611c99906125a0565b8015611ce45780601f10611cbb57610100808354040283529160200191611ce4565b820191905f5260205f20905b815481529060010190602001808311611cc757829003601f168201915b5050505050905090565b60605f6001611cfc84611dd6565b0190505f8167ffffffffffffffff811115611d1a57611d19612219565b5b6040519080825280601f01601f191660200182016040528015611d4c5781602001600182028036833780820191505090505b5090505f82602001820190505b600115611dad578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611da257611da1613072565b5b0494505f8503611d59575b819350505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611e32577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611e2857611e27613072565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611e6f576d04ee2d6d415b85acef81000000008381611e6557611e64613072565b5b0492506020810190505b662386f26fc100008310611e9e57662386f26fc100008381611e9457611e93613072565b5b0492506010810190505b6305f5e1008310611ec7576305f5e1008381611ebd57611ebc613072565b5b0492506008810190505b6127108310611eec576127108381611ee257611ee1613072565b5b0492506004810190505b60648310611f0f5760648381611f0557611f04613072565b5b0492506002810190505b600a8310611f1e576001810190505b80915050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f6c81611f38565b8114611f76575f80fd5b50565b5f81359050611f8781611f63565b92915050565b5f60208284031215611fa257611fa1611f30565b5b5f611faf84828501611f79565b91505092915050565b5f8115159050919050565b611fcc81611fb8565b82525050565b5f602082019050611fe55f830184611fc3565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61202d82611feb565b6120378185611ff5565b9350612047818560208601612005565b61205081612013565b840191505092915050565b5f6020820190508181035f8301526120738184612023565b905092915050565b5f819050919050565b61208d8161207b565b8114612097575f80fd5b50565b5f813590506120a881612084565b92915050565b5f602082840312156120c3576120c2611f30565b5b5f6120d08482850161209a565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612102826120d9565b9050919050565b612112816120f8565b82525050565b5f60208201905061212b5f830184612109565b92915050565b61213a816120f8565b8114612144575f80fd5b50565b5f8135905061215581612131565b92915050565b5f806040838503121561217157612170611f30565b5b5f61217e85828601612147565b925050602061218f8582860161209a565b9150509250929050565b6121a28161207b565b82525050565b5f6020820190506121bb5f830184612199565b92915050565b5f805f606084860312156121d8576121d7611f30565b5b5f6121e586828701612147565b93505060206121f686828701612147565b92505060406122078682870161209a565b9150509250925092565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61224f82612013565b810181811067ffffffffffffffff8211171561226e5761226d612219565b5b80604052505050565b5f612280611f27565b905061228c8282612246565b919050565b5f67ffffffffffffffff8211156122ab576122aa612219565b5b6122b482612013565b9050602081019050919050565b828183375f83830152505050565b5f6122e16122dc84612291565b612277565b9050828152602081018484840111156122fd576122fc612215565b5b6123088482856122c1565b509392505050565b5f82601f83011261232457612323612211565b5b81356123348482602086016122cf565b91505092915050565b5f6020828403121561235257612351611f30565b5b5f82013567ffffffffffffffff81111561236f5761236e611f34565b5b61237b84828501612310565b91505092915050565b5f6020828403121561239957612398611f30565b5b5f6123a684828501612147565b91505092915050565b6123b881611fb8565b81146123c2575f80fd5b50565b5f813590506123d3816123af565b92915050565b5f80604083850312156123ef576123ee611f30565b5b5f6123fc85828601612147565b925050602061240d858286016123c5565b9150509250929050565b5f67ffffffffffffffff82111561243157612430612219565b5b61243a82612013565b9050602081019050919050565b5f61245961245484612417565b612277565b90508281526020810184848401111561247557612474612215565b5b6124808482856122c1565b509392505050565b5f82601f83011261249c5761249b612211565b5b81356124ac848260208601612447565b91505092915050565b5f805f80608085870312156124cd576124cc611f30565b5b5f6124da87828801612147565b94505060206124eb87828801612147565b93505060406124fc8782880161209a565b925050606085013567ffffffffffffffff81111561251d5761251c611f34565b5b61252987828801612488565b91505092959194509250565b5f806040838503121561254b5761254a611f30565b5b5f61255885828601612147565b925050602061256985828601612147565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806125b757607f821691505b6020821081036125ca576125c9612573565b5b50919050565b7f4e6f2066756e647320746f2077697468647261770000000000000000000000005f82015250565b5f612604601483611ff5565b915061260f826125d0565b602082019050919050565b5f6020820190508181035f830152612631816125f8565b9050919050565b5f81905092915050565b50565b5f6126505f83612638565b915061265b82612642565b5f82019050919050565b5f61266f82612645565b9150819050919050565b7f5769746864726177206661696c656400000000000000000000000000000000005f82015250565b5f6126ad600f83611ff5565b91506126b882612679565b602082019050919050565b5f6020820190508181035f8301526126da816126a1565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261273d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612702565b6127478683612702565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61278261277d6127788461207b565b61275f565b61207b565b9050919050565b5f819050919050565b61279b83612768565b6127af6127a782612789565b84845461270e565b825550505050565b5f90565b6127c36127b7565b6127ce818484612792565b505050565b5b818110156127f1576127e65f826127bb565b6001810190506127d4565b5050565b601f82111561283657612807816126e1565b612810846126f3565b8101602085101561281f578190505b61283361282b856126f3565b8301826127d3565b50505b505050565b5f82821c905092915050565b5f6128565f198460080261283b565b1980831691505092915050565b5f61286e8383612847565b9150826002028217905092915050565b61288782611feb565b67ffffffffffffffff8111156128a05761289f612219565b5b6128aa82546125a0565b6128b58282856127f5565b5f60209050601f8311600181146128e6575f84156128d4578287015190505b6128de8582612863565b865550612945565b601f1984166128f4866126e1565b5f5b8281101561291b578489015182556001820191506020850194506020810190506128f6565b868310156129385784890151612934601f891682612847565b8355505b6001600288020188555050505b505050505050565b7f4e6577206d617820737570706c79206d757374206265206c657373207468616e5f8201527f2063757272656e74206d617820737570706c7900000000000000000000000000602082015250565b5f6129a7603383611ff5565b91506129b28261294d565b604082019050919050565b5f6020820190508181035f8301526129d48161299b565b9050919050565b7f4e6577206d617820737570706c79206d757374206265206772656174657220745f8201527f68616e20746f74616c20737570706c7900000000000000000000000000000000602082015250565b5f612a35603083611ff5565b9150612a40826129db565b604082019050919050565b5f6020820190508181035f830152612a6281612a29565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612acd8261207b565b9150612ad88361207b565b9250828201905080821115612af057612aef612a96565b5b92915050565b7f45786365656473206d617820737570706c7900000000000000000000000000005f82015250565b5f612b2a601283611ff5565b9150612b3582612af6565b602082019050919050565b5f6020820190508181035f830152612b5781612b1e565b9050919050565b7f45786365656473206d6178207065722077616c6c6574000000000000000000005f82015250565b5f612b92601683611ff5565b9150612b9d82612b5e565b602082019050919050565b5f6020820190508181035f830152612bbf81612b86565b9050919050565b5f612bd08261207b565b9150612bdb8361207b565b9250828202612be98161207b565b91508282048414831517612c0057612bff612a96565b5b5092915050565b7f496e73756666696369656e74207061796d656e740000000000000000000000005f82015250565b5f612c3b601483611ff5565b9150612c4682612c07565b602082019050919050565b5f6020820190508181035f830152612c6881612c2f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f612ca68261207b565b9150612cb18361207b565b9250828203905081811115612cc957612cc8612a96565b5b92915050565b7f5472616e73666572206661696c656400000000000000000000000000000000005f82015250565b5f612d03600f83611ff5565b9150612d0e82612ccf565b602082019050919050565b5f6020820190508181035f830152612d3081612cf7565b9050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e005f82015250565b5f612d6b601f83611ff5565b9150612d7682612d37565b602082019050919050565b5f6020820190508181035f830152612d9881612d5f565b9050919050565b5f81905092915050565b5f612db382611feb565b612dbd8185612d9f565b9350612dcd818560208601612005565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612e0d600583612d9f565b9150612e1882612dd9565b600582019050919050565b5f612e2e8285612da9565b9150612e3a8284612da9565b9150612e4582612e01565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612eab602683611ff5565b9150612eb682612e51565b604082019050919050565b5f6020820190508181035f830152612ed881612e9f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612f13602083611ff5565b9150612f1e82612edf565b602082019050919050565b5f6020820190508181035f830152612f4081612f07565b9050919050565b7f4e6f206d6f726520746f6b656e7320617661696c61626c6500000000000000005f82015250565b5f612f7b601883611ff5565b9150612f8682612f47565b602082019050919050565b5f6020820190508181035f830152612fa881612f6f565b9050919050565b5f819050919050565b612fc9612fc48261207b565b612faf565b82525050565b5f8160601b9050919050565b5f612fe582612fcf565b9050919050565b5f612ff682612fdb565b9050919050565b61300e613009826120f8565b612fec565b82525050565b5f61301f8288612fb8565b60208201915061302f8287612ffd565b60148201915061303f8286612fb8565b60208201915061304f8285612fb8565b60208201915061305f8284612fb8565b6020820191508190509695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6130a98261207b565b91506130b48361207b565b9250826130c4576130c3613072565b5b828206905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f6130f3826130cf565b6130fd81856130d9565b935061310d818560208601612005565b61311681612013565b840191505092915050565b5f6080820190506131345f830187612109565b6131416020830186612109565b61314e6040830185612199565b818103606083015261316081846130e9565b905095945050505050565b5f8151905061317981611f63565b92915050565b5f6020828403121561319457613193611f30565b5b5f6131a18482850161316b565b9150509291505056fea2646970667358221220b7b94cb3863e10b78ecb564bae30d6398787b9e7a9fb2c2005154d3fa645553164736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696836646735777a3232656e66366f333766713274647933633568786d6b6f6b6e3478666c6c70736f727670726966626f646f796d2f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initialBaseURI (string): ipfs://bafybeih6dg5wz22enf6o37fq2tdy3c5hxmkokn4xfllpsorvprifbodoym/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f626166796265696836646735777a3232656e66366f33376671
Arg [3] : 3274647933633568786d6b6f6b6e3478666c6c70736f727670726966626f646f
Arg [4] : 796d2f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
70284:3133:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18404:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19306:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25797:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25230:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70397:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15057:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29436:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70359:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73143:271;;;;;;;;;;;;;:::i;:::-;;32357:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72673:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20699:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70492:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16241:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54211:103;;;;;;;;;;;;;:::i;:::-;;72043:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72464:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70447:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53563:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19482:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70781:793;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26355:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33148:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72787:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26746:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54469:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18404:639;18489:4;18828:10;18813:25;;:11;:25;;;;:102;;;;18905:10;18890:25;;:11;:25;;;;18813:102;:179;;;;18982:10;18967:25;;:11;:25;;;;18813:179;18793:199;;18404:639;;;:::o;19306:100::-;19360:13;19393:5;19386:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19306:100;:::o;25797:218::-;25873:7;25898:16;25906:7;25898;:16::i;:::-;25893:64;;25923:34;;;;;;;;;;;;;;25893:64;25977:15;:24;25993:7;25977:24;;;;;;;;;;;:30;;;;;;;;;;;;25970:37;;25797:218;;;:::o;25230:408::-;25319:13;25335:16;25343:7;25335;:16::i;:::-;25319:32;;25391:5;25368:28;;:19;:17;:19::i;:::-;:28;;;25364:175;;25416:44;25433:5;25440:19;:17;:19::i;:::-;25416:16;:44::i;:::-;25411:128;;25488:35;;;;;;;;;;;;;;25411:128;25364:175;25584:2;25551:15;:24;25567:7;25551:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25622:7;25618:2;25602:28;;25611:5;25602:28;;;;;;;;;;;;25308:330;25230:408;;:::o;70397:43::-;70438:2;70397:43;:::o;15057:323::-;15118:7;15346:15;:13;:15::i;:::-;15331:12;;15315:13;;:28;:46;15308:53;;15057:323;:::o;29436:2825::-;29578:27;29608;29627:7;29608:18;:27::i;:::-;29578:57;;29693:4;29652:45;;29668:19;29652:45;;;29648:86;;29706:28;;;;;;;;;;;;;;29648:86;29748:27;29777:23;29804:35;29831:7;29804:26;:35::i;:::-;29747:92;;;;29939:68;29964:15;29981:4;29987:19;:17;:19::i;:::-;29939:24;:68::i;:::-;29934:180;;30027:43;30044:4;30050:19;:17;:19::i;:::-;30027:16;:43::i;:::-;30022:92;;30079:35;;;;;;;;;;;;;;30022:92;29934:180;30145:1;30131:16;;:2;:16;;;30127:52;;30156:23;;;;;;;;;;;;;;30127:52;30192:43;30214:4;30220:2;30224:7;30233:1;30192:21;:43::i;:::-;30328:15;30325:160;;;30468:1;30447:19;30440:30;30325:160;30865:18;:24;30884:4;30865:24;;;;;;;;;;;;;;;;30863:26;;;;;;;;;;;;30934:18;:22;30953:2;30934:22;;;;;;;;;;;;;;;;30932:24;;;;;;;;;;;31256:146;31293:2;31342:45;31357:4;31363:2;31367:19;31342:14;:45::i;:::-;11456:8;31314:73;31256:18;:146::i;:::-;31227:17;:26;31245:7;31227:26;;;;;;;;;;;:175;;;;31573:1;11456:8;31522:19;:47;:52;31518:627;;31595:19;31627:1;31617:7;:11;31595:33;;31784:1;31750:17;:30;31768:11;31750:30;;;;;;;;;;;;:35;31746:384;;31888:13;;31873:11;:28;31869:242;;32068:19;32035:17;:30;32053:11;32035:30;;;;;;;;;;;:52;;;;31869:242;31746:384;31576:569;31518:627;32192:7;32188:2;32173:27;;32182:4;32173:27;;;;;;;;;;;;32211:42;32232:4;32238:2;32242:7;32251:1;32211:20;:42::i;:::-;29567:2694;;;29436:2825;;;:::o;70359:31::-;;;;:::o;73143:271::-;53449:13;:11;:13::i;:::-;73193:15:::1;73211:21;73193:39;;73261:1;73251:7;:11;73243:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;73299:12;73325:7;:5;:7::i;:::-;73317:21;;73347:7;73317:43;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73298:62;;;73379:7;73371:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;73182:232;;73143:271::o:0;32357:193::-;32503:39;32520:4;32526:2;32530:7;32503:39;;;;;;;;;;;;:16;:39::i;:::-;32357:193;;;:::o;72673:106::-;53449:13;:11;:13::i;:::-;72760:11:::1;72750:7;:21;;;;;;:::i;:::-;;72673:106:::0;:::o;20699:152::-;20771:7;20814:27;20833:7;20814:18;:27::i;:::-;20791:52;;20699:152;;;:::o;70492:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16241:233::-;16313:7;16354:1;16337:19;;:5;:19;;;16333:60;;16365:28;;;;;;;;;;;;;;16333:60;10400:13;16411:18;:25;16430:5;16411:25;;;;;;;;;;;;;;;;:55;16404:62;;16241:233;;;:::o;54211:103::-;53449:13;:11;:13::i;:::-;54276:30:::1;54303:1;54276:18;:30::i;:::-;54211:103::o:0;72043:413::-;53449:13;:11;:13::i;:::-;72143:10:::1;;72128:12;:25;72120:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;72245:12;72228:13;:11;:13::i;:::-;:29;;72220:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;72334:12;72321:10;:25;;;;72369:80;72394:12;72376:8;:15;;;;:30;72369:80;;;72423:8;:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72369:80;;;72043:413:::0;:::o;72464:93::-;53449:13;:11;:13::i;:::-;72541:8:::1;72533:5;:16;;;;72464:93:::0;:::o;70447:30::-;;;;:::o;53563:87::-;53609:7;53636:6;;;;;;;;;;;53629:13;;53563:87;:::o;19482:104::-;19538:13;19571:7;19564:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19482:104;:::o;70781:793::-;70877:10;;70865:8;70849:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;70841:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;70438:2;70953:8;70929:21;70939:10;70929:9;:21::i;:::-;:32;;;;:::i;:::-;:50;;70921:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;71046:8;71038:5;;:16;;;;:::i;:::-;71025:9;:29;;71017:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;71097:9;71092:342;71116:8;71112:1;:12;71092:342;;;71146:19;71168:29;71181:8;:15;;;;71168:12;:29::i;:::-;71146:51;;71213:15;71231:8;71240:11;71231:21;;;;;;;;:::i;:::-;;;;;;;;;;71213:39;;71307:8;71334:1;71316:8;:15;;;;:19;;;;:::i;:::-;71307:29;;;;;;;;:::i;:::-;;;;;;;;;;71283:8;71292:11;71283:21;;;;;;;;:::i;:::-;;;;;;;;;:53;;;;71351:8;:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;71396:26;71402:10;71414:7;71396:5;:26::i;:::-;71131:303;;71126:3;;;;;;;71092:342;;;;71457:12;71483:7;:5;:7::i;:::-;71475:21;;71505:9;71475:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71456:64;;;71539:7;71531:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;70830:744;70781:793;:::o;26355:234::-;26502:8;26450:18;:39;26469:19;:17;:19::i;:::-;26450:39;;;;;;;;;;;;;;;:49;26490:8;26450:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26562:8;26526:55;;26541:19;:17;:19::i;:::-;26526:55;;;26572:8;26526:55;;;;;;:::i;:::-;;;;;;;;26355:234;;:::o;33148:407::-;33323:31;33336:4;33342:2;33346:7;33323:12;:31::i;:::-;33387:1;33369:2;:14;;;:19;33365:183;;33408:56;33439:4;33445:2;33449:7;33458:5;33408:30;:56::i;:::-;33403:145;;33492:40;;;;;;;;;;;;;;33403:145;33365:183;33148:407;;;;:::o;72787:348::-;72852:13;72886:16;72894:7;72886;:16::i;:::-;72878:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;72949:22;72974:10;:8;:10::i;:::-;72949:35;;73027:1;73008:8;73002:22;:26;:125;;;;;;;;;;;;;;;;;73069:8;73079:18;:7;:16;:18::i;:::-;73052:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73002:125;72995:132;;;72787:348;;;:::o;26746:164::-;26843:4;26867:18;:25;26886:5;26867:25;;;;;;;;;;;;;;;:35;26893:8;26867:35;;;;;;;;;;;;;;;;;;;;;;;;;26860:42;;26746:164;;;;:::o;54469:201::-;53449:13;:11;:13::i;:::-;54578:1:::1;54558:22;;:8;:22;;::::0;54550:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;54634:28;54653:8;54634:18;:28::i;:::-;54469:201:::0;:::o;27168:282::-;27233:4;27289:7;27270:15;:13;:15::i;:::-;:26;;:66;;;;;27323:13;;27313:7;:23;27270:66;:153;;;;;27422:1;11176:8;27374:17;:26;27392:7;27374:26;;;;;;;;;;;;:44;:49;27270:153;27250:173;;27168:282;;;:::o;49476:105::-;49536:7;49563:10;49556:17;;49476:105;:::o;14573:92::-;14629:7;14573:92;:::o;21854:1275::-;21921:7;21941:12;21956:7;21941:22;;22024:4;22005:15;:13;:15::i;:::-;:23;22001:1061;;22058:13;;22051:4;:20;22047:1015;;;22096:14;22113:17;:23;22131:4;22113:23;;;;;;;;;;;;22096:40;;22230:1;11176:8;22202:6;:24;:29;22198:845;;22867:113;22884:1;22874:6;:11;22867:113;;22927:17;:25;22945:6;;;;;;;22927:25;;;;;;;;;;;;22918:34;;22867:113;;;23013:6;23006:13;;;;;;22198:845;22073:989;22047:1015;22001:1061;23090:31;;;;;;;;;;;;;;21854:1275;;;;:::o;28331:485::-;28433:27;28462:23;28503:38;28544:15;:24;28560:7;28544:24;;;;;;;;;;;28503:65;;28721:18;28698:41;;28778:19;28772:26;28753:45;;28683:126;28331:485;;;:::o;27559:659::-;27708:11;27873:16;27866:5;27862:28;27853:37;;28033:16;28022:9;28018:32;28005:45;;28183:15;28172:9;28169:30;28161:5;28150:9;28147:20;28144:56;28134:66;;27559:659;;;;;:::o;34217:159::-;;;;;:::o;48785:311::-;48920:7;48940:16;11580:3;48966:19;:41;;48940:68;;11580:3;49034:31;49045:4;49051:2;49055:9;49034:10;:31::i;:::-;49026:40;;:62;;49019:69;;;48785:311;;;;;:::o;23677:450::-;23757:14;23925:16;23918:5;23914:28;23905:37;;24102:5;24088:11;24063:23;24059:41;24056:52;24049:5;24046:63;24036:73;;23677:450;;;;:::o;35041:158::-;;;;;:::o;53728:132::-;53803:12;:10;:12::i;:::-;53792:23;;:7;:5;:7::i;:::-;:23;;;53784:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53728:132::o;54830:191::-;54904:16;54923:6;;;;;;;;;;;54904:25;;54949:8;54940:6;;:17;;;;;;;;;;;;;;;;;;55004:8;54973:40;;54994:8;54973:40;;;;;;;;;;;;54893:128;54830:191;:::o;71582:453::-;71642:7;71679:1;71670:6;:10;71662:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;72021:6;71816:16;71855:10;71888:15;71926:11;71960:13;:11;:13::i;:::-;71777:215;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71749:258;;;;;;71727:291;;:300;;;;:::i;:::-;71720:307;;71582:453;;;:::o;36817:2966::-;36890:20;36913:13;;36890:36;;36953:1;36941:8;:13;36937:44;;36963:18;;;;;;;;;;;;;;36937:44;36994:61;37024:1;37028:2;37032:12;37046:8;36994:21;:61::i;:::-;37538:1;10538:2;37508:1;:26;;37507:32;37495:8;:45;37469:18;:22;37488:2;37469:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37817:139;37854:2;37908:33;37931:1;37935:2;37939:1;37908:14;:33::i;:::-;37875:30;37896:8;37875:20;:30::i;:::-;:66;37817:18;:139::i;:::-;37783:17;:31;37801:12;37783:31;;;;;;;;;;;:173;;;;37973:16;38004:11;38033:8;38018:12;:23;38004:37;;38554:16;38550:2;38546:25;38534:37;;38926:12;38886:8;38845:1;38783:25;38724:1;38663;38636:335;39297:1;39283:12;39279:20;39237:346;39338:3;39329:7;39326:16;39237:346;;39556:7;39546:8;39543:1;39516:25;39513:1;39510;39505:59;39391:1;39382:7;39378:15;39367:26;;39237:346;;;39241:77;39628:1;39616:8;:13;39612:45;;39638:19;;;;;;;;;;;;;;39612:45;39690:3;39674:13;:19;;;;37243:2462;;39715:60;39744:1;39748:2;39752:12;39766:8;39715:20;:60::i;:::-;36879:2904;36817:2966;;:::o;35639:716::-;35802:4;35848:2;35823:45;;;35869:19;:17;:19::i;:::-;35890:4;35896:7;35905:5;35823:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36123:1;36106:6;:13;:18;36102:235;;36152:40;;;;;;;;;;;;;;36102:235;36295:6;36289:13;36280:6;36276:2;36272:15;36265:38;35819:529;35992:54;;;35982:64;;;:6;:64;;;;35975:71;;;35639:716;;;;;;:::o;72565:100::-;72617:13;72650:7;72643:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72565:100;:::o;68333:716::-;68389:13;68440:14;68477:1;68457:17;68468:5;68457:10;:17::i;:::-;:21;68440:38;;68493:20;68527:6;68516:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68493:41;;68549:11;68678:6;68674:2;68670:15;68662:6;68658:28;68651:35;;68715:288;68722:4;68715:288;;;68747:5;;;;;;;;68889:8;68884:2;68877:5;68873:14;68868:30;68863:3;68855:44;68945:2;68936:11;;;;;;:::i;:::-;;;;;68979:1;68970:5;:10;68715:288;68966:21;68715:288;69024:6;69017:13;;;;;68333:716;;;:::o;48486:147::-;48623:6;48486:147;;;;;:::o;52114:98::-;52167:7;52194:10;52187:17;;52114:98;:::o;24229:324::-;24299:14;24532:1;24522:8;24519:15;24493:24;24489:46;24479:56;;24229:324;;;:::o;65199:922::-;65252:7;65272:14;65289:1;65272:18;;65339:6;65330:5;:15;65326:102;;65375:6;65366:15;;;;;;:::i;:::-;;;;;65410:2;65400:12;;;;65326:102;65455:6;65446:5;:15;65442:102;;65491:6;65482:15;;;;;;:::i;:::-;;;;;65526:2;65516:12;;;;65442:102;65571:6;65562:5;:15;65558:102;;65607:6;65598:15;;;;;;:::i;:::-;;;;;65642:2;65632:12;;;;65558:102;65687:5;65678;:14;65674:99;;65722:5;65713:14;;;;;;:::i;:::-;;;;;65756:1;65746:11;;;;65674:99;65800:5;65791;:14;65787:99;;65835:5;65826:14;;;;;;:::i;:::-;;;;;65869:1;65859:11;;;;65787:99;65913:5;65904;:14;65900:99;;65948:5;65939:14;;;;;;:::i;:::-;;;;;65982:1;65972:11;;;;65900:99;66026:5;66017;:14;66013:66;;66062:1;66052:11;;;;66013:66;66107:6;66100:13;;;65199:922;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:118::-;4870:24;4888:5;4870:24;:::i;:::-;4865:3;4858:37;4783:118;;:::o;4907:222::-;5000:4;5038:2;5027:9;5023:18;5015:26;;5051:71;5119:1;5108:9;5104:17;5095:6;5051:71;:::i;:::-;4907:222;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:117::-;5869:1;5866;5859:12;5883:117;5992:1;5989;5982:12;6006:180;6054:77;6051:1;6044:88;6151:4;6148:1;6141:15;6175:4;6172:1;6165:15;6192:281;6275:27;6297:4;6275:27;:::i;:::-;6267:6;6263:40;6405:6;6393:10;6390:22;6369:18;6357:10;6354:34;6351:62;6348:88;;;6416:18;;:::i;:::-;6348:88;6456:10;6452:2;6445:22;6235:238;6192:281;;:::o;6479:129::-;6513:6;6540:20;;:::i;:::-;6530:30;;6569:33;6597:4;6589:6;6569:33;:::i;:::-;6479:129;;;:::o;6614:308::-;6676:4;6766:18;6758:6;6755:30;6752:56;;;6788:18;;:::i;:::-;6752:56;6826:29;6848:6;6826:29;:::i;:::-;6818:37;;6910:4;6904;6900:15;6892:23;;6614:308;;;:::o;6928:148::-;7026:6;7021:3;7016;7003:30;7067:1;7058:6;7053:3;7049:16;7042:27;6928:148;;;:::o;7082:425::-;7160:5;7185:66;7201:49;7243:6;7201:49;:::i;:::-;7185:66;:::i;:::-;7176:75;;7274:6;7267:5;7260:21;7312:4;7305:5;7301:16;7350:3;7341:6;7336:3;7332:16;7329:25;7326:112;;;7357:79;;:::i;:::-;7326:112;7447:54;7494:6;7489:3;7484;7447:54;:::i;:::-;7166:341;7082:425;;;;;:::o;7527:340::-;7583:5;7632:3;7625:4;7617:6;7613:17;7609:27;7599:122;;7640:79;;:::i;:::-;7599:122;7757:6;7744:20;7782:79;7857:3;7849:6;7842:4;7834:6;7830:17;7782:79;:::i;:::-;7773:88;;7589:278;7527:340;;;;:::o;7873:509::-;7942:6;7991:2;7979:9;7970:7;7966:23;7962:32;7959:119;;;7997:79;;:::i;:::-;7959:119;8145:1;8134:9;8130:17;8117:31;8175:18;8167:6;8164:30;8161:117;;;8197:79;;:::i;:::-;8161:117;8302:63;8357:7;8348:6;8337:9;8333:22;8302:63;:::i;:::-;8292:73;;8088:287;7873:509;;;;:::o;8388:329::-;8447:6;8496:2;8484:9;8475:7;8471:23;8467:32;8464:119;;;8502:79;;:::i;:::-;8464:119;8622:1;8647:53;8692:7;8683:6;8672:9;8668:22;8647:53;:::i;:::-;8637:63;;8593:117;8388:329;;;;:::o;8723:116::-;8793:21;8808:5;8793:21;:::i;:::-;8786:5;8783:32;8773:60;;8829:1;8826;8819:12;8773:60;8723:116;:::o;8845:133::-;8888:5;8926:6;8913:20;8904:29;;8942:30;8966:5;8942:30;:::i;:::-;8845:133;;;;:::o;8984:468::-;9049:6;9057;9106:2;9094:9;9085:7;9081:23;9077:32;9074:119;;;9112:79;;:::i;:::-;9074:119;9232:1;9257:53;9302:7;9293:6;9282:9;9278:22;9257:53;:::i;:::-;9247:63;;9203:117;9359:2;9385:50;9427:7;9418:6;9407:9;9403:22;9385:50;:::i;:::-;9375:60;;9330:115;8984:468;;;;;:::o;9458:307::-;9519:4;9609:18;9601:6;9598:30;9595:56;;;9631:18;;:::i;:::-;9595:56;9669:29;9691:6;9669:29;:::i;:::-;9661:37;;9753:4;9747;9743:15;9735:23;;9458:307;;;:::o;9771:423::-;9848:5;9873:65;9889:48;9930:6;9889:48;:::i;:::-;9873:65;:::i;:::-;9864:74;;9961:6;9954:5;9947:21;9999:4;9992:5;9988:16;10037:3;10028:6;10023:3;10019:16;10016:25;10013:112;;;10044:79;;:::i;:::-;10013:112;10134:54;10181:6;10176:3;10171;10134:54;:::i;:::-;9854:340;9771:423;;;;;:::o;10213:338::-;10268:5;10317:3;10310:4;10302:6;10298:17;10294:27;10284:122;;10325:79;;:::i;:::-;10284:122;10442:6;10429:20;10467:78;10541:3;10533:6;10526:4;10518:6;10514:17;10467:78;:::i;:::-;10458:87;;10274:277;10213:338;;;;:::o;10557:943::-;10652:6;10660;10668;10676;10725:3;10713:9;10704:7;10700:23;10696:33;10693:120;;;10732:79;;:::i;:::-;10693:120;10852:1;10877:53;10922:7;10913:6;10902:9;10898:22;10877:53;:::i;:::-;10867:63;;10823:117;10979:2;11005:53;11050:7;11041:6;11030:9;11026:22;11005:53;:::i;:::-;10995:63;;10950:118;11107:2;11133:53;11178:7;11169:6;11158:9;11154:22;11133:53;:::i;:::-;11123:63;;11078:118;11263:2;11252:9;11248:18;11235:32;11294:18;11286:6;11283:30;11280:117;;;11316:79;;:::i;:::-;11280:117;11421:62;11475:7;11466:6;11455:9;11451:22;11421:62;:::i;:::-;11411:72;;11206:287;10557:943;;;;;;;:::o;11506:474::-;11574:6;11582;11631:2;11619:9;11610:7;11606:23;11602:32;11599:119;;;11637:79;;:::i;:::-;11599:119;11757:1;11782:53;11827:7;11818:6;11807:9;11803:22;11782:53;:::i;:::-;11772:63;;11728:117;11884:2;11910:53;11955:7;11946:6;11935:9;11931:22;11910:53;:::i;:::-;11900:63;;11855:118;11506:474;;;;;:::o;11986:180::-;12034:77;12031:1;12024:88;12131:4;12128:1;12121:15;12155:4;12152:1;12145:15;12172:320;12216:6;12253:1;12247:4;12243:12;12233:22;;12300:1;12294:4;12290:12;12321:18;12311:81;;12377:4;12369:6;12365:17;12355:27;;12311:81;12439:2;12431:6;12428:14;12408:18;12405:38;12402:84;;12458:18;;:::i;:::-;12402:84;12223:269;12172:320;;;:::o;12498:170::-;12638:22;12634:1;12626:6;12622:14;12615:46;12498:170;:::o;12674:366::-;12816:3;12837:67;12901:2;12896:3;12837:67;:::i;:::-;12830:74;;12913:93;13002:3;12913:93;:::i;:::-;13031:2;13026:3;13022:12;13015:19;;12674:366;;;:::o;13046:419::-;13212:4;13250:2;13239:9;13235:18;13227:26;;13299:9;13293:4;13289:20;13285:1;13274:9;13270:17;13263:47;13327:131;13453:4;13327:131;:::i;:::-;13319:139;;13046:419;;;:::o;13471:147::-;13572:11;13609:3;13594:18;;13471:147;;;;:::o;13624:114::-;;:::o;13744:398::-;13903:3;13924:83;14005:1;14000:3;13924:83;:::i;:::-;13917:90;;14016:93;14105:3;14016:93;:::i;:::-;14134:1;14129:3;14125:11;14118:18;;13744:398;;;:::o;14148:379::-;14332:3;14354:147;14497:3;14354:147;:::i;:::-;14347:154;;14518:3;14511:10;;14148:379;;;:::o;14533:165::-;14673:17;14669:1;14661:6;14657:14;14650:41;14533:165;:::o;14704:366::-;14846:3;14867:67;14931:2;14926:3;14867:67;:::i;:::-;14860:74;;14943:93;15032:3;14943:93;:::i;:::-;15061:2;15056:3;15052:12;15045:19;;14704:366;;;:::o;15076:419::-;15242:4;15280:2;15269:9;15265:18;15257:26;;15329:9;15323:4;15319:20;15315:1;15304:9;15300:17;15293:47;15357:131;15483:4;15357:131;:::i;:::-;15349:139;;15076:419;;;:::o;15501:141::-;15550:4;15573:3;15565:11;;15596:3;15593:1;15586:14;15630:4;15627:1;15617:18;15609:26;;15501:141;;;:::o;15648:93::-;15685:6;15732:2;15727;15720:5;15716:14;15712:23;15702:33;;15648:93;;;:::o;15747:107::-;15791:8;15841:5;15835:4;15831:16;15810:37;;15747:107;;;;:::o;15860:393::-;15929:6;15979:1;15967:10;15963:18;16002:97;16032:66;16021:9;16002:97;:::i;:::-;16120:39;16150:8;16139:9;16120:39;:::i;:::-;16108:51;;16192:4;16188:9;16181:5;16177:21;16168:30;;16241:4;16231:8;16227:19;16220:5;16217:30;16207:40;;15936:317;;15860:393;;;;;:::o;16259:60::-;16287:3;16308:5;16301:12;;16259:60;;;:::o;16325:142::-;16375:9;16408:53;16426:34;16435:24;16453:5;16435:24;:::i;:::-;16426:34;:::i;:::-;16408:53;:::i;:::-;16395:66;;16325:142;;;:::o;16473:75::-;16516:3;16537:5;16530:12;;16473:75;;;:::o;16554:269::-;16664:39;16695:7;16664:39;:::i;:::-;16725:91;16774:41;16798:16;16774:41;:::i;:::-;16766:6;16759:4;16753:11;16725:91;:::i;:::-;16719:4;16712:105;16630:193;16554:269;;;:::o;16829:73::-;16874:3;16829:73;:::o;16908:189::-;16985:32;;:::i;:::-;17026:65;17084:6;17076;17070:4;17026:65;:::i;:::-;16961:136;16908:189;;:::o;17103:186::-;17163:120;17180:3;17173:5;17170:14;17163:120;;;17234:39;17271:1;17264:5;17234:39;:::i;:::-;17207:1;17200:5;17196:13;17187:22;;17163:120;;;17103:186;;:::o;17295:543::-;17396:2;17391:3;17388:11;17385:446;;;17430:38;17462:5;17430:38;:::i;:::-;17514:29;17532:10;17514:29;:::i;:::-;17504:8;17500:44;17697:2;17685:10;17682:18;17679:49;;;17718:8;17703:23;;17679:49;17741:80;17797:22;17815:3;17797:22;:::i;:::-;17787:8;17783:37;17770:11;17741:80;:::i;:::-;17400:431;;17385:446;17295:543;;;:::o;17844:117::-;17898:8;17948:5;17942:4;17938:16;17917:37;;17844:117;;;;:::o;17967:169::-;18011:6;18044:51;18092:1;18088:6;18080:5;18077:1;18073:13;18044:51;:::i;:::-;18040:56;18125:4;18119;18115:15;18105:25;;18018:118;17967:169;;;;:::o;18141:295::-;18217:4;18363:29;18388:3;18382:4;18363:29;:::i;:::-;18355:37;;18425:3;18422:1;18418:11;18412:4;18409:21;18401:29;;18141:295;;;;:::o;18441:1395::-;18558:37;18591:3;18558:37;:::i;:::-;18660:18;18652:6;18649:30;18646:56;;;18682:18;;:::i;:::-;18646:56;18726:38;18758:4;18752:11;18726:38;:::i;:::-;18811:67;18871:6;18863;18857:4;18811:67;:::i;:::-;18905:1;18929:4;18916:17;;18961:2;18953:6;18950:14;18978:1;18973:618;;;;19635:1;19652:6;19649:77;;;19701:9;19696:3;19692:19;19686:26;19677:35;;19649:77;19752:67;19812:6;19805:5;19752:67;:::i;:::-;19746:4;19739:81;19608:222;18943:887;;18973:618;19025:4;19021:9;19013:6;19009:22;19059:37;19091:4;19059:37;:::i;:::-;19118:1;19132:208;19146:7;19143:1;19140:14;19132:208;;;19225:9;19220:3;19216:19;19210:26;19202:6;19195:42;19276:1;19268:6;19264:14;19254:24;;19323:2;19312:9;19308:18;19295:31;;19169:4;19166:1;19162:12;19157:17;;19132:208;;;19368:6;19359:7;19356:19;19353:179;;;19426:9;19421:3;19417:19;19411:26;19469:48;19511:4;19503:6;19499:17;19488:9;19469:48;:::i;:::-;19461:6;19454:64;19376:156;19353:179;19578:1;19574;19566:6;19562:14;19558:22;19552:4;19545:36;18980:611;;;18943:887;;18533:1303;;;18441:1395;;:::o;19842:238::-;19982:34;19978:1;19970:6;19966:14;19959:58;20051:21;20046:2;20038:6;20034:15;20027:46;19842:238;:::o;20086:366::-;20228:3;20249:67;20313:2;20308:3;20249:67;:::i;:::-;20242:74;;20325:93;20414:3;20325:93;:::i;:::-;20443:2;20438:3;20434:12;20427:19;;20086:366;;;:::o;20458:419::-;20624:4;20662:2;20651:9;20647:18;20639:26;;20711:9;20705:4;20701:20;20697:1;20686:9;20682:17;20675:47;20739:131;20865:4;20739:131;:::i;:::-;20731:139;;20458:419;;;:::o;20883:235::-;21023:34;21019:1;21011:6;21007:14;21000:58;21092:18;21087:2;21079:6;21075:15;21068:43;20883:235;:::o;21124:366::-;21266:3;21287:67;21351:2;21346:3;21287:67;:::i;:::-;21280:74;;21363:93;21452:3;21363:93;:::i;:::-;21481:2;21476:3;21472:12;21465:19;;21124:366;;;:::o;21496:419::-;21662:4;21700:2;21689:9;21685:18;21677:26;;21749:9;21743:4;21739:20;21735:1;21724:9;21720:17;21713:47;21777:131;21903:4;21777:131;:::i;:::-;21769:139;;21496:419;;;:::o;21921:180::-;21969:77;21966:1;21959:88;22066:4;22063:1;22056:15;22090:4;22087:1;22080:15;22107:180;22155:77;22152:1;22145:88;22252:4;22249:1;22242:15;22276:4;22273:1;22266:15;22293:191;22333:3;22352:20;22370:1;22352:20;:::i;:::-;22347:25;;22386:20;22404:1;22386:20;:::i;:::-;22381:25;;22429:1;22426;22422:9;22415:16;;22450:3;22447:1;22444:10;22441:36;;;22457:18;;:::i;:::-;22441:36;22293:191;;;;:::o;22490:168::-;22630:20;22626:1;22618:6;22614:14;22607:44;22490:168;:::o;22664:366::-;22806:3;22827:67;22891:2;22886:3;22827:67;:::i;:::-;22820:74;;22903:93;22992:3;22903:93;:::i;:::-;23021:2;23016:3;23012:12;23005:19;;22664:366;;;:::o;23036:419::-;23202:4;23240:2;23229:9;23225:18;23217:26;;23289:9;23283:4;23279:20;23275:1;23264:9;23260:17;23253:47;23317:131;23443:4;23317:131;:::i;:::-;23309:139;;23036:419;;;:::o;23461:172::-;23601:24;23597:1;23589:6;23585:14;23578:48;23461:172;:::o;23639:366::-;23781:3;23802:67;23866:2;23861:3;23802:67;:::i;:::-;23795:74;;23878:93;23967:3;23878:93;:::i;:::-;23996:2;23991:3;23987:12;23980:19;;23639:366;;;:::o;24011:419::-;24177:4;24215:2;24204:9;24200:18;24192:26;;24264:9;24258:4;24254:20;24250:1;24239:9;24235:17;24228:47;24292:131;24418:4;24292:131;:::i;:::-;24284:139;;24011:419;;;:::o;24436:410::-;24476:7;24499:20;24517:1;24499:20;:::i;:::-;24494:25;;24533:20;24551:1;24533:20;:::i;:::-;24528:25;;24588:1;24585;24581:9;24610:30;24628:11;24610:30;:::i;:::-;24599:41;;24789:1;24780:7;24776:15;24773:1;24770:22;24750:1;24743:9;24723:83;24700:139;;24819:18;;:::i;:::-;24700:139;24484:362;24436:410;;;;:::o;24852:170::-;24992:22;24988:1;24980:6;24976:14;24969:46;24852:170;:::o;25028:366::-;25170:3;25191:67;25255:2;25250:3;25191:67;:::i;:::-;25184:74;;25267:93;25356:3;25267:93;:::i;:::-;25385:2;25380:3;25376:12;25369:19;;25028:366;;;:::o;25400:419::-;25566:4;25604:2;25593:9;25589:18;25581:26;;25653:9;25647:4;25643:20;25639:1;25628:9;25624:17;25617:47;25681:131;25807:4;25681:131;:::i;:::-;25673:139;;25400:419;;;:::o;25825:180::-;25873:77;25870:1;25863:88;25970:4;25967:1;25960:15;25994:4;25991:1;25984:15;26011:194;26051:4;26071:20;26089:1;26071:20;:::i;:::-;26066:25;;26105:20;26123:1;26105:20;:::i;:::-;26100:25;;26149:1;26146;26142:9;26134:17;;26173:1;26167:4;26164:11;26161:37;;;26178:18;;:::i;:::-;26161:37;26011:194;;;;:::o;26211:165::-;26351:17;26347:1;26339:6;26335:14;26328:41;26211:165;:::o;26382:366::-;26524:3;26545:67;26609:2;26604:3;26545:67;:::i;:::-;26538:74;;26621:93;26710:3;26621:93;:::i;:::-;26739:2;26734:3;26730:12;26723:19;;26382:366;;;:::o;26754:419::-;26920:4;26958:2;26947:9;26943:18;26935:26;;27007:9;27001:4;26997:20;26993:1;26982:9;26978:17;26971:47;27035:131;27161:4;27035:131;:::i;:::-;27027:139;;26754:419;;;:::o;27179:181::-;27319:33;27315:1;27307:6;27303:14;27296:57;27179:181;:::o;27366:366::-;27508:3;27529:67;27593:2;27588:3;27529:67;:::i;:::-;27522:74;;27605:93;27694:3;27605:93;:::i;:::-;27723:2;27718:3;27714:12;27707:19;;27366:366;;;:::o;27738:419::-;27904:4;27942:2;27931:9;27927:18;27919:26;;27991:9;27985:4;27981:20;27977:1;27966:9;27962:17;27955:47;28019:131;28145:4;28019:131;:::i;:::-;28011:139;;27738:419;;;:::o;28163:148::-;28265:11;28302:3;28287:18;;28163:148;;;;:::o;28317:390::-;28423:3;28451:39;28484:5;28451:39;:::i;:::-;28506:89;28588:6;28583:3;28506:89;:::i;:::-;28499:96;;28604:65;28662:6;28657:3;28650:4;28643:5;28639:16;28604:65;:::i;:::-;28694:6;28689:3;28685:16;28678:23;;28427:280;28317:390;;;;:::o;28713:155::-;28853:7;28849:1;28841:6;28837:14;28830:31;28713:155;:::o;28874:400::-;29034:3;29055:84;29137:1;29132:3;29055:84;:::i;:::-;29048:91;;29148:93;29237:3;29148:93;:::i;:::-;29266:1;29261:3;29257:11;29250:18;;28874:400;;;:::o;29280:701::-;29561:3;29583:95;29674:3;29665:6;29583:95;:::i;:::-;29576:102;;29695:95;29786:3;29777:6;29695:95;:::i;:::-;29688:102;;29807:148;29951:3;29807:148;:::i;:::-;29800:155;;29972:3;29965:10;;29280:701;;;;;:::o;29987:225::-;30127:34;30123:1;30115:6;30111:14;30104:58;30196:8;30191:2;30183:6;30179:15;30172:33;29987:225;:::o;30218:366::-;30360:3;30381:67;30445:2;30440:3;30381:67;:::i;:::-;30374:74;;30457:93;30546:3;30457:93;:::i;:::-;30575:2;30570:3;30566:12;30559:19;;30218:366;;;:::o;30590:419::-;30756:4;30794:2;30783:9;30779:18;30771:26;;30843:9;30837:4;30833:20;30829:1;30818:9;30814:17;30807:47;30871:131;30997:4;30871:131;:::i;:::-;30863:139;;30590:419;;;:::o;31015:182::-;31155:34;31151:1;31143:6;31139:14;31132:58;31015:182;:::o;31203:366::-;31345:3;31366:67;31430:2;31425:3;31366:67;:::i;:::-;31359:74;;31442:93;31531:3;31442:93;:::i;:::-;31560:2;31555:3;31551:12;31544:19;;31203:366;;;:::o;31575:419::-;31741:4;31779:2;31768:9;31764:18;31756:26;;31828:9;31822:4;31818:20;31814:1;31803:9;31799:17;31792:47;31856:131;31982:4;31856:131;:::i;:::-;31848:139;;31575:419;;;:::o;32000:174::-;32140:26;32136:1;32128:6;32124:14;32117:50;32000:174;:::o;32180:366::-;32322:3;32343:67;32407:2;32402:3;32343:67;:::i;:::-;32336:74;;32419:93;32508:3;32419:93;:::i;:::-;32537:2;32532:3;32528:12;32521:19;;32180:366;;;:::o;32552:419::-;32718:4;32756:2;32745:9;32741:18;32733:26;;32805:9;32799:4;32795:20;32791:1;32780:9;32776:17;32769:47;32833:131;32959:4;32833:131;:::i;:::-;32825:139;;32552:419;;;:::o;32977:79::-;33016:7;33045:5;33034:16;;32977:79;;;:::o;33062:157::-;33167:45;33187:24;33205:5;33187:24;:::i;:::-;33167:45;:::i;:::-;33162:3;33155:58;33062:157;;:::o;33225:94::-;33258:8;33306:5;33302:2;33298:14;33277:35;;33225:94;;;:::o;33325:::-;33364:7;33393:20;33407:5;33393:20;:::i;:::-;33382:31;;33325:94;;;:::o;33425:100::-;33464:7;33493:26;33513:5;33493:26;:::i;:::-;33482:37;;33425:100;;;:::o;33531:157::-;33636:45;33656:24;33674:5;33656:24;:::i;:::-;33636:45;:::i;:::-;33631:3;33624:58;33531:157;;:::o;33694:820::-;33918:3;33933:75;34004:3;33995:6;33933:75;:::i;:::-;34033:2;34028:3;34024:12;34017:19;;34046:75;34117:3;34108:6;34046:75;:::i;:::-;34146:2;34141:3;34137:12;34130:19;;34159:75;34230:3;34221:6;34159:75;:::i;:::-;34259:2;34254:3;34250:12;34243:19;;34272:75;34343:3;34334:6;34272:75;:::i;:::-;34372:2;34367:3;34363:12;34356:19;;34385:75;34456:3;34447:6;34385:75;:::i;:::-;34485:2;34480:3;34476:12;34469:19;;34505:3;34498:10;;33694:820;;;;;;;;:::o;34520:180::-;34568:77;34565:1;34558:88;34665:4;34662:1;34655:15;34689:4;34686:1;34679:15;34706:176;34738:1;34755:20;34773:1;34755:20;:::i;:::-;34750:25;;34789:20;34807:1;34789:20;:::i;:::-;34784:25;;34828:1;34818:35;;34833:18;;:::i;:::-;34818:35;34874:1;34871;34867:9;34862:14;;34706:176;;;;:::o;34888:98::-;34939:6;34973:5;34967:12;34957:22;;34888:98;;;:::o;34992:168::-;35075:11;35109:6;35104:3;35097:19;35149:4;35144:3;35140:14;35125:29;;34992:168;;;;:::o;35166:373::-;35252:3;35280:38;35312:5;35280:38;:::i;:::-;35334:70;35397:6;35392:3;35334:70;:::i;:::-;35327:77;;35413:65;35471:6;35466:3;35459:4;35452:5;35448:16;35413:65;:::i;:::-;35503:29;35525:6;35503:29;:::i;:::-;35498:3;35494:39;35487:46;;35256:283;35166:373;;;;:::o;35545:640::-;35740:4;35778:3;35767:9;35763:19;35755:27;;35792:71;35860:1;35849:9;35845:17;35836:6;35792:71;:::i;:::-;35873:72;35941:2;35930:9;35926:18;35917:6;35873:72;:::i;:::-;35955;36023:2;36012:9;36008:18;35999:6;35955:72;:::i;:::-;36074:9;36068:4;36064:20;36059:2;36048:9;36044:18;36037:48;36102:76;36173:4;36164:6;36102:76;:::i;:::-;36094:84;;35545:640;;;;;;;:::o;36191:141::-;36247:5;36278:6;36272:13;36263:22;;36294:32;36320:5;36294:32;:::i;:::-;36191:141;;;;:::o;36338:349::-;36407:6;36456:2;36444:9;36435:7;36431:23;36427:32;36424:119;;;36462:79;;:::i;:::-;36424:119;36582:1;36607:63;36662:7;36653:6;36642:9;36638:22;36607:63;:::i;:::-;36597:73;;36553:127;36338:349;;;;:::o
Swarm Source
ipfs://b7b94cb3863e10b78ecb564bae30d6398787b9e7a9fb2c2005154d3fa6455531
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.