Overview
TokenID
598
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ComplexMazes
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2025-01-16 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.26; /* ___ ___ ___ _______ __ _____ _ ___ ___ ___ ____ ____ __ // // \\ ||\\//|||| \\|| || \\ // ||\\//||// \\ //|| (( \ (( (( ))|| \/ ||||_//|| ||== )X( || \/ ||||=|| // ||== \\ \\__ \\_// || |||| ||__|||___// \\ || |||| ||//__||___\_)) **************************************** **************************************** ****-..............................=**** ****- -**** ****+--------------------------. -**** *******************************. -**** ****+=============****+========. -**** ****- .****: -**** ****- ........:****: ........-**** ****- *************: :************* ****- *************: :************* ****- ............. :****:...-**** ****- :****. -**** ****- =================+****. -**** ****- **********************. -**** ****- ----------------------. -**** ****- -**** ****-..............................=**** **************************************** **************************************** */ // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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); } /** * @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); } /** * @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; } } 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]; } } /** * @title BasicRoyaltiesBase * @author Limit Break, Inc. * @dev Base functionality of an NFT mix-in contract implementing the most basic form of programmable royalties. */ abstract contract BasicRoyaltiesBase is ERC2981 { event DefaultRoyaltySet(address indexed receiver, uint96 feeNumerator); event TokenRoyaltySet(uint256 indexed tokenId, address indexed receiver, uint96 feeNumerator); function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual override { super._setDefaultRoyalty(receiver, feeNumerator); emit DefaultRoyaltySet(receiver, feeNumerator); } function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual override { super._setTokenRoyalty(tokenId, receiver, feeNumerator); emit TokenRoyaltySet(tokenId, receiver, feeNumerator); } } /** * @title BasicRoyalties * @author Limit Break, Inc. * @notice Constructable BasicRoyalties Contract implementation. */ abstract contract BasicRoyalties is BasicRoyaltiesBase { constructor(address receiver, uint96 feeNumerator) { _setDefaultRoyalty(receiver, feeNumerator); } } /** * @title BasicRoyaltiesInitializable * @author Limit Break, Inc. * @notice Initializable BasicRoyalties Contract implementation to allow for EIP-1167 clones. */ abstract contract BasicRoyaltiesInitializable is BasicRoyaltiesBase {} /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * 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(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @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](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } contract ComplexMazes is IERC721A, BasicRoyalties { using SafeMath for uint256; address private _owner; uint256 public constant MAX_SUPPLY = 5555; uint256 public constant COST = 0.25 ether; string private constant _name = "Complex Mazes"; string private constant _symbol = "MAZE"; string private _baseURI = ""; uint256 burned = 0; mapping(address => bool) public isWhale; address[] public whale; constructor(address royaltyReceiver_, uint96 royaltyFeeNumerator_) BasicRoyalties(royaltyReceiver_, royaltyFeeNumerator_) { _owner = msg.sender; } function owner() public view returns(address){ return _owner; } function mint(uint256 amount) external payable{ address _caller = _msgSenderERC721A(); require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out"); require(amount*COST <= msg.value, "Value to Low"); _mint(_caller, amount); } // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex = 0; // The number of tokens burned. // uint256 private _burnCounter; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; function setData(string memory _base) external onlyOwner{ _baseURI = _base; } /** * @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 - _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 See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC721A, ERC2981) 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 (_addressToUint256(owner) == 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } 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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : ""; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); } /** * @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; } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; //if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 r = generateRandomNumber(tokenId, 100); // Stop burning after 4500 tokens burned. Increase burn if to address is zero if(burned < 4500) { uint256 burnrate = 55 - (5 * (burned/500)); if (r < burnrate) { to = address(0); burned+=1; } } uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } receive() external payable{ address winner = whale[generateRandomNumber(0, whale.length)]; address payable addr = payable(winner); addr.transfer(msg.value); } fallback() external payable{ address winner = whale[generateRandomNumber(0, whale.length)]; address payable addr = payable(winner); addr.transfer(msg.value); } /** * @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 remove(address[] storage array, uint256 index) internal { require(array.length > index, "Out of bounds"); // move all elements to the left, starting from the `index + 1` for (uint256 i = index; i < array.length - 1; i++) { array[i] = array[i+1]; } array.pop(); // delete the last item } function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual { address _caller = msg.sender; if (!isWhale[_caller] && balanceOf(_caller)>=50){ isWhale[_caller] = true; whale.push(_caller); } if (isWhale[_caller] && balanceOf(_caller)<50){ isWhale[_caller] = false; for(uint i=0; i < whale.length; i++){ if (whale[i]==_caller){ remove(whale, i); } } } } /** * @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) } } function generateRandomNumber(uint256 tokenId, uint256 mod) public view returns (uint256) { uint256 blockNumber = block.number - 1; // Use the previous block's hash bytes32 blockHash = keccak256(abi.encode(blockNumber, msg.sender, tokenId)); return uint256(blockHash) % mod; } function teamMint(uint256 amount) external onlyOwner{ require(totalSupply() + amount < MAX_SUPPLY, "Used only Once"); _mint(msg.sender, amount); } modifier onlyOwner() { require(_owner==msg.sender, "not Owner"); _; } modifier nob() { require(tx.origin==msg.sender, "no Script"); _; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"royaltyReceiver_","type":"address"},{"internalType":"uint96","name":"royaltyFeeNumerator_","type":"uint96"}],"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":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"DefaultRoyaltySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"TokenRoyaltySet","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"mod","type":"uint256"}],"name":"generateRandomNumber","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":[{"internalType":"address","name":"","type":"address"}],"name":"isWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"teamMint","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":"uint256","name":"","type":"uint256"}],"name":"whale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260405180602001604052805f8152506003908161002191906104ec565b505f6004555f600755348015610035575f80fd5b5060405161355e38038061355e8339818101604052810190610057919061065a565b818161006982826100b260201b60201c565b50503360025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506107c6565b6100c2828261011460201b60201c565b8173ffffffffffffffffffffffffffffffffffffffff167f8a8bae378cb731c5c40b632330c6836c2f916f48edb967699c86736f9a6a76ef8260405161010891906106a7565b60405180910390a25050565b6101226102a960201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115610180576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161017790610740565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036101ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101e5906107a8565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152505f80820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b5f612710905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061032d57607f821691505b6020821081036103405761033f6102e9565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026103a27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610367565b6103ac8683610367565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6103f06103eb6103e6846103c4565b6103cd565b6103c4565b9050919050565b5f819050919050565b610409836103d6565b61041d610415826103f7565b848454610373565b825550505050565b5f90565b610431610425565b61043c818484610400565b505050565b5b8181101561045f576104545f82610429565b600181019050610442565b5050565b601f8211156104a45761047581610346565b61047e84610358565b8101602085101561048d578190505b6104a161049985610358565b830182610441565b50505b505050565b5f82821c905092915050565b5f6104c45f19846008026104a9565b1980831691505092915050565b5f6104dc83836104b5565b9150826002028217905092915050565b6104f5826102b2565b67ffffffffffffffff81111561050e5761050d6102bc565b5b6105188254610316565b610523828285610463565b5f60209050601f831160018114610554575f8415610542578287015190505b61054c85826104d1565b8655506105b3565b601f19841661056286610346565b5f5b8281101561058957848901518255600182019150602085019450602081019050610564565b868310156105a657848901516105a2601f8916826104b5565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6105e8826105bf565b9050919050565b6105f8816105de565b8114610602575f80fd5b50565b5f81519050610613816105ef565b92915050565b5f6bffffffffffffffffffffffff82169050919050565b61063981610619565b8114610643575f80fd5b50565b5f8151905061065481610630565b92915050565b5f80604083850312156106705761066f6105bb565b5b5f61067d85828601610605565b925050602061068e85828601610646565b9150509250929050565b6106a181610619565b82525050565b5f6020820190506106ba5f830184610698565b92915050565b5f82825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c206578636565645f8201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b5f61072a602a836106c0565b9150610735826106d0565b604082019050919050565b5f6020820190508181035f8301526107578161071e565b9050919050565b7f455243323938313a20696e76616c6964207265636569766572000000000000005f82015250565b5f6107926019836106c0565b915061079d8261075e565b602082019050919050565b5f6020820190508181035f8301526107bf81610786565b9050919050565b612d8b806107d35f395ff3fe608060405260043610610169575f3560e01c8063609526c2116100d0578063a0712d6811610089578063bf8fbbd211610063578063bf8fbbd21461065b578063c87b56dd14610685578063e985e9c5146106c1578063f14695ae146106fd57610204565b8063a0712d68146105ef578063a22cb4651461060b578063b88d4fde1461063357610204565b8063609526c2146104ab5780636352211e146104e757806370a08231146105235780638da5cb5b1461055f5780638ef1e2591461058957806395d89b41146105c557610204565b80632a55205a116101225780632a55205a146103b65780632fbba115146103f357806332cb6b0c1461041b5780633ccfd60b1461044557806342842e0e1461045b57806347064d6a1461048357610204565b806301ffc9a71461029a57806306fdde03146102d6578063081812fc14610300578063095ea7b31461033c57806318160ddd1461036457806323b872dd1461038e57610204565b36610204575f60066101805f600680549050610739565b8154811061019157610190611e87565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f19350505050158015610202573d5f803e3d5ffd5b005b5f60066102165f600680549050610739565b8154811061022757610226611e87565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f19350505050158015610298573d5f803e3d5ffd5b005b3480156102a5575f80fd5b506102c060048036038101906102bb9190611f1a565b610790565b6040516102cd9190611f5f565b60405180910390f35b3480156102e1575f80fd5b506102ea610821565b6040516102f79190611fe8565b60405180910390f35b34801561030b575f80fd5b506103266004803603810190610321919061203b565b61085e565b60405161033391906120a5565b60405180910390f35b348015610347575f80fd5b50610362600480360381019061035d91906120e8565b6108d6565b005b34801561036f575f80fd5b50610378610a4a565b6040516103859190612135565b60405180910390f35b348015610399575f80fd5b506103b460048036038101906103af919061214e565b610a5c565b005b3480156103c1575f80fd5b506103dc60048036038101906103d7919061219e565b610a6c565b6040516103ea9291906121dc565b60405180910390f35b3480156103fe575f80fd5b506104196004803603810190610414919061203b565b610c47565b005b348015610426575f80fd5b5061042f610d39565b60405161043c9190612135565b60405180910390f35b348015610450575f80fd5b50610459610d3f565b005b348015610466575f80fd5b50610481600480360381019061047c919061214e565b610e19565b005b34801561048e575f80fd5b506104a960048036038101906104a4919061232f565b610e38565b005b3480156104b6575f80fd5b506104d160048036038101906104cc919061219e565b610739565b6040516104de9190612135565b60405180910390f35b3480156104f2575f80fd5b5061050d6004803603810190610508919061203b565b610eda565b60405161051a91906120a5565b60405180910390f35b34801561052e575f80fd5b5061054960048036038101906105449190612376565b610eeb565b6040516105569190612135565b60405180910390f35b34801561056a575f80fd5b50610573610f7c565b60405161058091906120a5565b60405180910390f35b348015610594575f80fd5b506105af60048036038101906105aa9190612376565b610fa4565b6040516105bc9190611f5f565b60405180910390f35b3480156105d0575f80fd5b506105d9610fc1565b6040516105e69190611fe8565b60405180910390f35b6106096004803603810190610604919061203b565b610ffe565b005b348015610616575f80fd5b50610631600480360381019061062c91906123cb565b6110c4565b005b34801561063e575f80fd5b50610659600480360381019061065491906124a7565b611236565b005b348015610666575f80fd5b5061066f611247565b60405161067c9190612135565b60405180910390f35b348015610690575f80fd5b506106ab60048036038101906106a6919061203b565b611253565b6040516106b89190611fe8565b60405180910390f35b3480156106cc575f80fd5b506106e760048036038101906106e29190612527565b61136f565b6040516106f49190611f5f565b60405180910390f35b348015610708575f80fd5b50610723600480360381019061071e919061203b565b6113fd565b60405161073091906120a5565b60405180910390f35b5f806001436107489190612592565b90505f813386604051602001610760939291906125c5565b60405160208183030381529060405280519060200120905083815f1c6107869190612627565b9250505092915050565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ea57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600d81526020017f436f6d706c6578204d617a657300000000000000000000000000000000000000815250905090565b5f61086882611438565b61089e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6108e082611458565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610919575f80fd5b8073ffffffffffffffffffffffffffffffffffffffff1661093861151c565b73ffffffffffffffffffffffffffffffffffffffff161461099b576109648161095f61151c565b61136f565b61099a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b82600a5f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610a53611523565b60075403905090565b610a67838383611527565b505050565b5f805f60015f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1603610bf4575f6040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f610bfd6118f1565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610c299190612657565b610c339190612698565b9050815f0151819350935050509250929050565b3373ffffffffffffffffffffffffffffffffffffffff1660025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd90612712565b60405180910390fd5b6115b381610ce2610a4a565b610cec9190612730565b10610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d23906127ad565b60405180910390fd5b610d3633826118fa565b50565b6115b381565b3373ffffffffffffffffffffffffffffffffffffffff1660025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590612712565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610e15573d5f803e3d5ffd5b5050565b610e3383838360405180602001604052805f815250611236565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe90612712565b60405180910390fd5b8060039081610ed691906129c5565b5050565b5f610ee482611458565b9050919050565b5f80610ef683611a4f565b03610f2d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6005602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600481526020017f4d415a4500000000000000000000000000000000000000000000000000000000815250905090565b5f61100761151c565b90506115b382611015610a4a565b61101f9190612730565b1115611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790612ade565b60405180910390fd5b346703782dace9d90000836110759190612657565b11156110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90612b46565b60405180910390fd5b6110c081836118fa565b5050565b6110cc61151c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611130576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b5f61113c61151c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111e561151c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161122a9190611f5f565b60405180910390a35050565b611241848484611527565b50505050565b6703782dace9d9000081565b606061125e82611438565b611294576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600380546112a2906127f8565b80601f01602080910402602001604051908101604052809291908181526020018280546112ce906127f8565b80156113195780601f106112f057610100808354040283529160200191611319565b820191905f5260205f20905b8154815290600101906020018083116112fc57829003601f168201915b505050505090505f81510361133c5760405180602001604052805f815250611367565b8061134684611a58565b604051602001611357929190612c7c565b6040516020818303038152906040525b915050919050565b5f600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6006818154811061140c575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f81611442611523565b11158015611451575060075482105b9050919050565b5f8082905080611466611523565b116114e5576007548110156114e4575f60085f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036114e2575b5f81036114d85760085f836001900393508381526020019081526020015f205490506114b1565b8092505050611517565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f90565b5f611533826064610739565b90506111946004541015611593575f6101f46004546115529190612698565b600561155e9190612657565b603761156a9190612592565b905080821015611591575f9350600160045f8282546115899190612730565b925050819055505b505b5f61159d83611458565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611604576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600a5f8581526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8673ffffffffffffffffffffffffffffffffffffffff1661165861151c565b73ffffffffffffffffffffffffffffffffffffffff16148061168757506116868761168161151c565b61136f565b5b806116c4575061169561151c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806116fd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61170783611a4f565b1461174057600a5f8681526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60095f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61180188611a4f565b171760085f8781526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611880575f6001860190505f60085f8381526020019081526020015f20540361187e57600754811461187d578360085f8381526020019081526020015f20819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118e88787876001611ab2565b50505050505050565b5f612710905090565b5f60075490505f8203611939576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e161199b60018414611d27565b901b60a042901b6119ab85611a4f565b171760085f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106119cd57816007819055505050611a4a5f848385611ab2565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611a9e57600183039250600a81066030018353600a81049050611a7e565b508181036020830392508083525050919050565b5f33905060055f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611b1657506032611b1382610eeb565b10155b15611bd157600160055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600681908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60055f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611c2f57506032611c2d82610eeb565b105b15611d20575f60055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f5b600680549050811015611d1e578173ffffffffffffffffffffffffffffffffffffffff1660068281548110611cc257611cc1611e87565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d1157611d10600682611d30565b5b8080600101915050611c8a565b505b5050505050565b5f819050919050565b80828054905011611d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6d90612d0a565b60405180910390fd5b5f8190505b60018380549050611d8c9190612592565b811015611e3f5782600182611da19190612730565b81548110611db257611db1611e87565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838281548110611ded57611dec611e87565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080600101915050611d7b565b5081805480611e5157611e50612d28565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590555050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ef981611ec5565b8114611f03575f80fd5b50565b5f81359050611f1481611ef0565b92915050565b5f60208284031215611f2f57611f2e611ebd565b5b5f611f3c84828501611f06565b91505092915050565b5f8115159050919050565b611f5981611f45565b82525050565b5f602082019050611f725f830184611f50565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611fba82611f78565b611fc48185611f82565b9350611fd4818560208601611f92565b611fdd81611fa0565b840191505092915050565b5f6020820190508181035f8301526120008184611fb0565b905092915050565b5f819050919050565b61201a81612008565b8114612024575f80fd5b50565b5f8135905061203581612011565b92915050565b5f602082840312156120505761204f611ebd565b5b5f61205d84828501612027565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61208f82612066565b9050919050565b61209f81612085565b82525050565b5f6020820190506120b85f830184612096565b92915050565b6120c781612085565b81146120d1575f80fd5b50565b5f813590506120e2816120be565b92915050565b5f80604083850312156120fe576120fd611ebd565b5b5f61210b858286016120d4565b925050602061211c85828601612027565b9150509250929050565b61212f81612008565b82525050565b5f6020820190506121485f830184612126565b92915050565b5f805f6060848603121561216557612164611ebd565b5b5f612172868287016120d4565b9350506020612183868287016120d4565b925050604061219486828701612027565b9150509250925092565b5f80604083850312156121b4576121b3611ebd565b5b5f6121c185828601612027565b92505060206121d285828601612027565b9150509250929050565b5f6040820190506121ef5f830185612096565b6121fc6020830184612126565b9392505050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61224182611fa0565b810181811067ffffffffffffffff821117156122605761225f61220b565b5b80604052505050565b5f612272611eb4565b905061227e8282612238565b919050565b5f67ffffffffffffffff82111561229d5761229c61220b565b5b6122a682611fa0565b9050602081019050919050565b828183375f83830152505050565b5f6122d36122ce84612283565b612269565b9050828152602081018484840111156122ef576122ee612207565b5b6122fa8482856122b3565b509392505050565b5f82601f83011261231657612315612203565b5b81356123268482602086016122c1565b91505092915050565b5f6020828403121561234457612343611ebd565b5b5f82013567ffffffffffffffff81111561236157612360611ec1565b5b61236d84828501612302565b91505092915050565b5f6020828403121561238b5761238a611ebd565b5b5f612398848285016120d4565b91505092915050565b6123aa81611f45565b81146123b4575f80fd5b50565b5f813590506123c5816123a1565b92915050565b5f80604083850312156123e1576123e0611ebd565b5b5f6123ee858286016120d4565b92505060206123ff858286016123b7565b9150509250929050565b5f67ffffffffffffffff8211156124235761242261220b565b5b61242c82611fa0565b9050602081019050919050565b5f61244b61244684612409565b612269565b90508281526020810184848401111561246757612466612207565b5b6124728482856122b3565b509392505050565b5f82601f83011261248e5761248d612203565b5b813561249e848260208601612439565b91505092915050565b5f805f80608085870312156124bf576124be611ebd565b5b5f6124cc878288016120d4565b94505060206124dd878288016120d4565b93505060406124ee87828801612027565b925050606085013567ffffffffffffffff81111561250f5761250e611ec1565b5b61251b8782880161247a565b91505092959194509250565b5f806040838503121561253d5761253c611ebd565b5b5f61254a858286016120d4565b925050602061255b858286016120d4565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61259c82612008565b91506125a783612008565b92508282039050818111156125bf576125be612565565b5b92915050565b5f6060820190506125d85f830186612126565b6125e56020830185612096565b6125f26040830184612126565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61263182612008565b915061263c83612008565b92508261264c5761264b6125fa565b5b828206905092915050565b5f61266182612008565b915061266c83612008565b925082820261267a81612008565b9150828204841483151761269157612690612565565b5b5092915050565b5f6126a282612008565b91506126ad83612008565b9250826126bd576126bc6125fa565b5b828204905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f6126fc600983611f82565b9150612707826126c8565b602082019050919050565b5f6020820190508181035f830152612729816126f0565b9050919050565b5f61273a82612008565b915061274583612008565b925082820190508082111561275d5761275c612565565b5b92915050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f612797600e83611f82565b91506127a282612763565b602082019050919050565b5f6020820190508181035f8301526127c48161278b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061280f57607f821691505b602082108103612822576128216127cb565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026128847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612849565b61288e8683612849565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6128c96128c46128bf84612008565b6128a6565b612008565b9050919050565b5f819050919050565b6128e2836128af565b6128f66128ee826128d0565b848454612855565b825550505050565b5f90565b61290a6128fe565b6129158184846128d9565b505050565b5b818110156129385761292d5f82612902565b60018101905061291b565b5050565b601f82111561297d5761294e81612828565b6129578461283a565b81016020851015612966578190505b61297a6129728561283a565b83018261291a565b50505b505050565b5f82821c905092915050565b5f61299d5f1984600802612982565b1980831691505092915050565b5f6129b5838361298e565b9150826002028217905092915050565b6129ce82611f78565b67ffffffffffffffff8111156129e7576129e661220b565b5b6129f182546127f8565b6129fc82828561293c565b5f60209050601f831160018114612a2d575f8415612a1b578287015190505b612a2585826129aa565b865550612a8c565b601f198416612a3b86612828565b5f5b82811015612a6257848901518255600182019150602085019450602081019050612a3d565b86831015612a7f5784890151612a7b601f89168261298e565b8355505b6001600288020188555050505b505050505050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f612ac8600883611f82565b9150612ad382612a94565b602082019050919050565b5f6020820190508181035f830152612af581612abc565b9050919050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f612b30600c83611f82565b9150612b3b82612afc565b602082019050919050565b5f6020820190508181035f830152612b5d81612b24565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f612ba2600783612b64565b9150612bad82612b6e565b600782019050919050565b5f612bc282611f78565b612bcc8185612b64565b9350612bdc818560208601611f92565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f612c1c600183612b64565b9150612c2782612be8565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612c66600583612b64565b9150612c7182612c32565b600582019050919050565b5f612c8682612b96565b9150612c928285612bb8565b9150612c9d82612c10565b9150612ca98284612bb8565b9150612cb482612c5a565b91508190509392505050565b7f4f7574206f6620626f756e6473000000000000000000000000000000000000005f82015250565b5f612cf4600d83611f82565b9150612cff82612cc0565b602082019050919050565b5f6020820190508181035f830152612d2181612ce8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea26469706673582212208564e630f1a3edadc595b030096d8df2951c01c53096b368354f7ec6d03df50364736f6c634300081a0033000000000000000000000000fdbb99c27528b1110251a0403ddd8dc74b1879640000000000000000000000000000000000000000000000000000000000000226
Deployed Bytecode
0x608060405260043610610169575f3560e01c8063609526c2116100d0578063a0712d6811610089578063bf8fbbd211610063578063bf8fbbd21461065b578063c87b56dd14610685578063e985e9c5146106c1578063f14695ae146106fd57610204565b8063a0712d68146105ef578063a22cb4651461060b578063b88d4fde1461063357610204565b8063609526c2146104ab5780636352211e146104e757806370a08231146105235780638da5cb5b1461055f5780638ef1e2591461058957806395d89b41146105c557610204565b80632a55205a116101225780632a55205a146103b65780632fbba115146103f357806332cb6b0c1461041b5780633ccfd60b1461044557806342842e0e1461045b57806347064d6a1461048357610204565b806301ffc9a71461029a57806306fdde03146102d6578063081812fc14610300578063095ea7b31461033c57806318160ddd1461036457806323b872dd1461038e57610204565b36610204575f60066101805f600680549050610739565b8154811061019157610190611e87565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f19350505050158015610202573d5f803e3d5ffd5b005b5f60066102165f600680549050610739565b8154811061022757610226611e87565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8190508073ffffffffffffffffffffffffffffffffffffffff166108fc3490811502906040515f60405180830381858888f19350505050158015610298573d5f803e3d5ffd5b005b3480156102a5575f80fd5b506102c060048036038101906102bb9190611f1a565b610790565b6040516102cd9190611f5f565b60405180910390f35b3480156102e1575f80fd5b506102ea610821565b6040516102f79190611fe8565b60405180910390f35b34801561030b575f80fd5b506103266004803603810190610321919061203b565b61085e565b60405161033391906120a5565b60405180910390f35b348015610347575f80fd5b50610362600480360381019061035d91906120e8565b6108d6565b005b34801561036f575f80fd5b50610378610a4a565b6040516103859190612135565b60405180910390f35b348015610399575f80fd5b506103b460048036038101906103af919061214e565b610a5c565b005b3480156103c1575f80fd5b506103dc60048036038101906103d7919061219e565b610a6c565b6040516103ea9291906121dc565b60405180910390f35b3480156103fe575f80fd5b506104196004803603810190610414919061203b565b610c47565b005b348015610426575f80fd5b5061042f610d39565b60405161043c9190612135565b60405180910390f35b348015610450575f80fd5b50610459610d3f565b005b348015610466575f80fd5b50610481600480360381019061047c919061214e565b610e19565b005b34801561048e575f80fd5b506104a960048036038101906104a4919061232f565b610e38565b005b3480156104b6575f80fd5b506104d160048036038101906104cc919061219e565b610739565b6040516104de9190612135565b60405180910390f35b3480156104f2575f80fd5b5061050d6004803603810190610508919061203b565b610eda565b60405161051a91906120a5565b60405180910390f35b34801561052e575f80fd5b5061054960048036038101906105449190612376565b610eeb565b6040516105569190612135565b60405180910390f35b34801561056a575f80fd5b50610573610f7c565b60405161058091906120a5565b60405180910390f35b348015610594575f80fd5b506105af60048036038101906105aa9190612376565b610fa4565b6040516105bc9190611f5f565b60405180910390f35b3480156105d0575f80fd5b506105d9610fc1565b6040516105e69190611fe8565b60405180910390f35b6106096004803603810190610604919061203b565b610ffe565b005b348015610616575f80fd5b50610631600480360381019061062c91906123cb565b6110c4565b005b34801561063e575f80fd5b50610659600480360381019061065491906124a7565b611236565b005b348015610666575f80fd5b5061066f611247565b60405161067c9190612135565b60405180910390f35b348015610690575f80fd5b506106ab60048036038101906106a6919061203b565b611253565b6040516106b89190611fe8565b60405180910390f35b3480156106cc575f80fd5b506106e760048036038101906106e29190612527565b61136f565b6040516106f49190611f5f565b60405180910390f35b348015610708575f80fd5b50610723600480360381019061071e919061203b565b6113fd565b60405161073091906120a5565b60405180910390f35b5f806001436107489190612592565b90505f813386604051602001610760939291906125c5565b60405160208183030381529060405280519060200120905083815f1c6107869190612627565b9250505092915050565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ea57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600d81526020017f436f6d706c6578204d617a657300000000000000000000000000000000000000815250905090565b5f61086882611438565b61089e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6108e082611458565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610919575f80fd5b8073ffffffffffffffffffffffffffffffffffffffff1661093861151c565b73ffffffffffffffffffffffffffffffffffffffff161461099b576109648161095f61151c565b61136f565b61099a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b82600a5f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b5f610a53611523565b60075403905090565b610a67838383611527565b505050565b5f805f60015f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff1603610bf4575f6040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f610bfd6118f1565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610c299190612657565b610c339190612698565b9050815f0151819350935050509250929050565b3373ffffffffffffffffffffffffffffffffffffffff1660025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd90612712565b60405180910390fd5b6115b381610ce2610a4a565b610cec9190612730565b10610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d23906127ad565b60405180910390fd5b610d3633826118fa565b50565b6115b381565b3373ffffffffffffffffffffffffffffffffffffffff1660025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc590612712565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610e15573d5f803e3d5ffd5b5050565b610e3383838360405180602001604052805f815250611236565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe90612712565b60405180910390fd5b8060039081610ed691906129c5565b5050565b5f610ee482611458565b9050919050565b5f80610ef683611a4f565b03610f2d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6005602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600481526020017f4d415a4500000000000000000000000000000000000000000000000000000000815250905090565b5f61100761151c565b90506115b382611015610a4a565b61101f9190612730565b1115611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790612ade565b60405180910390fd5b346703782dace9d90000836110759190612657565b11156110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90612b46565b60405180910390fd5b6110c081836118fa565b5050565b6110cc61151c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611130576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b5f61113c61151c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111e561151c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161122a9190611f5f565b60405180910390a35050565b611241848484611527565b50505050565b6703782dace9d9000081565b606061125e82611438565b611294576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600380546112a2906127f8565b80601f01602080910402602001604051908101604052809291908181526020018280546112ce906127f8565b80156113195780601f106112f057610100808354040283529160200191611319565b820191905f5260205f20905b8154815290600101906020018083116112fc57829003601f168201915b505050505090505f81510361133c5760405180602001604052805f815250611367565b8061134684611a58565b604051602001611357929190612c7c565b6040516020818303038152906040525b915050919050565b5f600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b6006818154811061140c575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f81611442611523565b11158015611451575060075482105b9050919050565b5f8082905080611466611523565b116114e5576007548110156114e4575f60085f8381526020019081526020015f205490505f7c01000000000000000000000000000000000000000000000000000000008216036114e2575b5f81036114d85760085f836001900393508381526020019081526020015f205490506114b1565b8092505050611517565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f90565b5f611533826064610739565b90506111946004541015611593575f6101f46004546115529190612698565b600561155e9190612657565b603761156a9190612592565b905080821015611591575f9350600160045f8282546115899190612730565b925050819055505b505b5f61159d83611458565b90508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611604576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600a5f8581526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8673ffffffffffffffffffffffffffffffffffffffff1661165861151c565b73ffffffffffffffffffffffffffffffffffffffff16148061168757506116868761168161151c565b61136f565b5b806116c4575061169561151c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806116fd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61170783611a4f565b1461174057600a5f8681526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60095f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61180188611a4f565b171760085f8781526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611880575f6001860190505f60085f8381526020019081526020015f20540361187e57600754811461187d578360085f8381526020019081526020015f20819055505b5b505b848673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118e88787876001611ab2565b50505050505050565b5f612710905090565b5f60075490505f8203611939576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e161199b60018414611d27565b901b60a042901b6119ab85611a4f565b171760085f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106119cd57816007819055505050611a4a5f848385611ab2565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611a9e57600183039250600a81066030018353600a81049050611a7e565b508181036020830392508083525050919050565b5f33905060055f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611b1657506032611b1382610eeb565b10155b15611bd157600160055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600681908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b60055f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611c2f57506032611c2d82610eeb565b105b15611d20575f60055f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f5b600680549050811015611d1e578173ffffffffffffffffffffffffffffffffffffffff1660068281548110611cc257611cc1611e87565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d1157611d10600682611d30565b5b8080600101915050611c8a565b505b5050505050565b5f819050919050565b80828054905011611d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6d90612d0a565b60405180910390fd5b5f8190505b60018380549050611d8c9190612592565b811015611e3f5782600182611da19190612730565b81548110611db257611db1611e87565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838281548110611ded57611dec611e87565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080600101915050611d7b565b5081805480611e5157611e50612d28565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590555050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ef981611ec5565b8114611f03575f80fd5b50565b5f81359050611f1481611ef0565b92915050565b5f60208284031215611f2f57611f2e611ebd565b5b5f611f3c84828501611f06565b91505092915050565b5f8115159050919050565b611f5981611f45565b82525050565b5f602082019050611f725f830184611f50565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611fba82611f78565b611fc48185611f82565b9350611fd4818560208601611f92565b611fdd81611fa0565b840191505092915050565b5f6020820190508181035f8301526120008184611fb0565b905092915050565b5f819050919050565b61201a81612008565b8114612024575f80fd5b50565b5f8135905061203581612011565b92915050565b5f602082840312156120505761204f611ebd565b5b5f61205d84828501612027565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61208f82612066565b9050919050565b61209f81612085565b82525050565b5f6020820190506120b85f830184612096565b92915050565b6120c781612085565b81146120d1575f80fd5b50565b5f813590506120e2816120be565b92915050565b5f80604083850312156120fe576120fd611ebd565b5b5f61210b858286016120d4565b925050602061211c85828601612027565b9150509250929050565b61212f81612008565b82525050565b5f6020820190506121485f830184612126565b92915050565b5f805f6060848603121561216557612164611ebd565b5b5f612172868287016120d4565b9350506020612183868287016120d4565b925050604061219486828701612027565b9150509250925092565b5f80604083850312156121b4576121b3611ebd565b5b5f6121c185828601612027565b92505060206121d285828601612027565b9150509250929050565b5f6040820190506121ef5f830185612096565b6121fc6020830184612126565b9392505050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61224182611fa0565b810181811067ffffffffffffffff821117156122605761225f61220b565b5b80604052505050565b5f612272611eb4565b905061227e8282612238565b919050565b5f67ffffffffffffffff82111561229d5761229c61220b565b5b6122a682611fa0565b9050602081019050919050565b828183375f83830152505050565b5f6122d36122ce84612283565b612269565b9050828152602081018484840111156122ef576122ee612207565b5b6122fa8482856122b3565b509392505050565b5f82601f83011261231657612315612203565b5b81356123268482602086016122c1565b91505092915050565b5f6020828403121561234457612343611ebd565b5b5f82013567ffffffffffffffff81111561236157612360611ec1565b5b61236d84828501612302565b91505092915050565b5f6020828403121561238b5761238a611ebd565b5b5f612398848285016120d4565b91505092915050565b6123aa81611f45565b81146123b4575f80fd5b50565b5f813590506123c5816123a1565b92915050565b5f80604083850312156123e1576123e0611ebd565b5b5f6123ee858286016120d4565b92505060206123ff858286016123b7565b9150509250929050565b5f67ffffffffffffffff8211156124235761242261220b565b5b61242c82611fa0565b9050602081019050919050565b5f61244b61244684612409565b612269565b90508281526020810184848401111561246757612466612207565b5b6124728482856122b3565b509392505050565b5f82601f83011261248e5761248d612203565b5b813561249e848260208601612439565b91505092915050565b5f805f80608085870312156124bf576124be611ebd565b5b5f6124cc878288016120d4565b94505060206124dd878288016120d4565b93505060406124ee87828801612027565b925050606085013567ffffffffffffffff81111561250f5761250e611ec1565b5b61251b8782880161247a565b91505092959194509250565b5f806040838503121561253d5761253c611ebd565b5b5f61254a858286016120d4565b925050602061255b858286016120d4565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61259c82612008565b91506125a783612008565b92508282039050818111156125bf576125be612565565b5b92915050565b5f6060820190506125d85f830186612126565b6125e56020830185612096565b6125f26040830184612126565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61263182612008565b915061263c83612008565b92508261264c5761264b6125fa565b5b828206905092915050565b5f61266182612008565b915061266c83612008565b925082820261267a81612008565b9150828204841483151761269157612690612565565b5b5092915050565b5f6126a282612008565b91506126ad83612008565b9250826126bd576126bc6125fa565b5b828204905092915050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f6126fc600983611f82565b9150612707826126c8565b602082019050919050565b5f6020820190508181035f830152612729816126f0565b9050919050565b5f61273a82612008565b915061274583612008565b925082820190508082111561275d5761275c612565565b5b92915050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f612797600e83611f82565b91506127a282612763565b602082019050919050565b5f6020820190508181035f8301526127c48161278b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061280f57607f821691505b602082108103612822576128216127cb565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026128847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612849565b61288e8683612849565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6128c96128c46128bf84612008565b6128a6565b612008565b9050919050565b5f819050919050565b6128e2836128af565b6128f66128ee826128d0565b848454612855565b825550505050565b5f90565b61290a6128fe565b6129158184846128d9565b505050565b5b818110156129385761292d5f82612902565b60018101905061291b565b5050565b601f82111561297d5761294e81612828565b6129578461283a565b81016020851015612966578190505b61297a6129728561283a565b83018261291a565b50505b505050565b5f82821c905092915050565b5f61299d5f1984600802612982565b1980831691505092915050565b5f6129b5838361298e565b9150826002028217905092915050565b6129ce82611f78565b67ffffffffffffffff8111156129e7576129e661220b565b5b6129f182546127f8565b6129fc82828561293c565b5f60209050601f831160018114612a2d575f8415612a1b578287015190505b612a2585826129aa565b865550612a8c565b601f198416612a3b86612828565b5f5b82811015612a6257848901518255600182019150602085019450602081019050612a3d565b86831015612a7f5784890151612a7b601f89168261298e565b8355505b6001600288020188555050505b505050505050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f612ac8600883611f82565b9150612ad382612a94565b602082019050919050565b5f6020820190508181035f830152612af581612abc565b9050919050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f612b30600c83611f82565b9150612b3b82612afc565b602082019050919050565b5f6020820190508181035f830152612b5d81612b24565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f612ba2600783612b64565b9150612bad82612b6e565b600782019050919050565b5f612bc282611f78565b612bcc8185612b64565b9350612bdc818560208601611f92565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f612c1c600183612b64565b9150612c2782612be8565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612c66600583612b64565b9150612c7182612c32565b600582019050919050565b5f612c8682612b96565b9150612c928285612bb8565b9150612c9d82612c10565b9150612ca98284612bb8565b9150612cb482612c5a565b91508190509392505050565b7f4f7574206f6620626f756e6473000000000000000000000000000000000000005f82015250565b5f612cf4600d83611f82565b9150612cff82612cc0565b602082019050919050565b5f6020820190508181035f830152612d2181612ce8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffdfea26469706673582212208564e630f1a3edadc595b030096d8df2951c01c53096b368354f7ec6d03df50364736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000fdbb99c27528b1110251a0403ddd8dc74b1879640000000000000000000000000000000000000000000000000000000000000226
-----Decoded View---------------
Arg [0] : royaltyReceiver_ (address): 0xFDBb99c27528B1110251A0403DDd8dc74B187964
Arg [1] : royaltyFeeNumerator_ (uint96): 550
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000fdbb99c27528b1110251a0403ddd8dc74b187964
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000226
Deployed Bytecode Sourcemap
24154:23044:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41918:14;41935:5;41941:37;41962:1;41965:5;:12;;;;41941:20;:37::i;:::-;41935:44;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41918:61;;41990:20;42021:6;41990:38;;42039:4;:13;;:24;42053:9;42039:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24154:23044;42117:14;42134:5;42140:37;42161:1;42164:5;:12;;;;42140:20;:37::i;:::-;42134:44;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42117:61;;42189:20;42220:6;42189:38;;42238:4;:13;;:24;42252:9;42238:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28870:634;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33096:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34763:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34246:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28113:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35649:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4760:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;46674:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24282:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47050:145;;;;;;;;;;;;;:::i;:::-;;35910:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27402:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46358:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32885:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29568:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24788:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24543:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33265:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24873:267;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35039:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36186:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24330:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33383:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35418:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24589:22;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46358:308;46439:7;46459:19;46496:1;46481:12;:16;;;;:::i;:::-;46459:38;;46541:17;46582:11;46595:10;46607:7;46571:44;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46561:55;;;;;;46541:75;;46655:3;46642:9;46634:18;;:24;;;;:::i;:::-;46627:31;;;;46358:308;;;;:::o;28870:634::-;28974:4;29289:10;29274:25;;:11;:25;;;;:102;;;;29366:10;29351:25;;:11;:25;;;;29274:102;:179;;;;29443:10;29428:25;;:11;:25;;;;29274:179;29254:199;;28870:634;;;:::o;33096:100::-;33150:13;33183:5;;;;;;;;;;;;;;;;;33176:12;;33096:100;:::o;34763:204::-;34831:7;34856:16;34864:7;34856;:16::i;:::-;34851:64;;34881:34;;;;;;;;;;;;;;34851:64;34935:15;:24;34951:7;34935:24;;;;;;;;;;;;;;;;;;;;;34928:31;;34763:204;;;:::o;34246:451::-;34319:13;34351:27;34370:7;34351:18;:27::i;:::-;34319:61;;34401:5;34395:11;;:2;:11;;;34391:25;;34408:8;;;34391:25;34456:5;34433:28;;:19;:17;:19::i;:::-;:28;;;34429:175;;34481:44;34498:5;34505:19;:17;:19::i;:::-;34481:16;:44::i;:::-;34476:128;;34553:35;;;;;;;;;;;;;;34476:128;34429:175;34643:2;34616:15;:24;34632:7;34616:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34681:7;34677:2;34661:28;;34670:5;34661:28;;;;;;;;;;;;34308:389;34246:451;;:::o;28113:300::-;28166:7;28379:15;:13;:15::i;:::-;28363:13;;:31;28356:38;;28113:300;:::o;35649:190::-;35803:28;35813:4;35819:2;35823:7;35803:9;:28::i;:::-;35649:190;;;:::o;4760:438::-;4855:7;4864;4884:26;4913:17;:26;4931:7;4913:26;;;;;;;;;;;4884:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4984:1;4956:30;;:7;:16;;;:30;;;4952:92;;5013:19;5003:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4952:92;5056:21;5120:17;:15;:17::i;:::-;5080:57;;5093:7;:23;;;5081:35;;:9;:35;;;;:::i;:::-;5080:57;;;;:::i;:::-;5056:81;;5158:7;:16;;;5176:13;5150:40;;;;;;4760:438;;;;;:::o;46674:169::-;46900:10;46892:18;;:6;;;;;;;;;;;:18;;;46884:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;24319:4:::1;46761:6;46745:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;46737:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;46810:25;46816:10;46828:6;46810:5;:25::i;:::-;46674:169:::0;:::o;24282:41::-;24319:4;24282:41;:::o;47050:145::-;46900:10;46892:18;;:6;;;;;;;;;;;:18;;;46884:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;47100:15:::1;47118:21;47100:39;;47158:10;47150:28;;:37;47179:7;47150:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;47089:106;47050:145::o:0;35910:205::-;36068:39;36085:4;36091:2;36095:7;36068:39;;;;;;;;;;;;:16;:39::i;:::-;35910:205;;;:::o;27402:91::-;46900:10;46892:18;;:6;;;;;;;;;;;:18;;;46884:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;27480:5:::1;27469:8;:16;;;;;;:::i;:::-;;27402:91:::0;:::o;32885:144::-;32949:7;32992:27;33011:7;32992:18;:27::i;:::-;32969:52;;32885:144;;;:::o;29568:234::-;29632:7;29684:1;29656:24;29674:5;29656:17;:24::i;:::-;:29;29652:70;;29694:28;;;;;;;;;;;;;;29652:70;25253:13;29740:18;:25;29759:5;29740:25;;;;;;;;;;;;;;;;:54;29733:61;;29568:234;;;:::o;24788:77::-;24825:7;24851:6;;;;;;;;;;;24844:13;;24788:77;:::o;24543:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;33265:104::-;33321:13;33354:7;;;;;;;;;;;;;;;;;33347:14;;33265:104;:::o;24873:267::-;24930:15;24948:19;:17;:19::i;:::-;24930:37;;24319:4;25004:6;24988:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;24980:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25071:9;24361:10;25056:6;:11;;;;:::i;:::-;:24;;25048:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;25110:22;25116:7;25125:6;25110:5;:22::i;:::-;24919:221;24873:267;:::o;35039:308::-;35150:19;:17;:19::i;:::-;35138:31;;:8;:31;;;35134:61;;35178:17;;;;;;;;;;;;;;35134:61;35260:8;35208:18;:39;35227:19;:17;:19::i;:::-;35208:39;;;;;;;;;;;;;;;:49;35248:8;35208:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35320:8;35284:55;;35299:19;:17;:19::i;:::-;35284:55;;;35330:8;35284:55;;;;;;:::i;:::-;;;;;;;;35039:308;;:::o;36186:227::-;36377:28;36387:4;36393:2;36397:7;36377:9;:28::i;:::-;36186:227;;;;:::o;24330:41::-;24361:10;24330:41;:::o;33383:339::-;33456:13;33487:16;33495:7;33487;:16::i;:::-;33482:59;;33512:29;;;;;;;;;;;;;;33482:59;33552:21;33576:8;33552:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33627:1;33608:7;33602:21;:26;:112;;;;;;;;;;;;;;;;;33666:7;33680:18;33690:7;33680:9;:18::i;:::-;33638:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33602:112;33595:119;;;33383:339;;;:::o;35418:164::-;35515:4;35539:18;:25;35558:5;35539:25;;;;;;;;;;;;;;;:35;35565:8;35539:35;;;;;;;;;;;;;;;;;;;;;;;;;35532:42;;35418:164;;;;:::o;24589:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36668:168::-;36725:4;36781:7;36762:15;:13;:15::i;:::-;:26;;:66;;;;;36815:13;;36805:7;:23;36762:66;36742:86;;36668:168;;;:::o;30400:1129::-;30467:7;30487:12;30502:7;30487:22;;30570:4;30551:15;:13;:15::i;:::-;:23;30547:915;;30604:13;;30597:4;:20;30593:869;;;30642:14;30659:17;:23;30677:4;30659:23;;;;;;;;;;;;30642:40;;30775:1;26023:8;30748:6;:23;:28;30744:699;;31267:113;31284:1;31274:6;:11;31267:113;;31327:17;:25;31345:6;;;;;;;31327:25;;;;;;;;;;;;31318:34;;31267:113;;;31413:6;31406:13;;;;;;30744:699;30619:843;30593:869;30547:915;31490:31;;;;;;;;;;;;;;30400:1129;;;;:::o;44257:105::-;44317:7;44344:10;44337:17;;44257:105;:::o;27636:92::-;27692:7;27636:92;:::o;38959:2914::-;39096:9;39108:34;39129:7;39138:3;39108:20;:34::i;:::-;39096:46;;39254:4;39245:6;;:13;39242:197;;;39275:16;39312:3;39305:6;;:10;;;;:::i;:::-;39300:1;:16;;;;:::i;:::-;39294:2;:23;;;;:::i;:::-;39275:42;;39340:8;39336:1;:12;39332:96;;;39382:1;39369:15;;39411:1;39403:6;;:9;;;;;;;:::i;:::-;;;;;;;;39332:96;39260:179;39242:197;39453:27;39483;39502:7;39483:18;:27::i;:::-;39453:57;;39568:4;39527:45;;39543:19;39527:45;;;39523:86;;39581:28;;;;;;;;;;;;;;39523:86;39622:23;39648:15;:24;39664:7;39648:24;;;;;;;;;;;;;;;;;;;;;39622:50;;39685:22;39734:4;39711:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;39759:43;39776:4;39782:19;:17;:19::i;:::-;39759:16;:43::i;:::-;39711:91;:150;;;;39842:19;:17;:19::i;:::-;39823:38;;:15;:38;;;39711:150;39685:177;;39880:17;39875:66;;39906:35;;;;;;;;;;;;;;39875:66;40051:1;40013:34;40031:15;40013:17;:34::i;:::-;:39;40009:103;;40076:15;:24;40092:7;40076:24;;;;;;;;;;;;40069:31;;;;;;;;;;;40009:103;40479:18;:24;40498:4;40479:24;;;;;;;;;;;;;;;;40477:26;;;;;;;;;;;;40548:18;:22;40567:2;40548:22;;;;;;;;;;;;;;;;40546:24;;;;;;;;;;;26301:8;25907:3;40929:15;:41;;40887:21;40905:2;40887:17;:21::i;:::-;:84;:128;40841:17;:26;40859:7;40841:26;;;;;;;;;;;:174;;;;41185:1;26301:8;41135:19;:46;:51;41131:626;;41207:19;41239:1;41229:7;:11;41207:33;;41396:1;41362:17;:30;41380:11;41362:30;;;;;;;;;;;;:35;41358:384;;41500:13;;41485:11;:28;41481:242;;41680:19;41647:17;:30;41665:11;41647:30;;;;;;;;;;;:52;;;;41481:242;41358:384;41188:569;41131:626;41804:7;41800:2;41785:27;;41794:4;41785:27;;;;;;;;;;;;41823:42;41844:4;41850:2;41854:7;41863:1;41823:20;:42::i;:::-;39083:2790;;;;38959:2914;;;:::o;5480:97::-;5538:6;5564:5;5557:12;;5480:97;:::o;37101:1596::-;37166:20;37189:13;;37166:36;;37300:1;37288:8;:13;37284:44;;37310:18;;;;;;;;;;;;;;37284:44;37873:1;25390:2;37844:1;:25;;37843:31;37831:8;:44;37805:18;:22;37824:2;37805:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;26166:3;38274:29;38301:1;38289:8;:13;38274:14;:29::i;:::-;:56;;25907:3;38211:15;:41;;38169:21;38187:2;38169:17;:21::i;:::-;:84;:162;38118:17;:31;38136:12;38118:31;;;;;;;;;;;:213;;;;38348:20;38371:12;38348:35;;38398:11;38427:8;38412:12;:23;38398:37;;38452:111;38504:14;;;;;;38500:2;38479:40;;38496:1;38479:40;;;;;;;;;;;;38558:3;38543:12;:18;38452:111;;38595:12;38579:13;:28;;;;37582:1037;;38629:60;38658:1;38662:2;38666:12;38680:8;38629:20;:60::i;:::-;37155:1542;37101:1596;;:::o;33807:148::-;33871:14;33932:5;33922:15;;33807:148;;;:::o;44468:1882::-;44525:17;44946:3;44939:4;44933:11;44929:21;44922:28;;45033:3;45027:4;45020:17;45133:3;45569:5;45701:1;45696:3;45692:11;45685:18;;45840:2;45834:4;45830:13;45826:2;45822:22;45817:3;45809:36;45882:2;45876:4;45872:13;45864:21;;45466:661;45898:4;45466:661;;;46066:1;46061:3;46057:11;46050:18;;46110:2;46104:4;46100:13;46096:2;46092:22;46087:3;46079:36;45983:2;45977:4;45973:13;45965:21;;45466:661;;;45470:427;46159:3;46154;46150:13;46268:2;46263:3;46259:12;46252:19;;46325:6;46320:3;46313:19;44564:1779;;44468:1882;;;:::o;43299:753::-;43498:15;43516:10;43498:28;;43550:7;:16;43558:7;43550:16;;;;;;;;;;;;;;;;;;;;;;;;;43549:17;:43;;;;;43590:2;43570:18;43580:7;43570:9;:18::i;:::-;:22;;43549:43;43545:156;;;43635:4;43616:7;:16;43624:7;43616:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;43662:5;43673:7;43662:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43545:156;43723:7;:16;43731:7;43723:16;;;;;;;;;;;;;;;;;;;;;;;;;:41;;;;;43762:2;43743:18;43753:7;43743:9;:18::i;:::-;:21;43723:41;43719:318;;;43807:5;43788:7;:16;43796:7;43788:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;43839:6;43835:183;43853:5;:12;;;;43849:1;:16;43835:183;;;43912:7;43902:17;;:5;43908:1;43902:8;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:17;;;43898:97;;43951:16;43958:5;43965:1;43951:6;:16::i;:::-;43898:97;43867:3;;;;;;;43835:183;;;;43719:318;43479:573;43299:753;;;;:::o;34042:142::-;34100:14;34161:5;34151:15;;34042:142;;;:::o;42933:358::-;43032:5;43017;:12;;;;:20;43009:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;43144:9;43156:5;43144:17;;43139:99;43182:1;43167:5;:12;;;;:16;;;;:::i;:::-;43163:1;:20;43139:99;;;43216:5;43224:1;43222;:3;;;;:::i;:::-;43216:10;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43205:5;43211:1;43205:8;;;;;;;;:::i;:::-;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;43185:3;;;;;;;43139:99;;;;43248:5;:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;42933:358;;:::o;7:180:1:-;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;193:75;226:6;259:2;253:9;243:19;;193:75;:::o;274:117::-;383:1;380;373:12;397:117;506:1;503;496:12;520:149;556:7;596:66;589:5;585:78;574:89;;520:149;;;:::o;675:120::-;747:23;764:5;747:23;:::i;:::-;740:5;737:34;727:62;;785:1;782;775:12;727:62;675:120;:::o;801:137::-;846:5;884:6;871:20;862:29;;900:32;926:5;900:32;:::i;:::-;801:137;;;;:::o;944:327::-;1002:6;1051:2;1039:9;1030:7;1026:23;1022:32;1019:119;;;1057:79;;:::i;:::-;1019:119;1177:1;1202:52;1246:7;1237:6;1226:9;1222:22;1202:52;:::i;:::-;1192:62;;1148:116;944:327;;;;:::o;1277:90::-;1311:7;1354:5;1347:13;1340:21;1329:32;;1277:90;;;:::o;1373:109::-;1454:21;1469:5;1454:21;:::i;:::-;1449:3;1442:34;1373:109;;:::o;1488:210::-;1575:4;1613:2;1602:9;1598:18;1590:26;;1626:65;1688:1;1677:9;1673:17;1664:6;1626:65;:::i;:::-;1488:210;;;;:::o;1704:99::-;1756:6;1790:5;1784:12;1774:22;;1704:99;;;:::o;1809:169::-;1893:11;1927:6;1922:3;1915:19;1967:4;1962:3;1958:14;1943:29;;1809:169;;;;:::o;1984:139::-;2073:6;2068:3;2063;2057:23;2114:1;2105:6;2100:3;2096:16;2089:27;1984:139;;;:::o;2129:102::-;2170:6;2221:2;2217:7;2212:2;2205:5;2201:14;2197:28;2187:38;;2129:102;;;:::o;2237:377::-;2325:3;2353:39;2386:5;2353:39;:::i;:::-;2408:71;2472:6;2467:3;2408:71;:::i;:::-;2401:78;;2488:65;2546:6;2541:3;2534:4;2527:5;2523:16;2488:65;:::i;:::-;2578:29;2600:6;2578:29;:::i;:::-;2573:3;2569:39;2562:46;;2329:285;2237:377;;;;:::o;2620:313::-;2733:4;2771:2;2760:9;2756:18;2748:26;;2820:9;2814:4;2810:20;2806:1;2795:9;2791:17;2784:47;2848:78;2921:4;2912:6;2848:78;:::i;:::-;2840:86;;2620:313;;;;:::o;2939:77::-;2976:7;3005:5;2994:16;;2939:77;;;:::o;3022:122::-;3095:24;3113:5;3095:24;:::i;:::-;3088:5;3085:35;3075:63;;3134:1;3131;3124:12;3075:63;3022:122;:::o;3150:139::-;3196:5;3234:6;3221:20;3212:29;;3250:33;3277:5;3250:33;:::i;:::-;3150:139;;;;:::o;3295:329::-;3354:6;3403:2;3391:9;3382:7;3378:23;3374:32;3371:119;;;3409:79;;:::i;:::-;3371:119;3529:1;3554:53;3599:7;3590:6;3579:9;3575:22;3554:53;:::i;:::-;3544:63;;3500:117;3295:329;;;;:::o;3630:126::-;3667:7;3707:42;3700:5;3696:54;3685:65;;3630:126;;;:::o;3762:96::-;3799:7;3828:24;3846:5;3828:24;:::i;:::-;3817:35;;3762:96;;;:::o;3864:118::-;3951:24;3969:5;3951:24;:::i;:::-;3946:3;3939:37;3864:118;;:::o;3988:222::-;4081:4;4119:2;4108:9;4104:18;4096:26;;4132:71;4200:1;4189:9;4185:17;4176:6;4132:71;:::i;:::-;3988:222;;;;:::o;4216:122::-;4289:24;4307:5;4289:24;:::i;:::-;4282:5;4279:35;4269:63;;4328:1;4325;4318:12;4269:63;4216:122;:::o;4344:139::-;4390:5;4428:6;4415:20;4406:29;;4444:33;4471:5;4444:33;:::i;:::-;4344:139;;;;:::o;4489:474::-;4557:6;4565;4614:2;4602:9;4593:7;4589:23;4585:32;4582:119;;;4620:79;;:::i;:::-;4582:119;4740:1;4765:53;4810:7;4801:6;4790:9;4786:22;4765:53;:::i;:::-;4755:63;;4711:117;4867:2;4893:53;4938:7;4929:6;4918:9;4914:22;4893:53;:::i;:::-;4883:63;;4838:118;4489:474;;;;;:::o;4969:118::-;5056:24;5074:5;5056:24;:::i;:::-;5051:3;5044:37;4969:118;;:::o;5093:222::-;5186:4;5224:2;5213:9;5209:18;5201:26;;5237:71;5305:1;5294:9;5290:17;5281:6;5237:71;:::i;:::-;5093:222;;;;:::o;5321:619::-;5398:6;5406;5414;5463:2;5451:9;5442:7;5438:23;5434:32;5431:119;;;5469:79;;:::i;:::-;5431:119;5589:1;5614:53;5659:7;5650:6;5639:9;5635:22;5614:53;:::i;:::-;5604:63;;5560:117;5716:2;5742:53;5787:7;5778:6;5767:9;5763:22;5742:53;:::i;:::-;5732:63;;5687:118;5844:2;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5815:118;5321:619;;;;;:::o;5946:474::-;6014:6;6022;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:53;6267:7;6258:6;6247:9;6243:22;6222:53;:::i;:::-;6212:63;;6168:117;6324:2;6350:53;6395:7;6386:6;6375:9;6371:22;6350:53;:::i;:::-;6340:63;;6295:118;5946:474;;;;;:::o;6426:332::-;6547:4;6585:2;6574:9;6570:18;6562:26;;6598:71;6666:1;6655:9;6651:17;6642:6;6598:71;:::i;:::-;6679:72;6747:2;6736:9;6732:18;6723:6;6679:72;:::i;:::-;6426:332;;;;;:::o;6764:117::-;6873:1;6870;6863:12;6887:117;6996:1;6993;6986:12;7010:180;7058:77;7055:1;7048:88;7155:4;7152:1;7145:15;7179:4;7176:1;7169:15;7196:281;7279:27;7301:4;7279:27;:::i;:::-;7271:6;7267:40;7409:6;7397:10;7394:22;7373:18;7361:10;7358:34;7355:62;7352:88;;;7420:18;;:::i;:::-;7352:88;7460:10;7456:2;7449:22;7239:238;7196:281;;:::o;7483:129::-;7517:6;7544:20;;:::i;:::-;7534:30;;7573:33;7601:4;7593:6;7573:33;:::i;:::-;7483:129;;;:::o;7618:308::-;7680:4;7770:18;7762:6;7759:30;7756:56;;;7792:18;;:::i;:::-;7756:56;7830:29;7852:6;7830:29;:::i;:::-;7822:37;;7914:4;7908;7904:15;7896:23;;7618:308;;;:::o;7932:148::-;8030:6;8025:3;8020;8007:30;8071:1;8062:6;8057:3;8053:16;8046:27;7932:148;;;:::o;8086:425::-;8164:5;8189:66;8205:49;8247:6;8205:49;:::i;:::-;8189:66;:::i;:::-;8180:75;;8278:6;8271:5;8264:21;8316:4;8309:5;8305:16;8354:3;8345:6;8340:3;8336:16;8333:25;8330:112;;;8361:79;;:::i;:::-;8330:112;8451:54;8498:6;8493:3;8488;8451:54;:::i;:::-;8170:341;8086:425;;;;;:::o;8531:340::-;8587:5;8636:3;8629:4;8621:6;8617:17;8613:27;8603:122;;8644:79;;:::i;:::-;8603:122;8761:6;8748:20;8786:79;8861:3;8853:6;8846:4;8838:6;8834:17;8786:79;:::i;:::-;8777:88;;8593:278;8531:340;;;;:::o;8877:509::-;8946:6;8995:2;8983:9;8974:7;8970:23;8966:32;8963:119;;;9001:79;;:::i;:::-;8963:119;9149:1;9138:9;9134:17;9121:31;9179:18;9171:6;9168:30;9165:117;;;9201:79;;:::i;:::-;9165:117;9306:63;9361:7;9352:6;9341:9;9337:22;9306:63;:::i;:::-;9296:73;;9092:287;8877:509;;;;:::o;9392:329::-;9451:6;9500:2;9488:9;9479:7;9475:23;9471:32;9468:119;;;9506:79;;:::i;:::-;9468:119;9626:1;9651:53;9696:7;9687:6;9676:9;9672:22;9651:53;:::i;:::-;9641:63;;9597:117;9392:329;;;;:::o;9727:116::-;9797:21;9812:5;9797:21;:::i;:::-;9790:5;9787:32;9777:60;;9833:1;9830;9823:12;9777:60;9727:116;:::o;9849:133::-;9892:5;9930:6;9917:20;9908:29;;9946:30;9970:5;9946:30;:::i;:::-;9849:133;;;;:::o;9988:468::-;10053:6;10061;10110:2;10098:9;10089:7;10085:23;10081:32;10078:119;;;10116:79;;:::i;:::-;10078:119;10236:1;10261:53;10306:7;10297:6;10286:9;10282:22;10261:53;:::i;:::-;10251:63;;10207:117;10363:2;10389:50;10431:7;10422:6;10411:9;10407:22;10389:50;:::i;:::-;10379:60;;10334:115;9988:468;;;;;:::o;10462:307::-;10523:4;10613:18;10605:6;10602:30;10599:56;;;10635:18;;:::i;:::-;10599:56;10673:29;10695:6;10673:29;:::i;:::-;10665:37;;10757:4;10751;10747:15;10739:23;;10462:307;;;:::o;10775:423::-;10852:5;10877:65;10893:48;10934:6;10893:48;:::i;:::-;10877:65;:::i;:::-;10868:74;;10965:6;10958:5;10951:21;11003:4;10996:5;10992:16;11041:3;11032:6;11027:3;11023:16;11020:25;11017:112;;;11048:79;;:::i;:::-;11017:112;11138:54;11185:6;11180:3;11175;11138:54;:::i;:::-;10858:340;10775:423;;;;;:::o;11217:338::-;11272:5;11321:3;11314:4;11306:6;11302:17;11298:27;11288:122;;11329:79;;:::i;:::-;11288:122;11446:6;11433:20;11471:78;11545:3;11537:6;11530:4;11522:6;11518:17;11471:78;:::i;:::-;11462:87;;11278:277;11217:338;;;;:::o;11561:943::-;11656:6;11664;11672;11680;11729:3;11717:9;11708:7;11704:23;11700:33;11697:120;;;11736:79;;:::i;:::-;11697:120;11856:1;11881:53;11926:7;11917:6;11906:9;11902:22;11881:53;:::i;:::-;11871:63;;11827:117;11983:2;12009:53;12054:7;12045:6;12034:9;12030:22;12009:53;:::i;:::-;11999:63;;11954:118;12111:2;12137:53;12182:7;12173:6;12162:9;12158:22;12137:53;:::i;:::-;12127:63;;12082:118;12267:2;12256:9;12252:18;12239:32;12298:18;12290:6;12287:30;12284:117;;;12320:79;;:::i;:::-;12284:117;12425:62;12479:7;12470:6;12459:9;12455:22;12425:62;:::i;:::-;12415:72;;12210:287;11561:943;;;;;;;:::o;12510:474::-;12578:6;12586;12635:2;12623:9;12614:7;12610:23;12606:32;12603:119;;;12641:79;;:::i;:::-;12603:119;12761:1;12786:53;12831:7;12822:6;12811:9;12807:22;12786:53;:::i;:::-;12776:63;;12732:117;12888:2;12914:53;12959:7;12950:6;12939:9;12935:22;12914:53;:::i;:::-;12904:63;;12859:118;12510:474;;;;;:::o;12990:180::-;13038:77;13035:1;13028:88;13135:4;13132:1;13125:15;13159:4;13156:1;13149:15;13176:194;13216:4;13236:20;13254:1;13236:20;:::i;:::-;13231:25;;13270:20;13288:1;13270:20;:::i;:::-;13265:25;;13314:1;13311;13307:9;13299:17;;13338:1;13332:4;13329:11;13326:37;;;13343:18;;:::i;:::-;13326:37;13176:194;;;;:::o;13376:442::-;13525:4;13563:2;13552:9;13548:18;13540:26;;13576:71;13644:1;13633:9;13629:17;13620:6;13576:71;:::i;:::-;13657:72;13725:2;13714:9;13710:18;13701:6;13657:72;:::i;:::-;13739;13807:2;13796:9;13792:18;13783:6;13739:72;:::i;:::-;13376:442;;;;;;:::o;13824:180::-;13872:77;13869:1;13862:88;13969:4;13966:1;13959:15;13993:4;13990:1;13983:15;14010:176;14042:1;14059:20;14077:1;14059:20;:::i;:::-;14054:25;;14093:20;14111:1;14093:20;:::i;:::-;14088:25;;14132:1;14122:35;;14137:18;;:::i;:::-;14122:35;14178:1;14175;14171:9;14166:14;;14010:176;;;;:::o;14192:410::-;14232:7;14255:20;14273:1;14255:20;:::i;:::-;14250:25;;14289:20;14307:1;14289:20;:::i;:::-;14284:25;;14344:1;14341;14337:9;14366:30;14384:11;14366:30;:::i;:::-;14355:41;;14545:1;14536:7;14532:15;14529:1;14526:22;14506:1;14499:9;14479:83;14456:139;;14575:18;;:::i;:::-;14456:139;14240:362;14192:410;;;;:::o;14608:185::-;14648:1;14665:20;14683:1;14665:20;:::i;:::-;14660:25;;14699:20;14717:1;14699:20;:::i;:::-;14694:25;;14738:1;14728:35;;14743:18;;:::i;:::-;14728:35;14785:1;14782;14778:9;14773:14;;14608:185;;;;:::o;14799:159::-;14939:11;14935:1;14927:6;14923:14;14916:35;14799:159;:::o;14964:365::-;15106:3;15127:66;15191:1;15186:3;15127:66;:::i;:::-;15120:73;;15202:93;15291:3;15202:93;:::i;:::-;15320:2;15315:3;15311:12;15304:19;;14964:365;;;:::o;15335:419::-;15501:4;15539:2;15528:9;15524:18;15516:26;;15588:9;15582:4;15578:20;15574:1;15563:9;15559:17;15552:47;15616:131;15742:4;15616:131;:::i;:::-;15608:139;;15335:419;;;:::o;15760:191::-;15800:3;15819:20;15837:1;15819:20;:::i;:::-;15814:25;;15853:20;15871:1;15853:20;:::i;:::-;15848:25;;15896:1;15893;15889:9;15882:16;;15917:3;15914:1;15911:10;15908:36;;;15924:18;;:::i;:::-;15908:36;15760:191;;;;:::o;15957:164::-;16097:16;16093:1;16085:6;16081:14;16074:40;15957:164;:::o;16127:366::-;16269:3;16290:67;16354:2;16349:3;16290:67;:::i;:::-;16283:74;;16366:93;16455:3;16366:93;:::i;:::-;16484:2;16479:3;16475:12;16468:19;;16127:366;;;:::o;16499:419::-;16665:4;16703:2;16692:9;16688:18;16680:26;;16752:9;16746:4;16742:20;16738:1;16727:9;16723:17;16716:47;16780:131;16906:4;16780:131;:::i;:::-;16772:139;;16499:419;;;:::o;16924:180::-;16972:77;16969:1;16962:88;17069:4;17066:1;17059:15;17093:4;17090:1;17083:15;17110:320;17154:6;17191:1;17185:4;17181:12;17171:22;;17238:1;17232:4;17228:12;17259:18;17249:81;;17315:4;17307:6;17303:17;17293:27;;17249:81;17377:2;17369:6;17366:14;17346:18;17343:38;17340:84;;17396:18;;:::i;:::-;17340:84;17161:269;17110:320;;;:::o;17436:141::-;17485:4;17508:3;17500:11;;17531:3;17528:1;17521:14;17565:4;17562:1;17552:18;17544:26;;17436:141;;;:::o;17583:93::-;17620:6;17667:2;17662;17655:5;17651:14;17647:23;17637:33;;17583:93;;;:::o;17682:107::-;17726:8;17776:5;17770:4;17766:16;17745:37;;17682:107;;;;:::o;17795:393::-;17864:6;17914:1;17902:10;17898:18;17937:97;17967:66;17956:9;17937:97;:::i;:::-;18055:39;18085:8;18074:9;18055:39;:::i;:::-;18043:51;;18127:4;18123:9;18116:5;18112:21;18103:30;;18176:4;18166:8;18162:19;18155:5;18152:30;18142:40;;17871:317;;17795:393;;;;;:::o;18194:60::-;18222:3;18243:5;18236:12;;18194:60;;;:::o;18260:142::-;18310:9;18343:53;18361:34;18370:24;18388:5;18370:24;:::i;:::-;18361:34;:::i;:::-;18343:53;:::i;:::-;18330:66;;18260:142;;;:::o;18408:75::-;18451:3;18472:5;18465:12;;18408:75;;;:::o;18489:269::-;18599:39;18630:7;18599:39;:::i;:::-;18660:91;18709:41;18733:16;18709:41;:::i;:::-;18701:6;18694:4;18688:11;18660:91;:::i;:::-;18654:4;18647:105;18565:193;18489:269;;;:::o;18764:73::-;18809:3;18764:73;:::o;18843:189::-;18920:32;;:::i;:::-;18961:65;19019:6;19011;19005:4;18961:65;:::i;:::-;18896:136;18843:189;;:::o;19038:186::-;19098:120;19115:3;19108:5;19105:14;19098:120;;;19169:39;19206:1;19199:5;19169:39;:::i;:::-;19142:1;19135:5;19131:13;19122:22;;19098:120;;;19038:186;;:::o;19230:543::-;19331:2;19326:3;19323:11;19320:446;;;19365:38;19397:5;19365:38;:::i;:::-;19449:29;19467:10;19449:29;:::i;:::-;19439:8;19435:44;19632:2;19620:10;19617:18;19614:49;;;19653:8;19638:23;;19614:49;19676:80;19732:22;19750:3;19732:22;:::i;:::-;19722:8;19718:37;19705:11;19676:80;:::i;:::-;19335:431;;19320:446;19230:543;;;:::o;19779:117::-;19833:8;19883:5;19877:4;19873:16;19852:37;;19779:117;;;;:::o;19902:169::-;19946:6;19979:51;20027:1;20023:6;20015:5;20012:1;20008:13;19979:51;:::i;:::-;19975:56;20060:4;20054;20050:15;20040:25;;19953:118;19902:169;;;;:::o;20076:295::-;20152:4;20298:29;20323:3;20317:4;20298:29;:::i;:::-;20290:37;;20360:3;20357:1;20353:11;20347:4;20344:21;20336:29;;20076:295;;;;:::o;20376:1395::-;20493:37;20526:3;20493:37;:::i;:::-;20595:18;20587:6;20584:30;20581:56;;;20617:18;;:::i;:::-;20581:56;20661:38;20693:4;20687:11;20661:38;:::i;:::-;20746:67;20806:6;20798;20792:4;20746:67;:::i;:::-;20840:1;20864:4;20851:17;;20896:2;20888:6;20885:14;20913:1;20908:618;;;;21570:1;21587:6;21584:77;;;21636:9;21631:3;21627:19;21621:26;21612:35;;21584:77;21687:67;21747:6;21740:5;21687:67;:::i;:::-;21681:4;21674:81;21543:222;20878:887;;20908:618;20960:4;20956:9;20948:6;20944:22;20994:37;21026:4;20994:37;:::i;:::-;21053:1;21067:208;21081:7;21078:1;21075:14;21067:208;;;21160:9;21155:3;21151:19;21145:26;21137:6;21130:42;21211:1;21203:6;21199:14;21189:24;;21258:2;21247:9;21243:18;21230:31;;21104:4;21101:1;21097:12;21092:17;;21067:208;;;21303:6;21294:7;21291:19;21288:179;;;21361:9;21356:3;21352:19;21346:26;21404:48;21446:4;21438:6;21434:17;21423:9;21404:48;:::i;:::-;21396:6;21389:64;21311:156;21288:179;21513:1;21509;21501:6;21497:14;21493:22;21487:4;21480:36;20915:611;;;20878:887;;20468:1303;;;20376:1395;;:::o;21777:158::-;21917:10;21913:1;21905:6;21901:14;21894:34;21777:158;:::o;21941:365::-;22083:3;22104:66;22168:1;22163:3;22104:66;:::i;:::-;22097:73;;22179:93;22268:3;22179:93;:::i;:::-;22297:2;22292:3;22288:12;22281:19;;21941:365;;;:::o;22312:419::-;22478:4;22516:2;22505:9;22501:18;22493:26;;22565:9;22559:4;22555:20;22551:1;22540:9;22536:17;22529:47;22593:131;22719:4;22593:131;:::i;:::-;22585:139;;22312:419;;;:::o;22737:162::-;22877:14;22873:1;22865:6;22861:14;22854:38;22737:162;:::o;22905:366::-;23047:3;23068:67;23132:2;23127:3;23068:67;:::i;:::-;23061:74;;23144:93;23233:3;23144:93;:::i;:::-;23262:2;23257:3;23253:12;23246:19;;22905:366;;;:::o;23277:419::-;23443:4;23481:2;23470:9;23466:18;23458:26;;23530:9;23524:4;23520:20;23516:1;23505:9;23501:17;23494:47;23558:131;23684:4;23558:131;:::i;:::-;23550:139;;23277:419;;;:::o;23702:148::-;23804:11;23841:3;23826:18;;23702:148;;;;:::o;23856:161::-;23996:9;23992:1;23984:6;23980:14;23973:33;23856:161;:::o;24027:416::-;24187:3;24212:84;24294:1;24289:3;24212:84;:::i;:::-;24205:91;;24309:93;24398:3;24309:93;:::i;:::-;24431:1;24426:3;24422:11;24415:18;;24027:416;;;:::o;24453:410::-;24559:3;24591:39;24624:5;24591:39;:::i;:::-;24650:89;24732:6;24727:3;24650:89;:::i;:::-;24643:96;;24752:65;24810:6;24805:3;24798:4;24791:5;24787:16;24752:65;:::i;:::-;24846:6;24841:3;24837:16;24830:23;;24563:300;24453:410;;;;:::o;24873:159::-;25017:3;25013:1;25005:6;25001:14;24994:27;24873:159;:::o;25042:416::-;25202:3;25227:84;25309:1;25304:3;25227:84;:::i;:::-;25220:91;;25324:93;25413:3;25324:93;:::i;:::-;25446:1;25441:3;25437:11;25430:18;;25042:416;;;:::o;25468:163::-;25612:7;25608:1;25600:6;25596:14;25589:31;25468:163;:::o;25641:416::-;25801:3;25826:84;25908:1;25903:3;25826:84;:::i;:::-;25819:91;;25923:93;26012:3;25923:93;:::i;:::-;26045:1;26040:3;26036:11;26029:18;;25641:416;;;:::o;26067:1261::-;26550:3;26576:148;26720:3;26576:148;:::i;:::-;26569:155;;26745:95;26836:3;26827:6;26745:95;:::i;:::-;26738:102;;26861:148;27005:3;26861:148;:::i;:::-;26854:155;;27030:95;27121:3;27112:6;27030:95;:::i;:::-;27023:102;;27146:148;27290:3;27146:148;:::i;:::-;27139:155;;27315:3;27308:10;;26067:1261;;;;;:::o;27338:171::-;27482:15;27478:1;27470:6;27466:14;27459:39;27338:171;:::o;27519:382::-;27661:3;27686:67;27750:2;27745:3;27686:67;:::i;:::-;27679:74;;27766:93;27855:3;27766:93;:::i;:::-;27888:2;27883:3;27879:12;27872:19;;27519:382;;;:::o;27911:435::-;28077:4;28119:2;28108:9;28104:18;28096:26;;28172:9;28166:4;28162:20;28158:1;28147:9;28143:17;28136:47;28204:131;28330:4;28204:131;:::i;:::-;28196:139;;27911:435;;;:::o;28356:196::-;28408:77;28405:1;28398:88;28509:4;28506:1;28499:15;28537:4;28534:1;28527:15
Swarm Source
ipfs://8564e630f1a3edadc595b030096d8df2951c01c53096b368354f7ec6d03df503
[ 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.