Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
48
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GKSC
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-11 */ /** *Submitted for verification at Etherscan.io on 2022-06-07 */ /** *Submitted for verification at Etherscan.io on 2022-05-24 */ ///╭━━━╮╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╭╮╭━╮╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╭━━━╮╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╭━━━┳╮╱╱╱╭╮ ///┃╭━╮┃╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱┃┃┃╭╯╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱┃╭━╮┃╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱┃╭━╮┃┃╱╱╱┃┃ ///┃┃╱╰╋━┳━━┳━━┳╮╭┳╮╱╭╮┃╰╯╯╭━━┳━╮╭━━┳━━┳━┳━━┳━━┳━━╮┃╰━━┳━━┳╮╭┳━━┳━╮╭━╮╭━━┳━━╮┃┃╱╰┫┃╭╮╭┫╰━╮ ///┃┃╭━┫╭┫╭╮┃╭╮┃╰╯┃┃╱┃┃┃╭╮┃┃╭╮┃╭╮┫╭╮┃╭╮┃╭┫╭╮┃╭╮┃━━┫╰━━╮┃╭╮┃╰╯┃╭╮┃╭╮┫╭╮┫╭╮┃━━┫┃┃╱╭┫┃┃┃┃┃╭╮┃ ///┃╰┻━┃┃┃╰╯┃╰╯┣╮╭┫╰━╯┃┃┃┃╰┫╭╮┃┃┃┃╰╯┃╭╮┃┃┃╰╯┃╰╯┣━━┃┃╰━╯┃╭╮┣╮╭┫╭╮┃┃┃┃┃┃┃╭╮┣━━┃┃╰━╯┃╰┫╰╯┃╰╯┃ ///╰━━━┻╯╰━━┻━━╯╰╯╰━╮╭╯╰╯╰━┻╯╰┻╯╰┻━╮┣╯╰┻╯╰━━┻━━┻━━╯╰━━━┻╯╰╯╰╯╰╯╰┻╯╰┻╯╰┻╯╰┻━━╯╰━━━┻━┻━━┻━━╯ ///╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╭━╯┃╱╱╱╱╱╱╱╱╱╱╱╭━╯┃ ///╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╰━━╯╱╱╱╱╱╱╱╱╱╱╱╰━━╯ ///╯╯ // SPDX-License-Identifier: MIT // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @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, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @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. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/GKSCNFT.sol pragma solidity ^0.8.0; contract GKSC is ERC721A, Ownable { using Strings for uint256; string private baseURI; uint256 public price = 0.005 ether; uint256 public maxPerTx = 10; uint256 public maxFreePerWallet = 3; uint256 public totalFree = 1000; uint256 public maxSupply = 10000; bool public mintEnabled = true; mapping(address => uint256) private _mintedFreeAmount; constructor() ERC721A("Groovy_Kangaro_Savannas_Club", "GKSCNFT") { _safeMint(msg.sender, 5); setBaseURI("ipfs://QmVahjak3REViddjh59VFCzbWXMFG9sp8fCz7Q98ArUjtb/"); } function mint(uint256 count) external payable { uint256 cost = price; bool isFree = ((totalSupply() + count < totalFree + 1) && (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet)); if (isFree) { cost = 0; } require(msg.value >= count * cost, "Please send the exact amount."); require(totalSupply() + count < maxSupply + 1, "No more"); require(mintEnabled, "Minting is not live yet"); require(count < maxPerTx + 1, "Max per TX reached."); if (isFree) { _mintedFreeAmount[msg.sender] += count; } _safeMint(msg.sender, count); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseURI, tokenId.toString(), ".json")); } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function setFreeAmount(uint256 amount) external onlyOwner { totalFree = amount; } function setPrice(uint256 _newPrice) external onlyOwner { price = _newPrice; } function flipSale() external onlyOwner { mintEnabled = !mintEnabled; } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success, "Transfer failed."); } }
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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","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":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526611c37937e08000600a55600a600b556003600c556103e8600d55612710600e556001600f60006101000a81548160ff0219169083151502179055503480156200004d57600080fd5b506040518060400160405280601c81526020017f47726f6f76795f4b616e6761726f5f536176616e6e61735f436c7562000000008152506040518060400160405280600781526020017f474b53434e4654000000000000000000000000000000000000000000000000008152508160029080519060200190620000d2929190620007a1565b508060039080519060200190620000eb929190620007a1565b50620000fc6200016760201b60201c565b600081905550505062000124620001186200016c60201b60201c565b6200017460201b60201c565b620001373360056200023a60201b60201c565b6200016160405180606001604052806036815260200162003cd6603691396200026060201b60201c565b62000b24565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200025c8282604051806020016040528060008152506200030b60201b60201c565b5050565b620002706200016c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000296620005ee60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e690620008b2565b60405180910390fd5b806009908051906020019062000307929190620007a1565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000378576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303620003b3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003c860008583866200061860201b60201c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000435600185146200061e60201b60201c565b901b60a042901b6200044d866200062860201b60201c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146200055e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200050a60008784806001019550876200063260201b60201c565b62000541576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620004935782600054146200055857600080fd5b620005ca565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200055f575b816000819055505050620005e860008583866200079360201b60201c565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006606200079960201b60201c565b8786866040518563ffffffff1660e01b8152600401620006849493929190620009d8565b6020604051808303816000875af1925050508015620006c357506040513d601f19601f82011682018060405250810190620006c0919062000a8e565b60015b62000740573d8060008114620006f6576040519150601f19603f3d011682016040523d82523d6000602084013e620006fb565b606091505b50600081510362000738576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b828054620007af9062000aef565b90600052602060002090601f016020900481019282620007d357600085556200081f565b82601f10620007ee57805160ff19168380011785556200081f565b828001600101855582156200081f579182015b828111156200081e57825182559160200191906001019062000801565b5b5090506200082e919062000832565b5090565b5b808211156200084d57600081600090555060010162000833565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200089a60208362000851565b9150620008a78262000862565b602082019050919050565b60006020820190508181036000830152620008cd816200088b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200090182620008d4565b9050919050565b6200091381620008f4565b82525050565b6000819050919050565b6200092e8162000919565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200097057808201518184015260208101905062000953565b8381111562000980576000848401525b50505050565b6000601f19601f8301169050919050565b6000620009a48262000934565b620009b081856200093f565b9350620009c281856020860162000950565b620009cd8162000986565b840191505092915050565b6000608082019050620009ef600083018762000908565b620009fe602083018662000908565b62000a0d604083018562000923565b818103606083015262000a21818462000997565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000a688162000a31565b811462000a7457600080fd5b50565b60008151905062000a888162000a5d565b92915050565b60006020828403121562000aa75762000aa662000a2c565b5b600062000ab78482850162000a77565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b0857607f821691505b60208210810362000b1e5762000b1d62000ac0565b5b50919050565b6131a28062000b346000396000f3fe6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063a702735711610095578063d5abeb0111610064578063d5abeb01146105f9578063e985e9c514610624578063f2fde38b14610661578063f968adbe1461068a576101c2565b8063a70273571461053d578063b88d4fde14610568578063c87b56dd14610591578063d1239730146105ce576101c2565b806395d89b41116100d157806395d89b41146104a2578063a035b1fe146104cd578063a0712d68146104f8578063a22cb46514610514576101c2565b80638da5cb5b1461042557806391b7f5ed1461045057806392910eec14610479576101c2565b80633ccfd60b116101645780636352211e1161013e5780636352211e1461037d57806370a08231146103ba578063715018a6146103f75780637ba5e6211461040e576101c2565b80633ccfd60b1461031457806342842e0e1461032b57806355f804b314610354576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c0578063333e44e6146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612290565b6106b5565b6040516101fb91906122d8565b60405180910390f35b34801561021057600080fd5b50610219610747565b604051610226919061238c565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906123e4565b6107d9565b6040516102639190612452565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612499565b610855565b005b3480156102a157600080fd5b506102aa6109fb565b6040516102b791906124e8565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612503565b610a12565b005b3480156102f557600080fd5b506102fe610a22565b60405161030b91906124e8565b60405180910390f35b34801561032057600080fd5b50610329610a28565b005b34801561033757600080fd5b50610352600480360381019061034d9190612503565b610b53565b005b34801561036057600080fd5b5061037b6004803603810190610376919061268b565b610b73565b005b34801561038957600080fd5b506103a4600480360381019061039f91906123e4565b610c09565b6040516103b19190612452565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc91906126d4565b610c1b565b6040516103ee91906124e8565b60405180910390f35b34801561040357600080fd5b5061040c610cd3565b005b34801561041a57600080fd5b50610423610d5b565b005b34801561043157600080fd5b5061043a610e03565b6040516104479190612452565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906123e4565b610e2d565b005b34801561048557600080fd5b506104a0600480360381019061049b91906123e4565b610eb3565b005b3480156104ae57600080fd5b506104b7610f39565b6040516104c4919061238c565b60405180910390f35b3480156104d957600080fd5b506104e2610fcb565b6040516104ef91906124e8565b60405180910390f35b610512600480360381019061050d91906123e4565b610fd1565b005b34801561052057600080fd5b5061053b6004803603810190610536919061272d565b61121d565b005b34801561054957600080fd5b50610552611394565b60405161055f91906124e8565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a919061280e565b61139a565b005b34801561059d57600080fd5b506105b860048036038101906105b391906123e4565b61140d565b6040516105c5919061238c565b60405180910390f35b3480156105da57600080fd5b506105e3611489565b6040516105f091906122d8565b60405180910390f35b34801561060557600080fd5b5061060e61149c565b60405161061b91906124e8565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190612891565b6114a2565b60405161065891906122d8565b60405180910390f35b34801561066d57600080fd5b50610688600480360381019061068391906126d4565b611536565b005b34801561069657600080fd5b5061069f61162d565b6040516106ac91906124e8565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107405750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461075690612900565b80601f016020809104026020016040519081016040528092919081815260200182805461078290612900565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e482611633565b61081a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086082611692565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108c7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e661175e565b73ffffffffffffffffffffffffffffffffffffffff1614610949576109128161090d61175e565b6114a2565b610948576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a05611766565b6001546000540303905090565b610a1d83838361176b565b505050565b600d5481565b610a30611b12565b73ffffffffffffffffffffffffffffffffffffffff16610a4e610e03565b73ffffffffffffffffffffffffffffffffffffffff1614610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b9061297d565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610aca906129ce565b60006040518083038185875af1925050503d8060008114610b07576040519150601f19603f3d011682016040523d82523d6000602084013e610b0c565b606091505b5050905080610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4790612a2f565b60405180910390fd5b50565b610b6e8383836040518060200160405280600081525061139a565b505050565b610b7b611b12565b73ffffffffffffffffffffffffffffffffffffffff16610b99610e03565b73ffffffffffffffffffffffffffffffffffffffff1614610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be69061297d565b60405180910390fd5b8060099080519060200190610c05929190612181565b5050565b6000610c1482611692565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c82576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cdb611b12565b73ffffffffffffffffffffffffffffffffffffffff16610cf9610e03565b73ffffffffffffffffffffffffffffffffffffffff1614610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d469061297d565b60405180910390fd5b610d596000611b1a565b565b610d63611b12565b73ffffffffffffffffffffffffffffffffffffffff16610d81610e03565b73ffffffffffffffffffffffffffffffffffffffff1614610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce9061297d565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e35611b12565b73ffffffffffffffffffffffffffffffffffffffff16610e53610e03565b73ffffffffffffffffffffffffffffffffffffffff1614610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea09061297d565b60405180910390fd5b80600a8190555050565b610ebb611b12565b73ffffffffffffffffffffffffffffffffffffffff16610ed9610e03565b73ffffffffffffffffffffffffffffffffffffffff1614610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f269061297d565b60405180910390fd5b80600d8190555050565b606060038054610f4890612900565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7490612900565b8015610fc15780601f10610f9657610100808354040283529160200191610fc1565b820191906000526020600020905b815481529060010190602001808311610fa457829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d54610fe99190612a7e565b83610ff26109fb565b610ffc9190612a7e565b1080156110555750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110529190612a7e565b11155b9050801561106257600091505b818361106e9190612ad4565b3410156110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790612b7a565b60405180910390fd5b6001600e546110bf9190612a7e565b836110c86109fb565b6110d29190612a7e565b10611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990612be6565b60405180910390fd5b600f60009054906101000a900460ff16611161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115890612c52565b60405180910390fd5b6001600b546111709190612a7e565b83106111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890612cbe565b60405180910390fd5b801561120e5782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112069190612a7e565b925050819055505b6112183384611be0565b505050565b61122561175e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611289576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061129661175e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661134361175e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138891906122d8565b60405180910390a35050565b600c5481565b6113a584848461176b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611407576113d084848484611bfe565b611406576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061141882611633565b611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e90612d50565b60405180910390fd5b600961146283611d4e565b604051602001611473929190612e8c565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61153e611b12565b73ffffffffffffffffffffffffffffffffffffffff1661155c610e03565b73ffffffffffffffffffffffffffffffffffffffff16146115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a99061297d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890612f2d565b60405180910390fd5b61162a81611b1a565b50565b600b5481565b60008161163e611766565b1115801561164d575060005482105b801561168b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806116a1611766565b11611727576000548110156117265760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611724575b6000810361171a5760046000836001900393508381526020019081526020016000205490506116f0565b8092505050611759565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061177682611692565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117dd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166117fe61175e565b73ffffffffffffffffffffffffffffffffffffffff16148061182d575061182c8561182761175e565b6114a2565b5b80611872575061183b61175e565b73ffffffffffffffffffffffffffffffffffffffff1661185a846107d9565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806118ab576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611911576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61191e8585856001611eae565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611a1b86611eb4565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611aa35760006001840190506000600460008381526020019081526020016000205403611aa1576000548114611aa0578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b0b8585856001611ebe565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bfa828260405180602001604052806000815250611ec4565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c2461175e565b8786866040518563ffffffff1660e01b8152600401611c469493929190612fa2565b6020604051808303816000875af1925050508015611c8257506040513d601f19601f82011682018060405250810190611c7f9190613003565b60015b611cfb573d8060008114611cb2576040519150601f19603f3d011682016040523d82523d6000602084013e611cb7565b606091505b506000815103611cf3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611d95576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ea9565b600082905060005b60008214611dc7578080611db090613030565b915050600a82611dc091906130a7565b9150611d9d565b60008167ffffffffffffffff811115611de357611de2612560565b5b6040519080825280601f01601f191660200182016040528015611e155781602001600182028036833780820191505090505b5090505b60008514611ea257600182611e2e91906130d8565b9150600a85611e3d919061310c565b6030611e499190612a7e565b60f81b818381518110611e5f57611e5e61313d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e9b91906130a7565b9450611e19565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f30576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303611f6a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f776000858386611eae565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611fdc60018514612177565b901b60a042901b611fec86611eb4565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146120f0575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120a06000878480600101955087611bfe565b6120d6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106120315782600054146120eb57600080fd5b61215b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106120f1575b8160008190555050506121716000858386611ebe565b50505050565b6000819050919050565b82805461218d90612900565b90600052602060002090601f0160209004810192826121af57600085556121f6565b82601f106121c857805160ff19168380011785556121f6565b828001600101855582156121f6579182015b828111156121f55782518255916020019190600101906121da565b5b5090506122039190612207565b5090565b5b80821115612220576000816000905550600101612208565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61226d81612238565b811461227857600080fd5b50565b60008135905061228a81612264565b92915050565b6000602082840312156122a6576122a561222e565b5b60006122b48482850161227b565b91505092915050565b60008115159050919050565b6122d2816122bd565b82525050565b60006020820190506122ed60008301846122c9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561232d578082015181840152602081019050612312565b8381111561233c576000848401525b50505050565b6000601f19601f8301169050919050565b600061235e826122f3565b61236881856122fe565b935061237881856020860161230f565b61238181612342565b840191505092915050565b600060208201905081810360008301526123a68184612353565b905092915050565b6000819050919050565b6123c1816123ae565b81146123cc57600080fd5b50565b6000813590506123de816123b8565b92915050565b6000602082840312156123fa576123f961222e565b5b6000612408848285016123cf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061243c82612411565b9050919050565b61244c81612431565b82525050565b60006020820190506124676000830184612443565b92915050565b61247681612431565b811461248157600080fd5b50565b6000813590506124938161246d565b92915050565b600080604083850312156124b0576124af61222e565b5b60006124be85828601612484565b92505060206124cf858286016123cf565b9150509250929050565b6124e2816123ae565b82525050565b60006020820190506124fd60008301846124d9565b92915050565b60008060006060848603121561251c5761251b61222e565b5b600061252a86828701612484565b935050602061253b86828701612484565b925050604061254c868287016123cf565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61259882612342565b810181811067ffffffffffffffff821117156125b7576125b6612560565b5b80604052505050565b60006125ca612224565b90506125d6828261258f565b919050565b600067ffffffffffffffff8211156125f6576125f5612560565b5b6125ff82612342565b9050602081019050919050565b82818337600083830152505050565b600061262e612629846125db565b6125c0565b90508281526020810184848401111561264a5761264961255b565b5b61265584828561260c565b509392505050565b600082601f83011261267257612671612556565b5b813561268284826020860161261b565b91505092915050565b6000602082840312156126a1576126a061222e565b5b600082013567ffffffffffffffff8111156126bf576126be612233565b5b6126cb8482850161265d565b91505092915050565b6000602082840312156126ea576126e961222e565b5b60006126f884828501612484565b91505092915050565b61270a816122bd565b811461271557600080fd5b50565b60008135905061272781612701565b92915050565b600080604083850312156127445761274361222e565b5b600061275285828601612484565b925050602061276385828601612718565b9150509250929050565b600067ffffffffffffffff82111561278857612787612560565b5b61279182612342565b9050602081019050919050565b60006127b16127ac8461276d565b6125c0565b9050828152602081018484840111156127cd576127cc61255b565b5b6127d884828561260c565b509392505050565b600082601f8301126127f5576127f4612556565b5b813561280584826020860161279e565b91505092915050565b600080600080608085870312156128285761282761222e565b5b600061283687828801612484565b945050602061284787828801612484565b9350506040612858878288016123cf565b925050606085013567ffffffffffffffff81111561287957612878612233565b5b612885878288016127e0565b91505092959194509250565b600080604083850312156128a8576128a761222e565b5b60006128b685828601612484565b92505060206128c785828601612484565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061291857607f821691505b60208210810361292b5761292a6128d1565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129676020836122fe565b915061297282612931565b602082019050919050565b600060208201905081810360008301526129968161295a565b9050919050565b600081905092915050565b50565b60006129b860008361299d565b91506129c3826129a8565b600082019050919050565b60006129d9826129ab565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612a196010836122fe565b9150612a24826129e3565b602082019050919050565b60006020820190508181036000830152612a4881612a0c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a89826123ae565b9150612a94836123ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ac957612ac8612a4f565b5b828201905092915050565b6000612adf826123ae565b9150612aea836123ae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b2357612b22612a4f565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612b64601d836122fe565b9150612b6f82612b2e565b602082019050919050565b60006020820190508181036000830152612b9381612b57565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000612bd06007836122fe565b9150612bdb82612b9a565b602082019050919050565b60006020820190508181036000830152612bff81612bc3565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b6000612c3c6017836122fe565b9150612c4782612c06565b602082019050919050565b60006020820190508181036000830152612c6b81612c2f565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612ca86013836122fe565b9150612cb382612c72565b602082019050919050565b60006020820190508181036000830152612cd781612c9b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612d3a602f836122fe565b9150612d4582612cde565b604082019050919050565b60006020820190508181036000830152612d6981612d2d565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612d9d81612900565b612da78186612d70565b94506001821660008114612dc25760018114612dd357612e06565b60ff19831686528186019350612e06565b612ddc85612d7b565b60005b83811015612dfe57815481890152600182019150602081019050612ddf565b838801955050505b50505092915050565b6000612e1a826122f3565b612e248185612d70565b9350612e3481856020860161230f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612e76600583612d70565b9150612e8182612e40565b600582019050919050565b6000612e988285612d90565b9150612ea48284612e0f565b9150612eaf82612e69565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f176026836122fe565b9150612f2282612ebb565b604082019050919050565b60006020820190508181036000830152612f4681612f0a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f7482612f4d565b612f7e8185612f58565b9350612f8e81856020860161230f565b612f9781612342565b840191505092915050565b6000608082019050612fb76000830187612443565b612fc46020830186612443565b612fd160408301856124d9565b8181036060830152612fe38184612f69565b905095945050505050565b600081519050612ffd81612264565b92915050565b6000602082840312156130195761301861222e565b5b600061302784828501612fee565b91505092915050565b600061303b826123ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361306d5761306c612a4f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006130b2826123ae565b91506130bd836123ae565b9250826130cd576130cc613078565b5b828204905092915050565b60006130e3826123ae565b91506130ee836123ae565b92508282101561310157613100612a4f565b5b828203905092915050565b6000613117826123ae565b9150613122836123ae565b92508261313257613131613078565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a435e582ec5adece5c88ed80c31f994c40ed9f76492e7dd2127d5e656606d09f64736f6c634300080e0033697066733a2f2f516d5661686a616b335245566964646a6835395646437a6257584d46473973703866437a375139384172556a74622f
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063a702735711610095578063d5abeb0111610064578063d5abeb01146105f9578063e985e9c514610624578063f2fde38b14610661578063f968adbe1461068a576101c2565b8063a70273571461053d578063b88d4fde14610568578063c87b56dd14610591578063d1239730146105ce576101c2565b806395d89b41116100d157806395d89b41146104a2578063a035b1fe146104cd578063a0712d68146104f8578063a22cb46514610514576101c2565b80638da5cb5b1461042557806391b7f5ed1461045057806392910eec14610479576101c2565b80633ccfd60b116101645780636352211e1161013e5780636352211e1461037d57806370a08231146103ba578063715018a6146103f75780637ba5e6211461040e576101c2565b80633ccfd60b1461031457806342842e0e1461032b57806355f804b314610354576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806323b872dd146102c0578063333e44e6146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612290565b6106b5565b6040516101fb91906122d8565b60405180910390f35b34801561021057600080fd5b50610219610747565b604051610226919061238c565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906123e4565b6107d9565b6040516102639190612452565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612499565b610855565b005b3480156102a157600080fd5b506102aa6109fb565b6040516102b791906124e8565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612503565b610a12565b005b3480156102f557600080fd5b506102fe610a22565b60405161030b91906124e8565b60405180910390f35b34801561032057600080fd5b50610329610a28565b005b34801561033757600080fd5b50610352600480360381019061034d9190612503565b610b53565b005b34801561036057600080fd5b5061037b6004803603810190610376919061268b565b610b73565b005b34801561038957600080fd5b506103a4600480360381019061039f91906123e4565b610c09565b6040516103b19190612452565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc91906126d4565b610c1b565b6040516103ee91906124e8565b60405180910390f35b34801561040357600080fd5b5061040c610cd3565b005b34801561041a57600080fd5b50610423610d5b565b005b34801561043157600080fd5b5061043a610e03565b6040516104479190612452565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906123e4565b610e2d565b005b34801561048557600080fd5b506104a0600480360381019061049b91906123e4565b610eb3565b005b3480156104ae57600080fd5b506104b7610f39565b6040516104c4919061238c565b60405180910390f35b3480156104d957600080fd5b506104e2610fcb565b6040516104ef91906124e8565b60405180910390f35b610512600480360381019061050d91906123e4565b610fd1565b005b34801561052057600080fd5b5061053b6004803603810190610536919061272d565b61121d565b005b34801561054957600080fd5b50610552611394565b60405161055f91906124e8565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a919061280e565b61139a565b005b34801561059d57600080fd5b506105b860048036038101906105b391906123e4565b61140d565b6040516105c5919061238c565b60405180910390f35b3480156105da57600080fd5b506105e3611489565b6040516105f091906122d8565b60405180910390f35b34801561060557600080fd5b5061060e61149c565b60405161061b91906124e8565b60405180910390f35b34801561063057600080fd5b5061064b60048036038101906106469190612891565b6114a2565b60405161065891906122d8565b60405180910390f35b34801561066d57600080fd5b50610688600480360381019061068391906126d4565b611536565b005b34801561069657600080fd5b5061069f61162d565b6040516106ac91906124e8565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107405750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461075690612900565b80601f016020809104026020016040519081016040528092919081815260200182805461078290612900565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b60006107e482611633565b61081a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086082611692565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108c7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e661175e565b73ffffffffffffffffffffffffffffffffffffffff1614610949576109128161090d61175e565b6114a2565b610948576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a05611766565b6001546000540303905090565b610a1d83838361176b565b505050565b600d5481565b610a30611b12565b73ffffffffffffffffffffffffffffffffffffffff16610a4e610e03565b73ffffffffffffffffffffffffffffffffffffffff1614610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b9061297d565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610aca906129ce565b60006040518083038185875af1925050503d8060008114610b07576040519150601f19603f3d011682016040523d82523d6000602084013e610b0c565b606091505b5050905080610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4790612a2f565b60405180910390fd5b50565b610b6e8383836040518060200160405280600081525061139a565b505050565b610b7b611b12565b73ffffffffffffffffffffffffffffffffffffffff16610b99610e03565b73ffffffffffffffffffffffffffffffffffffffff1614610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be69061297d565b60405180910390fd5b8060099080519060200190610c05929190612181565b5050565b6000610c1482611692565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c82576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cdb611b12565b73ffffffffffffffffffffffffffffffffffffffff16610cf9610e03565b73ffffffffffffffffffffffffffffffffffffffff1614610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d469061297d565b60405180910390fd5b610d596000611b1a565b565b610d63611b12565b73ffffffffffffffffffffffffffffffffffffffff16610d81610e03565b73ffffffffffffffffffffffffffffffffffffffff1614610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce9061297d565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e35611b12565b73ffffffffffffffffffffffffffffffffffffffff16610e53610e03565b73ffffffffffffffffffffffffffffffffffffffff1614610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea09061297d565b60405180910390fd5b80600a8190555050565b610ebb611b12565b73ffffffffffffffffffffffffffffffffffffffff16610ed9610e03565b73ffffffffffffffffffffffffffffffffffffffff1614610f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f269061297d565b60405180910390fd5b80600d8190555050565b606060038054610f4890612900565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7490612900565b8015610fc15780601f10610f9657610100808354040283529160200191610fc1565b820191906000526020600020905b815481529060010190602001808311610fa457829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d54610fe99190612a7e565b83610ff26109fb565b610ffc9190612a7e565b1080156110555750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110529190612a7e565b11155b9050801561106257600091505b818361106e9190612ad4565b3410156110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790612b7a565b60405180910390fd5b6001600e546110bf9190612a7e565b836110c86109fb565b6110d29190612a7e565b10611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990612be6565b60405180910390fd5b600f60009054906101000a900460ff16611161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115890612c52565b60405180910390fd5b6001600b546111709190612a7e565b83106111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a890612cbe565b60405180910390fd5b801561120e5782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112069190612a7e565b925050819055505b6112183384611be0565b505050565b61122561175e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611289576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061129661175e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661134361175e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138891906122d8565b60405180910390a35050565b600c5481565b6113a584848461176b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611407576113d084848484611bfe565b611406576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061141882611633565b611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144e90612d50565b60405180910390fd5b600961146283611d4e565b604051602001611473929190612e8c565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61153e611b12565b73ffffffffffffffffffffffffffffffffffffffff1661155c610e03565b73ffffffffffffffffffffffffffffffffffffffff16146115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a99061297d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890612f2d565b60405180910390fd5b61162a81611b1a565b50565b600b5481565b60008161163e611766565b1115801561164d575060005482105b801561168b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806116a1611766565b11611727576000548110156117265760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611724575b6000810361171a5760046000836001900393508381526020019081526020016000205490506116f0565b8092505050611759565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061177682611692565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117dd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166117fe61175e565b73ffffffffffffffffffffffffffffffffffffffff16148061182d575061182c8561182761175e565b6114a2565b5b80611872575061183b61175e565b73ffffffffffffffffffffffffffffffffffffffff1661185a846107d9565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806118ab576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611911576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61191e8585856001611eae565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611a1b86611eb4565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611aa35760006001840190506000600460008381526020019081526020016000205403611aa1576000548114611aa0578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b0b8585856001611ebe565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611bfa828260405180602001604052806000815250611ec4565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c2461175e565b8786866040518563ffffffff1660e01b8152600401611c469493929190612fa2565b6020604051808303816000875af1925050508015611c8257506040513d601f19601f82011682018060405250810190611c7f9190613003565b60015b611cfb573d8060008114611cb2576040519150601f19603f3d011682016040523d82523d6000602084013e611cb7565b606091505b506000815103611cf3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611d95576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ea9565b600082905060005b60008214611dc7578080611db090613030565b915050600a82611dc091906130a7565b9150611d9d565b60008167ffffffffffffffff811115611de357611de2612560565b5b6040519080825280601f01601f191660200182016040528015611e155781602001600182028036833780820191505090505b5090505b60008514611ea257600182611e2e91906130d8565b9150600a85611e3d919061310c565b6030611e499190612a7e565b60f81b818381518110611e5f57611e5e61313d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e9b91906130a7565b9450611e19565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f30576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303611f6a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f776000858386611eae565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611fdc60018514612177565b901b60a042901b611fec86611eb4565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146120f0575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120a06000878480600101955087611bfe565b6120d6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106120315782600054146120eb57600080fd5b61215b565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106120f1575b8160008190555050506121716000858386611ebe565b50505050565b6000819050919050565b82805461218d90612900565b90600052602060002090601f0160209004810192826121af57600085556121f6565b82601f106121c857805160ff19168380011785556121f6565b828001600101855582156121f6579182015b828111156121f55782518255916020019190600101906121da565b5b5090506122039190612207565b5090565b5b80821115612220576000816000905550600101612208565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61226d81612238565b811461227857600080fd5b50565b60008135905061228a81612264565b92915050565b6000602082840312156122a6576122a561222e565b5b60006122b48482850161227b565b91505092915050565b60008115159050919050565b6122d2816122bd565b82525050565b60006020820190506122ed60008301846122c9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561232d578082015181840152602081019050612312565b8381111561233c576000848401525b50505050565b6000601f19601f8301169050919050565b600061235e826122f3565b61236881856122fe565b935061237881856020860161230f565b61238181612342565b840191505092915050565b600060208201905081810360008301526123a68184612353565b905092915050565b6000819050919050565b6123c1816123ae565b81146123cc57600080fd5b50565b6000813590506123de816123b8565b92915050565b6000602082840312156123fa576123f961222e565b5b6000612408848285016123cf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061243c82612411565b9050919050565b61244c81612431565b82525050565b60006020820190506124676000830184612443565b92915050565b61247681612431565b811461248157600080fd5b50565b6000813590506124938161246d565b92915050565b600080604083850312156124b0576124af61222e565b5b60006124be85828601612484565b92505060206124cf858286016123cf565b9150509250929050565b6124e2816123ae565b82525050565b60006020820190506124fd60008301846124d9565b92915050565b60008060006060848603121561251c5761251b61222e565b5b600061252a86828701612484565b935050602061253b86828701612484565b925050604061254c868287016123cf565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61259882612342565b810181811067ffffffffffffffff821117156125b7576125b6612560565b5b80604052505050565b60006125ca612224565b90506125d6828261258f565b919050565b600067ffffffffffffffff8211156125f6576125f5612560565b5b6125ff82612342565b9050602081019050919050565b82818337600083830152505050565b600061262e612629846125db565b6125c0565b90508281526020810184848401111561264a5761264961255b565b5b61265584828561260c565b509392505050565b600082601f83011261267257612671612556565b5b813561268284826020860161261b565b91505092915050565b6000602082840312156126a1576126a061222e565b5b600082013567ffffffffffffffff8111156126bf576126be612233565b5b6126cb8482850161265d565b91505092915050565b6000602082840312156126ea576126e961222e565b5b60006126f884828501612484565b91505092915050565b61270a816122bd565b811461271557600080fd5b50565b60008135905061272781612701565b92915050565b600080604083850312156127445761274361222e565b5b600061275285828601612484565b925050602061276385828601612718565b9150509250929050565b600067ffffffffffffffff82111561278857612787612560565b5b61279182612342565b9050602081019050919050565b60006127b16127ac8461276d565b6125c0565b9050828152602081018484840111156127cd576127cc61255b565b5b6127d884828561260c565b509392505050565b600082601f8301126127f5576127f4612556565b5b813561280584826020860161279e565b91505092915050565b600080600080608085870312156128285761282761222e565b5b600061283687828801612484565b945050602061284787828801612484565b9350506040612858878288016123cf565b925050606085013567ffffffffffffffff81111561287957612878612233565b5b612885878288016127e0565b91505092959194509250565b600080604083850312156128a8576128a761222e565b5b60006128b685828601612484565b92505060206128c785828601612484565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061291857607f821691505b60208210810361292b5761292a6128d1565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129676020836122fe565b915061297282612931565b602082019050919050565b600060208201905081810360008301526129968161295a565b9050919050565b600081905092915050565b50565b60006129b860008361299d565b91506129c3826129a8565b600082019050919050565b60006129d9826129ab565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612a196010836122fe565b9150612a24826129e3565b602082019050919050565b60006020820190508181036000830152612a4881612a0c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a89826123ae565b9150612a94836123ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ac957612ac8612a4f565b5b828201905092915050565b6000612adf826123ae565b9150612aea836123ae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b2357612b22612a4f565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612b64601d836122fe565b9150612b6f82612b2e565b602082019050919050565b60006020820190508181036000830152612b9381612b57565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000612bd06007836122fe565b9150612bdb82612b9a565b602082019050919050565b60006020820190508181036000830152612bff81612bc3565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b6000612c3c6017836122fe565b9150612c4782612c06565b602082019050919050565b60006020820190508181036000830152612c6b81612c2f565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612ca86013836122fe565b9150612cb382612c72565b602082019050919050565b60006020820190508181036000830152612cd781612c9b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612d3a602f836122fe565b9150612d4582612cde565b604082019050919050565b60006020820190508181036000830152612d6981612d2d565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612d9d81612900565b612da78186612d70565b94506001821660008114612dc25760018114612dd357612e06565b60ff19831686528186019350612e06565b612ddc85612d7b565b60005b83811015612dfe57815481890152600182019150602081019050612ddf565b838801955050505b50505092915050565b6000612e1a826122f3565b612e248185612d70565b9350612e3481856020860161230f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612e76600583612d70565b9150612e8182612e40565b600582019050919050565b6000612e988285612d90565b9150612ea48284612e0f565b9150612eaf82612e69565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f176026836122fe565b9150612f2282612ebb565b604082019050919050565b60006020820190508181036000830152612f4681612f0a565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612f7482612f4d565b612f7e8185612f58565b9350612f8e81856020860161230f565b612f9781612342565b840191505092915050565b6000608082019050612fb76000830187612443565b612fc46020830186612443565b612fd160408301856124d9565b8181036060830152612fe38184612f69565b905095945050505050565b600081519050612ffd81612264565b92915050565b6000602082840312156130195761301861222e565b5b600061302784828501612fee565b91505092915050565b600061303b826123ae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361306d5761306c612a4f565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006130b2826123ae565b91506130bd836123ae565b9250826130cd576130cc613078565b5b828204905092915050565b60006130e3826123ae565b91506130ee836123ae565b92508282101561310157613100612a4f565b5b828203905092915050565b6000613117826123ae565b9150613122836123ae565b92508261313257613131613078565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220a435e582ec5adece5c88ed80c31f994c40ed9f76492e7dd2127d5e656606d09f64736f6c634300080e0033
Deployed Bytecode Sourcemap
78626:2374:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15145:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20158:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22226:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21686:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14199:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23112:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78856:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80791:206;;;;;;;;;;;;;:::i;:::-;;23353:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80400:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19947:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15824:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45666:103;;;;;;;;;;;;;:::i;:::-;;80699:84;;;;;;;;;;;;;:::i;:::-;;45015:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80599:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80496:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20327:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78732:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79233:685;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22502:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78812:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23609:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80042:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78937:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78896:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22881:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45924:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78775:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15145:615;15230:4;15545:10;15530:25;;:11;:25;;;;:102;;;;15622:10;15607:25;;:11;:25;;;;15530:102;:179;;;;15699:10;15684:25;;:11;:25;;;;15530:179;15510:199;;15145:615;;;:::o;20158:100::-;20212:13;20245:5;20238:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20158:100;:::o;22226:204::-;22294:7;22319:16;22327:7;22319;:16::i;:::-;22314:64;;22344:34;;;;;;;;;;;;;;22314:64;22398:15;:24;22414:7;22398:24;;;;;;;;;;;;;;;;;;;;;22391:31;;22226:204;;;:::o;21686:474::-;21759:13;21791:27;21810:7;21791:18;:27::i;:::-;21759:61;;21841:5;21835:11;;:2;:11;;;21831:48;;21855:24;;;;;;;;;;;;;;21831:48;21919:5;21896:28;;:19;:17;:19::i;:::-;:28;;;21892:175;;21944:44;21961:5;21968:19;:17;:19::i;:::-;21944:16;:44::i;:::-;21939:128;;22016:35;;;;;;;;;;;;;;21939:128;21892:175;22106:2;22079:15;:24;22095:7;22079:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;22144:7;22140:2;22124:28;;22133:5;22124:28;;;;;;;;;;;;21748:412;21686:474;;:::o;14199:315::-;14252:7;14480:15;:13;:15::i;:::-;14465:12;;14449:13;;:28;:46;14442:53;;14199:315;:::o;23112:170::-;23246:28;23256:4;23262:2;23266:7;23246:9;:28::i;:::-;23112:170;;;:::o;78856:31::-;;;;:::o;80791:206::-;45246:12;:10;:12::i;:::-;45235:23;;:7;:5;:7::i;:::-;:23;;;45227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80842:12:::1;80868:10;80860:24;;80906:21;80860:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80841:101;;;80961:7;80953:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;80830:167;80791:206::o:0;23353:185::-;23491:39;23508:4;23514:2;23518:7;23491:39;;;;;;;;;;;;:16;:39::i;:::-;23353:185;;;:::o;80400:88::-;45246:12;:10;:12::i;:::-;45235:23;;:7;:5;:7::i;:::-;:23;;;45227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80477:3:::1;80467:7;:13;;;;;;;;;;;;:::i;:::-;;80400:88:::0;:::o;19947:144::-;20011:7;20054:27;20073:7;20054:18;:27::i;:::-;20031:52;;19947:144;;;:::o;15824:224::-;15888:7;15929:1;15912:19;;:5;:19;;;15908:60;;15940:28;;;;;;;;;;;;;;15908:60;11163:13;15986:18;:25;16005:5;15986:25;;;;;;;;;;;;;;;;:54;15979:61;;15824:224;;;:::o;45666:103::-;45246:12;:10;:12::i;:::-;45235:23;;:7;:5;:7::i;:::-;:23;;;45227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45731:30:::1;45758:1;45731:18;:30::i;:::-;45666:103::o:0;80699:84::-;45246:12;:10;:12::i;:::-;45235:23;;:7;:5;:7::i;:::-;:23;;;45227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80764:11:::1;;;;;;;;;;;80763:12;80749:11;;:26;;;;;;;;;;;;;;;;;;80699:84::o:0;45015:87::-;45061:7;45088:6;;;;;;;;;;;45081:13;;45015:87;:::o;80599:92::-;45246:12;:10;:12::i;:::-;45235:23;;:7;:5;:7::i;:::-;:23;;;45227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80674:9:::1;80666:5;:17;;;;80599:92:::0;:::o;80496:95::-;45246:12;:10;:12::i;:::-;45235:23;;:7;:5;:7::i;:::-;:23;;;45227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80577:6:::1;80565:9;:18;;;;80496:95:::0;:::o;20327:104::-;20383:13;20416:7;20409:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20327:104;:::o;78732:34::-;;;;:::o;79233:685::-;79290:12;79305:5;;79290:20;;79321:11;79373:1;79361:9;;:13;;;;:::i;:::-;79353:5;79337:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;79336:115;;;;;79434:16;;79425:5;79393:17;:29;79411:10;79393:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;79336:115;79321:131;;79469:6;79465:47;;;79499:1;79492:8;;79465:47;79553:4;79545:5;:12;;;;:::i;:::-;79532:9;:25;;79524:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;79646:1;79634:9;;:13;;;;:::i;:::-;79626:5;79610:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;79602:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;79678:11;;;;;;;;;;;79670:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;79755:1;79744:8;;:12;;;;:::i;:::-;79736:5;:20;79728:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;79797:6;79793:77;;;79853:5;79820:17;:29;79838:10;79820:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;79793:77;79882:28;79892:10;79904:5;79882:9;:28::i;:::-;79279:639;;79233:685;:::o;22502:308::-;22613:19;:17;:19::i;:::-;22601:31;;:8;:31;;;22597:61;;22641:17;;;;;;;;;;;;;;22597:61;22723:8;22671:18;:39;22690:19;:17;:19::i;:::-;22671:39;;;;;;;;;;;;;;;:49;22711:8;22671:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;22783:8;22747:55;;22762:19;:17;:19::i;:::-;22747:55;;;22793:8;22747:55;;;;;;:::i;:::-;;;;;;;;22502:308;;:::o;78812:35::-;;;;:::o;23609:396::-;23776:28;23786:4;23792:2;23796:7;23776:9;:28::i;:::-;23837:1;23819:2;:14;;;:19;23815:183;;23858:56;23889:4;23895:2;23899:7;23908:5;23858:30;:56::i;:::-;23853:145;;23942:40;;;;;;;;;;;;;;23853:145;23815:183;23609:396;;;;:::o;80042:350::-;80160:13;80213:16;80221:7;80213;:16::i;:::-;80191:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;80346:7;80355:18;:7;:16;:18::i;:::-;80329:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80315:69;;80042:350;;;:::o;78937:30::-;;;;;;;;;;;;;:::o;78896:32::-;;;;:::o;22881:164::-;22978:4;23002:18;:25;23021:5;23002:25;;;;;;;;;;;;;;;:35;23028:8;23002:35;;;;;;;;;;;;;;;;;;;;;;;;;22995:42;;22881:164;;;;:::o;45924:201::-;45246:12;:10;:12::i;:::-;45235:23;;:7;:5;:7::i;:::-;:23;;;45227:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46033:1:::1;46013:22;;:8;:22;;::::0;46005:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;46089:28;46108:8;46089:18;:28::i;:::-;45924:201:::0;:::o;78775:28::-;;;;:::o;24260:273::-;24317:4;24373:7;24354:15;:13;:15::i;:::-;:26;;:66;;;;;24407:13;;24397:7;:23;24354:66;:152;;;;;24505:1;11933:8;24458:17;:26;24476:7;24458:26;;;;;;;;;;;;:43;:48;24354:152;24334:172;;24260:273;;;:::o;17462:1129::-;17529:7;17549:12;17564:7;17549:22;;17632:4;17613:15;:13;:15::i;:::-;:23;17609:915;;17666:13;;17659:4;:20;17655:869;;;17704:14;17721:17;:23;17739:4;17721:23;;;;;;;;;;;;17704:40;;17837:1;11933:8;17810:6;:23;:28;17806:699;;18329:113;18346:1;18336:6;:11;18329:113;;18389:17;:25;18407:6;;;;;;;18389:25;;;;;;;;;;;;18380:34;;18329:113;;;18475:6;18468:13;;;;;;17806:699;17681:843;17655:869;17609:915;18552:31;;;;;;;;;;;;;;17462:1129;;;;:::o;38242:105::-;38302:7;38329:10;38322:17;;38242:105;:::o;13722:92::-;13778:7;13722:92;:::o;29499:2515::-;29614:27;29644;29663:7;29644:18;:27::i;:::-;29614:57;;29729:4;29688:45;;29704:19;29688:45;;;29684:86;;29742:28;;;;;;;;;;;;;;29684:86;29783:22;29832:4;29809:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;29853:43;29870:4;29876:19;:17;:19::i;:::-;29853:16;:43::i;:::-;29809:87;:147;;;;29937:19;:17;:19::i;:::-;29913:43;;:20;29925:7;29913:11;:20::i;:::-;:43;;;29809:147;29783:174;;29975:17;29970:66;;30001:35;;;;;;;;;;;;;;29970:66;30065:1;30051:16;;:2;:16;;;30047:52;;30076:23;;;;;;;;;;;;;;30047:52;30112:43;30134:4;30140:2;30144:7;30153:1;30112:21;:43::i;:::-;30228:15;:24;30244:7;30228:24;;;;;;;;;;;;30221:31;;;;;;;;;;;30620:18;:24;30639:4;30620:24;;;;;;;;;;;;;;;;30618:26;;;;;;;;;;;;30689:18;:22;30708:2;30689:22;;;;;;;;;;;;;;;;30687:24;;;;;;;;;;;12215:8;11817:3;31070:15;:41;;31028:21;31046:2;31028:17;:21::i;:::-;:84;:128;30982:17;:26;31000:7;30982:26;;;;;;;;;;;:174;;;;31326:1;12215:8;31276:19;:46;:51;31272:626;;31348:19;31380:1;31370:7;:11;31348:33;;31537:1;31503:17;:30;31521:11;31503:30;;;;;;;;;;;;:35;31499:384;;31641:13;;31626:11;:28;31622:242;;31821:19;31788:17;:30;31806:11;31788:30;;;;;;;;;;;:52;;;;31622:242;31499:384;31329:569;31272:626;31945:7;31941:2;31926:27;;31935:4;31926:27;;;;;;;;;;;;31964:42;31985:4;31991:2;31995:7;32004:1;31964:20;:42::i;:::-;29603:2411;;29499:2515;;;:::o;43686:98::-;43739:7;43766:10;43759:17;;43686:98;:::o;46285:191::-;46359:16;46378:6;;;;;;;;;;;46359:25;;46404:8;46395:6;;:17;;;;;;;;;;;;;;;;;;46459:8;46428:40;;46449:8;46428:40;;;;;;;;;;;;46348:128;46285:191;:::o;24617:104::-;24686:27;24696:2;24700:8;24686:27;;;;;;;;;;;;:9;:27::i;:::-;24617:104;;:::o;35711:716::-;35874:4;35920:2;35895:45;;;35941:19;:17;:19::i;:::-;35962:4;35968:7;35977:5;35895:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35891:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36195:1;36178:6;:13;:18;36174:235;;36224:40;;;;;;;;;;;;;;36174:235;36367:6;36361:13;36352:6;36348:2;36344:15;36337:38;35891:529;36064:54;;;36054:64;;;:6;:64;;;;36047:71;;;35711:716;;;;;;:::o;40887:723::-;40943:13;41173:1;41164:5;:10;41160:53;;41191:10;;;;;;;;;;;;;;;;;;;;;41160:53;41223:12;41238:5;41223:20;;41254:14;41279:78;41294:1;41286:4;:9;41279:78;;41312:8;;;;;:::i;:::-;;;;41343:2;41335:10;;;;;:::i;:::-;;;41279:78;;;41367:19;41399:6;41389:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41367:39;;41417:154;41433:1;41424:5;:10;41417:154;;41461:1;41451:11;;;;;:::i;:::-;;;41528:2;41520:5;:10;;;;:::i;:::-;41507:2;:24;;;;:::i;:::-;41494:39;;41477:6;41484;41477:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;41557:2;41548:11;;;;;:::i;:::-;;;41417:154;;;41595:6;41581:21;;;;;40887:723;;;;:::o;37075:159::-;;;;;:::o;21247:148::-;21311:14;21372:5;21362:15;;21247:148;;;:::o;37893:158::-;;;;;:::o;25094:2236::-;25217:20;25240:13;;25217:36;;25282:1;25268:16;;:2;:16;;;25264:48;;25293:19;;;;;;;;;;;;;;25264:48;25339:1;25327:8;:13;25323:44;;25349:18;;;;;;;;;;;;;;25323:44;25380:61;25410:1;25414:2;25418:12;25432:8;25380:21;:61::i;:::-;25984:1;11300:2;25955:1;:25;;25954:31;25942:8;:44;25916:18;:22;25935:2;25916:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;12080:3;26385:29;26412:1;26400:8;:13;26385:14;:29::i;:::-;:56;;11817:3;26322:15;:41;;26280:21;26298:2;26280:17;:21::i;:::-;:84;:162;26229:17;:31;26247:12;26229:31;;;;;;;;;;;:213;;;;26459:20;26482:12;26459:35;;26509:11;26538:8;26523:12;:23;26509:37;;26585:1;26567:2;:14;;;:19;26563:635;;26607:313;26663:12;26659:2;26638:38;;26655:1;26638:38;;;;;;;;;;;;26704:69;26743:1;26747:2;26751:14;;;;;;26767:5;26704:30;:69::i;:::-;26699:174;;26809:40;;;;;;;;;;;;;;26699:174;26915:3;26900:12;:18;26607:313;;27001:12;26984:13;;:29;26980:43;;27015:8;;;26980:43;26563:635;;;27064:119;27120:14;;;;;;27116:2;27095:40;;27112:1;27095:40;;;;;;;;;;;;27178:3;27163:12;:18;27064:119;;26563:635;27228:12;27212:13;:28;;;;25693:1559;;27262:60;27291:1;27295:2;27299:12;27313:8;27262:20;:60::i;:::-;25206:2124;25094:2236;;;:::o;21482:142::-;21540:14;21601:5;21591:15;;21482:142;;;:::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:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:147::-;13719:11;13756:3;13741:18;;13618:147;;;;:::o;13771:114::-;;:::o;13891:398::-;14050:3;14071:83;14152:1;14147:3;14071:83;:::i;:::-;14064:90;;14163:93;14252:3;14163:93;:::i;:::-;14281:1;14276:3;14272:11;14265:18;;13891:398;;;:::o;14295:379::-;14479:3;14501:147;14644:3;14501:147;:::i;:::-;14494:154;;14665:3;14658:10;;14295:379;;;:::o;14680:166::-;14820:18;14816:1;14808:6;14804:14;14797:42;14680:166;:::o;14852:366::-;14994:3;15015:67;15079:2;15074:3;15015:67;:::i;:::-;15008:74;;15091:93;15180:3;15091:93;:::i;:::-;15209:2;15204:3;15200:12;15193:19;;14852:366;;;:::o;15224:419::-;15390:4;15428:2;15417:9;15413:18;15405:26;;15477:9;15471:4;15467:20;15463:1;15452:9;15448:17;15441:47;15505:131;15631:4;15505:131;:::i;:::-;15497:139;;15224:419;;;:::o;15649:180::-;15697:77;15694:1;15687:88;15794:4;15791:1;15784:15;15818:4;15815:1;15808:15;15835:305;15875:3;15894:20;15912:1;15894:20;:::i;:::-;15889:25;;15928:20;15946:1;15928:20;:::i;:::-;15923:25;;16082:1;16014:66;16010:74;16007:1;16004:81;16001:107;;;16088:18;;:::i;:::-;16001:107;16132:1;16129;16125:9;16118:16;;15835:305;;;;:::o;16146:348::-;16186:7;16209:20;16227:1;16209:20;:::i;:::-;16204:25;;16243:20;16261:1;16243:20;:::i;:::-;16238:25;;16431:1;16363:66;16359:74;16356:1;16353:81;16348:1;16341:9;16334:17;16330:105;16327:131;;;16438:18;;:::i;:::-;16327:131;16486:1;16483;16479:9;16468:20;;16146:348;;;;:::o;16500:179::-;16640:31;16636:1;16628:6;16624:14;16617:55;16500:179;:::o;16685:366::-;16827:3;16848:67;16912:2;16907:3;16848:67;:::i;:::-;16841:74;;16924:93;17013:3;16924:93;:::i;:::-;17042:2;17037:3;17033:12;17026:19;;16685:366;;;:::o;17057:419::-;17223:4;17261:2;17250:9;17246:18;17238:26;;17310:9;17304:4;17300:20;17296:1;17285:9;17281:17;17274:47;17338:131;17464:4;17338:131;:::i;:::-;17330:139;;17057:419;;;:::o;17482:157::-;17622:9;17618:1;17610:6;17606:14;17599:33;17482:157;:::o;17645:365::-;17787:3;17808:66;17872:1;17867:3;17808:66;:::i;:::-;17801:73;;17883:93;17972:3;17883:93;:::i;:::-;18001:2;17996:3;17992:12;17985:19;;17645:365;;;:::o;18016:419::-;18182:4;18220:2;18209:9;18205:18;18197:26;;18269:9;18263:4;18259:20;18255:1;18244:9;18240:17;18233:47;18297:131;18423:4;18297:131;:::i;:::-;18289:139;;18016:419;;;:::o;18441:173::-;18581:25;18577:1;18569:6;18565:14;18558:49;18441:173;:::o;18620:366::-;18762:3;18783:67;18847:2;18842:3;18783:67;:::i;:::-;18776:74;;18859:93;18948:3;18859:93;:::i;:::-;18977:2;18972:3;18968:12;18961:19;;18620:366;;;:::o;18992:419::-;19158:4;19196:2;19185:9;19181:18;19173:26;;19245:9;19239:4;19235:20;19231:1;19220:9;19216:17;19209:47;19273:131;19399:4;19273:131;:::i;:::-;19265:139;;18992:419;;;:::o;19417:169::-;19557:21;19553:1;19545:6;19541:14;19534:45;19417:169;:::o;19592:366::-;19734:3;19755:67;19819:2;19814:3;19755:67;:::i;:::-;19748:74;;19831:93;19920:3;19831:93;:::i;:::-;19949:2;19944:3;19940:12;19933:19;;19592:366;;;:::o;19964:419::-;20130:4;20168:2;20157:9;20153:18;20145:26;;20217:9;20211:4;20207:20;20203:1;20192:9;20188:17;20181:47;20245:131;20371:4;20245:131;:::i;:::-;20237:139;;19964:419;;;:::o;20389:234::-;20529:34;20525:1;20517:6;20513:14;20506:58;20598:17;20593:2;20585:6;20581:15;20574:42;20389:234;:::o;20629:366::-;20771:3;20792:67;20856:2;20851:3;20792:67;:::i;:::-;20785:74;;20868:93;20957:3;20868:93;:::i;:::-;20986:2;20981:3;20977:12;20970:19;;20629:366;;;:::o;21001:419::-;21167:4;21205:2;21194:9;21190:18;21182:26;;21254:9;21248:4;21244:20;21240:1;21229:9;21225:17;21218:47;21282:131;21408:4;21282:131;:::i;:::-;21274:139;;21001:419;;;:::o;21426:148::-;21528:11;21565:3;21550:18;;21426:148;;;;:::o;21580:141::-;21629:4;21652:3;21644:11;;21675:3;21672:1;21665:14;21709:4;21706:1;21696:18;21688:26;;21580:141;;;:::o;21751:845::-;21854:3;21891:5;21885:12;21920:36;21946:9;21920:36;:::i;:::-;21972:89;22054:6;22049:3;21972:89;:::i;:::-;21965:96;;22092:1;22081:9;22077:17;22108:1;22103:137;;;;22254:1;22249:341;;;;22070:520;;22103:137;22187:4;22183:9;22172;22168:25;22163:3;22156:38;22223:6;22218:3;22214:16;22207:23;;22103:137;;22249:341;22316:38;22348:5;22316:38;:::i;:::-;22376:1;22390:154;22404:6;22401:1;22398:13;22390:154;;;22478:7;22472:14;22468:1;22463:3;22459:11;22452:35;22528:1;22519:7;22515:15;22504:26;;22426:4;22423:1;22419:12;22414:17;;22390:154;;;22573:6;22568:3;22564:16;22557:23;;22256:334;;22070:520;;21858:738;;21751:845;;;;:::o;22602:377::-;22708:3;22736:39;22769:5;22736:39;:::i;:::-;22791:89;22873:6;22868:3;22791:89;:::i;:::-;22784:96;;22889:52;22934:6;22929:3;22922:4;22915:5;22911:16;22889:52;:::i;:::-;22966:6;22961:3;22957:16;22950:23;;22712:267;22602:377;;;;:::o;22985:155::-;23125:7;23121:1;23113:6;23109:14;23102:31;22985:155;:::o;23146:400::-;23306:3;23327:84;23409:1;23404:3;23327:84;:::i;:::-;23320:91;;23420:93;23509:3;23420:93;:::i;:::-;23538:1;23533:3;23529:11;23522:18;;23146:400;;;:::o;23552:695::-;23830:3;23852:92;23940:3;23931:6;23852:92;:::i;:::-;23845:99;;23961:95;24052:3;24043:6;23961:95;:::i;:::-;23954:102;;24073:148;24217:3;24073:148;:::i;:::-;24066:155;;24238:3;24231:10;;23552:695;;;;;:::o;24253:225::-;24393:34;24389:1;24381:6;24377:14;24370:58;24462:8;24457:2;24449:6;24445:15;24438:33;24253:225;:::o;24484:366::-;24626:3;24647:67;24711:2;24706:3;24647:67;:::i;:::-;24640:74;;24723:93;24812:3;24723:93;:::i;:::-;24841:2;24836:3;24832:12;24825:19;;24484:366;;;:::o;24856:419::-;25022:4;25060:2;25049:9;25045:18;25037:26;;25109:9;25103:4;25099:20;25095:1;25084:9;25080:17;25073:47;25137:131;25263:4;25137:131;:::i;:::-;25129:139;;24856:419;;;:::o;25281:98::-;25332:6;25366:5;25360:12;25350:22;;25281:98;;;:::o;25385:168::-;25468:11;25502:6;25497:3;25490:19;25542:4;25537:3;25533:14;25518:29;;25385:168;;;;:::o;25559:360::-;25645:3;25673:38;25705:5;25673:38;:::i;:::-;25727:70;25790:6;25785:3;25727:70;:::i;:::-;25720:77;;25806:52;25851:6;25846:3;25839:4;25832:5;25828:16;25806:52;:::i;:::-;25883:29;25905:6;25883:29;:::i;:::-;25878:3;25874:39;25867:46;;25649:270;25559:360;;;;:::o;25925:640::-;26120:4;26158:3;26147:9;26143:19;26135:27;;26172:71;26240:1;26229:9;26225:17;26216:6;26172:71;:::i;:::-;26253:72;26321:2;26310:9;26306:18;26297:6;26253:72;:::i;:::-;26335;26403:2;26392:9;26388:18;26379:6;26335:72;:::i;:::-;26454:9;26448:4;26444:20;26439:2;26428:9;26424:18;26417:48;26482:76;26553:4;26544:6;26482:76;:::i;:::-;26474:84;;25925:640;;;;;;;:::o;26571:141::-;26627:5;26658:6;26652:13;26643:22;;26674:32;26700:5;26674:32;:::i;:::-;26571:141;;;;:::o;26718:349::-;26787:6;26836:2;26824:9;26815:7;26811:23;26807:32;26804:119;;;26842:79;;:::i;:::-;26804:119;26962:1;26987:63;27042:7;27033:6;27022:9;27018:22;26987:63;:::i;:::-;26977:73;;26933:127;26718:349;;;;:::o;27073:233::-;27112:3;27135:24;27153:5;27135:24;:::i;:::-;27126:33;;27181:66;27174:5;27171:77;27168:103;;27251:18;;:::i;:::-;27168:103;27298:1;27291:5;27287:13;27280:20;;27073:233;;;:::o;27312:180::-;27360:77;27357:1;27350:88;27457:4;27454:1;27447:15;27481:4;27478:1;27471:15;27498:185;27538:1;27555:20;27573:1;27555:20;:::i;:::-;27550:25;;27589:20;27607:1;27589:20;:::i;:::-;27584:25;;27628:1;27618:35;;27633:18;;:::i;:::-;27618:35;27675:1;27672;27668:9;27663:14;;27498:185;;;;:::o;27689:191::-;27729:4;27749:20;27767:1;27749:20;:::i;:::-;27744:25;;27783:20;27801:1;27783:20;:::i;:::-;27778:25;;27822:1;27819;27816:8;27813:34;;;27827:18;;:::i;:::-;27813:34;27872:1;27869;27865:9;27857:17;;27689:191;;;;:::o;27886:176::-;27918:1;27935:20;27953:1;27935:20;:::i;:::-;27930:25;;27969:20;27987:1;27969:20;:::i;:::-;27964:25;;28008:1;27998:35;;28013:18;;:::i;:::-;27998:35;28054:1;28051;28047:9;28042:14;;27886:176;;;;:::o;28068:180::-;28116:77;28113:1;28106:88;28213:4;28210:1;28203:15;28237:4;28234:1;28227:15
Swarm Source
ipfs://a435e582ec5adece5c88ed80c31f994c40ed9f76492e7dd2127d5e656606d09f
Loading...
Loading
Loading...
Loading
[ 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.