ERC-721
Overview
Max Total Supply
998 PKA
Holders
111
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
8 PKALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PixelKnightAdventures
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-25 */ /* Pixel Knight Adventures is an NFT project that centers around a pixel-based game. Players can purchase, sell, and battle with their Pixel Knight NFTs. They can customize their Pixel Knight by equipping it with accessories and gear to make it one-of-a-kind. They can also join tournaments and compete with other players to win rewards. A leaderboard system is included, allowing players to try to reach higher rankings and gain more prizes. Twitter : https://twitter.com/PixelKnight_NFT Supply : 999 Max Mint Per Tx: 4 Price : 0.0042 Ether ------------------------------------------------------- */ // 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); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: new2.sol library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } pragma solidity ^0.8.14; contract PixelKnightAdventures is Ownable,ERC721A{ using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string public uriPrefix = "ipfs://QmWotrCcXryVtAjUs2b3o8EGp8G5WWLwURJKEUytBYvB1Y/"; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public cost = 0.0042 ether; uint256 public maxSupply = 999; uint256 public maxMintAmountPerTx = 4; bool public paused = false; bool public revealed = true; constructor() ERC721A("Pixel Knight Adventures", "PKA") { } function mintKnights(uint256 Amount) external payable mintCompliance(Amount) { require(!paused, "The contract is paused!"); require(totalSupply()+Amount <maxSupply,"this would Oversell"); require(msg.value >= cost * Amount, "Insufficient funds!"); _safeMint(msg.sender, Amount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function Stake() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
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":"Stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"Amount","type":"uint256"}],"name":"mintKnights","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052604051806060016040528060368152602001620037cc60369139600a9080519060200190620000359291906200028b565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000839291906200028b565b50660eebe0b40e8000600d556103e7600e556004600f556000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550348015620000dd57600080fd5b506040518060400160405280601781526020017f506978656c204b6e6967687420416476656e74757265730000000000000000008152506040518060400160405280600381526020017f504b4100000000000000000000000000000000000000000000000000000000008152506200016a6200015e620001ba60201b60201c565b620001c260201b60201c565b8160039080519060200190620001829291906200028b565b5080600490805190602001906200019b9291906200028b565b50620001ac6200028660201b60201c565b60018190555050506200039f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b82805462000299906200036a565b90600052602060002090601f016020900481019282620002bd576000855562000309565b82601f10620002d857805160ff191683800117855562000309565b8280016001018555821562000309579182015b8281111562000308578251825591602001919060010190620002eb565b5b5090506200031891906200031c565b5090565b5b80821115620003375760008160009055506001016200031d565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200038357607f821691505b6020821081036200039957620003986200033b565b5b50919050565b61341d80620003af6000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb01146106aa578063de20bc92146106d5578063e985e9c5146106ec578063efbd73f414610729578063f2fde38b14610752576101ee565b8063a45ba8e7146105fd578063b071401b14610628578063b88d4fde14610651578063c87b56dd1461066d576101ee565b80638da5cb5b116100dc5780638da5cb5b1461055357806394354fd01461057e57806395d89b41146105a9578063a22cb465146105d4576101ee565b80636352211e1461049957806370a08231146104d6578063715018a6146105135780637ec4a6591461052a576101ee565b806323b872dd11610185578063518302271161015457806351830227146103ed5780635503a0e8146104185780635c975abb1461044357806362b99ad41461046e576101ee565b806323b872dd1461035c5780632fd94ecb1461037857806342842e0e14610394578063438b6300146103b0576101ee565b806313faede6116101c157806313faede6146102b457806316ba10e0146102df57806316c38b3c1461030857806318160ddd14610331576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061249e565b61077b565b60405161022791906124e6565b60405180910390f35b34801561023c57600080fd5b5061024561080d565b604051610252919061259a565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906125f2565b61089f565b60405161028f9190612660565b60405180910390f35b6102b260048036038101906102ad91906126a7565b61091e565b005b3480156102c057600080fd5b506102c9610a62565b6040516102d691906126f6565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612846565b610a68565b005b34801561031457600080fd5b5061032f600480360381019061032a91906128bb565b610a8a565b005b34801561033d57600080fd5b50610346610aaf565b60405161035391906126f6565b60405180910390f35b610376600480360381019061037191906128e8565b610ac6565b005b610392600480360381019061038d91906125f2565b610de8565b005b6103ae60048036038101906103a991906128e8565b610f97565b005b3480156103bc57600080fd5b506103d760048036038101906103d2919061293b565b610fb7565b6040516103e49190612a26565b60405180910390f35b3480156103f957600080fd5b506104026110c1565b60405161040f91906124e6565b60405180910390f35b34801561042457600080fd5b5061042d6110d4565b60405161043a919061259a565b60405180910390f35b34801561044f57600080fd5b50610458611162565b60405161046591906124e6565b60405180910390f35b34801561047a57600080fd5b50610483611175565b604051610490919061259a565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb91906125f2565b611203565b6040516104cd9190612660565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f8919061293b565b611215565b60405161050a91906126f6565b60405180910390f35b34801561051f57600080fd5b506105286112cd565b005b34801561053657600080fd5b50610551600480360381019061054c9190612846565b6112e1565b005b34801561055f57600080fd5b50610568611303565b6040516105759190612660565b60405180910390f35b34801561058a57600080fd5b5061059361132c565b6040516105a091906126f6565b60405180910390f35b3480156105b557600080fd5b506105be611332565b6040516105cb919061259a565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f69190612a48565b6113c4565b005b34801561060957600080fd5b506106126114cf565b60405161061f919061259a565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a91906125f2565b61155d565b005b61066b60048036038101906106669190612b29565b61156f565b005b34801561067957600080fd5b50610694600480360381019061068f91906125f2565b6115e2565b6040516106a1919061259a565b60405180910390f35b3480156106b657600080fd5b506106bf61173a565b6040516106cc91906126f6565b60405180910390f35b3480156106e157600080fd5b506106ea611740565b005b3480156106f857600080fd5b50610713600480360381019061070e9190612bac565b6117c8565b60405161072091906124e6565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612bec565b61185c565b005b34801561075e57600080fd5b506107796004803603810190610774919061293b565b61191e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108065750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461081c90612c5b565b80601f016020809104026020016040519081016040528092919081815260200182805461084890612c5b565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b60006108aa826119a1565b6108e0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092982611203565b90508073ffffffffffffffffffffffffffffffffffffffff1661094a611a00565b73ffffffffffffffffffffffffffffffffffffffff16146109ad5761097681610971611a00565b6117c8565b6109ac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610a70611a08565b80600b9080519060200190610a8692919061238f565b5050565b610a92611a08565b80601060006101000a81548160ff02191690831515021790555050565b6000610ab9611a86565b6002546001540303905090565b6000610ad182611a8b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b38576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b4484611b57565b91509150610b5a8187610b55611a00565b611b7e565b610ba657610b6f86610b6a611a00565b6117c8565b610ba5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c0c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c198686866001611bc2565b8015610c2457600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cf285610cce888887611bc8565b7c020000000000000000000000000000000000000000000000000000000017611bf0565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d785760006001850190506000600560008381526020019081526020016000205403610d76576001548114610d75578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610de08686866001611c1b565b505050505050565b80600081118015610dfb5750600f548111155b610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190612cd8565b60405180910390fd5b600e5481610e486009611c21565b610e529190612d27565b1115610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90612dc9565b60405180910390fd5b601060009054906101000a900460ff1615610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90612e35565b60405180910390fd5b600e5482610eef610aaf565b610ef99190612d27565b10610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090612ea1565b60405180910390fd5b81600d54610f479190612ec1565b341015610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090612f67565b60405180910390fd5b610f933383611c2f565b5050565b610fb28383836040518060200160405280600081525061156f565b505050565b60606000610fc483611215565b905060008167ffffffffffffffff811115610fe257610fe161271b565b5b6040519080825280602002602001820160405280156110105781602001602082028036833780820191505090505b50905060006001905060005b838110801561102d5750600e548211155b156110b557600061103d83611203565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110a1578284838151811061108657611085612f87565b5b602002602001018181525050818061109d90612fb6565b9250505b82806110ac90612fb6565b9350505061101c565b82945050505050919050565b601060019054906101000a900460ff1681565b600b80546110e190612c5b565b80601f016020809104026020016040519081016040528092919081815260200182805461110d90612c5b565b801561115a5780601f1061112f5761010080835404028352916020019161115a565b820191906000526020600020905b81548152906001019060200180831161113d57829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a805461118290612c5b565b80601f01602080910402602001604051908101604052809291908181526020018280546111ae90612c5b565b80156111fb5780601f106111d0576101008083540402835291602001916111fb565b820191906000526020600020905b8154815290600101906020018083116111de57829003601f168201915b505050505081565b600061120e82611a8b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361127c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112d5611a08565b6112df6000611c4d565b565b6112e9611a08565b80600a90805190602001906112ff92919061238f565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606004805461134190612c5b565b80601f016020809104026020016040519081016040528092919081815260200182805461136d90612c5b565b80156113ba5780601f1061138f576101008083540402835291602001916113ba565b820191906000526020600020905b81548152906001019060200180831161139d57829003601f168201915b5050505050905090565b80600860006113d1611a00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661147e611a00565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114c391906124e6565b60405180910390a35050565b600c80546114dc90612c5b565b80601f016020809104026020016040519081016040528092919081815260200182805461150890612c5b565b80156115555780601f1061152a57610100808354040283529160200191611555565b820191906000526020600020905b81548152906001019060200180831161153857829003601f168201915b505050505081565b611565611a08565b80600f8190555050565b61157a848484610ac6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115dc576115a584848484611d11565b6115db576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115ed826119a1565b61162c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162390613070565b60405180910390fd5b60001515601060019054906101000a900460ff161515036116d957600c805461165490612c5b565b80601f016020809104026020016040519081016040528092919081815260200182805461168090612c5b565b80156116cd5780601f106116a2576101008083540402835291602001916116cd565b820191906000526020600020905b8154815290600101906020018083116116b057829003601f168201915b50505050509050611735565b60006116e3611e61565b905060008151116117035760405180602001604052806000815250611731565b8061170d84611ef3565b600b60405160200161172193929190613160565b6040516020818303038152906040525b9150505b919050565b600e5481565b611748611a08565b6000611752611303565b73ffffffffffffffffffffffffffffffffffffffff1647604051611775906131c2565b60006040518083038185875af1925050503d80600081146117b2576040519150601f19603f3d011682016040523d82523d6000602084013e6117b7565b606091505b50509050806117c557600080fd5b50565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561186f5750600f548111155b6118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a590612cd8565b60405180910390fd5b600e54816118bc6009611c21565b6118c69190612d27565b1115611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe90612dc9565b60405180910390fd5b61190f611a08565b6119198284611c2f565b505050565b611926611a08565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90613249565b60405180910390fd5b61199e81611c4d565b50565b6000816119ac611a86565b111580156119bb575060015482105b80156119f9575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611a10611fc1565b73ffffffffffffffffffffffffffffffffffffffff16611a2e611303565b73ffffffffffffffffffffffffffffffffffffffff1614611a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7b906132b5565b60405180910390fd5b565b600090565b60008082905080611a9a611a86565b11611b2057600154811015611b1f5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b1d575b60008103611b13576005600083600190039350838152602001908152602001600020549050611ae9565b8092505050611b52565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bdf868684611fc9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600081600001549050919050565b611c49828260405180602001604052806000815250611fd2565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d37611a00565b8786866040518563ffffffff1660e01b8152600401611d59949392919061332a565b6020604051808303816000875af1925050508015611d9557506040513d601f19601f82011682018060405250810190611d92919061338b565b60015b611e0e573d8060008114611dc5576040519150601f19603f3d011682016040523d82523d6000602084013e611dca565b606091505b506000815103611e06576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611e7090612c5b565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9c90612c5b565b8015611ee95780601f10611ebe57610100808354040283529160200191611ee9565b820191906000526020600020905b815481529060010190602001808311611ecc57829003601f168201915b5050505050905090565b606060006001611f0284612070565b01905060008167ffffffffffffffff811115611f2157611f2061271b565b5b6040519080825280601f01601f191660200182016040528015611f535781602001600182028036833780820191505090505b509050600082602001820190505b600115611fb6578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611faa57611fa96133b8565b5b04945060008503611f61575b819350505050919050565b600033905090565b60009392505050565b611fdc83836121c3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461206b5760006001549050600083820390505b61201d6000868380600101945086611d11565b612053576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061200a57816001541461206857600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120ce577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120c4576120c36133b8565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061210b576d04ee2d6d415b85acef81000000008381612101576121006133b8565b5b0492506020810190505b662386f26fc10000831061213a57662386f26fc1000083816121305761212f6133b8565b5b0492506010810190505b6305f5e1008310612163576305f5e1008381612159576121586133b8565b5b0492506008810190505b612710831061218857612710838161217e5761217d6133b8565b5b0492506004810190505b606483106121ab57606483816121a1576121a06133b8565b5b0492506002810190505b600a83106121ba576001810190505b80915050919050565b6000600154905060008203612204576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122116000848385611bc2565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612288836122796000866000611bc8565b6122828561237f565b17611bf0565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461232957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122ee565b5060008203612364576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061237a6000848385611c1b565b505050565b60006001821460e11b9050919050565b82805461239b90612c5b565b90600052602060002090601f0160209004810192826123bd5760008555612404565b82601f106123d657805160ff1916838001178555612404565b82800160010185558215612404579182015b828111156124035782518255916020019190600101906123e8565b5b5090506124119190612415565b5090565b5b8082111561242e576000816000905550600101612416565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61247b81612446565b811461248657600080fd5b50565b60008135905061249881612472565b92915050565b6000602082840312156124b4576124b361243c565b5b60006124c284828501612489565b91505092915050565b60008115159050919050565b6124e0816124cb565b82525050565b60006020820190506124fb60008301846124d7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561253b578082015181840152602081019050612520565b8381111561254a576000848401525b50505050565b6000601f19601f8301169050919050565b600061256c82612501565b612576818561250c565b935061258681856020860161251d565b61258f81612550565b840191505092915050565b600060208201905081810360008301526125b48184612561565b905092915050565b6000819050919050565b6125cf816125bc565b81146125da57600080fd5b50565b6000813590506125ec816125c6565b92915050565b6000602082840312156126085761260761243c565b5b6000612616848285016125dd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061264a8261261f565b9050919050565b61265a8161263f565b82525050565b60006020820190506126756000830184612651565b92915050565b6126848161263f565b811461268f57600080fd5b50565b6000813590506126a18161267b565b92915050565b600080604083850312156126be576126bd61243c565b5b60006126cc85828601612692565b92505060206126dd858286016125dd565b9150509250929050565b6126f0816125bc565b82525050565b600060208201905061270b60008301846126e7565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61275382612550565b810181811067ffffffffffffffff821117156127725761277161271b565b5b80604052505050565b6000612785612432565b9050612791828261274a565b919050565b600067ffffffffffffffff8211156127b1576127b061271b565b5b6127ba82612550565b9050602081019050919050565b82818337600083830152505050565b60006127e96127e484612796565b61277b565b90508281526020810184848401111561280557612804612716565b5b6128108482856127c7565b509392505050565b600082601f83011261282d5761282c612711565b5b813561283d8482602086016127d6565b91505092915050565b60006020828403121561285c5761285b61243c565b5b600082013567ffffffffffffffff81111561287a57612879612441565b5b61288684828501612818565b91505092915050565b612898816124cb565b81146128a357600080fd5b50565b6000813590506128b58161288f565b92915050565b6000602082840312156128d1576128d061243c565b5b60006128df848285016128a6565b91505092915050565b6000806000606084860312156129015761290061243c565b5b600061290f86828701612692565b935050602061292086828701612692565b9250506040612931868287016125dd565b9150509250925092565b6000602082840312156129515761295061243c565b5b600061295f84828501612692565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61299d816125bc565b82525050565b60006129af8383612994565b60208301905092915050565b6000602082019050919050565b60006129d382612968565b6129dd8185612973565b93506129e883612984565b8060005b83811015612a19578151612a0088826129a3565b9750612a0b836129bb565b9250506001810190506129ec565b5085935050505092915050565b60006020820190508181036000830152612a4081846129c8565b905092915050565b60008060408385031215612a5f57612a5e61243c565b5b6000612a6d85828601612692565b9250506020612a7e858286016128a6565b9150509250929050565b600067ffffffffffffffff821115612aa357612aa261271b565b5b612aac82612550565b9050602081019050919050565b6000612acc612ac784612a88565b61277b565b905082815260208101848484011115612ae857612ae7612716565b5b612af38482856127c7565b509392505050565b600082601f830112612b1057612b0f612711565b5b8135612b20848260208601612ab9565b91505092915050565b60008060008060808587031215612b4357612b4261243c565b5b6000612b5187828801612692565b9450506020612b6287828801612692565b9350506040612b73878288016125dd565b925050606085013567ffffffffffffffff811115612b9457612b93612441565b5b612ba087828801612afb565b91505092959194509250565b60008060408385031215612bc357612bc261243c565b5b6000612bd185828601612692565b9250506020612be285828601612692565b9150509250929050565b60008060408385031215612c0357612c0261243c565b5b6000612c11858286016125dd565b9250506020612c2285828601612692565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c7357607f821691505b602082108103612c8657612c85612c2c565b5b50919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612cc260148361250c565b9150612ccd82612c8c565b602082019050919050565b60006020820190508181036000830152612cf181612cb5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d32826125bc565b9150612d3d836125bc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d7257612d71612cf8565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612db360148361250c565b9150612dbe82612d7d565b602082019050919050565b60006020820190508181036000830152612de281612da6565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000612e1f60178361250c565b9150612e2a82612de9565b602082019050919050565b60006020820190508181036000830152612e4e81612e12565b9050919050565b7f7468697320776f756c64204f76657273656c6c00000000000000000000000000600082015250565b6000612e8b60138361250c565b9150612e9682612e55565b602082019050919050565b60006020820190508181036000830152612eba81612e7e565b9050919050565b6000612ecc826125bc565b9150612ed7836125bc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f1057612f0f612cf8565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000612f5160138361250c565b9150612f5c82612f1b565b602082019050919050565b60006020820190508181036000830152612f8081612f44565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612fc1826125bc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612ff357612ff2612cf8565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061305a602f8361250c565b915061306582612ffe565b604082019050919050565b600060208201905081810360008301526130898161304d565b9050919050565b600081905092915050565b60006130a682612501565b6130b08185613090565b93506130c081856020860161251d565b80840191505092915050565b60008190508160005260206000209050919050565b600081546130ee81612c5b565b6130f88186613090565b94506001821660008114613113576001811461312457613157565b60ff19831686528186019350613157565b61312d856130cc565b60005b8381101561314f57815481890152600182019150602081019050613130565b838801955050505b50505092915050565b600061316c828661309b565b9150613178828561309b565b915061318482846130e1565b9150819050949350505050565b600081905092915050565b50565b60006131ac600083613191565b91506131b78261319c565b600082019050919050565b60006131cd8261319f565b9150819050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061323360268361250c565b915061323e826131d7565b604082019050919050565b6000602082019050818103600083015261326281613226565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061329f60208361250c565b91506132aa82613269565b602082019050919050565b600060208201905081810360008301526132ce81613292565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132fc826132d5565b61330681856132e0565b935061331681856020860161251d565b61331f81612550565b840191505092915050565b600060808201905061333f6000830187612651565b61334c6020830186612651565b61335960408301856126e7565b818103606083015261336b81846132f1565b905095945050505050565b60008151905061338581612472565b92915050565b6000602082840312156133a1576133a061243c565b5b60006133af84828501613376565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220cd672dcdc0327b706f570549ea972cd432bd3290e87c551f7139b5459e1e94de64736f6c634300080e0033697066733a2f2f516d576f747243635872795674416a55733262336f3845477038473557574c7755524a4b455579744259764231592f
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb01146106aa578063de20bc92146106d5578063e985e9c5146106ec578063efbd73f414610729578063f2fde38b14610752576101ee565b8063a45ba8e7146105fd578063b071401b14610628578063b88d4fde14610651578063c87b56dd1461066d576101ee565b80638da5cb5b116100dc5780638da5cb5b1461055357806394354fd01461057e57806395d89b41146105a9578063a22cb465146105d4576101ee565b80636352211e1461049957806370a08231146104d6578063715018a6146105135780637ec4a6591461052a576101ee565b806323b872dd11610185578063518302271161015457806351830227146103ed5780635503a0e8146104185780635c975abb1461044357806362b99ad41461046e576101ee565b806323b872dd1461035c5780632fd94ecb1461037857806342842e0e14610394578063438b6300146103b0576101ee565b806313faede6116101c157806313faede6146102b457806316ba10e0146102df57806316c38b3c1461030857806318160ddd14610331576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061249e565b61077b565b60405161022791906124e6565b60405180910390f35b34801561023c57600080fd5b5061024561080d565b604051610252919061259a565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906125f2565b61089f565b60405161028f9190612660565b60405180910390f35b6102b260048036038101906102ad91906126a7565b61091e565b005b3480156102c057600080fd5b506102c9610a62565b6040516102d691906126f6565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612846565b610a68565b005b34801561031457600080fd5b5061032f600480360381019061032a91906128bb565b610a8a565b005b34801561033d57600080fd5b50610346610aaf565b60405161035391906126f6565b60405180910390f35b610376600480360381019061037191906128e8565b610ac6565b005b610392600480360381019061038d91906125f2565b610de8565b005b6103ae60048036038101906103a991906128e8565b610f97565b005b3480156103bc57600080fd5b506103d760048036038101906103d2919061293b565b610fb7565b6040516103e49190612a26565b60405180910390f35b3480156103f957600080fd5b506104026110c1565b60405161040f91906124e6565b60405180910390f35b34801561042457600080fd5b5061042d6110d4565b60405161043a919061259a565b60405180910390f35b34801561044f57600080fd5b50610458611162565b60405161046591906124e6565b60405180910390f35b34801561047a57600080fd5b50610483611175565b604051610490919061259a565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb91906125f2565b611203565b6040516104cd9190612660565b60405180910390f35b3480156104e257600080fd5b506104fd60048036038101906104f8919061293b565b611215565b60405161050a91906126f6565b60405180910390f35b34801561051f57600080fd5b506105286112cd565b005b34801561053657600080fd5b50610551600480360381019061054c9190612846565b6112e1565b005b34801561055f57600080fd5b50610568611303565b6040516105759190612660565b60405180910390f35b34801561058a57600080fd5b5061059361132c565b6040516105a091906126f6565b60405180910390f35b3480156105b557600080fd5b506105be611332565b6040516105cb919061259a565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f69190612a48565b6113c4565b005b34801561060957600080fd5b506106126114cf565b60405161061f919061259a565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a91906125f2565b61155d565b005b61066b60048036038101906106669190612b29565b61156f565b005b34801561067957600080fd5b50610694600480360381019061068f91906125f2565b6115e2565b6040516106a1919061259a565b60405180910390f35b3480156106b657600080fd5b506106bf61173a565b6040516106cc91906126f6565b60405180910390f35b3480156106e157600080fd5b506106ea611740565b005b3480156106f857600080fd5b50610713600480360381019061070e9190612bac565b6117c8565b60405161072091906124e6565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612bec565b61185c565b005b34801561075e57600080fd5b506107796004803603810190610774919061293b565b61191e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108065750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461081c90612c5b565b80601f016020809104026020016040519081016040528092919081815260200182805461084890612c5b565b80156108955780601f1061086a57610100808354040283529160200191610895565b820191906000526020600020905b81548152906001019060200180831161087857829003601f168201915b5050505050905090565b60006108aa826119a1565b6108e0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092982611203565b90508073ffffffffffffffffffffffffffffffffffffffff1661094a611a00565b73ffffffffffffffffffffffffffffffffffffffff16146109ad5761097681610971611a00565b6117c8565b6109ac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610a70611a08565b80600b9080519060200190610a8692919061238f565b5050565b610a92611a08565b80601060006101000a81548160ff02191690831515021790555050565b6000610ab9611a86565b6002546001540303905090565b6000610ad182611a8b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b38576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b4484611b57565b91509150610b5a8187610b55611a00565b611b7e565b610ba657610b6f86610b6a611a00565b6117c8565b610ba5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c0c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c198686866001611bc2565b8015610c2457600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610cf285610cce888887611bc8565b7c020000000000000000000000000000000000000000000000000000000017611bf0565b600560008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d785760006001850190506000600560008381526020019081526020016000205403610d76576001548114610d75578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610de08686866001611c1b565b505050505050565b80600081118015610dfb5750600f548111155b610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190612cd8565b60405180910390fd5b600e5481610e486009611c21565b610e529190612d27565b1115610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90612dc9565b60405180910390fd5b601060009054906101000a900460ff1615610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90612e35565b60405180910390fd5b600e5482610eef610aaf565b610ef99190612d27565b10610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3090612ea1565b60405180910390fd5b81600d54610f479190612ec1565b341015610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090612f67565b60405180910390fd5b610f933383611c2f565b5050565b610fb28383836040518060200160405280600081525061156f565b505050565b60606000610fc483611215565b905060008167ffffffffffffffff811115610fe257610fe161271b565b5b6040519080825280602002602001820160405280156110105781602001602082028036833780820191505090505b50905060006001905060005b838110801561102d5750600e548211155b156110b557600061103d83611203565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110a1578284838151811061108657611085612f87565b5b602002602001018181525050818061109d90612fb6565b9250505b82806110ac90612fb6565b9350505061101c565b82945050505050919050565b601060019054906101000a900460ff1681565b600b80546110e190612c5b565b80601f016020809104026020016040519081016040528092919081815260200182805461110d90612c5b565b801561115a5780601f1061112f5761010080835404028352916020019161115a565b820191906000526020600020905b81548152906001019060200180831161113d57829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b600a805461118290612c5b565b80601f01602080910402602001604051908101604052809291908181526020018280546111ae90612c5b565b80156111fb5780601f106111d0576101008083540402835291602001916111fb565b820191906000526020600020905b8154815290600101906020018083116111de57829003601f168201915b505050505081565b600061120e82611a8b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361127c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112d5611a08565b6112df6000611c4d565b565b6112e9611a08565b80600a90805190602001906112ff92919061238f565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606004805461134190612c5b565b80601f016020809104026020016040519081016040528092919081815260200182805461136d90612c5b565b80156113ba5780601f1061138f576101008083540402835291602001916113ba565b820191906000526020600020905b81548152906001019060200180831161139d57829003601f168201915b5050505050905090565b80600860006113d1611a00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661147e611a00565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114c391906124e6565b60405180910390a35050565b600c80546114dc90612c5b565b80601f016020809104026020016040519081016040528092919081815260200182805461150890612c5b565b80156115555780601f1061152a57610100808354040283529160200191611555565b820191906000526020600020905b81548152906001019060200180831161153857829003601f168201915b505050505081565b611565611a08565b80600f8190555050565b61157a848484610ac6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115dc576115a584848484611d11565b6115db576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606115ed826119a1565b61162c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162390613070565b60405180910390fd5b60001515601060019054906101000a900460ff161515036116d957600c805461165490612c5b565b80601f016020809104026020016040519081016040528092919081815260200182805461168090612c5b565b80156116cd5780601f106116a2576101008083540402835291602001916116cd565b820191906000526020600020905b8154815290600101906020018083116116b057829003601f168201915b50505050509050611735565b60006116e3611e61565b905060008151116117035760405180602001604052806000815250611731565b8061170d84611ef3565b600b60405160200161172193929190613160565b6040516020818303038152906040525b9150505b919050565b600e5481565b611748611a08565b6000611752611303565b73ffffffffffffffffffffffffffffffffffffffff1647604051611775906131c2565b60006040518083038185875af1925050503d80600081146117b2576040519150601f19603f3d011682016040523d82523d6000602084013e6117b7565b606091505b50509050806117c557600080fd5b50565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561186f5750600f548111155b6118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a590612cd8565b60405180910390fd5b600e54816118bc6009611c21565b6118c69190612d27565b1115611907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fe90612dc9565b60405180910390fd5b61190f611a08565b6119198284611c2f565b505050565b611926611a08565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611995576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198c90613249565b60405180910390fd5b61199e81611c4d565b50565b6000816119ac611a86565b111580156119bb575060015482105b80156119f9575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611a10611fc1565b73ffffffffffffffffffffffffffffffffffffffff16611a2e611303565b73ffffffffffffffffffffffffffffffffffffffff1614611a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7b906132b5565b60405180910390fd5b565b600090565b60008082905080611a9a611a86565b11611b2057600154811015611b1f5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b1d575b60008103611b13576005600083600190039350838152602001908152602001600020549050611ae9565b8092505050611b52565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bdf868684611fc9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600081600001549050919050565b611c49828260405180602001604052806000815250611fd2565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d37611a00565b8786866040518563ffffffff1660e01b8152600401611d59949392919061332a565b6020604051808303816000875af1925050508015611d9557506040513d601f19601f82011682018060405250810190611d92919061338b565b60015b611e0e573d8060008114611dc5576040519150601f19603f3d011682016040523d82523d6000602084013e611dca565b606091505b506000815103611e06576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611e7090612c5b565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9c90612c5b565b8015611ee95780601f10611ebe57610100808354040283529160200191611ee9565b820191906000526020600020905b815481529060010190602001808311611ecc57829003601f168201915b5050505050905090565b606060006001611f0284612070565b01905060008167ffffffffffffffff811115611f2157611f2061271b565b5b6040519080825280601f01601f191660200182016040528015611f535781602001600182028036833780820191505090505b509050600082602001820190505b600115611fb6578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611faa57611fa96133b8565b5b04945060008503611f61575b819350505050919050565b600033905090565b60009392505050565b611fdc83836121c3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461206b5760006001549050600083820390505b61201d6000868380600101945086611d11565b612053576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061200a57816001541461206857600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120ce577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120c4576120c36133b8565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061210b576d04ee2d6d415b85acef81000000008381612101576121006133b8565b5b0492506020810190505b662386f26fc10000831061213a57662386f26fc1000083816121305761212f6133b8565b5b0492506010810190505b6305f5e1008310612163576305f5e1008381612159576121586133b8565b5b0492506008810190505b612710831061218857612710838161217e5761217d6133b8565b5b0492506004810190505b606483106121ab57606483816121a1576121a06133b8565b5b0492506002810190505b600a83106121ba576001810190505b80915050919050565b6000600154905060008203612204576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122116000848385611bc2565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612288836122796000866000611bc8565b6122828561237f565b17611bf0565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461232957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122ee565b5060008203612364576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600181905550505061237a6000848385611c1b565b505050565b60006001821460e11b9050919050565b82805461239b90612c5b565b90600052602060002090601f0160209004810192826123bd5760008555612404565b82601f106123d657805160ff1916838001178555612404565b82800160010185558215612404579182015b828111156124035782518255916020019190600101906123e8565b5b5090506124119190612415565b5090565b5b8082111561242e576000816000905550600101612416565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61247b81612446565b811461248657600080fd5b50565b60008135905061249881612472565b92915050565b6000602082840312156124b4576124b361243c565b5b60006124c284828501612489565b91505092915050565b60008115159050919050565b6124e0816124cb565b82525050565b60006020820190506124fb60008301846124d7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561253b578082015181840152602081019050612520565b8381111561254a576000848401525b50505050565b6000601f19601f8301169050919050565b600061256c82612501565b612576818561250c565b935061258681856020860161251d565b61258f81612550565b840191505092915050565b600060208201905081810360008301526125b48184612561565b905092915050565b6000819050919050565b6125cf816125bc565b81146125da57600080fd5b50565b6000813590506125ec816125c6565b92915050565b6000602082840312156126085761260761243c565b5b6000612616848285016125dd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061264a8261261f565b9050919050565b61265a8161263f565b82525050565b60006020820190506126756000830184612651565b92915050565b6126848161263f565b811461268f57600080fd5b50565b6000813590506126a18161267b565b92915050565b600080604083850312156126be576126bd61243c565b5b60006126cc85828601612692565b92505060206126dd858286016125dd565b9150509250929050565b6126f0816125bc565b82525050565b600060208201905061270b60008301846126e7565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61275382612550565b810181811067ffffffffffffffff821117156127725761277161271b565b5b80604052505050565b6000612785612432565b9050612791828261274a565b919050565b600067ffffffffffffffff8211156127b1576127b061271b565b5b6127ba82612550565b9050602081019050919050565b82818337600083830152505050565b60006127e96127e484612796565b61277b565b90508281526020810184848401111561280557612804612716565b5b6128108482856127c7565b509392505050565b600082601f83011261282d5761282c612711565b5b813561283d8482602086016127d6565b91505092915050565b60006020828403121561285c5761285b61243c565b5b600082013567ffffffffffffffff81111561287a57612879612441565b5b61288684828501612818565b91505092915050565b612898816124cb565b81146128a357600080fd5b50565b6000813590506128b58161288f565b92915050565b6000602082840312156128d1576128d061243c565b5b60006128df848285016128a6565b91505092915050565b6000806000606084860312156129015761290061243c565b5b600061290f86828701612692565b935050602061292086828701612692565b9250506040612931868287016125dd565b9150509250925092565b6000602082840312156129515761295061243c565b5b600061295f84828501612692565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61299d816125bc565b82525050565b60006129af8383612994565b60208301905092915050565b6000602082019050919050565b60006129d382612968565b6129dd8185612973565b93506129e883612984565b8060005b83811015612a19578151612a0088826129a3565b9750612a0b836129bb565b9250506001810190506129ec565b5085935050505092915050565b60006020820190508181036000830152612a4081846129c8565b905092915050565b60008060408385031215612a5f57612a5e61243c565b5b6000612a6d85828601612692565b9250506020612a7e858286016128a6565b9150509250929050565b600067ffffffffffffffff821115612aa357612aa261271b565b5b612aac82612550565b9050602081019050919050565b6000612acc612ac784612a88565b61277b565b905082815260208101848484011115612ae857612ae7612716565b5b612af38482856127c7565b509392505050565b600082601f830112612b1057612b0f612711565b5b8135612b20848260208601612ab9565b91505092915050565b60008060008060808587031215612b4357612b4261243c565b5b6000612b5187828801612692565b9450506020612b6287828801612692565b9350506040612b73878288016125dd565b925050606085013567ffffffffffffffff811115612b9457612b93612441565b5b612ba087828801612afb565b91505092959194509250565b60008060408385031215612bc357612bc261243c565b5b6000612bd185828601612692565b9250506020612be285828601612692565b9150509250929050565b60008060408385031215612c0357612c0261243c565b5b6000612c11858286016125dd565b9250506020612c2285828601612692565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c7357607f821691505b602082108103612c8657612c85612c2c565b5b50919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000612cc260148361250c565b9150612ccd82612c8c565b602082019050919050565b60006020820190508181036000830152612cf181612cb5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d32826125bc565b9150612d3d836125bc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d7257612d71612cf8565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000612db360148361250c565b9150612dbe82612d7d565b602082019050919050565b60006020820190508181036000830152612de281612da6565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000612e1f60178361250c565b9150612e2a82612de9565b602082019050919050565b60006020820190508181036000830152612e4e81612e12565b9050919050565b7f7468697320776f756c64204f76657273656c6c00000000000000000000000000600082015250565b6000612e8b60138361250c565b9150612e9682612e55565b602082019050919050565b60006020820190508181036000830152612eba81612e7e565b9050919050565b6000612ecc826125bc565b9150612ed7836125bc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f1057612f0f612cf8565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000612f5160138361250c565b9150612f5c82612f1b565b602082019050919050565b60006020820190508181036000830152612f8081612f44565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612fc1826125bc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612ff357612ff2612cf8565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061305a602f8361250c565b915061306582612ffe565b604082019050919050565b600060208201905081810360008301526130898161304d565b9050919050565b600081905092915050565b60006130a682612501565b6130b08185613090565b93506130c081856020860161251d565b80840191505092915050565b60008190508160005260206000209050919050565b600081546130ee81612c5b565b6130f88186613090565b94506001821660008114613113576001811461312457613157565b60ff19831686528186019350613157565b61312d856130cc565b60005b8381101561314f57815481890152600182019150602081019050613130565b838801955050505b50505092915050565b600061316c828661309b565b9150613178828561309b565b915061318482846130e1565b9150819050949350505050565b600081905092915050565b50565b60006131ac600083613191565b91506131b78261319c565b600082019050919050565b60006131cd8261319f565b9150819050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061323360268361250c565b915061323e826131d7565b604082019050919050565b6000602082019050818103600083015261326281613226565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061329f60208361250c565b91506132aa82613269565b602082019050919050565b600060208201905081810360008301526132ce81613292565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006132fc826132d5565b61330681856132e0565b935061331681856020860161251d565b61331f81612550565b840191505092915050565b600060808201905061333f6000830187612651565b61334c6020830186612651565b61335960408301856126e7565b818103606083015261336b81846132f1565b905095945050505050565b60008151905061338581612472565b92915050565b6000602082840312156133a1576133a061243c565b5b60006133af84828501613376565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220cd672dcdc0327b706f570549ea972cd432bd3290e87c551f7139b5459e1e94de64736f6c634300080e0033
Deployed Bytecode Sourcemap
71841:3117:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18963:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19865:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26356:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25789:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72163:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73132:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73238:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15616:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29995:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72414:303;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32916:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73429:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72312:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72087:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72281:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72000:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21258:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16800:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54770:103;;;;;;;;;;;;;:::i;:::-;;73026:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54122:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72237:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20041:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26914:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72125:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72890:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33707:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74070:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72202:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74808:143;;;;;;;;;;;;;:::i;:::-;;27305:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72727:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55028:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18963:639;19048:4;19387:10;19372:25;;:11;:25;;;;:102;;;;19464:10;19449:25;;:11;:25;;;;19372:102;:179;;;;19541:10;19526:25;;:11;:25;;;;19372:179;19352:199;;18963:639;;;:::o;19865:100::-;19919:13;19952:5;19945:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19865:100;:::o;26356:218::-;26432:7;26457:16;26465:7;26457;:16::i;:::-;26452:64;;26482:34;;;;;;;;;;;;;;26452:64;26536:15;:24;26552:7;26536:24;;;;;;;;;;;:30;;;;;;;;;;;;26529:37;;26356:218;;;:::o;25789:408::-;25878:13;25894:16;25902:7;25894;:16::i;:::-;25878:32;;25950:5;25927:28;;:19;:17;:19::i;:::-;:28;;;25923:175;;25975:44;25992:5;25999:19;:17;:19::i;:::-;25975:16;:44::i;:::-;25970:128;;26047:35;;;;;;;;;;;;;;25970:128;25923:175;26143:2;26110:15;:24;26126:7;26110:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26181:7;26177:2;26161:28;;26170:5;26161:28;;;;;;;;;;;;25867:330;25789:408;;:::o;72163:34::-;;;;:::o;73132:100::-;54008:13;:11;:13::i;:::-;73216:10:::1;73204:9;:22;;;;;;;;;;;;:::i;:::-;;73132:100:::0;:::o;73238:77::-;54008:13;:11;:13::i;:::-;73303:6:::1;73294;;:15;;;;;;;;;;;;;;;;;;73238:77:::0;:::o;15616:323::-;15677:7;15905:15;:13;:15::i;:::-;15890:12;;15874:13;;:28;:46;15867:53;;15616:323;:::o;29995:2825::-;30137:27;30167;30186:7;30167:18;:27::i;:::-;30137:57;;30252:4;30211:45;;30227:19;30211:45;;;30207:86;;30265:28;;;;;;;;;;;;;;30207:86;30307:27;30336:23;30363:35;30390:7;30363:26;:35::i;:::-;30306:92;;;;30498:68;30523:15;30540:4;30546:19;:17;:19::i;:::-;30498:24;:68::i;:::-;30493:180;;30586:43;30603:4;30609:19;:17;:19::i;:::-;30586:16;:43::i;:::-;30581:92;;30638:35;;;;;;;;;;;;;;30581:92;30493:180;30704:1;30690:16;;:2;:16;;;30686:52;;30715:23;;;;;;;;;;;;;;30686:52;30751:43;30773:4;30779:2;30783:7;30792:1;30751:21;:43::i;:::-;30887:15;30884:160;;;31027:1;31006:19;30999:30;30884:160;31424:18;:24;31443:4;31424:24;;;;;;;;;;;;;;;;31422:26;;;;;;;;;;;;31493:18;:22;31512:2;31493:22;;;;;;;;;;;;;;;;31491:24;;;;;;;;;;;31815:146;31852:2;31901:45;31916:4;31922:2;31926:19;31901:14;:45::i;:::-;12015:8;31873:73;31815:18;:146::i;:::-;31786:17;:26;31804:7;31786:26;;;;;;;;;;;:175;;;;32132:1;12015:8;32081:19;:47;:52;32077:627;;32154:19;32186:1;32176:7;:11;32154:33;;32343:1;32309:17;:30;32327:11;32309:30;;;;;;;;;;;;:35;32305:384;;32447:13;;32432:11;:28;32428:242;;32627:19;32594:17;:30;32612:11;32594:30;;;;;;;;;;;:52;;;;32428:242;32305:384;32135:569;32077:627;32751:7;32747:2;32732:27;;32741:4;32732:27;;;;;;;;;;;;32770:42;32791:4;32797:2;32801:7;32810:1;32770:20;:42::i;:::-;30126:2694;;;29995:2825;;;:::o;72414:303::-;72483:6;74641:1;74627:11;:15;:52;;;;;74661:18;;74646:11;:33;;74627:52;74619:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;74753:9;;74738:11;74719:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;74711:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;72507:6:::1;;;;;;;;;;;72506:7;72498:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;72578:9;;72570:6;72556:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:31;72548:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;72645:6;72638:4;;:13;;;;:::i;:::-;72625:9;:26;;72617:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;72682:29;72692:10;72704:6;72682:9;:29::i;:::-;72414:303:::0;;:::o;32916:193::-;33062:39;33079:4;33085:2;33089:7;33062:39;;;;;;;;;;;;:16;:39::i;:::-;32916:193;;;:::o;73429:635::-;73504:16;73532:23;73558:17;73568:6;73558:9;:17::i;:::-;73532:43;;73582:30;73629:15;73615:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73582:63;;73652:22;73677:1;73652:26;;73685:23;73721:309;73746:15;73728;:33;:64;;;;;73783:9;;73765:14;:27;;73728:64;73721:309;;;73803:25;73831:23;73839:14;73831:7;:23::i;:::-;73803:51;;73890:6;73869:27;;:17;:27;;;73865:131;;73942:14;73909:13;73923:15;73909:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;73969:17;;;;;:::i;:::-;;;;73865:131;74006:16;;;;;:::i;:::-;;;;73794:236;73721:309;;;74045:13;74038:20;;;;;;73429:635;;;:::o;72312:27::-;;;;;;;;;;;;;:::o;72087:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72281:26::-;;;;;;;;;;;;;:::o;72000:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21258:152::-;21330:7;21373:27;21392:7;21373:18;:27::i;:::-;21350:52;;21258:152;;;:::o;16800:233::-;16872:7;16913:1;16896:19;;:5;:19;;;16892:60;;16924:28;;;;;;;;;;;;;;16892:60;10959:13;16970:18;:25;16989:5;16970:25;;;;;;;;;;;;;;;;:55;16963:62;;16800:233;;;:::o;54770:103::-;54008:13;:11;:13::i;:::-;54835:30:::1;54862:1;54835:18;:30::i;:::-;54770:103::o:0;73026:100::-;54008:13;:11;:13::i;:::-;73110:10:::1;73098:9;:22;;;;;;;;;;;;:::i;:::-;;73026:100:::0;:::o;54122:87::-;54168:7;54195:6;;;;;;;;;;;54188:13;;54122:87;:::o;72237:37::-;;;;:::o;20041:104::-;20097:13;20130:7;20123:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20041:104;:::o;26914:234::-;27061:8;27009:18;:39;27028:19;:17;:19::i;:::-;27009:39;;;;;;;;;;;;;;;:49;27049:8;27009:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27121:8;27085:55;;27100:19;:17;:19::i;:::-;27085:55;;;27131:8;27085:55;;;;;;:::i;:::-;;;;;;;;26914:234;;:::o;72125:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72890:130::-;54008:13;:11;:13::i;:::-;72995:19:::1;72974:18;:40;;;;72890:130:::0;:::o;33707:407::-;33882:31;33895:4;33901:2;33905:7;33882:12;:31::i;:::-;33946:1;33928:2;:14;;;:19;33924:183;;33967:56;33998:4;34004:2;34008:7;34017:5;33967:30;:56::i;:::-;33962:145;;34051:40;;;;;;;;;;;;;;33962:145;33924:183;33707:407;;;;:::o;74070:494::-;74169:13;74210:17;74218:8;74210:7;:17::i;:::-;74194:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;74317:5;74305:17;;:8;;;;;;;;;;;:17;;;74301:64;;74340:17;74333:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74301:64;74373:28;74404:10;:8;:10::i;:::-;74373:41;;74459:1;74434:14;74428:28;:32;:130;;;;;;;;;;;;;;;;;74496:14;74512:19;:8;:17;:19::i;:::-;74533:9;74479:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74428:130;74421:137;;;74070:494;;;;:::o;72202:30::-;;;;:::o;74808:143::-;54008:13;:11;:13::i;:::-;74856:7:::1;74877;:5;:7::i;:::-;74869:21;;74898;74869:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74855:69;;;74939:2;74931:11;;;::::0;::::1;;74842:109;74808:143::o:0;27305:164::-;27402:4;27426:18;:25;27445:5;27426:25;;;;;;;;;;;;;;;:35;27452:8;27426:35;;;;;;;;;;;;;;;;;;;;;;;;;27419:42;;27305:164;;;;:::o;72727:155::-;72813:11;74641:1;74627:11;:15;:52;;;;;74661:18;;74646:11;:33;;74627:52;74619:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;74753:9;;74738:11;74719:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;74711:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;54008:13:::1;:11;:13::i;:::-;72843:33:::2;72853:9;72864:11;72843:9;:33::i;:::-;72727:155:::0;;;:::o;55028:201::-;54008:13;:11;:13::i;:::-;55137:1:::1;55117:22;;:8;:22;;::::0;55109:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;55193:28;55212:8;55193:18;:28::i;:::-;55028:201:::0;:::o;27727:282::-;27792:4;27848:7;27829:15;:13;:15::i;:::-;:26;;:66;;;;;27882:13;;27872:7;:23;27829:66;:153;;;;;27981:1;11735:8;27933:17;:26;27951:7;27933:26;;;;;;;;;;;;:44;:49;27829:153;27809:173;;27727:282;;;:::o;50035:105::-;50095:7;50122:10;50115:17;;50035:105;:::o;54287:132::-;54362:12;:10;:12::i;:::-;54351:23;;:7;:5;:7::i;:::-;:23;;;54343:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54287:132::o;15132:92::-;15188:7;15132:92;:::o;22413:1275::-;22480:7;22500:12;22515:7;22500:22;;22583:4;22564:15;:13;:15::i;:::-;:23;22560:1061;;22617:13;;22610:4;:20;22606:1015;;;22655:14;22672:17;:23;22690:4;22672:23;;;;;;;;;;;;22655:40;;22789:1;11735:8;22761:6;:24;:29;22757:845;;23426:113;23443:1;23433:6;:11;23426:113;;23486:17;:25;23504:6;;;;;;;23486:25;;;;;;;;;;;;23477:34;;23426:113;;;23572:6;23565:13;;;;;;22757:845;22632:989;22606:1015;22560:1061;23649:31;;;;;;;;;;;;;;22413:1275;;;;:::o;28890:485::-;28992:27;29021:23;29062:38;29103:15;:24;29119:7;29103:24;;;;;;;;;;;29062:65;;29280:18;29257:41;;29337:19;29331:26;29312:45;;29242:126;28890:485;;;:::o;28118:659::-;28267:11;28432:16;28425:5;28421:28;28412:37;;28592:16;28581:9;28577:32;28564:45;;28742:15;28731:9;28728:30;28720:5;28709:9;28706:20;28703:56;28693:66;;28118:659;;;;;:::o;34776:159::-;;;;;:::o;49344:311::-;49479:7;49499:16;12139:3;49525:19;:41;;49499:68;;12139:3;49593:31;49604:4;49610:2;49614:9;49593:10;:31::i;:::-;49585:40;;:62;;49578:69;;;49344:311;;;;;:::o;24236:450::-;24316:14;24484:16;24477:5;24473:28;24464:37;;24661:5;24647:11;24622:23;24618:41;24615:52;24608:5;24605:63;24595:73;;24236:450;;;;:::o;35600:158::-;;;;;:::o;71220:114::-;71285:7;71312;:14;;;71305:21;;71220:114;;;:::o;43867:112::-;43944:27;43954:2;43958:8;43944:27;;;;;;;;;;;;:9;:27::i;:::-;43867:112;;:::o;55389:191::-;55463:16;55482:6;;;;;;;;;;;55463:25;;55508:8;55499:6;;:17;;;;;;;;;;;;;;;;;;55563:8;55532:40;;55553:8;55532:40;;;;;;;;;;;;55452:128;55389:191;:::o;36198:716::-;36361:4;36407:2;36382:45;;;36428:19;:17;:19::i;:::-;36449:4;36455:7;36464:5;36382:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36378:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36682:1;36665:6;:13;:18;36661:235;;36711:40;;;;;;;;;;;;;;36661:235;36854:6;36848:13;36839:6;36835:2;36831:15;36824:38;36378:529;36551:54;;;36541:64;;;:6;:64;;;;36534:71;;;36198:716;;;;;;:::o;73319:104::-;73379:13;73408:9;73401:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73319:104;:::o;68892:716::-;68948:13;68999:14;69036:1;69016:17;69027:5;69016:10;:17::i;:::-;:21;68999:38;;69052:20;69086:6;69075:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69052:41;;69108:11;69237:6;69233:2;69229:15;69221:6;69217:28;69210:35;;69274:288;69281:4;69274:288;;;69306:5;;;;;;;;69448:8;69443:2;69436:5;69432:14;69427:30;69422:3;69414:44;69504:2;69495:11;;;;;;:::i;:::-;;;;;69538:1;69529:5;:10;69274:288;69525:21;69274:288;69583:6;69576:13;;;;;68892:716;;;:::o;52673:98::-;52726:7;52753:10;52746:17;;52673:98;:::o;49045:147::-;49182:6;49045:147;;;;;:::o;43094:689::-;43225:19;43231:2;43235:8;43225:5;:19::i;:::-;43304:1;43286:2;:14;;;:19;43282:483;;43326:11;43340:13;;43326:27;;43372:13;43394:8;43388:3;:14;43372:30;;43421:233;43452:62;43491:1;43495:2;43499:7;;;;;;43508:5;43452:30;:62::i;:::-;43447:167;;43550:40;;;;;;;;;;;;;;43447:167;43649:3;43641:5;:11;43421:233;;43736:3;43719:13;;:20;43715:34;;43741:8;;;43715:34;43307:458;;43282:483;43094:689;;;:::o;65758:922::-;65811:7;65831:14;65848:1;65831:18;;65898:6;65889:5;:15;65885:102;;65934:6;65925:15;;;;;;:::i;:::-;;;;;65969:2;65959:12;;;;65885:102;66014:6;66005:5;:15;66001:102;;66050:6;66041:15;;;;;;:::i;:::-;;;;;66085:2;66075:12;;;;66001:102;66130:6;66121:5;:15;66117:102;;66166:6;66157:15;;;;;;:::i;:::-;;;;;66201:2;66191:12;;;;66117:102;66246:5;66237;:14;66233:99;;66281:5;66272:14;;;;;;:::i;:::-;;;;;66315:1;66305:11;;;;66233:99;66359:5;66350;:14;66346:99;;66394:5;66385:14;;;;;;:::i;:::-;;;;;66428:1;66418:11;;;;66346:99;66472:5;66463;:14;66459:99;;66507:5;66498:14;;;;;;:::i;:::-;;;;;66541:1;66531:11;;;;66459:99;66585:5;66576;:14;66572:66;;66621:1;66611:11;;;;66572:66;66666:6;66659:13;;;65758:922;;;:::o;37376:2966::-;37449:20;37472:13;;37449:36;;37512:1;37500:8;:13;37496:44;;37522:18;;;;;;;;;;;;;;37496:44;37553:61;37583:1;37587:2;37591:12;37605:8;37553:21;:61::i;:::-;38097:1;11097:2;38067:1;:26;;38066:32;38054:8;:45;38028:18;:22;38047:2;38028:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38376:139;38413:2;38467:33;38490:1;38494:2;38498:1;38467:14;:33::i;:::-;38434:30;38455:8;38434:20;:30::i;:::-;:66;38376:18;:139::i;:::-;38342:17;:31;38360:12;38342:31;;;;;;;;;;;:173;;;;38532:16;38563:11;38592:8;38577:12;:23;38563:37;;39113:16;39109:2;39105:25;39093:37;;39485:12;39445:8;39404:1;39342:25;39283:1;39222;39195:335;39856:1;39842:12;39838:20;39796:346;39897:3;39888:7;39885:16;39796:346;;40115:7;40105:8;40102:1;40075:25;40072:1;40069;40064:59;39950:1;39941:7;39937:15;39926:26;;39796:346;;;39800:77;40187:1;40175:8;:13;40171:45;;40197:19;;;;;;;;;;;;;;40171:45;40249:3;40233:13;:19;;;;37802:2462;;40274:60;40303:1;40307:2;40311:12;40325:8;40274:20;:60::i;:::-;37438:2904;37376:2966;;:::o;24788:324::-;24858:14;25091:1;25081:8;25078:15;25052:24;25048:46;25038:56;;24788:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:114::-;9528:6;9562:5;9556:12;9546:22;;9461:114;;;:::o;9581:184::-;9680:11;9714:6;9709:3;9702:19;9754:4;9749:3;9745:14;9730:29;;9581:184;;;;:::o;9771:132::-;9838:4;9861:3;9853:11;;9891:4;9886:3;9882:14;9874:22;;9771:132;;;:::o;9909:108::-;9986:24;10004:5;9986:24;:::i;:::-;9981:3;9974:37;9909:108;;:::o;10023:179::-;10092:10;10113:46;10155:3;10147:6;10113:46;:::i;:::-;10191:4;10186:3;10182:14;10168:28;;10023:179;;;;:::o;10208:113::-;10278:4;10310;10305:3;10301:14;10293:22;;10208:113;;;:::o;10357:732::-;10476:3;10505:54;10553:5;10505:54;:::i;:::-;10575:86;10654:6;10649:3;10575:86;:::i;:::-;10568:93;;10685:56;10735:5;10685:56;:::i;:::-;10764:7;10795:1;10780:284;10805:6;10802:1;10799:13;10780:284;;;10881:6;10875:13;10908:63;10967:3;10952:13;10908:63;:::i;:::-;10901:70;;10994:60;11047:6;10994:60;:::i;:::-;10984:70;;10840:224;10827:1;10824;10820:9;10815:14;;10780:284;;;10784:14;11080:3;11073:10;;10481:608;;;10357:732;;;;:::o;11095:373::-;11238:4;11276:2;11265:9;11261:18;11253:26;;11325:9;11319:4;11315:20;11311:1;11300:9;11296:17;11289:47;11353:108;11456:4;11447:6;11353:108;:::i;:::-;11345:116;;11095:373;;;;:::o;11474:468::-;11539:6;11547;11596:2;11584:9;11575:7;11571:23;11567:32;11564:119;;;11602:79;;:::i;:::-;11564:119;11722:1;11747:53;11792:7;11783:6;11772:9;11768:22;11747:53;:::i;:::-;11737:63;;11693:117;11849:2;11875:50;11917:7;11908:6;11897:9;11893:22;11875:50;:::i;:::-;11865:60;;11820:115;11474:468;;;;;:::o;11948:307::-;12009:4;12099:18;12091:6;12088:30;12085:56;;;12121:18;;:::i;:::-;12085:56;12159:29;12181:6;12159:29;:::i;:::-;12151:37;;12243:4;12237;12233:15;12225:23;;11948:307;;;:::o;12261:410::-;12338:5;12363:65;12379:48;12420:6;12379:48;:::i;:::-;12363:65;:::i;:::-;12354:74;;12451:6;12444:5;12437:21;12489:4;12482:5;12478:16;12527:3;12518:6;12513:3;12509:16;12506:25;12503:112;;;12534:79;;:::i;:::-;12503:112;12624:41;12658:6;12653:3;12648;12624:41;:::i;:::-;12344:327;12261:410;;;;;:::o;12690:338::-;12745:5;12794:3;12787:4;12779:6;12775:17;12771:27;12761:122;;12802:79;;:::i;:::-;12761:122;12919:6;12906:20;12944:78;13018:3;13010:6;13003:4;12995:6;12991:17;12944:78;:::i;:::-;12935:87;;12751:277;12690:338;;;;:::o;13034:943::-;13129:6;13137;13145;13153;13202:3;13190:9;13181:7;13177:23;13173:33;13170:120;;;13209:79;;:::i;:::-;13170:120;13329:1;13354:53;13399:7;13390:6;13379:9;13375:22;13354:53;:::i;:::-;13344:63;;13300:117;13456:2;13482:53;13527:7;13518:6;13507:9;13503:22;13482:53;:::i;:::-;13472:63;;13427:118;13584:2;13610:53;13655:7;13646:6;13635:9;13631:22;13610:53;:::i;:::-;13600:63;;13555:118;13740:2;13729:9;13725:18;13712:32;13771:18;13763:6;13760:30;13757:117;;;13793:79;;:::i;:::-;13757:117;13898:62;13952:7;13943:6;13932:9;13928:22;13898:62;:::i;:::-;13888:72;;13683:287;13034:943;;;;;;;:::o;13983:474::-;14051:6;14059;14108:2;14096:9;14087:7;14083:23;14079:32;14076:119;;;14114:79;;:::i;:::-;14076:119;14234:1;14259:53;14304:7;14295:6;14284:9;14280:22;14259:53;:::i;:::-;14249:63;;14205:117;14361:2;14387:53;14432:7;14423:6;14412:9;14408:22;14387:53;:::i;:::-;14377:63;;14332:118;13983:474;;;;;:::o;14463:::-;14531:6;14539;14588:2;14576:9;14567:7;14563:23;14559:32;14556:119;;;14594:79;;:::i;:::-;14556:119;14714:1;14739:53;14784:7;14775:6;14764:9;14760:22;14739:53;:::i;:::-;14729:63;;14685:117;14841:2;14867:53;14912:7;14903:6;14892:9;14888:22;14867:53;:::i;:::-;14857:63;;14812:118;14463:474;;;;;:::o;14943:180::-;14991:77;14988:1;14981:88;15088:4;15085:1;15078:15;15112:4;15109:1;15102:15;15129:320;15173:6;15210:1;15204:4;15200:12;15190:22;;15257:1;15251:4;15247:12;15278:18;15268:81;;15334:4;15326:6;15322:17;15312:27;;15268:81;15396:2;15388:6;15385:14;15365:18;15362:38;15359:84;;15415:18;;:::i;:::-;15359:84;15180:269;15129:320;;;:::o;15455:170::-;15595:22;15591:1;15583:6;15579:14;15572:46;15455:170;:::o;15631:366::-;15773:3;15794:67;15858:2;15853:3;15794:67;:::i;:::-;15787:74;;15870:93;15959:3;15870:93;:::i;:::-;15988:2;15983:3;15979:12;15972:19;;15631:366;;;:::o;16003:419::-;16169:4;16207:2;16196:9;16192:18;16184:26;;16256:9;16250:4;16246:20;16242:1;16231:9;16227:17;16220:47;16284:131;16410:4;16284:131;:::i;:::-;16276:139;;16003:419;;;:::o;16428:180::-;16476:77;16473:1;16466:88;16573:4;16570:1;16563:15;16597:4;16594:1;16587:15;16614:305;16654:3;16673:20;16691:1;16673:20;:::i;:::-;16668:25;;16707:20;16725:1;16707:20;:::i;:::-;16702:25;;16861:1;16793:66;16789:74;16786:1;16783:81;16780:107;;;16867:18;;:::i;:::-;16780:107;16911:1;16908;16904:9;16897:16;;16614:305;;;;:::o;16925:170::-;17065:22;17061:1;17053:6;17049:14;17042:46;16925:170;:::o;17101:366::-;17243:3;17264:67;17328:2;17323:3;17264:67;:::i;:::-;17257:74;;17340:93;17429:3;17340:93;:::i;:::-;17458:2;17453:3;17449:12;17442:19;;17101:366;;;:::o;17473:419::-;17639:4;17677:2;17666:9;17662:18;17654:26;;17726:9;17720:4;17716:20;17712:1;17701:9;17697:17;17690:47;17754:131;17880:4;17754:131;:::i;:::-;17746:139;;17473:419;;;:::o;17898:173::-;18038:25;18034:1;18026:6;18022:14;18015:49;17898:173;:::o;18077:366::-;18219:3;18240:67;18304:2;18299:3;18240:67;:::i;:::-;18233:74;;18316:93;18405:3;18316:93;:::i;:::-;18434:2;18429:3;18425:12;18418:19;;18077:366;;;:::o;18449:419::-;18615:4;18653:2;18642:9;18638:18;18630:26;;18702:9;18696:4;18692:20;18688:1;18677:9;18673:17;18666:47;18730:131;18856:4;18730:131;:::i;:::-;18722:139;;18449:419;;;:::o;18874:169::-;19014:21;19010:1;19002:6;18998:14;18991:45;18874:169;:::o;19049:366::-;19191:3;19212:67;19276:2;19271:3;19212:67;:::i;:::-;19205:74;;19288:93;19377:3;19288:93;:::i;:::-;19406:2;19401:3;19397:12;19390:19;;19049:366;;;:::o;19421:419::-;19587:4;19625:2;19614:9;19610:18;19602:26;;19674:9;19668:4;19664:20;19660:1;19649:9;19645:17;19638:47;19702:131;19828:4;19702:131;:::i;:::-;19694:139;;19421:419;;;:::o;19846:348::-;19886:7;19909:20;19927:1;19909:20;:::i;:::-;19904:25;;19943:20;19961:1;19943:20;:::i;:::-;19938:25;;20131:1;20063:66;20059:74;20056:1;20053:81;20048:1;20041:9;20034:17;20030:105;20027:131;;;20138:18;;:::i;:::-;20027:131;20186:1;20183;20179:9;20168:20;;19846:348;;;;:::o;20200:169::-;20340:21;20336:1;20328:6;20324:14;20317:45;20200:169;:::o;20375:366::-;20517:3;20538:67;20602:2;20597:3;20538:67;:::i;:::-;20531:74;;20614:93;20703:3;20614:93;:::i;:::-;20732:2;20727:3;20723:12;20716:19;;20375:366;;;:::o;20747:419::-;20913:4;20951:2;20940:9;20936:18;20928:26;;21000:9;20994:4;20990:20;20986:1;20975:9;20971:17;20964:47;21028:131;21154:4;21028:131;:::i;:::-;21020:139;;20747:419;;;:::o;21172:180::-;21220:77;21217:1;21210:88;21317:4;21314:1;21307:15;21341:4;21338:1;21331:15;21358:233;21397:3;21420:24;21438:5;21420:24;:::i;:::-;21411:33;;21466:66;21459:5;21456:77;21453:103;;21536:18;;:::i;:::-;21453:103;21583:1;21576:5;21572:13;21565:20;;21358:233;;;:::o;21597:234::-;21737:34;21733:1;21725:6;21721:14;21714:58;21806:17;21801:2;21793:6;21789:15;21782:42;21597:234;:::o;21837:366::-;21979:3;22000:67;22064:2;22059:3;22000:67;:::i;:::-;21993:74;;22076:93;22165:3;22076:93;:::i;:::-;22194:2;22189:3;22185:12;22178:19;;21837:366;;;:::o;22209:419::-;22375:4;22413:2;22402:9;22398:18;22390:26;;22462:9;22456:4;22452:20;22448:1;22437:9;22433:17;22426:47;22490:131;22616:4;22490:131;:::i;:::-;22482:139;;22209:419;;;:::o;22634:148::-;22736:11;22773:3;22758:18;;22634:148;;;;:::o;22788:377::-;22894:3;22922:39;22955:5;22922:39;:::i;:::-;22977:89;23059:6;23054:3;22977:89;:::i;:::-;22970:96;;23075:52;23120:6;23115:3;23108:4;23101:5;23097:16;23075:52;:::i;:::-;23152:6;23147:3;23143:16;23136:23;;22898:267;22788:377;;;;:::o;23171:141::-;23220:4;23243:3;23235:11;;23266:3;23263:1;23256:14;23300:4;23297:1;23287:18;23279:26;;23171:141;;;:::o;23342:845::-;23445:3;23482:5;23476:12;23511:36;23537:9;23511:36;:::i;:::-;23563:89;23645:6;23640:3;23563:89;:::i;:::-;23556:96;;23683:1;23672:9;23668:17;23699:1;23694:137;;;;23845:1;23840:341;;;;23661:520;;23694:137;23778:4;23774:9;23763;23759:25;23754:3;23747:38;23814:6;23809:3;23805:16;23798:23;;23694:137;;23840:341;23907:38;23939:5;23907:38;:::i;:::-;23967:1;23981:154;23995:6;23992:1;23989:13;23981:154;;;24069:7;24063:14;24059:1;24054:3;24050:11;24043:35;24119:1;24110:7;24106:15;24095:26;;24017:4;24014:1;24010:12;24005:17;;23981:154;;;24164:6;24159:3;24155:16;24148:23;;23847:334;;23661:520;;23449:738;;23342:845;;;;:::o;24193:589::-;24418:3;24440:95;24531:3;24522:6;24440:95;:::i;:::-;24433:102;;24552:95;24643:3;24634:6;24552:95;:::i;:::-;24545:102;;24664:92;24752:3;24743:6;24664:92;:::i;:::-;24657:99;;24773:3;24766:10;;24193:589;;;;;;:::o;24788:147::-;24889:11;24926:3;24911:18;;24788:147;;;;:::o;24941:114::-;;:::o;25061:398::-;25220:3;25241:83;25322:1;25317:3;25241:83;:::i;:::-;25234:90;;25333:93;25422:3;25333:93;:::i;:::-;25451:1;25446:3;25442:11;25435:18;;25061:398;;;:::o;25465:379::-;25649:3;25671:147;25814:3;25671:147;:::i;:::-;25664:154;;25835:3;25828:10;;25465:379;;;:::o;25850:225::-;25990:34;25986:1;25978:6;25974:14;25967:58;26059:8;26054:2;26046:6;26042:15;26035:33;25850:225;:::o;26081:366::-;26223:3;26244:67;26308:2;26303:3;26244:67;:::i;:::-;26237:74;;26320:93;26409:3;26320:93;:::i;:::-;26438:2;26433:3;26429:12;26422:19;;26081:366;;;:::o;26453:419::-;26619:4;26657:2;26646:9;26642:18;26634:26;;26706:9;26700:4;26696:20;26692:1;26681:9;26677:17;26670:47;26734:131;26860:4;26734:131;:::i;:::-;26726:139;;26453:419;;;:::o;26878:182::-;27018:34;27014:1;27006:6;27002:14;26995:58;26878:182;:::o;27066:366::-;27208:3;27229:67;27293:2;27288:3;27229:67;:::i;:::-;27222:74;;27305:93;27394:3;27305:93;:::i;:::-;27423:2;27418:3;27414:12;27407:19;;27066:366;;;:::o;27438:419::-;27604:4;27642:2;27631:9;27627:18;27619:26;;27691:9;27685:4;27681:20;27677:1;27666:9;27662:17;27655:47;27719:131;27845:4;27719:131;:::i;:::-;27711:139;;27438:419;;;:::o;27863:98::-;27914:6;27948:5;27942:12;27932:22;;27863:98;;;:::o;27967:168::-;28050:11;28084:6;28079:3;28072:19;28124:4;28119:3;28115:14;28100:29;;27967:168;;;;:::o;28141:360::-;28227:3;28255:38;28287:5;28255:38;:::i;:::-;28309:70;28372:6;28367:3;28309:70;:::i;:::-;28302:77;;28388:52;28433:6;28428:3;28421:4;28414:5;28410:16;28388:52;:::i;:::-;28465:29;28487:6;28465:29;:::i;:::-;28460:3;28456:39;28449:46;;28231:270;28141:360;;;;:::o;28507:640::-;28702:4;28740:3;28729:9;28725:19;28717:27;;28754:71;28822:1;28811:9;28807:17;28798:6;28754:71;:::i;:::-;28835:72;28903:2;28892:9;28888:18;28879:6;28835:72;:::i;:::-;28917;28985:2;28974:9;28970:18;28961:6;28917:72;:::i;:::-;29036:9;29030:4;29026:20;29021:2;29010:9;29006:18;28999:48;29064:76;29135:4;29126:6;29064:76;:::i;:::-;29056:84;;28507:640;;;;;;;:::o;29153:141::-;29209:5;29240:6;29234:13;29225:22;;29256:32;29282:5;29256:32;:::i;:::-;29153:141;;;;:::o;29300:349::-;29369:6;29418:2;29406:9;29397:7;29393:23;29389:32;29386:119;;;29424:79;;:::i;:::-;29386:119;29544:1;29569:63;29624:7;29615:6;29604:9;29600:22;29569:63;:::i;:::-;29559:73;;29515:127;29300:349;;;;:::o;29655:180::-;29703:77;29700:1;29693:88;29800:4;29797:1;29790:15;29824:4;29821:1;29814:15
Swarm Source
ipfs://cd672dcdc0327b706f570549ea972cd432bd3290e87c551f7139b5459e1e94de
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.