ETH Price: $3,495.84 (-0.10%)
Gas: 5 Gwei

Token

Godjira Mfers (GODJIRAMF)
 

Overview

Max Total Supply

559 GODJIRAMF

Holders

150

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
iwatchhentai.eth
Balance
3 GODJIRAMF
0x6AF71b3aD135d102e08139B15D507303CBFe6EcF
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:
GodjiraMFers

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-12
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: Gdj2.sol


pragma solidity >=0.7.0 <0.9.0;





contract GodjiraMFers is ERC721A, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public constant MAX_PER_MINT = 20;
    address public constant w1 = 0x8031eF52D8693cABa9025CBdCF08d2257E42b63D;
    address public constant w2 = 0xCfc7913A97BafD6df08A4500eDdC4f597135A5A2;
    address public constant w3 = 0xE004Da7F81F89E3E88D963f2FDaAe11043eFbb21;

    uint256 public price = 0.01 ether;
    uint256 public maxSupply = 1111;
    bool public publicSaleStarted = false;

    string public baseURI = "";

    constructor() ERC721A("Godjira Mfers", "GODJIRAMF") {
    }

    function togglePublicSaleStarted() external onlyOwner {
        publicSaleStarted = !publicSaleStarted;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice * (1 ether);
    }

    function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
	    maxSupply = _newMaxSupply;
	}

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
	    string memory currentBaseURI = _baseURI();
	    return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ".json")) : "";
    }

    /// Public Sale mint function
    /// @param tokens number of tokens to mint
    /// @dev reverts if any of the public sale preconditions aren't satisfied
    function mint(uint256 tokens) external payable {
        require(publicSaleStarted, "Public sale has not started");
        require(tokens <= MAX_PER_MINT, "Cannot purchase this many tokens in a transaction");
        require(totalSupply() + tokens <= maxSupply, "Minting would exceed max supply");
        require(tokens > 0, "Must mint at least one token");
        require(price * tokens <= msg.value, "ETH amount is incorrect");
        
        _safeMint(_msgSender(), tokens);
    }

    /// Owner only mint function
    /// Does not require eth
    /// @param to address of the recepient
    /// @param tokens number of tokens to mint
    /// @dev reverts if any of the preconditions aren't satisfied
    function ownerMint(address to, uint256 tokens) external onlyOwner {
        require(totalSupply() + tokens <= maxSupply, "Minting would exceed max supply");
        require(tokens > 0, "Must mint at least one token");

        _safeMint(to, tokens);
    }

    /// Distribute funds to wallets
    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        _withdraw(w1, ((balance * 40) / 100));
        _withdraw(w2, ((balance * 40) / 100));
        _withdraw(w3, ((balance * 20) / 100));
        _withdraw(w1, address(this).balance);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Failed to withdraw Ether");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"w1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"w2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"w3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052662386f26fc10000600955610457600a556000600b60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600c90805190602001906200005792919062000219565b503480156200006557600080fd5b506040518060400160405280600d81526020017f476f646a697261204d66657273000000000000000000000000000000000000008152506040518060400160405280600981526020017f474f444a4952414d4600000000000000000000000000000000000000000000008152508160029080519060200190620000ea92919062000219565b5080600390805190602001906200010392919062000219565b50620001146200014260201b60201c565b60008190555050506200013c620001306200014b60201b60201c565b6200015360201b60201c565b6200032e565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022790620002c9565b90600052602060002090601f0160209004810192826200024b576000855562000297565b82601f106200026657805160ff191683800117855562000297565b8280016001018555821562000297579182015b828111156200029657825182559160200191906001019062000279565b5b509050620002a69190620002aa565b5090565b5b80821115620002c5576000816000905550600101620002ab565b5090565b60006002820490506001821680620002e257607f821691505b60208210811415620002f957620002f8620002ff565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613b3d806200033e6000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd14610687578063d5abeb01146106c4578063e985e9c5146106ef578063f2fde38b1461072c576101e3565b8063a0712d68146105ee578063a22cb4651461060a578063a2e9147714610633578063b88d4fde1461065e576101e3565b806391b7f5ed116100d157806391b7f5ed1461054457806395d89b411461056d578063a035b1fe14610598578063a044c987146105c3576101e3565b8063715018a6146104c05780637e44755b146104d7578063853828b6146105025780638da5cb5b14610519576101e3565b806323b872dd1161017a57806355f804b31161014957806355f804b3146103f25780636352211e1461041b5780636c0360eb1461045857806370a0823114610483576101e3565b806323b872dd146103605780632f8145751461038957806342842e0e146103a0578063484b973c146103c9576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806309d42b30146102e157806318160ddd1461030c578063228025e814610337576101e3565b806301ffc9a7146101e857806303cf8a201461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612e5f565b610755565b60405161021c919061324e565b60405180910390f35b34801561023157600080fd5b5061023a610837565b60405161024791906131e7565b60405180910390f35b34801561025c57600080fd5b5061026561084f565b6040516102729190613269565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612f02565b6108e1565b6040516102af91906131e7565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612e1f565b61095d565b005b3480156102ed57600080fd5b506102f6610a68565b60405161030391906133cb565b60405180910390f35b34801561031857600080fd5b50610321610a6d565b60405161032e91906133cb565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612f02565b610a84565b005b34801561036c57600080fd5b5061038760048036038101906103829190612d09565b610b0a565b005b34801561039557600080fd5b5061039e610b1a565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190612d09565b610bc2565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190612e1f565b610be2565b005b3480156103fe57600080fd5b5061041960048036038101906104149190612eb9565b610d06565b005b34801561042757600080fd5b50610442600480360381019061043d9190612f02565b610d9c565b60405161044f91906131e7565b60405180910390f35b34801561046457600080fd5b5061046d610db2565b60405161047a9190613269565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190612c9c565b610e40565b6040516104b791906133cb565b60405180910390f35b3480156104cc57600080fd5b506104d5610f10565b005b3480156104e357600080fd5b506104ec610f98565b6040516104f991906131e7565b60405180910390f35b34801561050e57600080fd5b50610517610fb0565b005b34801561052557600080fd5b5061052e611137565b60405161053b91906131e7565b60405180910390f35b34801561055057600080fd5b5061056b60048036038101906105669190612f02565b611161565b005b34801561057957600080fd5b506105826111fa565b60405161058f9190613269565b60405180910390f35b3480156105a457600080fd5b506105ad61128c565b6040516105ba91906133cb565b60405180910390f35b3480156105cf57600080fd5b506105d8611292565b6040516105e591906131e7565b60405180910390f35b61060860048036038101906106039190612f02565b6112aa565b005b34801561061657600080fd5b50610631600480360381019061062c9190612ddf565b61143b565b005b34801561063f57600080fd5b506106486115b3565b604051610655919061324e565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612d5c565b6115c6565b005b34801561069357600080fd5b506106ae60048036038101906106a99190612f02565b611642565b6040516106bb9190613269565b60405180910390f35b3480156106d057600080fd5b506106d96116e9565b6040516106e691906133cb565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190612cc9565b6116ef565b604051610723919061324e565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190612c9c565b611783565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610830575061082f8261187b565b5b9050919050565b73cfc7913a97bafd6df08a4500eddc4f597135a5a281565b60606002805461085e90613686565b80601f016020809104026020016040519081016040528092919081815260200182805461088a90613686565b80156108d75780601f106108ac576101008083540402835291602001916108d7565b820191906000526020600020905b8154815290600101906020018083116108ba57829003601f168201915b5050505050905090565b60006108ec826118e5565b610922576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096882610d9c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ef611933565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a215750610a1f81610a1a611933565b6116ef565b155b15610a58576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a6383838361193b565b505050565b601481565b6000610a776119ed565b6001546000540303905090565b610a8c611933565b73ffffffffffffffffffffffffffffffffffffffff16610aaa611137565b73ffffffffffffffffffffffffffffffffffffffff1614610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af79061336b565b60405180910390fd5b80600a8190555050565b610b158383836119f6565b505050565b610b22611933565b73ffffffffffffffffffffffffffffffffffffffff16610b40611137565b73ffffffffffffffffffffffffffffffffffffffff1614610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d9061336b565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b610bdd838383604051806020016040528060008152506115c6565b505050565b610bea611933565b73ffffffffffffffffffffffffffffffffffffffff16610c08611137565b73ffffffffffffffffffffffffffffffffffffffff1614610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c559061336b565b60405180910390fd5b600a5481610c6a610a6d565b610c7491906134bb565b1115610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac906132eb565b60405180910390fd5b60008111610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef9061338b565b60405180910390fd5b610d028282611ee7565b5050565b610d0e611933565b73ffffffffffffffffffffffffffffffffffffffff16610d2c611137565b73ffffffffffffffffffffffffffffffffffffffff1614610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d799061336b565b60405180910390fd5b80600c9080519060200190610d98929190612a6d565b5050565b6000610da782611f05565b600001519050919050565b600c8054610dbf90613686565b80601f0160208091040260200160405190810160405280929190818152602001828054610deb90613686565b8015610e385780601f10610e0d57610100808354040283529160200191610e38565b820191906000526020600020905b815481529060010190602001808311610e1b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f18611933565b73ffffffffffffffffffffffffffffffffffffffff16610f36611137565b73ffffffffffffffffffffffffffffffffffffffff1614610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f839061336b565b60405180910390fd5b610f966000612194565b565b738031ef52d8693caba9025cbdcf08d2257e42b63d81565b610fb8611933565b73ffffffffffffffffffffffffffffffffffffffff16610fd6611137565b73ffffffffffffffffffffffffffffffffffffffff161461102c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110239061336b565b60405180910390fd5b600047905060008111611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b9061334b565b60405180910390fd5b6110aa738031ef52d8693caba9025cbdcf08d2257e42b63d606460288461109b9190613542565b6110a59190613511565b61225a565b6110e073cfc7913a97bafd6df08a4500eddc4f597135a5a260646028846110d19190613542565b6110db9190613511565b61225a565b61111673e004da7f81f89e3e88d963f2fdaae11043efbb2160646014846111079190613542565b6111119190613511565b61225a565b611134738031ef52d8693caba9025cbdcf08d2257e42b63d4761225a565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611169611933565b73ffffffffffffffffffffffffffffffffffffffff16611187611137565b73ffffffffffffffffffffffffffffffffffffffff16146111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d49061336b565b60405180910390fd5b670de0b6b3a7640000816111f19190613542565b60098190555050565b60606003805461120990613686565b80601f016020809104026020016040519081016040528092919081815260200182805461123590613686565b80156112825780601f1061125757610100808354040283529160200191611282565b820191906000526020600020905b81548152906001019060200180831161126557829003601f168201915b5050505050905090565b60095481565b73e004da7f81f89e3e88d963f2fdaae11043efbb2181565b600b60009054906101000a900460ff166112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f0906132cb565b60405180910390fd5b601481111561133d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113349061330b565b60405180910390fd5b600a5481611349610a6d565b61135391906134bb565b1115611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b906132eb565b60405180910390fd5b600081116113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce9061338b565b60405180910390fd5b34816009546113e69190613542565b1115611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e9061332b565b60405180910390fd5b611438611432611933565b82611ee7565b50565b611443611933565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114b5611933565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611562611933565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a7919061324e565b60405180910390a35050565b600b60009054906101000a900460ff1681565b6115d18484846119f6565b6115f08373ffffffffffffffffffffffffffffffffffffffff1661230b565b801561160557506116038484848461232e565b155b1561163c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061164d826118e5565b61168c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116839061328b565b60405180910390fd5b600061169661248e565b905060008151116116b657604051806020016040528060008152506116e1565b806116c084612520565b6040516020016116d19291906131a3565b6040516020818303038152906040525b915050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61178b611933565b73ffffffffffffffffffffffffffffffffffffffff166117a9611137565b73ffffffffffffffffffffffffffffffffffffffff16146117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f69061336b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561186f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611866906132ab565b60405180910390fd5b61187881612194565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118f06119ed565b111580156118ff575060005482105b801561192c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611a0182611f05565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a28611933565b73ffffffffffffffffffffffffffffffffffffffff161480611a5b5750611a5a8260000151611a55611933565b6116ef565b5b80611aa05750611a69611933565b73ffffffffffffffffffffffffffffffffffffffff16611a88846108e1565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ad9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b42576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ba9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bb68585856001612681565b611bc6600084846000015161193b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e7757600054811015611e765782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ee08585856001612687565b5050505050565b611f0182826040518060200160405280600081525061268d565b5050565b611f0d612af3565b600082905080611f1b6119ed565b11158015611f2a575060005481105b1561215d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161215b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461203f57809250505061218f565b5b60011561215a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461215557809250505061218f565b612040565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612280906131d2565b60006040518083038185875af1925050503d80600081146122bd576040519150601f19603f3d011682016040523d82523d6000602084013e6122c2565b606091505b5050905080612306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fd906133ab565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612354611933565b8786866040518563ffffffff1660e01b81526004016123769493929190613202565b602060405180830381600087803b15801561239057600080fd5b505af19250505080156123c157506040513d601f19601f820116820180604052508101906123be9190612e8c565b60015b61243b573d80600081146123f1576040519150601f19603f3d011682016040523d82523d6000602084013e6123f6565b606091505b50600081511415612433576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461249d90613686565b80601f01602080910402602001604051908101604052809291908181526020018280546124c990613686565b80156125165780601f106124eb57610100808354040283529160200191612516565b820191906000526020600020905b8154815290600101906020018083116124f957829003601f168201915b5050505050905090565b60606000821415612568576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061267c565b600082905060005b6000821461259a578080612583906136e9565b915050600a826125939190613511565b9150612570565b60008167ffffffffffffffff8111156125b6576125b561381f565b5b6040519080825280601f01601f1916602001820160405280156125e85781602001600182028036833780820191505090505b5090505b6000851461267557600182612601919061359c565b9150600a856126109190613732565b603061261c91906134bb565b60f81b818381518110612632576126316137f0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561266e9190613511565b94506125ec565b8093505050505b919050565b50505050565b50505050565b61269a838383600161269f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561270c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612747576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127546000868387612681565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561291e575061291d8773ffffffffffffffffffffffffffffffffffffffff1661230b565b5b156129e4575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612993600088848060010195508861232e565b6129c9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129245782600054146129df57600080fd5b612a50565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156129e5575b816000819055505050612a666000868387612687565b5050505050565b828054612a7990613686565b90600052602060002090601f016020900481019282612a9b5760008555612ae2565b82601f10612ab457805160ff1916838001178555612ae2565b82800160010185558215612ae2579182015b82811115612ae1578251825591602001919060010190612ac6565b5b509050612aef9190612b36565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b4f576000816000905550600101612b37565b5090565b6000612b66612b618461340b565b6133e6565b905082815260208101848484011115612b8257612b81613853565b5b612b8d848285613644565b509392505050565b6000612ba8612ba38461343c565b6133e6565b905082815260208101848484011115612bc457612bc3613853565b5b612bcf848285613644565b509392505050565b600081359050612be681613aab565b92915050565b600081359050612bfb81613ac2565b92915050565b600081359050612c1081613ad9565b92915050565b600081519050612c2581613ad9565b92915050565b600082601f830112612c4057612c3f61384e565b5b8135612c50848260208601612b53565b91505092915050565b600082601f830112612c6e57612c6d61384e565b5b8135612c7e848260208601612b95565b91505092915050565b600081359050612c9681613af0565b92915050565b600060208284031215612cb257612cb161385d565b5b6000612cc084828501612bd7565b91505092915050565b60008060408385031215612ce057612cdf61385d565b5b6000612cee85828601612bd7565b9250506020612cff85828601612bd7565b9150509250929050565b600080600060608486031215612d2257612d2161385d565b5b6000612d3086828701612bd7565b9350506020612d4186828701612bd7565b9250506040612d5286828701612c87565b9150509250925092565b60008060008060808587031215612d7657612d7561385d565b5b6000612d8487828801612bd7565b9450506020612d9587828801612bd7565b9350506040612da687828801612c87565b925050606085013567ffffffffffffffff811115612dc757612dc6613858565b5b612dd387828801612c2b565b91505092959194509250565b60008060408385031215612df657612df561385d565b5b6000612e0485828601612bd7565b9250506020612e1585828601612bec565b9150509250929050565b60008060408385031215612e3657612e3561385d565b5b6000612e4485828601612bd7565b9250506020612e5585828601612c87565b9150509250929050565b600060208284031215612e7557612e7461385d565b5b6000612e8384828501612c01565b91505092915050565b600060208284031215612ea257612ea161385d565b5b6000612eb084828501612c16565b91505092915050565b600060208284031215612ecf57612ece61385d565b5b600082013567ffffffffffffffff811115612eed57612eec613858565b5b612ef984828501612c59565b91505092915050565b600060208284031215612f1857612f1761385d565b5b6000612f2684828501612c87565b91505092915050565b612f38816135d0565b82525050565b612f47816135e2565b82525050565b6000612f588261346d565b612f628185613483565b9350612f72818560208601613653565b612f7b81613862565b840191505092915050565b6000612f9182613478565b612f9b818561349f565b9350612fab818560208601613653565b612fb481613862565b840191505092915050565b6000612fca82613478565b612fd481856134b0565b9350612fe4818560208601613653565b80840191505092915050565b6000612ffd60218361349f565b915061300882613873565b604082019050919050565b600061302060268361349f565b915061302b826138c2565b604082019050919050565b6000613043601b8361349f565b915061304e82613911565b602082019050919050565b6000613066601f8361349f565b91506130718261393a565b602082019050919050565b600061308960318361349f565b915061309482613963565b604082019050919050565b60006130ac60178361349f565b91506130b7826139b2565b602082019050919050565b60006130cf6005836134b0565b91506130da826139db565b600582019050919050565b60006130f260138361349f565b91506130fd82613a04565b602082019050919050565b600061311560208361349f565b915061312082613a2d565b602082019050919050565b6000613138601c8361349f565b915061314382613a56565b602082019050919050565b600061315b60188361349f565b915061316682613a7f565b602082019050919050565b600061317e600083613494565b915061318982613aa8565b600082019050919050565b61319d8161363a565b82525050565b60006131af8285612fbf565b91506131bb8284612fbf565b91506131c6826130c2565b91508190509392505050565b60006131dd82613171565b9150819050919050565b60006020820190506131fc6000830184612f2f565b92915050565b60006080820190506132176000830187612f2f565b6132246020830186612f2f565b6132316040830185613194565b81810360608301526132438184612f4d565b905095945050505050565b60006020820190506132636000830184612f3e565b92915050565b600060208201905081810360008301526132838184612f86565b905092915050565b600060208201905081810360008301526132a481612ff0565b9050919050565b600060208201905081810360008301526132c481613013565b9050919050565b600060208201905081810360008301526132e481613036565b9050919050565b6000602082019050818103600083015261330481613059565b9050919050565b600060208201905081810360008301526133248161307c565b9050919050565b600060208201905081810360008301526133448161309f565b9050919050565b60006020820190508181036000830152613364816130e5565b9050919050565b6000602082019050818103600083015261338481613108565b9050919050565b600060208201905081810360008301526133a48161312b565b9050919050565b600060208201905081810360008301526133c48161314e565b9050919050565b60006020820190506133e06000830184613194565b92915050565b60006133f0613401565b90506133fc82826136b8565b919050565b6000604051905090565b600067ffffffffffffffff8211156134265761342561381f565b5b61342f82613862565b9050602081019050919050565b600067ffffffffffffffff8211156134575761345661381f565b5b61346082613862565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006134c68261363a565b91506134d18361363a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561350657613505613763565b5b828201905092915050565b600061351c8261363a565b91506135278361363a565b92508261353757613536613792565b5b828204905092915050565b600061354d8261363a565b91506135588361363a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561359157613590613763565b5b828202905092915050565b60006135a78261363a565b91506135b28361363a565b9250828210156135c5576135c4613763565b5b828203905092915050565b60006135db8261361a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613671578082015181840152602081019050613656565b83811115613680576000848401525b50505050565b6000600282049050600182168061369e57607f821691505b602082108114156136b2576136b16137c1565b5b50919050565b6136c182613862565b810181811067ffffffffffffffff821117156136e0576136df61381f565b5b80604052505050565b60006136f48261363a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561372757613726613763565b5b600182019050919050565b600061373d8261363a565b91506137488361363a565b92508261375857613757613792565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360008201527f20696e2061207472616e73616374696f6e000000000000000000000000000000602082015250565b7f45544820616d6f756e7420697320696e636f7272656374000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000600082015250565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b50565b613ab4816135d0565b8114613abf57600080fd5b50565b613acb816135e2565b8114613ad657600080fd5b50565b613ae2816135ee565b8114613aed57600080fd5b50565b613af98161363a565b8114613b0457600080fd5b5056fea2646970667358221220643ac12f922f7780bc10b89f6de4a6f4eaa5cd93ecda8aba09bfe425a4ac780764736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063a0712d6811610095578063c87b56dd11610064578063c87b56dd14610687578063d5abeb01146106c4578063e985e9c5146106ef578063f2fde38b1461072c576101e3565b8063a0712d68146105ee578063a22cb4651461060a578063a2e9147714610633578063b88d4fde1461065e576101e3565b806391b7f5ed116100d157806391b7f5ed1461054457806395d89b411461056d578063a035b1fe14610598578063a044c987146105c3576101e3565b8063715018a6146104c05780637e44755b146104d7578063853828b6146105025780638da5cb5b14610519576101e3565b806323b872dd1161017a57806355f804b31161014957806355f804b3146103f25780636352211e1461041b5780636c0360eb1461045857806370a0823114610483576101e3565b806323b872dd146103605780632f8145751461038957806342842e0e146103a0578063484b973c146103c9576101e3565b8063095ea7b3116101b6578063095ea7b3146102b857806309d42b30146102e157806318160ddd1461030c578063228025e814610337576101e3565b806301ffc9a7146101e857806303cf8a201461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612e5f565b610755565b60405161021c919061324e565b60405180910390f35b34801561023157600080fd5b5061023a610837565b60405161024791906131e7565b60405180910390f35b34801561025c57600080fd5b5061026561084f565b6040516102729190613269565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612f02565b6108e1565b6040516102af91906131e7565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612e1f565b61095d565b005b3480156102ed57600080fd5b506102f6610a68565b60405161030391906133cb565b60405180910390f35b34801561031857600080fd5b50610321610a6d565b60405161032e91906133cb565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612f02565b610a84565b005b34801561036c57600080fd5b5061038760048036038101906103829190612d09565b610b0a565b005b34801561039557600080fd5b5061039e610b1a565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190612d09565b610bc2565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190612e1f565b610be2565b005b3480156103fe57600080fd5b5061041960048036038101906104149190612eb9565b610d06565b005b34801561042757600080fd5b50610442600480360381019061043d9190612f02565b610d9c565b60405161044f91906131e7565b60405180910390f35b34801561046457600080fd5b5061046d610db2565b60405161047a9190613269565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190612c9c565b610e40565b6040516104b791906133cb565b60405180910390f35b3480156104cc57600080fd5b506104d5610f10565b005b3480156104e357600080fd5b506104ec610f98565b6040516104f991906131e7565b60405180910390f35b34801561050e57600080fd5b50610517610fb0565b005b34801561052557600080fd5b5061052e611137565b60405161053b91906131e7565b60405180910390f35b34801561055057600080fd5b5061056b60048036038101906105669190612f02565b611161565b005b34801561057957600080fd5b506105826111fa565b60405161058f9190613269565b60405180910390f35b3480156105a457600080fd5b506105ad61128c565b6040516105ba91906133cb565b60405180910390f35b3480156105cf57600080fd5b506105d8611292565b6040516105e591906131e7565b60405180910390f35b61060860048036038101906106039190612f02565b6112aa565b005b34801561061657600080fd5b50610631600480360381019061062c9190612ddf565b61143b565b005b34801561063f57600080fd5b506106486115b3565b604051610655919061324e565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190612d5c565b6115c6565b005b34801561069357600080fd5b506106ae60048036038101906106a99190612f02565b611642565b6040516106bb9190613269565b60405180910390f35b3480156106d057600080fd5b506106d96116e9565b6040516106e691906133cb565b60405180910390f35b3480156106fb57600080fd5b5061071660048036038101906107119190612cc9565b6116ef565b604051610723919061324e565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190612c9c565b611783565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610830575061082f8261187b565b5b9050919050565b73cfc7913a97bafd6df08a4500eddc4f597135a5a281565b60606002805461085e90613686565b80601f016020809104026020016040519081016040528092919081815260200182805461088a90613686565b80156108d75780601f106108ac576101008083540402835291602001916108d7565b820191906000526020600020905b8154815290600101906020018083116108ba57829003601f168201915b5050505050905090565b60006108ec826118e5565b610922576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096882610d9c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109ef611933565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a215750610a1f81610a1a611933565b6116ef565b155b15610a58576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a6383838361193b565b505050565b601481565b6000610a776119ed565b6001546000540303905090565b610a8c611933565b73ffffffffffffffffffffffffffffffffffffffff16610aaa611137565b73ffffffffffffffffffffffffffffffffffffffff1614610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af79061336b565b60405180910390fd5b80600a8190555050565b610b158383836119f6565b505050565b610b22611933565b73ffffffffffffffffffffffffffffffffffffffff16610b40611137565b73ffffffffffffffffffffffffffffffffffffffff1614610b96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8d9061336b565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b610bdd838383604051806020016040528060008152506115c6565b505050565b610bea611933565b73ffffffffffffffffffffffffffffffffffffffff16610c08611137565b73ffffffffffffffffffffffffffffffffffffffff1614610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c559061336b565b60405180910390fd5b600a5481610c6a610a6d565b610c7491906134bb565b1115610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac906132eb565b60405180910390fd5b60008111610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef9061338b565b60405180910390fd5b610d028282611ee7565b5050565b610d0e611933565b73ffffffffffffffffffffffffffffffffffffffff16610d2c611137565b73ffffffffffffffffffffffffffffffffffffffff1614610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d799061336b565b60405180910390fd5b80600c9080519060200190610d98929190612a6d565b5050565b6000610da782611f05565b600001519050919050565b600c8054610dbf90613686565b80601f0160208091040260200160405190810160405280929190818152602001828054610deb90613686565b8015610e385780601f10610e0d57610100808354040283529160200191610e38565b820191906000526020600020905b815481529060010190602001808311610e1b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f18611933565b73ffffffffffffffffffffffffffffffffffffffff16610f36611137565b73ffffffffffffffffffffffffffffffffffffffff1614610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f839061336b565b60405180910390fd5b610f966000612194565b565b738031ef52d8693caba9025cbdcf08d2257e42b63d81565b610fb8611933565b73ffffffffffffffffffffffffffffffffffffffff16610fd6611137565b73ffffffffffffffffffffffffffffffffffffffff161461102c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110239061336b565b60405180910390fd5b600047905060008111611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b9061334b565b60405180910390fd5b6110aa738031ef52d8693caba9025cbdcf08d2257e42b63d606460288461109b9190613542565b6110a59190613511565b61225a565b6110e073cfc7913a97bafd6df08a4500eddc4f597135a5a260646028846110d19190613542565b6110db9190613511565b61225a565b61111673e004da7f81f89e3e88d963f2fdaae11043efbb2160646014846111079190613542565b6111119190613511565b61225a565b611134738031ef52d8693caba9025cbdcf08d2257e42b63d4761225a565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611169611933565b73ffffffffffffffffffffffffffffffffffffffff16611187611137565b73ffffffffffffffffffffffffffffffffffffffff16146111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d49061336b565b60405180910390fd5b670de0b6b3a7640000816111f19190613542565b60098190555050565b60606003805461120990613686565b80601f016020809104026020016040519081016040528092919081815260200182805461123590613686565b80156112825780601f1061125757610100808354040283529160200191611282565b820191906000526020600020905b81548152906001019060200180831161126557829003601f168201915b5050505050905090565b60095481565b73e004da7f81f89e3e88d963f2fdaae11043efbb2181565b600b60009054906101000a900460ff166112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f0906132cb565b60405180910390fd5b601481111561133d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113349061330b565b60405180910390fd5b600a5481611349610a6d565b61135391906134bb565b1115611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b906132eb565b60405180910390fd5b600081116113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce9061338b565b60405180910390fd5b34816009546113e69190613542565b1115611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e9061332b565b60405180910390fd5b611438611432611933565b82611ee7565b50565b611443611933565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a8576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114b5611933565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611562611933565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a7919061324e565b60405180910390a35050565b600b60009054906101000a900460ff1681565b6115d18484846119f6565b6115f08373ffffffffffffffffffffffffffffffffffffffff1661230b565b801561160557506116038484848461232e565b155b1561163c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061164d826118e5565b61168c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116839061328b565b60405180910390fd5b600061169661248e565b905060008151116116b657604051806020016040528060008152506116e1565b806116c084612520565b6040516020016116d19291906131a3565b6040516020818303038152906040525b915050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61178b611933565b73ffffffffffffffffffffffffffffffffffffffff166117a9611137565b73ffffffffffffffffffffffffffffffffffffffff16146117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f69061336b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561186f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611866906132ab565b60405180910390fd5b61187881612194565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118f06119ed565b111580156118ff575060005482105b801561192c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611a0182611f05565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611a28611933565b73ffffffffffffffffffffffffffffffffffffffff161480611a5b5750611a5a8260000151611a55611933565b6116ef565b5b80611aa05750611a69611933565b73ffffffffffffffffffffffffffffffffffffffff16611a88846108e1565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611ad9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611b42576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ba9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611bb68585856001612681565b611bc6600084846000015161193b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e7757600054811015611e765782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ee08585856001612687565b5050505050565b611f0182826040518060200160405280600081525061268d565b5050565b611f0d612af3565b600082905080611f1b6119ed565b11158015611f2a575060005481105b1561215d576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161215b57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461203f57809250505061218f565b5b60011561215a57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461215557809250505061218f565b612040565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612280906131d2565b60006040518083038185875af1925050503d80600081146122bd576040519150601f19603f3d011682016040523d82523d6000602084013e6122c2565b606091505b5050905080612306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fd906133ab565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612354611933565b8786866040518563ffffffff1660e01b81526004016123769493929190613202565b602060405180830381600087803b15801561239057600080fd5b505af19250505080156123c157506040513d601f19601f820116820180604052508101906123be9190612e8c565b60015b61243b573d80600081146123f1576040519150601f19603f3d011682016040523d82523d6000602084013e6123f6565b606091505b50600081511415612433576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461249d90613686565b80601f01602080910402602001604051908101604052809291908181526020018280546124c990613686565b80156125165780601f106124eb57610100808354040283529160200191612516565b820191906000526020600020905b8154815290600101906020018083116124f957829003601f168201915b5050505050905090565b60606000821415612568576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061267c565b600082905060005b6000821461259a578080612583906136e9565b915050600a826125939190613511565b9150612570565b60008167ffffffffffffffff8111156125b6576125b561381f565b5b6040519080825280601f01601f1916602001820160405280156125e85781602001600182028036833780820191505090505b5090505b6000851461267557600182612601919061359c565b9150600a856126109190613732565b603061261c91906134bb565b60f81b818381518110612632576126316137f0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561266e9190613511565b94506125ec565b8093505050505b919050565b50505050565b50505050565b61269a838383600161269f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561270c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612747576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127546000868387612681565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561291e575061291d8773ffffffffffffffffffffffffffffffffffffffff1661230b565b5b156129e4575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612993600088848060010195508861232e565b6129c9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129245782600054146129df57600080fd5b612a50565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156129e5575b816000819055505050612a666000868387612687565b5050505050565b828054612a7990613686565b90600052602060002090601f016020900481019282612a9b5760008555612ae2565b82601f10612ab457805160ff1916838001178555612ae2565b82800160010185558215612ae2579182015b82811115612ae1578251825591602001919060010190612ac6565b5b509050612aef9190612b36565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b4f576000816000905550600101612b37565b5090565b6000612b66612b618461340b565b6133e6565b905082815260208101848484011115612b8257612b81613853565b5b612b8d848285613644565b509392505050565b6000612ba8612ba38461343c565b6133e6565b905082815260208101848484011115612bc457612bc3613853565b5b612bcf848285613644565b509392505050565b600081359050612be681613aab565b92915050565b600081359050612bfb81613ac2565b92915050565b600081359050612c1081613ad9565b92915050565b600081519050612c2581613ad9565b92915050565b600082601f830112612c4057612c3f61384e565b5b8135612c50848260208601612b53565b91505092915050565b600082601f830112612c6e57612c6d61384e565b5b8135612c7e848260208601612b95565b91505092915050565b600081359050612c9681613af0565b92915050565b600060208284031215612cb257612cb161385d565b5b6000612cc084828501612bd7565b91505092915050565b60008060408385031215612ce057612cdf61385d565b5b6000612cee85828601612bd7565b9250506020612cff85828601612bd7565b9150509250929050565b600080600060608486031215612d2257612d2161385d565b5b6000612d3086828701612bd7565b9350506020612d4186828701612bd7565b9250506040612d5286828701612c87565b9150509250925092565b60008060008060808587031215612d7657612d7561385d565b5b6000612d8487828801612bd7565b9450506020612d9587828801612bd7565b9350506040612da687828801612c87565b925050606085013567ffffffffffffffff811115612dc757612dc6613858565b5b612dd387828801612c2b565b91505092959194509250565b60008060408385031215612df657612df561385d565b5b6000612e0485828601612bd7565b9250506020612e1585828601612bec565b9150509250929050565b60008060408385031215612e3657612e3561385d565b5b6000612e4485828601612bd7565b9250506020612e5585828601612c87565b9150509250929050565b600060208284031215612e7557612e7461385d565b5b6000612e8384828501612c01565b91505092915050565b600060208284031215612ea257612ea161385d565b5b6000612eb084828501612c16565b91505092915050565b600060208284031215612ecf57612ece61385d565b5b600082013567ffffffffffffffff811115612eed57612eec613858565b5b612ef984828501612c59565b91505092915050565b600060208284031215612f1857612f1761385d565b5b6000612f2684828501612c87565b91505092915050565b612f38816135d0565b82525050565b612f47816135e2565b82525050565b6000612f588261346d565b612f628185613483565b9350612f72818560208601613653565b612f7b81613862565b840191505092915050565b6000612f9182613478565b612f9b818561349f565b9350612fab818560208601613653565b612fb481613862565b840191505092915050565b6000612fca82613478565b612fd481856134b0565b9350612fe4818560208601613653565b80840191505092915050565b6000612ffd60218361349f565b915061300882613873565b604082019050919050565b600061302060268361349f565b915061302b826138c2565b604082019050919050565b6000613043601b8361349f565b915061304e82613911565b602082019050919050565b6000613066601f8361349f565b91506130718261393a565b602082019050919050565b600061308960318361349f565b915061309482613963565b604082019050919050565b60006130ac60178361349f565b91506130b7826139b2565b602082019050919050565b60006130cf6005836134b0565b91506130da826139db565b600582019050919050565b60006130f260138361349f565b91506130fd82613a04565b602082019050919050565b600061311560208361349f565b915061312082613a2d565b602082019050919050565b6000613138601c8361349f565b915061314382613a56565b602082019050919050565b600061315b60188361349f565b915061316682613a7f565b602082019050919050565b600061317e600083613494565b915061318982613aa8565b600082019050919050565b61319d8161363a565b82525050565b60006131af8285612fbf565b91506131bb8284612fbf565b91506131c6826130c2565b91508190509392505050565b60006131dd82613171565b9150819050919050565b60006020820190506131fc6000830184612f2f565b92915050565b60006080820190506132176000830187612f2f565b6132246020830186612f2f565b6132316040830185613194565b81810360608301526132438184612f4d565b905095945050505050565b60006020820190506132636000830184612f3e565b92915050565b600060208201905081810360008301526132838184612f86565b905092915050565b600060208201905081810360008301526132a481612ff0565b9050919050565b600060208201905081810360008301526132c481613013565b9050919050565b600060208201905081810360008301526132e481613036565b9050919050565b6000602082019050818103600083015261330481613059565b9050919050565b600060208201905081810360008301526133248161307c565b9050919050565b600060208201905081810360008301526133448161309f565b9050919050565b60006020820190508181036000830152613364816130e5565b9050919050565b6000602082019050818103600083015261338481613108565b9050919050565b600060208201905081810360008301526133a48161312b565b9050919050565b600060208201905081810360008301526133c48161314e565b9050919050565b60006020820190506133e06000830184613194565b92915050565b60006133f0613401565b90506133fc82826136b8565b919050565b6000604051905090565b600067ffffffffffffffff8211156134265761342561381f565b5b61342f82613862565b9050602081019050919050565b600067ffffffffffffffff8211156134575761345661381f565b5b61346082613862565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006134c68261363a565b91506134d18361363a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561350657613505613763565b5b828201905092915050565b600061351c8261363a565b91506135278361363a565b92508261353757613536613792565b5b828204905092915050565b600061354d8261363a565b91506135588361363a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561359157613590613763565b5b828202905092915050565b60006135a78261363a565b91506135b28361363a565b9250828210156135c5576135c4613763565b5b828203905092915050565b60006135db8261361a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613671578082015181840152602081019050613656565b83811115613680576000848401525b50505050565b6000600282049050600182168061369e57607f821691505b602082108114156136b2576136b16137c1565b5b50919050565b6136c182613862565b810181811067ffffffffffffffff821117156136e0576136df61381f565b5b80604052505050565b60006136f48261363a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561372757613726613763565b5b600182019050919050565b600061373d8261363a565b91506137488361363a565b92508261375857613757613792565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360008201527f20696e2061207472616e73616374696f6e000000000000000000000000000000602082015250565b7f45544820616d6f756e7420697320696e636f7272656374000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000600082015250565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b50565b613ab4816135d0565b8114613abf57600080fd5b50565b613acb816135e2565b8114613ad657600080fd5b50565b613ae2816135ee565b8114613aed57600080fd5b50565b613af98161363a565b8114613b0457600080fd5b5056fea2646970667358221220643ac12f922f7780bc10b89f6de4a6f4eaa5cd93ecda8aba09bfe425a4ac780764736f6c63430008070033

Deployed Bytecode Sourcemap

52790:3274:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35251:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53032:71;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38638:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40141:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39704:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52906:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34500:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53762:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41006:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53417:111;;;;;;;;;;;;;:::i;:::-;;41247:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55217:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53536:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38446:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53314:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35620:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11790:103;;;;;;;;;;;;;:::i;:::-;;52954:71;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55522:343;;;;;;;;;;;;;:::i;:::-;;11139:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53650:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38807;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53190:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53110:71;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54490:496;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40417:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53268:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41503:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53978:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53230:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40775:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12048:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35251:305;35353:4;35405:25;35390:40;;;:11;:40;;;;:105;;;;35462:33;35447:48;;;:11;:48;;;;35390:105;:158;;;;35512:36;35536:11;35512:23;:36::i;:::-;35390:158;35370:178;;35251:305;;;:::o;53032:71::-;53061:42;53032:71;:::o;38638:100::-;38692:13;38725:5;38718:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38638:100;:::o;40141:204::-;40209:7;40234:16;40242:7;40234;:16::i;:::-;40229:64;;40259:34;;;;;;;;;;;;;;40229:64;40313:15;:24;40329:7;40313:24;;;;;;;;;;;;;;;;;;;;;40306:31;;40141:204;;;:::o;39704:371::-;39777:13;39793:24;39809:7;39793:15;:24::i;:::-;39777:40;;39838:5;39832:11;;:2;:11;;;39828:48;;;39852:24;;;;;;;;;;;;;;39828:48;39909:5;39893:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;39919:37;39936:5;39943:12;:10;:12::i;:::-;39919:16;:37::i;:::-;39918:38;39893:63;39889:138;;;39980:35;;;;;;;;;;;;;;39889:138;40039:28;40048:2;40052:7;40061:5;40039:8;:28::i;:::-;39766:309;39704:371;;:::o;52906:41::-;52945:2;52906:41;:::o;34500:303::-;34544:7;34769:15;:13;:15::i;:::-;34754:12;;34738:13;;:28;:46;34731:53;;34500:303;:::o;53762:100::-;11370:12;:10;:12::i;:::-;11359:23;;:7;:5;:7::i;:::-;:23;;;11351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53844:13:::1;53832:9;:25;;;;53762:100:::0;:::o;41006:170::-;41140:28;41150:4;41156:2;41160:7;41140:9;:28::i;:::-;41006:170;;;:::o;53417:111::-;11370:12;:10;:12::i;:::-;11359:23;;:7;:5;:7::i;:::-;:23;;;11351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53503:17:::1;;;;;;;;;;;53502:18;53482:17;;:38;;;;;;;;;;;;;;;;;;53417:111::o:0;41247:185::-;41385:39;41402:4;41408:2;41412:7;41385:39;;;;;;;;;;;;:16;:39::i;:::-;41247:185;;;:::o;55217:260::-;11370:12;:10;:12::i;:::-;11359:23;;:7;:5;:7::i;:::-;:23;;;11351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55328:9:::1;;55318:6;55302:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;55294:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;55401:1;55392:6;:10;55384:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;55448:21;55458:2;55462:6;55448:9;:21::i;:::-;55217:260:::0;;:::o;53536:106::-;11370:12;:10;:12::i;:::-;11359:23;;:7;:5;:7::i;:::-;:23;;;11351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53623:11:::1;53613:7;:21;;;;;;;;;;;;:::i;:::-;;53536:106:::0;:::o;38446:125::-;38510:7;38537:21;38550:7;38537:12;:21::i;:::-;:26;;;38530:33;;38446:125;;;:::o;53314:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35620:206::-;35684:7;35725:1;35708:19;;:5;:19;;;35704:60;;;35736:28;;;;;;;;;;;;;;35704:60;35790:12;:19;35803:5;35790:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;35782:36;;35775:43;;35620:206;;;:::o;11790:103::-;11370:12;:10;:12::i;:::-;11359:23;;:7;:5;:7::i;:::-;:23;;;11351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11855:30:::1;11882:1;11855:18;:30::i;:::-;11790:103::o:0;52954:71::-;52983:42;52954:71;:::o;55522:343::-;11370:12;:10;:12::i;:::-;11359:23;;:7;:5;:7::i;:::-;:23;;;11351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55573:15:::1;55591:21;55573:39;;55641:1;55631:7;:11;55623:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;55677:37;52983:42;55709:3;55703:2;55693:7;:12;;;;:::i;:::-;55692:20;;;;:::i;:::-;55677:9;:37::i;:::-;55725;53061:42;55757:3;55751:2;55741:7;:12;;;;:::i;:::-;55740:20;;;;:::i;:::-;55725:9;:37::i;:::-;55773;53139:42;55805:3;55799:2;55789:7;:12;;;;:::i;:::-;55788:20;;;;:::i;:::-;55773:9;:37::i;:::-;55821:36;52983:42;55835:21;55821:9;:36::i;:::-;55562:303;55522:343::o:0;11139:87::-;11185:7;11212:6;;;;;;;;;;;11205:13;;11139:87;:::o;53650:104::-;11370:12;:10;:12::i;:::-;11359:23;;:7;:5;:7::i;:::-;:23;;;11351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53738:7:::1;53725:9;:21;;;;:::i;:::-;53717:5;:29;;;;53650:104:::0;:::o;38807:::-;38863:13;38896:7;38889:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38807:104;:::o;53190:33::-;;;;:::o;53110:71::-;53139:42;53110:71;:::o;54490:496::-;54556:17;;;;;;;;;;;54548:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;52945:2;54624:6;:22;;54616:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;54745:9;;54735:6;54719:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;54711:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;54818:1;54809:6;:10;54801:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;54889:9;54879:6;54871:5;;:14;;;;:::i;:::-;:27;;54863:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;54947:31;54957:12;:10;:12::i;:::-;54971:6;54947:9;:31::i;:::-;54490:496;:::o;40417:287::-;40528:12;:10;:12::i;:::-;40516:24;;:8;:24;;;40512:54;;;40549:17;;;;;;;;;;;;;;40512:54;40624:8;40579:18;:32;40598:12;:10;:12::i;:::-;40579:32;;;;;;;;;;;;;;;:42;40612:8;40579:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;40677:8;40648:48;;40663:12;:10;:12::i;:::-;40648:48;;;40687:8;40648:48;;;;;;:::i;:::-;;;;;;;;40417:287;;:::o;53268:37::-;;;;;;;;;;;;;:::o;41503:369::-;41670:28;41680:4;41686:2;41690:7;41670:9;:28::i;:::-;41713:15;:2;:13;;;:15::i;:::-;:76;;;;;41733:56;41764:4;41770:2;41774:7;41783:5;41733:30;:56::i;:::-;41732:57;41713:76;41709:156;;;41813:40;;;;;;;;;;;;;;41709:156;41503:369;;;;:::o;53978:342::-;54051:13;54085:16;54093:7;54085;:16::i;:::-;54077:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;54147:28;54178:10;:8;:10::i;:::-;54147:41;;54234:1;54209:14;54203:28;:32;:109;;;;;;;;;;;;;;;;;54262:14;54278:18;:7;:16;:18::i;:::-;54245:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54203:109;54196:116;;;53978:342;;;:::o;53230:31::-;;;;:::o;40775:164::-;40872:4;40896:18;:25;40915:5;40896:25;;;;;;;;;;;;;;;:35;40922:8;40896:35;;;;;;;;;;;;;;;;;;;;;;;;;40889:42;;40775:164;;;;:::o;12048:201::-;11370:12;:10;:12::i;:::-;11359:23;;:7;:5;:7::i;:::-;:23;;;11351:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12157:1:::1;12137:22;;:8;:22;;;;12129:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12213:28;12232:8;12213:18;:28::i;:::-;12048:201:::0;:::o;23923:157::-;24008:4;24047:25;24032:40;;;:11;:40;;;;24025:47;;23923:157;;;:::o;42127:187::-;42184:4;42227:7;42208:15;:13;:15::i;:::-;:26;;:53;;;;;42248:13;;42238:7;:23;42208:53;:98;;;;;42279:11;:20;42291:7;42279:20;;;;;;;;;;;:27;;;;;;;;;;;;42278:28;42208:98;42201:105;;42127:187;;;:::o;9863:98::-;9916:7;9943:10;9936:17;;9863:98;:::o;49740:196::-;49882:2;49855:15;:24;49871:7;49855:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;49920:7;49916:2;49900:28;;49909:5;49900:28;;;;;;;;;;;;49740:196;;;:::o;34224:92::-;34280:7;34307:1;34300:8;;34224:92;:::o;45240:2113::-;45355:35;45393:21;45406:7;45393:12;:21::i;:::-;45355:59;;45427:22;45469:13;:18;;;45453:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;45504:50;45521:13;:18;;;45541:12;:10;:12::i;:::-;45504:16;:50::i;:::-;45453:101;:154;;;;45595:12;:10;:12::i;:::-;45571:36;;:20;45583:7;45571:11;:20::i;:::-;:36;;;45453:154;45427:181;;45626:17;45621:66;;45652:35;;;;;;;;;;;;;;45621:66;45724:4;45702:26;;:13;:18;;;:26;;;45698:67;;45737:28;;;;;;;;;;;;;;45698:67;45794:1;45780:16;;:2;:16;;;45776:52;;;45805:23;;;;;;;;;;;;;;45776:52;45841:43;45863:4;45869:2;45873:7;45882:1;45841:21;:43::i;:::-;45949:49;45966:1;45970:7;45979:13;:18;;;45949:8;:49::i;:::-;46324:1;46294:12;:18;46307:4;46294:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46368:1;46340:12;:16;46353:2;46340:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46414:2;46386:11;:20;46398:7;46386:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46476:15;46431:11;:20;46443:7;46431:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46744:19;46776:1;46766:7;:11;46744:33;;46837:1;46796:43;;:11;:24;46808:11;46796:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46792:445;;;47021:13;;47007:11;:27;47003:219;;;47091:13;:18;;;47059:11;:24;47071:11;47059:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;47174:13;:28;;;47132:11;:24;47144:11;47132:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;47003:219;46792:445;46269:979;47284:7;47280:2;47265:27;;47274:4;47265:27;;;;;;;;;;;;47303:42;47324:4;47330:2;47334:7;47343:1;47303:20;:42::i;:::-;45344:2009;;45240:2113;;;:::o;42322:104::-;42391:27;42401:2;42405:8;42391:27;;;;;;;;;;;;:9;:27::i;:::-;42322:104;;:::o;37275:1109::-;37337:21;;:::i;:::-;37371:12;37386:7;37371:22;;37454:4;37435:15;:13;:15::i;:::-;:23;;:47;;;;;37469:13;;37462:4;:20;37435:47;37431:886;;;37503:31;37537:11;:17;37549:4;37537:17;;;;;;;;;;;37503:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37578:9;:16;;;37573:729;;37649:1;37623:28;;:9;:14;;;:28;;;37619:101;;37687:9;37680:16;;;;;;37619:101;38022:261;38029:4;38022:261;;;38062:6;;;;;;;;38107:11;:17;38119:4;38107:17;;;;;;;;;;;38095:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38181:1;38155:28;;:9;:14;;;:28;;;38151:109;;38223:9;38216:16;;;;;;38151:109;38022:261;;;37573:729;37484:833;37431:886;38345:31;;;;;;;;;;;;;;37275:1109;;;;:::o;12409:191::-;12483:16;12502:6;;;;;;;;;;;12483:25;;12528:8;12519:6;;:17;;;;;;;;;;;;;;;;;;12583:8;12552:40;;12573:8;12552:40;;;;;;;;;;;;12472:128;12409:191;:::o;55873:188::-;55947:12;55965:8;:13;;55986:7;55965:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55946:52;;;56017:7;56009:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;55935:126;55873:188;;:::o;13840:326::-;13900:4;14157:1;14135:7;:19;;;:23;14128:30;;13840:326;;;:::o;50428:667::-;50591:4;50628:2;50612:36;;;50649:12;:10;:12::i;:::-;50663:4;50669:7;50678:5;50612:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50608:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50863:1;50846:6;:13;:18;50842:235;;;50892:40;;;;;;;;;;;;;;50842:235;51035:6;51029:13;51020:6;51016:2;51012:15;51005:38;50608:480;50741:45;;;50731:55;;;:6;:55;;;;50724:62;;;50428:667;;;;;;:::o;53870:100::-;53922:13;53955:7;53948:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53870:100;:::o;7425:723::-;7481:13;7711:1;7702:5;:10;7698:53;;;7729:10;;;;;;;;;;;;;;;;;;;;;7698:53;7761:12;7776:5;7761:20;;7792:14;7817:78;7832:1;7824:4;:9;7817:78;;7850:8;;;;;:::i;:::-;;;;7881:2;7873:10;;;;;:::i;:::-;;;7817:78;;;7905:19;7937:6;7927:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7905:39;;7955:154;7971:1;7962:5;:10;7955:154;;7999:1;7989:11;;;;;:::i;:::-;;;8066:2;8058:5;:10;;;;:::i;:::-;8045:2;:24;;;;:::i;:::-;8032:39;;8015:6;8022;8015:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8095:2;8086:11;;;;;:::i;:::-;;;7955:154;;;8133:6;8119:21;;;;;7425:723;;;;:::o;51743:159::-;;;;;:::o;52561:158::-;;;;;:::o;42789:163::-;42912:32;42918:2;42922:8;42932:5;42939:4;42912:5;:32::i;:::-;42789:163;;;:::o;43211:1775::-;43350:20;43373:13;;43350:36;;43415:1;43401:16;;:2;:16;;;43397:48;;;43426:19;;;;;;;;;;;;;;43397:48;43472:1;43460:8;:13;43456:44;;;43482:18;;;;;;;;;;;;;;43456:44;43513:61;43543:1;43547:2;43551:12;43565:8;43513:21;:61::i;:::-;43886:8;43851:12;:16;43864:2;43851:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43950:8;43910:12;:16;43923:2;43910:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44009:2;43976:11;:25;43988:12;43976:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44076:15;44026:11;:25;44038:12;44026:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44109:20;44132:12;44109:35;;44159:11;44188:8;44173:12;:23;44159:37;;44217:4;:23;;;;;44225:15;:2;:13;;;:15::i;:::-;44217:23;44213:641;;;44261:314;44317:12;44313:2;44292:38;;44309:1;44292:38;;;;;;;;;;;;44358:69;44397:1;44401:2;44405:14;;;;;;44421:5;44358:30;:69::i;:::-;44353:174;;44463:40;;;;;;;;;;;;;;44353:174;44570:3;44554:12;:19;;44261:314;;44656:12;44639:13;;:29;44635:43;;44670:8;;;44635:43;44213:641;;;44719:120;44775:14;;;;;;44771:2;44750:40;;44767:1;44750:40;;;;;;;;;;;;44834:3;44818:12;:19;;44719:120;;44213:641;44884:12;44868:13;:28;;;;43826:1082;;44918:60;44947:1;44951:2;44955:12;44969:8;44918:20;:60::i;:::-;43339:1647;43211:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:400::-;10908:3;10929:84;11011:1;11006:3;10929:84;:::i;:::-;10922:91;;11022:93;11111:3;11022:93;:::i;:::-;11140:1;11135:3;11131:11;11124:18;;10748:400;;;:::o;11154:366::-;11296:3;11317:67;11381:2;11376:3;11317:67;:::i;:::-;11310:74;;11393:93;11482:3;11393:93;:::i;:::-;11511:2;11506:3;11502:12;11495:19;;11154:366;;;:::o;11526:::-;11668:3;11689:67;11753:2;11748:3;11689:67;:::i;:::-;11682:74;;11765:93;11854:3;11765:93;:::i;:::-;11883:2;11878:3;11874:12;11867:19;;11526:366;;;:::o;11898:::-;12040:3;12061:67;12125:2;12120:3;12061:67;:::i;:::-;12054:74;;12137:93;12226:3;12137:93;:::i;:::-;12255:2;12250:3;12246:12;12239:19;;11898:366;;;:::o;12270:::-;12412:3;12433:67;12497:2;12492:3;12433:67;:::i;:::-;12426:74;;12509:93;12598:3;12509:93;:::i;:::-;12627:2;12622:3;12618:12;12611:19;;12270:366;;;:::o;12642:398::-;12801:3;12822:83;12903:1;12898:3;12822:83;:::i;:::-;12815:90;;12914:93;13003:3;12914:93;:::i;:::-;13032:1;13027:3;13023:11;13016:18;;12642:398;;;:::o;13046:118::-;13133:24;13151:5;13133:24;:::i;:::-;13128:3;13121:37;13046:118;;:::o;13170:701::-;13451:3;13473:95;13564:3;13555:6;13473:95;:::i;:::-;13466:102;;13585:95;13676:3;13667:6;13585:95;:::i;:::-;13578:102;;13697:148;13841:3;13697:148;:::i;:::-;13690:155;;13862:3;13855:10;;13170:701;;;;;:::o;13877:379::-;14061:3;14083:147;14226:3;14083:147;:::i;:::-;14076:154;;14247:3;14240:10;;13877:379;;;:::o;14262:222::-;14355:4;14393:2;14382:9;14378:18;14370:26;;14406:71;14474:1;14463:9;14459:17;14450:6;14406:71;:::i;:::-;14262:222;;;;:::o;14490:640::-;14685:4;14723:3;14712:9;14708:19;14700:27;;14737:71;14805:1;14794:9;14790:17;14781:6;14737:71;:::i;:::-;14818:72;14886:2;14875:9;14871:18;14862:6;14818:72;:::i;:::-;14900;14968:2;14957:9;14953:18;14944:6;14900:72;:::i;:::-;15019:9;15013:4;15009:20;15004:2;14993:9;14989:18;14982:48;15047:76;15118:4;15109:6;15047:76;:::i;:::-;15039:84;;14490:640;;;;;;;:::o;15136:210::-;15223:4;15261:2;15250:9;15246:18;15238:26;;15274:65;15336:1;15325:9;15321:17;15312:6;15274:65;:::i;:::-;15136:210;;;;:::o;15352:313::-;15465:4;15503:2;15492:9;15488:18;15480:26;;15552:9;15546:4;15542:20;15538:1;15527:9;15523:17;15516:47;15580:78;15653:4;15644:6;15580:78;:::i;:::-;15572:86;;15352:313;;;;:::o;15671:419::-;15837:4;15875:2;15864:9;15860:18;15852:26;;15924:9;15918:4;15914:20;15910:1;15899:9;15895:17;15888:47;15952:131;16078:4;15952:131;:::i;:::-;15944:139;;15671:419;;;:::o;16096:::-;16262:4;16300:2;16289:9;16285:18;16277:26;;16349:9;16343:4;16339:20;16335:1;16324:9;16320:17;16313:47;16377:131;16503:4;16377:131;:::i;:::-;16369:139;;16096:419;;;:::o;16521:::-;16687:4;16725:2;16714:9;16710:18;16702:26;;16774:9;16768:4;16764:20;16760:1;16749:9;16745:17;16738:47;16802:131;16928:4;16802:131;:::i;:::-;16794:139;;16521:419;;;:::o;16946:::-;17112:4;17150:2;17139:9;17135:18;17127:26;;17199:9;17193:4;17189:20;17185:1;17174:9;17170:17;17163:47;17227:131;17353:4;17227:131;:::i;:::-;17219:139;;16946:419;;;:::o;17371:::-;17537:4;17575:2;17564:9;17560:18;17552:26;;17624:9;17618:4;17614:20;17610:1;17599:9;17595:17;17588:47;17652:131;17778:4;17652:131;:::i;:::-;17644:139;;17371:419;;;:::o;17796:::-;17962:4;18000:2;17989:9;17985:18;17977:26;;18049:9;18043:4;18039:20;18035:1;18024:9;18020:17;18013:47;18077:131;18203:4;18077:131;:::i;:::-;18069:139;;17796:419;;;:::o;18221:::-;18387:4;18425:2;18414:9;18410:18;18402:26;;18474:9;18468:4;18464:20;18460:1;18449:9;18445:17;18438:47;18502:131;18628:4;18502:131;:::i;:::-;18494:139;;18221:419;;;:::o;18646:::-;18812:4;18850:2;18839:9;18835:18;18827:26;;18899:9;18893:4;18889:20;18885:1;18874:9;18870:17;18863:47;18927:131;19053:4;18927:131;:::i;:::-;18919:139;;18646:419;;;:::o;19071:::-;19237:4;19275:2;19264:9;19260:18;19252:26;;19324:9;19318:4;19314:20;19310:1;19299:9;19295:17;19288:47;19352:131;19478:4;19352:131;:::i;:::-;19344:139;;19071:419;;;:::o;19496:::-;19662:4;19700:2;19689:9;19685:18;19677:26;;19749:9;19743:4;19739:20;19735:1;19724:9;19720:17;19713:47;19777:131;19903:4;19777:131;:::i;:::-;19769:139;;19496:419;;;:::o;19921:222::-;20014:4;20052:2;20041:9;20037:18;20029:26;;20065:71;20133:1;20122:9;20118:17;20109:6;20065:71;:::i;:::-;19921:222;;;;:::o;20149:129::-;20183:6;20210:20;;:::i;:::-;20200:30;;20239:33;20267:4;20259:6;20239:33;:::i;:::-;20149:129;;;:::o;20284:75::-;20317:6;20350:2;20344:9;20334:19;;20284:75;:::o;20365:307::-;20426:4;20516:18;20508:6;20505:30;20502:56;;;20538:18;;:::i;:::-;20502:56;20576:29;20598:6;20576:29;:::i;:::-;20568:37;;20660:4;20654;20650:15;20642:23;;20365:307;;;:::o;20678:308::-;20740:4;20830:18;20822:6;20819:30;20816:56;;;20852:18;;:::i;:::-;20816:56;20890:29;20912:6;20890:29;:::i;:::-;20882:37;;20974:4;20968;20964:15;20956:23;;20678:308;;;:::o;20992:98::-;21043:6;21077:5;21071:12;21061:22;;20992:98;;;:::o;21096:99::-;21148:6;21182:5;21176:12;21166:22;;21096:99;;;:::o;21201:168::-;21284:11;21318:6;21313:3;21306:19;21358:4;21353:3;21349:14;21334:29;;21201:168;;;;:::o;21375:147::-;21476:11;21513:3;21498:18;;21375:147;;;;:::o;21528:169::-;21612:11;21646:6;21641:3;21634:19;21686:4;21681:3;21677:14;21662:29;;21528:169;;;;:::o;21703:148::-;21805:11;21842:3;21827:18;;21703:148;;;;:::o;21857:305::-;21897:3;21916:20;21934:1;21916:20;:::i;:::-;21911:25;;21950:20;21968:1;21950:20;:::i;:::-;21945:25;;22104:1;22036:66;22032:74;22029:1;22026:81;22023:107;;;22110:18;;:::i;:::-;22023:107;22154:1;22151;22147:9;22140:16;;21857:305;;;;:::o;22168:185::-;22208:1;22225:20;22243:1;22225:20;:::i;:::-;22220:25;;22259:20;22277:1;22259:20;:::i;:::-;22254:25;;22298:1;22288:35;;22303:18;;:::i;:::-;22288:35;22345:1;22342;22338:9;22333:14;;22168:185;;;;:::o;22359:348::-;22399:7;22422:20;22440:1;22422:20;:::i;:::-;22417:25;;22456:20;22474:1;22456:20;:::i;:::-;22451:25;;22644:1;22576:66;22572:74;22569:1;22566:81;22561:1;22554:9;22547:17;22543:105;22540:131;;;22651:18;;:::i;:::-;22540:131;22699:1;22696;22692:9;22681:20;;22359:348;;;;:::o;22713:191::-;22753:4;22773:20;22791:1;22773:20;:::i;:::-;22768:25;;22807:20;22825:1;22807:20;:::i;:::-;22802:25;;22846:1;22843;22840:8;22837:34;;;22851:18;;:::i;:::-;22837:34;22896:1;22893;22889:9;22881:17;;22713:191;;;;:::o;22910:96::-;22947:7;22976:24;22994:5;22976:24;:::i;:::-;22965:35;;22910:96;;;:::o;23012:90::-;23046:7;23089:5;23082:13;23075:21;23064:32;;23012:90;;;:::o;23108:149::-;23144:7;23184:66;23177:5;23173:78;23162:89;;23108:149;;;:::o;23263:126::-;23300:7;23340:42;23333:5;23329:54;23318:65;;23263:126;;;:::o;23395:77::-;23432:7;23461:5;23450:16;;23395:77;;;:::o;23478:154::-;23562:6;23557:3;23552;23539:30;23624:1;23615:6;23610:3;23606:16;23599:27;23478:154;;;:::o;23638:307::-;23706:1;23716:113;23730:6;23727:1;23724:13;23716:113;;;23815:1;23810:3;23806:11;23800:18;23796:1;23791:3;23787:11;23780:39;23752:2;23749:1;23745:10;23740:15;;23716:113;;;23847:6;23844:1;23841:13;23838:101;;;23927:1;23918:6;23913:3;23909:16;23902:27;23838:101;23687:258;23638:307;;;:::o;23951:320::-;23995:6;24032:1;24026:4;24022:12;24012:22;;24079:1;24073:4;24069:12;24100:18;24090:81;;24156:4;24148:6;24144:17;24134:27;;24090:81;24218:2;24210:6;24207:14;24187:18;24184:38;24181:84;;;24237:18;;:::i;:::-;24181:84;24002:269;23951:320;;;:::o;24277:281::-;24360:27;24382:4;24360:27;:::i;:::-;24352:6;24348:40;24490:6;24478:10;24475:22;24454:18;24442:10;24439:34;24436:62;24433:88;;;24501:18;;:::i;:::-;24433:88;24541:10;24537:2;24530:22;24320:238;24277:281;;:::o;24564:233::-;24603:3;24626:24;24644:5;24626:24;:::i;:::-;24617:33;;24672:66;24665:5;24662:77;24659:103;;;24742:18;;:::i;:::-;24659:103;24789:1;24782:5;24778:13;24771:20;;24564:233;;;:::o;24803:176::-;24835:1;24852:20;24870:1;24852:20;:::i;:::-;24847:25;;24886:20;24904:1;24886:20;:::i;:::-;24881:25;;24925:1;24915:35;;24930:18;;:::i;:::-;24915:35;24971:1;24968;24964:9;24959:14;;24803:176;;;;:::o;24985:180::-;25033:77;25030:1;25023:88;25130:4;25127:1;25120:15;25154:4;25151:1;25144:15;25171:180;25219:77;25216:1;25209:88;25316:4;25313:1;25306:15;25340:4;25337:1;25330:15;25357:180;25405:77;25402:1;25395:88;25502:4;25499:1;25492:15;25526:4;25523:1;25516:15;25543:180;25591:77;25588:1;25581:88;25688:4;25685:1;25678:15;25712:4;25709:1;25702:15;25729:180;25777:77;25774:1;25767:88;25874:4;25871:1;25864:15;25898:4;25895:1;25888:15;25915:117;26024:1;26021;26014:12;26038:117;26147:1;26144;26137:12;26161:117;26270:1;26267;26260:12;26284:117;26393:1;26390;26383:12;26407:102;26448:6;26499:2;26495:7;26490:2;26483:5;26479:14;26475:28;26465:38;;26407:102;;;:::o;26515:220::-;26655:34;26651:1;26643:6;26639:14;26632:58;26724:3;26719:2;26711:6;26707:15;26700:28;26515:220;:::o;26741:225::-;26881:34;26877:1;26869:6;26865:14;26858:58;26950:8;26945:2;26937:6;26933:15;26926:33;26741:225;:::o;26972:177::-;27112:29;27108:1;27100:6;27096:14;27089:53;26972:177;:::o;27155:181::-;27295:33;27291:1;27283:6;27279:14;27272:57;27155:181;:::o;27342:236::-;27482:34;27478:1;27470:6;27466:14;27459:58;27551:19;27546:2;27538:6;27534:15;27527:44;27342:236;:::o;27584:173::-;27724:25;27720:1;27712:6;27708:14;27701:49;27584:173;:::o;27763:155::-;27903:7;27899:1;27891:6;27887:14;27880:31;27763:155;:::o;27924:169::-;28064:21;28060:1;28052:6;28048:14;28041:45;27924:169;:::o;28099:182::-;28239:34;28235:1;28227:6;28223:14;28216:58;28099:182;:::o;28287:178::-;28427:30;28423:1;28415:6;28411:14;28404:54;28287:178;:::o;28471:174::-;28611:26;28607:1;28599:6;28595:14;28588:50;28471:174;:::o;28651:114::-;;:::o;28771:122::-;28844:24;28862:5;28844:24;:::i;:::-;28837:5;28834:35;28824:63;;28883:1;28880;28873:12;28824:63;28771:122;:::o;28899:116::-;28969:21;28984:5;28969:21;:::i;:::-;28962:5;28959:32;28949:60;;29005:1;29002;28995:12;28949:60;28899:116;:::o;29021:120::-;29093:23;29110:5;29093:23;:::i;:::-;29086:5;29083:34;29073:62;;29131:1;29128;29121:12;29073:62;29021:120;:::o;29147:122::-;29220:24;29238:5;29220:24;:::i;:::-;29213:5;29210:35;29200:63;;29259:1;29256;29249:12;29200:63;29147:122;:::o

Swarm Source

ipfs://643ac12f922f7780bc10b89f6de4a6f4eaa5cd93ecda8aba09bfe425a4ac7807
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.