Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 233 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 19040439 | 367 days ago | IN | 0 ETH | 0.00093229 | ||||
Set Approval For... | 19032352 | 368 days ago | IN | 0 ETH | 0.00133673 | ||||
Set Approval For... | 19032340 | 368 days ago | IN | 0 ETH | 0.00136996 | ||||
Set Approval For... | 19032320 | 368 days ago | IN | 0 ETH | 0.00131897 | ||||
Set Approval For... | 19032303 | 368 days ago | IN | 0 ETH | 0.001421 | ||||
Set Approval For... | 19032296 | 368 days ago | IN | 0 ETH | 0.00143478 | ||||
Set Approval For... | 19032278 | 368 days ago | IN | 0 ETH | 0.00139401 | ||||
Set Approval For... | 19025771 | 369 days ago | IN | 0 ETH | 0.0013783 | ||||
Set Approval For... | 19025757 | 369 days ago | IN | 0 ETH | 0.00131185 | ||||
Set Approval For... | 19025732 | 369 days ago | IN | 0 ETH | 0.00133611 | ||||
Set Approval For... | 19025723 | 369 days ago | IN | 0 ETH | 0.00141565 | ||||
Set Approval For... | 19025715 | 369 days ago | IN | 0 ETH | 0.00129979 | ||||
Set Approval For... | 19025706 | 369 days ago | IN | 0 ETH | 0.00133662 | ||||
Set Approval For... | 19017373 | 370 days ago | IN | 0 ETH | 0.0012015 | ||||
Set Approval For... | 19017154 | 370 days ago | IN | 0 ETH | 0.00130845 | ||||
Set Approval For... | 19017138 | 370 days ago | IN | 0 ETH | 0.00124725 | ||||
Set Approval For... | 19017126 | 370 days ago | IN | 0 ETH | 0.00122503 | ||||
Set Approval For... | 19017105 | 370 days ago | IN | 0 ETH | 0.0012139 | ||||
Set Approval For... | 19017090 | 370 days ago | IN | 0 ETH | 0.00128056 | ||||
Set Approval For... | 19017078 | 370 days ago | IN | 0 ETH | 0.00147414 | ||||
Set Approval For... | 19017017 | 370 days ago | IN | 0 ETH | 0.00151349 | ||||
Set Approval For... | 19017009 | 370 days ago | IN | 0 ETH | 0.00127168 | ||||
Set Approval For... | 19016984 | 370 days ago | IN | 0 ETH | 0.00126246 | ||||
Set Approval For... | 19016971 | 370 days ago | IN | 0 ETH | 0.00136672 | ||||
Set Approval For... | 19016959 | 370 days ago | IN | 0 ETH | 0.00141999 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
18968644 | 377 days ago | 1.56 ETH | ||||
18968643 | 377 days ago | 1.56 ETH | ||||
18968643 | 377 days ago | 1.56 ETH | ||||
18968643 | 377 days ago | 2.08 ETH | ||||
18968643 | 377 days ago | 1.56 ETH | ||||
18968643 | 377 days ago | 1.56 ETH | ||||
18968643 | 377 days ago | 2.08 ETH | ||||
18968643 | 377 days ago | 1.56 ETH | ||||
18968643 | 377 days ago | 2.08 ETH | ||||
18968642 | 377 days ago | 1.56 ETH | ||||
18968642 | 377 days ago | 2.08 ETH | ||||
18968642 | 377 days ago | 1.56 ETH | ||||
18968641 | 377 days ago | 1.56 ETH | ||||
18968641 | 377 days ago | 1.56 ETH | ||||
18968639 | 377 days ago | 1.56 ETH | ||||
18968639 | 377 days ago | 1.56 ETH | ||||
18968638 | 377 days ago | 1.56 ETH | ||||
18968637 | 377 days ago | 2.08 ETH | ||||
18968637 | 377 days ago | 2.08 ETH | ||||
18968636 | 377 days ago | 1.56 ETH | ||||
18968635 | 377 days ago | 2.08 ETH | ||||
18968634 | 377 days ago | 2.08 ETH | ||||
18968634 | 377 days ago | 1.56 ETH | ||||
18968632 | 377 days ago | 2.08 ETH | ||||
18968631 | 377 days ago | 2.08 ETH |
Loading...
Loading
Contract Name:
FuryPandas
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-01-09 */ // SPDX-License-Identifier: MIT 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); } /** * @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(); tokenId = tokenId - 1; 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) } } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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; } } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } 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); } } contract FuryPandas is ERC721A, Ownable { using Strings for uint256; uint256 public constant MAX_SUPPLY = 650; // string private _tokenBaseURI; uint256 public price = 0.52 ether; uint256 public count; uint256 public startTime; uint256 public endTime; uint256 public saleTime = 24 hours; uint256 public perCount = 5; // uint256 public tokenId; mapping (address=>uint) public userInfo; constructor() ERC721A("Offbeat Pandas", "Offbeat Pandas") {} function launch() public onlyOwner(){ require(startTime == 0, "already started!"); startTime = block.timestamp; endTime = startTime + saleTime; } // function mint(uint256 _amount) public payable callerIsUser { require(block.timestamp>=startTime && block.timestamp<=endTime , "not sale time!"); require(_amount > 0 && userInfo[msg.sender] + _amount <= perCount,"Exceed sales max limit!"); require(_amount+count <= MAX_SUPPLY,"Maximum count exceeded!"); uint256 cost = price * _amount; require(cost == msg.value,"invalid value!"); safeTransfer(owner(),msg.value); count = count + _amount; userInfo[msg.sender] = userInfo[msg.sender] + _amount; _mint(msg.sender, _amount); } function burn(uint256 _tokenId) public { _burn(_tokenId); } function safeTransfer(address to, uint value) internal { (bool success,) = to.call{value:value}(new bytes(0)); require(success, 'Transfer: ETH_TRANSFER_FAILED'); } function setPrice(uint256 _price) public onlyOwner{ require(price > 0,"Invalid price!"); price = _price; } function setBaseURI(string calldata URI) external onlyOwner { _tokenBaseURI = URI; } function _baseURI() internal view override(ERC721A) returns (string memory) { return _tokenBaseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } // modifier callerIsUser() { require(tx.origin == msg.sender, "not user!"); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"count","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","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":[],"name":"perCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052670737693eb3340000600a5562015180600e556005600f553480156200002957600080fd5b506040518060400160405280600e81526020017f4f6666626561742050616e6461730000000000000000000000000000000000008152506040518060400160405280600e81526020017f4f6666626561742050616e6461730000000000000000000000000000000000008152508160029080519060200190620000ae929190620001dd565b508060039080519060200190620000c7929190620001dd565b50620000d86200010660201b60201c565b600081905550505062000100620000f46200010f60201b60201c565b6200011760201b60201c565b620002f2565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001eb906200028d565b90600052602060002090601f0160209004810192826200020f57600085556200025b565b82601f106200022a57805160ff19168380011785556200025b565b828001600101855582156200025b579182015b828111156200025a5782518255916020019190600101906200023d565b5b5090506200026a91906200026e565b5090565b5b80821115620002895760008160009055506001016200026f565b5090565b60006002820490506001821680620002a657607f821691505b60208210811415620002bd57620002bc620002c3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612f7980620003026000396000f3fe6080604052600436106101d85760003560e01c806355f804b3116101025780639c36f2e611610095578063b88d4fde11610064578063b88d4fde14610654578063c87b56dd14610670578063e985e9c5146106ad578063f2fde38b146106ea576101d8565b80639c36f2e6146105b9578063a035b1fe146105e4578063a0712d681461060f578063a22cb4651461062b576101d8565b806378e97925116100d157806378e979251461050f5780638da5cb5b1461053a57806391b7f5ed1461056557806395d89b411461058e576101d8565b806355f804b3146104555780636352211e1461047e57806370a08231146104bb578063715018a6146104f8576101d8565b806317d70f7c1161017a5780633197cbb6116101495780633197cbb6146103ba57806332cb6b0c146103e557806342842e0e1461041057806342966c681461042c576101d8565b806317d70f7c1461030b57806318160ddd146103365780631959a0021461036157806323b872dd1461039e576101d8565b806306fdde03116101b657806306fdde031461025c578063081812fc14610287578063095ea7b3146102c45780631596facb146102e0576101d8565b806301339c21146101dd57806301ffc9a7146101f457806306661abd14610231575b600080fd5b3480156101e957600080fd5b506101f2610713565b005b34801561020057600080fd5b5061021b6004803603810190610216919061248f565b61077f565b6040516102289190612850565b60405180910390f35b34801561023d57600080fd5b50610246610811565b60405161025391906129cd565b60405180910390f35b34801561026857600080fd5b50610271610817565b60405161027e919061286b565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612526565b6108a9565b6040516102bb91906127e9565b60405180910390f35b6102de60048036038101906102d99190612453565b610928565b005b3480156102ec57600080fd5b506102f5610a6c565b60405161030291906129cd565b60405180910390f35b34801561031757600080fd5b50610320610a72565b60405161032d91906129cd565b60405180910390f35b34801561034257600080fd5b5061034b610a78565b60405161035891906129cd565b60405180910390f35b34801561036d57600080fd5b50610388600480360381019061038391906122e8565b610a8f565b60405161039591906129cd565b60405180910390f35b6103b860048036038101906103b3919061234d565b610aa7565b005b3480156103c657600080fd5b506103cf610dcc565b6040516103dc91906129cd565b60405180910390f35b3480156103f157600080fd5b506103fa610dd2565b60405161040791906129cd565b60405180910390f35b61042a6004803603810190610425919061234d565b610dd8565b005b34801561043857600080fd5b50610453600480360381019061044e9190612526565b610df8565b005b34801561046157600080fd5b5061047c600480360381019061047791906124e1565b610e04565b005b34801561048a57600080fd5b506104a560048036038101906104a09190612526565b610e22565b6040516104b291906127e9565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd91906122e8565b610e34565b6040516104ef91906129cd565b60405180910390f35b34801561050457600080fd5b5061050d610eed565b005b34801561051b57600080fd5b50610524610f01565b60405161053191906129cd565b60405180910390f35b34801561054657600080fd5b5061054f610f07565b60405161055c91906127e9565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190612526565b610f31565b005b34801561059a57600080fd5b506105a3610f88565b6040516105b0919061286b565b60405180910390f35b3480156105c557600080fd5b506105ce61101a565b6040516105db91906129cd565b60405180910390f35b3480156105f057600080fd5b506105f9611020565b60405161060691906129cd565b60405180910390f35b61062960048036038101906106249190612526565b611026565b005b34801561063757600080fd5b50610652600480360381019061064d9190612417565b6112e9565b005b61066e6004803603810190610669919061239c565b6113f4565b005b34801561067c57600080fd5b5061069760048036038101906106929190612526565b611467565b6040516106a4919061286b565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612311565b611515565b6040516106e19190612850565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c91906122e8565b6115a9565b005b61071b61162d565b6000600c5414610760576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610757906128ed565b60405180910390fd5b42600c81905550600e54600c546107779190612a8c565b600d81905550565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b5481565b60606002805461082690612c26565b80601f016020809104026020016040519081016040528092919081815260200182805461085290612c26565b801561089f5780601f106108745761010080835404028352916020019161089f565b820191906000526020600020905b81548152906001019060200180831161088257829003601f168201915b5050505050905090565b60006108b4826116ab565b6108ea576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093382610e22565b90508073ffffffffffffffffffffffffffffffffffffffff1661095461170a565b73ffffffffffffffffffffffffffffffffffffffff16146109b7576109808161097b61170a565b611515565b6109b6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e5481565b60105481565b6000610a82611712565b6001546000540303905090565b60116020528060005260406000206000915090505481565b6000610ab28261171b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b19576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b25846117e9565b91509150610b3b8187610b3661170a565b611810565b610b8757610b5086610b4b61170a565b611515565b610b86576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bee576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bfb8686866001611854565b8015610c0657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cd485610cb088888761185a565b7c020000000000000000000000000000000000000000000000000000000017611882565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d5c576000600185019050600060046000838152602001908152602001600020541415610d5a576000548114610d59578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dc486868660016118ad565b505050505050565b600d5481565b61028a81565b610df3838383604051806020016040528060008152506113f4565b505050565b610e01816118b3565b50565b610e0c61162d565b818160099190610e1d92919061212a565b505050565b6000610e2d8261171b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ef561162d565b610eff60006118c1565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f3961162d565b6000600a5411610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f759061298d565b60405180910390fd5b80600a8190555050565b606060038054610f9790612c26565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc390612c26565b80156110105780601f10610fe557610100808354040283529160200191611010565b820191906000526020600020905b815481529060010190602001808311610ff357829003601f168201915b5050505050905090565b600f5481565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b9061288d565b60405180910390fd5b600c5442101580156110a85750600d544211155b6110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de906128ad565b60405180910390fd5b6000811180156111435750600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111409190612a8c565b11155b611182576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111799061294d565b60405180910390fd5b61028a600b54826111939190612a8c565b11156111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb906129ad565b60405180910390fd5b600081600a546111e49190612ae2565b9050348114611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f9061290d565b60405180910390fd5b611239611233610f07565b34611987565b81600b546112479190612a8c565b600b8190555081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112989190612a8c565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112e53383611aad565b5050565b80600760006112f661170a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113a361170a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113e89190612850565b60405180910390a35050565b6113ff848484610aa7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114615761142a84848484611c6a565b611460576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611472826116ab565b6114a8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001826114b59190612b3c565b915060006114c1611dca565b90506000815114156114e2576040518060200160405280600081525061150d565b806114ec84611e5c565b6040516020016114fd9291906127c5565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b161162d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611621576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611618906128cd565b60405180910390fd5b61162a816118c1565b50565b611635611eb5565b73ffffffffffffffffffffffffffffffffffffffff16611653610f07565b73ffffffffffffffffffffffffffffffffffffffff16146116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a09061296d565b60405180910390fd5b565b6000816116b6611712565b111580156116c5575060005482105b8015611703575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061172a611712565b116117b2576000548110156117b15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117af575b60008114156117a557600460008360019003935083815260200190815260200160002054905061177a565b80925050506117e4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611871868684611ebd565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6118be816000611ec6565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682600067ffffffffffffffff8111156119e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a145781602001600182028036833780820191505090505b50604051611a2291906127ae565b60006040518083038185875af1925050503d8060008114611a5f576040519150601f19603f3d011682016040523d82523d6000602084013e611a64565b606091505b5050905080611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f9061292d565b60405180910390fd5b505050565b6000805490506000821415611aee576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611afb6000848385611854565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b7283611b63600086600061185a565b611b6c8561211a565b17611882565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611c1357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611bd8565b506000821415611c4f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611c6560008483856118ad565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c9061170a565b8786866040518563ffffffff1660e01b8152600401611cb29493929190612804565b602060405180830381600087803b158015611ccc57600080fd5b505af1925050508015611cfd57506040513d601f19601f82011682018060405250810190611cfa91906124b8565b60015b611d77573d8060008114611d2d576040519150601f19603f3d011682016040523d82523d6000602084013e611d32565b606091505b50600081511415611d6f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611dd990612c26565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0590612c26565b8015611e525780601f10611e2757610100808354040283529160200191611e52565b820191906000526020600020905b815481529060010190602001808311611e3557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611ea057600184039350600a81066030018453600a8104905080611e9b57611ea0565b611e75565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b6000611ed18361171b565b90506000819050600080611ee4866117e9565b915091508415611f4d57611f008184611efb61170a565b611810565b611f4c57611f1583611f1061170a565b611515565b611f4b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611f5b836000886001611854565b8015611f6657600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061200e83611fcb8560008861185a565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611882565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415612096576000600187019050600060046000838152602001908152602001600020541415612094576000548114612093578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121008360008860016118ad565b600160008154809291906001019190505550505050505050565b60006001821460e11b9050919050565b82805461213690612c26565b90600052602060002090601f016020900481019282612158576000855561219f565b82601f1061217157803560ff191683800117855561219f565b8280016001018555821561219f579182015b8281111561219e578235825591602001919060010190612183565b5b5090506121ac91906121b0565b5090565b5b808211156121c95760008160009055506001016121b1565b5090565b60006121e06121db84612a0d565b6129e8565b9050828152602081018484840111156121f857600080fd5b612203848285612be4565b509392505050565b60008135905061221a81612ee7565b92915050565b60008135905061222f81612efe565b92915050565b60008135905061224481612f15565b92915050565b60008151905061225981612f15565b92915050565b600082601f83011261227057600080fd5b81356122808482602086016121cd565b91505092915050565b60008083601f84011261229b57600080fd5b8235905067ffffffffffffffff8111156122b457600080fd5b6020830191508360018202830111156122cc57600080fd5b9250929050565b6000813590506122e281612f2c565b92915050565b6000602082840312156122fa57600080fd5b60006123088482850161220b565b91505092915050565b6000806040838503121561232457600080fd5b60006123328582860161220b565b92505060206123438582860161220b565b9150509250929050565b60008060006060848603121561236257600080fd5b60006123708682870161220b565b93505060206123818682870161220b565b9250506040612392868287016122d3565b9150509250925092565b600080600080608085870312156123b257600080fd5b60006123c08782880161220b565b94505060206123d18782880161220b565b93505060406123e2878288016122d3565b925050606085013567ffffffffffffffff8111156123ff57600080fd5b61240b8782880161225f565b91505092959194509250565b6000806040838503121561242a57600080fd5b60006124388582860161220b565b925050602061244985828601612220565b9150509250929050565b6000806040838503121561246657600080fd5b60006124748582860161220b565b9250506020612485858286016122d3565b9150509250929050565b6000602082840312156124a157600080fd5b60006124af84828501612235565b91505092915050565b6000602082840312156124ca57600080fd5b60006124d88482850161224a565b91505092915050565b600080602083850312156124f457600080fd5b600083013567ffffffffffffffff81111561250e57600080fd5b61251a85828601612289565b92509250509250929050565b60006020828403121561253857600080fd5b6000612546848285016122d3565b91505092915050565b61255881612b70565b82525050565b61256781612b82565b82525050565b600061257882612a3e565b6125828185612a54565b9350612592818560208601612bf3565b61259b81612d16565b840191505092915050565b60006125b182612a3e565b6125bb8185612a65565b93506125cb818560208601612bf3565b80840191505092915050565b60006125e282612a49565b6125ec8185612a70565b93506125fc818560208601612bf3565b61260581612d16565b840191505092915050565b600061261b82612a49565b6126258185612a81565b9350612635818560208601612bf3565b80840191505092915050565b600061264e600983612a70565b915061265982612d27565b602082019050919050565b6000612671600e83612a70565b915061267c82612d50565b602082019050919050565b6000612694602683612a70565b915061269f82612d79565b604082019050919050565b60006126b7601083612a70565b91506126c282612dc8565b602082019050919050565b60006126da600e83612a70565b91506126e582612df1565b602082019050919050565b60006126fd601d83612a70565b915061270882612e1a565b602082019050919050565b6000612720601783612a70565b915061272b82612e43565b602082019050919050565b6000612743602083612a70565b915061274e82612e6c565b602082019050919050565b6000612766600e83612a70565b915061277182612e95565b602082019050919050565b6000612789601783612a70565b915061279482612ebe565b602082019050919050565b6127a881612bda565b82525050565b60006127ba82846125a6565b915081905092915050565b60006127d18285612610565b91506127dd8284612610565b91508190509392505050565b60006020820190506127fe600083018461254f565b92915050565b6000608082019050612819600083018761254f565b612826602083018661254f565b612833604083018561279f565b8181036060830152612845818461256d565b905095945050505050565b6000602082019050612865600083018461255e565b92915050565b6000602082019050818103600083015261288581846125d7565b905092915050565b600060208201905081810360008301526128a681612641565b9050919050565b600060208201905081810360008301526128c681612664565b9050919050565b600060208201905081810360008301526128e681612687565b9050919050565b60006020820190508181036000830152612906816126aa565b9050919050565b60006020820190508181036000830152612926816126cd565b9050919050565b60006020820190508181036000830152612946816126f0565b9050919050565b6000602082019050818103600083015261296681612713565b9050919050565b6000602082019050818103600083015261298681612736565b9050919050565b600060208201905081810360008301526129a681612759565b9050919050565b600060208201905081810360008301526129c68161277c565b9050919050565b60006020820190506129e2600083018461279f565b92915050565b60006129f2612a03565b90506129fe8282612c58565b919050565b6000604051905090565b600067ffffffffffffffff821115612a2857612a27612ce7565b5b612a3182612d16565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a9782612bda565b9150612aa283612bda565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ad757612ad6612c89565b5b828201905092915050565b6000612aed82612bda565b9150612af883612bda565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b3157612b30612c89565b5b828202905092915050565b6000612b4782612bda565b9150612b5283612bda565b925082821015612b6557612b64612c89565b5b828203905092915050565b6000612b7b82612bba565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c11578082015181840152602081019050612bf6565b83811115612c20576000848401525b50505050565b60006002820490506001821680612c3e57607f821691505b60208210811415612c5257612c51612cb8565b5b50919050565b612c6182612d16565b810181811067ffffffffffffffff82111715612c8057612c7f612ce7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6e6f742075736572210000000000000000000000000000000000000000000000600082015250565b7f6e6f742073616c652074696d6521000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f616c726561647920737461727465642100000000000000000000000000000000600082015250565b7f696e76616c69642076616c756521000000000000000000000000000000000000600082015250565b7f5472616e736665723a204554485f5452414e534645525f4641494c4544000000600082015250565b7f4578636565642073616c6573206d6178206c696d697421000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c696420707269636521000000000000000000000000000000000000600082015250565b7f4d6178696d756d20636f756e7420657863656564656421000000000000000000600082015250565b612ef081612b70565b8114612efb57600080fd5b50565b612f0781612b82565b8114612f1257600080fd5b50565b612f1e81612b8e565b8114612f2957600080fd5b50565b612f3581612bda565b8114612f4057600080fd5b5056fea2646970667358221220613c0acec908c38d2cc6d4c67e915926af24fbf11190ddaf65d99829933dd20e64736f6c63430008040033
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806355f804b3116101025780639c36f2e611610095578063b88d4fde11610064578063b88d4fde14610654578063c87b56dd14610670578063e985e9c5146106ad578063f2fde38b146106ea576101d8565b80639c36f2e6146105b9578063a035b1fe146105e4578063a0712d681461060f578063a22cb4651461062b576101d8565b806378e97925116100d157806378e979251461050f5780638da5cb5b1461053a57806391b7f5ed1461056557806395d89b411461058e576101d8565b806355f804b3146104555780636352211e1461047e57806370a08231146104bb578063715018a6146104f8576101d8565b806317d70f7c1161017a5780633197cbb6116101495780633197cbb6146103ba57806332cb6b0c146103e557806342842e0e1461041057806342966c681461042c576101d8565b806317d70f7c1461030b57806318160ddd146103365780631959a0021461036157806323b872dd1461039e576101d8565b806306fdde03116101b657806306fdde031461025c578063081812fc14610287578063095ea7b3146102c45780631596facb146102e0576101d8565b806301339c21146101dd57806301ffc9a7146101f457806306661abd14610231575b600080fd5b3480156101e957600080fd5b506101f2610713565b005b34801561020057600080fd5b5061021b6004803603810190610216919061248f565b61077f565b6040516102289190612850565b60405180910390f35b34801561023d57600080fd5b50610246610811565b60405161025391906129cd565b60405180910390f35b34801561026857600080fd5b50610271610817565b60405161027e919061286b565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612526565b6108a9565b6040516102bb91906127e9565b60405180910390f35b6102de60048036038101906102d99190612453565b610928565b005b3480156102ec57600080fd5b506102f5610a6c565b60405161030291906129cd565b60405180910390f35b34801561031757600080fd5b50610320610a72565b60405161032d91906129cd565b60405180910390f35b34801561034257600080fd5b5061034b610a78565b60405161035891906129cd565b60405180910390f35b34801561036d57600080fd5b50610388600480360381019061038391906122e8565b610a8f565b60405161039591906129cd565b60405180910390f35b6103b860048036038101906103b3919061234d565b610aa7565b005b3480156103c657600080fd5b506103cf610dcc565b6040516103dc91906129cd565b60405180910390f35b3480156103f157600080fd5b506103fa610dd2565b60405161040791906129cd565b60405180910390f35b61042a6004803603810190610425919061234d565b610dd8565b005b34801561043857600080fd5b50610453600480360381019061044e9190612526565b610df8565b005b34801561046157600080fd5b5061047c600480360381019061047791906124e1565b610e04565b005b34801561048a57600080fd5b506104a560048036038101906104a09190612526565b610e22565b6040516104b291906127e9565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd91906122e8565b610e34565b6040516104ef91906129cd565b60405180910390f35b34801561050457600080fd5b5061050d610eed565b005b34801561051b57600080fd5b50610524610f01565b60405161053191906129cd565b60405180910390f35b34801561054657600080fd5b5061054f610f07565b60405161055c91906127e9565b60405180910390f35b34801561057157600080fd5b5061058c60048036038101906105879190612526565b610f31565b005b34801561059a57600080fd5b506105a3610f88565b6040516105b0919061286b565b60405180910390f35b3480156105c557600080fd5b506105ce61101a565b6040516105db91906129cd565b60405180910390f35b3480156105f057600080fd5b506105f9611020565b60405161060691906129cd565b60405180910390f35b61062960048036038101906106249190612526565b611026565b005b34801561063757600080fd5b50610652600480360381019061064d9190612417565b6112e9565b005b61066e6004803603810190610669919061239c565b6113f4565b005b34801561067c57600080fd5b5061069760048036038101906106929190612526565b611467565b6040516106a4919061286b565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612311565b611515565b6040516106e19190612850565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c91906122e8565b6115a9565b005b61071b61162d565b6000600c5414610760576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610757906128ed565b60405180910390fd5b42600c81905550600e54600c546107779190612a8c565b600d81905550565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061080a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b5481565b60606002805461082690612c26565b80601f016020809104026020016040519081016040528092919081815260200182805461085290612c26565b801561089f5780601f106108745761010080835404028352916020019161089f565b820191906000526020600020905b81548152906001019060200180831161088257829003601f168201915b5050505050905090565b60006108b4826116ab565b6108ea576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093382610e22565b90508073ffffffffffffffffffffffffffffffffffffffff1661095461170a565b73ffffffffffffffffffffffffffffffffffffffff16146109b7576109808161097b61170a565b611515565b6109b6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e5481565b60105481565b6000610a82611712565b6001546000540303905090565b60116020528060005260406000206000915090505481565b6000610ab28261171b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b19576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b25846117e9565b91509150610b3b8187610b3661170a565b611810565b610b8757610b5086610b4b61170a565b611515565b610b86576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610bee576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bfb8686866001611854565b8015610c0657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cd485610cb088888761185a565b7c020000000000000000000000000000000000000000000000000000000017611882565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610d5c576000600185019050600060046000838152602001908152602001600020541415610d5a576000548114610d59578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dc486868660016118ad565b505050505050565b600d5481565b61028a81565b610df3838383604051806020016040528060008152506113f4565b505050565b610e01816118b3565b50565b610e0c61162d565b818160099190610e1d92919061212a565b505050565b6000610e2d8261171b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ef561162d565b610eff60006118c1565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f3961162d565b6000600a5411610f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f759061298d565b60405180910390fd5b80600a8190555050565b606060038054610f9790612c26565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc390612c26565b80156110105780601f10610fe557610100808354040283529160200191611010565b820191906000526020600020905b815481529060010190602001808311610ff357829003601f168201915b5050505050905090565b600f5481565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b9061288d565b60405180910390fd5b600c5442101580156110a85750600d544211155b6110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de906128ad565b60405180910390fd5b6000811180156111435750600f5481601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111409190612a8c565b11155b611182576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111799061294d565b60405180910390fd5b61028a600b54826111939190612a8c565b11156111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb906129ad565b60405180910390fd5b600081600a546111e49190612ae2565b9050348114611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f9061290d565b60405180910390fd5b611239611233610f07565b34611987565b81600b546112479190612a8c565b600b8190555081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112989190612a8c565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112e53383611aad565b5050565b80600760006112f661170a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113a361170a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113e89190612850565b60405180910390a35050565b6113ff848484610aa7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114615761142a84848484611c6a565b611460576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611472826116ab565b6114a8576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001826114b59190612b3c565b915060006114c1611dca565b90506000815114156114e2576040518060200160405280600081525061150d565b806114ec84611e5c565b6040516020016114fd9291906127c5565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115b161162d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611621576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611618906128cd565b60405180910390fd5b61162a816118c1565b50565b611635611eb5565b73ffffffffffffffffffffffffffffffffffffffff16611653610f07565b73ffffffffffffffffffffffffffffffffffffffff16146116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a09061296d565b60405180910390fd5b565b6000816116b6611712565b111580156116c5575060005482105b8015611703575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061172a611712565b116117b2576000548110156117b15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117af575b60008114156117a557600460008360019003935083815260200190815260200160002054905061177a565b80925050506117e4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611871868684611ebd565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6118be816000611ec6565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682600067ffffffffffffffff8111156119e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a145781602001600182028036833780820191505090505b50604051611a2291906127ae565b60006040518083038185875af1925050503d8060008114611a5f576040519150601f19603f3d011682016040523d82523d6000602084013e611a64565b606091505b5050905080611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f9061292d565b60405180910390fd5b505050565b6000805490506000821415611aee576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611afb6000848385611854565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611b7283611b63600086600061185a565b611b6c8561211a565b17611882565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611c1357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611bd8565b506000821415611c4f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611c6560008483856118ad565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c9061170a565b8786866040518563ffffffff1660e01b8152600401611cb29493929190612804565b602060405180830381600087803b158015611ccc57600080fd5b505af1925050508015611cfd57506040513d601f19601f82011682018060405250810190611cfa91906124b8565b60015b611d77573d8060008114611d2d576040519150601f19603f3d011682016040523d82523d6000602084013e611d32565b606091505b50600081511415611d6f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611dd990612c26565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0590612c26565b8015611e525780601f10611e2757610100808354040283529160200191611e52565b820191906000526020600020905b815481529060010190602001808311611e3557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611ea057600184039350600a81066030018453600a8104905080611e9b57611ea0565b611e75565b50828103602084039350808452505050919050565b600033905090565b60009392505050565b6000611ed18361171b565b90506000819050600080611ee4866117e9565b915091508415611f4d57611f008184611efb61170a565b611810565b611f4c57611f1583611f1061170a565b611515565b611f4b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611f5b836000886001611854565b8015611f6657600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061200e83611fcb8560008861185a565b7c02000000000000000000000000000000000000000000000000000000007c01000000000000000000000000000000000000000000000000000000001717611882565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085161415612096576000600187019050600060046000838152602001908152602001600020541415612094576000548114612093578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121008360008860016118ad565b600160008154809291906001019190505550505050505050565b60006001821460e11b9050919050565b82805461213690612c26565b90600052602060002090601f016020900481019282612158576000855561219f565b82601f1061217157803560ff191683800117855561219f565b8280016001018555821561219f579182015b8281111561219e578235825591602001919060010190612183565b5b5090506121ac91906121b0565b5090565b5b808211156121c95760008160009055506001016121b1565b5090565b60006121e06121db84612a0d565b6129e8565b9050828152602081018484840111156121f857600080fd5b612203848285612be4565b509392505050565b60008135905061221a81612ee7565b92915050565b60008135905061222f81612efe565b92915050565b60008135905061224481612f15565b92915050565b60008151905061225981612f15565b92915050565b600082601f83011261227057600080fd5b81356122808482602086016121cd565b91505092915050565b60008083601f84011261229b57600080fd5b8235905067ffffffffffffffff8111156122b457600080fd5b6020830191508360018202830111156122cc57600080fd5b9250929050565b6000813590506122e281612f2c565b92915050565b6000602082840312156122fa57600080fd5b60006123088482850161220b565b91505092915050565b6000806040838503121561232457600080fd5b60006123328582860161220b565b92505060206123438582860161220b565b9150509250929050565b60008060006060848603121561236257600080fd5b60006123708682870161220b565b93505060206123818682870161220b565b9250506040612392868287016122d3565b9150509250925092565b600080600080608085870312156123b257600080fd5b60006123c08782880161220b565b94505060206123d18782880161220b565b93505060406123e2878288016122d3565b925050606085013567ffffffffffffffff8111156123ff57600080fd5b61240b8782880161225f565b91505092959194509250565b6000806040838503121561242a57600080fd5b60006124388582860161220b565b925050602061244985828601612220565b9150509250929050565b6000806040838503121561246657600080fd5b60006124748582860161220b565b9250506020612485858286016122d3565b9150509250929050565b6000602082840312156124a157600080fd5b60006124af84828501612235565b91505092915050565b6000602082840312156124ca57600080fd5b60006124d88482850161224a565b91505092915050565b600080602083850312156124f457600080fd5b600083013567ffffffffffffffff81111561250e57600080fd5b61251a85828601612289565b92509250509250929050565b60006020828403121561253857600080fd5b6000612546848285016122d3565b91505092915050565b61255881612b70565b82525050565b61256781612b82565b82525050565b600061257882612a3e565b6125828185612a54565b9350612592818560208601612bf3565b61259b81612d16565b840191505092915050565b60006125b182612a3e565b6125bb8185612a65565b93506125cb818560208601612bf3565b80840191505092915050565b60006125e282612a49565b6125ec8185612a70565b93506125fc818560208601612bf3565b61260581612d16565b840191505092915050565b600061261b82612a49565b6126258185612a81565b9350612635818560208601612bf3565b80840191505092915050565b600061264e600983612a70565b915061265982612d27565b602082019050919050565b6000612671600e83612a70565b915061267c82612d50565b602082019050919050565b6000612694602683612a70565b915061269f82612d79565b604082019050919050565b60006126b7601083612a70565b91506126c282612dc8565b602082019050919050565b60006126da600e83612a70565b91506126e582612df1565b602082019050919050565b60006126fd601d83612a70565b915061270882612e1a565b602082019050919050565b6000612720601783612a70565b915061272b82612e43565b602082019050919050565b6000612743602083612a70565b915061274e82612e6c565b602082019050919050565b6000612766600e83612a70565b915061277182612e95565b602082019050919050565b6000612789601783612a70565b915061279482612ebe565b602082019050919050565b6127a881612bda565b82525050565b60006127ba82846125a6565b915081905092915050565b60006127d18285612610565b91506127dd8284612610565b91508190509392505050565b60006020820190506127fe600083018461254f565b92915050565b6000608082019050612819600083018761254f565b612826602083018661254f565b612833604083018561279f565b8181036060830152612845818461256d565b905095945050505050565b6000602082019050612865600083018461255e565b92915050565b6000602082019050818103600083015261288581846125d7565b905092915050565b600060208201905081810360008301526128a681612641565b9050919050565b600060208201905081810360008301526128c681612664565b9050919050565b600060208201905081810360008301526128e681612687565b9050919050565b60006020820190508181036000830152612906816126aa565b9050919050565b60006020820190508181036000830152612926816126cd565b9050919050565b60006020820190508181036000830152612946816126f0565b9050919050565b6000602082019050818103600083015261296681612713565b9050919050565b6000602082019050818103600083015261298681612736565b9050919050565b600060208201905081810360008301526129a681612759565b9050919050565b600060208201905081810360008301526129c68161277c565b9050919050565b60006020820190506129e2600083018461279f565b92915050565b60006129f2612a03565b90506129fe8282612c58565b919050565b6000604051905090565b600067ffffffffffffffff821115612a2857612a27612ce7565b5b612a3182612d16565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a9782612bda565b9150612aa283612bda565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ad757612ad6612c89565b5b828201905092915050565b6000612aed82612bda565b9150612af883612bda565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b3157612b30612c89565b5b828202905092915050565b6000612b4782612bda565b9150612b5283612bda565b925082821015612b6557612b64612c89565b5b828203905092915050565b6000612b7b82612bba565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c11578082015181840152602081019050612bf6565b83811115612c20576000848401525b50505050565b60006002820490506001821680612c3e57607f821691505b60208210811415612c5257612c51612cb8565b5b50919050565b612c6182612d16565b810181811067ffffffffffffffff82111715612c8057612c7f612ce7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6e6f742075736572210000000000000000000000000000000000000000000000600082015250565b7f6e6f742073616c652074696d6521000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f616c726561647920737461727465642100000000000000000000000000000000600082015250565b7f696e76616c69642076616c756521000000000000000000000000000000000000600082015250565b7f5472616e736665723a204554485f5452414e534645525f4641494c4544000000600082015250565b7f4578636565642073616c6573206d6178206c696d697421000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c696420707269636521000000000000000000000000000000000000600082015250565b7f4d6178696d756d20636f756e7420657863656564656421000000000000000000600082015250565b612ef081612b70565b8114612efb57600080fd5b50565b612f0781612b82565b8114612f1257600080fd5b50565b612f1e81612b8e565b8114612f2957600080fd5b50565b612f3581612bda565b8114612f4057600080fd5b5056fea2646970667358221220613c0acec908c38d2cc6d4c67e915926af24fbf11190ddaf65d99829933dd20e64736f6c63430008040033
Deployed Bytecode Sourcemap
64800:2278:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65332:177;;;;;;;;;;;;;:::i;:::-;;18208:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65015:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19110:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25631:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25064:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65102:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65185:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14861:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65214:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29270:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65073:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64883:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32191:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66175:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66587:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20533:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16045:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63983:103;;;;;;;;;;;;;:::i;:::-;;65042:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63335:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66450:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19286:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65143:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64975:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65526:641;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26189:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32982:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19496:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26580:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64241:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65332:177;63221:13;:11;:13::i;:::-;65400:1:::1;65387:9;;:14;65379:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;65445:15;65433:9;:27;;;;65493:8;;65481:9;;:20;;;;:::i;:::-;65471:7;:30;;;;65332:177::o:0;18208:639::-;18293:4;18632:10;18617:25;;:11;:25;;;;:102;;;;18709:10;18694:25;;:11;:25;;;;18617:102;:179;;;;18786:10;18771:25;;:11;:25;;;;18617:179;18597:199;;18208:639;;;:::o;65015:20::-;;;;:::o;19110:100::-;19164:13;19197:5;19190:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19110:100;:::o;25631:218::-;25707:7;25732:16;25740:7;25732;:16::i;:::-;25727:64;;25757:34;;;;;;;;;;;;;;25727:64;25811:15;:24;25827:7;25811:24;;;;;;;;;;;:30;;;;;;;;;;;;25804:37;;25631:218;;;:::o;25064:408::-;25153:13;25169:16;25177:7;25169;:16::i;:::-;25153:32;;25225:5;25202:28;;:19;:17;:19::i;:::-;:28;;;25198:175;;25250:44;25267:5;25274:19;:17;:19::i;:::-;25250:16;:44::i;:::-;25245:128;;25322:35;;;;;;;;;;;;;;25245:128;25198:175;25418:2;25385:15;:24;25401:7;25385:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25456:7;25452:2;25436:28;;25445:5;25436:28;;;;;;;;;;;;25064:408;;;:::o;65102:34::-;;;;:::o;65185:22::-;;;;:::o;14861:323::-;14922:7;15150:15;:13;:15::i;:::-;15135:12;;15119:13;;:28;:46;15112:53;;14861:323;:::o;65214:39::-;;;;;;;;;;;;;;;;;:::o;29270:2825::-;29412:27;29442;29461:7;29442:18;:27::i;:::-;29412:57;;29527:4;29486:45;;29502:19;29486:45;;;29482:86;;29540:28;;;;;;;;;;;;;;29482:86;29582:27;29611:23;29638:35;29665:7;29638:26;:35::i;:::-;29581:92;;;;29773:68;29798:15;29815:4;29821:19;:17;:19::i;:::-;29773:24;:68::i;:::-;29768:180;;29861:43;29878:4;29884:19;:17;:19::i;:::-;29861:16;:43::i;:::-;29856:92;;29913:35;;;;;;;;;;;;;;29856:92;29768:180;29979:1;29965:16;;:2;:16;;;29961:52;;;29990:23;;;;;;;;;;;;;;29961:52;30026:43;30048:4;30054:2;30058:7;30067:1;30026:21;:43::i;:::-;30162:15;30159:2;;;30302:1;30281:19;30274:30;30159:2;30699:18;:24;30718:4;30699:24;;;;;;;;;;;;;;;;30697:26;;;;;;;;;;;;30768:18;:22;30787:2;30768:22;;;;;;;;;;;;;;;;30766:24;;;;;;;;;;;31090:146;31127:2;31176:45;31191:4;31197:2;31201:19;31176:14;:45::i;:::-;11260:8;31148:73;31090:18;:146::i;:::-;31061:17;:26;31079:7;31061:26;;;;;;;;;;;:175;;;;31407:1;11260:8;31356:19;:47;:52;31352:627;;;31429:19;31461:1;31451:7;:11;31429:33;;31618:1;31584:17;:30;31602:11;31584:30;;;;;;;;;;;;:35;31580:384;;;31722:13;;31707:11;:28;31703:242;;31902:19;31869:17;:30;31887:11;31869:30;;;;;;;;;;;:52;;;;31703:242;31580:384;31352:627;;32026:7;32022:2;32007:27;;32016:4;32007:27;;;;;;;;;;;;32045:42;32066:4;32072:2;32076:7;32085:1;32045:20;:42::i;:::-;29270:2825;;;;;;:::o;65073:22::-;;;;:::o;64883:40::-;64920:3;64883:40;:::o;32191:193::-;32337:39;32354:4;32360:2;32364:7;32337:39;;;;;;;;;;;;:16;:39::i;:::-;32191:193;;;:::o;66175:73::-;66225:15;66231:8;66225:5;:15::i;:::-;66175:73;:::o;66587:98::-;63221:13;:11;:13::i;:::-;66674:3:::1;;66658:13;:19;;;;;;;:::i;:::-;;66587:98:::0;;:::o;20533:152::-;20605:7;20648:27;20667:7;20648:18;:27::i;:::-;20625:52;;20533:152;;;:::o;16045:233::-;16117:7;16158:1;16141:19;;:5;:19;;;16137:60;;;16169:28;;;;;;;;;;;;;;16137:60;10204:13;16215:18;:25;16234:5;16215:25;;;;;;;;;;;;;;;;:55;16208:62;;16045:233;;;:::o;63983:103::-;63221:13;:11;:13::i;:::-;64048:30:::1;64075:1;64048:18;:30::i;:::-;63983:103::o:0;65042:24::-;;;;:::o;63335:87::-;63381:7;63408:6;;;;;;;;;;;63401:13;;63335:87;:::o;66450:129::-;63221:13;:11;:13::i;:::-;66527:1:::1;66519:5;;:9;66511:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;66565:6;66557:5;:14;;;;66450:129:::0;:::o;19286:104::-;19342:13;19375:7;19368:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19286:104;:::o;65143:27::-;;;;:::o;64975:33::-;;;;:::o;65526:641::-;67031:10;67018:23;;:9;:23;;;67010:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;65653:9:::1;;65636:15;:26;;:54;;;;;65683:7;;65666:15;:24;;65636:54;65628:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;65739:1;65729:7;:11;:58;;;;;65779:8;;65767:7;65744:8;:20;65753:10;65744:20;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;:43;;65729:58;65721:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;64920:3;65841:5;;65833:7;:13;;;;:::i;:::-;:27;;65825:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;65898:12;65921:7;65913:5;;:15;;;;:::i;:::-;65898:30;;65955:9;65947:4;:17;65939:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;65993:31;66006:7;:5;:7::i;:::-;66014:9;65993:12;:31::i;:::-;66051:7;66043:5;;:15;;;;:::i;:::-;66035:5;:23;;;;66115:7;66092:8;:20;66101:10;66092:20;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;66069:8;:20;66078:10;66069:20;;;;;;;;;;;;;;;:53;;;;66133:26;66139:10;66151:7;66133:5;:26::i;:::-;67066:1;65526:641:::0;:::o;26189:234::-;26336:8;26284:18;:39;26303:19;:17;:19::i;:::-;26284:39;;;;;;;;;;;;;;;:49;26324:8;26284:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26396:8;26360:55;;26375:19;:17;:19::i;:::-;26360:55;;;26406:8;26360:55;;;;;;:::i;:::-;;;;;;;;26189:234;;:::o;32982:407::-;33157:31;33170:4;33176:2;33180:7;33157:12;:31::i;:::-;33221:1;33203:2;:14;;;:19;33199:183;;33242:56;33273:4;33279:2;33283:7;33292:5;33242:30;:56::i;:::-;33237:145;;33326:40;;;;;;;;;;;;;;33237:145;33199:183;32982:407;;;;:::o;19496:348::-;19569:13;19600:16;19608:7;19600;:16::i;:::-;19595:59;;19625:29;;;;;;;;;;;;;;19595:59;19685:1;19675:7;:11;;;;:::i;:::-;19665:21;;19697;19721:10;:8;:10::i;:::-;19697:34;;19774:1;19755:7;19749:21;:26;;:87;;;;;;;;;;;;;;;;;19802:7;19811:18;19821:7;19811:9;:18::i;:::-;19785:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19749:87;19742:94;;;19496:348;;;:::o;26580:164::-;26677:4;26701:18;:25;26720:5;26701:25;;;;;;;;;;;;;;;:35;26727:8;26701:35;;;;;;;;;;;;;;;;;;;;;;;;;26694:42;;26580:164;;;;:::o;64241:201::-;63221:13;:11;:13::i;:::-;64350:1:::1;64330:22;;:8;:22;;;;64322:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;64406:28;64425:8;64406:18;:28::i;:::-;64241:201:::0;:::o;63500:132::-;63575:12;:10;:12::i;:::-;63564:23;;:7;:5;:7::i;:::-;:23;;;63556:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63500:132::o;27002:282::-;27067:4;27123:7;27104:15;:13;:15::i;:::-;:26;;:66;;;;;27157:13;;27147:7;:23;27104:66;:153;;;;;27256:1;10980:8;27208:17;:26;27226:7;27208:26;;;;;;;;;;;;:44;:49;27104:153;27084:173;;27002:282;;;:::o;49310:105::-;49370:7;49397:10;49390:17;;49310:105;:::o;66857:101::-;66922:7;66949:1;66942:8;;66857:101;:::o;21688:1275::-;21755:7;21775:12;21790:7;21775:22;;21858:4;21839:15;:13;:15::i;:::-;:23;21835:1061;;21892:13;;21885:4;:20;21881:1015;;;21930:14;21947:17;:23;21965:4;21947:23;;;;;;;;;;;;21930:40;;22064:1;10980:8;22036:6;:24;:29;22032:845;;;22701:113;22718:1;22708:6;:11;22701:113;;;22761:17;:25;22779:6;;;;;;;22761:25;;;;;;;;;;;;22752:34;;22701:113;;;22847:6;22840:13;;;;;;22032:845;21881:1015;;21835:1061;22924:31;;;;;;;;;;;;;;21688:1275;;;;:::o;28165:485::-;28267:27;28296:23;28337:38;28378:15;:24;28394:7;28378:24;;;;;;;;;;;28337:65;;28555:18;28532:41;;28612:19;28606:26;28587:45;;28517:126;;;;:::o;27393:659::-;27542:11;27707:16;27700:5;27696:28;27687:37;;27867:16;27856:9;27852:32;27839:45;;28017:15;28006:9;28003:30;27995:5;27984:9;27981:20;27978:56;27968:66;;27575:470;;;;;:::o;34051:159::-;;;;;:::o;48619:311::-;48754:7;48774:16;11384:3;48800:19;:41;;48774:68;;11384:3;48868:31;48879:4;48885:2;48889:9;48868:10;:31::i;:::-;48860:40;;:62;;48853:69;;;48619:311;;;;;:::o;23511:450::-;23591:14;23759:16;23752:5;23748:28;23739:37;;23936:5;23922:11;23897:23;23893:41;23890:52;23883:5;23880:63;23870:73;;23627:327;;;;:::o;34875:158::-;;;;;:::o;43521:89::-;43581:21;43587:7;43596:5;43581;:21::i;:::-;43521:89;:::o;64602:191::-;64676:16;64695:6;;;;;;;;;;;64676:25;;64721:8;64712:6;;:17;;;;;;;;;;;;;;;;;;64776:8;64745:40;;64766:8;64745:40;;;;;;;;;;;;64602:191;;:::o;66256:186::-;66323:12;66340:2;:7;;66354:5;66371:1;66361:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66340:34;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66322:52;;;66393:7;66385:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;66256:186;;;:::o;36651:2966::-;36724:20;36747:13;;36724:36;;36787:1;36775:8;:13;36771:44;;;36797:18;;;;;;;;;;;;;;36771:44;36828:61;36858:1;36862:2;36866:12;36880:8;36828:21;:61::i;:::-;37372:1;10342:2;37342:1;:26;;37341:32;37329:8;:45;37303:18;:22;37322:2;37303:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37651:139;37688:2;37742:33;37765:1;37769:2;37773:1;37742:14;:33::i;:::-;37709:30;37730:8;37709:20;:30::i;:::-;:66;37651:18;:139::i;:::-;37617:17;:31;37635:12;37617:31;;;;;;;;;;;:173;;;;37807:16;37838:11;37867:8;37852:12;:23;37838:37;;38388:16;38384:2;38380:25;38368:37;;38760:12;38720:8;38679:1;38617:25;38558:1;38497;38470:335;39131:1;39117:12;39113:20;39071:346;39172:3;39163:7;39160:16;39071:346;;39390:7;39380:8;39377:1;39350:25;39347:1;39344;39339:59;39225:1;39216:7;39212:15;39201:26;;39071:346;;;39075:77;39462:1;39450:8;:13;39446:45;;;39472:19;;;;;;;;;;;;;;39446:45;39524:3;39508:13;:19;;;;36651:2966;;39549:60;39578:1;39582:2;39586:12;39600:8;39549:20;:60::i;:::-;36651:2966;;;:::o;35473:716::-;35636:4;35682:2;35657:45;;;35703:19;:17;:19::i;:::-;35724:4;35730:7;35739:5;35657:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35653:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35957:1;35940:6;:13;:18;35936:235;;;35986:40;;;;;;;;;;;;;;35936:235;36129:6;36123:13;36114:6;36110:2;36106:15;36099:38;35653:529;35826:54;;;35816:64;;;:6;:64;;;;35809:71;;;35473:716;;;;;;:::o;66693:156::-;66790:13;66828;66821:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66693:156;:::o;49517:1745::-;49582:17;50016:4;50009;50003:11;49999:22;50108:1;50102:4;50095:15;50183:4;50180:1;50176:12;50169:19;;50265:1;50260:3;50253:14;50369:3;50608:5;50590:428;50616:1;50590:428;;;50656:1;50651:3;50647:11;50640:18;;50827:2;50821:4;50817:13;50813:2;50809:22;50804:3;50796:36;50921:2;50915:4;50911:13;50903:21;;50988:4;50978:2;;50996:5;;50978:2;50590:428;;;50594:21;51057:3;51052;51048:13;51172:4;51167:3;51163:14;51156:21;;51237:6;51232:3;51225:19;49621:1634;;;;;;:::o;60208:98::-;60261:7;60288:10;60281:17;;60208:98;:::o;48320:147::-;48457:6;48320:147;;;;;:::o;43839:3081::-;43919:27;43949;43968:7;43949:18;:27::i;:::-;43919:57;;43989:12;44020:19;43989:52;;44055:27;44084:23;44111:35;44138:7;44111:26;:35::i;:::-;44054:92;;;;44163:13;44159:316;;;44284:68;44309:15;44326:4;44332:19;:17;:19::i;:::-;44284:24;:68::i;:::-;44279:184;;44376:43;44393:4;44399:19;:17;:19::i;:::-;44376:16;:43::i;:::-;44371:92;;44428:35;;;;;;;;;;;;;;44371:92;44279:184;44159:316;44487:51;44509:4;44523:1;44527:7;44536:1;44487:21;:51::i;:::-;44631:15;44628:2;;;44771:1;44750:19;44743:30;44628:2;45449:1;10469:3;45419:1;:26;;45418:32;45390:18;:24;45409:4;45390:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;45717:176;45754:4;45825:53;45840:4;45854:1;45858:19;45825:14;:53::i;:::-;11260:8;10980;45778:43;45777:101;45717:18;:176::i;:::-;45688:17;:26;45706:7;45688:26;;;;;;;;;;;:205;;;;46064:1;11260:8;46013:19;:47;:52;46009:627;;;46086:19;46118:1;46108:7;:11;46086:33;;46275:1;46241:17;:30;46259:11;46241:30;;;;;;;;;;;;:35;46237:384;;;46379:13;;46364:11;:28;46360:242;;46559:19;46526:17;:30;46544:11;46526:30;;;;;;;;;;;:52;;;;46360:242;46237:384;46009:627;;46691:7;46687:1;46664:35;;46673:4;46664:35;;;;;;;;;;;;46710:50;46731:4;46745:1;46749:7;46758:1;46710:20;:50::i;:::-;46887:12;;:14;;;;;;;;;;;;;43839:3081;;;;;;:::o;24063:324::-;24133:14;24366:1;24356:8;24353:15;24327:24;24323:46;24313:56;;24235:145;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:133::-;544:5;582:6;569:20;560:29;;598:30;622:5;598:30;:::i;:::-;550:84;;;;:::o;640:137::-;685:5;723:6;710:20;701:29;;739:32;765:5;739:32;:::i;:::-;691:86;;;;:::o;783:141::-;839:5;870:6;864:13;855:22;;886:32;912:5;886:32;:::i;:::-;845:79;;;;:::o;943:271::-;998:5;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105:6;1092:20;1130:78;1204:3;1196:6;1189:4;1181:6;1177:17;1130:78;:::i;:::-;1121:87;;1004:210;;;;;:::o;1234:352::-;1292:8;1302:6;1352:3;1345:4;1337:6;1333:17;1329:27;1319:2;;1370:1;1367;1360:12;1319:2;1406:6;1393:20;1383:30;;1436:18;1428:6;1425:30;1422:2;;;1468:1;1465;1458:12;1422:2;1505:4;1497:6;1493:17;1481:29;;1559:3;1551:4;1543:6;1539:17;1529:8;1525:32;1522:41;1519:2;;;1576:1;1573;1566:12;1519:2;1309:277;;;;;:::o;1592:139::-;1638:5;1676:6;1663:20;1654:29;;1692:33;1719:5;1692:33;:::i;:::-;1644:87;;;;:::o;1737:262::-;1796:6;1845:2;1833:9;1824:7;1820:23;1816:32;1813:2;;;1861:1;1858;1851:12;1813:2;1904:1;1929:53;1974:7;1965:6;1954:9;1950:22;1929:53;:::i;:::-;1919:63;;1875:117;1803:196;;;;:::o;2005:407::-;2073:6;2081;2130:2;2118:9;2109:7;2105:23;2101:32;2098:2;;;2146:1;2143;2136:12;2098:2;2189:1;2214:53;2259:7;2250:6;2239:9;2235:22;2214:53;:::i;:::-;2204:63;;2160:117;2316:2;2342:53;2387:7;2378:6;2367:9;2363:22;2342:53;:::i;:::-;2332:63;;2287:118;2088:324;;;;;:::o;2418:552::-;2495:6;2503;2511;2560:2;2548:9;2539:7;2535:23;2531:32;2528:2;;;2576:1;2573;2566:12;2528:2;2619:1;2644:53;2689:7;2680:6;2669:9;2665:22;2644:53;:::i;:::-;2634:63;;2590:117;2746:2;2772:53;2817:7;2808:6;2797:9;2793:22;2772:53;:::i;:::-;2762:63;;2717:118;2874:2;2900:53;2945:7;2936:6;2925:9;2921:22;2900:53;:::i;:::-;2890:63;;2845:118;2518:452;;;;;:::o;2976:809::-;3071:6;3079;3087;3095;3144:3;3132:9;3123:7;3119:23;3115:33;3112:2;;;3161:1;3158;3151:12;3112:2;3204:1;3229:53;3274:7;3265:6;3254:9;3250:22;3229:53;:::i;:::-;3219:63;;3175:117;3331:2;3357:53;3402:7;3393:6;3382:9;3378:22;3357:53;:::i;:::-;3347:63;;3302:118;3459:2;3485:53;3530:7;3521:6;3510:9;3506:22;3485:53;:::i;:::-;3475:63;;3430:118;3615:2;3604:9;3600:18;3587:32;3646:18;3638:6;3635:30;3632:2;;;3678:1;3675;3668:12;3632:2;3706:62;3760:7;3751:6;3740:9;3736:22;3706:62;:::i;:::-;3696:72;;3558:220;3102:683;;;;;;;:::o;3791:401::-;3856:6;3864;3913:2;3901:9;3892:7;3888:23;3884:32;3881:2;;;3929:1;3926;3919:12;3881:2;3972:1;3997:53;4042:7;4033:6;4022:9;4018:22;3997:53;:::i;:::-;3987:63;;3943:117;4099:2;4125:50;4167:7;4158:6;4147:9;4143:22;4125:50;:::i;:::-;4115:60;;4070:115;3871:321;;;;;:::o;4198:407::-;4266:6;4274;4323:2;4311:9;4302:7;4298:23;4294:32;4291:2;;;4339:1;4336;4329:12;4291:2;4382:1;4407:53;4452:7;4443:6;4432:9;4428:22;4407:53;:::i;:::-;4397:63;;4353:117;4509:2;4535:53;4580:7;4571:6;4560:9;4556:22;4535:53;:::i;:::-;4525:63;;4480:118;4281:324;;;;;:::o;4611:260::-;4669:6;4718:2;4706:9;4697:7;4693:23;4689:32;4686:2;;;4734:1;4731;4724:12;4686:2;4777:1;4802:52;4846:7;4837:6;4826:9;4822:22;4802:52;:::i;:::-;4792:62;;4748:116;4676:195;;;;:::o;4877:282::-;4946:6;4995:2;4983:9;4974:7;4970:23;4966:32;4963:2;;;5011:1;5008;5001:12;4963:2;5054:1;5079:63;5134:7;5125:6;5114:9;5110:22;5079:63;:::i;:::-;5069:73;;5025:127;4953:206;;;;:::o;5165:395::-;5236:6;5244;5293:2;5281:9;5272:7;5268:23;5264:32;5261:2;;;5309:1;5306;5299:12;5261:2;5380:1;5369:9;5365:17;5352:31;5410:18;5402:6;5399:30;5396:2;;;5442:1;5439;5432:12;5396:2;5478:65;5535:7;5526:6;5515:9;5511:22;5478:65;:::i;:::-;5460:83;;;;5323:230;5251:309;;;;;:::o;5566:262::-;5625:6;5674:2;5662:9;5653:7;5649:23;5645:32;5642:2;;;5690:1;5687;5680:12;5642:2;5733:1;5758:53;5803:7;5794:6;5783:9;5779:22;5758:53;:::i;:::-;5748:63;;5704:117;5632:196;;;;:::o;5834:118::-;5921:24;5939:5;5921:24;:::i;:::-;5916:3;5909:37;5899:53;;:::o;5958:109::-;6039:21;6054:5;6039:21;:::i;:::-;6034:3;6027:34;6017:50;;:::o;6073:360::-;6159:3;6187:38;6219:5;6187:38;:::i;:::-;6241:70;6304:6;6299:3;6241:70;:::i;:::-;6234:77;;6320:52;6365:6;6360:3;6353:4;6346:5;6342:16;6320:52;:::i;:::-;6397:29;6419:6;6397:29;:::i;:::-;6392:3;6388:39;6381:46;;6163:270;;;;;:::o;6439:373::-;6543:3;6571:38;6603:5;6571:38;:::i;:::-;6625:88;6706:6;6701:3;6625:88;:::i;:::-;6618:95;;6722:52;6767:6;6762:3;6755:4;6748:5;6744:16;6722:52;:::i;:::-;6799:6;6794:3;6790:16;6783:23;;6547:265;;;;;:::o;6818:364::-;6906:3;6934:39;6967:5;6934:39;:::i;:::-;6989:71;7053:6;7048:3;6989:71;:::i;:::-;6982:78;;7069:52;7114:6;7109:3;7102:4;7095:5;7091:16;7069:52;:::i;:::-;7146:29;7168:6;7146:29;:::i;:::-;7141:3;7137:39;7130:46;;6910:272;;;;;:::o;7188:377::-;7294:3;7322:39;7355:5;7322:39;:::i;:::-;7377:89;7459:6;7454:3;7377:89;:::i;:::-;7370:96;;7475:52;7520:6;7515:3;7508:4;7501:5;7497:16;7475:52;:::i;:::-;7552:6;7547:3;7543:16;7536:23;;7298:267;;;;;:::o;7571:365::-;7713:3;7734:66;7798:1;7793:3;7734:66;:::i;:::-;7727:73;;7809:93;7898:3;7809:93;:::i;:::-;7927:2;7922:3;7918:12;7911:19;;7717:219;;;:::o;7942:366::-;8084:3;8105:67;8169:2;8164:3;8105:67;:::i;:::-;8098:74;;8181:93;8270:3;8181:93;:::i;:::-;8299:2;8294:3;8290:12;8283:19;;8088:220;;;:::o;8314:366::-;8456:3;8477:67;8541:2;8536:3;8477:67;:::i;:::-;8470:74;;8553:93;8642:3;8553:93;:::i;:::-;8671:2;8666:3;8662:12;8655:19;;8460:220;;;:::o;8686:366::-;8828:3;8849:67;8913:2;8908:3;8849:67;:::i;:::-;8842:74;;8925:93;9014:3;8925:93;:::i;:::-;9043:2;9038:3;9034:12;9027:19;;8832:220;;;:::o;9058:366::-;9200:3;9221:67;9285:2;9280:3;9221:67;:::i;:::-;9214:74;;9297:93;9386:3;9297:93;:::i;:::-;9415:2;9410:3;9406:12;9399:19;;9204:220;;;:::o;9430:366::-;9572:3;9593:67;9657:2;9652:3;9593:67;:::i;:::-;9586:74;;9669:93;9758:3;9669:93;:::i;:::-;9787:2;9782:3;9778:12;9771:19;;9576:220;;;:::o;9802:366::-;9944:3;9965:67;10029:2;10024:3;9965:67;:::i;:::-;9958:74;;10041:93;10130:3;10041:93;:::i;:::-;10159:2;10154:3;10150:12;10143:19;;9948:220;;;:::o;10174:366::-;10316:3;10337:67;10401:2;10396:3;10337:67;:::i;:::-;10330:74;;10413:93;10502:3;10413:93;:::i;:::-;10531:2;10526:3;10522:12;10515:19;;10320:220;;;:::o;10546:366::-;10688:3;10709:67;10773:2;10768:3;10709:67;:::i;:::-;10702:74;;10785:93;10874:3;10785:93;:::i;:::-;10903:2;10898:3;10894:12;10887:19;;10692:220;;;:::o;10918:366::-;11060:3;11081:67;11145:2;11140:3;11081:67;:::i;:::-;11074:74;;11157:93;11246:3;11157:93;:::i;:::-;11275:2;11270:3;11266:12;11259:19;;11064:220;;;:::o;11290:118::-;11377:24;11395:5;11377:24;:::i;:::-;11372:3;11365:37;11355:53;;:::o;11414:271::-;11544:3;11566:93;11655:3;11646:6;11566:93;:::i;:::-;11559:100;;11676:3;11669:10;;11548:137;;;;:::o;11691:435::-;11871:3;11893:95;11984:3;11975:6;11893:95;:::i;:::-;11886:102;;12005:95;12096:3;12087:6;12005:95;:::i;:::-;11998:102;;12117:3;12110:10;;11875:251;;;;;:::o;12132:222::-;12225:4;12263:2;12252:9;12248:18;12240:26;;12276:71;12344:1;12333:9;12329:17;12320:6;12276:71;:::i;:::-;12230:124;;;;:::o;12360:640::-;12555:4;12593:3;12582:9;12578:19;12570:27;;12607:71;12675:1;12664:9;12660:17;12651:6;12607:71;:::i;:::-;12688:72;12756:2;12745:9;12741:18;12732:6;12688:72;:::i;:::-;12770;12838:2;12827:9;12823:18;12814:6;12770:72;:::i;:::-;12889:9;12883:4;12879:20;12874:2;12863:9;12859:18;12852:48;12917:76;12988:4;12979:6;12917:76;:::i;:::-;12909:84;;12560:440;;;;;;;:::o;13006:210::-;13093:4;13131:2;13120:9;13116:18;13108:26;;13144:65;13206:1;13195:9;13191:17;13182:6;13144:65;:::i;:::-;13098:118;;;;:::o;13222:313::-;13335:4;13373:2;13362:9;13358:18;13350:26;;13422:9;13416:4;13412:20;13408:1;13397:9;13393:17;13386:47;13450:78;13523:4;13514:6;13450:78;:::i;:::-;13442:86;;13340:195;;;;:::o;13541:419::-;13707:4;13745:2;13734:9;13730:18;13722:26;;13794:9;13788:4;13784:20;13780:1;13769:9;13765:17;13758:47;13822:131;13948:4;13822:131;:::i;:::-;13814:139;;13712:248;;;:::o;13966:419::-;14132:4;14170:2;14159:9;14155:18;14147:26;;14219:9;14213:4;14209:20;14205:1;14194:9;14190:17;14183:47;14247:131;14373:4;14247:131;:::i;:::-;14239:139;;14137:248;;;:::o;14391:419::-;14557:4;14595:2;14584:9;14580:18;14572:26;;14644:9;14638:4;14634:20;14630:1;14619:9;14615:17;14608:47;14672:131;14798:4;14672:131;:::i;:::-;14664:139;;14562:248;;;:::o;14816:419::-;14982:4;15020:2;15009:9;15005:18;14997:26;;15069:9;15063:4;15059:20;15055:1;15044:9;15040:17;15033:47;15097:131;15223:4;15097:131;:::i;:::-;15089:139;;14987:248;;;:::o;15241:419::-;15407:4;15445:2;15434:9;15430:18;15422:26;;15494:9;15488:4;15484:20;15480:1;15469:9;15465:17;15458:47;15522:131;15648:4;15522:131;:::i;:::-;15514:139;;15412:248;;;:::o;15666:419::-;15832:4;15870:2;15859:9;15855:18;15847:26;;15919:9;15913:4;15909:20;15905:1;15894:9;15890:17;15883:47;15947:131;16073:4;15947:131;:::i;:::-;15939:139;;15837:248;;;:::o;16091:419::-;16257:4;16295:2;16284:9;16280:18;16272:26;;16344:9;16338:4;16334:20;16330:1;16319:9;16315:17;16308:47;16372:131;16498:4;16372:131;:::i;:::-;16364:139;;16262:248;;;:::o;16516:419::-;16682:4;16720:2;16709:9;16705:18;16697:26;;16769:9;16763:4;16759:20;16755:1;16744:9;16740:17;16733:47;16797:131;16923:4;16797:131;:::i;:::-;16789:139;;16687:248;;;:::o;16941:419::-;17107:4;17145:2;17134:9;17130:18;17122:26;;17194:9;17188:4;17184:20;17180:1;17169:9;17165:17;17158:47;17222:131;17348:4;17222:131;:::i;:::-;17214:139;;17112:248;;;:::o;17366:419::-;17532:4;17570:2;17559:9;17555:18;17547:26;;17619:9;17613:4;17609:20;17605:1;17594:9;17590:17;17583:47;17647:131;17773:4;17647:131;:::i;:::-;17639:139;;17537:248;;;:::o;17791:222::-;17884:4;17922:2;17911:9;17907:18;17899:26;;17935:71;18003:1;17992:9;17988:17;17979:6;17935:71;:::i;:::-;17889:124;;;;:::o;18019:129::-;18053:6;18080:20;;:::i;:::-;18070:30;;18109:33;18137:4;18129:6;18109:33;:::i;:::-;18060:88;;;:::o;18154:75::-;18187:6;18220:2;18214:9;18204:19;;18194:35;:::o;18235:307::-;18296:4;18386:18;18378:6;18375:30;18372:2;;;18408:18;;:::i;:::-;18372:2;18446:29;18468:6;18446:29;:::i;:::-;18438:37;;18530:4;18524;18520:15;18512:23;;18301:241;;;:::o;18548:98::-;18599:6;18633:5;18627:12;18617:22;;18606:40;;;:::o;18652:99::-;18704:6;18738:5;18732:12;18722:22;;18711:40;;;:::o;18757:168::-;18840:11;18874:6;18869:3;18862:19;18914:4;18909:3;18905:14;18890:29;;18852:73;;;;:::o;18931:147::-;19032:11;19069:3;19054:18;;19044:34;;;;:::o;19084:169::-;19168:11;19202:6;19197:3;19190:19;19242:4;19237:3;19233:14;19218:29;;19180:73;;;;:::o;19259:148::-;19361:11;19398:3;19383:18;;19373:34;;;;:::o;19413:305::-;19453:3;19472:20;19490:1;19472:20;:::i;:::-;19467:25;;19506:20;19524:1;19506:20;:::i;:::-;19501:25;;19660:1;19592:66;19588:74;19585:1;19582:81;19579:2;;;19666:18;;:::i;:::-;19579:2;19710:1;19707;19703:9;19696:16;;19457:261;;;;:::o;19724:348::-;19764:7;19787:20;19805:1;19787:20;:::i;:::-;19782:25;;19821:20;19839:1;19821:20;:::i;:::-;19816:25;;20009:1;19941:66;19937:74;19934:1;19931:81;19926:1;19919:9;19912:17;19908:105;19905:2;;;20016:18;;:::i;:::-;19905:2;20064:1;20061;20057:9;20046:20;;19772:300;;;;:::o;20078:191::-;20118:4;20138:20;20156:1;20138:20;:::i;:::-;20133:25;;20172:20;20190:1;20172:20;:::i;:::-;20167:25;;20211:1;20208;20205:8;20202:2;;;20216:18;;:::i;:::-;20202:2;20261:1;20258;20254:9;20246:17;;20123:146;;;;:::o;20275:96::-;20312:7;20341:24;20359:5;20341:24;:::i;:::-;20330:35;;20320:51;;;:::o;20377:90::-;20411:7;20454:5;20447:13;20440:21;20429:32;;20419:48;;;:::o;20473:149::-;20509:7;20549:66;20542:5;20538:78;20527:89;;20517:105;;;:::o;20628:126::-;20665:7;20705:42;20698:5;20694:54;20683:65;;20673:81;;;:::o;20760:77::-;20797:7;20826:5;20815:16;;20805:32;;;:::o;20843:154::-;20927:6;20922:3;20917;20904:30;20989:1;20980:6;20975:3;20971:16;20964:27;20894:103;;;:::o;21003:307::-;21071:1;21081:113;21095:6;21092:1;21089:13;21081:113;;;21180:1;21175:3;21171:11;21165:18;21161:1;21156:3;21152:11;21145:39;21117:2;21114:1;21110:10;21105:15;;21081:113;;;21212:6;21209:1;21206:13;21203:2;;;21292:1;21283:6;21278:3;21274:16;21267:27;21203:2;21052:258;;;;:::o;21316:320::-;21360:6;21397:1;21391:4;21387:12;21377:22;;21444:1;21438:4;21434:12;21465:18;21455:2;;21521:4;21513:6;21509:17;21499:27;;21455:2;21583;21575:6;21572:14;21552:18;21549:38;21546:2;;;21602:18;;:::i;:::-;21546:2;21367:269;;;;:::o;21642:281::-;21725:27;21747:4;21725:27;:::i;:::-;21717:6;21713:40;21855:6;21843:10;21840:22;21819:18;21807:10;21804:34;21801:62;21798:2;;;21866:18;;:::i;:::-;21798:2;21906:10;21902:2;21895:22;21685:238;;;:::o;21929:180::-;21977:77;21974:1;21967:88;22074:4;22071:1;22064:15;22098:4;22095:1;22088:15;22115:180;22163:77;22160:1;22153:88;22260:4;22257:1;22250:15;22284:4;22281:1;22274:15;22301:180;22349:77;22346:1;22339:88;22446:4;22443:1;22436:15;22470:4;22467:1;22460:15;22487:102;22528:6;22579:2;22575:7;22570:2;22563:5;22559:14;22555:28;22545:38;;22535:54;;;:::o;22595:159::-;22735:11;22731:1;22723:6;22719:14;22712:35;22701:53;:::o;22760:164::-;22900:16;22896:1;22888:6;22884:14;22877:40;22866:58;:::o;22930:225::-;23070:34;23066:1;23058:6;23054:14;23047:58;23139:8;23134:2;23126:6;23122:15;23115:33;23036:119;:::o;23161:166::-;23301:18;23297:1;23289:6;23285:14;23278:42;23267:60;:::o;23333:164::-;23473:16;23469:1;23461:6;23457:14;23450:40;23439:58;:::o;23503:179::-;23643:31;23639:1;23631:6;23627:14;23620:55;23609:73;:::o;23688:173::-;23828:25;23824:1;23816:6;23812:14;23805:49;23794:67;:::o;23867:182::-;24007:34;24003:1;23995:6;23991:14;23984:58;23973:76;:::o;24055:164::-;24195:16;24191:1;24183:6;24179:14;24172:40;24161:58;:::o;24225:173::-;24365:25;24361:1;24353:6;24349:14;24342:49;24331:67;:::o;24404:122::-;24477:24;24495:5;24477:24;:::i;:::-;24470:5;24467:35;24457:2;;24516:1;24513;24506:12;24457:2;24447:79;:::o;24532:116::-;24602:21;24617:5;24602:21;:::i;:::-;24595:5;24592:32;24582:2;;24638:1;24635;24628:12;24582:2;24572:76;:::o;24654:120::-;24726:23;24743:5;24726:23;:::i;:::-;24719:5;24716:34;24706:2;;24764:1;24761;24754:12;24706:2;24696:78;:::o;24780:122::-;24853:24;24871:5;24853:24;:::i;:::-;24846:5;24843:35;24833:2;;24892:1;24889;24882:12;24833:2;24823:79;:::o
Swarm Source
ipfs://613c0acec908c38d2cc6d4c67e915926af24fbf11190ddaf65d99829933dd20e
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.