ERC-721
Overview
Max Total Supply
391 AYW
Holders
116
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 AYWLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AYW
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-08 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * 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(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * 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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // 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. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @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 override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @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, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev 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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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 { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/AYW.sol pragma solidity ^0.8.0; contract AYW is ERC721A, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; uint256 public maxSupply = 4096; uint256 public maxMintAmount = 5; uint256 public maxOwnerMintAmount = 100; uint256 public initialOwnerMint = 50; bool public paused = false; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721A(_name, _symbol) { setBaseURI(_initBaseURI); mint(msg.sender, initialOwnerMint); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function mint(address _to, uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require(!paused, "Mint is paused"); require(_mintAmount > 0, "Cannot mint nothing"); require(supply + _mintAmount <= maxSupply, "Already sold out"); if (msg.sender != owner()) { require(_numberMinted(_to) + _mintAmount <= maxMintAmount, "Exceed allocation"); } else { require(_numberMinted(_to) + _mintAmount <= maxOwnerMintAmount, "Exceed allocation"); } uint256 newTotal = supply + _mintAmount; uint256 price; if (newTotal <= 512) { price = 19000000000000000; //0.019 } else if (newTotal > 512 && newTotal <= 1024) { price = 29000000000000000; //0.029 } else if (newTotal > 1024 && newTotal <= 2048) { price = 39000000000000000; //0.039 } else if (newTotal > 2048 && newTotal <= 3072) { price = 49000000000000000; //0.049 } else if (newTotal > 3072 && newTotal <= 4096) { price = 59000000000000000; //0.059 } if (msg.sender != owner()) { require(msg.value >= price * _mintAmount, "Insufficient ETH"); } _safeMint(_to, _mintAmount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialOwnerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxOwnerMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005192919062000d5f565b50611000600b556005600c556064600d556032600e556000600f60006101000a81548160ff0219169083151502179055503480156200008f57600080fd5b50604051620050a1380380620050a18339818101604052810190620000b5919062000ed6565b82828160029080519060200190620000cf92919062000d5f565b508060039080519060200190620000e892919062000d5f565b50620000f96200014f60201b60201c565b600081905550505062000121620001156200015460201b60201c565b6200015c60201b60201c565b62000132816200022260201b60201c565b6200014633600e54620002cd60201b60201c565b50505062001614565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002326200015460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002586200066860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a89062001196565b60405180910390fd5b8060099080519060200190620002c992919062000d5f565b5050565b6000620002df6200069260201b60201c565b9050600f60009054906101000a900460ff161562000334576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032b90620011da565b60405180910390fd5b600082116200037a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003719062001174565b60405180910390fd5b600b5482826200038b919062001288565b1115620003cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c69062001152565b60405180910390fd5b620003df6200066860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200047d57600c54826200042785620006b160201b60201c565b62000433919062001288565b111562000477576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200046e90620011b8565b60405180910390fd5b620004e3565b600d54826200049285620006b160201b60201c565b6200049e919062001288565b1115620004e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004d990620011b8565b60405180910390fd5b5b60008282620004f3919062001288565b9050600061020082116200051157664380663abb80009050620005b8565b610200821180156200052557506104008211155b156200053b5766670758aa7c80009050620005b7565b610400821180156200054f57506108008211155b156200056557668a8e4b1a3d80009050620005b6565b61080082118015620005795750610c008211155b156200058f5766ae153d89fe80009050620005b5565b610c0082118015620005a357506110008211155b15620005b45766d19c2ff9bf800090505b5b5b5b5b620005c86200066860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200064f578381620006099190620012e5565b3410156200064e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006459062001130565b60405180910390fd5b5b6200066185856200078260201b60201c565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000620006a46200014f60201b60201c565b6001546000540303905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200071a576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b620007a4828260405180602001604052806000815250620007a860201b60201c565b5050565b620007bd8383836001620007c260201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141562000830576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156200086c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b62000881600086838762000bbe60201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801562000a59575062000a588773ffffffffffffffffffffffffffffffffffffffff1662000bc460201b6200186d1760201c565b5b1562000b2c575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a462000ad7600088848060010195508862000be760201b60201c565b62000b0e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141562000a6057826000541462000b2657600080fd5b62000b99565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141562000b2d575b81600081905550505062000bb7600086838762000d5960201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000c156200015460201b60201c565b8786866040518563ffffffff1660e01b815260040162000c399493929190620010dc565b602060405180830381600087803b15801562000c5457600080fd5b505af192505050801562000c8857506040513d601f19601f8201168201806040525081019062000c85919062000ea4565b60015b62000d06573d806000811462000cbb576040519150601f19603f3d011682016040523d82523d6000602084013e62000cc0565b606091505b5060008151141562000cfe576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b82805462000d6d90620013e6565b90600052602060002090601f01602090048101928262000d91576000855562000ddd565b82601f1062000dac57805160ff191683800117855562000ddd565b8280016001018555821562000ddd579182015b8281111562000ddc57825182559160200191906001019062000dbf565b5b50905062000dec919062000df0565b5090565b5b8082111562000e0b57600081600090555060010162000df1565b5090565b600062000e2662000e208462001225565b620011fc565b90508281526020810184848401111562000e455762000e44620014e4565b5b62000e52848285620013b0565b509392505050565b60008151905062000e6b81620015fa565b92915050565b600082601f83011262000e895762000e88620014df565b5b815162000e9b84826020860162000e0f565b91505092915050565b60006020828403121562000ebd5762000ebc620014ee565b5b600062000ecd8482850162000e5a565b91505092915050565b60008060006060848603121562000ef25762000ef1620014ee565b5b600084015167ffffffffffffffff81111562000f135762000f12620014e9565b5b62000f218682870162000e71565b935050602084015167ffffffffffffffff81111562000f455762000f44620014e9565b5b62000f538682870162000e71565b925050604084015167ffffffffffffffff81111562000f775762000f76620014e9565b5b62000f858682870162000e71565b9150509250925092565b62000f9a8162001346565b82525050565b600062000fad826200125b565b62000fb9818562001266565b935062000fcb818560208601620013b0565b62000fd681620014f3565b840191505092915050565b600062000ff060108362001277565b915062000ffd8262001504565b602082019050919050565b60006200101760108362001277565b915062001024826200152d565b602082019050919050565b60006200103e60138362001277565b91506200104b8262001556565b602082019050919050565b60006200106560208362001277565b915062001072826200157f565b602082019050919050565b60006200108c60118362001277565b91506200109982620015a8565b602082019050919050565b6000620010b3600e8362001277565b9150620010c082620015d1565b602082019050919050565b620010d681620013a6565b82525050565b6000608082019050620010f3600083018762000f8f565b62001102602083018662000f8f565b620011116040830185620010cb565b818103606083015262001125818462000fa0565b905095945050505050565b600060208201905081810360008301526200114b8162000fe1565b9050919050565b600060208201905081810360008301526200116d8162001008565b9050919050565b600060208201905081810360008301526200118f816200102f565b9050919050565b60006020820190508181036000830152620011b18162001056565b9050919050565b60006020820190508181036000830152620011d3816200107d565b9050919050565b60006020820190508181036000830152620011f581620010a4565b9050919050565b6000620012086200121b565b90506200121682826200141c565b919050565b6000604051905090565b600067ffffffffffffffff821115620012435762001242620014b0565b5b6200124e82620014f3565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200129582620013a6565b9150620012a283620013a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620012da57620012d962001452565b5b828201905092915050565b6000620012f282620013a6565b9150620012ff83620013a6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200133b576200133a62001452565b5b828202905092915050565b6000620013538262001386565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620013d0578082015181840152602081019050620013b3565b83811115620013e0576000848401525b50505050565b60006002820490506001821680620013ff57607f821691505b6020821081141562001416576200141562001481565b5b50919050565b6200142782620014f3565b810181811067ffffffffffffffff82111715620014495762001448620014b0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e73756666696369656e742045544800000000000000000000000000000000600082015250565b7f416c726561647920736f6c64206f757400000000000000000000000000000000600082015250565b7f43616e6e6f74206d696e74206e6f7468696e6700000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45786365656420616c6c6f636174696f6e000000000000000000000000000000600082015250565b7f4d696e7420697320706175736564000000000000000000000000000000000000600082015250565b62001605816200135a565b81146200161157600080fd5b50565b613a7d80620016246000396000f3fe6080604052600436106101d85760003560e01c80636c0360eb11610102578063b88d4fde11610095578063da3ef23f11610064578063da3ef23f1461066c578063dc33e68114610695578063e985e9c5146106d2578063f2fde38b1461070f576101d8565b8063b88d4fde146105b0578063c6682862146105d9578063c87b56dd14610604578063d5abeb0114610641576101d8565b80637f00c7a6116100d15780637f00c7a6146105085780638da5cb5b1461053157806395d89b411461055c578063a22cb46514610587576101d8565b80636c0360eb1461045e57806370a0823114610489578063715018a6146104c657806373c3f334146104dd576101d8565b8063239c70ae1161017a57806342842e0e1161014957806342842e0e146103a457806355f804b3146103cd5780635c975abb146103f65780636352211e14610421576101d8565b8063239c70ae1461032a57806323b872dd146103555780633ccfd60b1461037e57806340c10f1914610388576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab57806314666083146102d457806318160ddd146102ff576101d8565b806301ffc9a7146101dd57806302329a291461021a57806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612e99565b610738565b6040516102119190613268565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190612e6c565b61081a565b005b34801561024f57600080fd5b506102586108b3565b6040516102659190613283565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612f3c565b610945565b6040516102a29190613201565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd9190612e2c565b6109c1565b005b3480156102e057600080fd5b506102e9610acc565b6040516102f691906133a5565b60405180910390f35b34801561030b57600080fd5b50610314610ad2565b60405161032191906133a5565b60405180910390f35b34801561033657600080fd5b5061033f610ae9565b60405161034c91906133a5565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190612d16565b610aef565b005b610386610aff565b005b6103a2600480360381019061039d9190612e2c565b610bbb565b005b3480156103b057600080fd5b506103cb60048036038101906103c69190612d16565b610efa565b005b3480156103d957600080fd5b506103f460048036038101906103ef9190612ef3565b610f1a565b005b34801561040257600080fd5b5061040b610fb0565b6040516104189190613268565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190612f3c565b610fc3565b6040516104559190613201565b60405180910390f35b34801561046a57600080fd5b50610473610fd9565b6040516104809190613283565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190612ca9565b611067565b6040516104bd91906133a5565b60405180910390f35b3480156104d257600080fd5b506104db611137565b005b3480156104e957600080fd5b506104f26111bf565b6040516104ff91906133a5565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190612f3c565b6111c5565b005b34801561053d57600080fd5b5061054661124b565b6040516105539190613201565b60405180910390f35b34801561056857600080fd5b50610571611275565b60405161057e9190613283565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190612dec565b611307565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190612d69565b61147f565b005b3480156105e557600080fd5b506105ee6114fb565b6040516105fb9190613283565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190612f3c565b611589565b6040516106389190613283565b60405180910390f35b34801561064d57600080fd5b50610656611633565b60405161066391906133a5565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190612ef3565b611639565b005b3480156106a157600080fd5b506106bc60048036038101906106b79190612ca9565b6116cf565b6040516106c991906133a5565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f49190612cd6565b6116e1565b6040516107069190613268565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190612ca9565b611775565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610813575061081282611890565b5b9050919050565b6108226118fa565b73ffffffffffffffffffffffffffffffffffffffff1661084061124b565b73ffffffffffffffffffffffffffffffffffffffff1614610896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088d90613325565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6060600280546108c29061366a565b80601f01602080910402602001604051908101604052809291908181526020018280546108ee9061366a565b801561093b5780601f106109105761010080835404028352916020019161093b565b820191906000526020600020905b81548152906001019060200180831161091e57829003601f168201915b5050505050905090565b600061095082611902565b610986576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109cc82610fc3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a34576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a536118fa565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a855750610a8381610a7e6118fa565b6116e1565b155b15610abc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ac7838383611950565b505050565b600e5481565b6000610adc611a02565b6001546000540303905090565b600c5481565b610afa838383611a07565b505050565b610b076118fa565b73ffffffffffffffffffffffffffffffffffffffff16610b2561124b565b73ffffffffffffffffffffffffffffffffffffffff1614610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7290613325565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610bb957600080fd5b565b6000610bc5610ad2565b9050600f60009054906101000a900460ff1615610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e90613385565b60405180910390fd5b60008211610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190613305565b60405180910390fd5b600b548282610c69919061349f565b1115610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca1906132c5565b60405180910390fd5b610cb261124b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d4157600c5482610cf185611ef8565b610cfb919061349f565b1115610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390613365565b60405180910390fd5b610d9a565b600d5482610d4e85611ef8565b610d58919061349f565b1115610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9090613365565b60405180910390fd5b5b60008282610da8919061349f565b905060006102008211610dc457664380663abb80009050610e60565b61020082118015610dd757506104008211155b15610deb5766670758aa7c80009050610e5f565b61040082118015610dfe57506108008211155b15610e1257668a8e4b1a3d80009050610e5e565b61080082118015610e255750610c008211155b15610e395766ae153d89fe80009050610e5d565b610c0082118015610e4c57506110008211155b15610e5c5766d19c2ff9bf800090505b5b5b5b5b610e6861124b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ee9578381610ea69190613526565b341015610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf906132a5565b60405180910390fd5b5b610ef38585611fc8565b5050505050565b610f158383836040518060200160405280600081525061147f565b505050565b610f226118fa565b73ffffffffffffffffffffffffffffffffffffffff16610f4061124b565b73ffffffffffffffffffffffffffffffffffffffff1614610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90613325565b60405180910390fd5b8060099080519060200190610fac929190612a7a565b5050565b600f60009054906101000a900460ff1681565b6000610fce82611fe6565b600001519050919050565b60098054610fe69061366a565b80601f01602080910402602001604051908101604052809291908181526020018280546110129061366a565b801561105f5780601f106110345761010080835404028352916020019161105f565b820191906000526020600020905b81548152906001019060200180831161104257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110cf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61113f6118fa565b73ffffffffffffffffffffffffffffffffffffffff1661115d61124b565b73ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90613325565b60405180910390fd5b6111bd6000612275565b565b600d5481565b6111cd6118fa565b73ffffffffffffffffffffffffffffffffffffffff166111eb61124b565b73ffffffffffffffffffffffffffffffffffffffff1614611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123890613325565b60405180910390fd5b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112849061366a565b80601f01602080910402602001604051908101604052809291908181526020018280546112b09061366a565b80156112fd5780601f106112d2576101008083540402835291602001916112fd565b820191906000526020600020905b8154815290600101906020018083116112e057829003601f168201915b5050505050905090565b61130f6118fa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611374576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113816118fa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661142e6118fa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114739190613268565b60405180910390a35050565b61148a848484611a07565b6114a98373ffffffffffffffffffffffffffffffffffffffff1661186d565b80156114be57506114bc8484848461233b565b155b156114f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a80546115089061366a565b80601f01602080910402602001604051908101604052809291908181526020018280546115349061366a565b80156115815780601f1061155657610100808354040283529160200191611581565b820191906000526020600020905b81548152906001019060200180831161156457829003601f168201915b505050505081565b606061159482611902565b6115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90613345565b60405180910390fd5b60006115dd61249b565b905060008151116115fd576040518060200160405280600081525061162b565b806116078461252d565b600a60405160200161161b939291906131d0565b6040516020818303038152906040525b915050919050565b600b5481565b6116416118fa565b73ffffffffffffffffffffffffffffffffffffffff1661165f61124b565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613325565b60405180910390fd5b80600a90805190602001906116cb929190612a7a565b5050565b60006116da82611ef8565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61177d6118fa565b73ffffffffffffffffffffffffffffffffffffffff1661179b61124b565b73ffffffffffffffffffffffffffffffffffffffff16146117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890613325565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611861576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611858906132e5565b60405180910390fd5b61186a81612275565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161190d611a02565b1115801561191c575060005482105b8015611949575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611a1282611fe6565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a396118fa565b73ffffffffffffffffffffffffffffffffffffffff161480611a6c5750611a6b8260000151611a666118fa565b6116e1565b5b80611ab15750611a7a6118fa565b73ffffffffffffffffffffffffffffffffffffffff16611a9984610945565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611aea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b53576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bba576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bc7858585600161268e565b611bd76000848460000151611950565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e8857600054811015611e875782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ef18585856001612694565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f60576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611fe282826040518060200160405280600081525061269a565b5050565b611fee612b00565b600082905080611ffc611a02565b1115801561200b575060005481105b1561223e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161223c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612120578092505050612270565b5b60011561223b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612236578092505050612270565b612121565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123616118fa565b8786866040518563ffffffff1660e01b8152600401612383949392919061321c565b602060405180830381600087803b15801561239d57600080fd5b505af19250505080156123ce57506040513d601f19601f820116820180604052508101906123cb9190612ec6565b60015b612448573d80600081146123fe576040519150601f19603f3d011682016040523d82523d6000602084013e612403565b606091505b50600081511415612440576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546124aa9061366a565b80601f01602080910402602001604051908101604052809291908181526020018280546124d69061366a565b80156125235780601f106124f857610100808354040283529160200191612523565b820191906000526020600020905b81548152906001019060200180831161250657829003601f168201915b5050505050905090565b60606000821415612575576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612689565b600082905060005b600082146125a7578080612590906136cd565b915050600a826125a091906134f5565b915061257d565b60008167ffffffffffffffff8111156125c3576125c2613803565b5b6040519080825280601f01601f1916602001820160405280156125f55781602001600182028036833780820191505090505b5090505b600085146126825760018261260e9190613580565b9150600a8561261d9190613716565b6030612629919061349f565b60f81b81838151811061263f5761263e6137d4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561267b91906134f5565b94506125f9565b8093505050505b919050565b50505050565b50505050565b6126a783838360016126ac565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612719576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612754576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612761600086838761268e565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561292b575061292a8773ffffffffffffffffffffffffffffffffffffffff1661186d565b5b156129f1575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129a0600088848060010195508861233b565b6129d6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129315782600054146129ec57600080fd5b612a5d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156129f2575b816000819055505050612a736000868387612694565b5050505050565b828054612a869061366a565b90600052602060002090601f016020900481019282612aa85760008555612aef565b82601f10612ac157805160ff1916838001178555612aef565b82800160010185558215612aef579182015b82811115612aee578251825591602001919060010190612ad3565b5b509050612afc9190612b43565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b5c576000816000905550600101612b44565b5090565b6000612b73612b6e846133e5565b6133c0565b905082815260208101848484011115612b8f57612b8e613837565b5b612b9a848285613628565b509392505050565b6000612bb5612bb084613416565b6133c0565b905082815260208101848484011115612bd157612bd0613837565b5b612bdc848285613628565b509392505050565b600081359050612bf3816139eb565b92915050565b600081359050612c0881613a02565b92915050565b600081359050612c1d81613a19565b92915050565b600081519050612c3281613a19565b92915050565b600082601f830112612c4d57612c4c613832565b5b8135612c5d848260208601612b60565b91505092915050565b600082601f830112612c7b57612c7a613832565b5b8135612c8b848260208601612ba2565b91505092915050565b600081359050612ca381613a30565b92915050565b600060208284031215612cbf57612cbe613841565b5b6000612ccd84828501612be4565b91505092915050565b60008060408385031215612ced57612cec613841565b5b6000612cfb85828601612be4565b9250506020612d0c85828601612be4565b9150509250929050565b600080600060608486031215612d2f57612d2e613841565b5b6000612d3d86828701612be4565b9350506020612d4e86828701612be4565b9250506040612d5f86828701612c94565b9150509250925092565b60008060008060808587031215612d8357612d82613841565b5b6000612d9187828801612be4565b9450506020612da287828801612be4565b9350506040612db387828801612c94565b925050606085013567ffffffffffffffff811115612dd457612dd361383c565b5b612de087828801612c38565b91505092959194509250565b60008060408385031215612e0357612e02613841565b5b6000612e1185828601612be4565b9250506020612e2285828601612bf9565b9150509250929050565b60008060408385031215612e4357612e42613841565b5b6000612e5185828601612be4565b9250506020612e6285828601612c94565b9150509250929050565b600060208284031215612e8257612e81613841565b5b6000612e9084828501612bf9565b91505092915050565b600060208284031215612eaf57612eae613841565b5b6000612ebd84828501612c0e565b91505092915050565b600060208284031215612edc57612edb613841565b5b6000612eea84828501612c23565b91505092915050565b600060208284031215612f0957612f08613841565b5b600082013567ffffffffffffffff811115612f2757612f2661383c565b5b612f3384828501612c66565b91505092915050565b600060208284031215612f5257612f51613841565b5b6000612f6084828501612c94565b91505092915050565b612f72816135b4565b82525050565b612f81816135c6565b82525050565b6000612f928261345c565b612f9c8185613472565b9350612fac818560208601613637565b612fb581613846565b840191505092915050565b6000612fcb82613467565b612fd58185613483565b9350612fe5818560208601613637565b612fee81613846565b840191505092915050565b600061300482613467565b61300e8185613494565b935061301e818560208601613637565b80840191505092915050565b600081546130378161366a565b6130418186613494565b9450600182166000811461305c576001811461306d576130a0565b60ff198316865281860193506130a0565b61307685613447565b60005b8381101561309857815481890152600182019150602081019050613079565b838801955050505b50505092915050565b60006130b6601083613483565b91506130c182613857565b602082019050919050565b60006130d9601083613483565b91506130e482613880565b602082019050919050565b60006130fc602683613483565b9150613107826138a9565b604082019050919050565b600061311f601383613483565b915061312a826138f8565b602082019050919050565b6000613142602083613483565b915061314d82613921565b602082019050919050565b6000613165602f83613483565b91506131708261394a565b604082019050919050565b6000613188601183613483565b915061319382613999565b602082019050919050565b60006131ab600e83613483565b91506131b6826139c2565b602082019050919050565b6131ca8161361e565b82525050565b60006131dc8286612ff9565b91506131e88285612ff9565b91506131f4828461302a565b9150819050949350505050565b60006020820190506132166000830184612f69565b92915050565b60006080820190506132316000830187612f69565b61323e6020830186612f69565b61324b60408301856131c1565b818103606083015261325d8184612f87565b905095945050505050565b600060208201905061327d6000830184612f78565b92915050565b6000602082019050818103600083015261329d8184612fc0565b905092915050565b600060208201905081810360008301526132be816130a9565b9050919050565b600060208201905081810360008301526132de816130cc565b9050919050565b600060208201905081810360008301526132fe816130ef565b9050919050565b6000602082019050818103600083015261331e81613112565b9050919050565b6000602082019050818103600083015261333e81613135565b9050919050565b6000602082019050818103600083015261335e81613158565b9050919050565b6000602082019050818103600083015261337e8161317b565b9050919050565b6000602082019050818103600083015261339e8161319e565b9050919050565b60006020820190506133ba60008301846131c1565b92915050565b60006133ca6133db565b90506133d6828261369c565b919050565b6000604051905090565b600067ffffffffffffffff821115613400576133ff613803565b5b61340982613846565b9050602081019050919050565b600067ffffffffffffffff82111561343157613430613803565b5b61343a82613846565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006134aa8261361e565b91506134b58361361e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134ea576134e9613747565b5b828201905092915050565b60006135008261361e565b915061350b8361361e565b92508261351b5761351a613776565b5b828204905092915050565b60006135318261361e565b915061353c8361361e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561357557613574613747565b5b828202905092915050565b600061358b8261361e565b91506135968361361e565b9250828210156135a9576135a8613747565b5b828203905092915050565b60006135bf826135fe565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561365557808201518184015260208101905061363a565b83811115613664576000848401525b50505050565b6000600282049050600182168061368257607f821691505b60208210811415613696576136956137a5565b5b50919050565b6136a582613846565b810181811067ffffffffffffffff821117156136c4576136c3613803565b5b80604052505050565b60006136d88261361e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561370b5761370a613747565b5b600182019050919050565b60006137218261361e565b915061372c8361361e565b92508261373c5761373b613776565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e73756666696369656e742045544800000000000000000000000000000000600082015250565b7f416c726561647920736f6c64206f757400000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206e6f7468696e6700000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656420616c6c6f636174696f6e000000000000000000000000000000600082015250565b7f4d696e7420697320706175736564000000000000000000000000000000000000600082015250565b6139f4816135b4565b81146139ff57600080fd5b50565b613a0b816135c6565b8114613a1657600080fd5b50565b613a22816135d2565b8114613a2d57600080fd5b50565b613a398161361e565b8114613a4457600080fd5b5056fea2646970667358221220944bd786af0c14f79577f6fcad768ae9a153539bc914587b5be37e226eb569bb64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c41737320596f7520576973680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000341595700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101d85760003560e01c80636c0360eb11610102578063b88d4fde11610095578063da3ef23f11610064578063da3ef23f1461066c578063dc33e68114610695578063e985e9c5146106d2578063f2fde38b1461070f576101d8565b8063b88d4fde146105b0578063c6682862146105d9578063c87b56dd14610604578063d5abeb0114610641576101d8565b80637f00c7a6116100d15780637f00c7a6146105085780638da5cb5b1461053157806395d89b411461055c578063a22cb46514610587576101d8565b80636c0360eb1461045e57806370a0823114610489578063715018a6146104c657806373c3f334146104dd576101d8565b8063239c70ae1161017a57806342842e0e1161014957806342842e0e146103a457806355f804b3146103cd5780635c975abb146103f65780636352211e14610421576101d8565b8063239c70ae1461032a57806323b872dd146103555780633ccfd60b1461037e57806340c10f1914610388576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab57806314666083146102d457806318160ddd146102ff576101d8565b806301ffc9a7146101dd57806302329a291461021a57806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612e99565b610738565b6040516102119190613268565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190612e6c565b61081a565b005b34801561024f57600080fd5b506102586108b3565b6040516102659190613283565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612f3c565b610945565b6040516102a29190613201565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd9190612e2c565b6109c1565b005b3480156102e057600080fd5b506102e9610acc565b6040516102f691906133a5565b60405180910390f35b34801561030b57600080fd5b50610314610ad2565b60405161032191906133a5565b60405180910390f35b34801561033657600080fd5b5061033f610ae9565b60405161034c91906133a5565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190612d16565b610aef565b005b610386610aff565b005b6103a2600480360381019061039d9190612e2c565b610bbb565b005b3480156103b057600080fd5b506103cb60048036038101906103c69190612d16565b610efa565b005b3480156103d957600080fd5b506103f460048036038101906103ef9190612ef3565b610f1a565b005b34801561040257600080fd5b5061040b610fb0565b6040516104189190613268565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190612f3c565b610fc3565b6040516104559190613201565b60405180910390f35b34801561046a57600080fd5b50610473610fd9565b6040516104809190613283565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190612ca9565b611067565b6040516104bd91906133a5565b60405180910390f35b3480156104d257600080fd5b506104db611137565b005b3480156104e957600080fd5b506104f26111bf565b6040516104ff91906133a5565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190612f3c565b6111c5565b005b34801561053d57600080fd5b5061054661124b565b6040516105539190613201565b60405180910390f35b34801561056857600080fd5b50610571611275565b60405161057e9190613283565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190612dec565b611307565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190612d69565b61147f565b005b3480156105e557600080fd5b506105ee6114fb565b6040516105fb9190613283565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190612f3c565b611589565b6040516106389190613283565b60405180910390f35b34801561064d57600080fd5b50610656611633565b60405161066391906133a5565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190612ef3565b611639565b005b3480156106a157600080fd5b506106bc60048036038101906106b79190612ca9565b6116cf565b6040516106c991906133a5565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f49190612cd6565b6116e1565b6040516107069190613268565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190612ca9565b611775565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610813575061081282611890565b5b9050919050565b6108226118fa565b73ffffffffffffffffffffffffffffffffffffffff1661084061124b565b73ffffffffffffffffffffffffffffffffffffffff1614610896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088d90613325565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6060600280546108c29061366a565b80601f01602080910402602001604051908101604052809291908181526020018280546108ee9061366a565b801561093b5780601f106109105761010080835404028352916020019161093b565b820191906000526020600020905b81548152906001019060200180831161091e57829003601f168201915b5050505050905090565b600061095082611902565b610986576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109cc82610fc3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a34576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a536118fa565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a855750610a8381610a7e6118fa565b6116e1565b155b15610abc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ac7838383611950565b505050565b600e5481565b6000610adc611a02565b6001546000540303905090565b600c5481565b610afa838383611a07565b505050565b610b076118fa565b73ffffffffffffffffffffffffffffffffffffffff16610b2561124b565b73ffffffffffffffffffffffffffffffffffffffff1614610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7290613325565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610bb957600080fd5b565b6000610bc5610ad2565b9050600f60009054906101000a900460ff1615610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e90613385565b60405180910390fd5b60008211610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5190613305565b60405180910390fd5b600b548282610c69919061349f565b1115610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca1906132c5565b60405180910390fd5b610cb261124b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d4157600c5482610cf185611ef8565b610cfb919061349f565b1115610d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3390613365565b60405180910390fd5b610d9a565b600d5482610d4e85611ef8565b610d58919061349f565b1115610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9090613365565b60405180910390fd5b5b60008282610da8919061349f565b905060006102008211610dc457664380663abb80009050610e60565b61020082118015610dd757506104008211155b15610deb5766670758aa7c80009050610e5f565b61040082118015610dfe57506108008211155b15610e1257668a8e4b1a3d80009050610e5e565b61080082118015610e255750610c008211155b15610e395766ae153d89fe80009050610e5d565b610c0082118015610e4c57506110008211155b15610e5c5766d19c2ff9bf800090505b5b5b5b5b610e6861124b565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ee9578381610ea69190613526565b341015610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf906132a5565b60405180910390fd5b5b610ef38585611fc8565b5050505050565b610f158383836040518060200160405280600081525061147f565b505050565b610f226118fa565b73ffffffffffffffffffffffffffffffffffffffff16610f4061124b565b73ffffffffffffffffffffffffffffffffffffffff1614610f96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8d90613325565b60405180910390fd5b8060099080519060200190610fac929190612a7a565b5050565b600f60009054906101000a900460ff1681565b6000610fce82611fe6565b600001519050919050565b60098054610fe69061366a565b80601f01602080910402602001604051908101604052809291908181526020018280546110129061366a565b801561105f5780601f106110345761010080835404028352916020019161105f565b820191906000526020600020905b81548152906001019060200180831161104257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110cf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61113f6118fa565b73ffffffffffffffffffffffffffffffffffffffff1661115d61124b565b73ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90613325565b60405180910390fd5b6111bd6000612275565b565b600d5481565b6111cd6118fa565b73ffffffffffffffffffffffffffffffffffffffff166111eb61124b565b73ffffffffffffffffffffffffffffffffffffffff1614611241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123890613325565b60405180910390fd5b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112849061366a565b80601f01602080910402602001604051908101604052809291908181526020018280546112b09061366a565b80156112fd5780601f106112d2576101008083540402835291602001916112fd565b820191906000526020600020905b8154815290600101906020018083116112e057829003601f168201915b5050505050905090565b61130f6118fa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611374576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113816118fa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661142e6118fa565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114739190613268565b60405180910390a35050565b61148a848484611a07565b6114a98373ffffffffffffffffffffffffffffffffffffffff1661186d565b80156114be57506114bc8484848461233b565b155b156114f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a80546115089061366a565b80601f01602080910402602001604051908101604052809291908181526020018280546115349061366a565b80156115815780601f1061155657610100808354040283529160200191611581565b820191906000526020600020905b81548152906001019060200180831161156457829003601f168201915b505050505081565b606061159482611902565b6115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90613345565b60405180910390fd5b60006115dd61249b565b905060008151116115fd576040518060200160405280600081525061162b565b806116078461252d565b600a60405160200161161b939291906131d0565b6040516020818303038152906040525b915050919050565b600b5481565b6116416118fa565b73ffffffffffffffffffffffffffffffffffffffff1661165f61124b565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90613325565b60405180910390fd5b80600a90805190602001906116cb929190612a7a565b5050565b60006116da82611ef8565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61177d6118fa565b73ffffffffffffffffffffffffffffffffffffffff1661179b61124b565b73ffffffffffffffffffffffffffffffffffffffff16146117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890613325565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611861576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611858906132e5565b60405180910390fd5b61186a81612275565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161190d611a02565b1115801561191c575060005482105b8015611949575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611a1282611fe6565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a396118fa565b73ffffffffffffffffffffffffffffffffffffffff161480611a6c5750611a6b8260000151611a666118fa565b6116e1565b5b80611ab15750611a7a6118fa565b73ffffffffffffffffffffffffffffffffffffffff16611a9984610945565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611aea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b53576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611bba576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bc7858585600161268e565b611bd76000848460000151611950565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e8857600054811015611e875782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ef18585856001612694565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f60576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611fe282826040518060200160405280600081525061269a565b5050565b611fee612b00565b600082905080611ffc611a02565b1115801561200b575060005481105b1561223e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161223c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612120578092505050612270565b5b60011561223b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612236578092505050612270565b612121565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123616118fa565b8786866040518563ffffffff1660e01b8152600401612383949392919061321c565b602060405180830381600087803b15801561239d57600080fd5b505af19250505080156123ce57506040513d601f19601f820116820180604052508101906123cb9190612ec6565b60015b612448573d80600081146123fe576040519150601f19603f3d011682016040523d82523d6000602084013e612403565b606091505b50600081511415612440576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546124aa9061366a565b80601f01602080910402602001604051908101604052809291908181526020018280546124d69061366a565b80156125235780601f106124f857610100808354040283529160200191612523565b820191906000526020600020905b81548152906001019060200180831161250657829003601f168201915b5050505050905090565b60606000821415612575576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612689565b600082905060005b600082146125a7578080612590906136cd565b915050600a826125a091906134f5565b915061257d565b60008167ffffffffffffffff8111156125c3576125c2613803565b5b6040519080825280601f01601f1916602001820160405280156125f55781602001600182028036833780820191505090505b5090505b600085146126825760018261260e9190613580565b9150600a8561261d9190613716565b6030612629919061349f565b60f81b81838151811061263f5761263e6137d4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561267b91906134f5565b94506125f9565b8093505050505b919050565b50505050565b50505050565b6126a783838360016126ac565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612719576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612754576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612761600086838761268e565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561292b575061292a8773ffffffffffffffffffffffffffffffffffffffff1661186d565b5b156129f1575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129a0600088848060010195508861233b565b6129d6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129315782600054146129ec57600080fd5b612a5d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156129f2575b816000819055505050612a736000868387612694565b5050505050565b828054612a869061366a565b90600052602060002090601f016020900481019282612aa85760008555612aef565b82601f10612ac157805160ff1916838001178555612aef565b82800160010185558215612aef579182015b82811115612aee578251825591602001919060010190612ad3565b5b509050612afc9190612b43565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b5c576000816000905550600101612b44565b5090565b6000612b73612b6e846133e5565b6133c0565b905082815260208101848484011115612b8f57612b8e613837565b5b612b9a848285613628565b509392505050565b6000612bb5612bb084613416565b6133c0565b905082815260208101848484011115612bd157612bd0613837565b5b612bdc848285613628565b509392505050565b600081359050612bf3816139eb565b92915050565b600081359050612c0881613a02565b92915050565b600081359050612c1d81613a19565b92915050565b600081519050612c3281613a19565b92915050565b600082601f830112612c4d57612c4c613832565b5b8135612c5d848260208601612b60565b91505092915050565b600082601f830112612c7b57612c7a613832565b5b8135612c8b848260208601612ba2565b91505092915050565b600081359050612ca381613a30565b92915050565b600060208284031215612cbf57612cbe613841565b5b6000612ccd84828501612be4565b91505092915050565b60008060408385031215612ced57612cec613841565b5b6000612cfb85828601612be4565b9250506020612d0c85828601612be4565b9150509250929050565b600080600060608486031215612d2f57612d2e613841565b5b6000612d3d86828701612be4565b9350506020612d4e86828701612be4565b9250506040612d5f86828701612c94565b9150509250925092565b60008060008060808587031215612d8357612d82613841565b5b6000612d9187828801612be4565b9450506020612da287828801612be4565b9350506040612db387828801612c94565b925050606085013567ffffffffffffffff811115612dd457612dd361383c565b5b612de087828801612c38565b91505092959194509250565b60008060408385031215612e0357612e02613841565b5b6000612e1185828601612be4565b9250506020612e2285828601612bf9565b9150509250929050565b60008060408385031215612e4357612e42613841565b5b6000612e5185828601612be4565b9250506020612e6285828601612c94565b9150509250929050565b600060208284031215612e8257612e81613841565b5b6000612e9084828501612bf9565b91505092915050565b600060208284031215612eaf57612eae613841565b5b6000612ebd84828501612c0e565b91505092915050565b600060208284031215612edc57612edb613841565b5b6000612eea84828501612c23565b91505092915050565b600060208284031215612f0957612f08613841565b5b600082013567ffffffffffffffff811115612f2757612f2661383c565b5b612f3384828501612c66565b91505092915050565b600060208284031215612f5257612f51613841565b5b6000612f6084828501612c94565b91505092915050565b612f72816135b4565b82525050565b612f81816135c6565b82525050565b6000612f928261345c565b612f9c8185613472565b9350612fac818560208601613637565b612fb581613846565b840191505092915050565b6000612fcb82613467565b612fd58185613483565b9350612fe5818560208601613637565b612fee81613846565b840191505092915050565b600061300482613467565b61300e8185613494565b935061301e818560208601613637565b80840191505092915050565b600081546130378161366a565b6130418186613494565b9450600182166000811461305c576001811461306d576130a0565b60ff198316865281860193506130a0565b61307685613447565b60005b8381101561309857815481890152600182019150602081019050613079565b838801955050505b50505092915050565b60006130b6601083613483565b91506130c182613857565b602082019050919050565b60006130d9601083613483565b91506130e482613880565b602082019050919050565b60006130fc602683613483565b9150613107826138a9565b604082019050919050565b600061311f601383613483565b915061312a826138f8565b602082019050919050565b6000613142602083613483565b915061314d82613921565b602082019050919050565b6000613165602f83613483565b91506131708261394a565b604082019050919050565b6000613188601183613483565b915061319382613999565b602082019050919050565b60006131ab600e83613483565b91506131b6826139c2565b602082019050919050565b6131ca8161361e565b82525050565b60006131dc8286612ff9565b91506131e88285612ff9565b91506131f4828461302a565b9150819050949350505050565b60006020820190506132166000830184612f69565b92915050565b60006080820190506132316000830187612f69565b61323e6020830186612f69565b61324b60408301856131c1565b818103606083015261325d8184612f87565b905095945050505050565b600060208201905061327d6000830184612f78565b92915050565b6000602082019050818103600083015261329d8184612fc0565b905092915050565b600060208201905081810360008301526132be816130a9565b9050919050565b600060208201905081810360008301526132de816130cc565b9050919050565b600060208201905081810360008301526132fe816130ef565b9050919050565b6000602082019050818103600083015261331e81613112565b9050919050565b6000602082019050818103600083015261333e81613135565b9050919050565b6000602082019050818103600083015261335e81613158565b9050919050565b6000602082019050818103600083015261337e8161317b565b9050919050565b6000602082019050818103600083015261339e8161319e565b9050919050565b60006020820190506133ba60008301846131c1565b92915050565b60006133ca6133db565b90506133d6828261369c565b919050565b6000604051905090565b600067ffffffffffffffff821115613400576133ff613803565b5b61340982613846565b9050602081019050919050565b600067ffffffffffffffff82111561343157613430613803565b5b61343a82613846565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006134aa8261361e565b91506134b58361361e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134ea576134e9613747565b5b828201905092915050565b60006135008261361e565b915061350b8361361e565b92508261351b5761351a613776565b5b828204905092915050565b60006135318261361e565b915061353c8361361e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561357557613574613747565b5b828202905092915050565b600061358b8261361e565b91506135968361361e565b9250828210156135a9576135a8613747565b5b828203905092915050565b60006135bf826135fe565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561365557808201518184015260208101905061363a565b83811115613664576000848401525b50505050565b6000600282049050600182168061368257607f821691505b60208210811415613696576136956137a5565b5b50919050565b6136a582613846565b810181811067ffffffffffffffff821117156136c4576136c3613803565b5b80604052505050565b60006136d88261361e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561370b5761370a613747565b5b600182019050919050565b60006137218261361e565b915061372c8361361e565b92508261373c5761373b613776565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f496e73756666696369656e742045544800000000000000000000000000000000600082015250565b7f416c726561647920736f6c64206f757400000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206e6f7468696e6700000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f45786365656420616c6c6f636174696f6e000000000000000000000000000000600082015250565b7f4d696e7420697320706175736564000000000000000000000000000000000000600082015250565b6139f4816135b4565b81146139ff57600080fd5b50565b613a0b816135c6565b8114613a1657600080fd5b50565b613a22816135d2565b8114613a2d57600080fd5b50565b613a398161361e565b8114613a4457600080fd5b5056fea2646970667358221220944bd786af0c14f79577f6fcad768ae9a153539bc914587b5be37e226eb569bb64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c41737320596f7520576973680000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000341595700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Ass You Wish
Arg [1] : _symbol (string): AYW
Arg [2] : _initBaseURI (string):
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 41737320596f7520576973680000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4159570000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
45800:2937:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28272:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48541:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31657:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33160:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32723:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46055:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27521:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45974:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34017:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48620:114;;;:::i;:::-;;46562:1190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34258:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48309:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46096:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31466:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45870:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28641:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;46011:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48187:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31826:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33436:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34514:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45896:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47758:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45938:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48413:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46449:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33786:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28272:305;28374:4;28426:25;28411:40;;;:11;:40;;;;:105;;;;28483:33;28468:48;;;:11;:48;;;;28411:105;:158;;;;28533:36;28557:11;28533:23;:36::i;:::-;28411:158;28391:178;;28272:305;;;:::o;48541:73::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48602:6:::1;48593;;:15;;;;;;;;;;;;;;;;;;48541:73:::0;:::o;31657:100::-;31711:13;31744:5;31737:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31657:100;:::o;33160:204::-;33228:7;33253:16;33261:7;33253;:16::i;:::-;33248:64;;33278:34;;;;;;;;;;;;;;33248:64;33332:15;:24;33348:7;33332:24;;;;;;;;;;;;;;;;;;;;;33325:31;;33160:204;;;:::o;32723:371::-;32796:13;32812:24;32828:7;32812:15;:24::i;:::-;32796:40;;32857:5;32851:11;;:2;:11;;;32847:48;;;32871:24;;;;;;;;;;;;;;32847:48;32928:5;32912:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32938:37;32955:5;32962:12;:10;:12::i;:::-;32938:16;:37::i;:::-;32937:38;32912:63;32908:138;;;32999:35;;;;;;;;;;;;;;32908:138;33058:28;33067:2;33071:7;33080:5;33058:8;:28::i;:::-;32785:309;32723:371;;:::o;46055:36::-;;;;:::o;27521:303::-;27565:7;27790:15;:13;:15::i;:::-;27775:12;;27759:13;;:28;:46;27752:53;;27521:303;:::o;45974:32::-;;;;:::o;34017:170::-;34151:28;34161:4;34167:2;34171:7;34151:9;:28::i;:::-;34017:170;;;:::o;48620:114::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48688:10:::1;48680:24;;:47;48705:21;48680:47;;;;;;;;;;;;;;;;;;;;;;;48672:56;;;::::0;::::1;;48620:114::o:0;46562:1190::-;46632:14;46649:13;:11;:13::i;:::-;46632:30;;46678:6;;;;;;;;;;;46677:7;46669:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;46732:1;46718:11;:15;46710:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;46796:9;;46781:11;46772:6;:20;;;;:::i;:::-;:33;;46764:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;46853:7;:5;:7::i;:::-;46839:21;;:10;:21;;;46835:230;;46915:13;;46900:11;46879:18;46893:3;46879:13;:18::i;:::-;:32;;;;:::i;:::-;:49;;46871:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;46835:230;;;47017:18;;47002:11;46981:18;46995:3;46981:13;:18::i;:::-;:32;;;;:::i;:::-;:54;;46973:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;46835:230;47073:16;47102:11;47093:6;:20;;;;:::i;:::-;47073:40;;47122:13;47158:3;47146:8;:15;47142:458;;47180:17;47172:25;;47142:458;;;47234:3;47223:8;:14;:34;;;;;47253:4;47241:8;:16;;47223:34;47219:381;;;47276:17;47268:25;;47219:381;;;47330:4;47319:8;:15;:35;;;;;47350:4;47338:8;:16;;47319:35;47315:285;;;47373:17;47365:25;;47315:285;;;47427:4;47416:8;:15;:35;;;;;47447:4;47435:8;:16;;47416:35;47412:188;;;47470:17;47462:25;;47412:188;;;47524:4;47513:8;:15;:35;;;;;47544:4;47532:8;:16;;47513:35;47509:91;;;47567:17;47559:25;;47509:91;47412:188;47315:285;47219:381;47142:458;47624:7;:5;:7::i;:::-;47610:21;;:10;:21;;;47606:105;;47671:11;47663:5;:19;;;;:::i;:::-;47650:9;:32;;47642:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;47606:105;47719:27;47729:3;47734:11;47719:9;:27::i;:::-;46625:1127;;;46562:1190;;:::o;34258:185::-;34396:39;34413:4;34419:2;34423:7;34396:39;;;;;;;;;;;;:16;:39::i;:::-;34258:185;;;:::o;48309:98::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48390:11:::1;48380:7;:21;;;;;;;;;;;;:::i;:::-;;48309:98:::0;:::o;46096:26::-;;;;;;;;;;;;;:::o;31466:124::-;31530:7;31557:20;31569:7;31557:11;:20::i;:::-;:25;;;31550:32;;31466:124;;;:::o;45870:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28641:206::-;28705:7;28746:1;28729:19;;:5;:19;;;28725:60;;;28757:28;;;;;;;;;;;;;;28725:60;28811:12;:19;28824:5;28811:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28803:36;;28796:43;;28641:206;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;46011:39::-;;;;:::o;48187:116::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48280:17:::1;48264:13;:33;;;;48187:116:::0;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;31826:104::-;31882:13;31915:7;31908:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31826:104;:::o;33436:279::-;33539:12;:10;:12::i;:::-;33527:24;;:8;:24;;;33523:54;;;33560:17;;;;;;;;;;;;;;33523:54;33635:8;33590:18;:32;33609:12;:10;:12::i;:::-;33590:32;;;;;;;;;;;;;;;:42;33623:8;33590:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33688:8;33659:48;;33674:12;:10;:12::i;:::-;33659:48;;;33698:8;33659:48;;;;;;:::i;:::-;;;;;;;;33436:279;;:::o;34514:369::-;34681:28;34691:4;34697:2;34701:7;34681:9;:28::i;:::-;34724:15;:2;:13;;;:15::i;:::-;:76;;;;;34744:56;34775:4;34781:2;34785:7;34794:5;34744:30;:56::i;:::-;34743:57;34724:76;34720:156;;;34824:40;;;;;;;;;;;;;;34720:156;34514:369;;;;:::o;45896:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47758:423::-;47856:13;47897:16;47905:7;47897;:16::i;:::-;47881:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;47987:28;48018:10;:8;:10::i;:::-;47987:41;;48073:1;48048:14;48042:28;:32;:133;;;;;;;;;;;;;;;;;48110:14;48126:18;:7;:16;:18::i;:::-;48146:13;48093:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48042:133;48035:140;;;47758:423;;;:::o;45938:31::-;;;;:::o;48413:122::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48512:17:::1;48496:13;:33;;;;;;;;;;;;:::i;:::-;;48413:122:::0;:::o;46449:107::-;46507:7;46530:20;46544:5;46530:13;:20::i;:::-;46523:27;;46449:107;;;:::o;33786:164::-;33883:4;33907:18;:25;33926:5;33907:25;;;;;;;;;;;;;;;:35;33933:8;33907:35;;;;;;;;;;;;;;;;;;;;;;;;;33900:42;;33786:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;16863:157::-;16948:4;16987:25;16972:40;;;:11;:40;;;;16965:47;;16863:157;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;35138:187::-;35195:4;35238:7;35219:15;:13;:15::i;:::-;:26;;:53;;;;;35259:13;;35249:7;:23;35219:53;:98;;;;;35290:11;:20;35302:7;35290:20;;;;;;;;;;;:27;;;;;;;;;;;;35289:28;35219:98;35212:105;;35138:187;;;:::o;42749:196::-;42891:2;42864:15;:24;42880:7;42864:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42929:7;42925:2;42909:28;;42918:5;42909:28;;;;;;;;;;;;42749:196;;;:::o;27245:92::-;27301:7;27245:92;:::o;38251:2112::-;38366:35;38404:20;38416:7;38404:11;:20::i;:::-;38366:58;;38437:22;38479:13;:18;;;38463:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38514:50;38531:13;:18;;;38551:12;:10;:12::i;:::-;38514:16;:50::i;:::-;38463:101;:154;;;;38605:12;:10;:12::i;:::-;38581:36;;:20;38593:7;38581:11;:20::i;:::-;:36;;;38463:154;38437:181;;38636:17;38631:66;;38662:35;;;;;;;;;;;;;;38631:66;38734:4;38712:26;;:13;:18;;;:26;;;38708:67;;38747:28;;;;;;;;;;;;;;38708:67;38804:1;38790:16;;:2;:16;;;38786:52;;;38815:23;;;;;;;;;;;;;;38786:52;38851:43;38873:4;38879:2;38883:7;38892:1;38851:21;:43::i;:::-;38959:49;38976:1;38980:7;38989:13;:18;;;38959:8;:49::i;:::-;39334:1;39304:12;:18;39317:4;39304:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39378:1;39350:12;:16;39363:2;39350:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39424:2;39396:11;:20;39408:7;39396:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39486:15;39441:11;:20;39453:7;39441:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39754:19;39786:1;39776:7;:11;39754:33;;39847:1;39806:43;;:11;:24;39818:11;39806:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39802:445;;;40031:13;;40017:11;:27;40013:219;;;40101:13;:18;;;40069:11;:24;40081:11;40069:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40184:13;:28;;;40142:11;:24;40154:11;40142:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40013:219;39802:445;39279:979;40294:7;40290:2;40275:27;;40284:4;40275:27;;;;;;;;;;;;40313:42;40334:4;40340:2;40344:7;40353:1;40313:20;:42::i;:::-;38355:2008;;38251:2112;;;:::o;28929:207::-;28990:7;29031:1;29014:19;;:5;:19;;;29010:59;;;29042:27;;;;;;;;;;;;;;29010:59;29095:12;:19;29108:5;29095:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29087:41;;29080:48;;28929:207;;;:::o;35333:104::-;35402:27;35412:2;35416:8;35402:27;;;;;;;;;;;;:9;:27::i;:::-;35333:104;;:::o;30296:1108::-;30357:21;;:::i;:::-;30391:12;30406:7;30391:22;;30474:4;30455:15;:13;:15::i;:::-;:23;;:47;;;;;30489:13;;30482:4;:20;30455:47;30451:886;;;30523:31;30557:11;:17;30569:4;30557:17;;;;;;;;;;;30523:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30598:9;:16;;;30593:729;;30669:1;30643:28;;:9;:14;;;:28;;;30639:101;;30707:9;30700:16;;;;;;30639:101;31042:261;31049:4;31042:261;;;31082:6;;;;;;;;31127:11;:17;31139:4;31127:17;;;;;;;;;;;31115:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31201:1;31175:28;;:9;:14;;;:28;;;31171:109;;31243:9;31236:16;;;;;;31171:109;31042:261;;;30593:729;30504:833;30451:886;31365:31;;;;;;;;;;;;;;30296:1108;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;43437:667::-;43600:4;43637:2;43621:36;;;43658:12;:10;:12::i;:::-;43672:4;43678:7;43687:5;43621:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43617:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43872:1;43855:6;:13;:18;43851:235;;;43901:40;;;;;;;;;;;;;;43851:235;44044:6;44038:13;44029:6;44025:2;44021:15;44014:38;43617:480;43750:45;;;43740:55;;;:6;:55;;;;43733:62;;;43437:667;;;;;;:::o;46341:102::-;46401:13;46430:7;46423:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46341:102;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;44752:159::-;;;;;:::o;45570:158::-;;;;;:::o;35800:163::-;35923:32;35929:2;35933:8;35943:5;35950:4;35923:5;:32::i;:::-;35800:163;;;:::o;36222:1775::-;36361:20;36384:13;;36361:36;;36426:1;36412:16;;:2;:16;;;36408:48;;;36437:19;;;;;;;;;;;;;;36408:48;36483:1;36471:8;:13;36467:44;;;36493:18;;;;;;;;;;;;;;36467:44;36524:61;36554:1;36558:2;36562:12;36576:8;36524:21;:61::i;:::-;36897:8;36862:12;:16;36875:2;36862:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36961:8;36921:12;:16;36934:2;36921:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37020:2;36987:11;:25;36999:12;36987:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37087:15;37037:11;:25;37049:12;37037:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37120:20;37143:12;37120:35;;37170:11;37199:8;37184:12;:23;37170:37;;37228:4;:23;;;;;37236:15;:2;:13;;;:15::i;:::-;37228:23;37224:641;;;37272:314;37328:12;37324:2;37303:38;;37320:1;37303:38;;;;;;;;;;;;37369:69;37408:1;37412:2;37416:14;;;;;;37432:5;37369:30;:69::i;:::-;37364:174;;37474:40;;;;;;;;;;;;;;37364:174;37581:3;37565:12;:19;;37272:314;;37667:12;37650:13;;:29;37646:43;;37681:8;;;37646:43;37224:641;;;37730:120;37786:14;;;;;;37782:2;37761:40;;37778:1;37761:40;;;;;;;;;;;;37845:3;37829:12;:19;;37730:120;;37224:641;37895:12;37879:13;:28;;;;36837:1082;;37929:60;37958:1;37962:2;37966:12;37980:8;37929:20;:60::i;:::-;36350:1647;36222:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:::-;12094:3;12115:67;12179:2;12174:3;12115:67;:::i;:::-;12108:74;;12191:93;12280:3;12191:93;:::i;:::-;12309:2;12304:3;12300:12;12293:19;;11952:366;;;:::o;12324:::-;12466:3;12487:67;12551:2;12546:3;12487:67;:::i;:::-;12480:74;;12563:93;12652:3;12563:93;:::i;:::-;12681:2;12676:3;12672:12;12665:19;;12324:366;;;:::o;12696:118::-;12783:24;12801:5;12783:24;:::i;:::-;12778:3;12771:37;12696:118;;:::o;12820:589::-;13045:3;13067:95;13158:3;13149:6;13067:95;:::i;:::-;13060:102;;13179:95;13270:3;13261:6;13179:95;:::i;:::-;13172:102;;13291:92;13379:3;13370:6;13291:92;:::i;:::-;13284:99;;13400:3;13393:10;;12820:589;;;;;;:::o;13415:222::-;13508:4;13546:2;13535:9;13531:18;13523:26;;13559:71;13627:1;13616:9;13612:17;13603:6;13559:71;:::i;:::-;13415:222;;;;:::o;13643:640::-;13838:4;13876:3;13865:9;13861:19;13853:27;;13890:71;13958:1;13947:9;13943:17;13934:6;13890:71;:::i;:::-;13971:72;14039:2;14028:9;14024:18;14015:6;13971:72;:::i;:::-;14053;14121:2;14110:9;14106:18;14097:6;14053:72;:::i;:::-;14172:9;14166:4;14162:20;14157:2;14146:9;14142:18;14135:48;14200:76;14271:4;14262:6;14200:76;:::i;:::-;14192:84;;13643:640;;;;;;;:::o;14289:210::-;14376:4;14414:2;14403:9;14399:18;14391:26;;14427:65;14489:1;14478:9;14474:17;14465:6;14427:65;:::i;:::-;14289:210;;;;:::o;14505:313::-;14618:4;14656:2;14645:9;14641:18;14633:26;;14705:9;14699:4;14695:20;14691:1;14680:9;14676:17;14669:47;14733:78;14806:4;14797:6;14733:78;:::i;:::-;14725:86;;14505:313;;;;:::o;14824:419::-;14990:4;15028:2;15017:9;15013:18;15005:26;;15077:9;15071:4;15067:20;15063:1;15052:9;15048:17;15041:47;15105:131;15231:4;15105:131;:::i;:::-;15097:139;;14824:419;;;:::o;15249:::-;15415:4;15453:2;15442:9;15438:18;15430:26;;15502:9;15496:4;15492:20;15488:1;15477:9;15473:17;15466:47;15530:131;15656:4;15530:131;:::i;:::-;15522:139;;15249:419;;;:::o;15674:::-;15840:4;15878:2;15867:9;15863:18;15855:26;;15927:9;15921:4;15917:20;15913:1;15902:9;15898:17;15891:47;15955:131;16081:4;15955:131;:::i;:::-;15947:139;;15674:419;;;:::o;16099:::-;16265:4;16303:2;16292:9;16288:18;16280:26;;16352:9;16346:4;16342:20;16338:1;16327:9;16323:17;16316:47;16380:131;16506:4;16380:131;:::i;:::-;16372:139;;16099:419;;;:::o;16524:::-;16690:4;16728:2;16717:9;16713:18;16705:26;;16777:9;16771:4;16767:20;16763:1;16752:9;16748:17;16741:47;16805:131;16931:4;16805:131;:::i;:::-;16797:139;;16524:419;;;:::o;16949:::-;17115:4;17153:2;17142:9;17138:18;17130:26;;17202:9;17196:4;17192:20;17188:1;17177:9;17173:17;17166:47;17230:131;17356:4;17230:131;:::i;:::-;17222:139;;16949:419;;;:::o;17374:::-;17540:4;17578:2;17567:9;17563:18;17555:26;;17627:9;17621:4;17617:20;17613:1;17602:9;17598:17;17591:47;17655:131;17781:4;17655:131;:::i;:::-;17647:139;;17374:419;;;:::o;17799:::-;17965:4;18003:2;17992:9;17988:18;17980:26;;18052:9;18046:4;18042:20;18038:1;18027:9;18023:17;18016:47;18080:131;18206:4;18080:131;:::i;:::-;18072:139;;17799:419;;;:::o;18224:222::-;18317:4;18355:2;18344:9;18340:18;18332:26;;18368:71;18436:1;18425:9;18421:17;18412:6;18368:71;:::i;:::-;18224:222;;;;:::o;18452:129::-;18486:6;18513:20;;:::i;:::-;18503:30;;18542:33;18570:4;18562:6;18542:33;:::i;:::-;18452:129;;;:::o;18587:75::-;18620:6;18653:2;18647:9;18637:19;;18587:75;:::o;18668:307::-;18729:4;18819:18;18811:6;18808:30;18805:56;;;18841:18;;:::i;:::-;18805:56;18879:29;18901:6;18879:29;:::i;:::-;18871:37;;18963:4;18957;18953:15;18945:23;;18668:307;;;:::o;18981:308::-;19043:4;19133:18;19125:6;19122:30;19119:56;;;19155:18;;:::i;:::-;19119:56;19193:29;19215:6;19193:29;:::i;:::-;19185:37;;19277:4;19271;19267:15;19259:23;;18981:308;;;:::o;19295:141::-;19344:4;19367:3;19359:11;;19390:3;19387:1;19380:14;19424:4;19421:1;19411:18;19403:26;;19295:141;;;:::o;19442:98::-;19493:6;19527:5;19521:12;19511:22;;19442:98;;;:::o;19546:99::-;19598:6;19632:5;19626:12;19616:22;;19546:99;;;:::o;19651:168::-;19734:11;19768:6;19763:3;19756:19;19808:4;19803:3;19799:14;19784:29;;19651:168;;;;:::o;19825:169::-;19909:11;19943:6;19938:3;19931:19;19983:4;19978:3;19974:14;19959:29;;19825:169;;;;:::o;20000:148::-;20102:11;20139:3;20124:18;;20000:148;;;;:::o;20154:305::-;20194:3;20213:20;20231:1;20213:20;:::i;:::-;20208:25;;20247:20;20265:1;20247:20;:::i;:::-;20242:25;;20401:1;20333:66;20329:74;20326:1;20323:81;20320:107;;;20407:18;;:::i;:::-;20320:107;20451:1;20448;20444:9;20437:16;;20154:305;;;;:::o;20465:185::-;20505:1;20522:20;20540:1;20522:20;:::i;:::-;20517:25;;20556:20;20574:1;20556:20;:::i;:::-;20551:25;;20595:1;20585:35;;20600:18;;:::i;:::-;20585:35;20642:1;20639;20635:9;20630:14;;20465:185;;;;:::o;20656:348::-;20696:7;20719:20;20737:1;20719:20;:::i;:::-;20714:25;;20753:20;20771:1;20753:20;:::i;:::-;20748:25;;20941:1;20873:66;20869:74;20866:1;20863:81;20858:1;20851:9;20844:17;20840:105;20837:131;;;20948:18;;:::i;:::-;20837:131;20996:1;20993;20989:9;20978:20;;20656:348;;;;:::o;21010:191::-;21050:4;21070:20;21088:1;21070:20;:::i;:::-;21065:25;;21104:20;21122:1;21104:20;:::i;:::-;21099:25;;21143:1;21140;21137:8;21134:34;;;21148:18;;:::i;:::-;21134:34;21193:1;21190;21186:9;21178:17;;21010:191;;;;:::o;21207:96::-;21244:7;21273:24;21291:5;21273:24;:::i;:::-;21262:35;;21207:96;;;:::o;21309:90::-;21343:7;21386:5;21379:13;21372:21;21361:32;;21309:90;;;:::o;21405:149::-;21441:7;21481:66;21474:5;21470:78;21459:89;;21405:149;;;:::o;21560:126::-;21597:7;21637:42;21630:5;21626:54;21615:65;;21560:126;;;:::o;21692:77::-;21729:7;21758:5;21747:16;;21692:77;;;:::o;21775:154::-;21859:6;21854:3;21849;21836:30;21921:1;21912:6;21907:3;21903:16;21896:27;21775:154;;;:::o;21935:307::-;22003:1;22013:113;22027:6;22024:1;22021:13;22013:113;;;22112:1;22107:3;22103:11;22097:18;22093:1;22088:3;22084:11;22077:39;22049:2;22046:1;22042:10;22037:15;;22013:113;;;22144:6;22141:1;22138:13;22135:101;;;22224:1;22215:6;22210:3;22206:16;22199:27;22135:101;21984:258;21935:307;;;:::o;22248:320::-;22292:6;22329:1;22323:4;22319:12;22309:22;;22376:1;22370:4;22366:12;22397:18;22387:81;;22453:4;22445:6;22441:17;22431:27;;22387:81;22515:2;22507:6;22504:14;22484:18;22481:38;22478:84;;;22534:18;;:::i;:::-;22478:84;22299:269;22248:320;;;:::o;22574:281::-;22657:27;22679:4;22657:27;:::i;:::-;22649:6;22645:40;22787:6;22775:10;22772:22;22751:18;22739:10;22736:34;22733:62;22730:88;;;22798:18;;:::i;:::-;22730:88;22838:10;22834:2;22827:22;22617:238;22574:281;;:::o;22861:233::-;22900:3;22923:24;22941:5;22923:24;:::i;:::-;22914:33;;22969:66;22962:5;22959:77;22956:103;;;23039:18;;:::i;:::-;22956:103;23086:1;23079:5;23075:13;23068:20;;22861:233;;;:::o;23100:176::-;23132:1;23149:20;23167:1;23149:20;:::i;:::-;23144:25;;23183:20;23201:1;23183:20;:::i;:::-;23178:25;;23222:1;23212:35;;23227:18;;:::i;:::-;23212:35;23268:1;23265;23261:9;23256:14;;23100:176;;;;:::o;23282:180::-;23330:77;23327:1;23320:88;23427:4;23424:1;23417:15;23451:4;23448:1;23441:15;23468:180;23516:77;23513:1;23506:88;23613:4;23610:1;23603:15;23637:4;23634:1;23627:15;23654:180;23702:77;23699:1;23692:88;23799:4;23796:1;23789:15;23823:4;23820:1;23813:15;23840:180;23888:77;23885:1;23878:88;23985:4;23982:1;23975:15;24009:4;24006:1;23999:15;24026:180;24074:77;24071:1;24064:88;24171:4;24168:1;24161:15;24195:4;24192:1;24185:15;24212:117;24321:1;24318;24311:12;24335:117;24444:1;24441;24434:12;24458:117;24567:1;24564;24557:12;24581:117;24690:1;24687;24680:12;24704:102;24745:6;24796:2;24792:7;24787:2;24780:5;24776:14;24772:28;24762:38;;24704:102;;;:::o;24812:166::-;24952:18;24948:1;24940:6;24936:14;24929:42;24812:166;:::o;24984:::-;25124:18;25120:1;25112:6;25108:14;25101:42;24984:166;:::o;25156:225::-;25296:34;25292:1;25284:6;25280:14;25273:58;25365:8;25360:2;25352:6;25348:15;25341:33;25156:225;:::o;25387:169::-;25527:21;25523:1;25515:6;25511:14;25504:45;25387:169;:::o;25562:182::-;25702:34;25698:1;25690:6;25686:14;25679:58;25562:182;:::o;25750:234::-;25890:34;25886:1;25878:6;25874:14;25867:58;25959:17;25954:2;25946:6;25942:15;25935:42;25750:234;:::o;25990:167::-;26130:19;26126:1;26118:6;26114:14;26107:43;25990:167;:::o;26163:164::-;26303:16;26299:1;26291:6;26287:14;26280:40;26163:164;:::o;26333:122::-;26406:24;26424:5;26406:24;:::i;:::-;26399:5;26396:35;26386:63;;26445:1;26442;26435:12;26386:63;26333:122;:::o;26461:116::-;26531:21;26546:5;26531:21;:::i;:::-;26524:5;26521:32;26511:60;;26567:1;26564;26557:12;26511:60;26461:116;:::o;26583:120::-;26655:23;26672:5;26655:23;:::i;:::-;26648:5;26645:34;26635:62;;26693:1;26690;26683:12;26635:62;26583:120;:::o;26709:122::-;26782:24;26800:5;26782:24;:::i;:::-;26775:5;26772:35;26762:63;;26821:1;26818;26811:12;26762:63;26709:122;:::o
Swarm Source
ipfs://944bd786af0c14f79577f6fcad768ae9a153539bc914587b5be37e226eb569bb
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.