ETH Price: $3,265.26 (+0.69%)
Gas: 1 Gwei

Token

www.alternativesociety.wtf (JIMMY)
 

Overview

Max Total Supply

64 JIMMY

Holders

38

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 JIMMY
0x615a4ca571f347866abae1eccbc864c6bcbba3cf
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:
AlternativeSocietyWTF

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

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

//Pixel Kodas
//Now you can actually own one...
// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// 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 onlyOnwer() {
        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 onlyOnwer {
        _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 onlyOnwer {
        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..).
 */
 abstract contract Owneable is Ownable {
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
}
 /*
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



contract AlternativeSocietyWTF is ERC721A, Owneable {

    string public baseURI;
    
    string public constant baseExtension = "";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX = 20;
    uint256 public constant MAX_SUPPLY = 6666;
    uint256 public constant price = 0.003 ether;

    bool public paused = false;

    constructor() ERC721A("www.alternativesociety.wtf", "JIMMY") {}

    function mint(uint256 _amount) external payable {
        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(totalSupply() < 763 ? 1 >= _amount : MAX_PER_TX >= _amount , "Excess max per paid tx");
            require(totalSupply() < 763 ? _amount * 0 == msg.value : _amount * price == msg.value, "Invalid funds provided");

        _safeMint(_caller, _amount);
    }

    /**
        6 D1CS
    */

    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 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 pause(bool _state) external onlyOwner {
        paused = _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,
              Strings.toString(_tokenId),
              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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_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":[],"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":"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":[],"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"}]

60806040526000600a60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280601a81526020017f7777772e616c7465726e6174697665736f63696574792e7774660000000000008152506040518060400160405280600581526020017f4a494d4d590000000000000000000000000000000000000000000000000000008152508160029080519060200190620000b1929190620001dc565b508060039080519060200190620000ca929190620001dc565b50620000db6200010960201b60201c565b600081905550505062000103620000f76200010e60201b60201c565b6200011660201b60201c565b620002f1565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ea906200028c565b90600052602060002090601f0160209004810192826200020e57600085556200025a565b82601f106200022957805160ff19168380011785556200025a565b828001600101855582156200025a579182015b82811115620002595782518255916020019190600101906200023c565b5b5090506200026991906200026d565b5090565b5b80821115620002885760008160009055506001016200026e565b5090565b60006002820490506001821680620002a557607f821691505b60208210811415620002bc57620002bb620002c2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61398480620003016000396000f3fe6080604052600436106101c25760003560e01c80636c0360eb116100f7578063a22cb46511610095578063cd7c032611610064578063cd7c0326146105fb578063e985e9c514610626578063f2fde38b14610663578063f43a22dc1461068c576101c2565b8063a22cb46514610541578063b88d4fde1461056a578063c668286214610593578063c87b56dd146105be576101c2565b80638da5cb5b116100d15780638da5cb5b146104a457806395d89b41146104cf578063a035b1fe146104fa578063a0712d6814610525576101c2565b80636c0360eb1461042557806370a0823114610450578063715018a61461048d576101c2565b806332cb6b0c1161016457806355f804b31161013e57806355f804b31461037d5780635c975abb146103a65780636352211e146103d1578063698982ba1461040e576101c2565b806332cb6b0c146103125780633ccfd60b1461033d57806342842e0e14610354576101c2565b8063081812fc116101a0578063081812fc14610258578063095ea7b31461029557806318160ddd146102be57806323b872dd146102e9576101c2565b806301ffc9a7146101c757806302329a291461020457806306fdde031461022d575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612c52565b6106b7565b6040516101fb91906130cc565b60405180910390f35b34801561021057600080fd5b5061022b60048036038101906102269190612c25565b610799565b005b34801561023957600080fd5b50610242610832565b60405161024f91906130e7565b60405180910390f35b34801561026457600080fd5b5061027f600480360381019061027a9190612d22565b6108c4565b60405161028c9190613065565b60405180910390f35b3480156102a157600080fd5b506102bc60048036038101906102b79190612be5565b610940565b005b3480156102ca57600080fd5b506102d3610a4b565b6040516102e09190613249565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190612acf565b610a62565b005b34801561031e57600080fd5b50610327610a72565b6040516103349190613249565b60405180910390f35b34801561034957600080fd5b50610352610a78565b005b34801561036057600080fd5b5061037b60048036038101906103769190612acf565b610bb0565b005b34801561038957600080fd5b506103a4600480360381019061039f9190612cd9565b610bd0565b005b3480156103b257600080fd5b506103bb610c66565b6040516103c891906130cc565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190612d22565b610c79565b6040516104059190613065565b60405180910390f35b34801561041a57600080fd5b50610423610c8f565b005b34801561043157600080fd5b5061043a610d1f565b60405161044791906130e7565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190612a62565b610dad565b6040516104849190613249565b60405180910390f35b34801561049957600080fd5b506104a2610e7d565b005b3480156104b057600080fd5b506104b9610f05565b6040516104c69190613065565b60405180910390f35b3480156104db57600080fd5b506104e4610f2f565b6040516104f191906130e7565b60405180910390f35b34801561050657600080fd5b5061050f610fc1565b60405161051c9190613249565b60405180910390f35b61053f600480360381019061053a9190612d22565b610fcc565b005b34801561054d57600080fd5b5061056860048036038101906105639190612ba5565b611216565b005b34801561057657600080fd5b50610591600480360381019061058c9190612b22565b61138e565b005b34801561059f57600080fd5b506105a861140a565b6040516105b591906130e7565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190612d22565b61141d565b6040516105f291906130e7565b60405180910390f35b34801561060757600080fd5b506106106114d6565b60405161061d9190613065565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190612a8f565b6114ee565b60405161065a91906130cc565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190612a62565b6115e2565b005b34801561069857600080fd5b506106a16116da565b6040516106ae9190613249565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107925750610791826116df565b5b9050919050565b6107a1611749565b73ffffffffffffffffffffffffffffffffffffffff166107bf610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c906131c9565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6060600280546108419061352b565b80601f016020809104026020016040519081016040528092919081815260200182805461086d9061352b565b80156108ba5780601f1061088f576101008083540402835291602001916108ba565b820191906000526020600020905b81548152906001019060200180831161089d57829003601f168201915b5050505050905090565b60006108cf82611751565b610905576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094b82610c79565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d2611749565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a045750610a02816109fd611749565b6114ee565b155b15610a3b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a4683838361179f565b505050565b6000610a55611851565b6001546000540303905090565b610a6d838383611856565b505050565b611a0a81565b610a80611749565b73ffffffffffffffffffffffffffffffffffffffff16610a9e610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb906131c9565b60405180910390fd5b60004790506000610b03611749565b73ffffffffffffffffffffffffffffffffffffffff1682604051610b2690613050565b60006040518083038185875af1925050503d8060008114610b63576040519150601f19603f3d011682016040523d82523d6000602084013e610b68565b606091505b5050905080610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390613209565b60405180910390fd5b5050565b610bcb8383836040518060200160405280600081525061138e565b505050565b610bd8611749565b73ffffffffffffffffffffffffffffffffffffffff16610bf6610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c43906131c9565b60405180910390fd5b8060099080519060200190610c6292919061281e565b5050565b600a60009054906101000a900460ff1681565b6000610c8482611d47565b600001519050919050565b610c97611749565b73ffffffffffffffffffffffffffffffffffffffff16610cb5610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d02906131c9565b60405180910390fd5b610d1d610d16611749565b6001611fd6565b565b60098054610d2c9061352b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d589061352b565b8015610da55780601f10610d7a57610100808354040283529160200191610da5565b820191906000526020600020905b815481529060010190602001808311610d8857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e15576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e85611749565b73ffffffffffffffffffffffffffffffffffffffff16610ea3610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef0906131c9565b60405180910390fd5b610f036000611ff4565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f3e9061352b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6a9061352b565b8015610fb75780601f10610f8c57610100808354040283529160200191610fb7565b820191906000526020600020905b815481529060010190602001808311610f9a57829003601f168201915b5050505050905090565b660aa87bee53800081565b6000610fd6611749565b9050600a60009054906101000a900460ff1615611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f90613109565b60405180910390fd5b81611031610a4b565b61103b919061334e565b611a0a101561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690613189565b60405180910390fd5b600082116110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990613149565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613229565b60405180910390fd5b6102fb61113b610a4b565b1061114a578160141015611150565b81600110155b61118f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118690613169565b60405180910390fd5b6102fb61119a610a4b565b106111b95734660aa87bee538000836111b391906133d5565b146111c9565b346000836111c791906133d5565b145b611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ff906131e9565b60405180910390fd5b6112128183611fd6565b5050565b61121e611749565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611283576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611290611749565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133d611749565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138291906130cc565b60405180910390a35050565b611399848484611856565b6113b88373ffffffffffffffffffffffffffffffffffffffff166120ba565b80156113cd57506113cb848484846120dd565b155b15611404576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060200160405280600081525081565b606061142882611751565b611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e906131a9565b60405180910390fd5b6000600980546114769061352b565b90501161149257604051806020016040528060008152506114cf565b600961149d8361223d565b604051806020016040528060008152506040516020016114bf9392919061301f565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016115589190613065565b60206040518083038186803b15801561157057600080fd5b505afa158015611584573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a89190612cac565b73ffffffffffffffffffffffffffffffffffffffff1614156115ce5760019150506115dc565b6115d8848461239e565b9150505b92915050565b6115ea611749565b73ffffffffffffffffffffffffffffffffffffffff16611608610f05565b73ffffffffffffffffffffffffffffffffffffffff161461165e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611655906131c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590613129565b60405180910390fd5b6116d781611ff4565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161175c611851565b1115801561176b575060005482105b8015611798575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061186182611d47565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611888611749565b73ffffffffffffffffffffffffffffffffffffffff1614806118bb57506118ba82600001516118b5611749565b6114ee565b5b8061190057506118c9611749565b73ffffffffffffffffffffffffffffffffffffffff166118e8846108c4565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611939576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119a2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a09576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a168585856001612432565b611a26600084846000015161179f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611cd757600054811015611cd65782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d408585856001612438565b5050505050565b611d4f6128a4565b600082905080611d5d611851565b11158015611d6c575060005481105b15611f9f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611f9d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e81578092505050611fd1565b5b600115611f9c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f97578092505050611fd1565b611e82565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611ff082826040518060200160405280600081525061243e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612103611749565b8786866040518563ffffffff1660e01b81526004016121259493929190613080565b602060405180830381600087803b15801561213f57600080fd5b505af192505050801561217057506040513d601f19601f8201168201806040525081019061216d9190612c7f565b60015b6121ea573d80600081146121a0576040519150601f19603f3d011682016040523d82523d6000602084013e6121a5565b606091505b506000815114156121e2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612285576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612399565b600082905060005b600082146122b75780806122a09061358e565b915050600a826122b091906133a4565b915061228d565b60008167ffffffffffffffff8111156122d3576122d26136c4565b5b6040519080825280601f01601f1916602001820160405280156123055781602001600182028036833780820191505090505b5090505b600085146123925760018261231e919061342f565b9150600a8561232d91906135d7565b6030612339919061334e565b60f81b81838151811061234f5761234e613695565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561238b91906133a4565b9450612309565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61244b8383836001612450565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156124bd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156124f8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125056000868387612432565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156126cf57506126ce8773ffffffffffffffffffffffffffffffffffffffff166120ba565b5b15612795575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461274460008884806001019550886120dd565b61277a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156126d557826000541461279057600080fd5b612801565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612796575b8160008190555050506128176000868387612438565b5050505050565b82805461282a9061352b565b90600052602060002090601f01602090048101928261284c5760008555612893565b82601f1061286557805160ff1916838001178555612893565b82800160010185558215612893579182015b82811115612892578251825591602001919060010190612877565b5b5090506128a091906128e7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156129005760008160009055506001016128e8565b5090565b600061291761291284613289565b613264565b905082815260208101848484011115612933576129326136f8565b5b61293e8482856134e9565b509392505050565b6000612959612954846132ba565b613264565b905082815260208101848484011115612975576129746136f8565b5b6129808482856134e9565b509392505050565b600081359050612997816138db565b92915050565b6000813590506129ac816138f2565b92915050565b6000813590506129c181613909565b92915050565b6000815190506129d681613909565b92915050565b600082601f8301126129f1576129f06136f3565b5b8135612a01848260208601612904565b91505092915050565b600081519050612a1981613920565b92915050565b600082601f830112612a3457612a336136f3565b5b8135612a44848260208601612946565b91505092915050565b600081359050612a5c81613937565b92915050565b600060208284031215612a7857612a77613702565b5b6000612a8684828501612988565b91505092915050565b60008060408385031215612aa657612aa5613702565b5b6000612ab485828601612988565b9250506020612ac585828601612988565b9150509250929050565b600080600060608486031215612ae857612ae7613702565b5b6000612af686828701612988565b9350506020612b0786828701612988565b9250506040612b1886828701612a4d565b9150509250925092565b60008060008060808587031215612b3c57612b3b613702565b5b6000612b4a87828801612988565b9450506020612b5b87828801612988565b9350506040612b6c87828801612a4d565b925050606085013567ffffffffffffffff811115612b8d57612b8c6136fd565b5b612b99878288016129dc565b91505092959194509250565b60008060408385031215612bbc57612bbb613702565b5b6000612bca85828601612988565b9250506020612bdb8582860161299d565b9150509250929050565b60008060408385031215612bfc57612bfb613702565b5b6000612c0a85828601612988565b9250506020612c1b85828601612a4d565b9150509250929050565b600060208284031215612c3b57612c3a613702565b5b6000612c498482850161299d565b91505092915050565b600060208284031215612c6857612c67613702565b5b6000612c76848285016129b2565b91505092915050565b600060208284031215612c9557612c94613702565b5b6000612ca3848285016129c7565b91505092915050565b600060208284031215612cc257612cc1613702565b5b6000612cd084828501612a0a565b91505092915050565b600060208284031215612cef57612cee613702565b5b600082013567ffffffffffffffff811115612d0d57612d0c6136fd565b5b612d1984828501612a1f565b91505092915050565b600060208284031215612d3857612d37613702565b5b6000612d4684828501612a4d565b91505092915050565b612d5881613463565b82525050565b612d6781613475565b82525050565b6000612d7882613300565b612d828185613316565b9350612d928185602086016134f8565b612d9b81613707565b840191505092915050565b6000612db18261330b565b612dbb8185613332565b9350612dcb8185602086016134f8565b612dd481613707565b840191505092915050565b6000612dea8261330b565b612df48185613343565b9350612e048185602086016134f8565b80840191505092915050565b60008154612e1d8161352b565b612e278186613343565b94506001821660008114612e425760018114612e5357612e86565b60ff19831686528186019350612e86565b612e5c856132eb565b60005b83811015612e7e57815481890152600182019150602081019050612e5f565b838801955050505b50505092915050565b6000612e9c600683613332565b9150612ea782613718565b602082019050919050565b6000612ebf602683613332565b9150612eca82613741565b604082019050919050565b6000612ee2600a83613332565b9150612eed82613790565b602082019050919050565b6000612f05601683613332565b9150612f10826137b9565b602082019050919050565b6000612f28601283613332565b9150612f33826137e2565b602082019050919050565b6000612f4b601583613332565b9150612f568261380b565b602082019050919050565b6000612f6e602083613332565b9150612f7982613834565b602082019050919050565b6000612f91601683613332565b9150612f9c8261385d565b602082019050919050565b6000612fb4600083613327565b9150612fbf82613886565b600082019050919050565b6000612fd7600e83613332565b9150612fe282613889565b602082019050919050565b6000612ffa600c83613332565b9150613005826138b2565b602082019050919050565b613019816134df565b82525050565b600061302b8286612e10565b91506130378285612ddf565b91506130438284612ddf565b9150819050949350505050565b600061305b82612fa7565b9150819050919050565b600060208201905061307a6000830184612d4f565b92915050565b60006080820190506130956000830187612d4f565b6130a26020830186612d4f565b6130af6040830185613010565b81810360608301526130c18184612d6d565b905095945050505050565b60006020820190506130e16000830184612d5e565b92915050565b600060208201905081810360008301526131018184612da6565b905092915050565b6000602082019050818103600083015261312281612e8f565b9050919050565b6000602082019050818103600083015261314281612eb2565b9050919050565b6000602082019050818103600083015261316281612ed5565b9050919050565b6000602082019050818103600083015261318281612ef8565b9050919050565b600060208201905081810360008301526131a281612f1b565b9050919050565b600060208201905081810360008301526131c281612f3e565b9050919050565b600060208201905081810360008301526131e281612f61565b9050919050565b6000602082019050818103600083015261320281612f84565b9050919050565b6000602082019050818103600083015261322281612fca565b9050919050565b6000602082019050818103600083015261324281612fed565b9050919050565b600060208201905061325e6000830184613010565b92915050565b600061326e61327f565b905061327a828261355d565b919050565b6000604051905090565b600067ffffffffffffffff8211156132a4576132a36136c4565b5b6132ad82613707565b9050602081019050919050565b600067ffffffffffffffff8211156132d5576132d46136c4565b5b6132de82613707565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613359826134df565b9150613364836134df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561339957613398613608565b5b828201905092915050565b60006133af826134df565b91506133ba836134df565b9250826133ca576133c9613637565b5b828204905092915050565b60006133e0826134df565b91506133eb836134df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561342457613423613608565b5b828202905092915050565b600061343a826134df565b9150613445836134df565b92508282101561345857613457613608565b5b828203905092915050565b600061346e826134bf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006134b882613463565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135165780820151818401526020810190506134fb565b83811115613525576000848401525b50505050565b6000600282049050600182168061354357607f821691505b6020821081141561355757613556613666565b5b50919050565b61356682613707565b810181811067ffffffffffffffff82111715613585576135846136c4565b5b80604052505050565b6000613599826134df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135cc576135cb613608565b5b600182019050919050565b60006135e2826134df565b91506135ed836134df565b9250826135fd576135fc613637565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6138e481613463565b81146138ef57600080fd5b50565b6138fb81613475565b811461390657600080fd5b50565b61391281613481565b811461391d57600080fd5b50565b613929816134ad565b811461393457600080fd5b50565b613940816134df565b811461394b57600080fd5b5056fea2646970667358221220ad5931d758fd5af9df4e7cc275757660fd8aa743821730fa864ec723c7b85ced64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636c0360eb116100f7578063a22cb46511610095578063cd7c032611610064578063cd7c0326146105fb578063e985e9c514610626578063f2fde38b14610663578063f43a22dc1461068c576101c2565b8063a22cb46514610541578063b88d4fde1461056a578063c668286214610593578063c87b56dd146105be576101c2565b80638da5cb5b116100d15780638da5cb5b146104a457806395d89b41146104cf578063a035b1fe146104fa578063a0712d6814610525576101c2565b80636c0360eb1461042557806370a0823114610450578063715018a61461048d576101c2565b806332cb6b0c1161016457806355f804b31161013e57806355f804b31461037d5780635c975abb146103a65780636352211e146103d1578063698982ba1461040e576101c2565b806332cb6b0c146103125780633ccfd60b1461033d57806342842e0e14610354576101c2565b8063081812fc116101a0578063081812fc14610258578063095ea7b31461029557806318160ddd146102be57806323b872dd146102e9576101c2565b806301ffc9a7146101c757806302329a291461020457806306fdde031461022d575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612c52565b6106b7565b6040516101fb91906130cc565b60405180910390f35b34801561021057600080fd5b5061022b60048036038101906102269190612c25565b610799565b005b34801561023957600080fd5b50610242610832565b60405161024f91906130e7565b60405180910390f35b34801561026457600080fd5b5061027f600480360381019061027a9190612d22565b6108c4565b60405161028c9190613065565b60405180910390f35b3480156102a157600080fd5b506102bc60048036038101906102b79190612be5565b610940565b005b3480156102ca57600080fd5b506102d3610a4b565b6040516102e09190613249565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190612acf565b610a62565b005b34801561031e57600080fd5b50610327610a72565b6040516103349190613249565b60405180910390f35b34801561034957600080fd5b50610352610a78565b005b34801561036057600080fd5b5061037b60048036038101906103769190612acf565b610bb0565b005b34801561038957600080fd5b506103a4600480360381019061039f9190612cd9565b610bd0565b005b3480156103b257600080fd5b506103bb610c66565b6040516103c891906130cc565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190612d22565b610c79565b6040516104059190613065565b60405180910390f35b34801561041a57600080fd5b50610423610c8f565b005b34801561043157600080fd5b5061043a610d1f565b60405161044791906130e7565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190612a62565b610dad565b6040516104849190613249565b60405180910390f35b34801561049957600080fd5b506104a2610e7d565b005b3480156104b057600080fd5b506104b9610f05565b6040516104c69190613065565b60405180910390f35b3480156104db57600080fd5b506104e4610f2f565b6040516104f191906130e7565b60405180910390f35b34801561050657600080fd5b5061050f610fc1565b60405161051c9190613249565b60405180910390f35b61053f600480360381019061053a9190612d22565b610fcc565b005b34801561054d57600080fd5b5061056860048036038101906105639190612ba5565b611216565b005b34801561057657600080fd5b50610591600480360381019061058c9190612b22565b61138e565b005b34801561059f57600080fd5b506105a861140a565b6040516105b591906130e7565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e09190612d22565b61141d565b6040516105f291906130e7565b60405180910390f35b34801561060757600080fd5b506106106114d6565b60405161061d9190613065565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190612a8f565b6114ee565b60405161065a91906130cc565b60405180910390f35b34801561066f57600080fd5b5061068a60048036038101906106859190612a62565b6115e2565b005b34801561069857600080fd5b506106a16116da565b6040516106ae9190613249565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107925750610791826116df565b5b9050919050565b6107a1611749565b73ffffffffffffffffffffffffffffffffffffffff166107bf610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c906131c9565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6060600280546108419061352b565b80601f016020809104026020016040519081016040528092919081815260200182805461086d9061352b565b80156108ba5780601f1061088f576101008083540402835291602001916108ba565b820191906000526020600020905b81548152906001019060200180831161089d57829003601f168201915b5050505050905090565b60006108cf82611751565b610905576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094b82610c79565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d2611749565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a045750610a02816109fd611749565b6114ee565b155b15610a3b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a4683838361179f565b505050565b6000610a55611851565b6001546000540303905090565b610a6d838383611856565b505050565b611a0a81565b610a80611749565b73ffffffffffffffffffffffffffffffffffffffff16610a9e610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb906131c9565b60405180910390fd5b60004790506000610b03611749565b73ffffffffffffffffffffffffffffffffffffffff1682604051610b2690613050565b60006040518083038185875af1925050503d8060008114610b63576040519150601f19603f3d011682016040523d82523d6000602084013e610b68565b606091505b5050905080610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390613209565b60405180910390fd5b5050565b610bcb8383836040518060200160405280600081525061138e565b505050565b610bd8611749565b73ffffffffffffffffffffffffffffffffffffffff16610bf6610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c43906131c9565b60405180910390fd5b8060099080519060200190610c6292919061281e565b5050565b600a60009054906101000a900460ff1681565b6000610c8482611d47565b600001519050919050565b610c97611749565b73ffffffffffffffffffffffffffffffffffffffff16610cb5610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d02906131c9565b60405180910390fd5b610d1d610d16611749565b6001611fd6565b565b60098054610d2c9061352b565b80601f0160208091040260200160405190810160405280929190818152602001828054610d589061352b565b8015610da55780601f10610d7a57610100808354040283529160200191610da5565b820191906000526020600020905b815481529060010190602001808311610d8857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e15576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e85611749565b73ffffffffffffffffffffffffffffffffffffffff16610ea3610f05565b73ffffffffffffffffffffffffffffffffffffffff1614610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef0906131c9565b60405180910390fd5b610f036000611ff4565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f3e9061352b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6a9061352b565b8015610fb75780601f10610f8c57610100808354040283529160200191610fb7565b820191906000526020600020905b815481529060010190602001808311610f9a57829003601f168201915b5050505050905090565b660aa87bee53800081565b6000610fd6611749565b9050600a60009054906101000a900460ff1615611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f90613109565b60405180910390fd5b81611031610a4b565b61103b919061334e565b611a0a101561107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690613189565b60405180910390fd5b600082116110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990613149565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790613229565b60405180910390fd5b6102fb61113b610a4b565b1061114a578160141015611150565b81600110155b61118f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118690613169565b60405180910390fd5b6102fb61119a610a4b565b106111b95734660aa87bee538000836111b391906133d5565b146111c9565b346000836111c791906133d5565b145b611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ff906131e9565b60405180910390fd5b6112128183611fd6565b5050565b61121e611749565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611283576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611290611749565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133d611749565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161138291906130cc565b60405180910390a35050565b611399848484611856565b6113b88373ffffffffffffffffffffffffffffffffffffffff166120ba565b80156113cd57506113cb848484846120dd565b155b15611404576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060200160405280600081525081565b606061142882611751565b611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e906131a9565b60405180910390fd5b6000600980546114769061352b565b90501161149257604051806020016040528060008152506114cf565b600961149d8361223d565b604051806020016040528060008152506040516020016114bf9392919061301f565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016115589190613065565b60206040518083038186803b15801561157057600080fd5b505afa158015611584573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a89190612cac565b73ffffffffffffffffffffffffffffffffffffffff1614156115ce5760019150506115dc565b6115d8848461239e565b9150505b92915050565b6115ea611749565b73ffffffffffffffffffffffffffffffffffffffff16611608610f05565b73ffffffffffffffffffffffffffffffffffffffff161461165e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611655906131c9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590613129565b60405180910390fd5b6116d781611ff4565b50565b601481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161175c611851565b1115801561176b575060005482105b8015611798575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061186182611d47565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611888611749565b73ffffffffffffffffffffffffffffffffffffffff1614806118bb57506118ba82600001516118b5611749565b6114ee565b5b8061190057506118c9611749565b73ffffffffffffffffffffffffffffffffffffffff166118e8846108c4565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611939576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119a2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a09576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a168585856001612432565b611a26600084846000015161179f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611cd757600054811015611cd65782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d408585856001612438565b5050505050565b611d4f6128a4565b600082905080611d5d611851565b11158015611d6c575060005481105b15611f9f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611f9d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e81578092505050611fd1565b5b600115611f9c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f97578092505050611fd1565b611e82565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611ff082826040518060200160405280600081525061243e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612103611749565b8786866040518563ffffffff1660e01b81526004016121259493929190613080565b602060405180830381600087803b15801561213f57600080fd5b505af192505050801561217057506040513d601f19601f8201168201806040525081019061216d9190612c7f565b60015b6121ea573d80600081146121a0576040519150601f19603f3d011682016040523d82523d6000602084013e6121a5565b606091505b506000815114156121e2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612285576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612399565b600082905060005b600082146122b75780806122a09061358e565b915050600a826122b091906133a4565b915061228d565b60008167ffffffffffffffff8111156122d3576122d26136c4565b5b6040519080825280601f01601f1916602001820160405280156123055781602001600182028036833780820191505090505b5090505b600085146123925760018261231e919061342f565b9150600a8561232d91906135d7565b6030612339919061334e565b60f81b81838151811061234f5761234e613695565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561238b91906133a4565b9450612309565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61244b8383836001612450565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156124bd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156124f8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125056000868387612432565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156126cf57506126ce8773ffffffffffffffffffffffffffffffffffffffff166120ba565b5b15612795575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461274460008884806001019550886120dd565b61277a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156126d557826000541461279057600080fd5b612801565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612796575b8160008190555050506128176000868387612438565b5050505050565b82805461282a9061352b565b90600052602060002090601f01602090048101928261284c5760008555612893565b82601f1061286557805160ff1916838001178555612893565b82800160010185558215612893579182015b82811115612892578251825591602001919060010190612877565b5b5090506128a091906128e7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156129005760008160009055506001016128e8565b5090565b600061291761291284613289565b613264565b905082815260208101848484011115612933576129326136f8565b5b61293e8482856134e9565b509392505050565b6000612959612954846132ba565b613264565b905082815260208101848484011115612975576129746136f8565b5b6129808482856134e9565b509392505050565b600081359050612997816138db565b92915050565b6000813590506129ac816138f2565b92915050565b6000813590506129c181613909565b92915050565b6000815190506129d681613909565b92915050565b600082601f8301126129f1576129f06136f3565b5b8135612a01848260208601612904565b91505092915050565b600081519050612a1981613920565b92915050565b600082601f830112612a3457612a336136f3565b5b8135612a44848260208601612946565b91505092915050565b600081359050612a5c81613937565b92915050565b600060208284031215612a7857612a77613702565b5b6000612a8684828501612988565b91505092915050565b60008060408385031215612aa657612aa5613702565b5b6000612ab485828601612988565b9250506020612ac585828601612988565b9150509250929050565b600080600060608486031215612ae857612ae7613702565b5b6000612af686828701612988565b9350506020612b0786828701612988565b9250506040612b1886828701612a4d565b9150509250925092565b60008060008060808587031215612b3c57612b3b613702565b5b6000612b4a87828801612988565b9450506020612b5b87828801612988565b9350506040612b6c87828801612a4d565b925050606085013567ffffffffffffffff811115612b8d57612b8c6136fd565b5b612b99878288016129dc565b91505092959194509250565b60008060408385031215612bbc57612bbb613702565b5b6000612bca85828601612988565b9250506020612bdb8582860161299d565b9150509250929050565b60008060408385031215612bfc57612bfb613702565b5b6000612c0a85828601612988565b9250506020612c1b85828601612a4d565b9150509250929050565b600060208284031215612c3b57612c3a613702565b5b6000612c498482850161299d565b91505092915050565b600060208284031215612c6857612c67613702565b5b6000612c76848285016129b2565b91505092915050565b600060208284031215612c9557612c94613702565b5b6000612ca3848285016129c7565b91505092915050565b600060208284031215612cc257612cc1613702565b5b6000612cd084828501612a0a565b91505092915050565b600060208284031215612cef57612cee613702565b5b600082013567ffffffffffffffff811115612d0d57612d0c6136fd565b5b612d1984828501612a1f565b91505092915050565b600060208284031215612d3857612d37613702565b5b6000612d4684828501612a4d565b91505092915050565b612d5881613463565b82525050565b612d6781613475565b82525050565b6000612d7882613300565b612d828185613316565b9350612d928185602086016134f8565b612d9b81613707565b840191505092915050565b6000612db18261330b565b612dbb8185613332565b9350612dcb8185602086016134f8565b612dd481613707565b840191505092915050565b6000612dea8261330b565b612df48185613343565b9350612e048185602086016134f8565b80840191505092915050565b60008154612e1d8161352b565b612e278186613343565b94506001821660008114612e425760018114612e5357612e86565b60ff19831686528186019350612e86565b612e5c856132eb565b60005b83811015612e7e57815481890152600182019150602081019050612e5f565b838801955050505b50505092915050565b6000612e9c600683613332565b9150612ea782613718565b602082019050919050565b6000612ebf602683613332565b9150612eca82613741565b604082019050919050565b6000612ee2600a83613332565b9150612eed82613790565b602082019050919050565b6000612f05601683613332565b9150612f10826137b9565b602082019050919050565b6000612f28601283613332565b9150612f33826137e2565b602082019050919050565b6000612f4b601583613332565b9150612f568261380b565b602082019050919050565b6000612f6e602083613332565b9150612f7982613834565b602082019050919050565b6000612f91601683613332565b9150612f9c8261385d565b602082019050919050565b6000612fb4600083613327565b9150612fbf82613886565b600082019050919050565b6000612fd7600e83613332565b9150612fe282613889565b602082019050919050565b6000612ffa600c83613332565b9150613005826138b2565b602082019050919050565b613019816134df565b82525050565b600061302b8286612e10565b91506130378285612ddf565b91506130438284612ddf565b9150819050949350505050565b600061305b82612fa7565b9150819050919050565b600060208201905061307a6000830184612d4f565b92915050565b60006080820190506130956000830187612d4f565b6130a26020830186612d4f565b6130af6040830185613010565b81810360608301526130c18184612d6d565b905095945050505050565b60006020820190506130e16000830184612d5e565b92915050565b600060208201905081810360008301526131018184612da6565b905092915050565b6000602082019050818103600083015261312281612e8f565b9050919050565b6000602082019050818103600083015261314281612eb2565b9050919050565b6000602082019050818103600083015261316281612ed5565b9050919050565b6000602082019050818103600083015261318281612ef8565b9050919050565b600060208201905081810360008301526131a281612f1b565b9050919050565b600060208201905081810360008301526131c281612f3e565b9050919050565b600060208201905081810360008301526131e281612f61565b9050919050565b6000602082019050818103600083015261320281612f84565b9050919050565b6000602082019050818103600083015261322281612fca565b9050919050565b6000602082019050818103600083015261324281612fed565b9050919050565b600060208201905061325e6000830184613010565b92915050565b600061326e61327f565b905061327a828261355d565b919050565b6000604051905090565b600067ffffffffffffffff8211156132a4576132a36136c4565b5b6132ad82613707565b9050602081019050919050565b600067ffffffffffffffff8211156132d5576132d46136c4565b5b6132de82613707565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613359826134df565b9150613364836134df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561339957613398613608565b5b828201905092915050565b60006133af826134df565b91506133ba836134df565b9250826133ca576133c9613637565b5b828204905092915050565b60006133e0826134df565b91506133eb836134df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561342457613423613608565b5b828202905092915050565b600061343a826134df565b9150613445836134df565b92508282101561345857613457613608565b5b828203905092915050565b600061346e826134bf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006134b882613463565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156135165780820151818401526020810190506134fb565b83811115613525576000848401525b50505050565b6000600282049050600182168061354357607f821691505b6020821081141561355757613556613666565b5b50919050565b61356682613707565b810181811067ffffffffffffffff82111715613585576135846136c4565b5b80604052505050565b6000613599826134df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135cc576135cb613608565b5b600182019050919050565b60006135e2826134df565b91506135ed836134df565b9250826135fd576135fc613637565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6138e481613463565b81146138ef57600080fd5b50565b6138fb81613475565b811461390657600080fd5b50565b61391281613481565b811461391d57600080fd5b50565b613929816134ad565b811461393457600080fd5b50565b613940816134df565b811461394b57600080fd5b5056fea2646970667358221220ad5931d758fd5af9df4e7cc275757660fd8aa743821730fa864ec723c7b85ced64736f6c63430008070033

Deployed Bytecode Sourcemap

45915:2445:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28448:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47798:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31833:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33336:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32899:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27697:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34193:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46202:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47490:209;;;;;;;;;;;;;:::i;:::-;;34434:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47887:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46302:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31642:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47707:83;;;;;;;;;;;;;:::i;:::-;;45976:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28817:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2747:103;;;;;;;;;;;;;:::i;:::-;;2096:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32002:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46250:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46408:586;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33612:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34690:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46010:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47995:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46058:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47037:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3005:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46156:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28448:305;28550:4;28602:25;28587:40;;;:11;:40;;;;:105;;;;28659:33;28644:48;;;:11;:48;;;;28587:105;:158;;;;28709:36;28733:11;28709:23;:36::i;:::-;28587:158;28567:178;;28448:305;;;:::o;47798:81::-;24955:12;:10;:12::i;:::-;24944:23;;:7;:5;:7::i;:::-;:23;;;24936:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47865:6:::1;47856;;:15;;;;;;;;;;;;;;;;;;47798:81:::0;:::o;31833:100::-;31887:13;31920:5;31913:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31833:100;:::o;33336:204::-;33404:7;33429:16;33437:7;33429;:16::i;:::-;33424:64;;33454:34;;;;;;;;;;;;;;33424:64;33508:15;:24;33524:7;33508:24;;;;;;;;;;;;;;;;;;;;;33501:31;;33336:204;;;:::o;32899:371::-;32972:13;32988:24;33004:7;32988:15;:24::i;:::-;32972:40;;33033:5;33027:11;;:2;:11;;;33023:48;;;33047:24;;;;;;;;;;;;;;33023:48;33104:5;33088:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33114:37;33131:5;33138:12;:10;:12::i;:::-;33114:16;:37::i;:::-;33113:38;33088:63;33084:138;;;33175:35;;;;;;;;;;;;;;33084:138;33234:28;33243:2;33247:7;33256:5;33234:8;:28::i;:::-;32961:309;32899:371;;:::o;27697:303::-;27741:7;27966:15;:13;:15::i;:::-;27951:12;;27935:13;;:28;:46;27928:53;;27697:303;:::o;34193:170::-;34327:28;34337:4;34343:2;34347:7;34327:9;:28::i;:::-;34193:170;;;:::o;46202:41::-;46239:4;46202:41;:::o;47490:209::-;24955:12;:10;:12::i;:::-;24944:23;;:7;:5;:7::i;:::-;:23;;;24936:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47540:15:::1;47558:21;47540:39;;47591:12;47609;:10;:12::i;:::-;:17;;47634:7;47609:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47590:56;;;47665:7;47657:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47529:170;;47490:209::o:0;34434:185::-;34572:39;34589:4;34595:2;34599:7;34572:39;;;;;;;;;;;;:16;:39::i;:::-;34434:185;;;:::o;47887:100::-;24955:12;:10;:12::i;:::-;24944:23;;:7;:5;:7::i;:::-;:23;;;24936:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47971:8:::1;47961:7;:18;;;;;;;;;;;;:::i;:::-;;47887:100:::0;:::o;46302:26::-;;;;;;;;;;;;;:::o;31642:124::-;31706:7;31733:20;31745:7;31733:11;:20::i;:::-;:25;;;31726:32;;31642:124;;;:::o;47707:83::-;24955:12;:10;:12::i;:::-;24944:23;;:7;:5;:7::i;:::-;:23;;;24936:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47756:26:::1;47766:12;:10;:12::i;:::-;47780:1;47756:9;:26::i;:::-;47707:83::o:0;45976:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28817:206::-;28881:7;28922:1;28905:19;;:5;:19;;;28901:60;;;28933:28;;;;;;;;;;;;;;28901:60;28987:12;:19;29000:5;28987:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28979:36;;28972:43;;28817:206;;;:::o;2747:103::-;2327:12;:10;:12::i;:::-;2316:23;;:7;:5;:7::i;:::-;:23;;;2308:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2812:30:::1;2839:1;2812:18;:30::i;:::-;2747:103::o:0;2096:87::-;2142:7;2169:6;;;;;;;;;;;2162:13;;2096:87;:::o;32002:104::-;32058:13;32091:7;32084:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32002:104;:::o;46250:43::-;46282:11;46250:43;:::o;46408:586::-;46467:15;46485:12;:10;:12::i;:::-;46467:30;;46517:6;;;;;;;;;;;46516:7;46508:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;46583:7;46567:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46239:4;46553:37;;46545:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46642:1;46632:7;:11;46624:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;46690:7;46677:20;;:9;:20;;;46669:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;46749:3;46733:13;:11;:13::i;:::-;:19;:58;;46784:7;46193:2;46770:21;;46733:58;;;46760:7;46755:1;:12;;46733:58;46725:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;46858:3;46842:13;:11;:13::i;:::-;:19;:77;;46910:9;46282:11;46891:7;:15;;;;:::i;:::-;:28;46842:77;;;46879:9;46874:1;46864:7;:11;;;;:::i;:::-;:24;46842:77;46834:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;46959:27;46969:7;46978;46959:9;:27::i;:::-;46456:538;46408:586;:::o;33612:279::-;33715:12;:10;:12::i;:::-;33703:24;;:8;:24;;;33699:54;;;33736:17;;;;;;;;;;;;;;33699:54;33811:8;33766:18;:32;33785:12;:10;:12::i;:::-;33766:32;;;;;;;;;;;;;;;:42;33799:8;33766:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33864:8;33835:48;;33850:12;:10;:12::i;:::-;33835:48;;;33874:8;33835:48;;;;;;:::i;:::-;;;;;;;;33612:279;;:::o;34690:369::-;34857:28;34867:4;34873:2;34877:7;34857:9;:28::i;:::-;34900:15;:2;:13;;;:15::i;:::-;:76;;;;;34920:56;34951:4;34957:2;34961:7;34970:5;34920:30;:56::i;:::-;34919:57;34900:76;34896:156;;;35000:40;;;;;;;;;;;;;;34896:156;34690:369;;;;:::o;46010:41::-;;;;;;;;;;;;;;:::o;47995:362::-;48061:13;48095:17;48103:8;48095:7;:17::i;:::-;48087:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48180:1;48162:7;48156:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;48238:7;48262:26;48279:8;48262:16;:26::i;:::-;48305:13;;;;;;;;;;;;48205:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48156:193;48149:200;;47995:362;;;:::o;46058:89::-;46105:42;46058:89;:::o;47037:445::-;47162:4;47247:27;46105:42;47247:65;;47368:8;47327:49;;47335:13;:21;;;47357:5;47335:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47327:49;;;47323:93;;;47400:4;47393:11;;;;;47323:93;47435:39;47458:5;47465:8;47435:22;:39::i;:::-;47428:46;;;47037:445;;;;;:::o;3005:201::-;2327:12;:10;:12::i;:::-;2316:23;;:7;:5;:7::i;:::-;:23;;;2308:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3114:1:::1;3094:22;;:8;:22;;;;3086:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3170:28;3189:8;3170:18;:28::i;:::-;3005:201:::0;:::o;46156:39::-;46193:2;46156:39;:::o;23650:157::-;23735:4;23774:25;23759:40;;;:11;:40;;;;23752:47;;23650:157;;;:::o;837:98::-;890:7;917:10;910:17;;837:98;:::o;35314:187::-;35371:4;35414:7;35395:15;:13;:15::i;:::-;:26;;:53;;;;;35435:13;;35425:7;:23;35395:53;:98;;;;;35466:11;:20;35478:7;35466:20;;;;;;;;;;;:27;;;;;;;;;;;;35465:28;35395:98;35388:105;;35314:187;;;:::o;42925:196::-;43067:2;43040:15;:24;43056:7;43040:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43105:7;43101:2;43085:28;;43094:5;43085:28;;;;;;;;;;;;42925:196;;;:::o;27421:92::-;27477:7;27421:92;:::o;38427:2112::-;38542:35;38580:20;38592:7;38580:11;:20::i;:::-;38542:58;;38613:22;38655:13;:18;;;38639:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38690:50;38707:13;:18;;;38727:12;:10;:12::i;:::-;38690:16;:50::i;:::-;38639:101;:154;;;;38781:12;:10;:12::i;:::-;38757:36;;:20;38769:7;38757:11;:20::i;:::-;:36;;;38639:154;38613:181;;38812:17;38807:66;;38838:35;;;;;;;;;;;;;;38807:66;38910:4;38888:26;;:13;:18;;;:26;;;38884:67;;38923:28;;;;;;;;;;;;;;38884:67;38980:1;38966:16;;:2;:16;;;38962:52;;;38991:23;;;;;;;;;;;;;;38962:52;39027:43;39049:4;39055:2;39059:7;39068:1;39027:21;:43::i;:::-;39135:49;39152:1;39156:7;39165:13;:18;;;39135:8;:49::i;:::-;39510:1;39480:12;:18;39493:4;39480:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39554:1;39526:12;:16;39539:2;39526:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39600:2;39572:11;:20;39584:7;39572:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39662:15;39617:11;:20;39629:7;39617:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39930:19;39962:1;39952:7;:11;39930:33;;40023:1;39982:43;;:11;:24;39994:11;39982:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39978:445;;;40207:13;;40193:11;:27;40189:219;;;40277:13;:18;;;40245:11;:24;40257:11;40245:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40360:13;:28;;;40318:11;:24;40330:11;40318:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40189:219;39978:445;39455:979;40470:7;40466:2;40451:27;;40460:4;40451:27;;;;;;;;;;;;40489:42;40510:4;40516:2;40520:7;40529:1;40489:20;:42::i;:::-;38531:2008;;38427:2112;;;:::o;30472:1108::-;30533:21;;:::i;:::-;30567:12;30582:7;30567:22;;30650:4;30631:15;:13;:15::i;:::-;:23;;:47;;;;;30665:13;;30658:4;:20;30631:47;30627:886;;;30699:31;30733:11;:17;30745:4;30733:17;;;;;;;;;;;30699:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30774:9;:16;;;30769:729;;30845:1;30819:28;;:9;:14;;;:28;;;30815:101;;30883:9;30876:16;;;;;;30815:101;31218:261;31225:4;31218:261;;;31258:6;;;;;;;;31303:11;:17;31315:4;31303:17;;;;;;;;;;;31291:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31377:1;31351:28;;:9;:14;;;:28;;;31347:109;;31419:9;31412:16;;;;;;31347:109;31218:261;;;30769:729;30680:833;30627:886;31541:31;;;;;;;;;;;;;;30472:1108;;;;:::o;35509:104::-;35578:27;35588:2;35592:8;35578:27;;;;;;;;;;;;:9;:27::i;:::-;35509:104;;:::o;3366:191::-;3440:16;3459:6;;;;;;;;;;;3440:25;;3485:8;3476:6;;:17;;;;;;;;;;;;;;;;;;3540:8;3509:40;;3530:8;3509:40;;;;;;;;;;;;3429:128;3366:191;:::o;13427:326::-;13487:4;13744:1;13722:7;:19;;;:23;13715:30;;13427:326;;;:::o;43613:667::-;43776:4;43813:2;43797:36;;;43834:12;:10;:12::i;:::-;43848:4;43854:7;43863:5;43797:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43793:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44048:1;44031:6;:13;:18;44027:235;;;44077:40;;;;;;;;;;;;;;44027:235;44220:6;44214:13;44205:6;44201:2;44197:15;44190:38;43793:480;43926:45;;;43916:55;;;:6;:55;;;;43909:62;;;43613:667;;;;;;:::o;21047:723::-;21103:13;21333:1;21324:5;:10;21320:53;;;21351:10;;;;;;;;;;;;;;;;;;;;;21320:53;21383:12;21398:5;21383:20;;21414:14;21439:78;21454:1;21446:4;:9;21439:78;;21472:8;;;;;:::i;:::-;;;;21503:2;21495:10;;;;;:::i;:::-;;;21439:78;;;21527:19;21559:6;21549:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21527:39;;21577:154;21593:1;21584:5;:10;21577:154;;21621:1;21611:11;;;;;:::i;:::-;;;21688:2;21680:5;:10;;;;:::i;:::-;21667:2;:24;;;;:::i;:::-;21654:39;;21637:6;21644;21637:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21717:2;21708:11;;;;;:::i;:::-;;;21577:154;;;21755:6;21741:21;;;;;21047:723;;;;:::o;33962:164::-;34059:4;34083:18;:25;34102:5;34083:25;;;;;;;;;;;;;;;:35;34109:8;34083:35;;;;;;;;;;;;;;;;;;;;;;;;;34076:42;;33962:164;;;;:::o;44928:159::-;;;;;:::o;45746:158::-;;;;;:::o;35976:163::-;36099:32;36105:2;36109:8;36119:5;36126:4;36099:5;:32::i;:::-;35976:163;;;:::o;36398:1775::-;36537:20;36560:13;;36537:36;;36602:1;36588:16;;:2;:16;;;36584:48;;;36613:19;;;;;;;;;;;;;;36584:48;36659:1;36647:8;:13;36643:44;;;36669:18;;;;;;;;;;;;;;36643:44;36700:61;36730:1;36734:2;36738:12;36752:8;36700:21;:61::i;:::-;37073:8;37038:12;:16;37051:2;37038:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37137:8;37097:12;:16;37110:2;37097:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37196:2;37163:11;:25;37175:12;37163:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37263:15;37213:11;:25;37225:12;37213:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37296:20;37319:12;37296:35;;37346:11;37375:8;37360:12;:23;37346:37;;37404:4;:23;;;;;37412:15;:2;:13;;;:15::i;:::-;37404:23;37400:641;;;37448:314;37504:12;37500:2;37479:38;;37496:1;37479:38;;;;;;;;;;;;37545:69;37584:1;37588:2;37592:14;;;;;;37608:5;37545:30;:69::i;:::-;37540:174;;37650:40;;;;;;;;;;;;;;37540:174;37757:3;37741:12;:19;;37448:314;;37843:12;37826:13;;:29;37822:43;;37857:8;;;37822:43;37400:641;;;37906:120;37962:14;;;;;;37958:2;37937:40;;37954:1;37937:40;;;;;;;;;;;;38021:3;38005:12;:19;;37906:120;;37400:641;38071:12;38055:13;:28;;;;37013:1082;;38105:60;38134:1;38138:2;38142:12;38156:8;38105:20;:60::i;:::-;36526:1647;36398:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;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:160::-;28633:12;28629:1;28621:6;28617:14;28610:36;28493:160;:::o;28659:172::-;28799:24;28795:1;28787:6;28783:14;28776:48;28659:172;:::o;28837:168::-;28977:20;28973:1;28965:6;28961:14;28954:44;28837:168;:::o;29011:171::-;29151:23;29147:1;29139:6;29135:14;29128:47;29011:171;:::o;29188:182::-;29328:34;29324:1;29316:6;29312:14;29305:58;29188:182;:::o;29376:172::-;29516:24;29512:1;29504:6;29500:14;29493:48;29376:172;:::o;29554:114::-;;:::o;29674:164::-;29814:16;29810:1;29802:6;29798:14;29791:40;29674:164;:::o;29844:162::-;29984:14;29980:1;29972:6;29968:14;29961:38;29844:162;:::o;30012:122::-;30085:24;30103:5;30085:24;:::i;:::-;30078:5;30075:35;30065:63;;30124:1;30121;30114:12;30065:63;30012:122;:::o;30140:116::-;30210:21;30225:5;30210:21;:::i;:::-;30203:5;30200:32;30190:60;;30246:1;30243;30236:12;30190:60;30140:116;:::o;30262:120::-;30334:23;30351:5;30334:23;:::i;:::-;30327:5;30324:34;30314:62;;30372:1;30369;30362:12;30314:62;30262:120;:::o;30388:180::-;30490:53;30537:5;30490:53;:::i;:::-;30483:5;30480:64;30470:92;;30558:1;30555;30548:12;30470:92;30388:180;:::o;30574:122::-;30647:24;30665:5;30647:24;:::i;:::-;30640:5;30637:35;30627:63;;30686:1;30683;30676:12;30627:63;30574:122;:::o

Swarm Source

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