ETH Price: $3,033.43 (+0.32%)
Gas: 3 Gwei

Token

pfp+ (PFP+)
 

Overview

Max Total Supply

376 PFP+

Holders

226

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
xbastard.eth
Balance
1 PFP+
0x0559d4f52c63732853ac1f4c50b6f293cee0b646
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:
pfpPlus

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-20
*/

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

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

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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


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


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

pragma solidity ^0.8.0;

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

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

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


// File @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/Context.sol)

pragma solidity ^0.8.0;

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

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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


// File contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;







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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex != end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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


// File contracts/pfpPlus.sol

pragma solidity ^0.8.9;

contract pfpPlus is ERC721A {
    string private _baseTokenURI;
    address private deployer;

    bool public saleIsActive = false;

    uint256 public maxAmount = 1111;
    uint256 public maxPerMint = 30;
    uint256 public nftPrice = 0.099 ether;

    address projectWallet = 0x18810A0bCDE665eFA07123A6caCfC92527c7907e;
    address devWallet = 0x38c0245C7C67576d1E73f3A11c6af76fE8d11dEA;
    address renderingWallet = 0x448b3D5B9621f5FD96dEBEC73AD4c35eE306f1F5;
    address artWallet = 0x3ec4D95C548FD0284ca51BeaC70034621c7F3989;

    modifier onlyOwner() {
        require(msg.sender == deployer, "Permission denied.");
        _;
    }

    constructor() ERC721A("pfp+", "PFP+") {
        deployer = address(msg.sender);
    }

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

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setMaxPerMint(uint256 newMax) external onlyOwner {
        maxPerMint = newMax;
    }

    function changeMaxAmount(uint256 newMax) external onlyOwner {
        maxAmount = newMax;
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function mintReserveTokens(uint256 numberOfTokens) public onlyOwner {
        _safeMint(msg.sender, numberOfTokens);
        require(totalSupply() <= maxAmount, "Limit reached");
    }

    function mintNFT(uint256 numberOfTokens) public payable {
        require(saleIsActive, "Sale is not active");
        require(
            numberOfTokens <= maxPerMint,
            "You can't mint that many at once"
        );
        require(
            nftPrice * numberOfTokens <= msg.value,
            "Ether value sent is not correct"
        );

        _safeMint(msg.sender, numberOfTokens);

        require(totalSupply() <= maxAmount, "Limit reached");
    }

    function withdrawMoney() external onlyOwner {
        payable(deployer).transfer(address(this).balance);
    }

    function withdrawAll() public payable onlyOwner {
        uint256 project = (address(this).balance * 30) / 100;
        uint256 dev = (address(this).balance * 30) / 100;
        uint256 rendering = (address(this).balance * 20) / 100;
        uint256 art = (address(this).balance * 20) / 100;

        require(payable(projectWallet).send(project));
        require(payable(devWallet).send(dev));
        require(payable(renderingWallet).send(rendering));
        require(payable(artWallet).send(art));
    }
}

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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"changeMaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintReserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxPerMint","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":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600960146101000a81548160ff021916908315150217905550610457600a55601e600b5567015fb7f9b8c38000600c557318810a0bcde665efa07123a6cacfc92527c7907e600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507338c0245c7c67576d1e73f3a11c6af76fe8d11dea600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073448b3d5b9621f5fd96debec73ad4c35ee306f1f5600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733ec4d95c548fd0284ca51beac70034621c7f3989601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200019757600080fd5b506040518060400160405280600481526020017f7066702b000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5046502b0000000000000000000000000000000000000000000000000000000081525081600290805190602001906200021c9291906200029a565b508060039080519060200190620002359291906200029a565b50620002466200029560201b60201c565b600081905550505033600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003af565b600090565b828054620002a89062000379565b90600052602060002090601f016020900481019282620002cc576000855562000318565b82601f10620002e757805160ff191683800117855562000318565b8280016001018555821562000318579182015b8281111562000317578251825591602001919060010190620002fa565b5b5090506200032791906200032b565b5090565b5b80821115620003465760008160009055506001016200032c565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200039257607f821691505b60208210811415620003a957620003a86200034a565b5b50919050565b6133b580620003bf6000396000f3fe6080604052600436106101815760003560e01c80635f48f393116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610518578063db6242c314610555578063e985e9c51461057e578063eb8d2444146105bb57610181565b8063a22cb465146104af578063ac446002146104d8578063b88d4fde146104ef57610181565b80635f48f393146103b95780636352211e146103e457806370a0823114610421578063853828b61461045e578063926427441461046857806395d89b411461048457610181565b806323b872dd1161013e57806335ded4391161011857806335ded4391461031357806342842e0e1461033c578063507e094f1461036557806355f804b31461039057610181565b806323b872dd146102aa578063288bd8fd146102d357806334918dfd146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b5780630d39fc811461025457806318160ddd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a8919061279f565b6105e6565b6040516101ba91906127e7565b60405180910390f35b3480156101cf57600080fd5b506101d86106c8565b6040516101e5919061289b565b60405180910390f35b3480156101fa57600080fd5b50610215600480360381019061021091906128f3565b61075a565b6040516102229190612961565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d91906129a8565b6107d6565b005b34801561026057600080fd5b506102696108e1565b60405161027691906129f7565b60405180910390f35b34801561028b57600080fd5b506102946108e7565b6040516102a191906129f7565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612a12565b6108fe565b005b3480156102df57600080fd5b506102fa60048036038101906102f591906128f3565b61090e565b005b34801561030857600080fd5b506103116109f7565b005b34801561031f57600080fd5b5061033a600480360381019061033591906128f3565b610ab3565b005b34801561034857600080fd5b50610363600480360381019061035e9190612a12565b610b4d565b005b34801561037157600080fd5b5061037a610b6d565b60405161038791906129f7565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b29190612aca565b610b73565b005b3480156103c557600080fd5b506103ce610c19565b6040516103db91906129f7565b60405180910390f35b3480156103f057600080fd5b5061040b600480360381019061040691906128f3565b610c1f565b6040516104189190612961565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190612b17565b610c35565b60405161045591906129f7565b60405180910390f35b610466610d05565b005b610482600480360381019061047d91906128f3565b610f8f565b005b34801561049057600080fd5b506104996110cc565b6040516104a6919061289b565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190612b70565b61115e565b005b3480156104e457600080fd5b506104ed6112d6565b005b3480156104fb57600080fd5b5061051660048036038101906105119190612ce0565b6113d1565b005b34801561052457600080fd5b5061053f600480360381019061053a91906128f3565b61144d565b60405161054c919061289b565b60405180910390f35b34801561056157600080fd5b5061057c600480360381019061057791906128f3565b6114ec565b005b34801561058a57600080fd5b506105a560048036038101906105a09190612d63565b611586565b6040516105b291906127e7565b60405180910390f35b3480156105c757600080fd5b506105d061161a565b6040516105dd91906127e7565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c157506106c08261162d565b5b9050919050565b6060600280546106d790612dd2565b80601f016020809104026020016040519081016040528092919081815260200182805461070390612dd2565b80156107505780601f1061072557610100808354040283529160200191610750565b820191906000526020600020905b81548152906001019060200180831161073357829003601f168201915b5050505050905090565b600061076582611697565b61079b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107e182610c1f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610849576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108686116e5565b73ffffffffffffffffffffffffffffffffffffffff161415801561089a5750610898816108936116e5565b611586565b155b156108d1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108dc8383836116ed565b505050565b600c5481565b60006108f161179f565b6001546000540303905090565b6109098383836117a4565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099590612e50565b60405180910390fd5b6109a83382611c5a565b600a546109b36108e7565b11156109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb90612ebc565b60405180910390fd5b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90612e50565b60405180910390fd5b600960149054906101000a900460ff1615600960146101000a81548160ff021916908315150217905550565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a90612e50565b60405180910390fd5b80600a8190555050565b610b68838383604051806020016040528060008152506113d1565b505050565b600b5481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90612e50565b60405180910390fd5b818160089190610c1492919061264d565b505050565b600a5481565b6000610c2a82611c78565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c9d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90612e50565b60405180910390fd5b60006064601e47610da69190612f0b565b610db09190612f94565b905060006064601e47610dc39190612f0b565b610dcd9190612f94565b905060006064601447610de09190612f0b565b610dea9190612f94565b905060006064601447610dfd9190612f0b565b610e079190612f94565b9050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050610e6957600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050610ec957600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050610f2957600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610f8957600080fd5b50505050565b600960149054906101000a900460ff16610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590613011565b60405180910390fd5b600b54811115611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a9061307d565b60405180910390fd5b3481600c546110329190612f0b565b1115611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a906130e9565b60405180910390fd5b61107d3382611c5a565b600a546110886108e7565b11156110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090612ebc565b60405180910390fd5b50565b6060600380546110db90612dd2565b80601f016020809104026020016040519081016040528092919081815260200182805461110790612dd2565b80156111545780601f1061112957610100808354040283529160200191611154565b820191906000526020600020905b81548152906001019060200180831161113757829003601f168201915b5050505050905090565b6111666116e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111cb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111d86116e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112856116e5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ca91906127e7565b60405180910390a35050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d90612e50565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156113ce573d6000803e3d6000fd5b50565b6113dc8484846117a4565b6113fb8373ffffffffffffffffffffffffffffffffffffffff16611f07565b8015611410575061140e84848484611f2a565b155b15611447576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061145882611697565b61148e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061149861208a565b90506000815114156114b957604051806020016040528060008152506114e4565b806114c38461211c565b6040516020016114d4929190613145565b6040516020818303038152906040525b915050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461157c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157390612e50565b60405180910390fd5b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600960149054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816116a261179f565b111580156116b1575060005482105b80156116de575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006117af82611c78565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461181a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661183b6116e5565b73ffffffffffffffffffffffffffffffffffffffff16148061186a5750611869856118646116e5565b611586565b5b806118af57506118786116e5565b73ffffffffffffffffffffffffffffffffffffffff166118978461075a565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806118e8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561194f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61195c858585600161227d565b611968600084876116ed565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611be8576000548214611be757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c538585856001612283565b5050505050565b611c74828260405180602001604052806000815250612289565b5050565b611c806126d3565b600082905080611c8e61179f565b11158015611c9d575060005481105b15611ed0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611ece57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611db2578092505050611f02565b5b600115611ecd57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ec8578092505050611f02565b611db3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f506116e5565b8786866040518563ffffffff1660e01b8152600401611f7294939291906131be565b602060405180830381600087803b158015611f8c57600080fd5b505af1925050508015611fbd57506040513d601f19601f82011682018060405250810190611fba919061321f565b60015b612037573d8060008114611fed576040519150601f19603f3d011682016040523d82523d6000602084013e611ff2565b606091505b5060008151141561202f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606008805461209990612dd2565b80601f01602080910402602001604051908101604052809291908181526020018280546120c590612dd2565b80156121125780601f106120e757610100808354040283529160200191612112565b820191906000526020600020905b8154815290600101906020018083116120f557829003601f168201915b5050505050905090565b60606000821415612164576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612278565b600082905060005b6000821461219657808061217f9061324c565b915050600a8261218f9190612f94565b915061216c565b60008167ffffffffffffffff8111156121b2576121b1612bb5565b5b6040519080825280601f01601f1916602001820160405280156121e45781602001600182028036833780820191505090505b5090505b60008514612271576001826121fd9190613295565b9150600a8561220c91906132c9565b603061221891906132fa565b60f81b81838151811061222e5761222d613350565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561226a9190612f94565b94506121e8565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122f6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612331576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61233e600085838661227d565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506124ff8673ffffffffffffffffffffffffffffffffffffffff16611f07565b156125c5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125746000878480600101955087611f2a565b6125aa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156125055782600054146125c057600080fd5b612631565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125c6575b8160008190555050506126476000858386612283565b50505050565b82805461265990612dd2565b90600052602060002090601f01602090048101928261267b57600085556126c2565b82601f1061269457803560ff19168380011785556126c2565b828001600101855582156126c2579182015b828111156126c15782358255916020019190600101906126a6565b5b5090506126cf9190612716565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561272f576000816000905550600101612717565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61277c81612747565b811461278757600080fd5b50565b60008135905061279981612773565b92915050565b6000602082840312156127b5576127b461273d565b5b60006127c38482850161278a565b91505092915050565b60008115159050919050565b6127e1816127cc565b82525050565b60006020820190506127fc60008301846127d8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561283c578082015181840152602081019050612821565b8381111561284b576000848401525b50505050565b6000601f19601f8301169050919050565b600061286d82612802565b612877818561280d565b935061288781856020860161281e565b61289081612851565b840191505092915050565b600060208201905081810360008301526128b58184612862565b905092915050565b6000819050919050565b6128d0816128bd565b81146128db57600080fd5b50565b6000813590506128ed816128c7565b92915050565b6000602082840312156129095761290861273d565b5b6000612917848285016128de565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061294b82612920565b9050919050565b61295b81612940565b82525050565b60006020820190506129766000830184612952565b92915050565b61298581612940565b811461299057600080fd5b50565b6000813590506129a28161297c565b92915050565b600080604083850312156129bf576129be61273d565b5b60006129cd85828601612993565b92505060206129de858286016128de565b9150509250929050565b6129f1816128bd565b82525050565b6000602082019050612a0c60008301846129e8565b92915050565b600080600060608486031215612a2b57612a2a61273d565b5b6000612a3986828701612993565b9350506020612a4a86828701612993565b9250506040612a5b868287016128de565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612a8a57612a89612a65565b5b8235905067ffffffffffffffff811115612aa757612aa6612a6a565b5b602083019150836001820283011115612ac357612ac2612a6f565b5b9250929050565b60008060208385031215612ae157612ae061273d565b5b600083013567ffffffffffffffff811115612aff57612afe612742565b5b612b0b85828601612a74565b92509250509250929050565b600060208284031215612b2d57612b2c61273d565b5b6000612b3b84828501612993565b91505092915050565b612b4d816127cc565b8114612b5857600080fd5b50565b600081359050612b6a81612b44565b92915050565b60008060408385031215612b8757612b8661273d565b5b6000612b9585828601612993565b9250506020612ba685828601612b5b565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bed82612851565b810181811067ffffffffffffffff82111715612c0c57612c0b612bb5565b5b80604052505050565b6000612c1f612733565b9050612c2b8282612be4565b919050565b600067ffffffffffffffff821115612c4b57612c4a612bb5565b5b612c5482612851565b9050602081019050919050565b82818337600083830152505050565b6000612c83612c7e84612c30565b612c15565b905082815260208101848484011115612c9f57612c9e612bb0565b5b612caa848285612c61565b509392505050565b600082601f830112612cc757612cc6612a65565b5b8135612cd7848260208601612c70565b91505092915050565b60008060008060808587031215612cfa57612cf961273d565b5b6000612d0887828801612993565b9450506020612d1987828801612993565b9350506040612d2a878288016128de565b925050606085013567ffffffffffffffff811115612d4b57612d4a612742565b5b612d5787828801612cb2565b91505092959194509250565b60008060408385031215612d7a57612d7961273d565b5b6000612d8885828601612993565b9250506020612d9985828601612993565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dea57607f821691505b60208210811415612dfe57612dfd612da3565b5b50919050565b7f5065726d697373696f6e2064656e6965642e0000000000000000000000000000600082015250565b6000612e3a60128361280d565b9150612e4582612e04565b602082019050919050565b60006020820190508181036000830152612e6981612e2d565b9050919050565b7f4c696d6974207265616368656400000000000000000000000000000000000000600082015250565b6000612ea6600d8361280d565b9150612eb182612e70565b602082019050919050565b60006020820190508181036000830152612ed581612e99565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f16826128bd565b9150612f21836128bd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f5a57612f59612edc565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f9f826128bd565b9150612faa836128bd565b925082612fba57612fb9612f65565b5b828204905092915050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000612ffb60128361280d565b915061300682612fc5565b602082019050919050565b6000602082019050818103600083015261302a81612fee565b9050919050565b7f596f752063616e2774206d696e742074686174206d616e79206174206f6e6365600082015250565b600061306760208361280d565b915061307282613031565b602082019050919050565b600060208201905081810360008301526130968161305a565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b60006130d3601f8361280d565b91506130de8261309d565b602082019050919050565b60006020820190508181036000830152613102816130c6565b9050919050565b600081905092915050565b600061311f82612802565b6131298185613109565b935061313981856020860161281e565b80840191505092915050565b60006131518285613114565b915061315d8284613114565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b600061319082613169565b61319a8185613174565b93506131aa81856020860161281e565b6131b381612851565b840191505092915050565b60006080820190506131d36000830187612952565b6131e06020830186612952565b6131ed60408301856129e8565b81810360608301526131ff8184613185565b905095945050505050565b60008151905061321981612773565b92915050565b6000602082840312156132355761323461273d565b5b60006132438482850161320a565b91505092915050565b6000613257826128bd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561328a57613289612edc565b5b600182019050919050565b60006132a0826128bd565b91506132ab836128bd565b9250828210156132be576132bd612edc565b5b828203905092915050565b60006132d4826128bd565b91506132df836128bd565b9250826132ef576132ee612f65565b5b828206905092915050565b6000613305826128bd565b9150613310836128bd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561334557613344612edc565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212201b74d3c829e1733f384c69bbfd13c2ff8c6e23c187b26d52c96b7e313f0b983b64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101815760003560e01c80635f48f393116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd14610518578063db6242c314610555578063e985e9c51461057e578063eb8d2444146105bb57610181565b8063a22cb465146104af578063ac446002146104d8578063b88d4fde146104ef57610181565b80635f48f393146103b95780636352211e146103e457806370a0823114610421578063853828b61461045e578063926427441461046857806395d89b411461048457610181565b806323b872dd1161013e57806335ded4391161011857806335ded4391461031357806342842e0e1461033c578063507e094f1461036557806355f804b31461039057610181565b806323b872dd146102aa578063288bd8fd146102d357806334918dfd146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b5780630d39fc811461025457806318160ddd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a8919061279f565b6105e6565b6040516101ba91906127e7565b60405180910390f35b3480156101cf57600080fd5b506101d86106c8565b6040516101e5919061289b565b60405180910390f35b3480156101fa57600080fd5b50610215600480360381019061021091906128f3565b61075a565b6040516102229190612961565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d91906129a8565b6107d6565b005b34801561026057600080fd5b506102696108e1565b60405161027691906129f7565b60405180910390f35b34801561028b57600080fd5b506102946108e7565b6040516102a191906129f7565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612a12565b6108fe565b005b3480156102df57600080fd5b506102fa60048036038101906102f591906128f3565b61090e565b005b34801561030857600080fd5b506103116109f7565b005b34801561031f57600080fd5b5061033a600480360381019061033591906128f3565b610ab3565b005b34801561034857600080fd5b50610363600480360381019061035e9190612a12565b610b4d565b005b34801561037157600080fd5b5061037a610b6d565b60405161038791906129f7565b60405180910390f35b34801561039c57600080fd5b506103b760048036038101906103b29190612aca565b610b73565b005b3480156103c557600080fd5b506103ce610c19565b6040516103db91906129f7565b60405180910390f35b3480156103f057600080fd5b5061040b600480360381019061040691906128f3565b610c1f565b6040516104189190612961565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190612b17565b610c35565b60405161045591906129f7565b60405180910390f35b610466610d05565b005b610482600480360381019061047d91906128f3565b610f8f565b005b34801561049057600080fd5b506104996110cc565b6040516104a6919061289b565b60405180910390f35b3480156104bb57600080fd5b506104d660048036038101906104d19190612b70565b61115e565b005b3480156104e457600080fd5b506104ed6112d6565b005b3480156104fb57600080fd5b5061051660048036038101906105119190612ce0565b6113d1565b005b34801561052457600080fd5b5061053f600480360381019061053a91906128f3565b61144d565b60405161054c919061289b565b60405180910390f35b34801561056157600080fd5b5061057c600480360381019061057791906128f3565b6114ec565b005b34801561058a57600080fd5b506105a560048036038101906105a09190612d63565b611586565b6040516105b291906127e7565b60405180910390f35b3480156105c757600080fd5b506105d061161a565b6040516105dd91906127e7565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c157506106c08261162d565b5b9050919050565b6060600280546106d790612dd2565b80601f016020809104026020016040519081016040528092919081815260200182805461070390612dd2565b80156107505780601f1061072557610100808354040283529160200191610750565b820191906000526020600020905b81548152906001019060200180831161073357829003601f168201915b5050505050905090565b600061076582611697565b61079b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107e182610c1f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610849576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108686116e5565b73ffffffffffffffffffffffffffffffffffffffff161415801561089a5750610898816108936116e5565b611586565b155b156108d1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108dc8383836116ed565b505050565b600c5481565b60006108f161179f565b6001546000540303905090565b6109098383836117a4565b505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099590612e50565b60405180910390fd5b6109a83382611c5a565b600a546109b36108e7565b11156109f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109eb90612ebc565b60405180910390fd5b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7e90612e50565b60405180910390fd5b600960149054906101000a900460ff1615600960146101000a81548160ff021916908315150217905550565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a90612e50565b60405180910390fd5b80600a8190555050565b610b68838383604051806020016040528060008152506113d1565b505050565b600b5481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfa90612e50565b60405180910390fd5b818160089190610c1492919061264d565b505050565b600a5481565b6000610c2a82611c78565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c9d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90612e50565b60405180910390fd5b60006064601e47610da69190612f0b565b610db09190612f94565b905060006064601e47610dc39190612f0b565b610dcd9190612f94565b905060006064601447610de09190612f0b565b610dea9190612f94565b905060006064601447610dfd9190612f0b565b610e079190612f94565b9050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050610e6957600080fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050610ec957600080fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050610f2957600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610f8957600080fd5b50505050565b600960149054906101000a900460ff16610fde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd590613011565b60405180910390fd5b600b54811115611023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101a9061307d565b60405180910390fd5b3481600c546110329190612f0b565b1115611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a906130e9565b60405180910390fd5b61107d3382611c5a565b600a546110886108e7565b11156110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090612ebc565b60405180910390fd5b50565b6060600380546110db90612dd2565b80601f016020809104026020016040519081016040528092919081815260200182805461110790612dd2565b80156111545780601f1061112957610100808354040283529160200191611154565b820191906000526020600020905b81548152906001019060200180831161113757829003601f168201915b5050505050905090565b6111666116e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111cb576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111d86116e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112856116e5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112ca91906127e7565b60405180910390a35050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d90612e50565b60405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156113ce573d6000803e3d6000fd5b50565b6113dc8484846117a4565b6113fb8373ffffffffffffffffffffffffffffffffffffffff16611f07565b8015611410575061140e84848484611f2a565b155b15611447576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061145882611697565b61148e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061149861208a565b90506000815114156114b957604051806020016040528060008152506114e4565b806114c38461211c565b6040516020016114d4929190613145565b6040516020818303038152906040525b915050919050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461157c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157390612e50565b60405180910390fd5b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600960149054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816116a261179f565b111580156116b1575060005482105b80156116de575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006117af82611c78565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461181a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661183b6116e5565b73ffffffffffffffffffffffffffffffffffffffff16148061186a5750611869856118646116e5565b611586565b5b806118af57506118786116e5565b73ffffffffffffffffffffffffffffffffffffffff166118978461075a565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806118e8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561194f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61195c858585600161227d565b611968600084876116ed565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611be8576000548214611be757878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c538585856001612283565b5050505050565b611c74828260405180602001604052806000815250612289565b5050565b611c806126d3565b600082905080611c8e61179f565b11158015611c9d575060005481105b15611ed0576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611ece57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611db2578092505050611f02565b5b600115611ecd57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ec8578092505050611f02565b611db3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f506116e5565b8786866040518563ffffffff1660e01b8152600401611f7294939291906131be565b602060405180830381600087803b158015611f8c57600080fd5b505af1925050508015611fbd57506040513d601f19601f82011682018060405250810190611fba919061321f565b60015b612037573d8060008114611fed576040519150601f19603f3d011682016040523d82523d6000602084013e611ff2565b606091505b5060008151141561202f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606008805461209990612dd2565b80601f01602080910402602001604051908101604052809291908181526020018280546120c590612dd2565b80156121125780601f106120e757610100808354040283529160200191612112565b820191906000526020600020905b8154815290600101906020018083116120f557829003601f168201915b5050505050905090565b60606000821415612164576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612278565b600082905060005b6000821461219657808061217f9061324c565b915050600a8261218f9190612f94565b915061216c565b60008167ffffffffffffffff8111156121b2576121b1612bb5565b5b6040519080825280601f01601f1916602001820160405280156121e45781602001600182028036833780820191505090505b5090505b60008514612271576001826121fd9190613295565b9150600a8561220c91906132c9565b603061221891906132fa565b60f81b81838151811061222e5761222d613350565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561226a9190612f94565b94506121e8565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122f6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612331576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61233e600085838661227d565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506124ff8673ffffffffffffffffffffffffffffffffffffffff16611f07565b156125c5575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125746000878480600101955087611f2a565b6125aa576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156125055782600054146125c057600080fd5b612631565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125c6575b8160008190555050506126476000858386612283565b50505050565b82805461265990612dd2565b90600052602060002090601f01602090048101928261267b57600085556126c2565b82601f1061269457803560ff19168380011785556126c2565b828001600101855582156126c2579182015b828111156126c15782358255916020019190600101906126a6565b5b5090506126cf9190612716565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561272f576000816000905550600101612717565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61277c81612747565b811461278757600080fd5b50565b60008135905061279981612773565b92915050565b6000602082840312156127b5576127b461273d565b5b60006127c38482850161278a565b91505092915050565b60008115159050919050565b6127e1816127cc565b82525050565b60006020820190506127fc60008301846127d8565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561283c578082015181840152602081019050612821565b8381111561284b576000848401525b50505050565b6000601f19601f8301169050919050565b600061286d82612802565b612877818561280d565b935061288781856020860161281e565b61289081612851565b840191505092915050565b600060208201905081810360008301526128b58184612862565b905092915050565b6000819050919050565b6128d0816128bd565b81146128db57600080fd5b50565b6000813590506128ed816128c7565b92915050565b6000602082840312156129095761290861273d565b5b6000612917848285016128de565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061294b82612920565b9050919050565b61295b81612940565b82525050565b60006020820190506129766000830184612952565b92915050565b61298581612940565b811461299057600080fd5b50565b6000813590506129a28161297c565b92915050565b600080604083850312156129bf576129be61273d565b5b60006129cd85828601612993565b92505060206129de858286016128de565b9150509250929050565b6129f1816128bd565b82525050565b6000602082019050612a0c60008301846129e8565b92915050565b600080600060608486031215612a2b57612a2a61273d565b5b6000612a3986828701612993565b9350506020612a4a86828701612993565b9250506040612a5b868287016128de565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612a8a57612a89612a65565b5b8235905067ffffffffffffffff811115612aa757612aa6612a6a565b5b602083019150836001820283011115612ac357612ac2612a6f565b5b9250929050565b60008060208385031215612ae157612ae061273d565b5b600083013567ffffffffffffffff811115612aff57612afe612742565b5b612b0b85828601612a74565b92509250509250929050565b600060208284031215612b2d57612b2c61273d565b5b6000612b3b84828501612993565b91505092915050565b612b4d816127cc565b8114612b5857600080fd5b50565b600081359050612b6a81612b44565b92915050565b60008060408385031215612b8757612b8661273d565b5b6000612b9585828601612993565b9250506020612ba685828601612b5b565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bed82612851565b810181811067ffffffffffffffff82111715612c0c57612c0b612bb5565b5b80604052505050565b6000612c1f612733565b9050612c2b8282612be4565b919050565b600067ffffffffffffffff821115612c4b57612c4a612bb5565b5b612c5482612851565b9050602081019050919050565b82818337600083830152505050565b6000612c83612c7e84612c30565b612c15565b905082815260208101848484011115612c9f57612c9e612bb0565b5b612caa848285612c61565b509392505050565b600082601f830112612cc757612cc6612a65565b5b8135612cd7848260208601612c70565b91505092915050565b60008060008060808587031215612cfa57612cf961273d565b5b6000612d0887828801612993565b9450506020612d1987828801612993565b9350506040612d2a878288016128de565b925050606085013567ffffffffffffffff811115612d4b57612d4a612742565b5b612d5787828801612cb2565b91505092959194509250565b60008060408385031215612d7a57612d7961273d565b5b6000612d8885828601612993565b9250506020612d9985828601612993565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dea57607f821691505b60208210811415612dfe57612dfd612da3565b5b50919050565b7f5065726d697373696f6e2064656e6965642e0000000000000000000000000000600082015250565b6000612e3a60128361280d565b9150612e4582612e04565b602082019050919050565b60006020820190508181036000830152612e6981612e2d565b9050919050565b7f4c696d6974207265616368656400000000000000000000000000000000000000600082015250565b6000612ea6600d8361280d565b9150612eb182612e70565b602082019050919050565b60006020820190508181036000830152612ed581612e99565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f16826128bd565b9150612f21836128bd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f5a57612f59612edc565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612f9f826128bd565b9150612faa836128bd565b925082612fba57612fb9612f65565b5b828204905092915050565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b6000612ffb60128361280d565b915061300682612fc5565b602082019050919050565b6000602082019050818103600083015261302a81612fee565b9050919050565b7f596f752063616e2774206d696e742074686174206d616e79206174206f6e6365600082015250565b600061306760208361280d565b915061307282613031565b602082019050919050565b600060208201905081810360008301526130968161305a565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b60006130d3601f8361280d565b91506130de8261309d565b602082019050919050565b60006020820190508181036000830152613102816130c6565b9050919050565b600081905092915050565b600061311f82612802565b6131298185613109565b935061313981856020860161281e565b80840191505092915050565b60006131518285613114565b915061315d8284613114565b91508190509392505050565b600081519050919050565b600082825260208201905092915050565b600061319082613169565b61319a8185613174565b93506131aa81856020860161281e565b6131b381612851565b840191505092915050565b60006080820190506131d36000830187612952565b6131e06020830186612952565b6131ed60408301856129e8565b81810360608301526131ff8184613185565b905095945050505050565b60008151905061321981612773565b92915050565b6000602082840312156132355761323461273d565b5b60006132438482850161320a565b91505092915050565b6000613257826128bd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561328a57613289612edc565b5b600182019050919050565b60006132a0826128bd565b91506132ab836128bd565b9250828210156132be576132bd612edc565b5b828203905092915050565b60006132d4826128bd565b91506132df836128bd565b9250826132ef576132ee612f65565b5b828206905092915050565b6000613305826128bd565b9150613310836128bd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561334557613344612edc565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212201b74d3c829e1733f384c69bbfd13c2ff8c6e23c187b26d52c96b7e313f0b983b64736f6c63430008090033

Deployed Bytecode Sourcemap

43462:2629:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24586:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27699:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29202:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28765:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43681:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23835:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30067:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44765:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44668:89;;;;;;;;;;;;;:::i;:::-;;44563:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30308:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43644:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44345:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43606:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27507:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24955:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45572:516;;;:::i;:::-;;44960:484;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27868:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29478:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45452:112;;;;;;;;;;;;;:::i;:::-;;30564:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28043:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44459:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29836:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43565:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24586:305;24688:4;24740:25;24725:40;;;:11;:40;;;;:105;;;;24797:33;24782:48;;;:11;:48;;;;24725:105;:158;;;;24847:36;24871:11;24847:23;:36::i;:::-;24725:158;24705:178;;24586:305;;;:::o;27699:100::-;27753:13;27786:5;27779:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27699:100;:::o;29202:204::-;29270:7;29295:16;29303:7;29295;:16::i;:::-;29290:64;;29320:34;;;;;;;;;;;;;;29290:64;29374:15;:24;29390:7;29374:24;;;;;;;;;;;;;;;;;;;;;29367:31;;29202:204;;;:::o;28765:371::-;28838:13;28854:24;28870:7;28854:15;:24::i;:::-;28838:40;;28899:5;28893:11;;:2;:11;;;28889:48;;;28913:24;;;;;;;;;;;;;;28889:48;28970:5;28954:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28980:37;28997:5;29004:12;:10;:12::i;:::-;28980:16;:37::i;:::-;28979:38;28954:63;28950:138;;;29041:35;;;;;;;;;;;;;;28950:138;29100:28;29109:2;29113:7;29122:5;29100:8;:28::i;:::-;28827:309;28765:371;;:::o;43681:37::-;;;;:::o;23835:303::-;23879:7;24104:15;:13;:15::i;:::-;24089:12;;24073:13;;:28;:46;24066:53;;23835:303;:::o;30067:170::-;30201:28;30211:4;30217:2;30221:7;30201:9;:28::i;:::-;30067:170;;;:::o;44765:187::-;44069:8;;;;;;;;;;;44055:22;;:10;:22;;;44047:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;44844:37:::1;44854:10;44866:14;44844:9;:37::i;:::-;44917:9;;44900:13;:11;:13::i;:::-;:26;;44892:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;44765:187:::0;:::o;44668:89::-;44069:8;;;;;;;;;;;44055:22;;:10;:22;;;44047:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;44737:12:::1;;;;;;;;;;;44736:13;44721:12;;:28;;;;;;;;;;;;;;;;;;44668:89::o:0;44563:97::-;44069:8;;;;;;;;;;;44055:22;;:10;:22;;;44047:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;44646:6:::1;44634:9;:18;;;;44563:97:::0;:::o;30308:185::-;30446:39;30463:4;30469:2;30473:7;30446:39;;;;;;;;;;;;:16;:39::i;:::-;30308:185;;;:::o;43644:30::-;;;;:::o;44345:106::-;44069:8;;;;;;;;;;;44055:22;;:10;:22;;;44047:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;44436:7:::1;;44420:13;:23;;;;;;;:::i;:::-;;44345:106:::0;;:::o;43606:31::-;;;;:::o;27507:125::-;27571:7;27598:21;27611:7;27598:12;:21::i;:::-;:26;;;27591:33;;27507:125;;;:::o;24955:206::-;25019:7;25060:1;25043:19;;:5;:19;;;25039:60;;;25071:28;;;;;;;;;;;;;;25039:60;25125:12;:19;25138:5;25125:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25117:36;;25110:43;;24955:206;;;:::o;45572:516::-;44069:8;;;;;;;;;;;44055:22;;:10;:22;;;44047:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;45631:15:::1;45680:3;45674:2;45650:21;:26;;;;:::i;:::-;45649:34;;;;:::i;:::-;45631:52;;45694:11;45739:3;45733:2;45709:21;:26;;;;:::i;:::-;45708:34;;;;:::i;:::-;45694:48;;45753:17;45804:3;45798:2;45774:21;:26;;;;:::i;:::-;45773:34;;;;:::i;:::-;45753:54;;45818:11;45863:3;45857:2;45833:21;:26;;;;:::i;:::-;45832:34;;;;:::i;:::-;45818:48;;45895:13;;;;;;;;;;;45887:27;;:36;45915:7;45887:36;;;;;;;;;;;;;;;;;;;;;;;45879:45;;;::::0;::::1;;45951:9;;;;;;;;;;;45943:23;;:28;45967:3;45943:28;;;;;;;;;;;;;;;;;;;;;;;45935:37;;;::::0;::::1;;45999:15;;;;;;;;;;;45991:29;;:40;46021:9;45991:40;;;;;;;;;;;;;;;;;;;;;;;45983:49;;;::::0;::::1;;46059:9;;;;;;;;;;;46051:23;;:28;46075:3;46051:28;;;;;;;;;;;;;;;;;;;;;;;46043:37;;;::::0;::::1;;45620:468;;;;45572:516::o:0;44960:484::-;45035:12;;;;;;;;;;;45027:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;45121:10;;45103:14;:28;;45081:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;45253:9;45235:14;45224:8;;:25;;;;:::i;:::-;:38;;45202:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;45334:37;45344:10;45356:14;45334:9;:37::i;:::-;45409:9;;45392:13;:11;:13::i;:::-;:26;;45384:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;44960:484;:::o;27868:104::-;27924:13;27957:7;27950:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27868:104;:::o;29478:287::-;29589:12;:10;:12::i;:::-;29577:24;;:8;:24;;;29573:54;;;29610:17;;;;;;;;;;;;;;29573:54;29685:8;29640:18;:32;29659:12;:10;:12::i;:::-;29640:32;;;;;;;;;;;;;;;:42;29673:8;29640:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29738:8;29709:48;;29724:12;:10;:12::i;:::-;29709:48;;;29748:8;29709:48;;;;;;:::i;:::-;;;;;;;;29478:287;;:::o;45452:112::-;44069:8;;;;;;;;;;;44055:22;;:10;:22;;;44047:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;45515:8:::1;;;;;;;;;;;45507:26;;:49;45534:21;45507:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;45452:112::o:0;30564:369::-;30731:28;30741:4;30747:2;30751:7;30731:9;:28::i;:::-;30774:15;:2;:13;;;:15::i;:::-;:76;;;;;30794:56;30825:4;30831:2;30835:7;30844:5;30794:30;:56::i;:::-;30793:57;30774:76;30770:156;;;30874:40;;;;;;;;;;;;;;30770:156;30564:369;;;;:::o;28043:318::-;28116:13;28147:16;28155:7;28147;:16::i;:::-;28142:59;;28172:29;;;;;;;;;;;;;;28142:59;28214:21;28238:10;:8;:10::i;:::-;28214:34;;28291:1;28272:7;28266:21;:26;;:87;;;;;;;;;;;;;;;;;28319:7;28328:18;:7;:16;:18::i;:::-;28302:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28266:87;28259:94;;;28043:318;;;:::o;44459:96::-;44069:8;;;;;;;;;;;44055:22;;:10;:22;;;44047:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;44541:6:::1;44528:10;:19;;;;44459:96:::0;:::o;29836:164::-;29933:4;29957:18;:25;29976:5;29957:25;;;;;;;;;;;;;;;:35;29983:8;29957:35;;;;;;;;;;;;;;;;;;;;;;;;;29950:42;;29836:164;;;;:::o;43565:32::-;;;;;;;;;;;;;:::o;20161:157::-;20246:4;20285:25;20270:40;;;:11;:40;;;;20263:47;;20161:157;;;:::o;31188:174::-;31245:4;31288:7;31269:15;:13;:15::i;:::-;:26;;:53;;;;;31309:13;;31299:7;:23;31269:53;:85;;;;;31327:11;:20;31339:7;31327:20;;;;;;;;;;;:27;;;;;;;;;;;;31326:28;31269:85;31262:92;;31188:174;;;:::o;16944:98::-;16997:7;17024:10;17017:17;;16944:98;:::o;40414:196::-;40556:2;40529:15;:24;40545:7;40529:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40594:7;40590:2;40574:28;;40583:5;40574:28;;;;;;;;;;;;40414:196;;;:::o;23609:92::-;23665:7;23609:92;:::o;35362:2130::-;35477:35;35515:21;35528:7;35515:12;:21::i;:::-;35477:59;;35575:4;35553:26;;:13;:18;;;:26;;;35549:67;;35588:28;;;;;;;;;;;;;;35549:67;35629:22;35671:4;35655:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;35692:36;35709:4;35715:12;:10;:12::i;:::-;35692:16;:36::i;:::-;35655:73;:126;;;;35769:12;:10;:12::i;:::-;35745:36;;:20;35757:7;35745:11;:20::i;:::-;:36;;;35655:126;35629:153;;35800:17;35795:66;;35826:35;;;;;;;;;;;;;;35795:66;35890:1;35876:16;;:2;:16;;;35872:52;;;35901:23;;;;;;;;;;;;;;35872:52;35937:43;35959:4;35965:2;35969:7;35978:1;35937:21;:43::i;:::-;36045:35;36062:1;36066:7;36075:4;36045:8;:35::i;:::-;36406:1;36376:12;:18;36389:4;36376:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36450:1;36422:12;:16;36435:2;36422:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36468:31;36502:11;:20;36514:7;36502:20;;;;;;;;;;;36468:54;;36553:2;36537:8;:13;;;:18;;;;;;;;;;;;;;;;;;36603:15;36570:8;:23;;;:49;;;;;;;;;;;;;;;;;;36871:19;36903:1;36893:7;:11;36871:33;;36919:31;36953:11;:24;36965:11;36953:24;;;;;;;;;;;36919:58;;37021:1;36996:27;;:8;:13;;;;;;;;;;;;:27;;;36992:384;;;37206:13;;37191:11;:28;37187:174;;37260:4;37244:8;:13;;;:20;;;;;;;;;;;;;;;;;;37313:13;:28;;;37287:8;:23;;;:54;;;;;;;;;;;;;;;;;;37187:174;36992:384;36351:1036;;;37423:7;37419:2;37404:27;;37413:4;37404:27;;;;;;;;;;;;37442:42;37463:4;37469:2;37473:7;37482:1;37442:20;:42::i;:::-;35466:2026;;35362:2130;;;:::o;31446:104::-;31515:27;31525:2;31529:8;31515:27;;;;;;;;;;;;:9;:27::i;:::-;31446:104;;:::o;26336:1109::-;26398:21;;:::i;:::-;26432:12;26447:7;26432:22;;26515:4;26496:15;:13;:15::i;:::-;:23;;:47;;;;;26530:13;;26523:4;:20;26496:47;26492:886;;;26564:31;26598:11;:17;26610:4;26598:17;;;;;;;;;;;26564:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26639:9;:16;;;26634:729;;26710:1;26684:28;;:9;:14;;;:28;;;26680:101;;26748:9;26741:16;;;;;;26680:101;27083:261;27090:4;27083:261;;;27123:6;;;;;;;;27168:11;:17;27180:4;27168:17;;;;;;;;;;;27156:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27242:1;27216:28;;:9;:14;;;:28;;;27212:109;;27284:9;27277:16;;;;;;27212:109;27083:261;;;26634:729;26545:833;26492:886;27406:31;;;;;;;;;;;;;;26336:1109;;;;:::o;8987:326::-;9047:4;9304:1;9282:7;:19;;;:23;9275:30;;8987:326;;;:::o;41102:667::-;41265:4;41302:2;41286:36;;;41323:12;:10;:12::i;:::-;41337:4;41343:7;41352:5;41286:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41282:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41537:1;41520:6;:13;:18;41516:235;;;41566:40;;;;;;;;;;;;;;41516:235;41709:6;41703:13;41694:6;41690:2;41686:15;41679:38;41282:480;41415:45;;;41405:55;;;:6;:55;;;;41398:62;;;41102:667;;;;;;:::o;44223:114::-;44283:13;44316;44309:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44223:114;:::o;17531:723::-;17587:13;17817:1;17808:5;:10;17804:53;;;17835:10;;;;;;;;;;;;;;;;;;;;;17804:53;17867:12;17882:5;17867:20;;17898:14;17923:78;17938:1;17930:4;:9;17923:78;;17956:8;;;;;:::i;:::-;;;;17987:2;17979:10;;;;;:::i;:::-;;;17923:78;;;18011:19;18043:6;18033:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18011:39;;18061:154;18077:1;18068:5;:10;18061:154;;18105:1;18095:11;;;;;:::i;:::-;;;18172:2;18164:5;:10;;;;:::i;:::-;18151:2;:24;;;;:::i;:::-;18138:39;;18121:6;18128;18121:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18201:2;18192:11;;;;;:::i;:::-;;;18061:154;;;18239:6;18225:21;;;;;17531:723;;;;:::o;42417:159::-;;;;;:::o;43235:158::-;;;;;:::o;31924:1751::-;32047:20;32070:13;;32047:36;;32112:1;32098:16;;:2;:16;;;32094:48;;;32123:19;;;;;;;;;;;;;;32094:48;32169:1;32157:8;:13;32153:44;;;32179:18;;;;;;;;;;;;;;32153:44;32210:61;32240:1;32244:2;32248:12;32262:8;32210:21;:61::i;:::-;32583:8;32548:12;:16;32561:2;32548:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32647:8;32607:12;:16;32620:2;32607:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32706:2;32673:11;:25;32685:12;32673:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;32773:15;32723:11;:25;32735:12;32723:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;32806:20;32829:12;32806:35;;32856:11;32885:8;32870:12;:23;32856:37;;32914:15;:2;:13;;;:15::i;:::-;32910:633;;;32950:314;33006:12;33002:2;32981:38;;32998:1;32981:38;;;;;;;;;;;;33047:69;33086:1;33090:2;33094:14;;;;;;33110:5;33047:30;:69::i;:::-;33042:174;;33152:40;;;;;;;;;;;;;;33042:174;33259:3;33243:12;:19;;32950:314;;33345:12;33328:13;;:29;33324:43;;33359:8;;;33324:43;32910:633;;;33408:120;33464:14;;;;;;33460:2;33439:40;;33456:1;33439:40;;;;;;;;;;;;33523:3;33507:12;:19;;33408:120;;32910:633;33573:12;33557:13;:28;;;;32523:1074;;33607:60;33636:1;33640:2;33644:12;33658:8;33607:20;:60::i;:::-;32036:1639;31924:1751;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:117::-;8571:1;8568;8561:12;8585:180;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:281;8854:27;8876:4;8854:27;:::i;:::-;8846:6;8842:40;8984:6;8972:10;8969:22;8948:18;8936:10;8933:34;8930:62;8927:88;;;8995:18;;:::i;:::-;8927:88;9035:10;9031:2;9024:22;8814:238;8771:281;;:::o;9058:129::-;9092:6;9119:20;;:::i;:::-;9109:30;;9148:33;9176:4;9168:6;9148:33;:::i;:::-;9058:129;;;:::o;9193:307::-;9254:4;9344:18;9336:6;9333:30;9330:56;;;9366:18;;:::i;:::-;9330:56;9404:29;9426:6;9404:29;:::i;:::-;9396:37;;9488:4;9482;9478:15;9470:23;;9193:307;;;:::o;9506:154::-;9590:6;9585:3;9580;9567:30;9652:1;9643:6;9638:3;9634:16;9627:27;9506:154;;;:::o;9666:410::-;9743:5;9768:65;9784:48;9825:6;9784:48;:::i;:::-;9768:65;:::i;:::-;9759:74;;9856:6;9849:5;9842:21;9894:4;9887:5;9883:16;9932:3;9923:6;9918:3;9914:16;9911:25;9908:112;;;9939:79;;:::i;:::-;9908:112;10029:41;10063:6;10058:3;10053;10029:41;:::i;:::-;9749:327;9666:410;;;;;:::o;10095:338::-;10150:5;10199:3;10192:4;10184:6;10180:17;10176:27;10166:122;;10207:79;;:::i;:::-;10166:122;10324:6;10311:20;10349:78;10423:3;10415:6;10408:4;10400:6;10396:17;10349:78;:::i;:::-;10340:87;;10156:277;10095:338;;;;:::o;10439:943::-;10534:6;10542;10550;10558;10607:3;10595:9;10586:7;10582:23;10578:33;10575:120;;;10614:79;;:::i;:::-;10575:120;10734:1;10759:53;10804:7;10795:6;10784:9;10780:22;10759:53;:::i;:::-;10749:63;;10705:117;10861:2;10887:53;10932:7;10923:6;10912:9;10908:22;10887:53;:::i;:::-;10877:63;;10832:118;10989:2;11015:53;11060:7;11051:6;11040:9;11036:22;11015:53;:::i;:::-;11005:63;;10960:118;11145:2;11134:9;11130:18;11117:32;11176:18;11168:6;11165:30;11162:117;;;11198:79;;:::i;:::-;11162:117;11303:62;11357:7;11348:6;11337:9;11333:22;11303:62;:::i;:::-;11293:72;;11088:287;10439:943;;;;;;;:::o;11388:474::-;11456:6;11464;11513:2;11501:9;11492:7;11488:23;11484:32;11481:119;;;11519:79;;:::i;:::-;11481:119;11639:1;11664:53;11709:7;11700:6;11689:9;11685:22;11664:53;:::i;:::-;11654:63;;11610:117;11766:2;11792:53;11837:7;11828:6;11817:9;11813:22;11792:53;:::i;:::-;11782:63;;11737:118;11388:474;;;;;:::o;11868:180::-;11916:77;11913:1;11906:88;12013:4;12010:1;12003:15;12037:4;12034:1;12027:15;12054:320;12098:6;12135:1;12129:4;12125:12;12115:22;;12182:1;12176:4;12172:12;12203:18;12193:81;;12259:4;12251:6;12247:17;12237:27;;12193:81;12321:2;12313:6;12310:14;12290:18;12287:38;12284:84;;;12340:18;;:::i;:::-;12284:84;12105:269;12054:320;;;:::o;12380:168::-;12520:20;12516:1;12508:6;12504:14;12497:44;12380:168;:::o;12554:366::-;12696:3;12717:67;12781:2;12776:3;12717:67;:::i;:::-;12710:74;;12793:93;12882:3;12793:93;:::i;:::-;12911:2;12906:3;12902:12;12895:19;;12554:366;;;:::o;12926:419::-;13092:4;13130:2;13119:9;13115:18;13107:26;;13179:9;13173:4;13169:20;13165:1;13154:9;13150:17;13143:47;13207:131;13333:4;13207:131;:::i;:::-;13199:139;;12926:419;;;:::o;13351:163::-;13491:15;13487:1;13479:6;13475:14;13468:39;13351:163;:::o;13520:366::-;13662:3;13683:67;13747:2;13742:3;13683:67;:::i;:::-;13676:74;;13759:93;13848:3;13759:93;:::i;:::-;13877:2;13872:3;13868:12;13861:19;;13520:366;;;:::o;13892:419::-;14058:4;14096:2;14085:9;14081:18;14073:26;;14145:9;14139:4;14135:20;14131:1;14120:9;14116:17;14109:47;14173:131;14299:4;14173:131;:::i;:::-;14165:139;;13892:419;;;:::o;14317:180::-;14365:77;14362:1;14355:88;14462:4;14459:1;14452:15;14486:4;14483:1;14476:15;14503:348;14543:7;14566:20;14584:1;14566:20;:::i;:::-;14561:25;;14600:20;14618:1;14600:20;:::i;:::-;14595:25;;14788:1;14720:66;14716:74;14713:1;14710:81;14705:1;14698:9;14691:17;14687:105;14684:131;;;14795:18;;:::i;:::-;14684:131;14843:1;14840;14836:9;14825:20;;14503:348;;;;:::o;14857:180::-;14905:77;14902:1;14895:88;15002:4;14999:1;14992:15;15026:4;15023:1;15016:15;15043:185;15083:1;15100:20;15118:1;15100:20;:::i;:::-;15095:25;;15134:20;15152:1;15134:20;:::i;:::-;15129:25;;15173:1;15163:35;;15178:18;;:::i;:::-;15163:35;15220:1;15217;15213:9;15208:14;;15043:185;;;;:::o;15234:168::-;15374:20;15370:1;15362:6;15358:14;15351:44;15234:168;:::o;15408:366::-;15550:3;15571:67;15635:2;15630:3;15571:67;:::i;:::-;15564:74;;15647:93;15736:3;15647:93;:::i;:::-;15765:2;15760:3;15756:12;15749:19;;15408:366;;;:::o;15780:419::-;15946:4;15984:2;15973:9;15969:18;15961:26;;16033:9;16027:4;16023:20;16019:1;16008:9;16004:17;15997:47;16061:131;16187:4;16061:131;:::i;:::-;16053:139;;15780:419;;;:::o;16205:182::-;16345:34;16341:1;16333:6;16329:14;16322:58;16205:182;:::o;16393:366::-;16535:3;16556:67;16620:2;16615:3;16556:67;:::i;:::-;16549:74;;16632:93;16721:3;16632:93;:::i;:::-;16750:2;16745:3;16741:12;16734:19;;16393:366;;;:::o;16765:419::-;16931:4;16969:2;16958:9;16954:18;16946:26;;17018:9;17012:4;17008:20;17004:1;16993:9;16989:17;16982:47;17046:131;17172:4;17046:131;:::i;:::-;17038:139;;16765:419;;;:::o;17190:181::-;17330:33;17326:1;17318:6;17314:14;17307:57;17190:181;:::o;17377:366::-;17519:3;17540:67;17604:2;17599:3;17540:67;:::i;:::-;17533:74;;17616:93;17705:3;17616:93;:::i;:::-;17734:2;17729:3;17725:12;17718:19;;17377:366;;;:::o;17749:419::-;17915:4;17953:2;17942:9;17938:18;17930:26;;18002:9;17996:4;17992:20;17988:1;17977:9;17973:17;17966:47;18030:131;18156:4;18030:131;:::i;:::-;18022:139;;17749:419;;;:::o;18174:148::-;18276:11;18313:3;18298:18;;18174:148;;;;:::o;18328:377::-;18434:3;18462:39;18495:5;18462:39;:::i;:::-;18517:89;18599:6;18594:3;18517:89;:::i;:::-;18510:96;;18615:52;18660:6;18655:3;18648:4;18641:5;18637:16;18615:52;:::i;:::-;18692:6;18687:3;18683:16;18676:23;;18438:267;18328:377;;;;:::o;18711:435::-;18891:3;18913:95;19004:3;18995:6;18913:95;:::i;:::-;18906:102;;19025:95;19116:3;19107:6;19025:95;:::i;:::-;19018:102;;19137:3;19130:10;;18711:435;;;;;:::o;19152:98::-;19203:6;19237:5;19231:12;19221:22;;19152:98;;;:::o;19256:168::-;19339:11;19373:6;19368:3;19361:19;19413:4;19408:3;19404:14;19389:29;;19256:168;;;;:::o;19430:360::-;19516:3;19544:38;19576:5;19544:38;:::i;:::-;19598:70;19661:6;19656:3;19598:70;:::i;:::-;19591:77;;19677:52;19722:6;19717:3;19710:4;19703:5;19699:16;19677:52;:::i;:::-;19754:29;19776:6;19754:29;:::i;:::-;19749:3;19745:39;19738:46;;19520:270;19430:360;;;;:::o;19796:640::-;19991:4;20029:3;20018:9;20014:19;20006:27;;20043:71;20111:1;20100:9;20096:17;20087:6;20043:71;:::i;:::-;20124:72;20192:2;20181:9;20177:18;20168:6;20124:72;:::i;:::-;20206;20274:2;20263:9;20259:18;20250:6;20206:72;:::i;:::-;20325:9;20319:4;20315:20;20310:2;20299:9;20295:18;20288:48;20353:76;20424:4;20415:6;20353:76;:::i;:::-;20345:84;;19796:640;;;;;;;:::o;20442:141::-;20498:5;20529:6;20523:13;20514:22;;20545:32;20571:5;20545:32;:::i;:::-;20442:141;;;;:::o;20589:349::-;20658:6;20707:2;20695:9;20686:7;20682:23;20678:32;20675:119;;;20713:79;;:::i;:::-;20675:119;20833:1;20858:63;20913:7;20904:6;20893:9;20889:22;20858:63;:::i;:::-;20848:73;;20804:127;20589:349;;;;:::o;20944:233::-;20983:3;21006:24;21024:5;21006:24;:::i;:::-;20997:33;;21052:66;21045:5;21042:77;21039:103;;;21122:18;;:::i;:::-;21039:103;21169:1;21162:5;21158:13;21151:20;;20944:233;;;:::o;21183:191::-;21223:4;21243:20;21261:1;21243:20;:::i;:::-;21238:25;;21277:20;21295:1;21277:20;:::i;:::-;21272:25;;21316:1;21313;21310:8;21307:34;;;21321:18;;:::i;:::-;21307:34;21366:1;21363;21359:9;21351:17;;21183:191;;;;:::o;21380:176::-;21412:1;21429:20;21447:1;21429:20;:::i;:::-;21424:25;;21463:20;21481:1;21463:20;:::i;:::-;21458:25;;21502:1;21492:35;;21507:18;;:::i;:::-;21492:35;21548:1;21545;21541:9;21536:14;;21380:176;;;;:::o;21562:305::-;21602:3;21621:20;21639:1;21621:20;:::i;:::-;21616:25;;21655:20;21673:1;21655:20;:::i;:::-;21650:25;;21809:1;21741:66;21737:74;21734:1;21731:81;21728:107;;;21815:18;;:::i;:::-;21728:107;21859:1;21856;21852:9;21845:16;;21562:305;;;;:::o;21873:180::-;21921:77;21918:1;21911:88;22018:4;22015:1;22008:15;22042:4;22039:1;22032:15

Swarm Source

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