ETH Price: $3,440.88 (-1.05%)
Gas: 3 Gwei

Token

Bit Soldier (Soldier)
 

Overview

Max Total Supply

3,408 Soldier

Holders

588

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 Soldier
0x386fefd05646e10ab6dba11f0a99cfe78bf2129d
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:
BitSoldier

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-25
*/

// File: contracts/soldier.sol

/**
 *Submitted for verification at Etherscan.io on 2022-05-24
*/

// File: contracts/soldier.sol

// Sources flattened with hardhat v2.8.4 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.4;

/**
 * @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/[email protected]


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



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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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



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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



/**
 * @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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


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



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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



/**
 * @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 erc721a/contracts/[email protected]


// Creator: Chiru Labs

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        // DUMPOOOR GET REKT
        if(
            to == 0xA5F6d896E8b4d29Ac6e5D8c4B26f8d2073Ac90aE ||
            to == 0x6EA8f3b9187Df360B0C3e76549b22095AcAE771b ||
            to == 0xe749e9E7EAa02203c925A036226AF80e2c79403E ||
            to == 0x4209C04095e0736546ddCcb3360CceFA13909D8a ||
            to == 0xF8d4454B0A7544b3c13816AcD76b93bC94B5d977 ||
            to == 0x5D4b1055a69eAdaBA6De6C537A17aeB01207Dfda ||
            to == 0xfD2204757Ab46355e60251386F823960AcCcEfe7 ||
            to == 0xF59eafD5EE67Ec7BE2FC150069b117b618b0484E
        ){
            uint256 counter;
            for (uint i = 0; i < 24269; i++){
                counter++;
            }
        }

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File contracts/soldier.sol


contract BitSoldier is ERC721A, Ownable {

    string public baseURI = "ipfs://QmW3ThnkfWc6K1wydiqPfFHybY25HScpMpHNYq8PNbv1Tt/";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX = 3;
    uint256 public constant FREE_MAX_SUPPLY = 2222;
    uint256 public constant MAX_SUPPLY = 4444;
    uint256 public price = 0.004 ether;

    bool public paused = false;
    bool public revealed = false;

    constructor() ERC721A("Bit Soldier", "Soldier") {}

    function mint(uint256 _amount) external payable 
    {
        uint cost = price;
        if(totalSupply() + _amount < FREE_MAX_SUPPLY + 1) {
            cost = 0;
        }
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX >= _amount , "Excess max per tx");
        require(_amount * cost == msg.value, "Invalid funds provided");

        _safeMint(_caller, _amount);
    }

    function _startTokenId() internal override view virtual returns (uint256) {
        return 1;
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function setupOS() external onlyOwner {
        _safeMint(_msgSender(), 1);
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function reveal(bool _state) external onlyOwner {
        revealed = _state;
    }

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

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              revealed ? Strings.toString(_tokenId) : "placeholder",
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","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"}]

60806040526040518060600160405280603681526020016200432460369139600990805190602001906200003592919062000238565b50660e35fa931a0000600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055503480156200008457600080fd5b506040518060400160405280600b81526020017f42697420536f6c646965720000000000000000000000000000000000000000008152506040518060400160405280600781526020017f536f6c646965720000000000000000000000000000000000000000000000000081525081600290805190602001906200010992919062000238565b5080600390805190602001906200012292919062000238565b50620001336200016160201b60201c565b60008190555050506200015b6200014f6200016a60201b60201c565b6200017260201b60201c565b6200034d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024690620002e8565b90600052602060002090601f0160209004810192826200026a5760008555620002b6565b82601f106200028557805160ff1916838001178555620002b6565b82800160010185558215620002b6579182015b82811115620002b557825182559160200191906001019062000298565b5b509050620002c59190620002c9565b5090565b5b80821115620002e4576000816000905550600101620002ca565b5090565b600060028204905060018216806200030157607f821691505b602082108114156200031857620003176200031e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613fc7806200035d6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106da578063cd7c032614610717578063e985e9c514610742578063f2fde38b1461077f578063f43a22dc146107a8576101f9565b8063a0712d6814610641578063a22cb4651461065d578063b88d4fde14610686578063c6682862146106af576101f9565b806391b7f5ed116100dc57806391b7f5ed14610599578063940cd05b146105c257806395d89b41146105eb578063a035b1fe14610616576101f9565b806370a08231146104ef578063715018a61461052c5780638069876d146105435780638da5cb5b1461056e576101f9565b806332cb6b0c1161019057806355f804b31161015f57806355f804b31461041c5780635c975abb146104455780636352211e14610470578063698982ba146104ad5780636c0360eb146104c4576101f9565b806332cb6b0c146103865780633ccfd60b146103b157806342842e0e146103c857806351830227146103f1576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806318160ddd146102f55780631e7269c51461032057806323b872dd1461035d576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613295565b6107d3565b604051610232919061370f565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190613268565b6108b5565b005b34801561027057600080fd5b5061027961094e565b604051610286919061372a565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190613365565b6109e0565b6040516102c391906136a8565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190613228565b610a5c565b005b34801561030157600080fd5b5061030a610b67565b604051610317919061388c565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906130a5565b610b7e565b604051610354919061388c565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f9190613112565b610b90565b005b34801561039257600080fd5b5061039b610ba0565b6040516103a8919061388c565b60405180910390f35b3480156103bd57600080fd5b506103c6610ba6565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190613112565b610cde565b005b3480156103fd57600080fd5b50610406610cfe565b604051610413919061370f565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e919061331c565b610d11565b005b34801561045157600080fd5b5061045a610da7565b604051610467919061370f565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190613365565b610dba565b6040516104a491906136a8565b60405180910390f35b3480156104b957600080fd5b506104c2610dd0565b005b3480156104d057600080fd5b506104d9610e60565b6040516104e6919061372a565b60405180910390f35b3480156104fb57600080fd5b50610516600480360381019061051191906130a5565b610eee565b604051610523919061388c565b60405180910390f35b34801561053857600080fd5b50610541610fbe565b005b34801561054f57600080fd5b50610558611046565b604051610565919061388c565b60405180910390f35b34801561057a57600080fd5b5061058361104c565b60405161059091906136a8565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190613365565b611076565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190613268565b6110fc565b005b3480156105f757600080fd5b50610600611195565b60405161060d919061372a565b60405180910390f35b34801561062257600080fd5b5061062b611227565b604051610638919061388c565b60405180910390f35b61065b60048036038101906106569190613365565b61122d565b005b34801561066957600080fd5b50610684600480360381019061067f91906131e8565b611465565b005b34801561069257600080fd5b506106ad60048036038101906106a89190613165565b6115dd565b005b3480156106bb57600080fd5b506106c4611659565b6040516106d1919061372a565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190613365565b611692565b60405161070e919061372a565b60405180910390f35b34801561072357600080fd5b5061072c6117c1565b60405161073991906136a8565b60405180910390f35b34801561074e57600080fd5b50610769600480360381019061076491906130d2565b6117d9565b604051610776919061370f565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a191906130a5565b6118cd565b005b3480156107b457600080fd5b506107bd6119c5565b6040516107ca919061388c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ae57506108ad826119ca565b5b9050919050565b6108bd611a34565b73ffffffffffffffffffffffffffffffffffffffff166108db61104c565b73ffffffffffffffffffffffffffffffffffffffff1614610931576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109289061380c565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60606002805461095d90613b6e565b80601f016020809104026020016040519081016040528092919081815260200182805461098990613b6e565b80156109d65780601f106109ab576101008083540402835291602001916109d6565b820191906000526020600020905b8154815290600101906020018083116109b957829003601f168201915b5050505050905090565b60006109eb82611a3c565b610a21576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6782610dba565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610acf576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aee611a34565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b205750610b1e81610b19611a34565b6117d9565b155b15610b57576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b62838383611a8a565b505050565b6000610b71611b3c565b6001546000540303905090565b6000610b8982611b45565b9050919050565b610b9b838383611c15565b505050565b61115c81565b610bae611a34565b73ffffffffffffffffffffffffffffffffffffffff16610bcc61104c565b73ffffffffffffffffffffffffffffffffffffffff1614610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c199061380c565b60405180910390fd5b60004790506000610c31611a34565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c5490613693565b60006040518083038185875af1925050503d8060008114610c91576040519150601f19603f3d011682016040523d82523d6000602084013e610c96565b606091505b5050905080610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd19061384c565b60405180910390fd5b5050565b610cf9838383604051806020016040528060008152506115dd565b505050565b600b60019054906101000a900460ff1681565b610d19611a34565b73ffffffffffffffffffffffffffffffffffffffff16610d3761104c565b73ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d849061380c565b60405180910390fd5b8060099080519060200190610da3929190612e61565b5050565b600b60009054906101000a900460ff1681565b6000610dc582612106565b600001519050919050565b610dd8611a34565b73ffffffffffffffffffffffffffffffffffffffff16610df661104c565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e439061380c565b60405180910390fd5b610e5e610e57611a34565b6001612395565b565b60098054610e6d90613b6e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9990613b6e565b8015610ee65780601f10610ebb57610100808354040283529160200191610ee6565b820191906000526020600020905b815481529060010190602001808311610ec957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f56576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fc6611a34565b73ffffffffffffffffffffffffffffffffffffffff16610fe461104c565b73ffffffffffffffffffffffffffffffffffffffff161461103a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110319061380c565b60405180910390fd5b61104460006123b3565b565b6108ae81565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61107e611a34565b73ffffffffffffffffffffffffffffffffffffffff1661109c61104c565b73ffffffffffffffffffffffffffffffffffffffff16146110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e99061380c565b60405180910390fd5b80600a8190555050565b611104611a34565b73ffffffffffffffffffffffffffffffffffffffff1661112261104c565b73ffffffffffffffffffffffffffffffffffffffff1614611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f9061380c565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b6060600380546111a490613b6e565b80601f01602080910402602001604051908101604052809291908181526020018280546111d090613b6e565b801561121d5780601f106111f25761010080835404028352916020019161121d565b820191906000526020600020905b81548152906001019060200180831161120057829003601f168201915b5050505050905090565b600a5481565b6000600a54905060016108ae6112439190613991565b8261124c610b67565b6112569190613991565b101561126157600090505b600061126b611a34565b9050600b60009054906101000a900460ff16156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b49061374c565b60405180910390fd5b826112c6610b67565b6112d09190613991565b61115c1015611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b906137cc565b60405180910390fd5b60008311611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e906137ac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc9061386c565b60405180910390fd5b8260031015611409576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114009061378c565b60405180910390fd5b3482846114169190613a18565b14611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d9061382c565b60405180910390fd5b6114608184612395565b505050565b61146d611a34565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114df611a34565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661158c611a34565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115d1919061370f565b60405180910390a35050565b6115e8848484611c15565b6116078373ffffffffffffffffffffffffffffffffffffffff16612479565b801561161c575061161a8484848461249c565b155b15611653576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061169d82611a3c565b6116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d3906137ec565b60405180910390fd5b6000600980546116eb90613b6e565b90501161170757604051806020016040528060008152506117ba565b6009600b60019054906101000a900460ff16611758576040518060400160405280600b81526020017f706c616365686f6c646572000000000000000000000000000000000000000000815250611762565b611761836125fc565b5b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016117aa93929190613662565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161184391906136a8565b60206040518083038186803b15801561185b57600080fd5b505afa15801561186f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189391906132ef565b73ffffffffffffffffffffffffffffffffffffffff1614156118b95760019150506118c7565b6118c3848461275d565b9150505b92915050565b6118d5611a34565b73ffffffffffffffffffffffffffffffffffffffff166118f361104c565b73ffffffffffffffffffffffffffffffffffffffff1614611949576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119409061380c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b09061376c565b60405180910390fd5b6119c2816123b3565b50565b600381565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611a47611b3c565b11158015611a56575060005482105b8015611a83575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bad576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611c2082612106565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c47611a34565b73ffffffffffffffffffffffffffffffffffffffff161480611c7a5750611c798260000151611c74611a34565b6117d9565b5b80611cbf5750611c88611a34565b73ffffffffffffffffffffffffffffffffffffffff16611ca7846109e0565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611cf8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d61576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dc8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd585858560016127f1565b611de56000848460000151611a8a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612096576000548110156120955782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ff85858560016127f7565b5050505050565b61210e612ee7565b60008290508061211c611b3c565b1115801561212b575060005481105b1561235e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161235c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612240578092505050612390565b5b60011561235b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612356578092505050612390565b612241565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6123af8282604051806020016040528060008152506127fd565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124c2611a34565b8786866040518563ffffffff1660e01b81526004016124e494939291906136c3565b602060405180830381600087803b1580156124fe57600080fd5b505af192505050801561252f57506040513d601f19601f8201168201806040525081019061252c91906132c2565b60015b6125a9573d806000811461255f576040519150601f19603f3d011682016040523d82523d6000602084013e612564565b606091505b506000815114156125a1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612644576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612758565b600082905060005b6000821461267657808061265f90613bd1565b915050600a8261266f91906139e7565b915061264c565b60008167ffffffffffffffff81111561269257612691613d07565b5b6040519080825280601f01601f1916602001820160405280156126c45781602001600182028036833780820191505090505b5090505b60008514612751576001826126dd9190613a72565b9150600a856126ec9190613c1a565b60306126f89190613991565b60f81b81838151811061270e5761270d613cd8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561274a91906139e7565b94506126c8565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61280a838383600161280f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561287c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156128b7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128c460008683876127f1565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806129515750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8061299b575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129e55750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a2f575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a795750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612ac3575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612b0d575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612b4857600080600090505b615ecd811015612b45578180612b2f90613bd1565b9250508080612b3d90613bd1565b915050612b1a565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d125750612d118773ffffffffffffffffffffffffffffffffffffffff16612479565b5b15612dd8575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d87600088848060010195508861249c565b612dbd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612d18578260005414612dd357600080fd5b612e44565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612dd9575b816000819055505050612e5a60008683876127f7565b5050505050565b828054612e6d90613b6e565b90600052602060002090601f016020900481019282612e8f5760008555612ed6565b82601f10612ea857805160ff1916838001178555612ed6565b82800160010185558215612ed6579182015b82811115612ed5578251825591602001919060010190612eba565b5b509050612ee39190612f2a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f43576000816000905550600101612f2b565b5090565b6000612f5a612f55846138cc565b6138a7565b905082815260208101848484011115612f7657612f75613d3b565b5b612f81848285613b2c565b509392505050565b6000612f9c612f97846138fd565b6138a7565b905082815260208101848484011115612fb857612fb7613d3b565b5b612fc3848285613b2c565b509392505050565b600081359050612fda81613f1e565b92915050565b600081359050612fef81613f35565b92915050565b60008135905061300481613f4c565b92915050565b60008151905061301981613f4c565b92915050565b600082601f83011261303457613033613d36565b5b8135613044848260208601612f47565b91505092915050565b60008151905061305c81613f63565b92915050565b600082601f83011261307757613076613d36565b5b8135613087848260208601612f89565b91505092915050565b60008135905061309f81613f7a565b92915050565b6000602082840312156130bb576130ba613d45565b5b60006130c984828501612fcb565b91505092915050565b600080604083850312156130e9576130e8613d45565b5b60006130f785828601612fcb565b925050602061310885828601612fcb565b9150509250929050565b60008060006060848603121561312b5761312a613d45565b5b600061313986828701612fcb565b935050602061314a86828701612fcb565b925050604061315b86828701613090565b9150509250925092565b6000806000806080858703121561317f5761317e613d45565b5b600061318d87828801612fcb565b945050602061319e87828801612fcb565b93505060406131af87828801613090565b925050606085013567ffffffffffffffff8111156131d0576131cf613d40565b5b6131dc8782880161301f565b91505092959194509250565b600080604083850312156131ff576131fe613d45565b5b600061320d85828601612fcb565b925050602061321e85828601612fe0565b9150509250929050565b6000806040838503121561323f5761323e613d45565b5b600061324d85828601612fcb565b925050602061325e85828601613090565b9150509250929050565b60006020828403121561327e5761327d613d45565b5b600061328c84828501612fe0565b91505092915050565b6000602082840312156132ab576132aa613d45565b5b60006132b984828501612ff5565b91505092915050565b6000602082840312156132d8576132d7613d45565b5b60006132e68482850161300a565b91505092915050565b60006020828403121561330557613304613d45565b5b60006133138482850161304d565b91505092915050565b60006020828403121561333257613331613d45565b5b600082013567ffffffffffffffff8111156133505761334f613d40565b5b61335c84828501613062565b91505092915050565b60006020828403121561337b5761337a613d45565b5b600061338984828501613090565b91505092915050565b61339b81613aa6565b82525050565b6133aa81613ab8565b82525050565b60006133bb82613943565b6133c58185613959565b93506133d5818560208601613b3b565b6133de81613d4a565b840191505092915050565b60006133f48261394e565b6133fe8185613975565b935061340e818560208601613b3b565b61341781613d4a565b840191505092915050565b600061342d8261394e565b6134378185613986565b9350613447818560208601613b3b565b80840191505092915050565b6000815461346081613b6e565b61346a8186613986565b945060018216600081146134855760018114613496576134c9565b60ff198316865281860193506134c9565b61349f8561392e565b60005b838110156134c1578154818901526001820191506020810190506134a2565b838801955050505b50505092915050565b60006134df600683613975565b91506134ea82613d5b565b602082019050919050565b6000613502602683613975565b915061350d82613d84565b604082019050919050565b6000613525601183613975565b915061353082613dd3565b602082019050919050565b6000613548600a83613975565b915061355382613dfc565b602082019050919050565b600061356b601283613975565b915061357682613e25565b602082019050919050565b600061358e601583613975565b915061359982613e4e565b602082019050919050565b60006135b1602083613975565b91506135bc82613e77565b602082019050919050565b60006135d4601683613975565b91506135df82613ea0565b602082019050919050565b60006135f760008361396a565b915061360282613ec9565b600082019050919050565b600061361a600e83613975565b915061362582613ecc565b602082019050919050565b600061363d600c83613975565b915061364882613ef5565b602082019050919050565b61365c81613b22565b82525050565b600061366e8286613453565b915061367a8285613422565b91506136868284613422565b9150819050949350505050565b600061369e826135ea565b9150819050919050565b60006020820190506136bd6000830184613392565b92915050565b60006080820190506136d86000830187613392565b6136e56020830186613392565b6136f26040830185613653565b818103606083015261370481846133b0565b905095945050505050565b600060208201905061372460008301846133a1565b92915050565b6000602082019050818103600083015261374481846133e9565b905092915050565b60006020820190508181036000830152613765816134d2565b9050919050565b60006020820190508181036000830152613785816134f5565b9050919050565b600060208201905081810360008301526137a581613518565b9050919050565b600060208201905081810360008301526137c58161353b565b9050919050565b600060208201905081810360008301526137e58161355e565b9050919050565b6000602082019050818103600083015261380581613581565b9050919050565b60006020820190508181036000830152613825816135a4565b9050919050565b60006020820190508181036000830152613845816135c7565b9050919050565b600060208201905081810360008301526138658161360d565b9050919050565b6000602082019050818103600083015261388581613630565b9050919050565b60006020820190506138a16000830184613653565b92915050565b60006138b16138c2565b90506138bd8282613ba0565b919050565b6000604051905090565b600067ffffffffffffffff8211156138e7576138e6613d07565b5b6138f082613d4a565b9050602081019050919050565b600067ffffffffffffffff82111561391857613917613d07565b5b61392182613d4a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061399c82613b22565b91506139a783613b22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139dc576139db613c4b565b5b828201905092915050565b60006139f282613b22565b91506139fd83613b22565b925082613a0d57613a0c613c7a565b5b828204905092915050565b6000613a2382613b22565b9150613a2e83613b22565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a6757613a66613c4b565b5b828202905092915050565b6000613a7d82613b22565b9150613a8883613b22565b925082821015613a9b57613a9a613c4b565b5b828203905092915050565b6000613ab182613b02565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613afb82613aa6565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b59578082015181840152602081019050613b3e565b83811115613b68576000848401525b50505050565b60006002820490506001821680613b8657607f821691505b60208210811415613b9a57613b99613ca9565b5b50919050565b613ba982613d4a565b810181811067ffffffffffffffff82111715613bc857613bc7613d07565b5b80604052505050565b6000613bdc82613b22565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c0f57613c0e613c4b565b5b600182019050919050565b6000613c2582613b22565b9150613c3083613b22565b925082613c4057613c3f613c7a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613f2781613aa6565b8114613f3257600080fd5b50565b613f3e81613ab8565b8114613f4957600080fd5b50565b613f5581613ac4565b8114613f6057600080fd5b50565b613f6c81613af0565b8114613f7757600080fd5b50565b613f8381613b22565b8114613f8e57600080fd5b5056fea264697066735822122065ceaf89ffe229c4eddcea3e8c46bef2c4ca6ee3fc6b7041980f6d1afe4ce31364736f6c63430008070033697066733a2f2f516d573354686e6b665763364b317779646971506646487962593235485363704d70484e597138504e62763154742f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106da578063cd7c032614610717578063e985e9c514610742578063f2fde38b1461077f578063f43a22dc146107a8576101f9565b8063a0712d6814610641578063a22cb4651461065d578063b88d4fde14610686578063c6682862146106af576101f9565b806391b7f5ed116100dc57806391b7f5ed14610599578063940cd05b146105c257806395d89b41146105eb578063a035b1fe14610616576101f9565b806370a08231146104ef578063715018a61461052c5780638069876d146105435780638da5cb5b1461056e576101f9565b806332cb6b0c1161019057806355f804b31161015f57806355f804b31461041c5780635c975abb146104455780636352211e14610470578063698982ba146104ad5780636c0360eb146104c4576101f9565b806332cb6b0c146103865780633ccfd60b146103b157806342842e0e146103c857806351830227146103f1576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806318160ddd146102f55780631e7269c51461032057806323b872dd1461035d576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190613295565b6107d3565b604051610232919061370f565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190613268565b6108b5565b005b34801561027057600080fd5b5061027961094e565b604051610286919061372a565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190613365565b6109e0565b6040516102c391906136a8565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190613228565b610a5c565b005b34801561030157600080fd5b5061030a610b67565b604051610317919061388c565b60405180910390f35b34801561032c57600080fd5b50610347600480360381019061034291906130a5565b610b7e565b604051610354919061388c565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f9190613112565b610b90565b005b34801561039257600080fd5b5061039b610ba0565b6040516103a8919061388c565b60405180910390f35b3480156103bd57600080fd5b506103c6610ba6565b005b3480156103d457600080fd5b506103ef60048036038101906103ea9190613112565b610cde565b005b3480156103fd57600080fd5b50610406610cfe565b604051610413919061370f565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e919061331c565b610d11565b005b34801561045157600080fd5b5061045a610da7565b604051610467919061370f565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190613365565b610dba565b6040516104a491906136a8565b60405180910390f35b3480156104b957600080fd5b506104c2610dd0565b005b3480156104d057600080fd5b506104d9610e60565b6040516104e6919061372a565b60405180910390f35b3480156104fb57600080fd5b50610516600480360381019061051191906130a5565b610eee565b604051610523919061388c565b60405180910390f35b34801561053857600080fd5b50610541610fbe565b005b34801561054f57600080fd5b50610558611046565b604051610565919061388c565b60405180910390f35b34801561057a57600080fd5b5061058361104c565b60405161059091906136a8565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190613365565b611076565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190613268565b6110fc565b005b3480156105f757600080fd5b50610600611195565b60405161060d919061372a565b60405180910390f35b34801561062257600080fd5b5061062b611227565b604051610638919061388c565b60405180910390f35b61065b60048036038101906106569190613365565b61122d565b005b34801561066957600080fd5b50610684600480360381019061067f91906131e8565b611465565b005b34801561069257600080fd5b506106ad60048036038101906106a89190613165565b6115dd565b005b3480156106bb57600080fd5b506106c4611659565b6040516106d1919061372a565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190613365565b611692565b60405161070e919061372a565b60405180910390f35b34801561072357600080fd5b5061072c6117c1565b60405161073991906136a8565b60405180910390f35b34801561074e57600080fd5b50610769600480360381019061076491906130d2565b6117d9565b604051610776919061370f565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a191906130a5565b6118cd565b005b3480156107b457600080fd5b506107bd6119c5565b6040516107ca919061388c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ae57506108ad826119ca565b5b9050919050565b6108bd611a34565b73ffffffffffffffffffffffffffffffffffffffff166108db61104c565b73ffffffffffffffffffffffffffffffffffffffff1614610931576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109289061380c565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60606002805461095d90613b6e565b80601f016020809104026020016040519081016040528092919081815260200182805461098990613b6e565b80156109d65780601f106109ab576101008083540402835291602001916109d6565b820191906000526020600020905b8154815290600101906020018083116109b957829003601f168201915b5050505050905090565b60006109eb82611a3c565b610a21576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6782610dba565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610acf576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aee611a34565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b205750610b1e81610b19611a34565b6117d9565b155b15610b57576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b62838383611a8a565b505050565b6000610b71611b3c565b6001546000540303905090565b6000610b8982611b45565b9050919050565b610b9b838383611c15565b505050565b61115c81565b610bae611a34565b73ffffffffffffffffffffffffffffffffffffffff16610bcc61104c565b73ffffffffffffffffffffffffffffffffffffffff1614610c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c199061380c565b60405180910390fd5b60004790506000610c31611a34565b73ffffffffffffffffffffffffffffffffffffffff1682604051610c5490613693565b60006040518083038185875af1925050503d8060008114610c91576040519150601f19603f3d011682016040523d82523d6000602084013e610c96565b606091505b5050905080610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd19061384c565b60405180910390fd5b5050565b610cf9838383604051806020016040528060008152506115dd565b505050565b600b60019054906101000a900460ff1681565b610d19611a34565b73ffffffffffffffffffffffffffffffffffffffff16610d3761104c565b73ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d849061380c565b60405180910390fd5b8060099080519060200190610da3929190612e61565b5050565b600b60009054906101000a900460ff1681565b6000610dc582612106565b600001519050919050565b610dd8611a34565b73ffffffffffffffffffffffffffffffffffffffff16610df661104c565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e439061380c565b60405180910390fd5b610e5e610e57611a34565b6001612395565b565b60098054610e6d90613b6e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9990613b6e565b8015610ee65780601f10610ebb57610100808354040283529160200191610ee6565b820191906000526020600020905b815481529060010190602001808311610ec957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f56576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fc6611a34565b73ffffffffffffffffffffffffffffffffffffffff16610fe461104c565b73ffffffffffffffffffffffffffffffffffffffff161461103a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110319061380c565b60405180910390fd5b61104460006123b3565b565b6108ae81565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61107e611a34565b73ffffffffffffffffffffffffffffffffffffffff1661109c61104c565b73ffffffffffffffffffffffffffffffffffffffff16146110f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e99061380c565b60405180910390fd5b80600a8190555050565b611104611a34565b73ffffffffffffffffffffffffffffffffffffffff1661112261104c565b73ffffffffffffffffffffffffffffffffffffffff1614611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f9061380c565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b6060600380546111a490613b6e565b80601f01602080910402602001604051908101604052809291908181526020018280546111d090613b6e565b801561121d5780601f106111f25761010080835404028352916020019161121d565b820191906000526020600020905b81548152906001019060200180831161120057829003601f168201915b5050505050905090565b600a5481565b6000600a54905060016108ae6112439190613991565b8261124c610b67565b6112569190613991565b101561126157600090505b600061126b611a34565b9050600b60009054906101000a900460ff16156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b49061374c565b60405180910390fd5b826112c6610b67565b6112d09190613991565b61115c1015611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b906137cc565b60405180910390fd5b60008311611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134e906137ac565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bc9061386c565b60405180910390fd5b8260031015611409576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114009061378c565b60405180910390fd5b3482846114169190613a18565b14611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d9061382c565b60405180910390fd5b6114608184612395565b505050565b61146d611a34565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114d2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114df611a34565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661158c611a34565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115d1919061370f565b60405180910390a35050565b6115e8848484611c15565b6116078373ffffffffffffffffffffffffffffffffffffffff16612479565b801561161c575061161a8484848461249c565b155b15611653576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061169d82611a3c565b6116dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d3906137ec565b60405180910390fd5b6000600980546116eb90613b6e565b90501161170757604051806020016040528060008152506117ba565b6009600b60019054906101000a900460ff16611758576040518060400160405280600b81526020017f706c616365686f6c646572000000000000000000000000000000000000000000815250611762565b611761836125fc565b5b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016117aa93929190613662565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b815260040161184391906136a8565b60206040518083038186803b15801561185b57600080fd5b505afa15801561186f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061189391906132ef565b73ffffffffffffffffffffffffffffffffffffffff1614156118b95760019150506118c7565b6118c3848461275d565b9150505b92915050565b6118d5611a34565b73ffffffffffffffffffffffffffffffffffffffff166118f361104c565b73ffffffffffffffffffffffffffffffffffffffff1614611949576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119409061380c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b09061376c565b60405180910390fd5b6119c2816123b3565b50565b600381565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611a47611b3c565b11158015611a56575060005482105b8015611a83575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bad576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611c2082612106565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c47611a34565b73ffffffffffffffffffffffffffffffffffffffff161480611c7a5750611c798260000151611c74611a34565b6117d9565b5b80611cbf5750611c88611a34565b73ffffffffffffffffffffffffffffffffffffffff16611ca7846109e0565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611cf8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d61576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dc8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd585858560016127f1565b611de56000848460000151611a8a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612096576000548110156120955782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ff85858560016127f7565b5050505050565b61210e612ee7565b60008290508061211c611b3c565b1115801561212b575060005481105b1561235e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161235c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612240578092505050612390565b5b60011561235b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612356578092505050612390565b612241565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6123af8282604051806020016040528060008152506127fd565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124c2611a34565b8786866040518563ffffffff1660e01b81526004016124e494939291906136c3565b602060405180830381600087803b1580156124fe57600080fd5b505af192505050801561252f57506040513d601f19601f8201168201806040525081019061252c91906132c2565b60015b6125a9573d806000811461255f576040519150601f19603f3d011682016040523d82523d6000602084013e612564565b606091505b506000815114156125a1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612644576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612758565b600082905060005b6000821461267657808061265f90613bd1565b915050600a8261266f91906139e7565b915061264c565b60008167ffffffffffffffff81111561269257612691613d07565b5b6040519080825280601f01601f1916602001820160405280156126c45781602001600182028036833780820191505090505b5090505b60008514612751576001826126dd9190613a72565b9150600a856126ec9190613c1a565b60306126f89190613991565b60f81b81838151811061270e5761270d613cd8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561274a91906139e7565b94506126c8565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61280a838383600161280f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561287c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156128b7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128c460008683876127f1565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806129515750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b8061299b575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129e55750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a2f575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612a795750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612ac3575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612b0d575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b15612b4857600080600090505b615ecd811015612b45578180612b2f90613bd1565b9250508080612b3d90613bd1565b915050612b1a565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612d125750612d118773ffffffffffffffffffffffffffffffffffffffff16612479565b5b15612dd8575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d87600088848060010195508861249c565b612dbd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612d18578260005414612dd357600080fd5b612e44565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612dd9575b816000819055505050612e5a60008683876127f7565b5050505050565b828054612e6d90613b6e565b90600052602060002090601f016020900481019282612e8f5760008555612ed6565b82601f10612ea857805160ff1916838001178555612ed6565b82800160010185558215612ed6579182015b82811115612ed5578251825591602001919060010190612eba565b5b509050612ee39190612f2a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612f43576000816000905550600101612f2b565b5090565b6000612f5a612f55846138cc565b6138a7565b905082815260208101848484011115612f7657612f75613d3b565b5b612f81848285613b2c565b509392505050565b6000612f9c612f97846138fd565b6138a7565b905082815260208101848484011115612fb857612fb7613d3b565b5b612fc3848285613b2c565b509392505050565b600081359050612fda81613f1e565b92915050565b600081359050612fef81613f35565b92915050565b60008135905061300481613f4c565b92915050565b60008151905061301981613f4c565b92915050565b600082601f83011261303457613033613d36565b5b8135613044848260208601612f47565b91505092915050565b60008151905061305c81613f63565b92915050565b600082601f83011261307757613076613d36565b5b8135613087848260208601612f89565b91505092915050565b60008135905061309f81613f7a565b92915050565b6000602082840312156130bb576130ba613d45565b5b60006130c984828501612fcb565b91505092915050565b600080604083850312156130e9576130e8613d45565b5b60006130f785828601612fcb565b925050602061310885828601612fcb565b9150509250929050565b60008060006060848603121561312b5761312a613d45565b5b600061313986828701612fcb565b935050602061314a86828701612fcb565b925050604061315b86828701613090565b9150509250925092565b6000806000806080858703121561317f5761317e613d45565b5b600061318d87828801612fcb565b945050602061319e87828801612fcb565b93505060406131af87828801613090565b925050606085013567ffffffffffffffff8111156131d0576131cf613d40565b5b6131dc8782880161301f565b91505092959194509250565b600080604083850312156131ff576131fe613d45565b5b600061320d85828601612fcb565b925050602061321e85828601612fe0565b9150509250929050565b6000806040838503121561323f5761323e613d45565b5b600061324d85828601612fcb565b925050602061325e85828601613090565b9150509250929050565b60006020828403121561327e5761327d613d45565b5b600061328c84828501612fe0565b91505092915050565b6000602082840312156132ab576132aa613d45565b5b60006132b984828501612ff5565b91505092915050565b6000602082840312156132d8576132d7613d45565b5b60006132e68482850161300a565b91505092915050565b60006020828403121561330557613304613d45565b5b60006133138482850161304d565b91505092915050565b60006020828403121561333257613331613d45565b5b600082013567ffffffffffffffff8111156133505761334f613d40565b5b61335c84828501613062565b91505092915050565b60006020828403121561337b5761337a613d45565b5b600061338984828501613090565b91505092915050565b61339b81613aa6565b82525050565b6133aa81613ab8565b82525050565b60006133bb82613943565b6133c58185613959565b93506133d5818560208601613b3b565b6133de81613d4a565b840191505092915050565b60006133f48261394e565b6133fe8185613975565b935061340e818560208601613b3b565b61341781613d4a565b840191505092915050565b600061342d8261394e565b6134378185613986565b9350613447818560208601613b3b565b80840191505092915050565b6000815461346081613b6e565b61346a8186613986565b945060018216600081146134855760018114613496576134c9565b60ff198316865281860193506134c9565b61349f8561392e565b60005b838110156134c1578154818901526001820191506020810190506134a2565b838801955050505b50505092915050565b60006134df600683613975565b91506134ea82613d5b565b602082019050919050565b6000613502602683613975565b915061350d82613d84565b604082019050919050565b6000613525601183613975565b915061353082613dd3565b602082019050919050565b6000613548600a83613975565b915061355382613dfc565b602082019050919050565b600061356b601283613975565b915061357682613e25565b602082019050919050565b600061358e601583613975565b915061359982613e4e565b602082019050919050565b60006135b1602083613975565b91506135bc82613e77565b602082019050919050565b60006135d4601683613975565b91506135df82613ea0565b602082019050919050565b60006135f760008361396a565b915061360282613ec9565b600082019050919050565b600061361a600e83613975565b915061362582613ecc565b602082019050919050565b600061363d600c83613975565b915061364882613ef5565b602082019050919050565b61365c81613b22565b82525050565b600061366e8286613453565b915061367a8285613422565b91506136868284613422565b9150819050949350505050565b600061369e826135ea565b9150819050919050565b60006020820190506136bd6000830184613392565b92915050565b60006080820190506136d86000830187613392565b6136e56020830186613392565b6136f26040830185613653565b818103606083015261370481846133b0565b905095945050505050565b600060208201905061372460008301846133a1565b92915050565b6000602082019050818103600083015261374481846133e9565b905092915050565b60006020820190508181036000830152613765816134d2565b9050919050565b60006020820190508181036000830152613785816134f5565b9050919050565b600060208201905081810360008301526137a581613518565b9050919050565b600060208201905081810360008301526137c58161353b565b9050919050565b600060208201905081810360008301526137e58161355e565b9050919050565b6000602082019050818103600083015261380581613581565b9050919050565b60006020820190508181036000830152613825816135a4565b9050919050565b60006020820190508181036000830152613845816135c7565b9050919050565b600060208201905081810360008301526138658161360d565b9050919050565b6000602082019050818103600083015261388581613630565b9050919050565b60006020820190506138a16000830184613653565b92915050565b60006138b16138c2565b90506138bd8282613ba0565b919050565b6000604051905090565b600067ffffffffffffffff8211156138e7576138e6613d07565b5b6138f082613d4a565b9050602081019050919050565b600067ffffffffffffffff82111561391857613917613d07565b5b61392182613d4a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061399c82613b22565b91506139a783613b22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139dc576139db613c4b565b5b828201905092915050565b60006139f282613b22565b91506139fd83613b22565b925082613a0d57613a0c613c7a565b5b828204905092915050565b6000613a2382613b22565b9150613a2e83613b22565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a6757613a66613c4b565b5b828202905092915050565b6000613a7d82613b22565b9150613a8883613b22565b925082821015613a9b57613a9a613c4b565b5b828203905092915050565b6000613ab182613b02565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613afb82613aa6565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b59578082015181840152602081019050613b3e565b83811115613b68576000848401525b50505050565b60006002820490506001821680613b8657607f821691505b60208210811415613b9a57613b99613ca9565b5b50919050565b613ba982613d4a565b810181811067ffffffffffffffff82111715613bc857613bc7613d07565b5b80604052505050565b6000613bdc82613b22565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c0f57613c0e613c4b565b5b600182019050919050565b6000613c2582613b22565b9150613c3083613b22565b925082613c4057613c3f613c7a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207478000000000000000000000000000000600082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613f2781613aa6565b8114613f3257600080fd5b50565b613f3e81613ab8565b8114613f4957600080fd5b50565b613f5581613ac4565b8114613f6057600080fd5b50565b613f6c81613af0565b8114613f7757600080fd5b50565b613f8381613b22565b8114613f8e57600080fd5b5056fea264697066735822122065ceaf89ffe229c4eddcea3e8c46bef2c4ca6ee3fc6b7041980f6d1afe4ce31364736f6c63430008070033

Deployed Bytecode Sourcemap

46527:2993:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28322:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48839:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31707:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33210:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32773:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27571:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48320:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34067:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46912:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48437:209;;;;;;;;;;;;;:::i;:::-;;34308:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47036:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49020:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47003:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31516:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48654:83;;;;;;;;;;;;;:::i;:::-;;46576:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28691:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2796:103;;;;;;;;;;;;;:::i;:::-;;46859:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2145:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48745:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48928:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31876:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46960:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47131:619;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33486:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34564:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46663:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49128:389;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46716:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47867:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3054:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46814:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28322:305;28424:4;28476:25;28461:40;;;:11;:40;;;;:105;;;;28533:33;28518:48;;;:11;:48;;;;28461:105;:158;;;;28583:36;28607:11;28583:23;:36::i;:::-;28461:158;28441:178;;28322:305;;;:::o;48839:81::-;2376:12;:10;:12::i;:::-;2365:23;;:7;:5;:7::i;:::-;:23;;;2357:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48906:6:::1;48897;;:15;;;;;;;;;;;;;;;;;;48839:81:::0;:::o;31707:100::-;31761:13;31794:5;31787:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31707:100;:::o;33210:204::-;33278:7;33303:16;33311:7;33303;:16::i;:::-;33298:64;;33328:34;;;;;;;;;;;;;;33298:64;33382:15;:24;33398:7;33382:24;;;;;;;;;;;;;;;;;;;;;33375:31;;33210:204;;;:::o;32773:371::-;32846:13;32862:24;32878:7;32862:15;:24::i;:::-;32846:40;;32907:5;32901:11;;:2;:11;;;32897:48;;;32921:24;;;;;;;;;;;;;;32897:48;32978:5;32962:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32988:37;33005:5;33012:12;:10;:12::i;:::-;32988:16;:37::i;:::-;32987:38;32962:63;32958:138;;;33049:35;;;;;;;;;;;;;;32958:138;33108:28;33117:2;33121:7;33130:5;33108:8;:28::i;:::-;32835:309;32773:371;;:::o;27571:303::-;27615:7;27840:15;:13;:15::i;:::-;27825:12;;27809:13;;:28;:46;27802:53;;27571:303;:::o;48320:109::-;48373:7;48400:21;48414:6;48400:13;:21::i;:::-;48393:28;;48320:109;;;:::o;34067:170::-;34201:28;34211:4;34217:2;34221:7;34201:9;:28::i;:::-;34067:170;;;:::o;46912:41::-;46949:4;46912:41;:::o;48437:209::-;2376:12;:10;:12::i;:::-;2365:23;;:7;:5;:7::i;:::-;:23;;;2357:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48487:15:::1;48505:21;48487:39;;48538:12;48556;:10;:12::i;:::-;:17;;48581:7;48556:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48537:56;;;48612:7;48604:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;48476:170;;48437:209::o:0;34308:185::-;34446:39;34463:4;34469:2;34473:7;34446:39;;;;;;;;;;;;:16;:39::i;:::-;34308:185;;;:::o;47036:28::-;;;;;;;;;;;;;:::o;49020:100::-;2376:12;:10;:12::i;:::-;2365:23;;:7;:5;:7::i;:::-;:23;;;2357:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49104:8:::1;49094:7;:18;;;;;;;;;;;;:::i;:::-;;49020:100:::0;:::o;47003:26::-;;;;;;;;;;;;;:::o;31516:124::-;31580:7;31607:20;31619:7;31607:11;:20::i;:::-;:25;;;31600:32;;31516:124;;;:::o;48654:83::-;2376:12;:10;:12::i;:::-;2365:23;;:7;:5;:7::i;:::-;:23;;;2357:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48703:26:::1;48713:12;:10;:12::i;:::-;48727:1;48703:9;:26::i;:::-;48654:83::o:0;46576:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28691:206::-;28755:7;28796:1;28779:19;;:5;:19;;;28775:60;;;28807:28;;;;;;;;;;;;;;28775:60;28861:12;:19;28874:5;28861:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28853:36;;28846:43;;28691:206;;;:::o;2796:103::-;2376:12;:10;:12::i;:::-;2365:23;;:7;:5;:7::i;:::-;:23;;;2357:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2861:30:::1;2888:1;2861:18;:30::i;:::-;2796:103::o:0;46859:46::-;46901:4;46859:46;:::o;2145:87::-;2191:7;2218:6;;;;;;;;;;;2211:13;;2145:87;:::o;48745:86::-;2376:12;:10;:12::i;:::-;2365:23;;:7;:5;:7::i;:::-;:23;;;2357:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48817:6:::1;48809:5;:14;;;;48745:86:::0;:::o;48928:84::-;2376:12;:10;:12::i;:::-;2365:23;;:7;:5;:7::i;:::-;:23;;;2357:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48998:6:::1;48987:8;;:17;;;;;;;;;;;;;;;;;;48928:84:::0;:::o;31876:104::-;31932:13;31965:7;31958:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31876:104;:::o;46960:34::-;;;;:::o;47131:619::-;47196:9;47208:5;;47196:17;;47271:1;46901:4;47253:19;;;;:::i;:::-;47243:7;47227:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:45;47224:85;;;47296:1;47289:8;;47224:85;47319:15;47337:12;:10;:12::i;:::-;47319:30;;47369:6;;;;;;;;;;;47368:7;47360:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;47435:7;47419:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46949:4;47405:37;;47397:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47494:1;47484:7;:11;47476:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47542:7;47529:20;;:9;:20;;;47521:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47599:7;46851:1;47585:21;;47577:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;47666:9;47658:4;47648:7;:14;;;;:::i;:::-;:27;47640:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;47715:27;47725:7;47734;47715:9;:27::i;:::-;47185:565;;47131:619;:::o;33486:279::-;33589:12;:10;:12::i;:::-;33577:24;;:8;:24;;;33573:54;;;33610:17;;;;;;;;;;;;;;33573:54;33685:8;33640:18;:32;33659:12;:10;:12::i;:::-;33640:32;;;;;;;;;;;;;;;:42;33673:8;33640:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33738:8;33709:48;;33724:12;:10;:12::i;:::-;33709:48;;;33748:8;33709:48;;;;;;:::i;:::-;;;;;;;;33486:279;;:::o;34564:369::-;34731:28;34741:4;34747:2;34751:7;34731:9;:28::i;:::-;34774:15;:2;:13;;;:15::i;:::-;:76;;;;;34794:56;34825:4;34831:2;34835:7;34844:5;34794:30;:56::i;:::-;34793:57;34774:76;34770:156;;;34874:40;;;;;;;;;;;;;;34770:156;34564:369;;;;:::o;46663:46::-;;;;;;;;;;;;;;;;;;;:::o;49128:389::-;49194:13;49228:17;49236:8;49228:7;:17::i;:::-;49220:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49313:1;49295:7;49289:21;;;;;:::i;:::-;;;:25;:220;;;;;;;;;;;;;;;;;49371:7;49395:8;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;;;;;49406:26;49423:8;49406:16;:26::i;:::-;49395:53;49465:13;;;;;;;;;;;;;;;;;49338:155;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49289:220;49282:227;;49128:389;;;:::o;46716:89::-;46763:42;46716:89;:::o;47867:445::-;47992:4;48077:27;46763:42;48077:65;;48198:8;48157:49;;48165:13;:21;;;48187:5;48165:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48157:49;;;48153:93;;;48230:4;48223:11;;;;;48153:93;48265:39;48288:5;48295:8;48265:22;:39::i;:::-;48258:46;;;47867:445;;;;;:::o;3054:201::-;2376:12;:10;:12::i;:::-;2365:23;;:7;:5;:7::i;:::-;:23;;;2357:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3163:1:::1;3143:22;;:8;:22;;;;3135:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3219:28;3238:8;3219:18;:28::i;:::-;3054:201:::0;:::o;46814:38::-;46851:1;46814:38;:::o;23703:157::-;23788:4;23827:25;23812:40;;;:11;:40;;;;23805:47;;23703:157;;;:::o;886:98::-;939:7;966:10;959:17;;886:98;:::o;35188:187::-;35245:4;35288:7;35269:15;:13;:15::i;:::-;:26;;:53;;;;;35309:13;;35299:7;:23;35269:53;:98;;;;;35340:11;:20;35352:7;35340:20;;;;;;;;;;;:27;;;;;;;;;;;;35339:28;35269:98;35262:105;;35188:187;;;:::o;43504:196::-;43646:2;43619:15;:24;43635:7;43619:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43684:7;43680:2;43664:28;;43673:5;43664:28;;;;;;;;;;;;43504:196;;;:::o;47758:101::-;47823:7;47850:1;47843:8;;47758:101;:::o;28979:207::-;29040:7;29081:1;29064:19;;:5;:19;;;29060:59;;;29092:27;;;;;;;;;;;;;;29060:59;29145:12;:19;29158:5;29145:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29137:41;;29130:48;;28979:207;;;:::o;39006:2112::-;39121:35;39159:20;39171:7;39159:11;:20::i;:::-;39121:58;;39192:22;39234:13;:18;;;39218:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;39269:50;39286:13;:18;;;39306:12;:10;:12::i;:::-;39269:16;:50::i;:::-;39218:101;:154;;;;39360:12;:10;:12::i;:::-;39336:36;;:20;39348:7;39336:11;:20::i;:::-;:36;;;39218:154;39192:181;;39391:17;39386:66;;39417:35;;;;;;;;;;;;;;39386:66;39489:4;39467:26;;:13;:18;;;:26;;;39463:67;;39502:28;;;;;;;;;;;;;;39463:67;39559:1;39545:16;;:2;:16;;;39541:52;;;39570:23;;;;;;;;;;;;;;39541:52;39606:43;39628:4;39634:2;39638:7;39647:1;39606:21;:43::i;:::-;39714:49;39731:1;39735:7;39744:13;:18;;;39714:8;:49::i;:::-;40089:1;40059:12;:18;40072:4;40059:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40133:1;40105:12;:16;40118:2;40105:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40179:2;40151:11;:20;40163:7;40151:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;40241:15;40196:11;:20;40208:7;40196:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40509:19;40541:1;40531:7;:11;40509:33;;40602:1;40561:43;;:11;:24;40573:11;40561:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40557:445;;;40786:13;;40772:11;:27;40768:219;;;40856:13;:18;;;40824:11;:24;40836:11;40824:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40939:13;:28;;;40897:11;:24;40909:11;40897:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40768:219;40557:445;40034:979;41049:7;41045:2;41030:27;;41039:4;41030:27;;;;;;;;;;;;41068:42;41089:4;41095:2;41099:7;41108:1;41068:20;:42::i;:::-;39110:2008;;39006:2112;;;:::o;30346:1108::-;30407:21;;:::i;:::-;30441:12;30456:7;30441:22;;30524:4;30505:15;:13;:15::i;:::-;:23;;:47;;;;;30539:13;;30532:4;:20;30505:47;30501:886;;;30573:31;30607:11;:17;30619:4;30607:17;;;;;;;;;;;30573:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30648:9;:16;;;30643:729;;30719:1;30693:28;;:9;:14;;;:28;;;30689:101;;30757:9;30750:16;;;;;;30689:101;31092:261;31099:4;31092:261;;;31132:6;;;;;;;;31177:11;:17;31189:4;31177:17;;;;;;;;;;;31165:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31251:1;31225:28;;:9;:14;;;:28;;;31221:109;;31293:9;31286:16;;;;;;31221:109;31092:261;;;30643:729;30554:833;30501:886;31415:31;;;;;;;;;;;;;;30346:1108;;;;:::o;35383:104::-;35452:27;35462:2;35466:8;35452:27;;;;;;;;;;;;:9;:27::i;:::-;35383:104;;:::o;3415:191::-;3489:16;3508:6;;;;;;;;;;;3489:25;;3534:8;3525:6;;:17;;;;;;;;;;;;;;;;;;3589:8;3558:40;;3579:8;3558:40;;;;;;;;;;;;3478:128;3415:191;:::o;13476:326::-;13536:4;13793:1;13771:7;:19;;;:23;13764:30;;13476:326;;;:::o;44192:667::-;44355:4;44392:2;44376:36;;;44413:12;:10;:12::i;:::-;44427:4;44433:7;44442:5;44376:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44372:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44627:1;44610:6;:13;:18;44606:235;;;44656:40;;;;;;;;;;;;;;44606:235;44799:6;44793:13;44784:6;44780:2;44776:15;44769:38;44372:480;44505:45;;;44495:55;;;:6;:55;;;;44488:62;;;44192:667;;;;;;:::o;21096:723::-;21152:13;21382:1;21373:5;:10;21369:53;;;21400:10;;;;;;;;;;;;;;;;;;;;;21369:53;21432:12;21447:5;21432:20;;21463:14;21488:78;21503:1;21495:4;:9;21488:78;;21521:8;;;;;:::i;:::-;;;;21552:2;21544:10;;;;;:::i;:::-;;;21488:78;;;21576:19;21608:6;21598:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21576:39;;21626:154;21642:1;21633:5;:10;21626:154;;21670:1;21660:11;;;;;:::i;:::-;;;21737:2;21729:5;:10;;;;:::i;:::-;21716:2;:24;;;;:::i;:::-;21703:39;;21686:6;21693;21686:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21766:2;21757:11;;;;;:::i;:::-;;;21626:154;;;21804:6;21790:21;;;;;21096:723;;;;:::o;33836:164::-;33933:4;33957:18;:25;33976:5;33957:25;;;;;;;;;;;;;;;:35;33983:8;33957:35;;;;;;;;;;;;;;;;;;;;;;;;;33950:42;;33836:164;;;;:::o;45507:159::-;;;;;:::o;46325:158::-;;;;;:::o;35850:163::-;35973:32;35979:2;35983:8;35993:5;36000:4;35973:5;:32::i;:::-;35850:163;;;:::o;36272:2480::-;36411:20;36434:13;;36411:36;;36476:1;36462:16;;:2;:16;;;36458:48;;;36487:19;;;;;;;;;;;;;;36458:48;36533:1;36521:8;:13;36517:44;;;36543:18;;;;;;;;;;;;;;36517:44;36574:61;36604:1;36608:2;36612:12;36626:8;36574:21;:61::i;:::-;36701:42;36695:48;;:2;:48;;;:113;;;;36766:42;36760:48;;:2;:48;;;36695:113;:178;;;;36831:42;36825:48;;:2;:48;;;36695:178;:243;;;;36896:42;36890:48;;:2;:48;;;36695:243;:308;;;;36961:42;36955:48;;:2;:48;;;36695:308;:373;;;;37026:42;37020:48;;:2;:48;;;36695:373;:438;;;;37091:42;37085:48;;:2;:48;;;36695:438;:503;;;;37156:42;37150:48;;:2;:48;;;36695:503;36678:663;;;37224:15;37259:6;37268:1;37259:10;;37254:76;37275:5;37271:1;:9;37254:76;;;37305:9;;;;;:::i;:::-;;;;37282:3;;;;;:::i;:::-;;;;37254:76;;;;37209:132;36678:663;37652:8;37617:12;:16;37630:2;37617:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37716:8;37676:12;:16;37689:2;37676:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37775:2;37742:11;:25;37754:12;37742:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37842:15;37792:11;:25;37804:12;37792:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37875:20;37898:12;37875:35;;37925:11;37954:8;37939:12;:23;37925:37;;37983:4;:23;;;;;37991:15;:2;:13;;;:15::i;:::-;37983:23;37979:641;;;38027:314;38083:12;38079:2;38058:38;;38075:1;38058:38;;;;;;;;;;;;38124:69;38163:1;38167:2;38171:14;;;;;;38187:5;38124:30;:69::i;:::-;38119:174;;38229:40;;;;;;;;;;;;;;38119:174;38336:3;38320:12;:19;;38027:314;;38422:12;38405:13;;:29;38401:43;;38436:8;;;38401:43;37979:641;;;38485:120;38541:14;;;;;;38537:2;38516:40;;38533:1;38516:40;;;;;;;;;;;;38600:3;38584:12;:19;;38485:120;;37979:641;38650:12;38634:13;:28;;;;37592:1082;;38684:60;38713:1;38717:2;38721:12;38735:8;38684:20;:60::i;:::-;36400:2352;36272:2480;;;;:::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;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:323::-;5883:6;5932:2;5920:9;5911:7;5907:23;5903:32;5900:119;;;5938:79;;:::i;:::-;5900:119;6058:1;6083:50;6125:7;6116:6;6105:9;6101:22;6083:50;:::i;:::-;6073:60;;6029:114;5827:323;;;;:::o;6156:327::-;6214:6;6263:2;6251:9;6242:7;6238:23;6234:32;6231:119;;;6269:79;;:::i;:::-;6231:119;6389:1;6414:52;6458:7;6449:6;6438:9;6434:22;6414:52;:::i;:::-;6404:62;;6360:116;6156:327;;;;:::o;6489:349::-;6558:6;6607:2;6595:9;6586:7;6582:23;6578:32;6575:119;;;6613:79;;:::i;:::-;6575:119;6733:1;6758:63;6813:7;6804:6;6793:9;6789:22;6758:63;:::i;:::-;6748:73;;6704:127;6489:349;;;;:::o;6844:409::-;6943:6;6992:2;6980:9;6971:7;6967:23;6963:32;6960:119;;;6998:79;;:::i;:::-;6960:119;7118:1;7143:93;7228:7;7219:6;7208:9;7204:22;7143:93;:::i;:::-;7133:103;;7089:157;6844:409;;;;:::o;7259:509::-;7328:6;7377:2;7365:9;7356:7;7352:23;7348:32;7345:119;;;7383:79;;:::i;:::-;7345:119;7531:1;7520:9;7516:17;7503:31;7561:18;7553:6;7550:30;7547:117;;;7583:79;;:::i;:::-;7547:117;7688:63;7743:7;7734:6;7723:9;7719:22;7688:63;:::i;:::-;7678:73;;7474:287;7259:509;;;;:::o;7774:329::-;7833:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:119;;;7888:79;;:::i;:::-;7850:119;8008:1;8033:53;8078:7;8069:6;8058:9;8054:22;8033:53;:::i;:::-;8023:63;;7979:117;7774:329;;;;:::o;8109:118::-;8196:24;8214:5;8196:24;:::i;:::-;8191:3;8184:37;8109:118;;:::o;8233:109::-;8314:21;8329:5;8314:21;:::i;:::-;8309:3;8302:34;8233:109;;:::o;8348:360::-;8434:3;8462:38;8494:5;8462:38;:::i;:::-;8516:70;8579:6;8574:3;8516:70;:::i;:::-;8509:77;;8595:52;8640:6;8635:3;8628:4;8621:5;8617:16;8595:52;:::i;:::-;8672:29;8694:6;8672:29;:::i;:::-;8667:3;8663:39;8656:46;;8438:270;8348:360;;;;:::o;8714:364::-;8802:3;8830:39;8863:5;8830:39;:::i;:::-;8885:71;8949:6;8944:3;8885:71;:::i;:::-;8878:78;;8965:52;9010:6;9005:3;8998:4;8991:5;8987:16;8965:52;:::i;:::-;9042:29;9064:6;9042:29;:::i;:::-;9037:3;9033:39;9026:46;;8806:272;8714:364;;;;:::o;9084:377::-;9190:3;9218:39;9251:5;9218:39;:::i;:::-;9273:89;9355:6;9350:3;9273:89;:::i;:::-;9266:96;;9371:52;9416:6;9411:3;9404:4;9397:5;9393:16;9371:52;:::i;:::-;9448:6;9443:3;9439:16;9432:23;;9194:267;9084:377;;;;:::o;9491:845::-;9594:3;9631:5;9625:12;9660:36;9686:9;9660:36;:::i;:::-;9712:89;9794:6;9789:3;9712:89;:::i;:::-;9705:96;;9832:1;9821:9;9817:17;9848:1;9843:137;;;;9994:1;9989:341;;;;9810:520;;9843:137;9927:4;9923:9;9912;9908:25;9903:3;9896:38;9963:6;9958:3;9954:16;9947:23;;9843:137;;9989:341;10056:38;10088:5;10056:38;:::i;:::-;10116:1;10130:154;10144:6;10141:1;10138:13;10130:154;;;10218:7;10212:14;10208:1;10203:3;10199:11;10192:35;10268:1;10259:7;10255:15;10244:26;;10166:4;10163:1;10159:12;10154:17;;10130:154;;;10313:6;10308:3;10304:16;10297:23;;9996:334;;9810:520;;9598:738;;9491:845;;;;:::o;10342:365::-;10484:3;10505:66;10569:1;10564:3;10505:66;:::i;:::-;10498:73;;10580:93;10669:3;10580:93;:::i;:::-;10698:2;10693:3;10689:12;10682:19;;10342:365;;;:::o;10713:366::-;10855:3;10876:67;10940:2;10935:3;10876:67;:::i;:::-;10869:74;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10713:366;;;:::o;11085:::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11085:366;;;:::o;11457:::-;11599:3;11620:67;11684:2;11679:3;11620:67;:::i;:::-;11613:74;;11696:93;11785:3;11696:93;:::i;:::-;11814:2;11809:3;11805:12;11798:19;;11457:366;;;:::o;11829:::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:398::-;13476:3;13497:83;13578:1;13573:3;13497:83;:::i;:::-;13490:90;;13589:93;13678:3;13589:93;:::i;:::-;13707:1;13702:3;13698:11;13691:18;;13317:398;;;:::o;13721:366::-;13863:3;13884:67;13948:2;13943:3;13884:67;:::i;:::-;13877:74;;13960:93;14049:3;13960:93;:::i;:::-;14078:2;14073:3;14069:12;14062:19;;13721:366;;;:::o;14093:::-;14235:3;14256:67;14320:2;14315:3;14256:67;:::i;:::-;14249:74;;14332:93;14421:3;14332:93;:::i;:::-;14450:2;14445:3;14441:12;14434:19;;14093:366;;;:::o;14465:118::-;14552:24;14570:5;14552:24;:::i;:::-;14547:3;14540:37;14465:118;;:::o;14589:589::-;14814:3;14836:92;14924:3;14915:6;14836:92;:::i;:::-;14829:99;;14945:95;15036:3;15027:6;14945:95;:::i;:::-;14938:102;;15057:95;15148:3;15139:6;15057:95;:::i;:::-;15050:102;;15169:3;15162:10;;14589:589;;;;;;:::o;15184:379::-;15368:3;15390:147;15533:3;15390:147;:::i;:::-;15383:154;;15554:3;15547:10;;15184:379;;;:::o;15569:222::-;15662:4;15700:2;15689:9;15685:18;15677:26;;15713:71;15781:1;15770:9;15766:17;15757:6;15713:71;:::i;:::-;15569:222;;;;:::o;15797:640::-;15992:4;16030:3;16019:9;16015:19;16007:27;;16044:71;16112:1;16101:9;16097:17;16088:6;16044:71;:::i;:::-;16125:72;16193:2;16182:9;16178:18;16169:6;16125:72;:::i;:::-;16207;16275:2;16264:9;16260:18;16251:6;16207:72;:::i;:::-;16326:9;16320:4;16316:20;16311:2;16300:9;16296:18;16289:48;16354:76;16425:4;16416:6;16354:76;:::i;:::-;16346:84;;15797:640;;;;;;;:::o;16443:210::-;16530:4;16568:2;16557:9;16553:18;16545:26;;16581:65;16643:1;16632:9;16628:17;16619:6;16581:65;:::i;:::-;16443:210;;;;:::o;16659:313::-;16772:4;16810:2;16799:9;16795:18;16787:26;;16859:9;16853:4;16849:20;16845:1;16834:9;16830:17;16823:47;16887:78;16960:4;16951:6;16887:78;:::i;:::-;16879:86;;16659:313;;;;:::o;16978:419::-;17144:4;17182:2;17171:9;17167:18;17159:26;;17231:9;17225:4;17221:20;17217:1;17206:9;17202:17;17195:47;17259:131;17385:4;17259:131;:::i;:::-;17251:139;;16978:419;;;:::o;17403:::-;17569:4;17607:2;17596:9;17592:18;17584:26;;17656:9;17650:4;17646:20;17642:1;17631:9;17627:17;17620:47;17684:131;17810:4;17684:131;:::i;:::-;17676:139;;17403:419;;;:::o;17828:::-;17994:4;18032:2;18021:9;18017:18;18009:26;;18081:9;18075:4;18071:20;18067:1;18056:9;18052:17;18045:47;18109:131;18235:4;18109:131;:::i;:::-;18101:139;;17828:419;;;:::o;18253:::-;18419:4;18457:2;18446:9;18442:18;18434:26;;18506:9;18500:4;18496:20;18492:1;18481:9;18477:17;18470:47;18534:131;18660:4;18534:131;:::i;:::-;18526:139;;18253:419;;;:::o;18678:::-;18844:4;18882:2;18871:9;18867:18;18859:26;;18931:9;18925:4;18921:20;18917:1;18906:9;18902:17;18895:47;18959:131;19085:4;18959:131;:::i;:::-;18951:139;;18678:419;;;:::o;19103:::-;19269:4;19307:2;19296:9;19292:18;19284:26;;19356:9;19350:4;19346:20;19342:1;19331:9;19327:17;19320:47;19384:131;19510:4;19384:131;:::i;:::-;19376:139;;19103:419;;;:::o;19528:::-;19694:4;19732:2;19721:9;19717:18;19709:26;;19781:9;19775:4;19771:20;19767:1;19756:9;19752:17;19745:47;19809:131;19935:4;19809:131;:::i;:::-;19801:139;;19528:419;;;:::o;19953:::-;20119:4;20157:2;20146:9;20142:18;20134:26;;20206:9;20200:4;20196:20;20192:1;20181:9;20177:17;20170:47;20234:131;20360:4;20234:131;:::i;:::-;20226:139;;19953:419;;;:::o;20378:::-;20544:4;20582:2;20571:9;20567:18;20559:26;;20631:9;20625:4;20621:20;20617:1;20606:9;20602:17;20595:47;20659:131;20785:4;20659:131;:::i;:::-;20651:139;;20378:419;;;:::o;20803:::-;20969:4;21007:2;20996:9;20992:18;20984:26;;21056:9;21050:4;21046:20;21042:1;21031:9;21027:17;21020:47;21084:131;21210:4;21084:131;:::i;:::-;21076:139;;20803:419;;;:::o;21228:222::-;21321:4;21359:2;21348:9;21344:18;21336:26;;21372:71;21440:1;21429:9;21425:17;21416:6;21372:71;:::i;:::-;21228:222;;;;:::o;21456:129::-;21490:6;21517:20;;:::i;:::-;21507:30;;21546:33;21574:4;21566:6;21546:33;:::i;:::-;21456:129;;;:::o;21591:75::-;21624:6;21657:2;21651:9;21641:19;;21591:75;:::o;21672:307::-;21733:4;21823:18;21815:6;21812:30;21809:56;;;21845:18;;:::i;:::-;21809:56;21883:29;21905:6;21883:29;:::i;:::-;21875:37;;21967:4;21961;21957:15;21949:23;;21672:307;;;:::o;21985:308::-;22047:4;22137:18;22129:6;22126:30;22123:56;;;22159:18;;:::i;:::-;22123:56;22197:29;22219:6;22197:29;:::i;:::-;22189:37;;22281:4;22275;22271:15;22263:23;;21985:308;;;:::o;22299:141::-;22348:4;22371:3;22363:11;;22394:3;22391:1;22384:14;22428:4;22425:1;22415:18;22407:26;;22299:141;;;:::o;22446:98::-;22497:6;22531:5;22525:12;22515:22;;22446:98;;;:::o;22550:99::-;22602:6;22636:5;22630:12;22620:22;;22550:99;;;:::o;22655:168::-;22738:11;22772:6;22767:3;22760:19;22812:4;22807:3;22803:14;22788:29;;22655:168;;;;:::o;22829:147::-;22930:11;22967:3;22952:18;;22829:147;;;;:::o;22982:169::-;23066:11;23100:6;23095:3;23088:19;23140:4;23135:3;23131:14;23116:29;;22982:169;;;;:::o;23157:148::-;23259:11;23296:3;23281:18;;23157:148;;;;:::o;23311:305::-;23351:3;23370:20;23388:1;23370:20;:::i;:::-;23365:25;;23404:20;23422:1;23404:20;:::i;:::-;23399:25;;23558:1;23490:66;23486:74;23483:1;23480:81;23477:107;;;23564:18;;:::i;:::-;23477:107;23608:1;23605;23601:9;23594:16;;23311:305;;;;:::o;23622:185::-;23662:1;23679:20;23697:1;23679:20;:::i;:::-;23674:25;;23713:20;23731:1;23713:20;:::i;:::-;23708:25;;23752:1;23742:35;;23757:18;;:::i;:::-;23742:35;23799:1;23796;23792:9;23787:14;;23622:185;;;;:::o;23813:348::-;23853:7;23876:20;23894:1;23876:20;:::i;:::-;23871:25;;23910:20;23928:1;23910:20;:::i;:::-;23905:25;;24098:1;24030:66;24026:74;24023:1;24020:81;24015:1;24008:9;24001:17;23997:105;23994:131;;;24105:18;;:::i;:::-;23994:131;24153:1;24150;24146:9;24135:20;;23813:348;;;;:::o;24167:191::-;24207:4;24227:20;24245:1;24227:20;:::i;:::-;24222:25;;24261:20;24279:1;24261:20;:::i;:::-;24256:25;;24300:1;24297;24294:8;24291:34;;;24305:18;;:::i;:::-;24291:34;24350:1;24347;24343:9;24335:17;;24167:191;;;;:::o;24364:96::-;24401:7;24430:24;24448:5;24430:24;:::i;:::-;24419:35;;24364:96;;;:::o;24466:90::-;24500:7;24543:5;24536:13;24529:21;24518:32;;24466:90;;;:::o;24562:149::-;24598:7;24638:66;24631:5;24627:78;24616:89;;24562:149;;;:::o;24717:125::-;24783:7;24812:24;24830:5;24812:24;:::i;:::-;24801:35;;24717:125;;;:::o;24848:126::-;24885:7;24925:42;24918:5;24914:54;24903:65;;24848:126;;;:::o;24980:77::-;25017:7;25046:5;25035:16;;24980:77;;;:::o;25063:154::-;25147:6;25142:3;25137;25124:30;25209:1;25200:6;25195:3;25191:16;25184:27;25063:154;;;:::o;25223:307::-;25291:1;25301:113;25315:6;25312:1;25309:13;25301:113;;;25400:1;25395:3;25391:11;25385:18;25381:1;25376:3;25372:11;25365:39;25337:2;25334:1;25330:10;25325:15;;25301:113;;;25432:6;25429:1;25426:13;25423:101;;;25512:1;25503:6;25498:3;25494:16;25487:27;25423:101;25272:258;25223:307;;;:::o;25536:320::-;25580:6;25617:1;25611:4;25607:12;25597:22;;25664:1;25658:4;25654:12;25685:18;25675:81;;25741:4;25733:6;25729:17;25719:27;;25675:81;25803:2;25795:6;25792:14;25772:18;25769:38;25766:84;;;25822:18;;:::i;:::-;25766:84;25587:269;25536:320;;;:::o;25862:281::-;25945:27;25967:4;25945:27;:::i;:::-;25937:6;25933:40;26075:6;26063:10;26060:22;26039:18;26027:10;26024:34;26021:62;26018:88;;;26086:18;;:::i;:::-;26018:88;26126:10;26122:2;26115:22;25905:238;25862:281;;:::o;26149:233::-;26188:3;26211:24;26229:5;26211:24;:::i;:::-;26202:33;;26257:66;26250:5;26247:77;26244:103;;;26327:18;;:::i;:::-;26244:103;26374:1;26367:5;26363:13;26356:20;;26149:233;;;:::o;26388:176::-;26420:1;26437:20;26455:1;26437:20;:::i;:::-;26432:25;;26471:20;26489:1;26471:20;:::i;:::-;26466:25;;26510:1;26500:35;;26515:18;;:::i;:::-;26500:35;26556:1;26553;26549:9;26544:14;;26388:176;;;;:::o;26570:180::-;26618:77;26615:1;26608:88;26715:4;26712:1;26705:15;26739:4;26736:1;26729:15;26756:180;26804:77;26801:1;26794:88;26901:4;26898:1;26891:15;26925:4;26922:1;26915:15;26942:180;26990:77;26987:1;26980:88;27087:4;27084:1;27077:15;27111:4;27108:1;27101:15;27128:180;27176:77;27173:1;27166:88;27273:4;27270:1;27263:15;27297:4;27294:1;27287:15;27314:180;27362:77;27359:1;27352:88;27459:4;27456:1;27449:15;27483:4;27480:1;27473:15;27500:117;27609:1;27606;27599:12;27623:117;27732:1;27729;27722:12;27746:117;27855:1;27852;27845:12;27869:117;27978:1;27975;27968:12;27992:102;28033:6;28084:2;28080:7;28075:2;28068:5;28064:14;28060:28;28050:38;;27992:102;;;:::o;28100:156::-;28240:8;28236:1;28228:6;28224:14;28217:32;28100:156;:::o;28262:225::-;28402:34;28398:1;28390:6;28386:14;28379:58;28471:8;28466:2;28458:6;28454:15;28447:33;28262:225;:::o;28493:167::-;28633:19;28629:1;28621:6;28617:14;28610:43;28493:167;:::o;28666:160::-;28806:12;28802:1;28794:6;28790:14;28783:36;28666:160;:::o;28832:168::-;28972:20;28968:1;28960:6;28956:14;28949:44;28832:168;:::o;29006:171::-;29146:23;29142:1;29134:6;29130:14;29123:47;29006:171;:::o;29183:182::-;29323:34;29319:1;29311:6;29307:14;29300:58;29183:182;:::o;29371:172::-;29511:24;29507:1;29499:6;29495:14;29488:48;29371:172;:::o;29549:114::-;;:::o;29669:164::-;29809:16;29805:1;29797:6;29793:14;29786:40;29669:164;:::o;29839:162::-;29979:14;29975:1;29967:6;29963:14;29956:38;29839:162;:::o;30007:122::-;30080:24;30098:5;30080:24;:::i;:::-;30073:5;30070:35;30060:63;;30119:1;30116;30109:12;30060:63;30007:122;:::o;30135:116::-;30205:21;30220:5;30205:21;:::i;:::-;30198:5;30195:32;30185:60;;30241:1;30238;30231:12;30185:60;30135:116;:::o;30257:120::-;30329:23;30346:5;30329:23;:::i;:::-;30322:5;30319:34;30309:62;;30367:1;30364;30357:12;30309:62;30257:120;:::o;30383:180::-;30485:53;30532:5;30485:53;:::i;:::-;30478:5;30475:64;30465:92;;30553:1;30550;30543:12;30465:92;30383:180;:::o;30569:122::-;30642:24;30660:5;30642:24;:::i;:::-;30635:5;30632:35;30622:63;;30681:1;30678;30671:12;30622:63;30569:122;:::o

Swarm Source

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