ETH Price: $2,497.00 (+1.14%)

Token

AshVault (ASHVAULT)
 

Overview

Max Total Supply

33 ASHVAULT

Holders

28

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ASHVAULT
0x45B0f81150Ff50975165D47d2020598987F71f31
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AshVault

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : AshVault_flat.sol
// SPDX-License-Identifier: MIT

//                                                   @ #                                               
//                                               #@ ,@&  %@                                            
//                                             .# @@  %@@@                                             
//                                          /@ @@  @@@,   *@@@@,                                       
//                                        /.(@  @@@    @@@@@.    ,                                     
//                                     *&.@  @@%   @@@@@       @@@@(                                   
//                                   # @. @@.  %@@@%      @@@@@@@@@@*(,                                
//                                ,,@, @@  ,@@@,    .@@@@@@@@,       .. (                              
//                             .&(( @#  @@@    /@@@@@@#             #@#@( .,                           
//                           * # @. @@&   (@@@@@.         ,@@@@@@@@@@@%@*/& @%                         
//                         (&.@ (@/  %@@@/       &@@@@@@@@@@@@@@@@@@@@@ @ @ @ @,*                      
//                      (@*(,@. @@@    *@@@@@@@@@@@@@&/                @ @ /@ @ & (                    
//                    // @ @*.&@#,                                     @# @, @/ @ *#&*                 
//                 *#(   @@@@@@      @@@@@@&@@@@@@@@@@@@@@@@@@@@@@@@@@ ,@  @& %@  @, @ ,               
//              .@@@@     @@@@@      @@@@@            .&@@@@@@@@@@@@@@  @@  @@  @@  @, @ @/            
//           .    @@@@    ,@@@@@    .@@@@@    ,@@@@@(             .#@@  @@(  @@  &@# ,@* @**.          
//         #@@@    @@@@    @@@@@    #@@@@    .@@@@&@@@@@@@@.        @@  (@@   @@   @@  (@* @@ @(       
//      @@   @@@#   @@@@    @@@@    #@@@@   .@@@@      &@@@@@@@@@  @@@   @@@   @@#  @@@  &@( #@ @      
//    @  &@@   @@@   %@@@   *@@@(   @@@@    @@@&   @@@     (@@@@   @@@   @@@(   @@@   @@#  @@# ,@. %#  
//  ,@ (@  &@@  /@@*  .@@@   @@@@   @@@@   @@@   @@%. @@/  ,@@@   @@@@   &@@@   .@@@   @@@   @@( .@% @ 
//    ,/* @* #@&  @@@   @@@   @@@   @@@   @@@.     @@@/   @@@@    @@@@    @@@@   *@@@   .@@@   @@%  @. 
//       *@ @# %@#  @@,  @@@  (@@,  @@&  @@@@@@@@#       @@@@    @@@@@    @@@@*   /@@@.   @@@%   @@,   
//         .% %@ #@, *@@  @@@  @@@  @@       @@@@@@@@@ @@@@@     @@@@&    @@@@@    #@@@%   *@@@        
//            ,#,@ (@  @@. (@&  @@  @@             ,@@@@@@@     @@@@@(    .@@@@@    %@@@@    @         
//              ,@ @ /@  @@  @& (@  @@@@@@@@@@@/          .     @@@@@*     @@@@@,    %@@@@.            
//                 ,,@.,@ .@  @% @& @@@@@@@@@@@@@@@@@@@@@@@#.  @@@@@@.     @@@@@@     *(               
//                   .@//,@ @@ @( @                         .,*//#%&&      (@@@*& &#/(                 
//                      , &.@ @ &/%                      .(&@@@@@@@@@#   (@& *@ @.*                    
//                         #@.%.&,*/,(@@@@@@@@@@@@@@@@@@@@@@.     .@@@%  %@ ,@ ,*                      
//                           (% /@  @@@@@@@@@@@@@@(         #@@@@(   @@/ %@ @&                         
//                              . .(@@@@&            ,@@@@@@*   .@@&  @& @.*                           
//                                (..          @@@@@@@@,    #@@@  ,@# @ &                              
//                                   /  /@@@@@@@@@      @@@@   &@( @/%(                                
//                                     (@@@@@       @@@@(   @@* %@ ,                                   
//                                             *@@@@&   /@@, #@ @#                                     
//                                         %@@@@@    @@@  *@ (.                                        
//                                           .    @@@  .@( @(                                          
//                                              @@   @@ &                                              
//                                                 @ ,&#                                               

// built by @ktrbychain

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/ERC721URIStorage.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: Copy_AshVault.sol


pragma solidity ^0.8.2;

library Base64 {
    string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';
    bytes  internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000"
                                            hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000"
                                            hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000"
                                            hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE_ENCODE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
                // read 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // write 4 characters
                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F))))
                resultPtr := add(resultPtr, 1)
                mstore8(resultPtr, mload(add(tablePtr, and(        input,  0x3F))))
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }

    function decode(string memory _data) internal pure returns (bytes memory) {
        bytes memory data = bytes(_data);

        if (data.length == 0) return new bytes(0);
        require(data.length % 4 == 0, "invalid base64 decoder input");

        // load the table into memory
        bytes memory table = TABLE_DECODE;

        // every 4 characters represent 3 bytes
        uint256 decodedLen = (data.length / 4) * 3;

        // add some extra buffer at the end required for the writing
        bytes memory result = new bytes(decodedLen + 32);

        assembly {
            // padding with '='
            let lastBytes := mload(add(data, mload(data)))
            if eq(and(lastBytes, 0xFF), 0x3d) {
                decodedLen := sub(decodedLen, 1)
                if eq(and(lastBytes, 0xFFFF), 0x3d3d) {
                    decodedLen := sub(decodedLen, 1)
                }
            }

            // set the actual output length
            mstore(result, decodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 4 characters at a time
            for {} lt(dataPtr, endPtr) {}
            {
               // read 4 characters
               dataPtr := add(dataPtr, 4)
               let input := mload(dataPtr)

               // write 3 bytes
               let output := add(
                   add(
                       shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)),
                       shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))),
                   add(
                       shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)),
                               and(mload(add(tablePtr, and(        input , 0xFF))), 0xFF)
                    )
                )
                mstore(resultPtr, shl(232, output))
                resultPtr := add(resultPtr, 3)
            }
        }

        return result;
    }
}

contract AshVault is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;
    using Base64 for string;

    Counters.Counter private _tokenIdCounter;
    uint256 public maxSupply = 33;

    constructor() ERC721("AshVault", "ASHVAULT") {}

    function addressToString(address _addr) internal pure returns(string memory) {
        bytes32 value = bytes32(uint256(uint160(_addr)));
        bytes memory alphabet = "0123456789abcdef";

        bytes memory str = new bytes(42);
        str[0] = "0";
        str[1] = "x";
        for (uint i = 0; i < 20; i++) {
            str[2+i*2] = alphabet[uint(uint8(value[i + 12] >> 4))];
            str[3+i*2] = alphabet[uint(uint8(value[i + 12] & 0x0f))];
        }
        return string(str);
    }

    function batchMint() public onlyOwner {
        require(totalSupply() < maxSupply, "All tokens minted");
        while (totalSupply() < maxSupply) {
            safeMint(msg.sender);
        }
    }

    function createTokenURI(address recipient, uint256 tokenId) internal view returns(string memory) {
        string memory html = string(abi.encodePacked("https://gateway.pinata.cloud/ipfs/QmPiQiSxxUPbHJzbVaGXDKb1ST1twtSmQXFmNNSVX2yAoS/?", addressToString(recipient)));
        string memory json = Base64.encode(
            bytes(string(
                abi.encodePacked(
                    '{"name": "AshVault #', Strings.toString(tokenId+= 1), '/', Strings.toString(maxSupply), '",',
                    '"description": "This token changes depending on its owner\'s $ASH token balance. Each symbol represents 10 $ASH. Click to invert.",',
                    '"image_data": "https://i.imgur.com/4h4L7fd.png",',
                    '"animation_url": "', html, '"',
                    '}'
                )
            ))
        );
        return string(abi.encodePacked('data:application/json;base64,', json));
    }

    function safeMint(address to) public onlyOwner {
        require(totalSupply() < maxSupply, "All tokens minted");
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
        _setTokenURI(tokenId, createTokenURI(to, tokenId));
    }

    function _afterTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721)
    {
        super._afterTokenTransfer(from, to, tokenId);
        _setTokenURI(tokenId, createTokenURI(to, tokenId));
    }

    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","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":"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

60806040526021600d553480156200001657600080fd5b506040518060400160405280600881526020017f4173685661756c740000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f4153485641554c5400000000000000000000000000000000000000000000000081525081600090805190602001906200009b929190620001ab565b508060019080519060200190620000b4929190620001ab565b505050620000d7620000cb620000dd60201b60201c565b620000e560201b60201c565b620002c0565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b9906200025b565b90600052602060002090601f016020900481019282620001dd576000855562000229565b82601f10620001f857805160ff191683800117855562000229565b8280016001018555821562000229579182015b82811115620002285782518255916020019190600101906200020b565b5b5090506200023891906200023c565b5090565b5b80821115620002575760008160009055506001016200023d565b5090565b600060028204905060018216806200027457607f821691505b602082108114156200028b576200028a62000291565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61440380620002d06000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063b88d4fde1161007c578063b88d4fde14610375578063c87b56dd14610391578063d5abeb01146103c1578063e3424c93146103df578063e985e9c5146103e9578063f2fde38b1461041957610142565b806370a08231146102e3578063715018a6146103135780638da5cb5b1461031d57806395d89b411461033b578063a22cb4651461035957610142565b806323b872dd1161010a57806323b872dd146101ff5780632f745c591461021b57806340d097c31461024b57806342842e0e146102675780634f6ccce7146102835780636352211e146102b357610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806318160ddd146101e1575b600080fd5b610161600480360381019061015c9190612c6c565b610435565b60405161016e9190613358565b60405180910390f35b61017f610447565b60405161018c9190613373565b60405180910390f35b6101af60048036038101906101aa9190612cc6565b6104d9565b6040516101bc91906132f1565b60405180910390f35b6101df60048036038101906101da9190612c2c565b61055e565b005b6101e9610676565b6040516101f69190613635565b60405180910390f35b61021960048036038101906102149190612b16565b610683565b005b61023560048036038101906102309190612c2c565b6106e3565b6040516102429190613635565b60405180910390f35b61026560048036038101906102609190612aa9565b610788565b005b610281600480360381019061027c9190612b16565b610888565b005b61029d60048036038101906102989190612cc6565b6108a8565b6040516102aa9190613635565b60405180910390f35b6102cd60048036038101906102c89190612cc6565b610919565b6040516102da91906132f1565b60405180910390f35b6102fd60048036038101906102f89190612aa9565b6109cb565b60405161030a9190613635565b60405180910390f35b61031b610a83565b005b610325610b0b565b60405161033291906132f1565b60405180910390f35b610343610b35565b6040516103509190613373565b60405180910390f35b610373600480360381019061036e9190612bec565b610bc7565b005b61038f600480360381019061038a9190612b69565b610bdd565b005b6103ab60048036038101906103a69190612cc6565b610c3f565b6040516103b89190613373565b60405180910390f35b6103c9610c51565b6040516103d69190613635565b60405180910390f35b6103e7610c57565b005b61040360048036038101906103fe9190612ad6565b610d40565b6040516104109190613358565b60405180910390f35b610433600480360381019061042e9190612aa9565b610dd4565b005b600061044082610ecc565b9050919050565b606060008054610456906138b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610482906138b4565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b60006104e482610f46565b610523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051a90613575565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061056982610919565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d1906135d5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105f9610fb2565b73ffffffffffffffffffffffffffffffffffffffff161480610628575061062781610622610fb2565b610d40565b5b610667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065e906134b5565b60405180910390fd5b6106718383610fba565b505050565b6000600880549050905090565b61069461068e610fb2565b82611073565b6106d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ca906135f5565b60405180910390fd5b6106de838383611151565b505050565b60006106ee836109cb565b821061072f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072690613395565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610790610fb2565b73ffffffffffffffffffffffffffffffffffffffff166107ae610b0b565b73ffffffffffffffffffffffffffffffffffffffff1614610804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fb90613595565b60405180910390fd5b600d5461080f610676565b1061084f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084690613415565b60405180910390fd5b600061085b600c6113b8565b9050610867600c6113c6565b61087182826113dc565b6108848161087f84846113fa565b6114a3565b5050565b6108a383838360405180602001604052806000815250610bdd565b505050565b60006108b2610676565b82106108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea90613615565b60405180910390fd5b6008828154811061090757610906613a4d565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b9906134f5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a33906134d5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a8b610fb2565b73ffffffffffffffffffffffffffffffffffffffff16610aa9610b0b565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690613595565b60405180910390fd5b610b096000611517565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b44906138b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b70906138b4565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b610bd9610bd2610fb2565b83836115dd565b5050565b610bee610be8610fb2565b83611073565b610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c24906135f5565b60405180910390fd5b610c398484848461174a565b50505050565b6060610c4a826117a6565b9050919050565b600d5481565b610c5f610fb2565b73ffffffffffffffffffffffffffffffffffffffff16610c7d610b0b565b73ffffffffffffffffffffffffffffffffffffffff1614610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90613595565b60405180910390fd5b600d54610cde610676565b10610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590613415565b60405180910390fd5b5b600d54610d2a610676565b1015610d3e57610d3933610788565b610d1f565b565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ddc610fb2565b73ffffffffffffffffffffffffffffffffffffffff16610dfa610b0b565b73ffffffffffffffffffffffffffffffffffffffff1614610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790613595565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb7906133d5565b60405180910390fd5b610ec981611517565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f3f5750610f3e826118f8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661102d83610919565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061107e82610f46565b6110bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b490613495565b60405180910390fd5b60006110c883610919565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061113757508373ffffffffffffffffffffffffffffffffffffffff1661111f846104d9565b73ffffffffffffffffffffffffffffffffffffffff16145b8061114857506111478185610d40565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661117182610919565b73ffffffffffffffffffffffffffffffffffffffff16146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be906133f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90613455565b60405180910390fd5b6112428383836119da565b61124d600082610fba565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461129d91906137ca565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112f491906136e9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113b38383836119ea565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6113f6828260405180602001604052806000815250611a0d565b5050565b6060600061140784611a68565b60405160200161141791906132cf565b6040516020818303038152906040529050600061147761144560018661143d91906136e9565b955085611d73565b611450600d54611d73565b8460405160200161146393929190613224565b604051602081830303815290604052611ed4565b90508060405160200161148a91906132ad565b6040516020818303038152906040529250505092915050565b6114ac82610f46565b6114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290613515565b60405180910390fd5b80600a6000848152602001908152602001600020908051906020019061151292919061292d565b505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561164c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164390613475565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161173d9190613358565b60405180910390a3505050565b611755848484611151565b6117618484848461204d565b6117a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611797906133b5565b60405180910390fd5b50505050565b60606117b182610f46565b6117f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e790613555565b60405180910390fd5b6000600a60008481526020019081526020016000208054611810906138b4565b80601f016020809104026020016040519081016040528092919081815260200182805461183c906138b4565b80156118895780601f1061185e57610100808354040283529160200191611889565b820191906000526020600020905b81548152906001019060200180831161186c57829003601f168201915b50505050509050600061189a6121e4565b90506000815114156118b05781925050506118f3565b6000825111156118e55780826040516020016118cd929190613200565b604051602081830303815290604052925050506118f3565b6118ee846121fb565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119c357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119d357506119d2826122a2565b5b9050919050565b6119e583838361230c565b505050565b6119f5838383612420565b611a0881611a0384846113fa565b6114a3565b505050565b611a178383612425565b611a24600084848461204d565b611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a906133b5565b60405180910390fd5b505050565b606060008273ffffffffffffffffffffffffffffffffffffffff1660001b905060006040518060400160405280601081526020017f303132333435363738396162636465660000000000000000000000000000000081525090506000602a67ffffffffffffffff811115611adf57611ade613a7c565b5b6040519080825280601f01601f191660200182016040528015611b115781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611b4957611b48613a4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611bad57611bac613a4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b6014811015611d675782600485600c84611bf991906136e9565b60208110611c0a57611c09613a4d565b5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff1681518110611c4957611c48613a4d565b5b602001015160f81c60f81b82600283611c629190613770565b6002611c6e91906136e9565b81518110611c7f57611c7e613a4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b85600c84611cc291906136e9565b60208110611cd357611cd2613a4d565b5b1a60f81b1660f81c60ff1681518110611cef57611cee613a4d565b5b602001015160f81c60f81b82600283611d089190613770565b6003611d1491906136e9565b81518110611d2557611d24613a4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080611d5f90613917565b915050611bdf565b50809350505050919050565b60606000821415611dbb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ecf565b600082905060005b60008214611ded578080611dd690613917565b915050600a82611de6919061373f565b9150611dc3565b60008167ffffffffffffffff811115611e0957611e08613a7c565b5b6040519080825280601f01601f191660200182016040528015611e3b5781602001600182028036833780820191505090505b5090505b60008514611ec857600182611e5491906137ca565b9150600a85611e639190613960565b6030611e6f91906136e9565b60f81b818381518110611e8557611e84613a4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ec1919061373f565b9450611e3f565b8093505050505b919050565b6060600082511415611ef757604051806020016040528060008152509050612048565b600060405180606001604052806040815260200161438e6040913990506000600360028551611f2691906136e9565b611f30919061373f565b6004611f3c9190613770565b90506000602082611f4d91906136e9565b67ffffffffffffffff811115611f6657611f65613a7c565b5b6040519080825280601f01601f191660200182016040528015611f985781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015612007576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050611fac565b60038951066001811461202157600281146120315761203c565b613d3d60f01b600283035261203c565b603d60f81b60018303525b50505050508093505050505b919050565b600061206e8473ffffffffffffffffffffffffffffffffffffffff166125ff565b156121d7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612097610fb2565b8786866040518563ffffffff1660e01b81526004016120b9949392919061330c565b602060405180830381600087803b1580156120d357600080fd5b505af192505050801561210457506040513d601f19601f820116820180604052508101906121019190612c99565b60015b612187573d8060008114612134576040519150601f19603f3d011682016040523d82523d6000602084013e612139565b606091505b5060008151141561217f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612176906133b5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121dc565b600190505b949350505050565b606060405180602001604052806000815250905090565b606061220682610f46565b612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c906135b5565b60405180910390fd5b600061224f6121e4565b9050600081511161226f576040518060200160405280600081525061229a565b8061227984611d73565b60405160200161228a929190613200565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612317838383612622565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561235a5761235581612627565b612399565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612398576123978382612670565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123dc576123d7816127dd565b61241b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461241a5761241982826128ae565b5b5b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c90613535565b60405180910390fd5b61249e81610f46565b156124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d590613435565b60405180910390fd5b6124ea600083836119da565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461253a91906136e9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125fb600083836119ea565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161267d846109cb565b61268791906137ca565b905060006007600084815260200190815260200160002054905081811461276c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506127f191906137ca565b905060006009600084815260200190815260200160002054905060006008838154811061282157612820613a4d565b5b90600052602060002001549050806008838154811061284357612842613a4d565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061289257612891613a1e565b5b6001900381819060005260206000200160009055905550505050565b60006128b9836109cb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612939906138b4565b90600052602060002090601f01602090048101928261295b57600085556129a2565b82601f1061297457805160ff19168380011785556129a2565b828001600101855582156129a2579182015b828111156129a1578251825591602001919060010190612986565b5b5090506129af91906129b3565b5090565b5b808211156129cc5760008160009055506001016129b4565b5090565b60006129e36129de84613675565b613650565b9050828152602081018484840111156129ff576129fe613ab0565b5b612a0a848285613872565b509392505050565b600081359050612a2181614331565b92915050565b600081359050612a3681614348565b92915050565b600081359050612a4b8161435f565b92915050565b600081519050612a608161435f565b92915050565b600082601f830112612a7b57612a7a613aab565b5b8135612a8b8482602086016129d0565b91505092915050565b600081359050612aa381614376565b92915050565b600060208284031215612abf57612abe613aba565b5b6000612acd84828501612a12565b91505092915050565b60008060408385031215612aed57612aec613aba565b5b6000612afb85828601612a12565b9250506020612b0c85828601612a12565b9150509250929050565b600080600060608486031215612b2f57612b2e613aba565b5b6000612b3d86828701612a12565b9350506020612b4e86828701612a12565b9250506040612b5f86828701612a94565b9150509250925092565b60008060008060808587031215612b8357612b82613aba565b5b6000612b9187828801612a12565b9450506020612ba287828801612a12565b9350506040612bb387828801612a94565b925050606085013567ffffffffffffffff811115612bd457612bd3613ab5565b5b612be087828801612a66565b91505092959194509250565b60008060408385031215612c0357612c02613aba565b5b6000612c1185828601612a12565b9250506020612c2285828601612a27565b9150509250929050565b60008060408385031215612c4357612c42613aba565b5b6000612c5185828601612a12565b9250506020612c6285828601612a94565b9150509250929050565b600060208284031215612c8257612c81613aba565b5b6000612c9084828501612a3c565b91505092915050565b600060208284031215612caf57612cae613aba565b5b6000612cbd84828501612a51565b91505092915050565b600060208284031215612cdc57612cdb613aba565b5b6000612cea84828501612a94565b91505092915050565b612cfc816137fe565b82525050565b612d0b81613810565b82525050565b6000612d1c826136a6565b612d2681856136bc565b9350612d36818560208601613881565b612d3f81613abf565b840191505092915050565b6000612d55826136b1565b612d5f81856136cd565b9350612d6f818560208601613881565b612d7881613abf565b840191505092915050565b6000612d8e826136b1565b612d9881856136de565b9350612da8818560208601613881565b80840191505092915050565b6000612dc1602b836136cd565b9150612dcc82613ad0565b604082019050919050565b6000612de46032836136cd565b9150612def82613b1f565b604082019050919050565b6000612e076026836136cd565b9150612e1282613b6e565b604082019050919050565b6000612e2a6002836136de565b9150612e3582613bbd565b600282019050919050565b6000612e4d6025836136cd565b9150612e5882613be6565b604082019050919050565b6000612e706011836136cd565b9150612e7b82613c35565b602082019050919050565b6000612e93601c836136cd565b9150612e9e82613c5e565b602082019050919050565b6000612eb66024836136cd565b9150612ec182613c87565b604082019050919050565b6000612ed96019836136cd565b9150612ee482613cd6565b602082019050919050565b6000612efc6030836136de565b9150612f0782613cff565b603082019050919050565b6000612f1f602c836136cd565b9150612f2a82613d4e565b604082019050919050565b6000612f426038836136cd565b9150612f4d82613d9d565b604082019050919050565b6000612f656001836136de565b9150612f7082613dec565b600182019050919050565b6000612f886014836136de565b9150612f9382613e15565b601482019050919050565b6000612fab602a836136cd565b9150612fb682613e3e565b604082019050919050565b6000612fce6029836136cd565b9150612fd982613e8d565b604082019050919050565b6000612ff1602e836136cd565b9150612ffc82613edc565b604082019050919050565b60006130146020836136cd565b915061301f82613f2b565b602082019050919050565b60006130376001836136de565b915061304282613f54565b600182019050919050565b600061305a6031836136cd565b915061306582613f7d565b604082019050919050565b600061307d602c836136cd565b915061308882613fcc565b604082019050919050565b60006130a06020836136cd565b91506130ab8261401b565b602082019050919050565b60006130c3602f836136cd565b91506130ce82614044565b604082019050919050565b60006130e66021836136cd565b91506130f182614093565b604082019050919050565b60006131096012836136de565b9150613114826140e2565b601282019050919050565b600061312c6082836136de565b91506131378261410b565b608282019050919050565b600061314f601d836136de565b915061315a826141cc565b601d82019050919050565b60006131726031836136cd565b915061317d826141f5565b604082019050919050565b6000613195602c836136cd565b91506131a082614244565b604082019050919050565b60006131b86001836136de565b91506131c382614293565b600182019050919050565b60006131db6052836136de565b91506131e6826142bc565b605282019050919050565b6131fa81613868565b82525050565b600061320c8285612d83565b91506132188284612d83565b91508190509392505050565b600061322f82612f7b565b915061323b8286612d83565b9150613246826131ab565b91506132528285612d83565b915061325d82612e1d565b91506132688261311f565b915061327382612eef565b915061327e826130fc565b915061328a8284612d83565b915061329582612f58565b91506132a08261302a565b9150819050949350505050565b60006132b882613142565b91506132c48284612d83565b915081905092915050565b60006132da826131ce565b91506132e68284612d83565b915081905092915050565b60006020820190506133066000830184612cf3565b92915050565b60006080820190506133216000830187612cf3565b61332e6020830186612cf3565b61333b60408301856131f1565b818103606083015261334d8184612d11565b905095945050505050565b600060208201905061336d6000830184612d02565b92915050565b6000602082019050818103600083015261338d8184612d4a565b905092915050565b600060208201905081810360008301526133ae81612db4565b9050919050565b600060208201905081810360008301526133ce81612dd7565b9050919050565b600060208201905081810360008301526133ee81612dfa565b9050919050565b6000602082019050818103600083015261340e81612e40565b9050919050565b6000602082019050818103600083015261342e81612e63565b9050919050565b6000602082019050818103600083015261344e81612e86565b9050919050565b6000602082019050818103600083015261346e81612ea9565b9050919050565b6000602082019050818103600083015261348e81612ecc565b9050919050565b600060208201905081810360008301526134ae81612f12565b9050919050565b600060208201905081810360008301526134ce81612f35565b9050919050565b600060208201905081810360008301526134ee81612f9e565b9050919050565b6000602082019050818103600083015261350e81612fc1565b9050919050565b6000602082019050818103600083015261352e81612fe4565b9050919050565b6000602082019050818103600083015261354e81613007565b9050919050565b6000602082019050818103600083015261356e8161304d565b9050919050565b6000602082019050818103600083015261358e81613070565b9050919050565b600060208201905081810360008301526135ae81613093565b9050919050565b600060208201905081810360008301526135ce816130b6565b9050919050565b600060208201905081810360008301526135ee816130d9565b9050919050565b6000602082019050818103600083015261360e81613165565b9050919050565b6000602082019050818103600083015261362e81613188565b9050919050565b600060208201905061364a60008301846131f1565b92915050565b600061365a61366b565b905061366682826138e6565b919050565b6000604051905090565b600067ffffffffffffffff8211156136905761368f613a7c565b5b61369982613abf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136f482613868565b91506136ff83613868565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561373457613733613991565b5b828201905092915050565b600061374a82613868565b915061375583613868565b925082613765576137646139c0565b5b828204905092915050565b600061377b82613868565b915061378683613868565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137bf576137be613991565b5b828202905092915050565b60006137d582613868565b91506137e083613868565b9250828210156137f3576137f2613991565b5b828203905092915050565b600061380982613848565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561389f578082015181840152602081019050613884565b838111156138ae576000848401525b50505050565b600060028204905060018216806138cc57607f821691505b602082108114156138e0576138df6139ef565b5b50919050565b6138ef82613abf565b810181811067ffffffffffffffff8211171561390e5761390d613a7c565b5b80604052505050565b600061392282613868565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561395557613954613991565b5b600182019050919050565b600061396b82613868565b915061397683613868565b925082613986576139856139c0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f416c6c20746f6b656e73206d696e746564000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f22696d6167655f64617461223a202268747470733a2f2f692e696d6775722e6360008201527f6f6d2f3468344c3766642e706e67222c00000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f2200000000000000000000000000000000000000000000000000000000000000600082015250565b7f7b226e616d65223a20224173685661756c742023000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f22616e696d6174696f6e5f75726c223a20220000000000000000000000000000600082015250565b7f226465736372697074696f6e223a20225468697320746f6b656e206368616e6760008201527f657320646570656e64696e67206f6e20697473206f776e65722773202441534860208201527f20746f6b656e2062616c616e63652e20456163682073796d626f6c207265707260408201527f6573656e747320313020244153482e20436c69636b20746f20696e766572742e60608201527f222c000000000000000000000000000000000000000000000000000000000000608082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f68747470733a2f2f676174657761792e70696e6174612e636c6f75642f69706660008201527f732f516d50695169537878555062484a7a6256614758444b623153543174777460208201527f536d5158466d4e4e5356583279416f532f3f0000000000000000000000000000604082015250565b61433a816137fe565b811461434557600080fd5b50565b61435181613810565b811461435c57600080fd5b50565b6143688161381c565b811461437357600080fd5b50565b61437f81613868565b811461438a57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220178e026bbc44f2f6ec8a3ee629cf5fbe25c2bb4e6de03e3808fda1877e85d40264736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063b88d4fde1161007c578063b88d4fde14610375578063c87b56dd14610391578063d5abeb01146103c1578063e3424c93146103df578063e985e9c5146103e9578063f2fde38b1461041957610142565b806370a08231146102e3578063715018a6146103135780638da5cb5b1461031d57806395d89b411461033b578063a22cb4651461035957610142565b806323b872dd1161010a57806323b872dd146101ff5780632f745c591461021b57806340d097c31461024b57806342842e0e146102675780634f6ccce7146102835780636352211e146102b357610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806318160ddd146101e1575b600080fd5b610161600480360381019061015c9190612c6c565b610435565b60405161016e9190613358565b60405180910390f35b61017f610447565b60405161018c9190613373565b60405180910390f35b6101af60048036038101906101aa9190612cc6565b6104d9565b6040516101bc91906132f1565b60405180910390f35b6101df60048036038101906101da9190612c2c565b61055e565b005b6101e9610676565b6040516101f69190613635565b60405180910390f35b61021960048036038101906102149190612b16565b610683565b005b61023560048036038101906102309190612c2c565b6106e3565b6040516102429190613635565b60405180910390f35b61026560048036038101906102609190612aa9565b610788565b005b610281600480360381019061027c9190612b16565b610888565b005b61029d60048036038101906102989190612cc6565b6108a8565b6040516102aa9190613635565b60405180910390f35b6102cd60048036038101906102c89190612cc6565b610919565b6040516102da91906132f1565b60405180910390f35b6102fd60048036038101906102f89190612aa9565b6109cb565b60405161030a9190613635565b60405180910390f35b61031b610a83565b005b610325610b0b565b60405161033291906132f1565b60405180910390f35b610343610b35565b6040516103509190613373565b60405180910390f35b610373600480360381019061036e9190612bec565b610bc7565b005b61038f600480360381019061038a9190612b69565b610bdd565b005b6103ab60048036038101906103a69190612cc6565b610c3f565b6040516103b89190613373565b60405180910390f35b6103c9610c51565b6040516103d69190613635565b60405180910390f35b6103e7610c57565b005b61040360048036038101906103fe9190612ad6565b610d40565b6040516104109190613358565b60405180910390f35b610433600480360381019061042e9190612aa9565b610dd4565b005b600061044082610ecc565b9050919050565b606060008054610456906138b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610482906138b4565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b60006104e482610f46565b610523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051a90613575565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061056982610919565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d1906135d5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105f9610fb2565b73ffffffffffffffffffffffffffffffffffffffff161480610628575061062781610622610fb2565b610d40565b5b610667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065e906134b5565b60405180910390fd5b6106718383610fba565b505050565b6000600880549050905090565b61069461068e610fb2565b82611073565b6106d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ca906135f5565b60405180910390fd5b6106de838383611151565b505050565b60006106ee836109cb565b821061072f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072690613395565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610790610fb2565b73ffffffffffffffffffffffffffffffffffffffff166107ae610b0b565b73ffffffffffffffffffffffffffffffffffffffff1614610804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fb90613595565b60405180910390fd5b600d5461080f610676565b1061084f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084690613415565b60405180910390fd5b600061085b600c6113b8565b9050610867600c6113c6565b61087182826113dc565b6108848161087f84846113fa565b6114a3565b5050565b6108a383838360405180602001604052806000815250610bdd565b505050565b60006108b2610676565b82106108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea90613615565b60405180910390fd5b6008828154811061090757610906613a4d565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b9906134f5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a33906134d5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a8b610fb2565b73ffffffffffffffffffffffffffffffffffffffff16610aa9610b0b565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690613595565b60405180910390fd5b610b096000611517565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b44906138b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610b70906138b4565b8015610bbd5780601f10610b9257610100808354040283529160200191610bbd565b820191906000526020600020905b815481529060010190602001808311610ba057829003601f168201915b5050505050905090565b610bd9610bd2610fb2565b83836115dd565b5050565b610bee610be8610fb2565b83611073565b610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c24906135f5565b60405180910390fd5b610c398484848461174a565b50505050565b6060610c4a826117a6565b9050919050565b600d5481565b610c5f610fb2565b73ffffffffffffffffffffffffffffffffffffffff16610c7d610b0b565b73ffffffffffffffffffffffffffffffffffffffff1614610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90613595565b60405180910390fd5b600d54610cde610676565b10610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1590613415565b60405180910390fd5b5b600d54610d2a610676565b1015610d3e57610d3933610788565b610d1f565b565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610ddc610fb2565b73ffffffffffffffffffffffffffffffffffffffff16610dfa610b0b565b73ffffffffffffffffffffffffffffffffffffffff1614610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790613595565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb7906133d5565b60405180910390fd5b610ec981611517565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f3f5750610f3e826118f8565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661102d83610919565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061107e82610f46565b6110bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b490613495565b60405180910390fd5b60006110c883610919565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061113757508373ffffffffffffffffffffffffffffffffffffffff1661111f846104d9565b73ffffffffffffffffffffffffffffffffffffffff16145b8061114857506111478185610d40565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661117182610919565b73ffffffffffffffffffffffffffffffffffffffff16146111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be906133f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90613455565b60405180910390fd5b6112428383836119da565b61124d600082610fba565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461129d91906137ca565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112f491906136e9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113b38383836119ea565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6113f6828260405180602001604052806000815250611a0d565b5050565b6060600061140784611a68565b60405160200161141791906132cf565b6040516020818303038152906040529050600061147761144560018661143d91906136e9565b955085611d73565b611450600d54611d73565b8460405160200161146393929190613224565b604051602081830303815290604052611ed4565b90508060405160200161148a91906132ad565b6040516020818303038152906040529250505092915050565b6114ac82610f46565b6114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290613515565b60405180910390fd5b80600a6000848152602001908152602001600020908051906020019061151292919061292d565b505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561164c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164390613475565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161173d9190613358565b60405180910390a3505050565b611755848484611151565b6117618484848461204d565b6117a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611797906133b5565b60405180910390fd5b50505050565b60606117b182610f46565b6117f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e790613555565b60405180910390fd5b6000600a60008481526020019081526020016000208054611810906138b4565b80601f016020809104026020016040519081016040528092919081815260200182805461183c906138b4565b80156118895780601f1061185e57610100808354040283529160200191611889565b820191906000526020600020905b81548152906001019060200180831161186c57829003601f168201915b50505050509050600061189a6121e4565b90506000815114156118b05781925050506118f3565b6000825111156118e55780826040516020016118cd929190613200565b604051602081830303815290604052925050506118f3565b6118ee846121fb565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119c357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119d357506119d2826122a2565b5b9050919050565b6119e583838361230c565b505050565b6119f5838383612420565b611a0881611a0384846113fa565b6114a3565b505050565b611a178383612425565b611a24600084848461204d565b611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a906133b5565b60405180910390fd5b505050565b606060008273ffffffffffffffffffffffffffffffffffffffff1660001b905060006040518060400160405280601081526020017f303132333435363738396162636465660000000000000000000000000000000081525090506000602a67ffffffffffffffff811115611adf57611ade613a7c565b5b6040519080825280601f01601f191660200182016040528015611b115781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611b4957611b48613a4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611bad57611bac613a4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b6014811015611d675782600485600c84611bf991906136e9565b60208110611c0a57611c09613a4d565b5b1a60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916901c60f81c60ff1681518110611c4957611c48613a4d565b5b602001015160f81c60f81b82600283611c629190613770565b6002611c6e91906136e9565b81518110611c7f57611c7e613a4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535082600f60f81b85600c84611cc291906136e9565b60208110611cd357611cd2613a4d565b5b1a60f81b1660f81c60ff1681518110611cef57611cee613a4d565b5b602001015160f81c60f81b82600283611d089190613770565b6003611d1491906136e9565b81518110611d2557611d24613a4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053508080611d5f90613917565b915050611bdf565b50809350505050919050565b60606000821415611dbb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ecf565b600082905060005b60008214611ded578080611dd690613917565b915050600a82611de6919061373f565b9150611dc3565b60008167ffffffffffffffff811115611e0957611e08613a7c565b5b6040519080825280601f01601f191660200182016040528015611e3b5781602001600182028036833780820191505090505b5090505b60008514611ec857600182611e5491906137ca565b9150600a85611e639190613960565b6030611e6f91906136e9565b60f81b818381518110611e8557611e84613a4d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ec1919061373f565b9450611e3f565b8093505050505b919050565b6060600082511415611ef757604051806020016040528060008152509050612048565b600060405180606001604052806040815260200161438e6040913990506000600360028551611f2691906136e9565b611f30919061373f565b6004611f3c9190613770565b90506000602082611f4d91906136e9565b67ffffffffffffffff811115611f6657611f65613a7c565b5b6040519080825280601f01601f191660200182016040528015611f985781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015612007576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825360018201915050611fac565b60038951066001811461202157600281146120315761203c565b613d3d60f01b600283035261203c565b603d60f81b60018303525b50505050508093505050505b919050565b600061206e8473ffffffffffffffffffffffffffffffffffffffff166125ff565b156121d7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612097610fb2565b8786866040518563ffffffff1660e01b81526004016120b9949392919061330c565b602060405180830381600087803b1580156120d357600080fd5b505af192505050801561210457506040513d601f19601f820116820180604052508101906121019190612c99565b60015b612187573d8060008114612134576040519150601f19603f3d011682016040523d82523d6000602084013e612139565b606091505b5060008151141561217f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612176906133b5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121dc565b600190505b949350505050565b606060405180602001604052806000815250905090565b606061220682610f46565b612245576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223c906135b5565b60405180910390fd5b600061224f6121e4565b9050600081511161226f576040518060200160405280600081525061229a565b8061227984611d73565b60405160200161228a929190613200565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612317838383612622565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561235a5761235581612627565b612399565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612398576123978382612670565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123dc576123d7816127dd565b61241b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461241a5761241982826128ae565b5b5b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248c90613535565b60405180910390fd5b61249e81610f46565b156124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d590613435565b60405180910390fd5b6124ea600083836119da565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461253a91906136e9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125fb600083836119ea565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161267d846109cb565b61268791906137ca565b905060006007600084815260200190815260200160002054905081811461276c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506127f191906137ca565b905060006009600084815260200190815260200160002054905060006008838154811061282157612820613a4d565b5b90600052602060002001549050806008838154811061284357612842613a4d565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061289257612891613a1e565b5b6001900381819060005260206000200160009055905550505050565b60006128b9836109cb565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612939906138b4565b90600052602060002090601f01602090048101928261295b57600085556129a2565b82601f1061297457805160ff19168380011785556129a2565b828001600101855582156129a2579182015b828111156129a1578251825591602001919060010190612986565b5b5090506129af91906129b3565b5090565b5b808211156129cc5760008160009055506001016129b4565b5090565b60006129e36129de84613675565b613650565b9050828152602081018484840111156129ff576129fe613ab0565b5b612a0a848285613872565b509392505050565b600081359050612a2181614331565b92915050565b600081359050612a3681614348565b92915050565b600081359050612a4b8161435f565b92915050565b600081519050612a608161435f565b92915050565b600082601f830112612a7b57612a7a613aab565b5b8135612a8b8482602086016129d0565b91505092915050565b600081359050612aa381614376565b92915050565b600060208284031215612abf57612abe613aba565b5b6000612acd84828501612a12565b91505092915050565b60008060408385031215612aed57612aec613aba565b5b6000612afb85828601612a12565b9250506020612b0c85828601612a12565b9150509250929050565b600080600060608486031215612b2f57612b2e613aba565b5b6000612b3d86828701612a12565b9350506020612b4e86828701612a12565b9250506040612b5f86828701612a94565b9150509250925092565b60008060008060808587031215612b8357612b82613aba565b5b6000612b9187828801612a12565b9450506020612ba287828801612a12565b9350506040612bb387828801612a94565b925050606085013567ffffffffffffffff811115612bd457612bd3613ab5565b5b612be087828801612a66565b91505092959194509250565b60008060408385031215612c0357612c02613aba565b5b6000612c1185828601612a12565b9250506020612c2285828601612a27565b9150509250929050565b60008060408385031215612c4357612c42613aba565b5b6000612c5185828601612a12565b9250506020612c6285828601612a94565b9150509250929050565b600060208284031215612c8257612c81613aba565b5b6000612c9084828501612a3c565b91505092915050565b600060208284031215612caf57612cae613aba565b5b6000612cbd84828501612a51565b91505092915050565b600060208284031215612cdc57612cdb613aba565b5b6000612cea84828501612a94565b91505092915050565b612cfc816137fe565b82525050565b612d0b81613810565b82525050565b6000612d1c826136a6565b612d2681856136bc565b9350612d36818560208601613881565b612d3f81613abf565b840191505092915050565b6000612d55826136b1565b612d5f81856136cd565b9350612d6f818560208601613881565b612d7881613abf565b840191505092915050565b6000612d8e826136b1565b612d9881856136de565b9350612da8818560208601613881565b80840191505092915050565b6000612dc1602b836136cd565b9150612dcc82613ad0565b604082019050919050565b6000612de46032836136cd565b9150612def82613b1f565b604082019050919050565b6000612e076026836136cd565b9150612e1282613b6e565b604082019050919050565b6000612e2a6002836136de565b9150612e3582613bbd565b600282019050919050565b6000612e4d6025836136cd565b9150612e5882613be6565b604082019050919050565b6000612e706011836136cd565b9150612e7b82613c35565b602082019050919050565b6000612e93601c836136cd565b9150612e9e82613c5e565b602082019050919050565b6000612eb66024836136cd565b9150612ec182613c87565b604082019050919050565b6000612ed96019836136cd565b9150612ee482613cd6565b602082019050919050565b6000612efc6030836136de565b9150612f0782613cff565b603082019050919050565b6000612f1f602c836136cd565b9150612f2a82613d4e565b604082019050919050565b6000612f426038836136cd565b9150612f4d82613d9d565b604082019050919050565b6000612f656001836136de565b9150612f7082613dec565b600182019050919050565b6000612f886014836136de565b9150612f9382613e15565b601482019050919050565b6000612fab602a836136cd565b9150612fb682613e3e565b604082019050919050565b6000612fce6029836136cd565b9150612fd982613e8d565b604082019050919050565b6000612ff1602e836136cd565b9150612ffc82613edc565b604082019050919050565b60006130146020836136cd565b915061301f82613f2b565b602082019050919050565b60006130376001836136de565b915061304282613f54565b600182019050919050565b600061305a6031836136cd565b915061306582613f7d565b604082019050919050565b600061307d602c836136cd565b915061308882613fcc565b604082019050919050565b60006130a06020836136cd565b91506130ab8261401b565b602082019050919050565b60006130c3602f836136cd565b91506130ce82614044565b604082019050919050565b60006130e66021836136cd565b91506130f182614093565b604082019050919050565b60006131096012836136de565b9150613114826140e2565b601282019050919050565b600061312c6082836136de565b91506131378261410b565b608282019050919050565b600061314f601d836136de565b915061315a826141cc565b601d82019050919050565b60006131726031836136cd565b915061317d826141f5565b604082019050919050565b6000613195602c836136cd565b91506131a082614244565b604082019050919050565b60006131b86001836136de565b91506131c382614293565b600182019050919050565b60006131db6052836136de565b91506131e6826142bc565b605282019050919050565b6131fa81613868565b82525050565b600061320c8285612d83565b91506132188284612d83565b91508190509392505050565b600061322f82612f7b565b915061323b8286612d83565b9150613246826131ab565b91506132528285612d83565b915061325d82612e1d565b91506132688261311f565b915061327382612eef565b915061327e826130fc565b915061328a8284612d83565b915061329582612f58565b91506132a08261302a565b9150819050949350505050565b60006132b882613142565b91506132c48284612d83565b915081905092915050565b60006132da826131ce565b91506132e68284612d83565b915081905092915050565b60006020820190506133066000830184612cf3565b92915050565b60006080820190506133216000830187612cf3565b61332e6020830186612cf3565b61333b60408301856131f1565b818103606083015261334d8184612d11565b905095945050505050565b600060208201905061336d6000830184612d02565b92915050565b6000602082019050818103600083015261338d8184612d4a565b905092915050565b600060208201905081810360008301526133ae81612db4565b9050919050565b600060208201905081810360008301526133ce81612dd7565b9050919050565b600060208201905081810360008301526133ee81612dfa565b9050919050565b6000602082019050818103600083015261340e81612e40565b9050919050565b6000602082019050818103600083015261342e81612e63565b9050919050565b6000602082019050818103600083015261344e81612e86565b9050919050565b6000602082019050818103600083015261346e81612ea9565b9050919050565b6000602082019050818103600083015261348e81612ecc565b9050919050565b600060208201905081810360008301526134ae81612f12565b9050919050565b600060208201905081810360008301526134ce81612f35565b9050919050565b600060208201905081810360008301526134ee81612f9e565b9050919050565b6000602082019050818103600083015261350e81612fc1565b9050919050565b6000602082019050818103600083015261352e81612fe4565b9050919050565b6000602082019050818103600083015261354e81613007565b9050919050565b6000602082019050818103600083015261356e8161304d565b9050919050565b6000602082019050818103600083015261358e81613070565b9050919050565b600060208201905081810360008301526135ae81613093565b9050919050565b600060208201905081810360008301526135ce816130b6565b9050919050565b600060208201905081810360008301526135ee816130d9565b9050919050565b6000602082019050818103600083015261360e81613165565b9050919050565b6000602082019050818103600083015261362e81613188565b9050919050565b600060208201905061364a60008301846131f1565b92915050565b600061365a61366b565b905061366682826138e6565b919050565b6000604051905090565b600067ffffffffffffffff8211156136905761368f613a7c565b5b61369982613abf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136f482613868565b91506136ff83613868565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561373457613733613991565b5b828201905092915050565b600061374a82613868565b915061375583613868565b925082613765576137646139c0565b5b828204905092915050565b600061377b82613868565b915061378683613868565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137bf576137be613991565b5b828202905092915050565b60006137d582613868565b91506137e083613868565b9250828210156137f3576137f2613991565b5b828203905092915050565b600061380982613848565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561389f578082015181840152602081019050613884565b838111156138ae576000848401525b50505050565b600060028204905060018216806138cc57607f821691505b602082108114156138e0576138df6139ef565b5b50919050565b6138ef82613abf565b810181811067ffffffffffffffff8211171561390e5761390d613a7c565b5b80604052505050565b600061392282613868565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561395557613954613991565b5b600182019050919050565b600061396b82613868565b915061397683613868565b925082613986576139856139c0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f416c6c20746f6b656e73206d696e746564000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f22696d6167655f64617461223a202268747470733a2f2f692e696d6775722e6360008201527f6f6d2f3468344c3766642e706e67222c00000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f2200000000000000000000000000000000000000000000000000000000000000600082015250565b7f7b226e616d65223a20224173685661756c742023000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f22616e696d6174696f6e5f75726c223a20220000000000000000000000000000600082015250565b7f226465736372697074696f6e223a20225468697320746f6b656e206368616e6760008201527f657320646570656e64696e67206f6e20697473206f776e65722773202441534860208201527f20746f6b656e2062616c616e63652e20456163682073796d626f6c207265707260408201527f6573656e747320313020244153482e20436c69636b20746f20696e766572742e60608201527f222c000000000000000000000000000000000000000000000000000000000000608082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f68747470733a2f2f676174657761792e70696e6174612e636c6f75642f69706660008201527f732f516d50695169537878555062484a7a6256614758444b623153543174777460208201527f536d5158466d4e4e5356583279416f532f3f0000000000000000000000000000604082015250565b61433a816137fe565b811461434557600080fd5b50565b61435181613810565b811461435c57600080fd5b50565b6143688161381c565b811461437357600080fd5b50565b61437f81613868565b811461438a57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220178e026bbc44f2f6ec8a3ee629cf5fbe25c2bb4e6de03e3808fda1877e85d40264736f6c63430008070033

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.