Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,299 ARUG
Holders
261
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 ARUGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AIRUGS
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-31 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/token/common/ERC2981.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.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(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); 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; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @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); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.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 bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The 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` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => 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 auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * 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; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * 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 Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev 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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); 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-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 { transferFrom(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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { 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` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @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 transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @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 Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev 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: contracts/airugs.sol // ***************************************** // ___ ____ ____ __ _____________ // / | / _/ / __ \/ / / / ____/ ___/ // / /| | / / / /_/ / / / / / __ \__ \ // / ___ |_/ / / _, _/ /_/ / /_/ /___/ / // /_/ |_/___/ /_/ |_|\____/\____//____/ // // ***************************************** // // AIRUGS - The Finest AI Generated Rugs To Ever Be Available On The Block Chain. // You Don't Want To Miss this One =) // // Visit Our Website at https://airugs.com // Visit Our Twitter at https://twitter.com/airugs // pragma solidity ^0.8.4; contract AIRUGS is ERC721A, IERC2981, Ownable { // Contract Controllers bool public isMintEnabled = false; string baseURL = "https://ipfs.io/ipfs/QmZUicB3gpNEyWCcX6cGNrpQHAADNqrQhtu1iW2GjjWZRf/"; // Pricing Info uint256 public mintPrice = .002 ether; uint256 public royaltyPercentage = 4; // Supply Limits uint256 public maxPerWallet = 10; uint256 public maxSupply = 5000; // Free Supply Limits uint256 public freeMintPerWallet = 5; uint256 public maxFreeSupply = 1000; // Limits order size uint256 public maxOrderSize = maxPerWallet < 50 ? maxPerWallet : 50; // Tracking Wallets mapping(address => uint256) public mintedFreeWallets; // Counters uint256 public freeSupply = 0; // ***************************************** // ___ ____ ____ __ _____________ // / | / _/ / __ \/ / / / ____/ ___/ // / /| | / / / /_/ / / / / / __ \__ \ // / ___ |_/ / / _, _/ /_/ / /_/ /___/ / // /_/ |_/___/ /_/ |_|\____/\____//____/ // // ***************************************** constructor() ERC721A("AIRUGS", "ARUG") IERC2981() { _mint(0x5B3889CEC4C0C87089F60cd16a1aaEb93350FE98, 5); _mint(0xb1C8818E6234EAdE73646bB9AAcC2F2e747249cc, 5); _mint(0xCb036E1Ac356F614D8749384b7072412a676CD4f, 5); _mint(0xe03bd8a293D5391f432825b57960d49ACB13DC91, 5); _mint(0xb43fe417e4d798b24a01dcaD94927c4D4f90088b, 5); } // ***************************************** // Minting Functions // ***************************************** function fm() private { mintedFreeWallets[msg.sender]++; _mint(msg.sender, 1); freeSupply += 1; } function freeMint(uint256 quantity) external payable { require(isMintEnabled, "Minting Not Enabled"); require(mintedFreeWallets[msg.sender] < freeMintPerWallet, "You Have Already Received Your Free Mints"); require(freeSupply + quantity < maxFreeSupply, "Free Supply Exhasted"); require(quantity + _numberMinted(msg.sender) <= maxPerWallet, "You Have Purchased To Many Tokens"); uint256 number_can_free_mint = freeMintPerWallet - mintedFreeWallets[msg.sender]; require(quantity <= number_can_free_mint, "You Cannot Free Mint That Many"); require(totalSupply() + quantity < maxSupply, "Sold Out"); for(uint256 i = 0; i < quantity; i++) { if (freeSupply < maxFreeSupply) { fm(); } } } function mint(uint256 quantity) external payable { require(isMintEnabled, "Minting Not Enabled"); require(quantity > 0 && quantity <= maxPerWallet, "Invalid Quantity"); require(_numberMinted(msg.sender) + quantity <= maxPerWallet, "You Cannot Purchase That Many"); require(totalSupply() + quantity < maxSupply, "Sold Out"); // Free Minting If Available uint256 free_minted = mintedFreeWallets[msg.sender]; uint256 number_can_free_mint = freeMintPerWallet - free_minted; if (number_can_free_mint > 0 && freeSupply < maxFreeSupply) { if (quantity <= number_can_free_mint) { for(uint256 i = 0; i < quantity; i++) { if (freeSupply < maxFreeSupply) { fm(); } } return; } else { require(msg.value == mintPrice * (quantity - number_can_free_mint), "Invalid Price"); for(uint256 i = 0; i < freeMintPerWallet;i++) { if (freeSupply < maxFreeSupply) { fm(); } quantity -= 1; } } } // The Rest require(msg.value == mintPrice * quantity, "Invalid Price"); _mint(msg.sender, quantity); } // ***************************************** // Updater Functions // ***************************************** function toggleIsMintEnabled() external onlyOwner { isMintEnabled = isMintEnabled ? false : true; } function setTokenURI(string memory uri) external onlyOwner { baseURL = uri; } function setMintPrice(uint256 ethers) external onlyOwner { mintPrice = ethers; } function setMaxFreeSupply(uint256 max) external onlyOwner { require(max <= maxSupply, "Cannot Be More Than Max Supply."); maxFreeSupply = max; } // ***************************************** // Overrides // ***************************************** function _baseURI() internal view virtual override returns (string memory) { return baseURL; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); string memory Part1 = bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; return bytes(baseURI).length != 0 ? string(abi.encodePacked(Part1, ".json")) : ''; } function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override(IERC2981) returns (address, uint256) { _tokenId; // Go Away Compiler Error uint256 fee = _salePrice * royaltyPercentage / 100; return (owner(), fee); } // ***************************************** // Utility // ***************************************** function withdraw() external payable onlyOwner { payable(owner()).transfer(address(this).balance); } function checkbalance() external view returns (uint256) { return address(this).balance; } // ***************************************** // Interface Information // ***************************************** function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721A)returns (bool) { return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f || // ERC165 interface ID for ERC721Metadata. interfaceId == 0x2a55205a; // ERC165 interface ID for IERC2981. } // ***************************************** // ___ ____ ____ __ _____________ // / | / _/ / __ \/ / / / ____/ ___/ // / /| | / / / /_/ / / / / / __ \__ \ // / ___ |_/ / / _, _/ /_/ / /_/ /___/ / // /_/ |_/___/ /_/ |_|\____/\____//____/ // // ***************************************** }
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":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkbalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxOrderSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedFreeWallets","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyPercentage","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":"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":"uint256","name":"max","type":"uint256"}],"name":"setMaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethers","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setTokenURI","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":"toggleIsMintEnabled","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":"payable","type":"function"}]
Contract Creation Code
60806040526000600860146101000a81548160ff02191690831515021790555060405180608001604052806044815260200162003b7d60449139600990805190602001906200005092919062000599565b5066071afd498d0000600a556004600b55600a600c55611388600d556005600e556103e8600f556032600c54106200008a5760326200008e565b600c545b6010556000601255348015620000a357600080fd5b506040518060400160405280600681526020017f41495255475300000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f415255470000000000000000000000000000000000000000000000000000000081525081600290805190602001906200012892919062000599565b5080600390805190602001906200014192919062000599565b50620001526200024360201b60201c565b60008190555050506200017a6200016e6200024c60201b60201c565b6200025460201b60201c565b620001a1735b3889cec4c0c87089f60cd16a1aaeb93350fe9860056200031a60201b60201c565b620001c873b1c8818e6234eade73646bb9aacc2f2e747249cc60056200031a60201b60201c565b620001ef73cb036e1ac356f614d8749384b7072412a676cd4f60056200031a60201b60201c565b6200021673e03bd8a293d5391f432825b57960d49acb13dc9160056200031a60201b60201c565b6200023d73b43fe417e4d798b24a01dcad94927c4d4f90088b60056200031a60201b60201c565b620006ae565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000388576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415620003c4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003d960008483856200051960201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555062000468836200044a60008660006200051f60201b60201c565b6200045b856200054f60201b60201c565b176200055f60201b60201c565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200048c578060008190555050506200051460008483856200058a60201b60201c565b505050565b50505050565b60008060e883901c905060e86200053e8686846200059060201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60009392505050565b828054620005a79062000649565b90600052602060002090601f016020900481019282620005cb576000855562000617565b82601f10620005e657805160ff191683800117855562000617565b8280016001018555821562000617579182015b8281111562000616578251825591602001919060010190620005f9565b5b5090506200062691906200062a565b5090565b5b80821115620006455760008160009055506001016200062b565b5090565b600060028204905060018216806200066257607f821691505b602082108114156200067957620006786200067f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6134bf80620006be6000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063c4073217116100a0578063e985e9c51161006f578063e985e9c514610753578063eaa9600b14610790578063f1a82c7e146107bb578063f2fde38b146107e6578063f4a0a5281461080f5761020f565b8063c4073217146106ab578063c87b56dd146106c2578063d5abeb01146106ff578063e0df5b6f1461072a5761020f565b806395d89b41116100e757806395d89b41146105e7578063a0712d6814610612578063a22cb4651461062e578063b88d4fde14610657578063c1ab22ec146106805761020f565b8063715018a61461055e5780637c928fe9146105755780638a71bb2d146105915780638da5cb5b146105bc5761020f565b8063346de50a1161019b578063475133341161016a57806347513334146104655780635b28fd91146104905780636352211e146104b95780636817c76c146104f657806370a08231146105215761020f565b8063346de50a146103dc5780633ccfd60b1461040757806342842e0e14610411578063453c23101461043a5761020f565b806318160ddd116101e257806318160ddd146102e25780631f8c475e1461030d57806323b872dd1461034a57806324a6ab0c146103735780632a55205a1461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061275b565b610838565b6040516102489190612bc0565b60405180910390f35b34801561025d57600080fd5b506102666108fa565b6040516102739190612bdb565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906127ee565b61098c565b6040516102b09190612b30565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061271f565b610a08565b005b3480156102ee57600080fd5b506102f7610b49565b6040516103049190612d7d565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f91906125b4565b610b60565b6040516103419190612d7d565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612619565b610b78565b005b34801561037f57600080fd5b50610388610e9d565b6040516103959190612d7d565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190612817565b610ea3565b6040516103d3929190612b97565b60405180910390f35b3480156103e857600080fd5b506103f1610ed9565b6040516103fe9190612bc0565b60405180910390f35b61040f610eec565b005b34801561041d57600080fd5b5061043860048036038101906104339190612619565b610f44565b005b34801561044657600080fd5b5061044f610f64565b60405161045c9190612d7d565b60405180910390f35b34801561047157600080fd5b5061047a610f6a565b6040516104879190612d7d565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b291906127ee565b610f70565b005b3480156104c557600080fd5b506104e060048036038101906104db91906127ee565b610fc7565b6040516104ed9190612b30565b60405180910390f35b34801561050257600080fd5b5061050b610fd9565b6040516105189190612d7d565b60405180910390f35b34801561052d57600080fd5b50610548600480360381019061054391906125b4565b610fdf565b6040516105559190612d7d565b60405180910390f35b34801561056a57600080fd5b50610573611098565b005b61058f600480360381019061058a91906127ee565b6110ac565b005b34801561059d57600080fd5b506105a6611349565b6040516105b39190612d7d565b60405180910390f35b3480156105c857600080fd5b506105d161134f565b6040516105de9190612b30565b60405180910390f35b3480156105f357600080fd5b506105fc611379565b6040516106099190612bdb565b60405180910390f35b61062c600480360381019061062791906127ee565b61140b565b005b34801561063a57600080fd5b50610655600480360381019061065091906126e3565b611708565b005b34801561066357600080fd5b5061067e60048036038101906106799190612668565b611880565b005b34801561068c57600080fd5b506106956118f3565b6040516106a29190612d7d565b60405180910390f35b3480156106b757600080fd5b506106c06118f9565b005b3480156106ce57600080fd5b506106e960048036038101906106e491906127ee565b61193a565b6040516106f69190612bdb565b60405180910390f35b34801561070b57600080fd5b50610714611a1d565b6040516107219190612d7d565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c91906127ad565b611a23565b005b34801561075f57600080fd5b5061077a600480360381019061077591906125dd565b611a45565b6040516107879190612bc0565b60405180910390f35b34801561079c57600080fd5b506107a5611ad9565b6040516107b29190612d7d565b60405180910390f35b3480156107c757600080fd5b506107d0611ae1565b6040516107dd9190612d7d565b60405180910390f35b3480156107f257600080fd5b5061080d600480360381019061080891906125b4565b611ae7565b005b34801561081b57600080fd5b50610836600480360381019061083191906127ee565b611b6b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f35750632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109099061302d565b80601f01602080910402602001604051908101604052809291908181526020018280546109359061302d565b80156109825780601f1061095757610100808354040283529160200191610982565b820191906000526020600020905b81548152906001019060200180831161096557829003601f168201915b5050505050905090565b600061099782611b7d565b6109cd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1382610fc7565b90508073ffffffffffffffffffffffffffffffffffffffff16610a34611bdc565b73ffffffffffffffffffffffffffffffffffffffff1614610a9757610a6081610a5b611bdc565b611a45565b610a96576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b53611be4565b6001546000540303905090565b60116020528060005260406000206000915090505481565b6000610b8382611bed565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bea576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bf684611cbb565b91509150610c0c8187610c07611bdc565b611cdd565b610c5857610c2186610c1c611bdc565b611a45565b610c57576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cbf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ccc8686866001611d21565b8015610cd757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610da585610d81888887611d27565b7c020000000000000000000000000000000000000000000000000000000017611d4f565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e2d576000600185019050600060046000838152602001908152602001600020541415610e2b576000548114610e2a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e958686866001611d7a565b505050505050565b60125481565b60008060006064600b5485610eb89190612ee9565b610ec29190612eb8565b9050610ecc61134f565b8192509250509250929050565b600860149054906101000a900460ff1681565b610ef4611d80565b610efc61134f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f41573d6000803e3d6000fd5b50565b610f5f83838360405180602001604052806000815250611880565b505050565b600c5481565b600f5481565b610f78611d80565b600d54811115610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490612bfd565b60405180910390fd5b80600f8190555050565b6000610fd282611bed565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611047576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110a0611d80565b6110aa6000611dfe565b565b600860149054906101000a900460ff166110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290612c9d565b60405180910390fd5b600e54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590612cbd565b60405180910390fd5b600f548160125461118f9190612e62565b106111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690612cfd565b60405180910390fd5b600c546111db33611ec4565b826111e69190612e62565b1115611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90612d5d565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600e546112769190612f43565b9050808211156112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b290612cdd565b60405180910390fd5b600d54826112c7610b49565b6112d19190612e62565b10611311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130890612c3d565b60405180910390fd5b60005b8281101561134457600f54601254101561133157611330611f1b565b5b808061133c90613090565b915050611314565b505050565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546113889061302d565b80601f01602080910402602001604051908101604052809291908181526020018280546113b49061302d565b80156114015780601f106113d657610100808354040283529160200191611401565b820191906000526020600020905b8154815290600101906020018083116113e457829003601f168201915b5050505050905090565b600860149054906101000a900460ff1661145a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145190612c9d565b60405180910390fd5b60008111801561146c5750600c548111155b6114ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a290612c1d565b60405180910390fd5b600c54816114b833611ec4565b6114c29190612e62565b1115611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90612c7d565b60405180910390fd5b600d548161150f610b49565b6115199190612e62565b10611559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155090612c3d565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081600e546115ad9190612f43565b90506000811180156115c25750600f54601254105b156116a9578083116116095760005b8381101561160157600f5460125410156115ee576115ed611f1b565b5b80806115f990613090565b9150506115d1565b505050611705565b80836116159190612f43565b600a546116229190612ee9565b3414611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90612d1d565b60405180910390fd5b60005b600e548110156116a757600f54601254101561168557611684611f1b565b5b6001846116929190612f43565b9350808061169f90613090565b915050611666565b505b82600a546116b79190612ee9565b34146116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90612d1d565b60405180910390fd5b6117023384611f97565b50505b50565b611710611bdc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611775576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611782611bdc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661182f611bdc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118749190612bc0565b60405180910390a35050565b61188b848484610b78565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118ed576118b68484848461216b565b6118ec576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600e5481565b611901611d80565b600860149054906101000a900460ff1661191c57600161191f565b60005b600860146101000a81548160ff021916908315150217905550565b606061194582611b7d565b61197b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006119856122cb565b9050600080825114156119a757604051806020016040528060008152506119d2565b816119b18561235d565b6040516020016119c2929190612aea565b6040516020818303038152906040525b90506000825114156119f35760405180602001604052806000815250611a14565b80604051602001611a049190612b0e565b6040516020818303038152906040525b92505050919050565b600d5481565b611a2b611d80565b8060099080519060200190611a419291906123d8565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600047905090565b60105481565b611aef611d80565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5690612c5d565b60405180910390fd5b611b6881611dfe565b50565b611b73611d80565b80600a8190555050565b600081611b88611be4565b11158015611b97575060005482105b8015611bd5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611bfc611be4565b11611c8457600054811015611c835760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c81575b6000811415611c77576004600083600190039350838152602001908152602001600020549050611c4c565b8092505050611cb6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d3e8686846123b7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611d886123c0565b73ffffffffffffffffffffffffffffffffffffffff16611da661134f565b73ffffffffffffffffffffffffffffffffffffffff1614611dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df390612d3d565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611f6b90613090565b9190505550611f7b336001611f97565b600160126000828254611f8e9190612e62565b92505081905550565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612004576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561203f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61204c6000848385611d21565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120c3836120b46000866000611d27565b6120bd856123c8565b17611d4f565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106120e7578060008190555050506121666000848385611d7a565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612191611bdc565b8786866040518563ffffffff1660e01b81526004016121b39493929190612b4b565b602060405180830381600087803b1580156121cd57600080fd5b505af19250505080156121fe57506040513d601f19601f820116820180604052508101906121fb9190612784565b60015b612278573d806000811461222e576040519150601f19603f3d011682016040523d82523d6000602084013e612233565b606091505b50600081511415612270576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546122da9061302d565b80601f01602080910402602001604051908101604052809291908181526020018280546123069061302d565b80156123535780601f1061232857610100808354040283529160200191612353565b820191906000526020600020905b81548152906001019060200180831161233657829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156123a357600183039250600a81066030018353600a81049050612383565b508181036020830392508083525050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b8280546123e49061302d565b90600052602060002090601f016020900481019282612406576000855561244d565b82601f1061241f57805160ff191683800117855561244d565b8280016001018555821561244d579182015b8281111561244c578251825591602001919060010190612431565b5b50905061245a919061245e565b5090565b5b8082111561247757600081600090555060010161245f565b5090565b600061248e61248984612dbd565b612d98565b9050828152602081018484840111156124a657600080fd5b6124b1848285612feb565b509392505050565b60006124cc6124c784612dee565b612d98565b9050828152602081018484840111156124e457600080fd5b6124ef848285612feb565b509392505050565b6000813590506125068161342d565b92915050565b60008135905061251b81613444565b92915050565b6000813590506125308161345b565b92915050565b6000815190506125458161345b565b92915050565b600082601f83011261255c57600080fd5b813561256c84826020860161247b565b91505092915050565b600082601f83011261258657600080fd5b81356125968482602086016124b9565b91505092915050565b6000813590506125ae81613472565b92915050565b6000602082840312156125c657600080fd5b60006125d4848285016124f7565b91505092915050565b600080604083850312156125f057600080fd5b60006125fe858286016124f7565b925050602061260f858286016124f7565b9150509250929050565b60008060006060848603121561262e57600080fd5b600061263c868287016124f7565b935050602061264d868287016124f7565b925050604061265e8682870161259f565b9150509250925092565b6000806000806080858703121561267e57600080fd5b600061268c878288016124f7565b945050602061269d878288016124f7565b93505060406126ae8782880161259f565b925050606085013567ffffffffffffffff8111156126cb57600080fd5b6126d78782880161254b565b91505092959194509250565b600080604083850312156126f657600080fd5b6000612704858286016124f7565b92505060206127158582860161250c565b9150509250929050565b6000806040838503121561273257600080fd5b6000612740858286016124f7565b92505060206127518582860161259f565b9150509250929050565b60006020828403121561276d57600080fd5b600061277b84828501612521565b91505092915050565b60006020828403121561279657600080fd5b60006127a484828501612536565b91505092915050565b6000602082840312156127bf57600080fd5b600082013567ffffffffffffffff8111156127d957600080fd5b6127e584828501612575565b91505092915050565b60006020828403121561280057600080fd5b600061280e8482850161259f565b91505092915050565b6000806040838503121561282a57600080fd5b60006128388582860161259f565b92505060206128498582860161259f565b9150509250929050565b61285c81612f77565b82525050565b61286b81612f89565b82525050565b600061287c82612e1f565b6128868185612e35565b9350612896818560208601612ffa565b61289f81613195565b840191505092915050565b60006128b582612e2a565b6128bf8185612e46565b93506128cf818560208601612ffa565b6128d881613195565b840191505092915050565b60006128ee82612e2a565b6128f88185612e57565b9350612908818560208601612ffa565b80840191505092915050565b6000612921601f83612e46565b915061292c826131a6565b602082019050919050565b6000612944601083612e46565b915061294f826131cf565b602082019050919050565b6000612967600883612e46565b9150612972826131f8565b602082019050919050565b600061298a602683612e46565b915061299582613221565b604082019050919050565b60006129ad601d83612e46565b91506129b882613270565b602082019050919050565b60006129d0601383612e46565b91506129db82613299565b602082019050919050565b60006129f3602983612e46565b91506129fe826132c2565b604082019050919050565b6000612a16601e83612e46565b9150612a2182613311565b602082019050919050565b6000612a39601483612e46565b9150612a448261333a565b602082019050919050565b6000612a5c600d83612e46565b9150612a6782613363565b602082019050919050565b6000612a7f600583612e57565b9150612a8a8261338c565b600582019050919050565b6000612aa2602083612e46565b9150612aad826133b5565b602082019050919050565b6000612ac5602183612e46565b9150612ad0826133de565b604082019050919050565b612ae481612fe1565b82525050565b6000612af682856128e3565b9150612b0282846128e3565b91508190509392505050565b6000612b1a82846128e3565b9150612b2582612a72565b915081905092915050565b6000602082019050612b456000830184612853565b92915050565b6000608082019050612b606000830187612853565b612b6d6020830186612853565b612b7a6040830185612adb565b8181036060830152612b8c8184612871565b905095945050505050565b6000604082019050612bac6000830185612853565b612bb96020830184612adb565b9392505050565b6000602082019050612bd56000830184612862565b92915050565b60006020820190508181036000830152612bf581846128aa565b905092915050565b60006020820190508181036000830152612c1681612914565b9050919050565b60006020820190508181036000830152612c3681612937565b9050919050565b60006020820190508181036000830152612c568161295a565b9050919050565b60006020820190508181036000830152612c768161297d565b9050919050565b60006020820190508181036000830152612c96816129a0565b9050919050565b60006020820190508181036000830152612cb6816129c3565b9050919050565b60006020820190508181036000830152612cd6816129e6565b9050919050565b60006020820190508181036000830152612cf681612a09565b9050919050565b60006020820190508181036000830152612d1681612a2c565b9050919050565b60006020820190508181036000830152612d3681612a4f565b9050919050565b60006020820190508181036000830152612d5681612a95565b9050919050565b60006020820190508181036000830152612d7681612ab8565b9050919050565b6000602082019050612d926000830184612adb565b92915050565b6000612da2612db3565b9050612dae828261305f565b919050565b6000604051905090565b600067ffffffffffffffff821115612dd857612dd7613166565b5b612de182613195565b9050602081019050919050565b600067ffffffffffffffff821115612e0957612e08613166565b5b612e1282613195565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e6d82612fe1565b9150612e7883612fe1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ead57612eac6130d9565b5b828201905092915050565b6000612ec382612fe1565b9150612ece83612fe1565b925082612ede57612edd613108565b5b828204905092915050565b6000612ef482612fe1565b9150612eff83612fe1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f3857612f376130d9565b5b828202905092915050565b6000612f4e82612fe1565b9150612f5983612fe1565b925082821015612f6c57612f6b6130d9565b5b828203905092915050565b6000612f8282612fc1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613018578082015181840152602081019050612ffd565b83811115613027576000848401525b50505050565b6000600282049050600182168061304557607f821691505b6020821081141561305957613058613137565b5b50919050565b61306882613195565b810181811067ffffffffffffffff8211171561308757613086613166565b5b80604052505050565b600061309b82612fe1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130ce576130cd6130d9565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43616e6e6f74204265204d6f7265205468616e204d617820537570706c792e00600082015250565b7f496e76616c6964205175616e7469747900000000000000000000000000000000600082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752043616e6e6f742050757263686173652054686174204d616e79000000600082015250565b7f4d696e74696e67204e6f7420456e61626c656400000000000000000000000000600082015250565b7f596f75204861766520416c726561647920526563656976656420596f7572204660008201527f726565204d696e74730000000000000000000000000000000000000000000000602082015250565b7f596f752043616e6e6f742046726565204d696e742054686174204d616e790000600082015250565b7f4672656520537570706c79204578686173746564000000000000000000000000600082015250565b7f496e76616c696420507269636500000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f7520486176652050757263686173656420546f204d616e7920546f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b61343681612f77565b811461344157600080fd5b50565b61344d81612f89565b811461345857600080fd5b50565b61346481612f95565b811461346f57600080fd5b50565b61347b81612fe1565b811461348657600080fd5b5056fea2646970667358221220798aa147264d37b2dcf6059e40074e8d94f26c8a5a3eb25942c0273f13fb705064736f6c6343000804003368747470733a2f2f697066732e696f2f697066732f516d5a556963423367704e4579574363583663474e727051484141444e71725168747531695732476a6a575a52662f
Deployed Bytecode
0x60806040526004361061020f5760003560e01c8063715018a611610118578063c4073217116100a0578063e985e9c51161006f578063e985e9c514610753578063eaa9600b14610790578063f1a82c7e146107bb578063f2fde38b146107e6578063f4a0a5281461080f5761020f565b8063c4073217146106ab578063c87b56dd146106c2578063d5abeb01146106ff578063e0df5b6f1461072a5761020f565b806395d89b41116100e757806395d89b41146105e7578063a0712d6814610612578063a22cb4651461062e578063b88d4fde14610657578063c1ab22ec146106805761020f565b8063715018a61461055e5780637c928fe9146105755780638a71bb2d146105915780638da5cb5b146105bc5761020f565b8063346de50a1161019b578063475133341161016a57806347513334146104655780635b28fd91146104905780636352211e146104b95780636817c76c146104f657806370a08231146105215761020f565b8063346de50a146103dc5780633ccfd60b1461040757806342842e0e14610411578063453c23101461043a5761020f565b806318160ddd116101e257806318160ddd146102e25780631f8c475e1461030d57806323b872dd1461034a57806324a6ab0c146103735780632a55205a1461039e5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b6004803603810190610236919061275b565b610838565b6040516102489190612bc0565b60405180910390f35b34801561025d57600080fd5b506102666108fa565b6040516102739190612bdb565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e91906127ee565b61098c565b6040516102b09190612b30565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db919061271f565b610a08565b005b3480156102ee57600080fd5b506102f7610b49565b6040516103049190612d7d565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f91906125b4565b610b60565b6040516103419190612d7d565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612619565b610b78565b005b34801561037f57600080fd5b50610388610e9d565b6040516103959190612d7d565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190612817565b610ea3565b6040516103d3929190612b97565b60405180910390f35b3480156103e857600080fd5b506103f1610ed9565b6040516103fe9190612bc0565b60405180910390f35b61040f610eec565b005b34801561041d57600080fd5b5061043860048036038101906104339190612619565b610f44565b005b34801561044657600080fd5b5061044f610f64565b60405161045c9190612d7d565b60405180910390f35b34801561047157600080fd5b5061047a610f6a565b6040516104879190612d7d565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b291906127ee565b610f70565b005b3480156104c557600080fd5b506104e060048036038101906104db91906127ee565b610fc7565b6040516104ed9190612b30565b60405180910390f35b34801561050257600080fd5b5061050b610fd9565b6040516105189190612d7d565b60405180910390f35b34801561052d57600080fd5b50610548600480360381019061054391906125b4565b610fdf565b6040516105559190612d7d565b60405180910390f35b34801561056a57600080fd5b50610573611098565b005b61058f600480360381019061058a91906127ee565b6110ac565b005b34801561059d57600080fd5b506105a6611349565b6040516105b39190612d7d565b60405180910390f35b3480156105c857600080fd5b506105d161134f565b6040516105de9190612b30565b60405180910390f35b3480156105f357600080fd5b506105fc611379565b6040516106099190612bdb565b60405180910390f35b61062c600480360381019061062791906127ee565b61140b565b005b34801561063a57600080fd5b50610655600480360381019061065091906126e3565b611708565b005b34801561066357600080fd5b5061067e60048036038101906106799190612668565b611880565b005b34801561068c57600080fd5b506106956118f3565b6040516106a29190612d7d565b60405180910390f35b3480156106b757600080fd5b506106c06118f9565b005b3480156106ce57600080fd5b506106e960048036038101906106e491906127ee565b61193a565b6040516106f69190612bdb565b60405180910390f35b34801561070b57600080fd5b50610714611a1d565b6040516107219190612d7d565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c91906127ad565b611a23565b005b34801561075f57600080fd5b5061077a600480360381019061077591906125dd565b611a45565b6040516107879190612bc0565b60405180910390f35b34801561079c57600080fd5b506107a5611ad9565b6040516107b29190612d7d565b60405180910390f35b3480156107c757600080fd5b506107d0611ae1565b6040516107dd9190612d7d565b60405180910390f35b3480156107f257600080fd5b5061080d600480360381019061080891906125b4565b611ae7565b005b34801561081b57600080fd5b50610836600480360381019061083191906127ee565b611b6b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c35750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f35750632a55205a60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109099061302d565b80601f01602080910402602001604051908101604052809291908181526020018280546109359061302d565b80156109825780601f1061095757610100808354040283529160200191610982565b820191906000526020600020905b81548152906001019060200180831161096557829003601f168201915b5050505050905090565b600061099782611b7d565b6109cd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1382610fc7565b90508073ffffffffffffffffffffffffffffffffffffffff16610a34611bdc565b73ffffffffffffffffffffffffffffffffffffffff1614610a9757610a6081610a5b611bdc565b611a45565b610a96576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b53611be4565b6001546000540303905090565b60116020528060005260406000206000915090505481565b6000610b8382611bed565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bea576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bf684611cbb565b91509150610c0c8187610c07611bdc565b611cdd565b610c5857610c2186610c1c611bdc565b611a45565b610c57576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610cbf576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ccc8686866001611d21565b8015610cd757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610da585610d81888887611d27565b7c020000000000000000000000000000000000000000000000000000000017611d4f565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e2d576000600185019050600060046000838152602001908152602001600020541415610e2b576000548114610e2a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e958686866001611d7a565b505050505050565b60125481565b60008060006064600b5485610eb89190612ee9565b610ec29190612eb8565b9050610ecc61134f565b8192509250509250929050565b600860149054906101000a900460ff1681565b610ef4611d80565b610efc61134f565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f41573d6000803e3d6000fd5b50565b610f5f83838360405180602001604052806000815250611880565b505050565b600c5481565b600f5481565b610f78611d80565b600d54811115610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490612bfd565b60405180910390fd5b80600f8190555050565b6000610fd282611bed565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611047576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110a0611d80565b6110aa6000611dfe565b565b600860149054906101000a900460ff166110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290612c9d565b60405180910390fd5b600e54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541061117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590612cbd565b60405180910390fd5b600f548160125461118f9190612e62565b106111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690612cfd565b60405180910390fd5b600c546111db33611ec4565b826111e69190612e62565b1115611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90612d5d565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600e546112769190612f43565b9050808211156112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b290612cdd565b60405180910390fd5b600d54826112c7610b49565b6112d19190612e62565b10611311576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130890612c3d565b60405180910390fd5b60005b8281101561134457600f54601254101561133157611330611f1b565b5b808061133c90613090565b915050611314565b505050565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546113889061302d565b80601f01602080910402602001604051908101604052809291908181526020018280546113b49061302d565b80156114015780601f106113d657610100808354040283529160200191611401565b820191906000526020600020905b8154815290600101906020018083116113e457829003601f168201915b5050505050905090565b600860149054906101000a900460ff1661145a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145190612c9d565b60405180910390fd5b60008111801561146c5750600c548111155b6114ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a290612c1d565b60405180910390fd5b600c54816114b833611ec4565b6114c29190612e62565b1115611503576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fa90612c7d565b60405180910390fd5b600d548161150f610b49565b6115199190612e62565b10611559576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155090612c3d565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081600e546115ad9190612f43565b90506000811180156115c25750600f54601254105b156116a9578083116116095760005b8381101561160157600f5460125410156115ee576115ed611f1b565b5b80806115f990613090565b9150506115d1565b505050611705565b80836116159190612f43565b600a546116229190612ee9565b3414611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90612d1d565b60405180910390fd5b60005b600e548110156116a757600f54601254101561168557611684611f1b565b5b6001846116929190612f43565b9350808061169f90613090565b915050611666565b505b82600a546116b79190612ee9565b34146116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90612d1d565b60405180910390fd5b6117023384611f97565b50505b50565b611710611bdc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611775576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611782611bdc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661182f611bdc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118749190612bc0565b60405180910390a35050565b61188b848484610b78565b60008373ffffffffffffffffffffffffffffffffffffffff163b146118ed576118b68484848461216b565b6118ec576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600e5481565b611901611d80565b600860149054906101000a900460ff1661191c57600161191f565b60005b600860146101000a81548160ff021916908315150217905550565b606061194582611b7d565b61197b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006119856122cb565b9050600080825114156119a757604051806020016040528060008152506119d2565b816119b18561235d565b6040516020016119c2929190612aea565b6040516020818303038152906040525b90506000825114156119f35760405180602001604052806000815250611a14565b80604051602001611a049190612b0e565b6040516020818303038152906040525b92505050919050565b600d5481565b611a2b611d80565b8060099080519060200190611a419291906123d8565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600047905090565b60105481565b611aef611d80565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5690612c5d565b60405180910390fd5b611b6881611dfe565b50565b611b73611d80565b80600a8190555050565b600081611b88611be4565b11158015611b97575060005482105b8015611bd5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611bfc611be4565b11611c8457600054811015611c835760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c81575b6000811415611c77576004600083600190039350838152602001908152602001600020549050611c4c565b8092505050611cb6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d3e8686846123b7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611d886123c0565b73ffffffffffffffffffffffffffffffffffffffff16611da661134f565b73ffffffffffffffffffffffffffffffffffffffff1614611dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df390612d3d565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611f6b90613090565b9190505550611f7b336001611f97565b600160126000828254611f8e9190612e62565b92505081905550565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612004576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561203f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61204c6000848385611d21565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506120c3836120b46000866000611d27565b6120bd856123c8565b17611d4f565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106120e7578060008190555050506121666000848385611d7a565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612191611bdc565b8786866040518563ffffffff1660e01b81526004016121b39493929190612b4b565b602060405180830381600087803b1580156121cd57600080fd5b505af19250505080156121fe57506040513d601f19601f820116820180604052508101906121fb9190612784565b60015b612278573d806000811461222e576040519150601f19603f3d011682016040523d82523d6000602084013e612233565b606091505b50600081511415612270576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546122da9061302d565b80601f01602080910402602001604051908101604052809291908181526020018280546123069061302d565b80156123535780601f1061232857610100808354040283529160200191612353565b820191906000526020600020905b81548152906001019060200180831161233657829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156123a357600183039250600a81066030018353600a81049050612383565b508181036020830392508083525050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b8280546123e49061302d565b90600052602060002090601f016020900481019282612406576000855561244d565b82601f1061241f57805160ff191683800117855561244d565b8280016001018555821561244d579182015b8281111561244c578251825591602001919060010190612431565b5b50905061245a919061245e565b5090565b5b8082111561247757600081600090555060010161245f565b5090565b600061248e61248984612dbd565b612d98565b9050828152602081018484840111156124a657600080fd5b6124b1848285612feb565b509392505050565b60006124cc6124c784612dee565b612d98565b9050828152602081018484840111156124e457600080fd5b6124ef848285612feb565b509392505050565b6000813590506125068161342d565b92915050565b60008135905061251b81613444565b92915050565b6000813590506125308161345b565b92915050565b6000815190506125458161345b565b92915050565b600082601f83011261255c57600080fd5b813561256c84826020860161247b565b91505092915050565b600082601f83011261258657600080fd5b81356125968482602086016124b9565b91505092915050565b6000813590506125ae81613472565b92915050565b6000602082840312156125c657600080fd5b60006125d4848285016124f7565b91505092915050565b600080604083850312156125f057600080fd5b60006125fe858286016124f7565b925050602061260f858286016124f7565b9150509250929050565b60008060006060848603121561262e57600080fd5b600061263c868287016124f7565b935050602061264d868287016124f7565b925050604061265e8682870161259f565b9150509250925092565b6000806000806080858703121561267e57600080fd5b600061268c878288016124f7565b945050602061269d878288016124f7565b93505060406126ae8782880161259f565b925050606085013567ffffffffffffffff8111156126cb57600080fd5b6126d78782880161254b565b91505092959194509250565b600080604083850312156126f657600080fd5b6000612704858286016124f7565b92505060206127158582860161250c565b9150509250929050565b6000806040838503121561273257600080fd5b6000612740858286016124f7565b92505060206127518582860161259f565b9150509250929050565b60006020828403121561276d57600080fd5b600061277b84828501612521565b91505092915050565b60006020828403121561279657600080fd5b60006127a484828501612536565b91505092915050565b6000602082840312156127bf57600080fd5b600082013567ffffffffffffffff8111156127d957600080fd5b6127e584828501612575565b91505092915050565b60006020828403121561280057600080fd5b600061280e8482850161259f565b91505092915050565b6000806040838503121561282a57600080fd5b60006128388582860161259f565b92505060206128498582860161259f565b9150509250929050565b61285c81612f77565b82525050565b61286b81612f89565b82525050565b600061287c82612e1f565b6128868185612e35565b9350612896818560208601612ffa565b61289f81613195565b840191505092915050565b60006128b582612e2a565b6128bf8185612e46565b93506128cf818560208601612ffa565b6128d881613195565b840191505092915050565b60006128ee82612e2a565b6128f88185612e57565b9350612908818560208601612ffa565b80840191505092915050565b6000612921601f83612e46565b915061292c826131a6565b602082019050919050565b6000612944601083612e46565b915061294f826131cf565b602082019050919050565b6000612967600883612e46565b9150612972826131f8565b602082019050919050565b600061298a602683612e46565b915061299582613221565b604082019050919050565b60006129ad601d83612e46565b91506129b882613270565b602082019050919050565b60006129d0601383612e46565b91506129db82613299565b602082019050919050565b60006129f3602983612e46565b91506129fe826132c2565b604082019050919050565b6000612a16601e83612e46565b9150612a2182613311565b602082019050919050565b6000612a39601483612e46565b9150612a448261333a565b602082019050919050565b6000612a5c600d83612e46565b9150612a6782613363565b602082019050919050565b6000612a7f600583612e57565b9150612a8a8261338c565b600582019050919050565b6000612aa2602083612e46565b9150612aad826133b5565b602082019050919050565b6000612ac5602183612e46565b9150612ad0826133de565b604082019050919050565b612ae481612fe1565b82525050565b6000612af682856128e3565b9150612b0282846128e3565b91508190509392505050565b6000612b1a82846128e3565b9150612b2582612a72565b915081905092915050565b6000602082019050612b456000830184612853565b92915050565b6000608082019050612b606000830187612853565b612b6d6020830186612853565b612b7a6040830185612adb565b8181036060830152612b8c8184612871565b905095945050505050565b6000604082019050612bac6000830185612853565b612bb96020830184612adb565b9392505050565b6000602082019050612bd56000830184612862565b92915050565b60006020820190508181036000830152612bf581846128aa565b905092915050565b60006020820190508181036000830152612c1681612914565b9050919050565b60006020820190508181036000830152612c3681612937565b9050919050565b60006020820190508181036000830152612c568161295a565b9050919050565b60006020820190508181036000830152612c768161297d565b9050919050565b60006020820190508181036000830152612c96816129a0565b9050919050565b60006020820190508181036000830152612cb6816129c3565b9050919050565b60006020820190508181036000830152612cd6816129e6565b9050919050565b60006020820190508181036000830152612cf681612a09565b9050919050565b60006020820190508181036000830152612d1681612a2c565b9050919050565b60006020820190508181036000830152612d3681612a4f565b9050919050565b60006020820190508181036000830152612d5681612a95565b9050919050565b60006020820190508181036000830152612d7681612ab8565b9050919050565b6000602082019050612d926000830184612adb565b92915050565b6000612da2612db3565b9050612dae828261305f565b919050565b6000604051905090565b600067ffffffffffffffff821115612dd857612dd7613166565b5b612de182613195565b9050602081019050919050565b600067ffffffffffffffff821115612e0957612e08613166565b5b612e1282613195565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e6d82612fe1565b9150612e7883612fe1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ead57612eac6130d9565b5b828201905092915050565b6000612ec382612fe1565b9150612ece83612fe1565b925082612ede57612edd613108565b5b828204905092915050565b6000612ef482612fe1565b9150612eff83612fe1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f3857612f376130d9565b5b828202905092915050565b6000612f4e82612fe1565b9150612f5983612fe1565b925082821015612f6c57612f6b6130d9565b5b828203905092915050565b6000612f8282612fc1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613018578082015181840152602081019050612ffd565b83811115613027576000848401525b50505050565b6000600282049050600182168061304557607f821691505b6020821081141561305957613058613137565b5b50919050565b61306882613195565b810181811067ffffffffffffffff8211171561308757613086613166565b5b80604052505050565b600061309b82612fe1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130ce576130cd6130d9565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43616e6e6f74204265204d6f7265205468616e204d617820537570706c792e00600082015250565b7f496e76616c6964205175616e7469747900000000000000000000000000000000600082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f596f752043616e6e6f742050757263686173652054686174204d616e79000000600082015250565b7f4d696e74696e67204e6f7420456e61626c656400000000000000000000000000600082015250565b7f596f75204861766520416c726561647920526563656976656420596f7572204660008201527f726565204d696e74730000000000000000000000000000000000000000000000602082015250565b7f596f752043616e6e6f742046726565204d696e742054686174204d616e790000600082015250565b7f4672656520537570706c79204578686173746564000000000000000000000000600082015250565b7f496e76616c696420507269636500000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f596f7520486176652050757263686173656420546f204d616e7920546f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b61343681612f77565b811461344157600080fd5b50565b61344d81612f89565b811461345857600080fd5b50565b61346481612f95565b811461346f57600080fd5b50565b61347b81612fe1565b811461348657600080fd5b5056fea2646970667358221220798aa147264d37b2dcf6059e40074e8d94f26c8a5a3eb25942c0273f13fb705064736f6c63430008040033
Deployed Bytecode Sourcemap
55965:6949:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62135:450;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30829:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32775:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32323:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24236:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56626:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42040:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56702:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61381:271;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;56048:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61774:114;;;:::i;:::-;;33665:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56312:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56459:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60432:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30618:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56203:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25861:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;57742:811;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56247:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30998:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58561:1415;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33051:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33921:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56416:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60108:114;;;;;;;;;;;;;:::i;:::-;;60950:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56351:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60230:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33430:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61896:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56527:67;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60329:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62135:450;62237:4;62289:10;62274:25;;:11;:25;;;;:102;;;;62366:10;62351:25;;:11;:25;;;;62274:102;:179;;;;62443:10;62428:25;;:11;:25;;;;62274:179;:264;;;;62528:10;62513:25;;:11;:25;;;;62274:264;62254:284;;62135:450;;;:::o;30829:100::-;30883:13;30916:5;30909:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30829:100;:::o;32775:204::-;32843:7;32868:16;32876:7;32868;:16::i;:::-;32863:64;;32893:34;;;;;;;;;;;;;;32863:64;32947:15;:24;32963:7;32947:24;;;;;;;;;;;;;;;;;;;;;32940:31;;32775:204;;;:::o;32323:386::-;32396:13;32412:16;32420:7;32412;:16::i;:::-;32396:32;;32468:5;32445:28;;:19;:17;:19::i;:::-;:28;;;32441:175;;32493:44;32510:5;32517:19;:17;:19::i;:::-;32493:16;:44::i;:::-;32488:128;;32565:35;;;;;;;;;;;;;;32488:128;32441:175;32655:2;32628:15;:24;32644:7;32628:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32693:7;32689:2;32673:28;;32682:5;32673:28;;;;;;;;;;;;32323:386;;;:::o;24236:315::-;24289:7;24517:15;:13;:15::i;:::-;24502:12;;24486:13;;:28;:46;24479:53;;24236:315;:::o;56626:52::-;;;;;;;;;;;;;;;;;:::o;42040:2800::-;42174:27;42204;42223:7;42204:18;:27::i;:::-;42174:57;;42289:4;42248:45;;42264:19;42248:45;;;42244:86;;42302:28;;;;;;;;;;;;;;42244:86;42344:27;42373:23;42400:28;42420:7;42400:19;:28::i;:::-;42343:85;;;;42528:62;42547:15;42564:4;42570:19;:17;:19::i;:::-;42528:18;:62::i;:::-;42523:174;;42610:43;42627:4;42633:19;:17;:19::i;:::-;42610:16;:43::i;:::-;42605:92;;42662:35;;;;;;;;;;;;;;42605:92;42523:174;42728:1;42714:16;;:2;:16;;;42710:52;;;42739:23;;;;;;;;;;;;;;42710:52;42775:43;42797:4;42803:2;42807:7;42816:1;42775:21;:43::i;:::-;42911:15;42908:2;;;43051:1;43030:19;43023:30;42908:2;43446:18;:24;43465:4;43446:24;;;;;;;;;;;;;;;;43444:26;;;;;;;;;;;;43515:18;:22;43534:2;43515:22;;;;;;;;;;;;;;;;43513:24;;;;;;;;;;;43837:145;43874:2;43922:45;43937:4;43943:2;43947:19;43922:14;:45::i;:::-;21464:8;43895:72;43837:18;:145::i;:::-;43808:17;:26;43826:7;43808:26;;;;;;;;;;;:174;;;;44152:1;21464:8;44102:19;:46;:51;44098:626;;;44174:19;44206:1;44196:7;:11;44174:33;;44363:1;44329:17;:30;44347:11;44329:30;;;;;;;;;;;;:35;44325:384;;;44467:13;;44452:11;:28;44448:242;;44647:19;44614:17;:30;44632:11;44614:30;;;;;;;;;;;:52;;;;44448:242;44325:384;44098:626;;44771:7;44767:2;44752:27;;44761:4;44752:27;;;;;;;;;;;;44790:42;44811:4;44817:2;44821:7;44830:1;44790:20;:42::i;:::-;42040:2800;;;;;;:::o;56702:29::-;;;;:::o;61381:271::-;61488:7;61497;61562:11;61609:3;61589:17;;61576:10;:30;;;;:::i;:::-;:36;;;;:::i;:::-;61562:50;;61631:7;:5;:7::i;:::-;61640:3;61623:21;;;;;61381:271;;;;;:::o;56048:33::-;;;;;;;;;;;;;:::o;61774:114::-;2014:13;:11;:13::i;:::-;61840:7:::1;:5;:7::i;:::-;61832:25;;:48;61858:21;61832:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;61774:114::o:0;33665:185::-;33803:39;33820:4;33826:2;33830:7;33803:39;;;;;;;;;;;;:16;:39::i;:::-;33665:185;;;:::o;56312:32::-;;;;:::o;56459:35::-;;;;:::o;60432:167::-;2014:13;:11;:13::i;:::-;60516:9:::1;;60509:3;:16;;60501:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;60588:3;60572:13;:19;;;;60432:167:::0;:::o;30618:144::-;30682:7;30725:27;30744:7;30725:18;:27::i;:::-;30702:52;;30618:144;;;:::o;56203:37::-;;;;:::o;25861:224::-;25925:7;25966:1;25949:19;;:5;:19;;;25945:60;;;25977:28;;;;;;;;;;;;;;25945:60;20416:13;26023:18;:25;26042:5;26023:25;;;;;;;;;;;;;;;;:54;26016:61;;25861:224;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;57742:811::-;57814:13;;;;;;;;;;;57806:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;57902:17;;57870;:29;57888:10;57870:29;;;;;;;;;;;;;;;;:49;57862:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;58008:13;;57997:8;57984:10;;:21;;;;:::i;:::-;:37;57976:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;58105:12;;58076:25;58090:10;58076:13;:25::i;:::-;58065:8;:36;;;;:::i;:::-;:52;;58057:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;58166:28;58217:17;:29;58235:10;58217:29;;;;;;;;;;;;;;;;58197:17;;:49;;;;:::i;:::-;58166:80;;58277:20;58265:8;:32;;58257:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;58378:9;;58367:8;58351:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;58343:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;58415:9;58411:135;58434:8;58430:1;:12;58411:135;;;58481:13;;58468:10;;:26;58464:71;;;58515:4;:2;:4::i;:::-;58464:71;58444:3;;;;;:::i;:::-;;;;58411:135;;;;57742:811;;:::o;56247:36::-;;;;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;30998:104::-;31054:13;31087:7;31080:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30998:104;:::o;58561:1415::-;58629:13;;;;;;;;;;;58621:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;58696:1;58685:8;:12;:40;;;;;58713:12;;58701:8;:24;;58685:40;58677:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;58805:12;;58793:8;58765:25;58779:10;58765:13;:25::i;:::-;:36;;;;:::i;:::-;:52;;58757:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;58897:9;;58886:8;58870:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;58862:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;58968:19;58990:17;:29;59008:10;58990:29;;;;;;;;;;;;;;;;58968:51;;59030:28;59081:11;59061:17;;:31;;;;:::i;:::-;59030:62;;59131:1;59108:20;:24;:54;;;;;59149:13;;59136:10;;:26;59108:54;59104:736;;;59195:20;59183:8;:32;59179:646;;59240:9;59236:167;59259:8;59255:1;:12;59236:167;;;59314:13;;59301:10;;:26;59297:87;;;59356:4;:2;:4::i;:::-;59297:87;59269:3;;;;;:::i;:::-;;;;59236:167;;;;59421:7;;;;59179:646;59513:20;59502:8;:31;;;;:::i;:::-;59489:9;;:45;;;;:::i;:::-;59476:9;:58;59468:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;59579:9;59575:231;59598:17;;59594:1;:21;59575:231;;;59665:13;;59652:10;;:26;59648:95;;;59711:4;:2;:4::i;:::-;59648:95;59781:1;59769:13;;;;;:::i;:::-;;;59616:3;;;;;:::i;:::-;;;;59575:231;;;;59104:736;59904:8;59892:9;;:20;;;;:::i;:::-;59879:9;:33;59871:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;59941:27;59947:10;59959:8;59941:5;:27::i;:::-;58561:1415;;;;:::o;33051:308::-;33162:19;:17;:19::i;:::-;33150:31;;:8;:31;;;33146:61;;;33190:17;;;;;;;;;;;;;;33146:61;33272:8;33220:18;:39;33239:19;:17;:19::i;:::-;33220:39;;;;;;;;;;;;;;;:49;33260:8;33220:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33332:8;33296:55;;33311:19;:17;:19::i;:::-;33296:55;;;33342:8;33296:55;;;;;;:::i;:::-;;;;;;;;33051:308;;:::o;33921:399::-;34088:31;34101:4;34107:2;34111:7;34088:12;:31::i;:::-;34152:1;34134:2;:14;;;:19;34130:183;;34173:56;34204:4;34210:2;34214:7;34223:5;34173:30;:56::i;:::-;34168:145;;34257:40;;;;;;;;;;;;;;34168:145;34130:183;33921:399;;;;:::o;56416:36::-;;;;:::o;60108:114::-;2014:13;:11;:13::i;:::-;60185::::1;;;;;;;;;;;:28;;60209:4;60185:28;;;60201:5;60185:28;60169:13;;:44;;;;;;;;;;;;;;;;;;60108:114::o:0;60950:423::-;61023:13;61054:16;61062:7;61054;:16::i;:::-;61049:59;;61079:29;;;;;;;;;;;;;;61049:59;61119:21;61143:10;:8;:10::i;:::-;61119:34;;61164:19;61211:1;61192:7;61186:21;:26;;:87;;;;;;;;;;;;;;;;;61239:7;61248:18;61258:7;61248:9;:18::i;:::-;61222:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61186:87;61164:109;;61316:1;61297:7;61291:21;:26;;:74;;;;;;;;;;;;;;;;;61344:5;61327:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;61291:74;61284:81;;;;60950:423;;;:::o;56351:31::-;;;;:::o;60230:91::-;2014:13;:11;:13::i;:::-;60310:3:::1;60300:7;:13;;;;;;;;;;;;:::i;:::-;;60230:91:::0;:::o;33430:164::-;33527:4;33551:18;:25;33570:5;33551:25;;;;;;;;;;;;;;;:35;33577:8;33551:35;;;;;;;;;;;;;;;;;;;;;;;;;33544:42;;33430:164;;;;:::o;61896:103::-;61943:7;61970:21;61963:28;;61896:103;:::o;56527:67::-;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;60329:95::-;2014:13;:11;:13::i;:::-;60410:6:::1;60398:9;:18;;;;60329:95:::0;:::o;34575:273::-;34632:4;34688:7;34669:15;:13;:15::i;:::-;:26;;:66;;;;;34722:13;;34712:7;:23;34669:66;:152;;;;;34820:1;21186:8;34773:17;:26;34791:7;34773:26;;;;;;;;;;;;:43;:48;34669:152;34649:172;;34575:273;;;:::o;53136:105::-;53196:7;53223:10;53216:17;;53136:105;:::o;60841:101::-;60906:7;60933:1;60926:8;;60841:101;:::o;27535:1129::-;27602:7;27622:12;27637:7;27622:22;;27705:4;27686:15;:13;:15::i;:::-;:23;27682:915;;27739:13;;27732:4;:20;27728:869;;;27777:14;27794:17;:23;27812:4;27794:23;;;;;;;;;;;;27777:40;;27910:1;21186:8;27883:6;:23;:28;27879:699;;;28402:113;28419:1;28409:6;:11;28402:113;;;28462:17;:25;28480:6;;;;;;;28462:25;;;;;;;;;;;;28453:34;;28402:113;;;28548:6;28541:13;;;;;;27879:699;27728:869;;27682:915;28625:31;;;;;;;;;;;;;;27535:1129;;;;:::o;40376:652::-;40471:27;40500:23;40541:53;40597:15;40541:71;;40783:7;40777:4;40770:21;40818:22;40812:4;40805:36;40894:4;40888;40878:21;40855:44;;40990:19;40984:26;40965:45;;40721:300;;;;:::o;41141:645::-;41283:11;41445:15;41439:4;41435:26;41427:34;;41604:15;41593:9;41589:31;41576:44;;41751:15;41740:9;41737:30;41730:4;41719:9;41716:19;41713:55;41703:65;;41316:463;;;;;:::o;51969:159::-;;;;;:::o;50281:309::-;50416:7;50436:16;21587:3;50462:19;:40;;50436:67;;21587:3;50529:31;50540:4;50546:2;50550:9;50529:10;:31::i;:::-;50521:40;;:61;;50514:68;;;50281:309;;;;;:::o;30109:447::-;30189:14;30357:15;30350:5;30346:27;30337:36;;30531:5;30517:11;30493:22;30489:40;30486:51;30479:5;30476:62;30466:72;;30225:324;;;;:::o;52787:158::-;;;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3395:191;;:::o;26167:176::-;26228:7;20416:13;20553:2;26256:18;:25;26275:5;26256:25;;;;;;;;;;;;;;;;:49;;26255:80;26248:87;;26167:176;;;:::o;57602:129::-;57635:17;:29;57653:10;57635:29;;;;;;;;;;;;;;;;:31;;;;;;;;;:::i;:::-;;;;;;57677:20;57683:10;57695:1;57677:5;:20::i;:::-;57722:1;57708:10;;:15;;;;;;;:::i;:::-;;;;;;;;57602:129::o;36406:1529::-;36471:20;36494:13;;36471:36;;36536:1;36522:16;;:2;:16;;;36518:48;;;36547:19;;;;;;;;;;;;;;36518:48;36593:1;36581:8;:13;36577:44;;;36603:18;;;;;;;;;;;;;;36577:44;36634:61;36664:1;36668:2;36672:12;36686:8;36634:21;:61::i;:::-;37177:1;20553:2;37148:1;:25;;37147:31;37135:8;:44;37109:18;:22;37128:2;37109:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;37456:139;37493:2;37547:33;37570:1;37574:2;37578:1;37547:14;:33::i;:::-;37514:30;37535:8;37514:20;:30::i;:::-;:66;37456:18;:139::i;:::-;37422:17;:31;37440:12;37422:31;;;;;;;;;;;:173;;;;37612:15;37630:12;37612:30;;37657:11;37686:8;37671:12;:23;37657:37;;37709:101;37761:9;;;;;;37757:2;37736:35;;37753:1;37736:35;;;;;;;;;;;;37805:3;37795:7;:13;37709:101;;37842:3;37826:13;:19;;;;36406:1529;;37867:60;37896:1;37900:2;37904:12;37918:8;37867:20;:60::i;:::-;36406:1529;;;:::o;48791:716::-;48954:4;49000:2;48975:45;;;49021:19;:17;:19::i;:::-;49042:4;49048:7;49057:5;48975:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48971:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49275:1;49258:6;:13;:18;49254:235;;;49304:40;;;;;;;;;;;;;;49254:235;49447:6;49441:13;49432:6;49428:2;49424:15;49417:38;48971:529;49144:54;;;49134:64;;;:6;:64;;;;49127:71;;;48791:716;;;;;;:::o;60723:108::-;60783:13;60816:7;60809:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60723:108;:::o;53347:1960::-;53404:17;53823:3;53816:4;53810:11;53806:21;53799:28;;53914:3;53908:4;53901:17;54020:3;54476:5;54606:1;54601:3;54597:11;54590:18;;54743:2;54737:4;54733:13;54729:2;54725:22;54720:3;54712:36;54784:2;54778:4;54774:13;54766:21;;54368:697;54803:4;54368:697;;;54994:1;54989:3;54985:11;54978:18;;55045:2;55039:4;55035:13;55031:2;55027:22;55022:3;55014:36;54898:2;54892:4;54888:13;54880:21;;54368:697;;;54372:430;55104:3;55099;55095:13;55219:2;55214:3;55210:12;55203:19;;55282:6;55277:3;55270:19;53443:1857;;;;;:::o;51166:147::-;51303:6;51166:147;;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;31939:322::-;32009:14;32240:1;32230:8;32227:15;32202:23;32198:45;32188:55;;32111:143;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:407::-;6154:6;6162;6211:2;6199:9;6190:7;6186:23;6182:32;6179:2;;;6227:1;6224;6217:12;6179:2;6270:1;6295:53;6340:7;6331:6;6320:9;6316:22;6295:53;:::i;:::-;6285:63;;6241:117;6397:2;6423:53;6468:7;6459:6;6448:9;6444:22;6423:53;:::i;:::-;6413:63;;6368:118;6169:324;;;;;:::o;6499:118::-;6586:24;6604:5;6586:24;:::i;:::-;6581:3;6574:37;6564:53;;:::o;6623:109::-;6704:21;6719:5;6704:21;:::i;:::-;6699:3;6692:34;6682:50;;:::o;6738:360::-;6824:3;6852:38;6884:5;6852:38;:::i;:::-;6906:70;6969:6;6964:3;6906:70;:::i;:::-;6899:77;;6985:52;7030:6;7025:3;7018:4;7011:5;7007:16;6985:52;:::i;:::-;7062:29;7084:6;7062:29;:::i;:::-;7057:3;7053:39;7046:46;;6828:270;;;;;:::o;7104:364::-;7192:3;7220:39;7253:5;7220:39;:::i;:::-;7275:71;7339:6;7334:3;7275:71;:::i;:::-;7268:78;;7355:52;7400:6;7395:3;7388:4;7381:5;7377:16;7355:52;:::i;:::-;7432:29;7454:6;7432:29;:::i;:::-;7427:3;7423:39;7416:46;;7196:272;;;;;:::o;7474:377::-;7580:3;7608:39;7641:5;7608:39;:::i;:::-;7663:89;7745:6;7740:3;7663:89;:::i;:::-;7656:96;;7761:52;7806:6;7801:3;7794:4;7787:5;7783:16;7761:52;:::i;:::-;7838:6;7833:3;7829:16;7822:23;;7584:267;;;;;:::o;7857:366::-;7999:3;8020:67;8084:2;8079:3;8020:67;:::i;:::-;8013:74;;8096:93;8185:3;8096:93;:::i;:::-;8214:2;8209:3;8205:12;8198:19;;8003:220;;;:::o;8229:366::-;8371:3;8392:67;8456:2;8451:3;8392:67;:::i;:::-;8385:74;;8468:93;8557:3;8468:93;:::i;:::-;8586:2;8581:3;8577:12;8570:19;;8375:220;;;:::o;8601:365::-;8743:3;8764:66;8828:1;8823:3;8764:66;:::i;:::-;8757:73;;8839:93;8928:3;8839:93;:::i;:::-;8957:2;8952:3;8948:12;8941:19;;8747:219;;;:::o;8972:366::-;9114:3;9135:67;9199:2;9194:3;9135:67;:::i;:::-;9128:74;;9211:93;9300:3;9211:93;:::i;:::-;9329:2;9324:3;9320:12;9313:19;;9118:220;;;:::o;9344:366::-;9486:3;9507:67;9571:2;9566:3;9507:67;:::i;:::-;9500:74;;9583:93;9672:3;9583:93;:::i;:::-;9701:2;9696:3;9692:12;9685:19;;9490:220;;;:::o;9716:366::-;9858:3;9879:67;9943:2;9938:3;9879:67;:::i;:::-;9872:74;;9955:93;10044:3;9955:93;:::i;:::-;10073:2;10068:3;10064:12;10057:19;;9862:220;;;:::o;10088:366::-;10230:3;10251:67;10315:2;10310:3;10251:67;:::i;:::-;10244:74;;10327:93;10416:3;10327:93;:::i;:::-;10445:2;10440:3;10436:12;10429:19;;10234:220;;;:::o;10460:366::-;10602:3;10623:67;10687:2;10682:3;10623:67;:::i;:::-;10616:74;;10699:93;10788:3;10699:93;:::i;:::-;10817:2;10812:3;10808:12;10801:19;;10606:220;;;:::o;10832:366::-;10974:3;10995:67;11059:2;11054:3;10995:67;:::i;:::-;10988:74;;11071:93;11160:3;11071:93;:::i;:::-;11189:2;11184:3;11180:12;11173:19;;10978:220;;;:::o;11204:366::-;11346:3;11367:67;11431:2;11426:3;11367:67;:::i;:::-;11360:74;;11443:93;11532:3;11443:93;:::i;:::-;11561:2;11556:3;11552:12;11545:19;;11350:220;;;:::o;11576:400::-;11736:3;11757:84;11839:1;11834:3;11757:84;:::i;:::-;11750:91;;11850:93;11939:3;11850:93;:::i;:::-;11968:1;11963:3;11959:11;11952:18;;11740:236;;;:::o;11982:366::-;12124:3;12145:67;12209:2;12204:3;12145:67;:::i;:::-;12138:74;;12221:93;12310:3;12221:93;:::i;:::-;12339:2;12334:3;12330:12;12323:19;;12128:220;;;:::o;12354:366::-;12496:3;12517:67;12581:2;12576:3;12517:67;:::i;:::-;12510:74;;12593:93;12682:3;12593:93;:::i;:::-;12711:2;12706:3;12702:12;12695:19;;12500:220;;;:::o;12726:118::-;12813:24;12831:5;12813:24;:::i;:::-;12808:3;12801:37;12791:53;;:::o;12850:435::-;13030:3;13052:95;13143:3;13134:6;13052:95;:::i;:::-;13045:102;;13164:95;13255:3;13246:6;13164:95;:::i;:::-;13157:102;;13276:3;13269:10;;13034:251;;;;;:::o;13291:541::-;13524:3;13546:95;13637:3;13628:6;13546:95;:::i;:::-;13539:102;;13658:148;13802:3;13658:148;:::i;:::-;13651:155;;13823:3;13816:10;;13528:304;;;;:::o;13838:222::-;13931:4;13969:2;13958:9;13954:18;13946:26;;13982:71;14050:1;14039:9;14035:17;14026:6;13982:71;:::i;:::-;13936:124;;;;:::o;14066:640::-;14261:4;14299:3;14288:9;14284:19;14276:27;;14313:71;14381:1;14370:9;14366:17;14357:6;14313:71;:::i;:::-;14394:72;14462:2;14451:9;14447:18;14438:6;14394:72;:::i;:::-;14476;14544:2;14533:9;14529:18;14520:6;14476:72;:::i;:::-;14595:9;14589:4;14585:20;14580:2;14569:9;14565:18;14558:48;14623:76;14694:4;14685:6;14623:76;:::i;:::-;14615:84;;14266:440;;;;;;;:::o;14712:332::-;14833:4;14871:2;14860:9;14856:18;14848:26;;14884:71;14952:1;14941:9;14937:17;14928:6;14884:71;:::i;:::-;14965:72;15033:2;15022:9;15018:18;15009:6;14965:72;:::i;:::-;14838:206;;;;;:::o;15050:210::-;15137:4;15175:2;15164:9;15160:18;15152:26;;15188:65;15250:1;15239:9;15235:17;15226:6;15188:65;:::i;:::-;15142:118;;;;:::o;15266:313::-;15379:4;15417:2;15406:9;15402:18;15394:26;;15466:9;15460:4;15456:20;15452:1;15441:9;15437:17;15430:47;15494:78;15567:4;15558:6;15494:78;:::i;:::-;15486:86;;15384:195;;;;:::o;15585:419::-;15751:4;15789:2;15778:9;15774:18;15766:26;;15838:9;15832:4;15828:20;15824:1;15813:9;15809:17;15802:47;15866:131;15992:4;15866:131;:::i;:::-;15858:139;;15756:248;;;:::o;16010:419::-;16176:4;16214:2;16203:9;16199:18;16191:26;;16263:9;16257:4;16253:20;16249:1;16238:9;16234:17;16227:47;16291:131;16417:4;16291:131;:::i;:::-;16283:139;;16181:248;;;:::o;16435:419::-;16601:4;16639:2;16628:9;16624:18;16616:26;;16688:9;16682:4;16678:20;16674:1;16663:9;16659:17;16652:47;16716:131;16842:4;16716:131;:::i;:::-;16708:139;;16606:248;;;:::o;16860:419::-;17026:4;17064:2;17053:9;17049:18;17041:26;;17113:9;17107:4;17103:20;17099:1;17088:9;17084:17;17077:47;17141:131;17267:4;17141:131;:::i;:::-;17133:139;;17031:248;;;:::o;17285:419::-;17451:4;17489:2;17478:9;17474:18;17466:26;;17538:9;17532:4;17528:20;17524:1;17513:9;17509:17;17502:47;17566:131;17692:4;17566:131;:::i;:::-;17558:139;;17456:248;;;:::o;17710:419::-;17876:4;17914:2;17903:9;17899:18;17891:26;;17963:9;17957:4;17953:20;17949:1;17938:9;17934:17;17927:47;17991:131;18117:4;17991:131;:::i;:::-;17983:139;;17881:248;;;:::o;18135:419::-;18301:4;18339:2;18328:9;18324:18;18316:26;;18388:9;18382:4;18378:20;18374:1;18363:9;18359:17;18352:47;18416:131;18542:4;18416:131;:::i;:::-;18408:139;;18306:248;;;:::o;18560:419::-;18726:4;18764:2;18753:9;18749:18;18741:26;;18813:9;18807:4;18803:20;18799:1;18788:9;18784:17;18777:47;18841:131;18967:4;18841:131;:::i;:::-;18833:139;;18731:248;;;:::o;18985:419::-;19151:4;19189:2;19178:9;19174:18;19166:26;;19238:9;19232:4;19228:20;19224:1;19213:9;19209:17;19202:47;19266:131;19392:4;19266:131;:::i;:::-;19258:139;;19156:248;;;:::o;19410:419::-;19576:4;19614:2;19603:9;19599:18;19591:26;;19663:9;19657:4;19653:20;19649:1;19638:9;19634:17;19627:47;19691:131;19817:4;19691:131;:::i;:::-;19683:139;;19581:248;;;:::o;19835:419::-;20001:4;20039:2;20028:9;20024:18;20016:26;;20088:9;20082:4;20078:20;20074:1;20063:9;20059:17;20052:47;20116:131;20242:4;20116:131;:::i;:::-;20108:139;;20006:248;;;:::o;20260:419::-;20426:4;20464:2;20453:9;20449:18;20441:26;;20513:9;20507:4;20503:20;20499:1;20488:9;20484:17;20477:47;20541:131;20667:4;20541:131;:::i;:::-;20533:139;;20431:248;;;:::o;20685:222::-;20778:4;20816:2;20805:9;20801:18;20793:26;;20829:71;20897:1;20886:9;20882:17;20873:6;20829:71;:::i;:::-;20783:124;;;;:::o;20913:129::-;20947:6;20974:20;;:::i;:::-;20964:30;;21003:33;21031:4;21023:6;21003:33;:::i;:::-;20954:88;;;:::o;21048:75::-;21081:6;21114:2;21108:9;21098:19;;21088:35;:::o;21129:307::-;21190:4;21280:18;21272:6;21269:30;21266:2;;;21302:18;;:::i;:::-;21266:2;21340:29;21362:6;21340:29;:::i;:::-;21332:37;;21424:4;21418;21414:15;21406:23;;21195:241;;;:::o;21442:308::-;21504:4;21594:18;21586:6;21583:30;21580:2;;;21616:18;;:::i;:::-;21580:2;21654:29;21676:6;21654:29;:::i;:::-;21646:37;;21738:4;21732;21728:15;21720:23;;21509:241;;;:::o;21756:98::-;21807:6;21841:5;21835:12;21825:22;;21814:40;;;:::o;21860:99::-;21912:6;21946:5;21940:12;21930:22;;21919:40;;;:::o;21965:168::-;22048:11;22082:6;22077:3;22070:19;22122:4;22117:3;22113:14;22098:29;;22060:73;;;;:::o;22139:169::-;22223:11;22257:6;22252:3;22245:19;22297:4;22292:3;22288:14;22273:29;;22235:73;;;;:::o;22314:148::-;22416:11;22453:3;22438:18;;22428:34;;;;:::o;22468:305::-;22508:3;22527:20;22545:1;22527:20;:::i;:::-;22522:25;;22561:20;22579:1;22561:20;:::i;:::-;22556:25;;22715:1;22647:66;22643:74;22640:1;22637:81;22634:2;;;22721:18;;:::i;:::-;22634:2;22765:1;22762;22758:9;22751:16;;22512:261;;;;:::o;22779:185::-;22819:1;22836:20;22854:1;22836:20;:::i;:::-;22831:25;;22870:20;22888:1;22870:20;:::i;:::-;22865:25;;22909:1;22899:2;;22914:18;;:::i;:::-;22899:2;22956:1;22953;22949:9;22944:14;;22821:143;;;;:::o;22970:348::-;23010:7;23033:20;23051:1;23033:20;:::i;:::-;23028:25;;23067:20;23085:1;23067:20;:::i;:::-;23062:25;;23255:1;23187:66;23183:74;23180:1;23177:81;23172:1;23165:9;23158:17;23154:105;23151:2;;;23262:18;;:::i;:::-;23151:2;23310:1;23307;23303:9;23292:20;;23018:300;;;;:::o;23324:191::-;23364:4;23384:20;23402:1;23384:20;:::i;:::-;23379:25;;23418:20;23436:1;23418:20;:::i;:::-;23413:25;;23457:1;23454;23451:8;23448:2;;;23462:18;;:::i;:::-;23448:2;23507:1;23504;23500:9;23492:17;;23369:146;;;;:::o;23521:96::-;23558:7;23587:24;23605:5;23587:24;:::i;:::-;23576:35;;23566:51;;;:::o;23623:90::-;23657:7;23700:5;23693:13;23686:21;23675:32;;23665:48;;;:::o;23719:149::-;23755:7;23795:66;23788:5;23784:78;23773:89;;23763:105;;;:::o;23874:126::-;23911:7;23951:42;23944:5;23940:54;23929:65;;23919:81;;;:::o;24006:77::-;24043:7;24072:5;24061:16;;24051:32;;;:::o;24089:154::-;24173:6;24168:3;24163;24150:30;24235:1;24226:6;24221:3;24217:16;24210:27;24140:103;;;:::o;24249:307::-;24317:1;24327:113;24341:6;24338:1;24335:13;24327:113;;;24426:1;24421:3;24417:11;24411:18;24407:1;24402:3;24398:11;24391:39;24363:2;24360:1;24356:10;24351:15;;24327:113;;;24458:6;24455:1;24452:13;24449:2;;;24538:1;24529:6;24524:3;24520:16;24513:27;24449:2;24298:258;;;;:::o;24562:320::-;24606:6;24643:1;24637:4;24633:12;24623:22;;24690:1;24684:4;24680:12;24711:18;24701:2;;24767:4;24759:6;24755:17;24745:27;;24701:2;24829;24821:6;24818:14;24798:18;24795:38;24792:2;;;24848:18;;:::i;:::-;24792:2;24613:269;;;;:::o;24888:281::-;24971:27;24993:4;24971:27;:::i;:::-;24963:6;24959:40;25101:6;25089:10;25086:22;25065:18;25053:10;25050:34;25047:62;25044:2;;;25112:18;;:::i;:::-;25044:2;25152:10;25148:2;25141:22;24931:238;;;:::o;25175:233::-;25214:3;25237:24;25255:5;25237:24;:::i;:::-;25228:33;;25283:66;25276:5;25273:77;25270:2;;;25353:18;;:::i;:::-;25270:2;25400:1;25393:5;25389:13;25382:20;;25218:190;;;:::o;25414:180::-;25462:77;25459:1;25452:88;25559:4;25556:1;25549:15;25583:4;25580:1;25573:15;25600:180;25648:77;25645:1;25638:88;25745:4;25742:1;25735:15;25769:4;25766:1;25759:15;25786:180;25834:77;25831:1;25824:88;25931:4;25928:1;25921:15;25955:4;25952:1;25945:15;25972:180;26020:77;26017:1;26010:88;26117:4;26114:1;26107:15;26141:4;26138:1;26131:15;26158:102;26199:6;26250:2;26246:7;26241:2;26234:5;26230:14;26226:28;26216:38;;26206:54;;;:::o;26266:181::-;26406:33;26402:1;26394:6;26390:14;26383:57;26372:75;:::o;26453:166::-;26593:18;26589:1;26581:6;26577:14;26570:42;26559:60;:::o;26625:158::-;26765:10;26761:1;26753:6;26749:14;26742:34;26731:52;:::o;26789:225::-;26929:34;26925:1;26917:6;26913:14;26906:58;26998:8;26993:2;26985:6;26981:15;26974:33;26895:119;:::o;27020:179::-;27160:31;27156:1;27148:6;27144:14;27137:55;27126:73;:::o;27205:169::-;27345:21;27341:1;27333:6;27329:14;27322:45;27311:63;:::o;27380:228::-;27520:34;27516:1;27508:6;27504:14;27497:58;27589:11;27584:2;27576:6;27572:15;27565:36;27486:122;:::o;27614:180::-;27754:32;27750:1;27742:6;27738:14;27731:56;27720:74;:::o;27800:170::-;27940:22;27936:1;27928:6;27924:14;27917:46;27906:64;:::o;27976:163::-;28116:15;28112:1;28104:6;28100:14;28093:39;28082:57;:::o;28145:155::-;28285:7;28281:1;28273:6;28269:14;28262:31;28251:49;:::o;28306:182::-;28446:34;28442:1;28434:6;28430:14;28423:58;28412:76;:::o;28494:220::-;28634:34;28630:1;28622:6;28618:14;28611:58;28703:3;28698:2;28690:6;28686:15;28679:28;28600:114;:::o;28720:122::-;28793:24;28811:5;28793:24;:::i;:::-;28786:5;28783:35;28773:2;;28832:1;28829;28822:12;28773:2;28763:79;:::o;28848:116::-;28918:21;28933:5;28918:21;:::i;:::-;28911:5;28908:32;28898:2;;28954:1;28951;28944:12;28898:2;28888:76;:::o;28970:120::-;29042:23;29059:5;29042:23;:::i;:::-;29035:5;29032:34;29022:2;;29080:1;29077;29070:12;29022:2;29012:78;:::o;29096:122::-;29169:24;29187:5;29169:24;:::i;:::-;29162:5;29159:35;29149:2;;29208:1;29205;29198:12;29149:2;29139:79;:::o
Swarm Source
ipfs://798aa147264d37b2dcf6059e40074e8d94f26c8a5a3eb25942c0273f13fb7050
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.