ERC-721
Overview
Max Total Supply
8,877 toads
Holders
2,684
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 toadsLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
toads
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-29 */ // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.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: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.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: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts 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: contracts/1.sol pragma solidity >=0.8.6; contract toads is ERC721A, Ownable { uint public price = 0.005 ether; uint public maxSupply = 8877; uint public maxTx = 10; bool private mintOpen = false; string internal baseTokenURI = 'test'; constructor() ERC721A("The Toads", "toads") {} function toggleMint() external onlyOwner { mintOpen = !mintOpen; } function setPrice(uint newPrice) external onlyOwner { price = newPrice; } function setBaseTokenURI(string calldata _uri) external onlyOwner { baseTokenURI = _uri; } function setMaxSupply(uint newSupply) external onlyOwner { maxSupply = newSupply; } function setMaxTx(uint newMax) external onlyOwner { maxTx = newMax; } function _baseURI() internal override view returns (string memory) { return baseTokenURI; } function buyTo(address to, uint qty) external onlyOwner { _mintTo(to, qty); } function buy(uint qty) external payable { require(mintOpen, "store closed"); _buy(qty); } function _buy(uint qty) internal { require(qty <= maxTx && qty > 0, "TRANSACTION: qty of mints not alowed"); //uint free = balanceOf(_msgSender()) == 0 ? 1 : 0; // require(msg.value >= price * (qty - free), "PAYMENT: invalid value"); require(msg.value >= price * qty , "PAYMENT: invalid value"); _mintTo(_msgSender(), qty); } function _mintTo(address to, uint qty) internal { require(qty + totalSupply() <= maxSupply, "SUPPLY: Value exceeds totalSupply"); _mint(to, qty); } function withdraw() external onlyOwner { payable(_msgSender()).transfer(address(this).balance); } function airdrop(address[] calldata _to) external onlyOwner { for (uint256 i; i < _to.length; ) { _mint(_to[i],1); unchecked { i++; } } } }
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[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buyTo","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","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":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"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
60806040526611c37937e080006009556122ad600a55600a600b556000600c60006101000a81548160ff0219169083151502179055506040518060400160405280600481526020017f7465737400000000000000000000000000000000000000000000000000000000815250600d90805190602001906200008292919062000240565b503480156200009057600080fd5b506040518060400160405280600981526020017f54686520546f61647300000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f746f61647300000000000000000000000000000000000000000000000000000081525081600290805190602001906200011592919062000240565b5080600390805190602001906200012e92919062000240565b506200013f6200016d60201b60201c565b6000819055505050620001676200015b6200017260201b60201c565b6200017a60201b60201c565b62000355565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024e90620002f0565b90600052602060002090601f016020900481019282620002725760008555620002be565b82601f106200028d57805160ff1916838001178555620002be565b82800160010185558215620002be579182015b82811115620002bd578251825591602001919060010190620002a0565b5b509050620002cd9190620002d1565b5090565b5b80821115620002ec576000816000905550600101620002d2565b5090565b600060028204905060018216806200030957607f821691505b6020821081141562000320576200031f62000326565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612e6380620003656000396000f3fe6080604052600436106101c25760003560e01c8063729ad39e116100f7578063b88d4fde11610095578063d5abeb0111610064578063d5abeb0114610602578063d96a094a1461062d578063e985e9c514610649578063f2fde38b14610686576101c2565b8063b88d4fde1461055c578063bc33718214610585578063c87b56dd146105ae578063d3dd5fe0146105eb576101c2565b806391b7f5ed116100d157806391b7f5ed146104b457806395d89b41146104dd578063a035b1fe14610508578063a22cb46514610533576101c2565b8063729ad39e146104355780637437681e1461045e5780638da5cb5b14610489576101c2565b806330176e13116101645780636352211e1161013e5780636352211e1461037b5780636f8b44b0146103b857806370a08231146103e1578063715018a61461041e576101c2565b806330176e13146103125780633ccfd60b1461033b57806342842e0e14610352576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806309bd4c311461029557806318160ddd146102be57806323b872dd146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612503565b6106af565b6040516101fb9190612804565b60405180910390f35b34801561021057600080fd5b50610219610741565b604051610226919061281f565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906125aa565b6107d3565b604051610263919061279d565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612476565b61084f565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612476565b6109f6565b005b3480156102ca57600080fd5b506102d3610a80565b6040516102e09190612901565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190612360565b610a97565b005b34801561031e57600080fd5b506103396004803603810190610334919061255d565b610aa7565b005b34801561034757600080fd5b50610350610b39565b005b34801561035e57600080fd5b5061037960048036038101906103749190612360565b610c05565b005b34801561038757600080fd5b506103a2600480360381019061039d91906125aa565b610c25565b6040516103af919061279d565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da91906125aa565b610c37565b005b3480156103ed57600080fd5b50610408600480360381019061040391906122f3565b610cbd565b6040516104159190612901565b60405180910390f35b34801561042a57600080fd5b50610433610d76565b005b34801561044157600080fd5b5061045c600480360381019061045791906124b6565b610dfe565b005b34801561046a57600080fd5b50610473610ecc565b6040516104809190612901565b60405180910390f35b34801561049557600080fd5b5061049e610ed2565b6040516104ab919061279d565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d691906125aa565b610efc565b005b3480156104e957600080fd5b506104f2610f82565b6040516104ff919061281f565b60405180910390f35b34801561051457600080fd5b5061051d611014565b60405161052a9190612901565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612436565b61101a565b005b34801561056857600080fd5b50610583600480360381019061057e91906123b3565b611192565b005b34801561059157600080fd5b506105ac60048036038101906105a791906125aa565b611205565b005b3480156105ba57600080fd5b506105d560048036038101906105d091906125aa565b61128b565b6040516105e2919061281f565b60405180910390f35b3480156105f757600080fd5b5061060061132a565b005b34801561060e57600080fd5b506106176113d2565b6040516106249190612901565b60405180910390f35b610647600480360381019061064291906125aa565b6113d8565b005b34801561065557600080fd5b50610670600480360381019061066b9190612320565b611433565b60405161067d9190612804565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a891906122f3565b6114c7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461075090612b1b565b80601f016020809104026020016040519081016040528092919081815260200182805461077c90612b1b565b80156107c95780601f1061079e576101008083540402835291602001916107c9565b820191906000526020600020905b8154815290600101906020018083116107ac57829003601f168201915b5050505050905090565b60006107de826115bf565b610814576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085a8261161e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e16116ec565b73ffffffffffffffffffffffffffffffffffffffff16146109445761090d816109086116ec565b611433565b610943576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6109fe6116f4565b73ffffffffffffffffffffffffffffffffffffffff16610a1c610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a69906128c1565b60405180910390fd5b610a7c82826116fc565b5050565b6000610a8a611761565b6001546000540303905090565b610aa2838383611766565b505050565b610aaf6116f4565b73ffffffffffffffffffffffffffffffffffffffff16610acd610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a906128c1565b60405180910390fd5b8181600d9190610b349291906120cb565b505050565b610b416116f4565b73ffffffffffffffffffffffffffffffffffffffff16610b5f610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac906128c1565b60405180910390fd5b610bbd6116f4565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c02573d6000803e3d6000fd5b50565b610c2083838360405180602001604052806000815250611192565b505050565b6000610c308261161e565b9050919050565b610c3f6116f4565b73ffffffffffffffffffffffffffffffffffffffff16610c5d610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa906128c1565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d25576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d7e6116f4565b73ffffffffffffffffffffffffffffffffffffffff16610d9c610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de9906128c1565b60405180910390fd5b610dfc6000611b10565b565b610e066116f4565b73ffffffffffffffffffffffffffffffffffffffff16610e24610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906128c1565b60405180910390fd5b60005b82829050811015610ec757610eba838383818110610e9e57610e9d612bdc565b5b9050602002016020810190610eb391906122f3565b6001611bd6565b8080600101915050610e7d565b505050565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f046116f4565b73ffffffffffffffffffffffffffffffffffffffff16610f22610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f906128c1565b60405180910390fd5b8060098190555050565b606060038054610f9190612b1b565b80601f0160208091040260200160405190810160405280929190818152602001828054610fbd90612b1b565b801561100a5780601f10610fdf5761010080835404028352916020019161100a565b820191906000526020600020905b815481529060010190602001808311610fed57829003601f168201915b5050505050905090565b60095481565b6110226116ec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611087576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110946116ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111416116ec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111869190612804565b60405180910390a35050565b61119d848484611766565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111ff576111c884848484611daa565b6111fe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61120d6116f4565b73ffffffffffffffffffffffffffffffffffffffff1661122b610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614611281576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611278906128c1565b60405180910390fd5b80600b8190555050565b6060611296826115bf565b6112cc576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112d6611f0a565b90506000815114156112f75760405180602001604052806000815250611322565b8061130184611f9c565b604051602001611312929190612779565b6040516020818303038152906040525b915050919050565b6113326116f4565b73ffffffffffffffffffffffffffffffffffffffff16611350610ed2565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d906128c1565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b600a5481565b600c60009054906101000a900460ff16611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e906128a1565b60405180910390fd5b61143081611ff6565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114cf6116f4565b73ffffffffffffffffffffffffffffffffffffffff166114ed610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a906128c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90612841565b60405180910390fd5b6115bc81611b10565b50565b6000816115ca611761565b111580156115d9575060005482105b8015611617575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061162d611761565b116116b5576000548110156116b45760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156116b2575b60008114156116a857600460008360019003935083815260200190815260200160002054905061167d565b80925050506116e7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600a54611707610a80565b8261171291906129b5565b1115611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a906128e1565b60405180910390fd5b61175d8282611bd6565b5050565b600090565b60006117718261161e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117d8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166117f96116ec565b73ffffffffffffffffffffffffffffffffffffffff1614806118285750611827856118226116ec565b611433565b5b8061186d57506118366116ec565b73ffffffffffffffffffffffffffffffffffffffff16611855846107d3565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806118a6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561190d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61191a85858560016120ab565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611a17866120b1565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611aa1576000600184019050600060046000838152602001908152602001600020541415611a9f576000548114611a9e578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b0985858560016120bb565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c43576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611c7e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c8b60008483856120ab565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611cf0600184146120c1565b901b60a042901b611d00856120b1565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611d2657816000819055505050611da560008483856120bb565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dd06116ec565b8786866040518563ffffffff1660e01b8152600401611df294939291906127b8565b602060405180830381600087803b158015611e0c57600080fd5b505af1925050508015611e3d57506040513d601f19601f82011682018060405250810190611e3a9190612530565b60015b611eb7573d8060008114611e6d576040519150601f19603f3d011682016040523d82523d6000602084013e611e72565b606091505b50600081511415611eaf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611f1990612b1b565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4590612b1b565b8015611f925780601f10611f6757610100808354040283529160200191611f92565b820191906000526020600020905b815481529060010190602001808311611f7557829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611fe257600183039250600a81066030018353600a81049050611fc2565b508181036020830392508083525050919050565b600b5481111580156120085750600081115b612047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203e90612861565b60405180910390fd5b806009546120559190612a0b565b341015612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e90612881565b60405180910390fd5b6120a86120a26116f4565b826116fc565b50565b50505050565b6000819050919050565b50505050565b6000819050919050565b8280546120d790612b1b565b90600052602060002090601f0160209004810192826120f95760008555612140565b82601f1061211257803560ff1916838001178555612140565b82800160010185558215612140579182015b8281111561213f578235825591602001919060010190612124565b5b50905061214d9190612151565b5090565b5b8082111561216a576000816000905550600101612152565b5090565b600061218161217c84612941565b61291c565b90508281526020810184848401111561219d5761219c612c49565b5b6121a8848285612ad9565b509392505050565b6000813590506121bf81612dd1565b92915050565b60008083601f8401126121db576121da612c3f565b5b8235905067ffffffffffffffff8111156121f8576121f7612c3a565b5b60208301915083602082028301111561221457612213612c44565b5b9250929050565b60008135905061222a81612de8565b92915050565b60008135905061223f81612dff565b92915050565b60008151905061225481612dff565b92915050565b600082601f83011261226f5761226e612c3f565b5b813561227f84826020860161216e565b91505092915050565b60008083601f84011261229e5761229d612c3f565b5b8235905067ffffffffffffffff8111156122bb576122ba612c3a565b5b6020830191508360018202830111156122d7576122d6612c44565b5b9250929050565b6000813590506122ed81612e16565b92915050565b60006020828403121561230957612308612c53565b5b6000612317848285016121b0565b91505092915050565b6000806040838503121561233757612336612c53565b5b6000612345858286016121b0565b9250506020612356858286016121b0565b9150509250929050565b60008060006060848603121561237957612378612c53565b5b6000612387868287016121b0565b9350506020612398868287016121b0565b92505060406123a9868287016122de565b9150509250925092565b600080600080608085870312156123cd576123cc612c53565b5b60006123db878288016121b0565b94505060206123ec878288016121b0565b93505060406123fd878288016122de565b925050606085013567ffffffffffffffff81111561241e5761241d612c4e565b5b61242a8782880161225a565b91505092959194509250565b6000806040838503121561244d5761244c612c53565b5b600061245b858286016121b0565b925050602061246c8582860161221b565b9150509250929050565b6000806040838503121561248d5761248c612c53565b5b600061249b858286016121b0565b92505060206124ac858286016122de565b9150509250929050565b600080602083850312156124cd576124cc612c53565b5b600083013567ffffffffffffffff8111156124eb576124ea612c4e565b5b6124f7858286016121c5565b92509250509250929050565b60006020828403121561251957612518612c53565b5b600061252784828501612230565b91505092915050565b60006020828403121561254657612545612c53565b5b600061255484828501612245565b91505092915050565b6000806020838503121561257457612573612c53565b5b600083013567ffffffffffffffff81111561259257612591612c4e565b5b61259e85828601612288565b92509250509250929050565b6000602082840312156125c0576125bf612c53565b5b60006125ce848285016122de565b91505092915050565b6125e081612a65565b82525050565b6125ef81612a77565b82525050565b600061260082612972565b61260a8185612988565b935061261a818560208601612ae8565b61262381612c58565b840191505092915050565b60006126398261297d565b6126438185612999565b9350612653818560208601612ae8565b61265c81612c58565b840191505092915050565b60006126728261297d565b61267c81856129aa565b935061268c818560208601612ae8565b80840191505092915050565b60006126a5602683612999565b91506126b082612c69565b604082019050919050565b60006126c8602483612999565b91506126d382612cb8565b604082019050919050565b60006126eb601683612999565b91506126f682612d07565b602082019050919050565b600061270e600c83612999565b915061271982612d30565b602082019050919050565b6000612731602083612999565b915061273c82612d59565b602082019050919050565b6000612754602183612999565b915061275f82612d82565b604082019050919050565b61277381612acf565b82525050565b60006127858285612667565b91506127918284612667565b91508190509392505050565b60006020820190506127b260008301846125d7565b92915050565b60006080820190506127cd60008301876125d7565b6127da60208301866125d7565b6127e7604083018561276a565b81810360608301526127f981846125f5565b905095945050505050565b600060208201905061281960008301846125e6565b92915050565b60006020820190508181036000830152612839818461262e565b905092915050565b6000602082019050818103600083015261285a81612698565b9050919050565b6000602082019050818103600083015261287a816126bb565b9050919050565b6000602082019050818103600083015261289a816126de565b9050919050565b600060208201905081810360008301526128ba81612701565b9050919050565b600060208201905081810360008301526128da81612724565b9050919050565b600060208201905081810360008301526128fa81612747565b9050919050565b6000602082019050612916600083018461276a565b92915050565b6000612926612937565b90506129328282612b4d565b919050565b6000604051905090565b600067ffffffffffffffff82111561295c5761295b612c0b565b5b61296582612c58565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129c082612acf565b91506129cb83612acf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a00576129ff612b7e565b5b828201905092915050565b6000612a1682612acf565b9150612a2183612acf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a5a57612a59612b7e565b5b828202905092915050565b6000612a7082612aaf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b06578082015181840152602081019050612aeb565b83811115612b15576000848401525b50505050565b60006002820490506001821680612b3357607f821691505b60208210811415612b4757612b46612bad565b5b50919050565b612b5682612c58565b810181811067ffffffffffffffff82111715612b7557612b74612c0b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f73746f726520636c6f7365640000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b612dda81612a65565b8114612de557600080fd5b50565b612df181612a77565b8114612dfc57600080fd5b50565b612e0881612a83565b8114612e1357600080fd5b50565b612e1f81612acf565b8114612e2a57600080fd5b5056fea2646970667358221220bbcf795c532506742987f87a10e9255cb485414252915daaddb2a4df9ef64ffe64736f6c63430008060033
Deployed Bytecode
0x6080604052600436106101c25760003560e01c8063729ad39e116100f7578063b88d4fde11610095578063d5abeb0111610064578063d5abeb0114610602578063d96a094a1461062d578063e985e9c514610649578063f2fde38b14610686576101c2565b8063b88d4fde1461055c578063bc33718214610585578063c87b56dd146105ae578063d3dd5fe0146105eb576101c2565b806391b7f5ed116100d157806391b7f5ed146104b457806395d89b41146104dd578063a035b1fe14610508578063a22cb46514610533576101c2565b8063729ad39e146104355780637437681e1461045e5780638da5cb5b14610489576101c2565b806330176e13116101645780636352211e1161013e5780636352211e1461037b5780636f8b44b0146103b857806370a08231146103e1578063715018a61461041e576101c2565b806330176e13146103125780633ccfd60b1461033b57806342842e0e14610352576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806309bd4c311461029557806318160ddd146102be57806323b872dd146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612503565b6106af565b6040516101fb9190612804565b60405180910390f35b34801561021057600080fd5b50610219610741565b604051610226919061281f565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906125aa565b6107d3565b604051610263919061279d565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612476565b61084f565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612476565b6109f6565b005b3480156102ca57600080fd5b506102d3610a80565b6040516102e09190612901565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190612360565b610a97565b005b34801561031e57600080fd5b506103396004803603810190610334919061255d565b610aa7565b005b34801561034757600080fd5b50610350610b39565b005b34801561035e57600080fd5b5061037960048036038101906103749190612360565b610c05565b005b34801561038757600080fd5b506103a2600480360381019061039d91906125aa565b610c25565b6040516103af919061279d565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da91906125aa565b610c37565b005b3480156103ed57600080fd5b50610408600480360381019061040391906122f3565b610cbd565b6040516104159190612901565b60405180910390f35b34801561042a57600080fd5b50610433610d76565b005b34801561044157600080fd5b5061045c600480360381019061045791906124b6565b610dfe565b005b34801561046a57600080fd5b50610473610ecc565b6040516104809190612901565b60405180910390f35b34801561049557600080fd5b5061049e610ed2565b6040516104ab919061279d565b60405180910390f35b3480156104c057600080fd5b506104db60048036038101906104d691906125aa565b610efc565b005b3480156104e957600080fd5b506104f2610f82565b6040516104ff919061281f565b60405180910390f35b34801561051457600080fd5b5061051d611014565b60405161052a9190612901565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612436565b61101a565b005b34801561056857600080fd5b50610583600480360381019061057e91906123b3565b611192565b005b34801561059157600080fd5b506105ac60048036038101906105a791906125aa565b611205565b005b3480156105ba57600080fd5b506105d560048036038101906105d091906125aa565b61128b565b6040516105e2919061281f565b60405180910390f35b3480156105f757600080fd5b5061060061132a565b005b34801561060e57600080fd5b506106176113d2565b6040516106249190612901565b60405180910390f35b610647600480360381019061064291906125aa565b6113d8565b005b34801561065557600080fd5b50610670600480360381019061066b9190612320565b611433565b60405161067d9190612804565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a891906122f3565b6114c7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061070a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461075090612b1b565b80601f016020809104026020016040519081016040528092919081815260200182805461077c90612b1b565b80156107c95780601f1061079e576101008083540402835291602001916107c9565b820191906000526020600020905b8154815290600101906020018083116107ac57829003601f168201915b5050505050905090565b60006107de826115bf565b610814576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085a8261161e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e16116ec565b73ffffffffffffffffffffffffffffffffffffffff16146109445761090d816109086116ec565b611433565b610943576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6109fe6116f4565b73ffffffffffffffffffffffffffffffffffffffff16610a1c610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a69906128c1565b60405180910390fd5b610a7c82826116fc565b5050565b6000610a8a611761565b6001546000540303905090565b610aa2838383611766565b505050565b610aaf6116f4565b73ffffffffffffffffffffffffffffffffffffffff16610acd610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614610b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1a906128c1565b60405180910390fd5b8181600d9190610b349291906120cb565b505050565b610b416116f4565b73ffffffffffffffffffffffffffffffffffffffff16610b5f610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac906128c1565b60405180910390fd5b610bbd6116f4565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c02573d6000803e3d6000fd5b50565b610c2083838360405180602001604052806000815250611192565b505050565b6000610c308261161e565b9050919050565b610c3f6116f4565b73ffffffffffffffffffffffffffffffffffffffff16610c5d610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614610cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caa906128c1565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d25576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d7e6116f4565b73ffffffffffffffffffffffffffffffffffffffff16610d9c610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614610df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de9906128c1565b60405180910390fd5b610dfc6000611b10565b565b610e066116f4565b73ffffffffffffffffffffffffffffffffffffffff16610e24610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906128c1565b60405180910390fd5b60005b82829050811015610ec757610eba838383818110610e9e57610e9d612bdc565b5b9050602002016020810190610eb391906122f3565b6001611bd6565b8080600101915050610e7d565b505050565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f046116f4565b73ffffffffffffffffffffffffffffffffffffffff16610f22610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f906128c1565b60405180910390fd5b8060098190555050565b606060038054610f9190612b1b565b80601f0160208091040260200160405190810160405280929190818152602001828054610fbd90612b1b565b801561100a5780601f10610fdf5761010080835404028352916020019161100a565b820191906000526020600020905b815481529060010190602001808311610fed57829003601f168201915b5050505050905090565b60095481565b6110226116ec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611087576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110946116ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111416116ec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111869190612804565b60405180910390a35050565b61119d848484611766565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111ff576111c884848484611daa565b6111fe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61120d6116f4565b73ffffffffffffffffffffffffffffffffffffffff1661122b610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614611281576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611278906128c1565b60405180910390fd5b80600b8190555050565b6060611296826115bf565b6112cc576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006112d6611f0a565b90506000815114156112f75760405180602001604052806000815250611322565b8061130184611f9c565b604051602001611312929190612779565b6040516020818303038152906040525b915050919050565b6113326116f4565b73ffffffffffffffffffffffffffffffffffffffff16611350610ed2565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d906128c1565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b600a5481565b600c60009054906101000a900460ff16611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e906128a1565b60405180910390fd5b61143081611ff6565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114cf6116f4565b73ffffffffffffffffffffffffffffffffffffffff166114ed610ed2565b73ffffffffffffffffffffffffffffffffffffffff1614611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a906128c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90612841565b60405180910390fd5b6115bc81611b10565b50565b6000816115ca611761565b111580156115d9575060005482105b8015611617575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061162d611761565b116116b5576000548110156116b45760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156116b2575b60008114156116a857600460008360019003935083815260200190815260200160002054905061167d565b80925050506116e7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600a54611707610a80565b8261171291906129b5565b1115611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a906128e1565b60405180910390fd5b61175d8282611bd6565b5050565b600090565b60006117718261161e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146117d8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166117f96116ec565b73ffffffffffffffffffffffffffffffffffffffff1614806118285750611827856118226116ec565b611433565b5b8061186d57506118366116ec565b73ffffffffffffffffffffffffffffffffffffffff16611855846107d3565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806118a6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561190d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61191a85858560016120ab565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611a17866120b1565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611aa1576000600184019050600060046000838152602001908152602001600020541415611a9f576000548114611a9e578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b0985858560016120bb565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c43576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611c7e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c8b60008483856120ab565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611cf0600184146120c1565b901b60a042901b611d00856120b1565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611d2657816000819055505050611da560008483856120bb565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611dd06116ec565b8786866040518563ffffffff1660e01b8152600401611df294939291906127b8565b602060405180830381600087803b158015611e0c57600080fd5b505af1925050508015611e3d57506040513d601f19601f82011682018060405250810190611e3a9190612530565b60015b611eb7573d8060008114611e6d576040519150601f19603f3d011682016040523d82523d6000602084013e611e72565b606091505b50600081511415611eaf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611f1990612b1b565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4590612b1b565b8015611f925780601f10611f6757610100808354040283529160200191611f92565b820191906000526020600020905b815481529060010190602001808311611f7557829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611fe257600183039250600a81066030018353600a81049050611fc2565b508181036020830392508083525050919050565b600b5481111580156120085750600081115b612047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203e90612861565b60405180910390fd5b806009546120559190612a0b565b341015612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e90612881565b60405180910390fd5b6120a86120a26116f4565b826116fc565b50565b50505050565b6000819050919050565b50505050565b6000819050919050565b8280546120d790612b1b565b90600052602060002090601f0160209004810192826120f95760008555612140565b82601f1061211257803560ff1916838001178555612140565b82800160010185558215612140579182015b8281111561213f578235825591602001919060010190612124565b5b50905061214d9190612151565b5090565b5b8082111561216a576000816000905550600101612152565b5090565b600061218161217c84612941565b61291c565b90508281526020810184848401111561219d5761219c612c49565b5b6121a8848285612ad9565b509392505050565b6000813590506121bf81612dd1565b92915050565b60008083601f8401126121db576121da612c3f565b5b8235905067ffffffffffffffff8111156121f8576121f7612c3a565b5b60208301915083602082028301111561221457612213612c44565b5b9250929050565b60008135905061222a81612de8565b92915050565b60008135905061223f81612dff565b92915050565b60008151905061225481612dff565b92915050565b600082601f83011261226f5761226e612c3f565b5b813561227f84826020860161216e565b91505092915050565b60008083601f84011261229e5761229d612c3f565b5b8235905067ffffffffffffffff8111156122bb576122ba612c3a565b5b6020830191508360018202830111156122d7576122d6612c44565b5b9250929050565b6000813590506122ed81612e16565b92915050565b60006020828403121561230957612308612c53565b5b6000612317848285016121b0565b91505092915050565b6000806040838503121561233757612336612c53565b5b6000612345858286016121b0565b9250506020612356858286016121b0565b9150509250929050565b60008060006060848603121561237957612378612c53565b5b6000612387868287016121b0565b9350506020612398868287016121b0565b92505060406123a9868287016122de565b9150509250925092565b600080600080608085870312156123cd576123cc612c53565b5b60006123db878288016121b0565b94505060206123ec878288016121b0565b93505060406123fd878288016122de565b925050606085013567ffffffffffffffff81111561241e5761241d612c4e565b5b61242a8782880161225a565b91505092959194509250565b6000806040838503121561244d5761244c612c53565b5b600061245b858286016121b0565b925050602061246c8582860161221b565b9150509250929050565b6000806040838503121561248d5761248c612c53565b5b600061249b858286016121b0565b92505060206124ac858286016122de565b9150509250929050565b600080602083850312156124cd576124cc612c53565b5b600083013567ffffffffffffffff8111156124eb576124ea612c4e565b5b6124f7858286016121c5565b92509250509250929050565b60006020828403121561251957612518612c53565b5b600061252784828501612230565b91505092915050565b60006020828403121561254657612545612c53565b5b600061255484828501612245565b91505092915050565b6000806020838503121561257457612573612c53565b5b600083013567ffffffffffffffff81111561259257612591612c4e565b5b61259e85828601612288565b92509250509250929050565b6000602082840312156125c0576125bf612c53565b5b60006125ce848285016122de565b91505092915050565b6125e081612a65565b82525050565b6125ef81612a77565b82525050565b600061260082612972565b61260a8185612988565b935061261a818560208601612ae8565b61262381612c58565b840191505092915050565b60006126398261297d565b6126438185612999565b9350612653818560208601612ae8565b61265c81612c58565b840191505092915050565b60006126728261297d565b61267c81856129aa565b935061268c818560208601612ae8565b80840191505092915050565b60006126a5602683612999565b91506126b082612c69565b604082019050919050565b60006126c8602483612999565b91506126d382612cb8565b604082019050919050565b60006126eb601683612999565b91506126f682612d07565b602082019050919050565b600061270e600c83612999565b915061271982612d30565b602082019050919050565b6000612731602083612999565b915061273c82612d59565b602082019050919050565b6000612754602183612999565b915061275f82612d82565b604082019050919050565b61277381612acf565b82525050565b60006127858285612667565b91506127918284612667565b91508190509392505050565b60006020820190506127b260008301846125d7565b92915050565b60006080820190506127cd60008301876125d7565b6127da60208301866125d7565b6127e7604083018561276a565b81810360608301526127f981846125f5565b905095945050505050565b600060208201905061281960008301846125e6565b92915050565b60006020820190508181036000830152612839818461262e565b905092915050565b6000602082019050818103600083015261285a81612698565b9050919050565b6000602082019050818103600083015261287a816126bb565b9050919050565b6000602082019050818103600083015261289a816126de565b9050919050565b600060208201905081810360008301526128ba81612701565b9050919050565b600060208201905081810360008301526128da81612724565b9050919050565b600060208201905081810360008301526128fa81612747565b9050919050565b6000602082019050612916600083018461276a565b92915050565b6000612926612937565b90506129328282612b4d565b919050565b6000604051905090565b600067ffffffffffffffff82111561295c5761295b612c0b565b5b61296582612c58565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129c082612acf565b91506129cb83612acf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a00576129ff612b7e565b5b828201905092915050565b6000612a1682612acf565b9150612a2183612acf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a5a57612a59612b7e565b5b828202905092915050565b6000612a7082612aaf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b06578082015181840152602081019050612aeb565b83811115612b15576000848401525b50505050565b60006002820490506001821680612b3357607f821691505b60208210811415612b4757612b46612bad565b5b50919050565b612b5682612c58565b810181811067ffffffffffffffff82111715612b7557612b74612c0b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f73746f726520636c6f7365640000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b612dda81612a65565b8114612de557600080fd5b50565b612df181612a77565b8114612dfc57600080fd5b50565b612e0881612a83565b8114612e1357600080fd5b50565b612e1f81612acf565b8114612e2a57600080fd5b5056fea2646970667358221220bbcf795c532506742987f87a10e9255cb485414252915daaddb2a4df9ef64ffe64736f6c63430008060033
Deployed Bytecode Sourcemap
41832:2062:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13073:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18086:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20154:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19614:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42749:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12127:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21040:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42320:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43542:111;;;;;;;;;;;;;:::i;:::-;;21281:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17875:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42436:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13752:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40953:103;;;;;;;;;;;;;:::i;:::-;;43660:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41950:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40302:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18255:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41877:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20430:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21537:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42545:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18430:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42129:80;;;;;;;;;;;;;:::i;:::-;;41915:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42859:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20809:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41211:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13073:615;13158:4;13473:10;13458:25;;:11;:25;;;;:102;;;;13550:10;13535:25;;:11;:25;;;;13458:102;:179;;;;13627:10;13612:25;;:11;:25;;;;13458:179;13438:199;;13073:615;;;:::o;18086:100::-;18140:13;18173:5;18166:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18086:100;:::o;20154:204::-;20222:7;20247:16;20255:7;20247;:16::i;:::-;20242:64;;20272:34;;;;;;;;;;;;;;20242:64;20326:15;:24;20342:7;20326:24;;;;;;;;;;;;;;;;;;;;;20319:31;;20154:204;;;:::o;19614:474::-;19687:13;19719:27;19738:7;19719:18;:27::i;:::-;19687:61;;19769:5;19763:11;;:2;:11;;;19759:48;;;19783:24;;;;;;;;;;;;;;19759:48;19847:5;19824:28;;:19;:17;:19::i;:::-;:28;;;19820:175;;19872:44;19889:5;19896:19;:17;:19::i;:::-;19872:16;:44::i;:::-;19867:128;;19944:35;;;;;;;;;;;;;;19867:128;19820:175;20034:2;20007:15;:24;20023:7;20007:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20072:7;20068:2;20052:28;;20061:5;20052:28;;;;;;;;;;;;19676:412;19614:474;;:::o;42749:91::-;40533:12;:10;:12::i;:::-;40522:23;;:7;:5;:7::i;:::-;:23;;;40514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42816:16:::1;42824:2;42828:3;42816:7;:16::i;:::-;42749:91:::0;;:::o;12127:315::-;12180:7;12408:15;:13;:15::i;:::-;12393:12;;12377:13;;:28;:46;12370:53;;12127:315;:::o;21040:170::-;21174:28;21184:4;21190:2;21194:7;21174:9;:28::i;:::-;21040:170;;;:::o;42320:104::-;40533:12;:10;:12::i;:::-;40522:23;;:7;:5;:7::i;:::-;:23;;;40514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42412:4:::1;;42397:12;:19;;;;;;;:::i;:::-;;42320:104:::0;;:::o;43542:111::-;40533:12;:10;:12::i;:::-;40522:23;;:7;:5;:7::i;:::-;:23;;;40514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43600:12:::1;:10;:12::i;:::-;43592:30;;:53;43623:21;43592:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;43542:111::o:0;21281:185::-;21419:39;21436:4;21442:2;21446:7;21419:39;;;;;;;;;;;;:16;:39::i;:::-;21281:185;;;:::o;17875:144::-;17939:7;17982:27;18001:7;17982:18;:27::i;:::-;17959:52;;17875:144;;;:::o;42436:97::-;40533:12;:10;:12::i;:::-;40522:23;;:7;:5;:7::i;:::-;:23;;;40514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42516:9:::1;42504;:21;;;;42436:97:::0;:::o;13752:224::-;13816:7;13857:1;13840:19;;:5;:19;;;13836:60;;;13868:28;;;;;;;;;;;;;;13836:60;9091:13;13914:18;:25;13933:5;13914:25;;;;;;;;;;;;;;;;:54;13907:61;;13752:224;;;:::o;40953:103::-;40533:12;:10;:12::i;:::-;40522:23;;:7;:5;:7::i;:::-;:23;;;40514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41018:30:::1;41045:1;41018:18;:30::i;:::-;40953:103::o:0;43660:218::-;40533:12;:10;:12::i;:::-;40522:23;;:7;:5;:7::i;:::-;:23;;;40514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43736:9:::1;43731:140;43751:3;;:10;;43747:1;:14;43731:140;;;43780:15;43786:3;;43790:1;43786:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;43793:1;43780:5;:15::i;:::-;43841:3;;;;;;;43731:140;;;;43660:218:::0;;:::o;41950:22::-;;;;:::o;40302:87::-;40348:7;40375:6;;;;;;;;;;;40368:13;;40302:87;:::o;42221:::-;40533:12;:10;:12::i;:::-;40522:23;;:7;:5;:7::i;:::-;:23;;;40514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42292:8:::1;42284:5;:16;;;;42221:87:::0;:::o;18255:104::-;18311:13;18344:7;18337:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18255:104;:::o;41877:31::-;;;;:::o;20430:308::-;20541:19;:17;:19::i;:::-;20529:31;;:8;:31;;;20525:61;;;20569:17;;;;;;;;;;;;;;20525:61;20651:8;20599:18;:39;20618:19;:17;:19::i;:::-;20599:39;;;;;;;;;;;;;;;:49;20639:8;20599:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20711:8;20675:55;;20690:19;:17;:19::i;:::-;20675:55;;;20721:8;20675:55;;;;;;:::i;:::-;;;;;;;;20430:308;;:::o;21537:396::-;21704:28;21714:4;21720:2;21724:7;21704:9;:28::i;:::-;21765:1;21747:2;:14;;;:19;21743:183;;21786:56;21817:4;21823:2;21827:7;21836:5;21786:30;:56::i;:::-;21781:145;;21870:40;;;;;;;;;;;;;;21781:145;21743:183;21537:396;;;;:::o;42545:83::-;40533:12;:10;:12::i;:::-;40522:23;;:7;:5;:7::i;:::-;:23;;;40514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42614:6:::1;42606:5;:14;;;;42545:83:::0;:::o;18430:318::-;18503:13;18534:16;18542:7;18534;:16::i;:::-;18529:59;;18559:29;;;;;;;;;;;;;;18529:59;18601:21;18625:10;:8;:10::i;:::-;18601:34;;18678:1;18659:7;18653:21;:26;;:87;;;;;;;;;;;;;;;;;18706:7;18715:18;18725:7;18715:9;:18::i;:::-;18689:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18653:87;18646:94;;;18430:318;;;:::o;42129:80::-;40533:12;:10;:12::i;:::-;40522:23;;:7;:5;:7::i;:::-;:23;;;40514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42193:8:::1;;;;;;;;;;;42192:9;42181:8;;:20;;;;;;;;;;;;;;;;;;42129:80::o:0;41915:28::-;;;;:::o;42859:112::-;42918:8;;;;;;;;;;;42910:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;42954:9;42959:3;42954:4;:9::i;:::-;42859:112;:::o;20809:164::-;20906:4;20930:18;:25;20949:5;20930:25;;;;;;;;;;;;;;;:35;20956:8;20930:35;;;;;;;;;;;;;;;;;;;;;;;;;20923:42;;20809:164;;;;:::o;41211:201::-;40533:12;:10;:12::i;:::-;40522:23;;:7;:5;:7::i;:::-;:23;;;40514:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41320:1:::1;41300:22;;:8;:22;;;;41292:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41376:28;41395:8;41376:18;:28::i;:::-;41211:201:::0;:::o;22188:273::-;22245:4;22301:7;22282:15;:13;:15::i;:::-;:26;;:66;;;;;22335:13;;22325:7;:23;22282:66;:152;;;;;22433:1;9861:8;22386:17;:26;22404:7;22386:26;;;;;;;;;;;;:43;:48;22282:152;22262:172;;22188:273;;;:::o;15390:1129::-;15457:7;15477:12;15492:7;15477:22;;15560:4;15541:15;:13;:15::i;:::-;:23;15537:915;;15594:13;;15587:4;:20;15583:869;;;15632:14;15649:17;:23;15667:4;15649:23;;;;;;;;;;;;15632:40;;15765:1;9861:8;15738:6;:23;:28;15734:699;;;16257:113;16274:1;16264:6;:11;16257:113;;;16317:17;:25;16335:6;;;;;;;16317:25;;;;;;;;;;;;16308:34;;16257:113;;;16403:6;16396:13;;;;;;15734:699;15609:843;15583:869;15537:915;16480:31;;;;;;;;;;;;;;15390:1129;;;;:::o;36170:105::-;36230:7;36257:10;36250:17;;36170:105;:::o;39026:98::-;39079:7;39106:10;39099:17;;39026:98;:::o;43360:170::-;43450:9;;43433:13;:11;:13::i;:::-;43427:3;:19;;;;:::i;:::-;:32;;43419:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;43508:14;43514:2;43518:3;43508:5;:14::i;:::-;43360:170;;:::o;11650:92::-;11706:7;11650:92;:::o;27427:2515::-;27542:27;27572;27591:7;27572:18;:27::i;:::-;27542:57;;27657:4;27616:45;;27632:19;27616:45;;;27612:86;;27670:28;;;;;;;;;;;;;;27612:86;27711:22;27760:4;27737:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27781:43;27798:4;27804:19;:17;:19::i;:::-;27781:16;:43::i;:::-;27737:87;:147;;;;27865:19;:17;:19::i;:::-;27841:43;;:20;27853:7;27841:11;:20::i;:::-;:43;;;27737:147;27711:174;;27903:17;27898:66;;27929:35;;;;;;;;;;;;;;27898:66;27993:1;27979:16;;:2;:16;;;27975:52;;;28004:23;;;;;;;;;;;;;;27975:52;28040:43;28062:4;28068:2;28072:7;28081:1;28040:21;:43::i;:::-;28156:15;:24;28172:7;28156:24;;;;;;;;;;;;28149:31;;;;;;;;;;;28548:18;:24;28567:4;28548:24;;;;;;;;;;;;;;;;28546:26;;;;;;;;;;;;28617:18;:22;28636:2;28617:22;;;;;;;;;;;;;;;;28615:24;;;;;;;;;;;10143:8;9745:3;28998:15;:41;;28956:21;28974:2;28956:17;:21::i;:::-;:84;:128;28910:17;:26;28928:7;28910:26;;;;;;;;;;;:174;;;;29254:1;10143:8;29204:19;:46;:51;29200:626;;;29276:19;29308:1;29298:7;:11;29276:33;;29465:1;29431:17;:30;29449:11;29431:30;;;;;;;;;;;;:35;29427:384;;;29569:13;;29554:11;:28;29550:242;;29749:19;29716:17;:30;29734:11;29716:30;;;;;;;;;;;:52;;;;29550:242;29427:384;29257:569;29200:626;29873:7;29869:2;29854:27;;29863:4;29854:27;;;;;;;;;;;;29892:42;29913:4;29919:2;29923:7;29932:1;29892:20;:42::i;:::-;27531:2411;;27427:2515;;;:::o;41572:191::-;41646:16;41665:6;;;;;;;;;;;41646:25;;41691:8;41682:6;;:17;;;;;;;;;;;;;;;;;;41746:8;41715:40;;41736:8;41715:40;;;;;;;;;;;;41635:128;41572:191;:::o;25517:1656::-;25582:20;25605:13;;25582:36;;25647:1;25633:16;;:2;:16;;;25629:48;;;25658:19;;;;;;;;;;;;;;25629:48;25704:1;25692:8;:13;25688:44;;;25714:18;;;;;;;;;;;;;;25688:44;25745:61;25775:1;25779:2;25783:12;25797:8;25745:21;:61::i;:::-;26349:1;9228:2;26320:1;:25;;26319:31;26307:8;:44;26281:18;:22;26300:2;26281:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;10008:3;26750:29;26777:1;26765:8;:13;26750:14;:29::i;:::-;:56;;9745:3;26687:15;:41;;26645:21;26663:2;26645:17;:21::i;:::-;:84;:162;26594:17;:31;26612:12;26594:31;;;;;;;;;;;:213;;;;26824:20;26847:12;26824:35;;26874:11;26903:8;26888:12;:23;26874:37;;26928:111;26980:14;;;;;;26976:2;26955:40;;26972:1;26955:40;;;;;;;;;;;;27034:3;27019:12;:18;26928:111;;27071:12;27055:13;:28;;;;26058:1037;;27105:60;27134:1;27138:2;27142:12;27156:8;27105:20;:60::i;:::-;25571:1602;25517:1656;;:::o;33639:716::-;33802:4;33848:2;33823:45;;;33869:19;:17;:19::i;:::-;33890:4;33896:7;33905:5;33823:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34123:1;34106:6;:13;:18;34102:235;;;34152:40;;;;;;;;;;;;;;34102:235;34295:6;34289:13;34280:6;34276:2;34272:15;34265:38;33819:529;33992:54;;;33982:64;;;:6;:64;;;;33975:71;;;33639:716;;;;;;:::o;42636:105::-;42688:13;42721:12;42714:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42636:105;:::o;36381:1959::-;36438:17;36859:3;36852:4;36846:11;36842:21;36835:28;;36950:3;36944:4;36937:17;37056:3;37513:5;37643:1;37638:3;37634:11;37627:18;;37780:2;37774:4;37770:13;37766:2;37762:22;37757:3;37749:36;37821:2;37815:4;37811:13;37803:21;;37404:682;37840:4;37404:682;;;38015:1;38010:3;38006:11;37999:18;;38066:2;38060:4;38056:13;38052:2;38048:22;38043:3;38035:36;37936:2;37930:4;37926:13;37918:21;;37404:682;;;37408:431;38137:3;38132;38128:13;38252:2;38247:3;38243:12;38236:19;;38315:6;38310:3;38303:19;36477:1856;;36381:1959;;;:::o;42979:373::-;43038:5;;43031:3;:12;;:23;;;;;43053:1;43047:3;:7;43031:23;43023:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;43276:3;43268:5;;:11;;;;:::i;:::-;43255:9;:24;;43247:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;43318:26;43326:12;:10;:12::i;:::-;43340:3;43318:7;:26::i;:::-;42979:373;:::o;35003:159::-;;;;;:::o;19175:148::-;19239:14;19300:5;19290:15;;19175:148;;;:::o;35821:158::-;;;;;:::o;19410:142::-;19468:14;19529:5;19519:15;;19410:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;280:79;;:::i;:::-;249:2;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;475:87;;;;:::o;585:568::-;658:8;668:6;718:3;711:4;703:6;699:17;695:27;685:2;;726:79;;:::i;:::-;685:2;839:6;826:20;816:30;;869:18;861:6;858:30;855:2;;;891:79;;:::i;:::-;855:2;1005:4;997:6;993:17;981:29;;1059:3;1051:4;1043:6;1039:17;1029:8;1025:32;1022:41;1019:2;;;1066:79;;:::i;:::-;1019:2;675:478;;;;;:::o;1159:133::-;1202:5;1240:6;1227:20;1218:29;;1256:30;1280:5;1256:30;:::i;:::-;1208:84;;;;:::o;1298:137::-;1343:5;1381:6;1368:20;1359:29;;1397:32;1423:5;1397:32;:::i;:::-;1349:86;;;;:::o;1441:141::-;1497:5;1528:6;1522:13;1513:22;;1544:32;1570:5;1544:32;:::i;:::-;1503:79;;;;:::o;1601:338::-;1656:5;1705:3;1698:4;1690:6;1686:17;1682:27;1672:2;;1713:79;;:::i;:::-;1672:2;1830:6;1817:20;1855:78;1929:3;1921:6;1914:4;1906:6;1902:17;1855:78;:::i;:::-;1846:87;;1662:277;;;;;:::o;1959:553::-;2017:8;2027:6;2077:3;2070:4;2062:6;2058:17;2054:27;2044:2;;2085:79;;:::i;:::-;2044:2;2198:6;2185:20;2175:30;;2228:18;2220:6;2217:30;2214:2;;;2250:79;;:::i;:::-;2214:2;2364:4;2356:6;2352:17;2340:29;;2418:3;2410:4;2402:6;2398:17;2388:8;2384:32;2381:41;2378:2;;;2425:79;;:::i;:::-;2378:2;2034:478;;;;;:::o;2518:139::-;2564:5;2602:6;2589:20;2580:29;;2618:33;2645:5;2618:33;:::i;:::-;2570:87;;;;:::o;2663:329::-;2722:6;2771:2;2759:9;2750:7;2746:23;2742:32;2739:2;;;2777:79;;:::i;:::-;2739:2;2897:1;2922:53;2967:7;2958:6;2947:9;2943:22;2922:53;:::i;:::-;2912:63;;2868:117;2729:263;;;;:::o;2998:474::-;3066:6;3074;3123:2;3111:9;3102:7;3098:23;3094:32;3091:2;;;3129:79;;:::i;:::-;3091:2;3249:1;3274:53;3319:7;3310:6;3299:9;3295:22;3274:53;:::i;:::-;3264:63;;3220:117;3376:2;3402:53;3447:7;3438:6;3427:9;3423:22;3402:53;:::i;:::-;3392:63;;3347:118;3081:391;;;;;:::o;3478:619::-;3555:6;3563;3571;3620:2;3608:9;3599:7;3595:23;3591:32;3588:2;;;3626:79;;:::i;:::-;3588:2;3746:1;3771:53;3816:7;3807:6;3796:9;3792:22;3771:53;:::i;:::-;3761:63;;3717:117;3873:2;3899:53;3944:7;3935:6;3924:9;3920:22;3899:53;:::i;:::-;3889:63;;3844:118;4001:2;4027:53;4072:7;4063:6;4052:9;4048:22;4027:53;:::i;:::-;4017:63;;3972:118;3578:519;;;;;:::o;4103:943::-;4198:6;4206;4214;4222;4271:3;4259:9;4250:7;4246:23;4242:33;4239:2;;;4278:79;;:::i;:::-;4239:2;4398:1;4423:53;4468:7;4459:6;4448:9;4444:22;4423:53;:::i;:::-;4413:63;;4369:117;4525:2;4551:53;4596:7;4587:6;4576:9;4572:22;4551:53;:::i;:::-;4541:63;;4496:118;4653:2;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4624:118;4809:2;4798:9;4794:18;4781:32;4840:18;4832:6;4829:30;4826:2;;;4862:79;;:::i;:::-;4826:2;4967:62;5021:7;5012:6;5001:9;4997:22;4967:62;:::i;:::-;4957:72;;4752:287;4229:817;;;;;;;:::o;5052:468::-;5117:6;5125;5174:2;5162:9;5153:7;5149:23;5145:32;5142:2;;;5180:79;;:::i;:::-;5142:2;5300:1;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5271:117;5427:2;5453:50;5495:7;5486:6;5475:9;5471:22;5453:50;:::i;:::-;5443:60;;5398:115;5132:388;;;;;:::o;5526:474::-;5594:6;5602;5651:2;5639:9;5630:7;5626:23;5622:32;5619:2;;;5657:79;;:::i;:::-;5619:2;5777:1;5802:53;5847:7;5838:6;5827:9;5823:22;5802:53;:::i;:::-;5792:63;;5748:117;5904:2;5930:53;5975:7;5966:6;5955:9;5951:22;5930:53;:::i;:::-;5920:63;;5875:118;5609:391;;;;;:::o;6006:559::-;6092:6;6100;6149:2;6137:9;6128:7;6124:23;6120:32;6117:2;;;6155:79;;:::i;:::-;6117:2;6303:1;6292:9;6288:17;6275:31;6333:18;6325:6;6322:30;6319:2;;;6355:79;;:::i;:::-;6319:2;6468:80;6540:7;6531:6;6520:9;6516:22;6468:80;:::i;:::-;6450:98;;;;6246:312;6107:458;;;;;:::o;6571:327::-;6629:6;6678:2;6666:9;6657:7;6653:23;6649:32;6646:2;;;6684:79;;:::i;:::-;6646:2;6804:1;6829:52;6873:7;6864:6;6853:9;6849:22;6829:52;:::i;:::-;6819:62;;6775:116;6636:262;;;;:::o;6904:349::-;6973:6;7022:2;7010:9;7001:7;6997:23;6993:32;6990:2;;;7028:79;;:::i;:::-;6990:2;7148:1;7173:63;7228:7;7219:6;7208:9;7204:22;7173:63;:::i;:::-;7163:73;;7119:127;6980:273;;;;:::o;7259:529::-;7330:6;7338;7387:2;7375:9;7366:7;7362:23;7358:32;7355:2;;;7393:79;;:::i;:::-;7355:2;7541:1;7530:9;7526:17;7513:31;7571:18;7563:6;7560:30;7557:2;;;7593:79;;:::i;:::-;7557:2;7706:65;7763:7;7754:6;7743:9;7739:22;7706:65;:::i;:::-;7688:83;;;;7484:297;7345:443;;;;;:::o;7794:329::-;7853:6;7902:2;7890:9;7881:7;7877:23;7873:32;7870:2;;;7908:79;;:::i;:::-;7870:2;8028:1;8053:53;8098:7;8089:6;8078:9;8074:22;8053:53;:::i;:::-;8043:63;;7999:117;7860:263;;;;:::o;8129:118::-;8216:24;8234:5;8216:24;:::i;:::-;8211:3;8204:37;8194:53;;:::o;8253:109::-;8334:21;8349:5;8334:21;:::i;:::-;8329:3;8322:34;8312:50;;:::o;8368:360::-;8454:3;8482:38;8514:5;8482:38;:::i;:::-;8536:70;8599:6;8594:3;8536:70;:::i;:::-;8529:77;;8615:52;8660:6;8655:3;8648:4;8641:5;8637:16;8615:52;:::i;:::-;8692:29;8714:6;8692:29;:::i;:::-;8687:3;8683:39;8676:46;;8458:270;;;;;:::o;8734:364::-;8822:3;8850:39;8883:5;8850:39;:::i;:::-;8905:71;8969:6;8964:3;8905:71;:::i;:::-;8898:78;;8985:52;9030:6;9025:3;9018:4;9011:5;9007:16;8985:52;:::i;:::-;9062:29;9084:6;9062:29;:::i;:::-;9057:3;9053:39;9046:46;;8826:272;;;;;:::o;9104:377::-;9210:3;9238:39;9271:5;9238:39;:::i;:::-;9293:89;9375:6;9370:3;9293:89;:::i;:::-;9286:96;;9391:52;9436:6;9431:3;9424:4;9417:5;9413:16;9391:52;:::i;:::-;9468:6;9463:3;9459:16;9452:23;;9214:267;;;;;:::o;9487:366::-;9629:3;9650:67;9714:2;9709:3;9650:67;:::i;:::-;9643:74;;9726:93;9815:3;9726:93;:::i;:::-;9844:2;9839:3;9835:12;9828:19;;9633:220;;;:::o;9859:366::-;10001:3;10022:67;10086:2;10081:3;10022:67;:::i;:::-;10015:74;;10098:93;10187:3;10098:93;:::i;:::-;10216:2;10211:3;10207:12;10200:19;;10005:220;;;:::o;10231:366::-;10373:3;10394:67;10458:2;10453:3;10394:67;:::i;:::-;10387:74;;10470:93;10559:3;10470:93;:::i;:::-;10588:2;10583:3;10579:12;10572:19;;10377:220;;;:::o;10603:366::-;10745:3;10766:67;10830:2;10825:3;10766:67;:::i;:::-;10759:74;;10842:93;10931:3;10842:93;:::i;:::-;10960:2;10955:3;10951:12;10944:19;;10749:220;;;:::o;10975:366::-;11117:3;11138:67;11202:2;11197:3;11138:67;:::i;:::-;11131:74;;11214:93;11303:3;11214:93;:::i;:::-;11332:2;11327:3;11323:12;11316:19;;11121:220;;;:::o;11347:366::-;11489:3;11510:67;11574:2;11569:3;11510:67;:::i;:::-;11503:74;;11586:93;11675:3;11586:93;:::i;:::-;11704:2;11699:3;11695:12;11688:19;;11493:220;;;:::o;11719:118::-;11806:24;11824:5;11806:24;:::i;:::-;11801:3;11794:37;11784:53;;:::o;11843:435::-;12023:3;12045:95;12136:3;12127:6;12045:95;:::i;:::-;12038:102;;12157:95;12248:3;12239:6;12157:95;:::i;:::-;12150:102;;12269:3;12262:10;;12027:251;;;;;:::o;12284:222::-;12377:4;12415:2;12404:9;12400:18;12392:26;;12428:71;12496:1;12485:9;12481:17;12472:6;12428:71;:::i;:::-;12382:124;;;;:::o;12512:640::-;12707:4;12745:3;12734:9;12730:19;12722:27;;12759:71;12827:1;12816:9;12812:17;12803:6;12759:71;:::i;:::-;12840:72;12908:2;12897:9;12893:18;12884:6;12840:72;:::i;:::-;12922;12990:2;12979:9;12975:18;12966:6;12922:72;:::i;:::-;13041:9;13035:4;13031:20;13026:2;13015:9;13011:18;13004:48;13069:76;13140:4;13131:6;13069:76;:::i;:::-;13061:84;;12712:440;;;;;;;:::o;13158:210::-;13245:4;13283:2;13272:9;13268:18;13260:26;;13296:65;13358:1;13347:9;13343:17;13334:6;13296:65;:::i;:::-;13250:118;;;;:::o;13374:313::-;13487:4;13525:2;13514:9;13510:18;13502:26;;13574:9;13568:4;13564:20;13560:1;13549:9;13545:17;13538:47;13602:78;13675:4;13666:6;13602:78;:::i;:::-;13594:86;;13492:195;;;;:::o;13693:419::-;13859:4;13897:2;13886:9;13882:18;13874:26;;13946:9;13940:4;13936:20;13932:1;13921:9;13917:17;13910:47;13974:131;14100:4;13974:131;:::i;:::-;13966:139;;13864:248;;;:::o;14118:419::-;14284:4;14322:2;14311:9;14307:18;14299:26;;14371:9;14365:4;14361:20;14357:1;14346:9;14342:17;14335:47;14399:131;14525:4;14399:131;:::i;:::-;14391:139;;14289:248;;;:::o;14543:419::-;14709:4;14747:2;14736:9;14732:18;14724:26;;14796:9;14790:4;14786:20;14782:1;14771:9;14767:17;14760:47;14824:131;14950:4;14824:131;:::i;:::-;14816:139;;14714:248;;;:::o;14968:419::-;15134:4;15172:2;15161:9;15157:18;15149:26;;15221:9;15215:4;15211:20;15207:1;15196:9;15192:17;15185:47;15249:131;15375:4;15249:131;:::i;:::-;15241:139;;15139:248;;;:::o;15393:419::-;15559:4;15597:2;15586:9;15582:18;15574:26;;15646:9;15640:4;15636:20;15632:1;15621:9;15617:17;15610:47;15674:131;15800:4;15674:131;:::i;:::-;15666:139;;15564:248;;;:::o;15818:419::-;15984:4;16022:2;16011:9;16007:18;15999:26;;16071:9;16065:4;16061:20;16057:1;16046:9;16042:17;16035:47;16099:131;16225:4;16099:131;:::i;:::-;16091:139;;15989:248;;;:::o;16243:222::-;16336:4;16374:2;16363:9;16359:18;16351:26;;16387:71;16455:1;16444:9;16440:17;16431:6;16387:71;:::i;:::-;16341:124;;;;:::o;16471:129::-;16505:6;16532:20;;:::i;:::-;16522:30;;16561:33;16589:4;16581:6;16561:33;:::i;:::-;16512:88;;;:::o;16606:75::-;16639:6;16672:2;16666:9;16656:19;;16646:35;:::o;16687:307::-;16748:4;16838:18;16830:6;16827:30;16824:2;;;16860:18;;:::i;:::-;16824:2;16898:29;16920:6;16898:29;:::i;:::-;16890:37;;16982:4;16976;16972:15;16964:23;;16753:241;;;:::o;17000:98::-;17051:6;17085:5;17079:12;17069:22;;17058:40;;;:::o;17104:99::-;17156:6;17190:5;17184:12;17174:22;;17163:40;;;:::o;17209:168::-;17292:11;17326:6;17321:3;17314:19;17366:4;17361:3;17357:14;17342:29;;17304:73;;;;:::o;17383:169::-;17467:11;17501:6;17496:3;17489:19;17541:4;17536:3;17532:14;17517:29;;17479:73;;;;:::o;17558:148::-;17660:11;17697:3;17682:18;;17672:34;;;;:::o;17712:305::-;17752:3;17771:20;17789:1;17771:20;:::i;:::-;17766:25;;17805:20;17823:1;17805:20;:::i;:::-;17800:25;;17959:1;17891:66;17887:74;17884:1;17881:81;17878:2;;;17965:18;;:::i;:::-;17878:2;18009:1;18006;18002:9;17995:16;;17756:261;;;;:::o;18023:348::-;18063:7;18086:20;18104:1;18086:20;:::i;:::-;18081:25;;18120:20;18138:1;18120:20;:::i;:::-;18115:25;;18308:1;18240:66;18236:74;18233:1;18230:81;18225:1;18218:9;18211:17;18207:105;18204:2;;;18315:18;;:::i;:::-;18204:2;18363:1;18360;18356:9;18345:20;;18071:300;;;;:::o;18377:96::-;18414:7;18443:24;18461:5;18443:24;:::i;:::-;18432:35;;18422:51;;;:::o;18479:90::-;18513:7;18556:5;18549:13;18542:21;18531:32;;18521:48;;;:::o;18575:149::-;18611:7;18651:66;18644:5;18640:78;18629:89;;18619:105;;;:::o;18730:126::-;18767:7;18807:42;18800:5;18796:54;18785:65;;18775:81;;;:::o;18862:77::-;18899:7;18928:5;18917:16;;18907:32;;;:::o;18945:154::-;19029:6;19024:3;19019;19006:30;19091:1;19082:6;19077:3;19073:16;19066:27;18996:103;;;:::o;19105:307::-;19173:1;19183:113;19197:6;19194:1;19191:13;19183:113;;;19282:1;19277:3;19273:11;19267:18;19263:1;19258:3;19254:11;19247:39;19219:2;19216:1;19212:10;19207:15;;19183:113;;;19314:6;19311:1;19308:13;19305:2;;;19394:1;19385:6;19380:3;19376:16;19369:27;19305:2;19154:258;;;;:::o;19418:320::-;19462:6;19499:1;19493:4;19489:12;19479:22;;19546:1;19540:4;19536:12;19567:18;19557:2;;19623:4;19615:6;19611:17;19601:27;;19557:2;19685;19677:6;19674:14;19654:18;19651:38;19648:2;;;19704:18;;:::i;:::-;19648:2;19469:269;;;;:::o;19744:281::-;19827:27;19849:4;19827:27;:::i;:::-;19819:6;19815:40;19957:6;19945:10;19942:22;19921:18;19909:10;19906:34;19903:62;19900:2;;;19968:18;;:::i;:::-;19900:2;20008:10;20004:2;19997:22;19787:238;;;:::o;20031:180::-;20079:77;20076:1;20069:88;20176:4;20173:1;20166:15;20200:4;20197:1;20190:15;20217:180;20265:77;20262:1;20255:88;20362:4;20359:1;20352:15;20386:4;20383:1;20376:15;20403:180;20451:77;20448:1;20441:88;20548:4;20545:1;20538:15;20572:4;20569:1;20562:15;20589:180;20637:77;20634:1;20627:88;20734:4;20731:1;20724:15;20758:4;20755:1;20748:15;20775:117;20884:1;20881;20874:12;20898:117;21007:1;21004;20997:12;21021:117;21130:1;21127;21120:12;21144:117;21253:1;21250;21243:12;21267:117;21376:1;21373;21366:12;21390:117;21499:1;21496;21489:12;21513:102;21554:6;21605:2;21601:7;21596:2;21589:5;21585:14;21581:28;21571:38;;21561:54;;;:::o;21621:225::-;21761:34;21757:1;21749:6;21745:14;21738:58;21830:8;21825:2;21817:6;21813:15;21806:33;21727:119;:::o;21852:223::-;21992:34;21988:1;21980:6;21976:14;21969:58;22061:6;22056:2;22048:6;22044:15;22037:31;21958:117;:::o;22081:172::-;22221:24;22217:1;22209:6;22205:14;22198:48;22187:66;:::o;22259:162::-;22399:14;22395:1;22387:6;22383:14;22376:38;22365:56;:::o;22427:182::-;22567:34;22563:1;22555:6;22551:14;22544:58;22533:76;:::o;22615:220::-;22755:34;22751:1;22743:6;22739:14;22732:58;22824:3;22819:2;22811:6;22807:15;22800:28;22721:114;:::o;22841:122::-;22914:24;22932:5;22914:24;:::i;:::-;22907:5;22904:35;22894:2;;22953:1;22950;22943:12;22894:2;22884:79;:::o;22969:116::-;23039:21;23054:5;23039:21;:::i;:::-;23032:5;23029:32;23019:2;;23075:1;23072;23065:12;23019:2;23009:76;:::o;23091:120::-;23163:23;23180:5;23163:23;:::i;:::-;23156:5;23153:34;23143:2;;23201:1;23198;23191:12;23143:2;23133:78;:::o;23217:122::-;23290:24;23308:5;23290:24;:::i;:::-;23283:5;23280:35;23270:2;;23329:1;23326;23319:12;23270:2;23260:79;:::o
Swarm Source
ipfs://bbcf795c532506742987f87a10e9255cb485414252915daaddb2a4df9ef64ffe
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.