ETH Price: $2,973.35 (-2.55%)
Gas: 3 Gwei

Token

Doge Army (DA)
 

Overview

Max Total Supply

1,021 DA

Holders

490

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DA
0x5eb9698286aefc872f1b9d6a0668f3dd04a25a38
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:
DogeArmy

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-08-02
*/

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

// 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 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 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) {
        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) {
        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) {
        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 {
        _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

    /**
     * @dev 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: Dogearmy.sol


pragma solidity ^0.8.0;




contract DogeArmy is ERC721A, Ownable {
    using Strings for uint256;
    
    string public baseURI;
    string public baseExtension = ".json";
    uint256 public mintRate = 0.02 ether;
    bool public paused = true;
    uint256 public maxSupply = 10000;
    uint256 public maxFreeMint = 1;
    uint256 public maxPerWallet = 5;

    mapping(address => uint256) public freeMintClaimed;

    constructor(string memory _initBaseURI) ERC721A("Doge Army", "DA") {
        setBaseURI(_initBaseURI);
        _safeMint(msg.sender, 503);
    }

    function mint(uint256 quantity) external payable {
        uint256 supply = totalSupply();
        require(!paused, "The contract is paused!");
        require(quantity > 0, "Quantity Must Be Higher Than Zero");
        require(supply + quantity <= maxSupply, "Max Supply Reached");
        require(quantity <= maxPerWallet, "Max limit exceed!");
        require(balanceOf(msg.sender) + quantity <= maxPerWallet, "Max NFT minted");

        if (msg.sender != owner()) {
            require(msg.value >= mintRate * quantity, "Insufficient Funds");
        }
        _safeMint(msg.sender, quantity);
    }

    function freeMint(uint256 quantity) external payable {
        uint256 supply = totalSupply();
        require(!paused, "The contract is paused!");
        require(quantity > 0, "Quantity Must Be Higher Than Zero");
        require(quantity <= maxFreeMint, "Max limit exceed!");
        require(freeMintClaimed[msg.sender] + quantity <= maxFreeMint, "Already claimed free mint!");
        require(supply + quantity <= maxSupply, "Max Supply Reached");
        _safeMint(msg.sender, quantity);
        freeMintClaimed[msg.sender]++;
    }

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

    // Tokne URI using ID
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    // Set mint cost
    function setCost(uint256 _cost)
        public
        onlyOwner
    {
        mintRate = _cost;
    }

    // Set free mint limit
    function SetMaxFreeMint(uint256 _amount) public onlyOwner {
        maxFreeMint = _amount;
    }

    // Set free mint limit
    function SetMaxPerWallet(uint256 _amount) public onlyOwner {
        maxPerWallet = _amount;
    }

    // Change suppy number
    function setMaxSuppy(uint256 _amount) public onlyOwner {
        maxSupply = _amount;
    }

    // Change mint state
    // false -> active
    // true --> inactive
    function flipMintState() public onlyOwner {
        paused = !paused;
    }

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

    function airdropNFTs(uint256 quantity, address _address) public onlyOwner {
        uint256 supply = totalSupply();
        require(supply + quantity <= maxSupply, "Max Supply Reached");
        _safeMint(_address, quantity);
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function withdraw() public onlyOwner {
        (bool ts, ) = payable(owner()).call{value: address(this).balance}("");
        require(ts);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"SetMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"SetMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airdropNFTs","outputs":[],"stateMutability":"nonpayable","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSuppy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005192919062000958565b5066470de4df820000600b556001600c60006101000a81548160ff021916908315150217905550612710600d556001600e556005600f553480156200009557600080fd5b50604051620049a9380380620049a98339818101604052810190620000bb919062000acf565b6040518060400160405280600981526020017f446f67652041726d7900000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f444100000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200013f92919062000958565b5080600390805190602001906200015892919062000958565b5062000169620001bd60201b60201c565b60008190555050506200019162000185620001c660201b60201c565b620001ce60201b60201c565b620001a2816200029460201b60201c565b620001b6336101f7620002c060201b60201c565b5062000e7e565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a4620002e660201b60201c565b8060099080519060200190620002bc92919062000958565b5050565b620002e28282604051806020016040528060008152506200037760201b60201c565b5050565b620002f6620001c660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200031c6200039160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000375576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036c9062000bfe565b60405180910390fd5b565b6200038c8383836001620003bb60201b60201c565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141562000429576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141562000465576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200047a6000868387620007b760201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015620006525750620006518773ffffffffffffffffffffffffffffffffffffffff16620007bd60201b6200183d1760201c565b5b1562000725575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620006d06000888480600101955088620007e060201b60201c565b62000707576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415620006595782600054146200071f57600080fd5b62000792565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141562000726575b816000819055505050620007b060008683876200095260201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200080e620001c660201b60201c565b8786866040518563ffffffff1660e01b815260040162000832949392919062000baa565b602060405180830381600087803b1580156200084d57600080fd5b505af19250505080156200088157506040513d601f19601f820116820180604052508101906200087e919062000a9d565b60015b620008ff573d8060008114620008b4576040519150601f19603f3d011682016040523d82523d6000602084013e620008b9565b606091505b50600081511415620008f7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b828054620009669062000d4c565b90600052602060002090601f0160209004810192826200098a5760008555620009d6565b82601f10620009a557805160ff1916838001178555620009d6565b82800160010185558215620009d6579182015b82811115620009d5578251825591602001919060010190620009b8565b5b509050620009e59190620009e9565b5090565b5b8082111562000a04576000816000905550600101620009ea565b5090565b600062000a1f62000a198462000c49565b62000c20565b90508281526020810184848401111562000a3e5762000a3d62000e1b565b5b62000a4b84828562000d16565b509392505050565b60008151905062000a648162000e64565b92915050565b600082601f83011262000a825762000a8162000e16565b5b815162000a9484826020860162000a08565b91505092915050565b60006020828403121562000ab65762000ab562000e25565b5b600062000ac68482850162000a53565b91505092915050565b60006020828403121562000ae85762000ae762000e25565b5b600082015167ffffffffffffffff81111562000b095762000b0862000e20565b5b62000b178482850162000a6a565b91505092915050565b62000b2b8162000cac565b82525050565b600062000b3e8262000c7f565b62000b4a818562000c8a565b935062000b5c81856020860162000d16565b62000b678162000e2a565b840191505092915050565b600062000b8160208362000c9b565b915062000b8e8262000e3b565b602082019050919050565b62000ba48162000d0c565b82525050565b600060808201905062000bc1600083018762000b20565b62000bd0602083018662000b20565b62000bdf604083018562000b99565b818103606083015262000bf3818462000b31565b905095945050505050565b6000602082019050818103600083015262000c198162000b72565b9050919050565b600062000c2c62000c3f565b905062000c3a828262000d82565b919050565b6000604051905090565b600067ffffffffffffffff82111562000c675762000c6662000de7565b5b62000c728262000e2a565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000cb98262000cec565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000d3657808201518184015260208101905062000d19565b8381111562000d46576000848401525b50505050565b6000600282049050600182168062000d6557607f821691505b6020821081141562000d7c5762000d7b62000db8565b5b50919050565b62000d8d8262000e2a565b810181811067ffffffffffffffff8211171562000daf5762000dae62000de7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000e6f8162000cc0565b811462000e7b57600080fd5b50565b613b1b8062000e8e6000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610733578063da3ef23f1461075e578063e0ec7c3614610787578063e985e9c5146107c4578063f2fde38b146108015761020f565b8063b88d4fde14610677578063c6682862146106a0578063c87b56dd146106cb578063ca0dcf16146107085761020f565b806395d89b41116100e757806395d89b41146105b35780639ec571d5146105de578063a0712d6814610607578063a22cb46514610623578063a591252d1461064c5761020f565b806370a0823114610518578063715018a6146105555780637c928fe91461056c5780638da5cb5b146105885761020f565b8063405328281161019b57806355f804b31161016a57806355f804b31461044557806359c74f291461046e5780635c975abb146104855780636352211e146104b05780636c0360eb146104ed5761020f565b8063405328281461039f57806342842e0e146103c857806344a0d68a146103f1578063453c23101461041a5761020f565b80630c85dbfe116101e25780630c85dbfe146102e257806318160ddd1461030b5780632137ef8e1461033657806323b872dd1461035f5780633ccfd60b146103885761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612db3565b61082a565b6040516102489190613240565b60405180910390f35b34801561025d57600080fd5b5061026661090c565b604051610273919061325b565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612e56565b61099e565b6040516102b091906131d9565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612d73565b610a1a565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612e56565b610b25565b005b34801561031757600080fd5b50610320610b37565b60405161032d91906133bd565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190612e83565b610b4e565b005b34801561036b57600080fd5b5061038660048036038101906103819190612c5d565b610bc1565b005b34801561039457600080fd5b5061039d610bd1565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612e56565b610c59565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612c5d565b610c6b565b005b3480156103fd57600080fd5b5061041860048036038101906104139190612e56565b610c8b565b005b34801561042657600080fd5b5061042f610c9d565b60405161043c91906133bd565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190612e0d565b610ca3565b005b34801561047a57600080fd5b50610483610cc5565b005b34801561049157600080fd5b5061049a610cf9565b6040516104a79190613240565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190612e56565b610d0c565b6040516104e491906131d9565b60405180910390f35b3480156104f957600080fd5b50610502610d22565b60405161050f919061325b565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a9190612bf0565b610db0565b60405161054c91906133bd565b60405180910390f35b34801561056157600080fd5b5061056a610e80565b005b61058660048036038101906105819190612e56565b610e94565b005b34801561059457600080fd5b5061059d6110ba565b6040516105aa91906131d9565b60405180910390f35b3480156105bf57600080fd5b506105c86110e4565b6040516105d5919061325b565b60405180910390f35b3480156105ea57600080fd5b5061060560048036038101906106009190612e56565b611176565b005b610621600480360381019061061c9190612e56565b611188565b005b34801561062f57600080fd5b5061064a60048036038101906106459190612d33565b6113ad565b005b34801561065857600080fd5b50610661611525565b60405161066e91906133bd565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190612cb0565b61152b565b005b3480156106ac57600080fd5b506106b56115a7565b6040516106c2919061325b565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190612e56565b611635565b6040516106ff919061325b565b60405180910390f35b34801561071457600080fd5b5061071d6116df565b60405161072a91906133bd565b60405180910390f35b34801561073f57600080fd5b506107486116e5565b60405161075591906133bd565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190612e0d565b6116eb565b005b34801561079357600080fd5b506107ae60048036038101906107a99190612bf0565b61170d565b6040516107bb91906133bd565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190612c1d565b611725565b6040516107f89190613240565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190612bf0565b6117b9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610905575061090482611860565b5b9050919050565b60606002805461091b9061368d565b80601f01602080910402602001604051908101604052809291908181526020018280546109479061368d565b80156109945780601f1061096957610100808354040283529160200191610994565b820191906000526020600020905b81548152906001019060200180831161097757829003601f168201915b5050505050905090565b60006109a9826118ca565b6109df576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2582610d0c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aac611918565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ade5750610adc81610ad7611918565b611725565b155b15610b15576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b20838383611920565b505050565b610b2d6119d2565b80600e8190555050565b6000610b41611a50565b6001546000540303905090565b610b566119d2565b6000610b60610b37565b9050600d548382610b7191906134c2565b1115610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba99061337d565b60405180910390fd5b610bbc8284611a59565b505050565b610bcc838383611a77565b505050565b610bd96119d2565b6000610be36110ba565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c06906131c4565b60006040518083038185875af1925050503d8060008114610c43576040519150601f19603f3d011682016040523d82523d6000602084013e610c48565b606091505b5050905080610c5657600080fd5b50565b610c616119d2565b80600f8190555050565b610c868383836040518060200160405280600081525061152b565b505050565b610c936119d2565b80600b8190555050565b600f5481565b610cab6119d2565b8060099080519060200190610cc19291906129c1565b5050565b610ccd6119d2565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b600c60009054906101000a900460ff1681565b6000610d1782611f2d565b600001519050919050565b60098054610d2f9061368d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5b9061368d565b8015610da85780601f10610d7d57610100808354040283529160200191610da8565b820191906000526020600020905b815481529060010190602001808311610d8b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e18576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e886119d2565b610e9260006121bc565b565b6000610e9e610b37565b9050600c60009054906101000a900460ff1615610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee7906132fd565b60405180910390fd5b60008211610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a9061329d565b60405180910390fd5b600e54821115610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f9061335d565b60405180910390fd5b600e5482601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fc691906134c2565b1115611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe9061339d565b60405180910390fd5b600d54828261101691906134c2565b1115611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e9061337d565b60405180910390fd5b6110613383611a59565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906110b1906136f0565b91905055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110f39061368d565b80601f016020809104026020016040519081016040528092919081815260200182805461111f9061368d565b801561116c5780601f106111415761010080835404028352916020019161116c565b820191906000526020600020905b81548152906001019060200180831161114f57829003601f168201915b5050505050905090565b61117e6119d2565b80600d8190555050565b6000611192610b37565b9050600c60009054906101000a900460ff16156111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db906132fd565b60405180910390fd5b60008211611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e9061329d565b60405180910390fd5b600d54828261123691906134c2565b1115611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e9061337d565b60405180910390fd5b600f548211156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b39061335d565b60405180910390fd5b600f54826112c933610db0565b6112d391906134c2565b1115611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b9061333d565b60405180910390fd5b61131c6110ba565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461139f5781600b5461135c9190613549565b34101561139e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611395906132bd565b60405180910390fd5b5b6113a93383611a59565b5050565b6113b5611918565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611427611918565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114d4611918565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115199190613240565b60405180910390a35050565b600e5481565b611536848484611a77565b6115558373ffffffffffffffffffffffffffffffffffffffff1661183d565b801561156a575061156884848484612282565b155b156115a1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a80546115b49061368d565b80601f01602080910402602001604051908101604052809291908181526020018280546115e09061368d565b801561162d5780601f106116025761010080835404028352916020019161162d565b820191906000526020600020905b81548152906001019060200180831161161057829003601f168201915b505050505081565b6060611640826118ca565b61167f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116769061331d565b60405180910390fd5b60006116896123e2565b905060008151116116a957604051806020016040528060008152506116d7565b806116b384612474565b600a6040516020016116c793929190613193565b6040516020818303038152906040525b915050919050565b600b5481565b600d5481565b6116f36119d2565b80600a90805190602001906117099291906129c1565b5050565b60106020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117c16119d2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611831576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118289061327d565b60405180910390fd5b61183a816121bc565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118d5611a50565b111580156118e4575060005482105b8015611911575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6119da611918565b73ffffffffffffffffffffffffffffffffffffffff166119f86110ba565b73ffffffffffffffffffffffffffffffffffffffff1614611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a45906132dd565b60405180910390fd5b565b60006001905090565b611a738282604051806020016040528060008152506125d5565b5050565b6000611a8282611f2d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611aed576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b0e611918565b73ffffffffffffffffffffffffffffffffffffffff161480611b3d5750611b3c85611b37611918565b611725565b5b80611b825750611b4b611918565b73ffffffffffffffffffffffffffffffffffffffff16611b6a8461099e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bbb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c22576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c2f85858560016125e7565b611c3b60008487611920565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ebb576000548214611eba57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f2685858560016125ed565b5050505050565b611f35612a47565b600082905080611f43611a50565b11158015611f52575060005481105b15612185576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161218357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120675780925050506121b7565b5b60011561218257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461217d5780925050506121b7565b612068565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122a8611918565b8786866040518563ffffffff1660e01b81526004016122ca94939291906131f4565b602060405180830381600087803b1580156122e457600080fd5b505af192505050801561231557506040513d601f19601f820116820180604052508101906123129190612de0565b60015b61238f573d8060008114612345576040519150601f19603f3d011682016040523d82523d6000602084013e61234a565b606091505b50600081511415612387576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546123f19061368d565b80601f016020809104026020016040519081016040528092919081815260200182805461241d9061368d565b801561246a5780601f1061243f5761010080835404028352916020019161246a565b820191906000526020600020905b81548152906001019060200180831161244d57829003601f168201915b5050505050905090565b606060008214156124bc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125d0565b600082905060005b600082146124ee5780806124d7906136f0565b915050600a826124e79190613518565b91506124c4565b60008167ffffffffffffffff81111561250a57612509613826565b5b6040519080825280601f01601f19166020018201604052801561253c5781602001600182028036833780820191505090505b5090505b600085146125c95760018261255591906135a3565b9150600a856125649190613739565b603061257091906134c2565b60f81b818381518110612586576125856137f7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125c29190613518565b9450612540565b8093505050505b919050565b6125e283838360016125f3565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612660576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561269b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126a860008683876125e7565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561287257506128718773ffffffffffffffffffffffffffffffffffffffff1661183d565b5b15612938575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128e76000888480600101955088612282565b61291d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561287857826000541461293357600080fd5b6129a4565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612939575b8160008190555050506129ba60008683876125ed565b5050505050565b8280546129cd9061368d565b90600052602060002090601f0160209004810192826129ef5760008555612a36565b82601f10612a0857805160ff1916838001178555612a36565b82800160010185558215612a36579182015b82811115612a35578251825591602001919060010190612a1a565b5b509050612a439190612a8a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612aa3576000816000905550600101612a8b565b5090565b6000612aba612ab5846133fd565b6133d8565b905082815260208101848484011115612ad657612ad561385a565b5b612ae184828561364b565b509392505050565b6000612afc612af78461342e565b6133d8565b905082815260208101848484011115612b1857612b1761385a565b5b612b2384828561364b565b509392505050565b600081359050612b3a81613a89565b92915050565b600081359050612b4f81613aa0565b92915050565b600081359050612b6481613ab7565b92915050565b600081519050612b7981613ab7565b92915050565b600082601f830112612b9457612b93613855565b5b8135612ba4848260208601612aa7565b91505092915050565b600082601f830112612bc257612bc1613855565b5b8135612bd2848260208601612ae9565b91505092915050565b600081359050612bea81613ace565b92915050565b600060208284031215612c0657612c05613864565b5b6000612c1484828501612b2b565b91505092915050565b60008060408385031215612c3457612c33613864565b5b6000612c4285828601612b2b565b9250506020612c5385828601612b2b565b9150509250929050565b600080600060608486031215612c7657612c75613864565b5b6000612c8486828701612b2b565b9350506020612c9586828701612b2b565b9250506040612ca686828701612bdb565b9150509250925092565b60008060008060808587031215612cca57612cc9613864565b5b6000612cd887828801612b2b565b9450506020612ce987828801612b2b565b9350506040612cfa87828801612bdb565b925050606085013567ffffffffffffffff811115612d1b57612d1a61385f565b5b612d2787828801612b7f565b91505092959194509250565b60008060408385031215612d4a57612d49613864565b5b6000612d5885828601612b2b565b9250506020612d6985828601612b40565b9150509250929050565b60008060408385031215612d8a57612d89613864565b5b6000612d9885828601612b2b565b9250506020612da985828601612bdb565b9150509250929050565b600060208284031215612dc957612dc8613864565b5b6000612dd784828501612b55565b91505092915050565b600060208284031215612df657612df5613864565b5b6000612e0484828501612b6a565b91505092915050565b600060208284031215612e2357612e22613864565b5b600082013567ffffffffffffffff811115612e4157612e4061385f565b5b612e4d84828501612bad565b91505092915050565b600060208284031215612e6c57612e6b613864565b5b6000612e7a84828501612bdb565b91505092915050565b60008060408385031215612e9a57612e99613864565b5b6000612ea885828601612bdb565b9250506020612eb985828601612b2b565b9150509250929050565b612ecc816135d7565b82525050565b612edb816135e9565b82525050565b6000612eec82613474565b612ef6818561348a565b9350612f0681856020860161365a565b612f0f81613869565b840191505092915050565b6000612f258261347f565b612f2f81856134a6565b9350612f3f81856020860161365a565b612f4881613869565b840191505092915050565b6000612f5e8261347f565b612f6881856134b7565b9350612f7881856020860161365a565b80840191505092915050565b60008154612f918161368d565b612f9b81866134b7565b94506001821660008114612fb65760018114612fc757612ffa565b60ff19831686528186019350612ffa565b612fd08561345f565b60005b83811015612ff257815481890152600182019150602081019050612fd3565b838801955050505b50505092915050565b60006130106026836134a6565b915061301b8261387a565b604082019050919050565b60006130336021836134a6565b915061303e826138c9565b604082019050919050565b60006130566012836134a6565b915061306182613918565b602082019050919050565b60006130796020836134a6565b915061308482613941565b602082019050919050565b600061309c6017836134a6565b91506130a78261396a565b602082019050919050565b60006130bf602f836134a6565b91506130ca82613993565b604082019050919050565b60006130e2600e836134a6565b91506130ed826139e2565b602082019050919050565b60006131056011836134a6565b915061311082613a0b565b602082019050919050565b600061312860008361349b565b915061313382613a34565b600082019050919050565b600061314b6012836134a6565b915061315682613a37565b602082019050919050565b600061316e601a836134a6565b915061317982613a60565b602082019050919050565b61318d81613641565b82525050565b600061319f8286612f53565b91506131ab8285612f53565b91506131b78284612f84565b9150819050949350505050565b60006131cf8261311b565b9150819050919050565b60006020820190506131ee6000830184612ec3565b92915050565b60006080820190506132096000830187612ec3565b6132166020830186612ec3565b6132236040830185613184565b81810360608301526132358184612ee1565b905095945050505050565b60006020820190506132556000830184612ed2565b92915050565b600060208201905081810360008301526132758184612f1a565b905092915050565b6000602082019050818103600083015261329681613003565b9050919050565b600060208201905081810360008301526132b681613026565b9050919050565b600060208201905081810360008301526132d681613049565b9050919050565b600060208201905081810360008301526132f68161306c565b9050919050565b600060208201905081810360008301526133168161308f565b9050919050565b60006020820190508181036000830152613336816130b2565b9050919050565b60006020820190508181036000830152613356816130d5565b9050919050565b60006020820190508181036000830152613376816130f8565b9050919050565b600060208201905081810360008301526133968161313e565b9050919050565b600060208201905081810360008301526133b681613161565b9050919050565b60006020820190506133d26000830184613184565b92915050565b60006133e26133f3565b90506133ee82826136bf565b919050565b6000604051905090565b600067ffffffffffffffff82111561341857613417613826565b5b61342182613869565b9050602081019050919050565b600067ffffffffffffffff82111561344957613448613826565b5b61345282613869565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006134cd82613641565b91506134d883613641565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561350d5761350c61376a565b5b828201905092915050565b600061352382613641565b915061352e83613641565b92508261353e5761353d613799565b5b828204905092915050565b600061355482613641565b915061355f83613641565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135985761359761376a565b5b828202905092915050565b60006135ae82613641565b91506135b983613641565b9250828210156135cc576135cb61376a565b5b828203905092915050565b60006135e282613621565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561367857808201518184015260208101905061365d565b83811115613687576000848401525b50505050565b600060028204905060018216806136a557607f821691505b602082108114156136b9576136b86137c8565b5b50919050565b6136c882613869565b810181811067ffffffffffffffff821117156136e7576136e6613826565b5b80604052505050565b60006136fb82613641565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561372e5761372d61376a565b5b600182019050919050565b600061374482613641565b915061374f83613641565b92508261375f5761375e613799565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f00000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178204e4654206d696e746564000000000000000000000000000000000000600082015250565b7f4d6178206c696d69742065786365656421000000000000000000000000000000600082015250565b50565b7f4d617820537570706c7920526561636865640000000000000000000000000000600082015250565b7f416c726561647920636c61696d65642066726565206d696e7421000000000000600082015250565b613a92816135d7565b8114613a9d57600080fd5b50565b613aa9816135e9565b8114613ab457600080fd5b50565b613ac0816135f5565b8114613acb57600080fd5b50565b613ad781613641565b8114613ae257600080fd5b5056fea2646970667358221220b236dd6e3e9e0b07723256adebf98269e8772283d930f83ba0bc6b42d3e4ad7064736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d563567774a5338415755756872766652735231764654596e72646d31474c7a355150446848436636387667382f00000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806370a0823111610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb0114610733578063da3ef23f1461075e578063e0ec7c3614610787578063e985e9c5146107c4578063f2fde38b146108015761020f565b8063b88d4fde14610677578063c6682862146106a0578063c87b56dd146106cb578063ca0dcf16146107085761020f565b806395d89b41116100e757806395d89b41146105b35780639ec571d5146105de578063a0712d6814610607578063a22cb46514610623578063a591252d1461064c5761020f565b806370a0823114610518578063715018a6146105555780637c928fe91461056c5780638da5cb5b146105885761020f565b8063405328281161019b57806355f804b31161016a57806355f804b31461044557806359c74f291461046e5780635c975abb146104855780636352211e146104b05780636c0360eb146104ed5761020f565b8063405328281461039f57806342842e0e146103c857806344a0d68a146103f1578063453c23101461041a5761020f565b80630c85dbfe116101e25780630c85dbfe146102e257806318160ddd1461030b5780632137ef8e1461033657806323b872dd1461035f5780633ccfd60b146103885761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612db3565b61082a565b6040516102489190613240565b60405180910390f35b34801561025d57600080fd5b5061026661090c565b604051610273919061325b565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612e56565b61099e565b6040516102b091906131d9565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612d73565b610a1a565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612e56565b610b25565b005b34801561031757600080fd5b50610320610b37565b60405161032d91906133bd565b60405180910390f35b34801561034257600080fd5b5061035d60048036038101906103589190612e83565b610b4e565b005b34801561036b57600080fd5b5061038660048036038101906103819190612c5d565b610bc1565b005b34801561039457600080fd5b5061039d610bd1565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612e56565b610c59565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190612c5d565b610c6b565b005b3480156103fd57600080fd5b5061041860048036038101906104139190612e56565b610c8b565b005b34801561042657600080fd5b5061042f610c9d565b60405161043c91906133bd565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190612e0d565b610ca3565b005b34801561047a57600080fd5b50610483610cc5565b005b34801561049157600080fd5b5061049a610cf9565b6040516104a79190613240565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190612e56565b610d0c565b6040516104e491906131d9565b60405180910390f35b3480156104f957600080fd5b50610502610d22565b60405161050f919061325b565b60405180910390f35b34801561052457600080fd5b5061053f600480360381019061053a9190612bf0565b610db0565b60405161054c91906133bd565b60405180910390f35b34801561056157600080fd5b5061056a610e80565b005b61058660048036038101906105819190612e56565b610e94565b005b34801561059457600080fd5b5061059d6110ba565b6040516105aa91906131d9565b60405180910390f35b3480156105bf57600080fd5b506105c86110e4565b6040516105d5919061325b565b60405180910390f35b3480156105ea57600080fd5b5061060560048036038101906106009190612e56565b611176565b005b610621600480360381019061061c9190612e56565b611188565b005b34801561062f57600080fd5b5061064a60048036038101906106459190612d33565b6113ad565b005b34801561065857600080fd5b50610661611525565b60405161066e91906133bd565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190612cb0565b61152b565b005b3480156106ac57600080fd5b506106b56115a7565b6040516106c2919061325b565b60405180910390f35b3480156106d757600080fd5b506106f260048036038101906106ed9190612e56565b611635565b6040516106ff919061325b565b60405180910390f35b34801561071457600080fd5b5061071d6116df565b60405161072a91906133bd565b60405180910390f35b34801561073f57600080fd5b506107486116e5565b60405161075591906133bd565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190612e0d565b6116eb565b005b34801561079357600080fd5b506107ae60048036038101906107a99190612bf0565b61170d565b6040516107bb91906133bd565b60405180910390f35b3480156107d057600080fd5b506107eb60048036038101906107e69190612c1d565b611725565b6040516107f89190613240565b60405180910390f35b34801561080d57600080fd5b5061082860048036038101906108239190612bf0565b6117b9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610905575061090482611860565b5b9050919050565b60606002805461091b9061368d565b80601f01602080910402602001604051908101604052809291908181526020018280546109479061368d565b80156109945780601f1061096957610100808354040283529160200191610994565b820191906000526020600020905b81548152906001019060200180831161097757829003601f168201915b5050505050905090565b60006109a9826118ca565b6109df576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2582610d0c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aac611918565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ade5750610adc81610ad7611918565b611725565b155b15610b15576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b20838383611920565b505050565b610b2d6119d2565b80600e8190555050565b6000610b41611a50565b6001546000540303905090565b610b566119d2565b6000610b60610b37565b9050600d548382610b7191906134c2565b1115610bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba99061337d565b60405180910390fd5b610bbc8284611a59565b505050565b610bcc838383611a77565b505050565b610bd96119d2565b6000610be36110ba565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c06906131c4565b60006040518083038185875af1925050503d8060008114610c43576040519150601f19603f3d011682016040523d82523d6000602084013e610c48565b606091505b5050905080610c5657600080fd5b50565b610c616119d2565b80600f8190555050565b610c868383836040518060200160405280600081525061152b565b505050565b610c936119d2565b80600b8190555050565b600f5481565b610cab6119d2565b8060099080519060200190610cc19291906129c1565b5050565b610ccd6119d2565b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b600c60009054906101000a900460ff1681565b6000610d1782611f2d565b600001519050919050565b60098054610d2f9061368d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5b9061368d565b8015610da85780601f10610d7d57610100808354040283529160200191610da8565b820191906000526020600020905b815481529060010190602001808311610d8b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e18576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e886119d2565b610e9260006121bc565b565b6000610e9e610b37565b9050600c60009054906101000a900460ff1615610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee7906132fd565b60405180910390fd5b60008211610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a9061329d565b60405180910390fd5b600e54821115610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f9061335d565b60405180910390fd5b600e5482601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fc691906134c2565b1115611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe9061339d565b60405180910390fd5b600d54828261101691906134c2565b1115611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e9061337d565b60405180910390fd5b6110613383611a59565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906110b1906136f0565b91905055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110f39061368d565b80601f016020809104026020016040519081016040528092919081815260200182805461111f9061368d565b801561116c5780601f106111415761010080835404028352916020019161116c565b820191906000526020600020905b81548152906001019060200180831161114f57829003601f168201915b5050505050905090565b61117e6119d2565b80600d8190555050565b6000611192610b37565b9050600c60009054906101000a900460ff16156111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db906132fd565b60405180910390fd5b60008211611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e9061329d565b60405180910390fd5b600d54828261123691906134c2565b1115611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e9061337d565b60405180910390fd5b600f548211156112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b39061335d565b60405180910390fd5b600f54826112c933610db0565b6112d391906134c2565b1115611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b9061333d565b60405180910390fd5b61131c6110ba565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461139f5781600b5461135c9190613549565b34101561139e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611395906132bd565b60405180910390fd5b5b6113a93383611a59565b5050565b6113b5611918565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611427611918565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114d4611918565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115199190613240565b60405180910390a35050565b600e5481565b611536848484611a77565b6115558373ffffffffffffffffffffffffffffffffffffffff1661183d565b801561156a575061156884848484612282565b155b156115a1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a80546115b49061368d565b80601f01602080910402602001604051908101604052809291908181526020018280546115e09061368d565b801561162d5780601f106116025761010080835404028352916020019161162d565b820191906000526020600020905b81548152906001019060200180831161161057829003601f168201915b505050505081565b6060611640826118ca565b61167f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116769061331d565b60405180910390fd5b60006116896123e2565b905060008151116116a957604051806020016040528060008152506116d7565b806116b384612474565b600a6040516020016116c793929190613193565b6040516020818303038152906040525b915050919050565b600b5481565b600d5481565b6116f36119d2565b80600a90805190602001906117099291906129c1565b5050565b60106020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117c16119d2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611831576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118289061327d565b60405180910390fd5b61183a816121bc565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816118d5611a50565b111580156118e4575060005482105b8015611911575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6119da611918565b73ffffffffffffffffffffffffffffffffffffffff166119f86110ba565b73ffffffffffffffffffffffffffffffffffffffff1614611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a45906132dd565b60405180910390fd5b565b60006001905090565b611a738282604051806020016040528060008152506125d5565b5050565b6000611a8282611f2d565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611aed576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b0e611918565b73ffffffffffffffffffffffffffffffffffffffff161480611b3d5750611b3c85611b37611918565b611725565b5b80611b825750611b4b611918565b73ffffffffffffffffffffffffffffffffffffffff16611b6a8461099e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bbb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c22576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c2f85858560016125e7565b611c3b60008487611920565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611ebb576000548214611eba57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f2685858560016125ed565b5050505050565b611f35612a47565b600082905080611f43611a50565b11158015611f52575060005481105b15612185576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161218357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120675780925050506121b7565b5b60011561218257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461217d5780925050506121b7565b612068565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122a8611918565b8786866040518563ffffffff1660e01b81526004016122ca94939291906131f4565b602060405180830381600087803b1580156122e457600080fd5b505af192505050801561231557506040513d601f19601f820116820180604052508101906123129190612de0565b60015b61238f573d8060008114612345576040519150601f19603f3d011682016040523d82523d6000602084013e61234a565b606091505b50600081511415612387576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546123f19061368d565b80601f016020809104026020016040519081016040528092919081815260200182805461241d9061368d565b801561246a5780601f1061243f5761010080835404028352916020019161246a565b820191906000526020600020905b81548152906001019060200180831161244d57829003601f168201915b5050505050905090565b606060008214156124bc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125d0565b600082905060005b600082146124ee5780806124d7906136f0565b915050600a826124e79190613518565b91506124c4565b60008167ffffffffffffffff81111561250a57612509613826565b5b6040519080825280601f01601f19166020018201604052801561253c5781602001600182028036833780820191505090505b5090505b600085146125c95760018261255591906135a3565b9150600a856125649190613739565b603061257091906134c2565b60f81b818381518110612586576125856137f7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125c29190613518565b9450612540565b8093505050505b919050565b6125e283838360016125f3565b505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612660576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561269b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126a860008683876125e7565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561287257506128718773ffffffffffffffffffffffffffffffffffffffff1661183d565b5b15612938575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128e76000888480600101955088612282565b61291d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561287857826000541461293357600080fd5b6129a4565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612939575b8160008190555050506129ba60008683876125ed565b5050505050565b8280546129cd9061368d565b90600052602060002090601f0160209004810192826129ef5760008555612a36565b82601f10612a0857805160ff1916838001178555612a36565b82800160010185558215612a36579182015b82811115612a35578251825591602001919060010190612a1a565b5b509050612a439190612a8a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612aa3576000816000905550600101612a8b565b5090565b6000612aba612ab5846133fd565b6133d8565b905082815260208101848484011115612ad657612ad561385a565b5b612ae184828561364b565b509392505050565b6000612afc612af78461342e565b6133d8565b905082815260208101848484011115612b1857612b1761385a565b5b612b2384828561364b565b509392505050565b600081359050612b3a81613a89565b92915050565b600081359050612b4f81613aa0565b92915050565b600081359050612b6481613ab7565b92915050565b600081519050612b7981613ab7565b92915050565b600082601f830112612b9457612b93613855565b5b8135612ba4848260208601612aa7565b91505092915050565b600082601f830112612bc257612bc1613855565b5b8135612bd2848260208601612ae9565b91505092915050565b600081359050612bea81613ace565b92915050565b600060208284031215612c0657612c05613864565b5b6000612c1484828501612b2b565b91505092915050565b60008060408385031215612c3457612c33613864565b5b6000612c4285828601612b2b565b9250506020612c5385828601612b2b565b9150509250929050565b600080600060608486031215612c7657612c75613864565b5b6000612c8486828701612b2b565b9350506020612c9586828701612b2b565b9250506040612ca686828701612bdb565b9150509250925092565b60008060008060808587031215612cca57612cc9613864565b5b6000612cd887828801612b2b565b9450506020612ce987828801612b2b565b9350506040612cfa87828801612bdb565b925050606085013567ffffffffffffffff811115612d1b57612d1a61385f565b5b612d2787828801612b7f565b91505092959194509250565b60008060408385031215612d4a57612d49613864565b5b6000612d5885828601612b2b565b9250506020612d6985828601612b40565b9150509250929050565b60008060408385031215612d8a57612d89613864565b5b6000612d9885828601612b2b565b9250506020612da985828601612bdb565b9150509250929050565b600060208284031215612dc957612dc8613864565b5b6000612dd784828501612b55565b91505092915050565b600060208284031215612df657612df5613864565b5b6000612e0484828501612b6a565b91505092915050565b600060208284031215612e2357612e22613864565b5b600082013567ffffffffffffffff811115612e4157612e4061385f565b5b612e4d84828501612bad565b91505092915050565b600060208284031215612e6c57612e6b613864565b5b6000612e7a84828501612bdb565b91505092915050565b60008060408385031215612e9a57612e99613864565b5b6000612ea885828601612bdb565b9250506020612eb985828601612b2b565b9150509250929050565b612ecc816135d7565b82525050565b612edb816135e9565b82525050565b6000612eec82613474565b612ef6818561348a565b9350612f0681856020860161365a565b612f0f81613869565b840191505092915050565b6000612f258261347f565b612f2f81856134a6565b9350612f3f81856020860161365a565b612f4881613869565b840191505092915050565b6000612f5e8261347f565b612f6881856134b7565b9350612f7881856020860161365a565b80840191505092915050565b60008154612f918161368d565b612f9b81866134b7565b94506001821660008114612fb65760018114612fc757612ffa565b60ff19831686528186019350612ffa565b612fd08561345f565b60005b83811015612ff257815481890152600182019150602081019050612fd3565b838801955050505b50505092915050565b60006130106026836134a6565b915061301b8261387a565b604082019050919050565b60006130336021836134a6565b915061303e826138c9565b604082019050919050565b60006130566012836134a6565b915061306182613918565b602082019050919050565b60006130796020836134a6565b915061308482613941565b602082019050919050565b600061309c6017836134a6565b91506130a78261396a565b602082019050919050565b60006130bf602f836134a6565b91506130ca82613993565b604082019050919050565b60006130e2600e836134a6565b91506130ed826139e2565b602082019050919050565b60006131056011836134a6565b915061311082613a0b565b602082019050919050565b600061312860008361349b565b915061313382613a34565b600082019050919050565b600061314b6012836134a6565b915061315682613a37565b602082019050919050565b600061316e601a836134a6565b915061317982613a60565b602082019050919050565b61318d81613641565b82525050565b600061319f8286612f53565b91506131ab8285612f53565b91506131b78284612f84565b9150819050949350505050565b60006131cf8261311b565b9150819050919050565b60006020820190506131ee6000830184612ec3565b92915050565b60006080820190506132096000830187612ec3565b6132166020830186612ec3565b6132236040830185613184565b81810360608301526132358184612ee1565b905095945050505050565b60006020820190506132556000830184612ed2565b92915050565b600060208201905081810360008301526132758184612f1a565b905092915050565b6000602082019050818103600083015261329681613003565b9050919050565b600060208201905081810360008301526132b681613026565b9050919050565b600060208201905081810360008301526132d681613049565b9050919050565b600060208201905081810360008301526132f68161306c565b9050919050565b600060208201905081810360008301526133168161308f565b9050919050565b60006020820190508181036000830152613336816130b2565b9050919050565b60006020820190508181036000830152613356816130d5565b9050919050565b60006020820190508181036000830152613376816130f8565b9050919050565b600060208201905081810360008301526133968161313e565b9050919050565b600060208201905081810360008301526133b681613161565b9050919050565b60006020820190506133d26000830184613184565b92915050565b60006133e26133f3565b90506133ee82826136bf565b919050565b6000604051905090565b600067ffffffffffffffff82111561341857613417613826565b5b61342182613869565b9050602081019050919050565b600067ffffffffffffffff82111561344957613448613826565b5b61345282613869565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006134cd82613641565b91506134d883613641565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561350d5761350c61376a565b5b828201905092915050565b600061352382613641565b915061352e83613641565b92508261353e5761353d613799565b5b828204905092915050565b600061355482613641565b915061355f83613641565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135985761359761376a565b5b828202905092915050565b60006135ae82613641565b91506135b983613641565b9250828210156135cc576135cb61376a565b5b828203905092915050565b60006135e282613621565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561367857808201518184015260208101905061365d565b83811115613687576000848401525b50505050565b600060028204905060018216806136a557607f821691505b602082108114156136b9576136b86137c8565b5b50919050565b6136c882613869565b810181811067ffffffffffffffff821117156136e7576136e6613826565b5b80604052505050565b60006136fb82613641565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561372e5761372d61376a565b5b600182019050919050565b600061374482613641565b915061374f83613641565b92508261375f5761375e613799565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f00000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d6178204e4654206d696e746564000000000000000000000000000000000000600082015250565b7f4d6178206c696d69742065786365656421000000000000000000000000000000600082015250565b50565b7f4d617820537570706c7920526561636865640000000000000000000000000000600082015250565b7f416c726561647920636c61696d65642066726565206d696e7421000000000000600082015250565b613a92816135d7565b8114613a9d57600080fd5b50565b613aa9816135e9565b8114613ab457600080fd5b50565b613ac0816135f5565b8114613acb57600080fd5b50565b613ad781613641565b8114613ae257600080fd5b5056fea2646970667358221220b236dd6e3e9e0b07723256adebf98269e8772283d930f83ba0bc6b42d3e4ad7064736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d563567774a5338415755756872766652735231764654596e72646d31474c7a355150446848436636387667382f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmV5gwJS8AWUuhrvfRsR1vFTYnrdm1GLz5QPDhHCf68vg8/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d563567774a533841575575687276665273523176465459
Arg [3] : 6e72646d31474c7a355150446848436636387667382f00000000000000000000


Deployed Bytecode Sourcemap

45385:3908:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27582:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30695:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32198:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31761:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48097:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26831:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48741:235;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33063:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49143:147;;;;;;;;;;;;;:::i;:::-;;48231:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33304:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47954:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45691:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48629:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48544:77;;;;;;;;;;;;;:::i;:::-;;45583:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30503:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45468:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27951:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;46568:546;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30864:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48367:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45945:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32474:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45654:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33560:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45496:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47282:642;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45540:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45615:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48984:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45731:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32832:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27582:305;27684:4;27736:25;27721:40;;;:11;:40;;;;:105;;;;27793:33;27778:48;;;:11;:48;;;;27721:105;:158;;;;27843:36;27867:11;27843:23;:36::i;:::-;27721:158;27701:178;;27582:305;;;:::o;30695:100::-;30749:13;30782:5;30775:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30695:100;:::o;32198:204::-;32266:7;32291:16;32299:7;32291;:16::i;:::-;32286:64;;32316:34;;;;;;;;;;;;;;32286:64;32370:15;:24;32386:7;32370:24;;;;;;;;;;;;;;;;;;;;;32363:31;;32198:204;;;:::o;31761:371::-;31834:13;31850:24;31866:7;31850:15;:24::i;:::-;31834:40;;31895:5;31889:11;;:2;:11;;;31885:48;;;31909:24;;;;;;;;;;;;;;31885:48;31966:5;31950:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31976:37;31993:5;32000:12;:10;:12::i;:::-;31976:16;:37::i;:::-;31975:38;31950:63;31946:138;;;32037:35;;;;;;;;;;;;;;31946:138;32096:28;32105:2;32109:7;32118:5;32096:8;:28::i;:::-;31823:309;31761:371;;:::o;48097:98::-;4511:13;:11;:13::i;:::-;48180:7:::1;48166:11;:21;;;;48097:98:::0;:::o;26831:303::-;26875:7;27100:15;:13;:15::i;:::-;27085:12;;27069:13;;:28;:46;27062:53;;26831:303;:::o;48741:235::-;4511:13;:11;:13::i;:::-;48826:14:::1;48843:13;:11;:13::i;:::-;48826:30;;48896:9;;48884:8;48875:6;:17;;;;:::i;:::-;:30;;48867:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48939:29;48949:8;48959;48939:9;:29::i;:::-;48815:161;48741:235:::0;;:::o;33063:170::-;33197:28;33207:4;33213:2;33217:7;33197:9;:28::i;:::-;33063:170;;;:::o;49143:147::-;4511:13;:11;:13::i;:::-;49192:7:::1;49213;:5;:7::i;:::-;49205:21;;49234;49205:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49191:69;;;49279:2;49271:11;;;::::0;::::1;;49180:110;49143:147::o:0;48231:100::-;4511:13;:11;:13::i;:::-;48316:7:::1;48301:12;:22;;;;48231:100:::0;:::o;33304:185::-;33442:39;33459:4;33465:2;33469:7;33442:39;;;;;;;;;;;;:16;:39::i;:::-;33304:185;;;:::o;47954:107::-;4511:13;:11;:13::i;:::-;48048:5:::1;48037:8;:16;;;;47954:107:::0;:::o;45691:31::-;;;;:::o;48629:104::-;4511:13;:11;:13::i;:::-;48714:11:::1;48704:7;:21;;;;;;;;;;;;:::i;:::-;;48629:104:::0;:::o;48544:77::-;4511:13;:11;:13::i;:::-;48607:6:::1;;;;;;;;;;;48606:7;48597:6;;:16;;;;;;;;;;;;;;;;;;48544:77::o:0;45583:25::-;;;;;;;;;;;;;:::o;30503:125::-;30567:7;30594:21;30607:7;30594:12;:21::i;:::-;:26;;;30587:33;;30503:125;;;:::o;45468:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27951:206::-;28015:7;28056:1;28039:19;;:5;:19;;;28035:60;;;28067:28;;;;;;;;;;;;;;28035:60;28121:12;:19;28134:5;28121:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28113:36;;28106:43;;27951:206;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;46568:546::-;46632:14;46649:13;:11;:13::i;:::-;46632:30;;46682:6;;;;;;;;;;;46681:7;46673:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;46746:1;46735:8;:12;46727:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46816:11;;46804:8;:23;;46796:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;46910:11;;46898:8;46868:15;:27;46884:10;46868:27;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:53;;46860:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;46992:9;;46980:8;46971:6;:17;;;;:::i;:::-;:30;;46963:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;47035:31;47045:10;47057:8;47035:9;:31::i;:::-;47077:15;:27;47093:10;47077:27;;;;;;;;;;;;;;;;:29;;;;;;;;;:::i;:::-;;;;;;46621:493;46568:546;:::o;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;30864:104::-;30920:13;30953:7;30946:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30864:104;:::o;48367:93::-;4511:13;:11;:13::i;:::-;48445:7:::1;48433:9;:19;;;;48367:93:::0;:::o;45945:615::-;46005:14;46022:13;:11;:13::i;:::-;46005:30;;46055:6;;;;;;;;;;;46054:7;46046:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;46119:1;46108:8;:12;46100:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46198:9;;46186:8;46177:6;:17;;;;:::i;:::-;:30;;46169:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;46261:12;;46249:8;:24;;46241:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;46350:12;;46338:8;46314:21;46324:10;46314:9;:21::i;:::-;:32;;;;:::i;:::-;:48;;46306:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;46412:7;:5;:7::i;:::-;46398:21;;:10;:21;;;46394:117;;46468:8;46457;;:19;;;;:::i;:::-;46444:9;:32;;46436:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46394:117;46521:31;46531:10;46543:8;46521:9;:31::i;:::-;45994:566;45945:615;:::o;32474:287::-;32585:12;:10;:12::i;:::-;32573:24;;:8;:24;;;32569:54;;;32606:17;;;;;;;;;;;;;;32569:54;32681:8;32636:18;:32;32655:12;:10;:12::i;:::-;32636:32;;;;;;;;;;;;;;;:42;32669:8;32636:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32734:8;32705:48;;32720:12;:10;:12::i;:::-;32705:48;;;32744:8;32705:48;;;;;;:::i;:::-;;;;;;;;32474:287;;:::o;45654:30::-;;;;:::o;33560:369::-;33727:28;33737:4;33743:2;33747:7;33727:9;:28::i;:::-;33770:15;:2;:13;;;:15::i;:::-;:76;;;;;33790:56;33821:4;33827:2;33831:7;33840:5;33790:30;:56::i;:::-;33789:57;33770:76;33766:156;;;33870:40;;;;;;;;;;;;;;33766:156;33560:369;;;;:::o;45496:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47282:642::-;47400:13;47453:16;47461:7;47453;:16::i;:::-;47431:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;47557:28;47588:10;:8;:10::i;:::-;47557:41;;47660:1;47635:14;47629:28;:32;:287;;;;;;;;;;;;;;;;;47753:14;47794:18;:7;:16;:18::i;:::-;47839:13;47710:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47629:287;47609:307;;;47282:642;;;:::o;45540:36::-;;;;:::o;45615:32::-;;;;:::o;48984:151::-;4511:13;:11;:13::i;:::-;49110:17:::1;49094:13;:33;;;;;;;;;;;;:::i;:::-;;48984:151:::0;:::o;45731:50::-;;;;;;;;;;;;;;;;;:::o;32832:164::-;32929:4;32953:18;:25;32972:5;32953:25;;;;;;;;;;;;;;;:35;32979:8;32953:35;;;;;;;;;;;;;;;;;;;;;;;;;32946:42;;32832:164;;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;7323:326::-;7383:4;7640:1;7618:7;:19;;;:23;7611:30;;7323:326;;;:::o;17479:157::-;17564:4;17603:25;17588:40;;;:11;:40;;;;17581:47;;17479:157;;;:::o;34184:174::-;34241:4;34284:7;34265:15;:13;:15::i;:::-;:26;;:53;;;;;34305:13;;34295:7;:23;34265:53;:85;;;;;34323:11;:20;34335:7;34323:20;;;;;;;;;;;:27;;;;;;;;;;;;34322:28;34265:85;34258:92;;34184:174;;;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;42341:196::-;42483:2;42456:15;:24;42472:7;42456:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42521:7;42517:2;42501:28;;42510:5;42501:28;;;;;;;;;;;;42341:196;;;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;26605:92::-;26661:7;26688:1;26681:8;;26605:92;:::o;34366:104::-;34435:27;34445:2;34449:8;34435:27;;;;;;;;;;;;:9;:27::i;:::-;34366:104;;:::o;37284:2130::-;37399:35;37437:21;37450:7;37437:12;:21::i;:::-;37399:59;;37497:4;37475:26;;:13;:18;;;:26;;;37471:67;;37510:28;;;;;;;;;;;;;;37471:67;37551:22;37593:4;37577:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;37614:36;37631:4;37637:12;:10;:12::i;:::-;37614:16;:36::i;:::-;37577:73;:126;;;;37691:12;:10;:12::i;:::-;37667:36;;:20;37679:7;37667:11;:20::i;:::-;:36;;;37577:126;37551:153;;37722:17;37717:66;;37748:35;;;;;;;;;;;;;;37717:66;37812:1;37798:16;;:2;:16;;;37794:52;;;37823:23;;;;;;;;;;;;;;37794:52;37859:43;37881:4;37887:2;37891:7;37900:1;37859:21;:43::i;:::-;37967:35;37984:1;37988:7;37997:4;37967:8;:35::i;:::-;38328:1;38298:12;:18;38311:4;38298:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38372:1;38344:12;:16;38357:2;38344:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38390:31;38424:11;:20;38436:7;38424:20;;;;;;;;;;;38390:54;;38475:2;38459:8;:13;;;:18;;;;;;;;;;;;;;;;;;38525:15;38492:8;:23;;;:49;;;;;;;;;;;;;;;;;;38793:19;38825:1;38815:7;:11;38793:33;;38841:31;38875:11;:24;38887:11;38875:24;;;;;;;;;;;38841:58;;38943:1;38918:27;;:8;:13;;;;;;;;;;;;:27;;;38914:384;;;39128:13;;39113:11;:28;39109:174;;39182:4;39166:8;:13;;;:20;;;;;;;;;;;;;;;;;;39235:13;:28;;;39209:8;:23;;;:54;;;;;;;;;;;;;;;;;;39109:174;38914:384;38273:1036;;;39345:7;39341:2;39326:27;;39335:4;39326:27;;;;;;;;;;;;39364:42;39385:4;39391:2;39395:7;39404:1;39364:20;:42::i;:::-;37388:2026;;37284:2130;;;:::o;29332:1109::-;29394:21;;:::i;:::-;29428:12;29443:7;29428:22;;29511:4;29492:15;:13;:15::i;:::-;:23;;:47;;;;;29526:13;;29519:4;:20;29492:47;29488:886;;;29560:31;29594:11;:17;29606:4;29594:17;;;;;;;;;;;29560:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29635:9;:16;;;29630:729;;29706:1;29680:28;;:9;:14;;;:28;;;29676:101;;29744:9;29737:16;;;;;;29676:101;30079:261;30086:4;30079:261;;;30119:6;;;;;;;;30164:11;:17;30176:4;30164:17;;;;;;;;;;;30152:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30238:1;30212:28;;:9;:14;;;:28;;;30208:109;;30280:9;30273:16;;;;;;30208:109;30079:261;;;29630:729;29541:833;29488:886;30402:31;;;;;;;;;;;;;;29332:1109;;;;:::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;43029:667::-;43192:4;43229:2;43213:36;;;43250:12;:10;:12::i;:::-;43264:4;43270:7;43279:5;43213:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43209:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43464:1;43447:6;:13;:18;43443:235;;;43493:40;;;;;;;;;;;;;;43443:235;43636:6;43630:13;43621:6;43617:2;43613:15;43606:38;43209:480;43342:45;;;43332:55;;;:6;:55;;;;43325:62;;;43029:667;;;;;;:::o;47139:108::-;47199:13;47232:7;47225:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47139:108;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;34833:163::-;34956:32;34962:2;34966:8;34976:5;34983:4;34956:5;:32::i;:::-;34833:163;;;:::o;44344:159::-;;;;;:::o;45162:158::-;;;;;:::o;35255:1775::-;35394:20;35417:13;;35394:36;;35459:1;35445:16;;:2;:16;;;35441:48;;;35470:19;;;;;;;;;;;;;;35441:48;35516:1;35504:8;:13;35500:44;;;35526:18;;;;;;;;;;;;;;35500:44;35557:61;35587:1;35591:2;35595:12;35609:8;35557:21;:61::i;:::-;35930:8;35895:12;:16;35908:2;35895:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35994:8;35954:12;:16;35967:2;35954:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36053:2;36020:11;:25;36032:12;36020:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36120:15;36070:11;:25;36082:12;36070:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;36153:20;36176:12;36153:35;;36203:11;36232:8;36217:12;:23;36203:37;;36261:4;:23;;;;;36269:15;:2;:13;;;:15::i;:::-;36261:23;36257:641;;;36305:314;36361:12;36357:2;36336:38;;36353:1;36336:38;;;;;;;;;;;;36402:69;36441:1;36445:2;36449:14;;;;;;36465:5;36402:30;:69::i;:::-;36397:174;;36507:40;;;;;;;;;;;;;;36397:174;36614:3;36598:12;:19;;36305:314;;36700:12;36683:13;;:29;36679:43;;36714:8;;;36679:43;36257:641;;;36763:120;36819:14;;;;;;36815:2;36794:40;;36811:1;36794:40;;;;;;;;;;;;36878:3;36862:12;:19;;36763:120;;36257:641;36928:12;36912:13;:28;;;;35870:1082;;36962:60;36991:1;36995:2;36999:12;37013:8;36962:20;:60::i;:::-;35383:1647;35255: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:474::-;7226:6;7234;7283:2;7271:9;7262:7;7258:23;7254:32;7251:119;;;7289:79;;:::i;:::-;7251:119;7409:1;7434:53;7479:7;7470:6;7459:9;7455:22;7434:53;:::i;:::-;7424:63;;7380:117;7536:2;7562:53;7607:7;7598:6;7587:9;7583:22;7562:53;:::i;:::-;7552:63;;7507:118;7158:474;;;;;:::o;7638:118::-;7725:24;7743:5;7725:24;:::i;:::-;7720:3;7713:37;7638:118;;:::o;7762:109::-;7843:21;7858:5;7843:21;:::i;:::-;7838:3;7831:34;7762:109;;:::o;7877:360::-;7963:3;7991:38;8023:5;7991:38;:::i;:::-;8045:70;8108:6;8103:3;8045:70;:::i;:::-;8038:77;;8124:52;8169:6;8164:3;8157:4;8150:5;8146:16;8124:52;:::i;:::-;8201:29;8223:6;8201:29;:::i;:::-;8196:3;8192:39;8185:46;;7967:270;7877:360;;;;:::o;8243:364::-;8331:3;8359:39;8392:5;8359:39;:::i;:::-;8414:71;8478:6;8473:3;8414:71;:::i;:::-;8407:78;;8494:52;8539:6;8534:3;8527:4;8520:5;8516:16;8494:52;:::i;:::-;8571:29;8593:6;8571:29;:::i;:::-;8566:3;8562:39;8555:46;;8335:272;8243:364;;;;:::o;8613:377::-;8719:3;8747:39;8780:5;8747:39;:::i;:::-;8802:89;8884:6;8879:3;8802:89;:::i;:::-;8795:96;;8900:52;8945:6;8940:3;8933:4;8926:5;8922:16;8900:52;:::i;:::-;8977:6;8972:3;8968:16;8961:23;;8723:267;8613:377;;;;:::o;9020:845::-;9123:3;9160:5;9154:12;9189:36;9215:9;9189:36;:::i;:::-;9241:89;9323:6;9318:3;9241:89;:::i;:::-;9234:96;;9361:1;9350:9;9346:17;9377:1;9372:137;;;;9523:1;9518:341;;;;9339:520;;9372:137;9456:4;9452:9;9441;9437:25;9432:3;9425:38;9492:6;9487:3;9483:16;9476:23;;9372:137;;9518:341;9585:38;9617:5;9585:38;:::i;:::-;9645:1;9659:154;9673:6;9670:1;9667:13;9659:154;;;9747:7;9741:14;9737:1;9732:3;9728:11;9721:35;9797:1;9788:7;9784:15;9773:26;;9695:4;9692:1;9688:12;9683:17;;9659:154;;;9842:6;9837:3;9833:16;9826:23;;9525:334;;9339:520;;9127:738;;9020:845;;;;:::o;9871:366::-;10013:3;10034:67;10098:2;10093:3;10034:67;:::i;:::-;10027:74;;10110:93;10199:3;10110:93;:::i;:::-;10228:2;10223:3;10219:12;10212:19;;9871:366;;;:::o;10243:::-;10385:3;10406:67;10470:2;10465:3;10406:67;:::i;:::-;10399:74;;10482:93;10571:3;10482:93;:::i;:::-;10600:2;10595:3;10591:12;10584:19;;10243:366;;;:::o;10615:::-;10757:3;10778:67;10842:2;10837:3;10778:67;:::i;:::-;10771:74;;10854:93;10943:3;10854:93;:::i;:::-;10972:2;10967:3;10963:12;10956:19;;10615:366;;;:::o;10987:::-;11129:3;11150:67;11214:2;11209:3;11150:67;:::i;:::-;11143:74;;11226:93;11315:3;11226:93;:::i;:::-;11344:2;11339:3;11335:12;11328:19;;10987:366;;;:::o;11359:::-;11501:3;11522:67;11586:2;11581:3;11522:67;:::i;:::-;11515:74;;11598:93;11687:3;11598:93;:::i;:::-;11716:2;11711:3;11707:12;11700:19;;11359:366;;;:::o;11731:::-;11873:3;11894:67;11958:2;11953:3;11894:67;:::i;:::-;11887:74;;11970:93;12059:3;11970:93;:::i;:::-;12088:2;12083:3;12079:12;12072:19;;11731:366;;;:::o;12103:::-;12245:3;12266:67;12330:2;12325:3;12266:67;:::i;:::-;12259:74;;12342:93;12431:3;12342:93;:::i;:::-;12460:2;12455:3;12451:12;12444:19;;12103:366;;;:::o;12475:::-;12617:3;12638:67;12702:2;12697:3;12638:67;:::i;:::-;12631:74;;12714:93;12803:3;12714:93;:::i;:::-;12832:2;12827:3;12823:12;12816:19;;12475:366;;;:::o;12847:398::-;13006:3;13027:83;13108:1;13103:3;13027:83;:::i;:::-;13020:90;;13119:93;13208:3;13119:93;:::i;:::-;13237:1;13232:3;13228:11;13221:18;;12847:398;;;:::o;13251:366::-;13393:3;13414:67;13478:2;13473:3;13414:67;:::i;:::-;13407:74;;13490:93;13579:3;13490:93;:::i;:::-;13608:2;13603:3;13599:12;13592:19;;13251:366;;;:::o;13623:::-;13765:3;13786:67;13850:2;13845:3;13786:67;:::i;:::-;13779:74;;13862:93;13951:3;13862:93;:::i;:::-;13980:2;13975:3;13971:12;13964:19;;13623:366;;;:::o;13995:118::-;14082:24;14100:5;14082:24;:::i;:::-;14077:3;14070:37;13995:118;;:::o;14119:589::-;14344:3;14366:95;14457:3;14448:6;14366:95;:::i;:::-;14359:102;;14478:95;14569:3;14560:6;14478:95;:::i;:::-;14471:102;;14590:92;14678:3;14669:6;14590:92;:::i;:::-;14583:99;;14699:3;14692:10;;14119:589;;;;;;:::o;14714:379::-;14898:3;14920:147;15063:3;14920:147;:::i;:::-;14913:154;;15084:3;15077:10;;14714:379;;;:::o;15099:222::-;15192:4;15230:2;15219:9;15215:18;15207:26;;15243:71;15311:1;15300:9;15296:17;15287:6;15243:71;:::i;:::-;15099:222;;;;:::o;15327:640::-;15522:4;15560:3;15549:9;15545:19;15537:27;;15574:71;15642:1;15631:9;15627:17;15618:6;15574:71;:::i;:::-;15655:72;15723:2;15712:9;15708:18;15699:6;15655:72;:::i;:::-;15737;15805:2;15794:9;15790:18;15781:6;15737:72;:::i;:::-;15856:9;15850:4;15846:20;15841:2;15830:9;15826:18;15819:48;15884:76;15955:4;15946:6;15884:76;:::i;:::-;15876:84;;15327:640;;;;;;;:::o;15973:210::-;16060:4;16098:2;16087:9;16083:18;16075:26;;16111:65;16173:1;16162:9;16158:17;16149:6;16111:65;:::i;:::-;15973:210;;;;:::o;16189:313::-;16302:4;16340:2;16329:9;16325:18;16317:26;;16389:9;16383:4;16379:20;16375:1;16364:9;16360:17;16353:47;16417:78;16490:4;16481:6;16417:78;:::i;:::-;16409:86;;16189:313;;;;:::o;16508:419::-;16674:4;16712:2;16701:9;16697:18;16689:26;;16761:9;16755:4;16751:20;16747:1;16736:9;16732:17;16725:47;16789:131;16915:4;16789:131;:::i;:::-;16781:139;;16508:419;;;:::o;16933:::-;17099:4;17137:2;17126:9;17122:18;17114:26;;17186:9;17180:4;17176:20;17172:1;17161:9;17157:17;17150:47;17214:131;17340:4;17214:131;:::i;:::-;17206:139;;16933:419;;;:::o;17358:::-;17524:4;17562:2;17551:9;17547:18;17539:26;;17611:9;17605:4;17601:20;17597:1;17586:9;17582:17;17575:47;17639:131;17765:4;17639:131;:::i;:::-;17631:139;;17358:419;;;:::o;17783:::-;17949:4;17987:2;17976:9;17972:18;17964:26;;18036:9;18030:4;18026:20;18022:1;18011:9;18007:17;18000:47;18064:131;18190:4;18064:131;:::i;:::-;18056:139;;17783:419;;;:::o;18208:::-;18374:4;18412:2;18401:9;18397:18;18389:26;;18461:9;18455:4;18451:20;18447:1;18436:9;18432:17;18425:47;18489:131;18615:4;18489:131;:::i;:::-;18481:139;;18208:419;;;:::o;18633:::-;18799:4;18837:2;18826:9;18822:18;18814:26;;18886:9;18880:4;18876:20;18872:1;18861:9;18857:17;18850:47;18914:131;19040:4;18914:131;:::i;:::-;18906:139;;18633:419;;;:::o;19058:::-;19224:4;19262:2;19251:9;19247:18;19239:26;;19311:9;19305:4;19301:20;19297:1;19286:9;19282:17;19275:47;19339:131;19465:4;19339:131;:::i;:::-;19331:139;;19058:419;;;:::o;19483:::-;19649:4;19687:2;19676:9;19672:18;19664:26;;19736:9;19730:4;19726:20;19722:1;19711:9;19707:17;19700:47;19764:131;19890:4;19764:131;:::i;:::-;19756:139;;19483:419;;;:::o;19908:::-;20074:4;20112:2;20101:9;20097:18;20089:26;;20161:9;20155:4;20151:20;20147:1;20136:9;20132:17;20125:47;20189:131;20315:4;20189:131;:::i;:::-;20181:139;;19908:419;;;:::o;20333:::-;20499:4;20537:2;20526:9;20522:18;20514:26;;20586:9;20580:4;20576:20;20572:1;20561:9;20557:17;20550:47;20614:131;20740:4;20614:131;:::i;:::-;20606:139;;20333:419;;;:::o;20758:222::-;20851:4;20889:2;20878:9;20874:18;20866:26;;20902:71;20970:1;20959:9;20955:17;20946:6;20902:71;:::i;:::-;20758:222;;;;:::o;20986:129::-;21020:6;21047:20;;:::i;:::-;21037:30;;21076:33;21104:4;21096:6;21076:33;:::i;:::-;20986:129;;;:::o;21121:75::-;21154:6;21187:2;21181:9;21171:19;;21121:75;:::o;21202:307::-;21263:4;21353:18;21345:6;21342:30;21339:56;;;21375:18;;:::i;:::-;21339:56;21413:29;21435:6;21413:29;:::i;:::-;21405:37;;21497:4;21491;21487:15;21479:23;;21202:307;;;:::o;21515:308::-;21577:4;21667:18;21659:6;21656:30;21653:56;;;21689:18;;:::i;:::-;21653:56;21727:29;21749:6;21727:29;:::i;:::-;21719:37;;21811:4;21805;21801:15;21793:23;;21515:308;;;:::o;21829:141::-;21878:4;21901:3;21893:11;;21924:3;21921:1;21914:14;21958:4;21955:1;21945:18;21937:26;;21829:141;;;:::o;21976:98::-;22027:6;22061:5;22055:12;22045:22;;21976:98;;;:::o;22080:99::-;22132:6;22166:5;22160:12;22150:22;;22080:99;;;:::o;22185:168::-;22268:11;22302:6;22297:3;22290:19;22342:4;22337:3;22333:14;22318:29;;22185:168;;;;:::o;22359:147::-;22460:11;22497:3;22482:18;;22359:147;;;;:::o;22512:169::-;22596:11;22630:6;22625:3;22618:19;22670:4;22665:3;22661:14;22646:29;;22512:169;;;;:::o;22687:148::-;22789:11;22826:3;22811:18;;22687:148;;;;:::o;22841:305::-;22881:3;22900:20;22918:1;22900:20;:::i;:::-;22895:25;;22934:20;22952:1;22934:20;:::i;:::-;22929:25;;23088:1;23020:66;23016:74;23013:1;23010:81;23007:107;;;23094:18;;:::i;:::-;23007:107;23138:1;23135;23131:9;23124:16;;22841:305;;;;:::o;23152:185::-;23192:1;23209:20;23227:1;23209:20;:::i;:::-;23204:25;;23243:20;23261:1;23243:20;:::i;:::-;23238:25;;23282:1;23272:35;;23287:18;;:::i;:::-;23272:35;23329:1;23326;23322:9;23317:14;;23152:185;;;;:::o;23343:348::-;23383:7;23406:20;23424:1;23406:20;:::i;:::-;23401:25;;23440:20;23458:1;23440:20;:::i;:::-;23435:25;;23628:1;23560:66;23556:74;23553:1;23550:81;23545:1;23538:9;23531:17;23527:105;23524:131;;;23635:18;;:::i;:::-;23524:131;23683:1;23680;23676:9;23665:20;;23343:348;;;;:::o;23697:191::-;23737:4;23757:20;23775:1;23757:20;:::i;:::-;23752:25;;23791:20;23809:1;23791:20;:::i;:::-;23786:25;;23830:1;23827;23824:8;23821:34;;;23835:18;;:::i;:::-;23821:34;23880:1;23877;23873:9;23865:17;;23697:191;;;;:::o;23894:96::-;23931:7;23960:24;23978:5;23960:24;:::i;:::-;23949:35;;23894:96;;;:::o;23996:90::-;24030:7;24073:5;24066:13;24059:21;24048:32;;23996:90;;;:::o;24092:149::-;24128:7;24168:66;24161:5;24157:78;24146:89;;24092:149;;;:::o;24247:126::-;24284:7;24324:42;24317:5;24313:54;24302:65;;24247:126;;;:::o;24379:77::-;24416:7;24445:5;24434:16;;24379:77;;;:::o;24462:154::-;24546:6;24541:3;24536;24523:30;24608:1;24599:6;24594:3;24590:16;24583:27;24462:154;;;:::o;24622:307::-;24690:1;24700:113;24714:6;24711:1;24708:13;24700:113;;;24799:1;24794:3;24790:11;24784:18;24780:1;24775:3;24771:11;24764:39;24736:2;24733:1;24729:10;24724:15;;24700:113;;;24831:6;24828:1;24825:13;24822:101;;;24911:1;24902:6;24897:3;24893:16;24886:27;24822:101;24671:258;24622:307;;;:::o;24935:320::-;24979:6;25016:1;25010:4;25006:12;24996:22;;25063:1;25057:4;25053:12;25084:18;25074:81;;25140:4;25132:6;25128:17;25118:27;;25074:81;25202:2;25194:6;25191:14;25171:18;25168:38;25165:84;;;25221:18;;:::i;:::-;25165:84;24986:269;24935:320;;;:::o;25261:281::-;25344:27;25366:4;25344:27;:::i;:::-;25336:6;25332:40;25474:6;25462:10;25459:22;25438:18;25426:10;25423:34;25420:62;25417:88;;;25485:18;;:::i;:::-;25417:88;25525:10;25521:2;25514:22;25304:238;25261:281;;:::o;25548:233::-;25587:3;25610:24;25628:5;25610:24;:::i;:::-;25601:33;;25656:66;25649:5;25646:77;25643:103;;;25726:18;;:::i;:::-;25643:103;25773:1;25766:5;25762:13;25755:20;;25548:233;;;:::o;25787:176::-;25819:1;25836:20;25854:1;25836:20;:::i;:::-;25831:25;;25870:20;25888:1;25870:20;:::i;:::-;25865:25;;25909:1;25899:35;;25914:18;;:::i;:::-;25899:35;25955:1;25952;25948:9;25943:14;;25787:176;;;;:::o;25969:180::-;26017:77;26014:1;26007:88;26114:4;26111:1;26104:15;26138:4;26135:1;26128:15;26155:180;26203:77;26200:1;26193:88;26300:4;26297:1;26290:15;26324:4;26321:1;26314:15;26341:180;26389:77;26386:1;26379:88;26486:4;26483:1;26476:15;26510:4;26507:1;26500:15;26527:180;26575:77;26572:1;26565:88;26672:4;26669:1;26662:15;26696:4;26693:1;26686:15;26713:180;26761:77;26758:1;26751:88;26858:4;26855:1;26848:15;26882:4;26879:1;26872:15;26899:117;27008:1;27005;26998:12;27022:117;27131:1;27128;27121:12;27145:117;27254:1;27251;27244:12;27268:117;27377:1;27374;27367:12;27391:102;27432:6;27483:2;27479:7;27474:2;27467:5;27463:14;27459:28;27449:38;;27391:102;;;:::o;27499:225::-;27639:34;27635:1;27627:6;27623:14;27616:58;27708:8;27703:2;27695:6;27691:15;27684:33;27499:225;:::o;27730:220::-;27870:34;27866:1;27858:6;27854:14;27847:58;27939:3;27934:2;27926:6;27922:15;27915:28;27730:220;:::o;27956:168::-;28096:20;28092:1;28084:6;28080:14;28073:44;27956:168;:::o;28130:182::-;28270:34;28266:1;28258:6;28254:14;28247:58;28130:182;:::o;28318:173::-;28458:25;28454:1;28446:6;28442:14;28435:49;28318:173;:::o;28497:234::-;28637:34;28633:1;28625:6;28621:14;28614:58;28706:17;28701:2;28693:6;28689:15;28682:42;28497:234;:::o;28737:164::-;28877:16;28873:1;28865:6;28861:14;28854:40;28737:164;:::o;28907:167::-;29047:19;29043:1;29035:6;29031:14;29024:43;28907:167;:::o;29080:114::-;;:::o;29200:168::-;29340:20;29336:1;29328:6;29324:14;29317:44;29200:168;:::o;29374:176::-;29514:28;29510:1;29502:6;29498:14;29491:52;29374:176;:::o;29556:122::-;29629:24;29647:5;29629:24;:::i;:::-;29622:5;29619:35;29609:63;;29668:1;29665;29658:12;29609:63;29556:122;:::o;29684:116::-;29754:21;29769:5;29754:21;:::i;:::-;29747:5;29744:32;29734:60;;29790:1;29787;29780:12;29734:60;29684:116;:::o;29806:120::-;29878:23;29895:5;29878:23;:::i;:::-;29871:5;29868:34;29858:62;;29916:1;29913;29906:12;29858:62;29806:120;:::o;29932:122::-;30005:24;30023:5;30005:24;:::i;:::-;29998:5;29995:35;29985:63;;30044:1;30041;30034:12;29985:63;29932:122;:::o

Swarm Source

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