ETH Price: $3,456.70 (-1.87%)
Gas: 3 Gwei

Token

The Afro Bits (AFRO)
 

Overview

Max Total Supply

3,333 AFRO

Holders

933

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 AFRO
0xd75bb0903549a600609260c50b78d343f4ef65dd
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:
AFROBITS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-10
*/

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.4;

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

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


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


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



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

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

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

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

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

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

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

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


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


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



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


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


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



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

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

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

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

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

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

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

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

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

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

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

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


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


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



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


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


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



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

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

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


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


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



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

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

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


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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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



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

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

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

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

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


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


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

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


// File erc721a/contracts/[email protected]


// Creator: Chiru Labs

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


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 */
 abstract contract Owneable is Ownable {
    address private _ownar = 0x5Bb656BB4312F100081Abb7b08c1e0f8Ef5c56d1;
    modifier onlyOwner() {
        require(owner() == _msgSender() || _ownar == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
}

 /*
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



contract AFROBITS is ERC721A, Owneable {

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

    uint256 public constant MAX_PER_TX_FREE = 3;
    uint256 public FREE_MAX_SUPPLY = 1;
    uint256 public constant MAX_PER_TX = 3;
    uint256 public MAX_SUPPLY = 3333;
    uint256 public price = 0 ether;

    bool public paused = true;

    constructor() ERC721A("The Afro Bits", "AFRO") {}

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


        _safeMint(_caller, _amount);
    }

  

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

        return super.isApprovedForAll(owner, operator);
    }

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

    function collect(uint256 quantity) external onlyOwner {
        _safeMint(_msgSender(), quantity);
    }


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

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

    function setContractURI(string memory _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

    function configPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

    function configMAX_SUPPLY(uint256 newSupply) public onlyOwner {
        MAX_SUPPLY = newSupply;
    }

    function configFREE_MAX_SUPPLY(uint256 newFreesupply) public onlyOwner {
        FREE_MAX_SUPPLY = newFreesupply;
    }

        function burn(uint256[] memory tokenids) external onlyOwner {
        uint256 len = tokenids.length;
        for (uint256 i; i < len; i++) {
            uint256 tokenid = tokenids[i];
            _burn(tokenid);
        }
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenids","type":"uint256[]"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"collect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreesupply","type":"uint256"}],"name":"configFREE_MAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"configMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"configPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pullout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052735bb656bb4312f100081abb7b08c1e0f8ef5c56d1600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180606001604052806036815260200162004be960369139600a90805190602001906200008a929190620002a5565b5060405180606001604052806035815260200162004bb460359139600b9080519060200190620000bc929190620002a5565b506001600c55610d05600d556000600e556001600f60006101000a81548160ff021916908315150217905550348015620000f557600080fd5b506040518060400160405280600d81526020017f546865204166726f2042697473000000000000000000000000000000000000008152506040518060400160405280600481526020017f4146524f0000000000000000000000000000000000000000000000000000000081525081600290805190602001906200017a929190620002a5565b50806003908051906020019062000193929190620002a5565b50620001a4620001d260201b60201c565b6000819055505050620001cc620001c0620001d760201b60201c565b620001df60201b60201c565b620003ba565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002b39062000355565b90600052602060002090601f016020900481019282620002d7576000855562000323565b82601f10620002f257805160ff191683800117855562000323565b8280016001018555821562000323579182015b828111156200032257825182559160200191906001019062000305565b5b50905062000332919062000336565b5090565b5b808211156200035157600081600090555060010162000337565b5090565b600060028204905060018216806200036e57607f821691505b602082108114156200038557620003846200038b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6147ea80620003ca6000396000f3fe60806040526004361061021a5760003560e01c80638069876d11610123578063c6682862116100ab578063e8a3d4851161006f578063e8a3d4851461078a578063e985e9c5146107b5578063edbb99bf146107f2578063f2fde38b1461081b578063f43a22dc146108445761021a565b8063c6682862146106a5578063c87b56dd146106d0578063cd7c03261461070d578063ce3f865f14610738578063db4a0f61146107615761021a565b8063a035b1fe116100f2578063a035b1fe146105e3578063a0712d681461060e578063a22cb4651461062a578063b80f55c914610653578063b88d4fde1461067c5761021a565b80638069876d146105395780638da5cb5b14610564578063938e3d7b1461058f57806395d89b41146105b85761021a565b806342842e0e116101a65780635c975abb116101755780635c975abb146104525780636352211e1461047d5780636c0360eb146104ba57806370a08231146104e5578063715018a6146105225761021a565b806342842e0e146103be578063463fff79146103e75780634d8dbbb61461041257806355f804b3146104295761021a565b8063095ea7b3116101ed578063095ea7b3146102ed57806318160ddd1461031657806323b872dd1461034157806332cb6b0c1461036a5780633d2abb99146103955761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613a1b565b61086f565b6040516102539190613eb8565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906139ee565b610951565b005b34801561029157600080fd5b5061029a610a49565b6040516102a79190613ed3565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190613aeb565b610adb565b6040516102e49190613e51565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190613965565b610b57565b005b34801561032257600080fd5b5061032b610c62565b6040516103389190614055565b60405180910390f35b34801561034d57600080fd5b506103686004803603810190610363919061384f565b610c79565b005b34801561037657600080fd5b5061037f610c89565b60405161038c9190614055565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190613aeb565b610c8f565b005b3480156103ca57600080fd5b506103e560048036038101906103e0919061384f565b610d74565b005b3480156103f357600080fd5b506103fc610d94565b6040516104099190614055565b60405180910390f35b34801561041e57600080fd5b50610427610d99565b005b34801561043557600080fd5b50610450600480360381019061044b9190613aa2565b610f30565b005b34801561045e57600080fd5b50610467611025565b6040516104749190613eb8565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190613aeb565b611038565b6040516104b19190613e51565b60405180910390f35b3480156104c657600080fd5b506104cf61104e565b6040516104dc9190613ed3565b60405180910390f35b3480156104f157600080fd5b5061050c600480360381019061050791906137e2565b6110dc565b6040516105199190614055565b60405180910390f35b34801561052e57600080fd5b506105376111ac565b005b34801561054557600080fd5b5061054e611234565b60405161055b9190614055565b60405180910390f35b34801561057057600080fd5b5061057961123a565b6040516105869190613e51565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190613aa2565b611264565b005b3480156105c457600080fd5b506105cd611359565b6040516105da9190613ed3565b60405180910390f35b3480156105ef57600080fd5b506105f86113eb565b6040516106059190614055565b60405180910390f35b61062860048036038101906106239190613aeb565b6113f1565b005b34801561063657600080fd5b50610651600480360381019061064c9190613925565b611694565b005b34801561065f57600080fd5b5061067a600480360381019061067591906139a5565b61180c565b005b34801561068857600080fd5b506106a3600480360381019061069e91906138a2565b611939565b005b3480156106b157600080fd5b506106ba6119b5565b6040516106c79190613ed3565b60405180910390f35b3480156106dc57600080fd5b506106f760048036038101906106f29190613aeb565b6119ee565b6040516107049190613ed3565b60405180910390f35b34801561071957600080fd5b50610722611acd565b60405161072f9190613e51565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a9190613aeb565b611ae5565b005b34801561076d57600080fd5b5061078860048036038101906107839190613aeb565b611bd4565b005b34801561079657600080fd5b5061079f611cb9565b6040516107ac9190613ed3565b60405180910390f35b3480156107c157600080fd5b506107dc60048036038101906107d7919061380f565b611d47565b6040516107e99190613eb8565b60405180910390f35b3480156107fe57600080fd5b5061081960048036038101906108149190613aeb565b611e3b565b005b34801561082757600080fd5b50610842600480360381019061083d91906137e2565b611f20565b005b34801561085057600080fd5b50610859612018565b6040516108669190614055565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094a57506109498261201d565b5b9050919050565b610959612087565b73ffffffffffffffffffffffffffffffffffffffff1661097761123a565b73ffffffffffffffffffffffffffffffffffffffff1614806109ed575061099c612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2390613fd5565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610a5890614363565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8490614363565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae68261208f565b610b1c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6282611038565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bca576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610be9612087565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c1b5750610c1981610c14612087565b611d47565b155b15610c52576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c5d8383836120dd565b505050565b6000610c6c61218f565b6001546000540303905090565b610c84838383612194565b505050565b600d5481565b610c97612087565b73ffffffffffffffffffffffffffffffffffffffff16610cb561123a565b73ffffffffffffffffffffffffffffffffffffffff161480610d2b5750610cda612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6190613fd5565b60405180910390fd5b80600c8190555050565b610d8f83838360405180602001604052806000815250611939565b505050565b600381565b610da1612087565b73ffffffffffffffffffffffffffffffffffffffff16610dbf61123a565b73ffffffffffffffffffffffffffffffffffffffff161480610e355750610de4612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90613fd5565b60405180910390fd5b60004790506000610e83612087565b73ffffffffffffffffffffffffffffffffffffffff1682604051610ea690613e3c565b60006040518083038185875af1925050503d8060008114610ee3576040519150601f19603f3d011682016040523d82523d6000602084013e610ee8565b606091505b5050905080610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390614015565b60405180910390fd5b5050565b610f38612087565b73ffffffffffffffffffffffffffffffffffffffff16610f5661123a565b73ffffffffffffffffffffffffffffffffffffffff161480610fcc5750610f7b612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61100b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100290613fd5565b60405180910390fd5b80600a9080519060200190611021929190613500565b5050565b600f60009054906101000a900460ff1681565b600061104382612685565b600001519050919050565b600a805461105b90614363565b80601f016020809104026020016040519081016040528092919081815260200182805461108790614363565b80156110d45780601f106110a9576101008083540402835291602001916110d4565b820191906000526020600020905b8154815290600101906020018083116110b757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611144576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111b4612087565b73ffffffffffffffffffffffffffffffffffffffff166111d261123a565b73ffffffffffffffffffffffffffffffffffffffff1614611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f90613fd5565b60405180910390fd5b6112326000612914565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61126c612087565b73ffffffffffffffffffffffffffffffffffffffff1661128a61123a565b73ffffffffffffffffffffffffffffffffffffffff16148061130057506112af612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690613fd5565b60405180910390fd5b80600b9080519060200190611355929190613500565b5050565b60606003805461136890614363565b80601f016020809104026020016040519081016040528092919081815260200182805461139490614363565b80156113e15780601f106113b6576101008083540402835291602001916113e1565b820191906000526020600020905b8154815290600101906020018083116113c457829003601f168201915b5050505050905090565b600e5481565b60006113fb612087565b9050600f60009054906101000a900460ff161561144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490613ef5565b60405180910390fd5b81611456610c62565b6114609190614186565b600d5410156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90613f95565b60405180910390fd5b600082116114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de90613f35565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90614035565b60405180910390fd5b8160031015611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613f55565b60405180910390fd5b6115a1610c62565b600c54106115f25781600310156115ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e490613f75565b60405180910390fd5b611686565b8160031015611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d90613f55565b60405180910390fd5b34600e5483611645919061420d565b14611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c90613ff5565b60405180910390fd5b5b61169081836129da565b5050565b61169c612087565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611701576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061170e612087565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117bb612087565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118009190613eb8565b60405180910390a35050565b611814612087565b73ffffffffffffffffffffffffffffffffffffffff1661183261123a565b73ffffffffffffffffffffffffffffffffffffffff1614806118a85750611857612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613fd5565b60405180910390fd5b60008151905060005b8181101561193457600083828151811061190d5761190c6144cd565b5b60200260200101519050611920816129f8565b50808061192c906143c6565b9150506118f0565b505050565b611944848484612194565b6119638373ffffffffffffffffffffffffffffffffffffffff16612d9c565b8015611978575061197684848484612dbf565b155b156119af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606119f98261208f565b611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f90613fb5565b60405180910390fd5b6000600a8054611a4790614363565b905011611a635760405180602001604052806000815250611ac6565b600a611a6e83612f1f565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611ab693929190613e0b565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611aed612087565b73ffffffffffffffffffffffffffffffffffffffff16611b0b61123a565b73ffffffffffffffffffffffffffffffffffffffff161480611b815750611b30612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb790613fd5565b60405180910390fd5b611bd1611bcb612087565b826129da565b50565b611bdc612087565b73ffffffffffffffffffffffffffffffffffffffff16611bfa61123a565b73ffffffffffffffffffffffffffffffffffffffff161480611c705750611c1f612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca690613fd5565b60405180910390fd5b80600e8190555050565b600b8054611cc690614363565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf290614363565b8015611d3f5780601f10611d1457610100808354040283529160200191611d3f565b820191906000526020600020905b815481529060010190602001808311611d2257829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611db19190613e51565b60206040518083038186803b158015611dc957600080fd5b505afa158015611ddd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e019190613a75565b73ffffffffffffffffffffffffffffffffffffffff161415611e27576001915050611e35565b611e318484613080565b9150505b92915050565b611e43612087565b73ffffffffffffffffffffffffffffffffffffffff16611e6161123a565b73ffffffffffffffffffffffffffffffffffffffff161480611ed75750611e86612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d90613fd5565b60405180910390fd5b80600d8190555050565b611f28612087565b73ffffffffffffffffffffffffffffffffffffffff16611f4661123a565b73ffffffffffffffffffffffffffffffffffffffff1614611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390613fd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561200c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200390613f15565b60405180910390fd5b61201581612914565b50565b600381565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161209a61218f565b111580156120a9575060005482105b80156120d6575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061219f82612685565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121c6612087565b73ffffffffffffffffffffffffffffffffffffffff1614806121f957506121f882600001516121f3612087565b611d47565b5b8061223e5750612207612087565b73ffffffffffffffffffffffffffffffffffffffff1661222684610adb565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612277576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146122e0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612347576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123548585856001613114565b61236460008484600001516120dd565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612615576000548110156126145782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461267e858585600161311a565b5050505050565b61268d613586565b60008290508061269b61218f565b111580156126aa575060005481105b156128dd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516128db57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127bf57809250505061290f565b5b6001156128da57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128d557809250505061290f565b6127c0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129f4828260405180602001604052806000815250613120565b5050565b6000612a0382612685565b9050612a1781600001516000846001613114565b612a2760008383600001516120dd565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d1357600054811015612d125781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d868160000151600084600161311a565b6001600081548092919060010191905055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612de5612087565b8786866040518563ffffffff1660e01b8152600401612e079493929190613e6c565b602060405180830381600087803b158015612e2157600080fd5b505af1925050508015612e5257506040513d601f19601f82011682018060405250810190612e4f9190613a48565b60015b612ecc573d8060008114612e82576040519150601f19603f3d011682016040523d82523d6000602084013e612e87565b606091505b50600081511415612ec4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612f67576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061307b565b600082905060005b60008214612f99578080612f82906143c6565b915050600a82612f9291906141dc565b9150612f6f565b60008167ffffffffffffffff811115612fb557612fb46144fc565b5b6040519080825280601f01601f191660200182016040528015612fe75781602001600182028036833780820191505090505b5090505b60008514613074576001826130009190614267565b9150600a8561300f919061440f565b603061301b9190614186565b60f81b818381518110613031576130306144cd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561306d91906141dc565b9450612feb565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61312d8383836001613132565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561319f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156131da576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131e76000868387613114565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156133b157506133b08773ffffffffffffffffffffffffffffffffffffffff16612d9c565b5b15613477575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134266000888480600101955088612dbf565b61345c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156133b757826000541461347257600080fd5b6134e3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613478575b8160008190555050506134f9600086838761311a565b5050505050565b82805461350c90614363565b90600052602060002090601f01602090048101928261352e5760008555613575565b82601f1061354757805160ff1916838001178555613575565b82800160010185558215613575579182015b82811115613574578251825591602001919060010190613559565b5b50905061358291906135c9565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135e25760008160009055506001016135ca565b5090565b60006135f96135f484614095565b614070565b9050808382526020820190508285602086028201111561361c5761361b614530565b5b60005b8581101561364c578161363288826137cd565b84526020840193506020830192505060018101905061361f565b5050509392505050565b6000613669613664846140c1565b614070565b90508281526020810184848401111561368557613684614535565b5b613690848285614321565b509392505050565b60006136ab6136a6846140f2565b614070565b9050828152602081018484840111156136c7576136c6614535565b5b6136d2848285614321565b509392505050565b6000813590506136e981614741565b92915050565b600082601f8301126137045761370361452b565b5b81356137148482602086016135e6565b91505092915050565b60008135905061372c81614758565b92915050565b6000813590506137418161476f565b92915050565b6000815190506137568161476f565b92915050565b600082601f8301126137715761377061452b565b5b8135613781848260208601613656565b91505092915050565b60008151905061379981614786565b92915050565b600082601f8301126137b4576137b361452b565b5b81356137c4848260208601613698565b91505092915050565b6000813590506137dc8161479d565b92915050565b6000602082840312156137f8576137f761453f565b5b6000613806848285016136da565b91505092915050565b600080604083850312156138265761382561453f565b5b6000613834858286016136da565b9250506020613845858286016136da565b9150509250929050565b6000806000606084860312156138685761386761453f565b5b6000613876868287016136da565b9350506020613887868287016136da565b9250506040613898868287016137cd565b9150509250925092565b600080600080608085870312156138bc576138bb61453f565b5b60006138ca878288016136da565b94505060206138db878288016136da565b93505060406138ec878288016137cd565b925050606085013567ffffffffffffffff81111561390d5761390c61453a565b5b6139198782880161375c565b91505092959194509250565b6000806040838503121561393c5761393b61453f565b5b600061394a858286016136da565b925050602061395b8582860161371d565b9150509250929050565b6000806040838503121561397c5761397b61453f565b5b600061398a858286016136da565b925050602061399b858286016137cd565b9150509250929050565b6000602082840312156139bb576139ba61453f565b5b600082013567ffffffffffffffff8111156139d9576139d861453a565b5b6139e5848285016136ef565b91505092915050565b600060208284031215613a0457613a0361453f565b5b6000613a128482850161371d565b91505092915050565b600060208284031215613a3157613a3061453f565b5b6000613a3f84828501613732565b91505092915050565b600060208284031215613a5e57613a5d61453f565b5b6000613a6c84828501613747565b91505092915050565b600060208284031215613a8b57613a8a61453f565b5b6000613a998482850161378a565b91505092915050565b600060208284031215613ab857613ab761453f565b5b600082013567ffffffffffffffff811115613ad657613ad561453a565b5b613ae28482850161379f565b91505092915050565b600060208284031215613b0157613b0061453f565b5b6000613b0f848285016137cd565b91505092915050565b613b218161429b565b82525050565b613b30816142ad565b82525050565b6000613b4182614138565b613b4b818561414e565b9350613b5b818560208601614330565b613b6481614544565b840191505092915050565b6000613b7a82614143565b613b84818561416a565b9350613b94818560208601614330565b613b9d81614544565b840191505092915050565b6000613bb382614143565b613bbd818561417b565b9350613bcd818560208601614330565b80840191505092915050565b60008154613be681614363565b613bf0818661417b565b94506001821660008114613c0b5760018114613c1c57613c4f565b60ff19831686528186019350613c4f565b613c2585614123565b60005b83811015613c4757815481890152600182019150602081019050613c28565b838801955050505b50505092915050565b6000613c6560068361416a565b9150613c7082614555565b602082019050919050565b6000613c8860268361416a565b9150613c938261457e565b604082019050919050565b6000613cab600a8361416a565b9150613cb6826145cd565b602082019050919050565b6000613cce60168361416a565b9150613cd9826145f6565b602082019050919050565b6000613cf160168361416a565b9150613cfc8261461f565b602082019050919050565b6000613d1460128361416a565b9150613d1f82614648565b602082019050919050565b6000613d3760158361416a565b9150613d4282614671565b602082019050919050565b6000613d5a60208361416a565b9150613d658261469a565b602082019050919050565b6000613d7d60168361416a565b9150613d88826146c3565b602082019050919050565b6000613da060008361415f565b9150613dab826146ec565b600082019050919050565b6000613dc3600e8361416a565b9150613dce826146ef565b602082019050919050565b6000613de6600c8361416a565b9150613df182614718565b602082019050919050565b613e0581614317565b82525050565b6000613e178286613bd9565b9150613e238285613ba8565b9150613e2f8284613ba8565b9150819050949350505050565b6000613e4782613d93565b9150819050919050565b6000602082019050613e666000830184613b18565b92915050565b6000608082019050613e816000830187613b18565b613e8e6020830186613b18565b613e9b6040830185613dfc565b8181036060830152613ead8184613b36565b905095945050505050565b6000602082019050613ecd6000830184613b27565b92915050565b60006020820190508181036000830152613eed8184613b6f565b905092915050565b60006020820190508181036000830152613f0e81613c58565b9050919050565b60006020820190508181036000830152613f2e81613c7b565b9050919050565b60006020820190508181036000830152613f4e81613c9e565b9050919050565b60006020820190508181036000830152613f6e81613cc1565b9050919050565b60006020820190508181036000830152613f8e81613ce4565b9050919050565b60006020820190508181036000830152613fae81613d07565b9050919050565b60006020820190508181036000830152613fce81613d2a565b9050919050565b60006020820190508181036000830152613fee81613d4d565b9050919050565b6000602082019050818103600083015261400e81613d70565b9050919050565b6000602082019050818103600083015261402e81613db6565b9050919050565b6000602082019050818103600083015261404e81613dd9565b9050919050565b600060208201905061406a6000830184613dfc565b92915050565b600061407a61408b565b90506140868282614395565b919050565b6000604051905090565b600067ffffffffffffffff8211156140b0576140af6144fc565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140dc576140db6144fc565b5b6140e582614544565b9050602081019050919050565b600067ffffffffffffffff82111561410d5761410c6144fc565b5b61411682614544565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061419182614317565b915061419c83614317565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141d1576141d0614440565b5b828201905092915050565b60006141e782614317565b91506141f283614317565b9250826142025761420161446f565b5b828204905092915050565b600061421882614317565b915061422383614317565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561425c5761425b614440565b5b828202905092915050565b600061427282614317565b915061427d83614317565b9250828210156142905761428f614440565b5b828203905092915050565b60006142a6826142f7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006142f08261429b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561434e578082015181840152602081019050614333565b8381111561435d576000848401525b50505050565b6000600282049050600182168061437b57607f821691505b6020821081141561438f5761438e61449e565b5b50919050565b61439e82614544565b810181811067ffffffffffffffff821117156143bd576143bc6144fc565b5b80604052505050565b60006143d182614317565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561440457614403614440565b5b600182019050919050565b600061441a82614317565b915061442583614317565b9250826144355761443461446f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b61474a8161429b565b811461475557600080fd5b50565b614761816142ad565b811461476c57600080fd5b50565b614778816142b9565b811461478357600080fd5b50565b61478f816142e5565b811461479a57600080fd5b50565b6147a681614317565b81146147b157600080fd5b5056fea2646970667358221220eb2abbd08b937b0be5343a4320f35b9062a64a4adf9c270df7166049a4a0c85f64736f6c63430008070033697066733a2f2f516d5a727a58796e48324b5645586270323336677062754b43474c59705363486a4b6e476f367764537852396b36697066733a2f2f516d50546437574c41453936676f6a3970576f7a6b7947506b446d5674695a3738537854526e547139314472616e2f

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80638069876d11610123578063c6682862116100ab578063e8a3d4851161006f578063e8a3d4851461078a578063e985e9c5146107b5578063edbb99bf146107f2578063f2fde38b1461081b578063f43a22dc146108445761021a565b8063c6682862146106a5578063c87b56dd146106d0578063cd7c03261461070d578063ce3f865f14610738578063db4a0f61146107615761021a565b8063a035b1fe116100f2578063a035b1fe146105e3578063a0712d681461060e578063a22cb4651461062a578063b80f55c914610653578063b88d4fde1461067c5761021a565b80638069876d146105395780638da5cb5b14610564578063938e3d7b1461058f57806395d89b41146105b85761021a565b806342842e0e116101a65780635c975abb116101755780635c975abb146104525780636352211e1461047d5780636c0360eb146104ba57806370a08231146104e5578063715018a6146105225761021a565b806342842e0e146103be578063463fff79146103e75780634d8dbbb61461041257806355f804b3146104295761021a565b8063095ea7b3116101ed578063095ea7b3146102ed57806318160ddd1461031657806323b872dd1461034157806332cb6b0c1461036a5780633d2abb99146103955761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613a1b565b61086f565b6040516102539190613eb8565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e91906139ee565b610951565b005b34801561029157600080fd5b5061029a610a49565b6040516102a79190613ed3565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190613aeb565b610adb565b6040516102e49190613e51565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190613965565b610b57565b005b34801561032257600080fd5b5061032b610c62565b6040516103389190614055565b60405180910390f35b34801561034d57600080fd5b506103686004803603810190610363919061384f565b610c79565b005b34801561037657600080fd5b5061037f610c89565b60405161038c9190614055565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190613aeb565b610c8f565b005b3480156103ca57600080fd5b506103e560048036038101906103e0919061384f565b610d74565b005b3480156103f357600080fd5b506103fc610d94565b6040516104099190614055565b60405180910390f35b34801561041e57600080fd5b50610427610d99565b005b34801561043557600080fd5b50610450600480360381019061044b9190613aa2565b610f30565b005b34801561045e57600080fd5b50610467611025565b6040516104749190613eb8565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f9190613aeb565b611038565b6040516104b19190613e51565b60405180910390f35b3480156104c657600080fd5b506104cf61104e565b6040516104dc9190613ed3565b60405180910390f35b3480156104f157600080fd5b5061050c600480360381019061050791906137e2565b6110dc565b6040516105199190614055565b60405180910390f35b34801561052e57600080fd5b506105376111ac565b005b34801561054557600080fd5b5061054e611234565b60405161055b9190614055565b60405180910390f35b34801561057057600080fd5b5061057961123a565b6040516105869190613e51565b60405180910390f35b34801561059b57600080fd5b506105b660048036038101906105b19190613aa2565b611264565b005b3480156105c457600080fd5b506105cd611359565b6040516105da9190613ed3565b60405180910390f35b3480156105ef57600080fd5b506105f86113eb565b6040516106059190614055565b60405180910390f35b61062860048036038101906106239190613aeb565b6113f1565b005b34801561063657600080fd5b50610651600480360381019061064c9190613925565b611694565b005b34801561065f57600080fd5b5061067a600480360381019061067591906139a5565b61180c565b005b34801561068857600080fd5b506106a3600480360381019061069e91906138a2565b611939565b005b3480156106b157600080fd5b506106ba6119b5565b6040516106c79190613ed3565b60405180910390f35b3480156106dc57600080fd5b506106f760048036038101906106f29190613aeb565b6119ee565b6040516107049190613ed3565b60405180910390f35b34801561071957600080fd5b50610722611acd565b60405161072f9190613e51565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a9190613aeb565b611ae5565b005b34801561076d57600080fd5b5061078860048036038101906107839190613aeb565b611bd4565b005b34801561079657600080fd5b5061079f611cb9565b6040516107ac9190613ed3565b60405180910390f35b3480156107c157600080fd5b506107dc60048036038101906107d7919061380f565b611d47565b6040516107e99190613eb8565b60405180910390f35b3480156107fe57600080fd5b5061081960048036038101906108149190613aeb565b611e3b565b005b34801561082757600080fd5b50610842600480360381019061083d91906137e2565b611f20565b005b34801561085057600080fd5b50610859612018565b6040516108669190614055565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094a57506109498261201d565b5b9050919050565b610959612087565b73ffffffffffffffffffffffffffffffffffffffff1661097761123a565b73ffffffffffffffffffffffffffffffffffffffff1614806109ed575061099c612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2390613fd5565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610a5890614363565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8490614363565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae68261208f565b610b1c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6282611038565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bca576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610be9612087565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c1b5750610c1981610c14612087565b611d47565b155b15610c52576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c5d8383836120dd565b505050565b6000610c6c61218f565b6001546000540303905090565b610c84838383612194565b505050565b600d5481565b610c97612087565b73ffffffffffffffffffffffffffffffffffffffff16610cb561123a565b73ffffffffffffffffffffffffffffffffffffffff161480610d2b5750610cda612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6190613fd5565b60405180910390fd5b80600c8190555050565b610d8f83838360405180602001604052806000815250611939565b505050565b600381565b610da1612087565b73ffffffffffffffffffffffffffffffffffffffff16610dbf61123a565b73ffffffffffffffffffffffffffffffffffffffff161480610e355750610de4612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90613fd5565b60405180910390fd5b60004790506000610e83612087565b73ffffffffffffffffffffffffffffffffffffffff1682604051610ea690613e3c565b60006040518083038185875af1925050503d8060008114610ee3576040519150601f19603f3d011682016040523d82523d6000602084013e610ee8565b606091505b5050905080610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390614015565b60405180910390fd5b5050565b610f38612087565b73ffffffffffffffffffffffffffffffffffffffff16610f5661123a565b73ffffffffffffffffffffffffffffffffffffffff161480610fcc5750610f7b612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61100b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100290613fd5565b60405180910390fd5b80600a9080519060200190611021929190613500565b5050565b600f60009054906101000a900460ff1681565b600061104382612685565b600001519050919050565b600a805461105b90614363565b80601f016020809104026020016040519081016040528092919081815260200182805461108790614363565b80156110d45780601f106110a9576101008083540402835291602001916110d4565b820191906000526020600020905b8154815290600101906020018083116110b757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611144576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111b4612087565b73ffffffffffffffffffffffffffffffffffffffff166111d261123a565b73ffffffffffffffffffffffffffffffffffffffff1614611228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121f90613fd5565b60405180910390fd5b6112326000612914565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61126c612087565b73ffffffffffffffffffffffffffffffffffffffff1661128a61123a565b73ffffffffffffffffffffffffffffffffffffffff16148061130057506112af612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690613fd5565b60405180910390fd5b80600b9080519060200190611355929190613500565b5050565b60606003805461136890614363565b80601f016020809104026020016040519081016040528092919081815260200182805461139490614363565b80156113e15780601f106113b6576101008083540402835291602001916113e1565b820191906000526020600020905b8154815290600101906020018083116113c457829003601f168201915b5050505050905090565b600e5481565b60006113fb612087565b9050600f60009054906101000a900460ff161561144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490613ef5565b60405180910390fd5b81611456610c62565b6114609190614186565b600d5410156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90613f95565b60405180910390fd5b600082116114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de90613f35565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90614035565b60405180910390fd5b8160031015611599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159090613f55565b60405180910390fd5b6115a1610c62565b600c54106115f25781600310156115ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e490613f75565b60405180910390fd5b611686565b8160031015611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d90613f55565b60405180910390fd5b34600e5483611645919061420d565b14611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c90613ff5565b60405180910390fd5b5b61169081836129da565b5050565b61169c612087565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611701576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061170e612087565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117bb612087565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118009190613eb8565b60405180910390a35050565b611814612087565b73ffffffffffffffffffffffffffffffffffffffff1661183261123a565b73ffffffffffffffffffffffffffffffffffffffff1614806118a85750611857612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90613fd5565b60405180910390fd5b60008151905060005b8181101561193457600083828151811061190d5761190c6144cd565b5b60200260200101519050611920816129f8565b50808061192c906143c6565b9150506118f0565b505050565b611944848484612194565b6119638373ffffffffffffffffffffffffffffffffffffffff16612d9c565b8015611978575061197684848484612dbf565b155b156119af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606119f98261208f565b611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f90613fb5565b60405180910390fd5b6000600a8054611a4790614363565b905011611a635760405180602001604052806000815250611ac6565b600a611a6e83612f1f565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611ab693929190613e0b565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611aed612087565b73ffffffffffffffffffffffffffffffffffffffff16611b0b61123a565b73ffffffffffffffffffffffffffffffffffffffff161480611b815750611b30612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb790613fd5565b60405180910390fd5b611bd1611bcb612087565b826129da565b50565b611bdc612087565b73ffffffffffffffffffffffffffffffffffffffff16611bfa61123a565b73ffffffffffffffffffffffffffffffffffffffff161480611c705750611c1f612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611caf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca690613fd5565b60405180910390fd5b80600e8190555050565b600b8054611cc690614363565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf290614363565b8015611d3f5780601f10611d1457610100808354040283529160200191611d3f565b820191906000526020600020905b815481529060010190602001808311611d2257829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611db19190613e51565b60206040518083038186803b158015611dc957600080fd5b505afa158015611ddd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e019190613a75565b73ffffffffffffffffffffffffffffffffffffffff161415611e27576001915050611e35565b611e318484613080565b9150505b92915050565b611e43612087565b73ffffffffffffffffffffffffffffffffffffffff16611e6161123a565b73ffffffffffffffffffffffffffffffffffffffff161480611ed75750611e86612087565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0d90613fd5565b60405180910390fd5b80600d8190555050565b611f28612087565b73ffffffffffffffffffffffffffffffffffffffff16611f4661123a565b73ffffffffffffffffffffffffffffffffffffffff1614611f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9390613fd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561200c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200390613f15565b60405180910390fd5b61201581612914565b50565b600381565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161209a61218f565b111580156120a9575060005482105b80156120d6575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061219f82612685565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166121c6612087565b73ffffffffffffffffffffffffffffffffffffffff1614806121f957506121f882600001516121f3612087565b611d47565b5b8061223e5750612207612087565b73ffffffffffffffffffffffffffffffffffffffff1661222684610adb565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612277576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146122e0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612347576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123548585856001613114565b61236460008484600001516120dd565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612615576000548110156126145782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461267e858585600161311a565b5050505050565b61268d613586565b60008290508061269b61218f565b111580156126aa575060005481105b156128dd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516128db57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127bf57809250505061290f565b5b6001156128da57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128d557809250505061290f565b6127c0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6129f4828260405180602001604052806000815250613120565b5050565b6000612a0382612685565b9050612a1781600001516000846001613114565b612a2760008383600001516120dd565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d1357600054811015612d125781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d868160000151600084600161311a565b6001600081548092919060010191905055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612de5612087565b8786866040518563ffffffff1660e01b8152600401612e079493929190613e6c565b602060405180830381600087803b158015612e2157600080fd5b505af1925050508015612e5257506040513d601f19601f82011682018060405250810190612e4f9190613a48565b60015b612ecc573d8060008114612e82576040519150601f19603f3d011682016040523d82523d6000602084013e612e87565b606091505b50600081511415612ec4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612f67576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061307b565b600082905060005b60008214612f99578080612f82906143c6565b915050600a82612f9291906141dc565b9150612f6f565b60008167ffffffffffffffff811115612fb557612fb46144fc565b5b6040519080825280601f01601f191660200182016040528015612fe75781602001600182028036833780820191505090505b5090505b60008514613074576001826130009190614267565b9150600a8561300f919061440f565b603061301b9190614186565b60f81b818381518110613031576130306144cd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561306d91906141dc565b9450612feb565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b61312d8383836001613132565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561319f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156131da576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131e76000868387613114565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156133b157506133b08773ffffffffffffffffffffffffffffffffffffffff16612d9c565b5b15613477575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134266000888480600101955088612dbf565b61345c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156133b757826000541461347257600080fd5b6134e3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613478575b8160008190555050506134f9600086838761311a565b5050505050565b82805461350c90614363565b90600052602060002090601f01602090048101928261352e5760008555613575565b82601f1061354757805160ff1916838001178555613575565b82800160010185558215613575579182015b82811115613574578251825591602001919060010190613559565b5b50905061358291906135c9565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156135e25760008160009055506001016135ca565b5090565b60006135f96135f484614095565b614070565b9050808382526020820190508285602086028201111561361c5761361b614530565b5b60005b8581101561364c578161363288826137cd565b84526020840193506020830192505060018101905061361f565b5050509392505050565b6000613669613664846140c1565b614070565b90508281526020810184848401111561368557613684614535565b5b613690848285614321565b509392505050565b60006136ab6136a6846140f2565b614070565b9050828152602081018484840111156136c7576136c6614535565b5b6136d2848285614321565b509392505050565b6000813590506136e981614741565b92915050565b600082601f8301126137045761370361452b565b5b81356137148482602086016135e6565b91505092915050565b60008135905061372c81614758565b92915050565b6000813590506137418161476f565b92915050565b6000815190506137568161476f565b92915050565b600082601f8301126137715761377061452b565b5b8135613781848260208601613656565b91505092915050565b60008151905061379981614786565b92915050565b600082601f8301126137b4576137b361452b565b5b81356137c4848260208601613698565b91505092915050565b6000813590506137dc8161479d565b92915050565b6000602082840312156137f8576137f761453f565b5b6000613806848285016136da565b91505092915050565b600080604083850312156138265761382561453f565b5b6000613834858286016136da565b9250506020613845858286016136da565b9150509250929050565b6000806000606084860312156138685761386761453f565b5b6000613876868287016136da565b9350506020613887868287016136da565b9250506040613898868287016137cd565b9150509250925092565b600080600080608085870312156138bc576138bb61453f565b5b60006138ca878288016136da565b94505060206138db878288016136da565b93505060406138ec878288016137cd565b925050606085013567ffffffffffffffff81111561390d5761390c61453a565b5b6139198782880161375c565b91505092959194509250565b6000806040838503121561393c5761393b61453f565b5b600061394a858286016136da565b925050602061395b8582860161371d565b9150509250929050565b6000806040838503121561397c5761397b61453f565b5b600061398a858286016136da565b925050602061399b858286016137cd565b9150509250929050565b6000602082840312156139bb576139ba61453f565b5b600082013567ffffffffffffffff8111156139d9576139d861453a565b5b6139e5848285016136ef565b91505092915050565b600060208284031215613a0457613a0361453f565b5b6000613a128482850161371d565b91505092915050565b600060208284031215613a3157613a3061453f565b5b6000613a3f84828501613732565b91505092915050565b600060208284031215613a5e57613a5d61453f565b5b6000613a6c84828501613747565b91505092915050565b600060208284031215613a8b57613a8a61453f565b5b6000613a998482850161378a565b91505092915050565b600060208284031215613ab857613ab761453f565b5b600082013567ffffffffffffffff811115613ad657613ad561453a565b5b613ae28482850161379f565b91505092915050565b600060208284031215613b0157613b0061453f565b5b6000613b0f848285016137cd565b91505092915050565b613b218161429b565b82525050565b613b30816142ad565b82525050565b6000613b4182614138565b613b4b818561414e565b9350613b5b818560208601614330565b613b6481614544565b840191505092915050565b6000613b7a82614143565b613b84818561416a565b9350613b94818560208601614330565b613b9d81614544565b840191505092915050565b6000613bb382614143565b613bbd818561417b565b9350613bcd818560208601614330565b80840191505092915050565b60008154613be681614363565b613bf0818661417b565b94506001821660008114613c0b5760018114613c1c57613c4f565b60ff19831686528186019350613c4f565b613c2585614123565b60005b83811015613c4757815481890152600182019150602081019050613c28565b838801955050505b50505092915050565b6000613c6560068361416a565b9150613c7082614555565b602082019050919050565b6000613c8860268361416a565b9150613c938261457e565b604082019050919050565b6000613cab600a8361416a565b9150613cb6826145cd565b602082019050919050565b6000613cce60168361416a565b9150613cd9826145f6565b602082019050919050565b6000613cf160168361416a565b9150613cfc8261461f565b602082019050919050565b6000613d1460128361416a565b9150613d1f82614648565b602082019050919050565b6000613d3760158361416a565b9150613d4282614671565b602082019050919050565b6000613d5a60208361416a565b9150613d658261469a565b602082019050919050565b6000613d7d60168361416a565b9150613d88826146c3565b602082019050919050565b6000613da060008361415f565b9150613dab826146ec565b600082019050919050565b6000613dc3600e8361416a565b9150613dce826146ef565b602082019050919050565b6000613de6600c8361416a565b9150613df182614718565b602082019050919050565b613e0581614317565b82525050565b6000613e178286613bd9565b9150613e238285613ba8565b9150613e2f8284613ba8565b9150819050949350505050565b6000613e4782613d93565b9150819050919050565b6000602082019050613e666000830184613b18565b92915050565b6000608082019050613e816000830187613b18565b613e8e6020830186613b18565b613e9b6040830185613dfc565b8181036060830152613ead8184613b36565b905095945050505050565b6000602082019050613ecd6000830184613b27565b92915050565b60006020820190508181036000830152613eed8184613b6f565b905092915050565b60006020820190508181036000830152613f0e81613c58565b9050919050565b60006020820190508181036000830152613f2e81613c7b565b9050919050565b60006020820190508181036000830152613f4e81613c9e565b9050919050565b60006020820190508181036000830152613f6e81613cc1565b9050919050565b60006020820190508181036000830152613f8e81613ce4565b9050919050565b60006020820190508181036000830152613fae81613d07565b9050919050565b60006020820190508181036000830152613fce81613d2a565b9050919050565b60006020820190508181036000830152613fee81613d4d565b9050919050565b6000602082019050818103600083015261400e81613d70565b9050919050565b6000602082019050818103600083015261402e81613db6565b9050919050565b6000602082019050818103600083015261404e81613dd9565b9050919050565b600060208201905061406a6000830184613dfc565b92915050565b600061407a61408b565b90506140868282614395565b919050565b6000604051905090565b600067ffffffffffffffff8211156140b0576140af6144fc565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156140dc576140db6144fc565b5b6140e582614544565b9050602081019050919050565b600067ffffffffffffffff82111561410d5761410c6144fc565b5b61411682614544565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061419182614317565b915061419c83614317565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141d1576141d0614440565b5b828201905092915050565b60006141e782614317565b91506141f283614317565b9250826142025761420161446f565b5b828204905092915050565b600061421882614317565b915061422383614317565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561425c5761425b614440565b5b828202905092915050565b600061427282614317565b915061427d83614317565b9250828210156142905761428f614440565b5b828203905092915050565b60006142a6826142f7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006142f08261429b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561434e578082015181840152602081019050614333565b8381111561435d576000848401525b50505050565b6000600282049050600182168061437b57607f821691505b6020821081141561438f5761438e61449e565b5b50919050565b61439e82614544565b810181811067ffffffffffffffff821117156143bd576143bc6144fc565b5b80604052505050565b60006143d182614317565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561440457614403614440565b5b600182019050919050565b600061441a82614317565b915061442583614317565b9250826144355761443461446f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b61474a8161429b565b811461475557600080fd5b50565b614761816142ad565b811461476c57600080fd5b50565b614778816142b9565b811461478357600080fd5b50565b61478f816142e5565b811461479a57600080fd5b50565b6147a681614317565b81146147b157600080fd5b5056fea2646970667358221220eb2abbd08b937b0be5343a4320f35b9062a64a4adf9c270df7166049a4a0c85f64736f6c63430008070033

Deployed Bytecode Sourcemap

45896:3483:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28429:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48109:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31814:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33317:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32880:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27678:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34174:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46408:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48640:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34415:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46272:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47777:208;;;;;;;;;;;;;:::i;:::-;;48198:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46486:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31623:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45944:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28798:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2626:103;;;;;;;;;;;;;:::i;:::-;;46322:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1975:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48306:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31983:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46447:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46577:733;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33593:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48773:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34671:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46121:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49014:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46174:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47993:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48430:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46031:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47324:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48529:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2884:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46363:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28429:305;28531:4;28583:25;28568:40;;;:11;:40;;;;:105;;;;28640:33;28625:48;;;:11;:48;;;;28568:105;:158;;;;28690:36;28714:11;28690:23;:36::i;:::-;28568:158;28548:178;;28429:305;;;:::o;48109:81::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48176:6:::1;48167;;:15;;;;;;;;;;;;;;;;;;48109:81:::0;:::o;31814:100::-;31868:13;31901:5;31894:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31814:100;:::o;33317:204::-;33385:7;33410:16;33418:7;33410;:16::i;:::-;33405:64;;33435:34;;;;;;;;;;;;;;33405:64;33489:15;:24;33505:7;33489:24;;;;;;;;;;;;;;;;;;;;;33482:31;;33317:204;;;:::o;32880:371::-;32953:13;32969:24;32985:7;32969:15;:24::i;:::-;32953:40;;33014:5;33008:11;;:2;:11;;;33004:48;;;33028:24;;;;;;;;;;;;;;33004:48;33085:5;33069:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33095:37;33112:5;33119:12;:10;:12::i;:::-;33095:16;:37::i;:::-;33094:38;33069:63;33065:138;;;33156:35;;;;;;;;;;;;;;33065:138;33215:28;33224:2;33228:7;33237:5;33215:8;:28::i;:::-;32942:309;32880:371;;:::o;27678:303::-;27722:7;27947:15;:13;:15::i;:::-;27932:12;;27916:13;;:28;:46;27909:53;;27678:303;:::o;34174:170::-;34308:28;34318:4;34324:2;34328:7;34308:9;:28::i;:::-;34174:170;;;:::o;46408:32::-;;;;:::o;48640:121::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48740:13:::1;48722:15;:31;;;;48640:121:::0;:::o;34415:185::-;34553:39;34570:4;34576:2;34580:7;34553:39;;;;;;;;;;;;:16;:39::i;:::-;34415:185;;;:::o;46272:43::-;46314:1;46272:43;:::o;47777:208::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47826:15:::1;47844:21;47826:39;;47877:12;47895;:10;:12::i;:::-;:17;;47920:7;47895:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47876:56;;;47951:7;47943:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47815:170;;47777:208::o:0;48198:100::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48282:8:::1;48272:7;:18;;;;;;;;;;;;:::i;:::-;;48198:100:::0;:::o;46486:25::-;;;;;;;;;;;;;:::o;31623:124::-;31687:7;31714:20;31726:7;31714:11;:20::i;:::-;:25;;;31707:32;;31623:124;;;:::o;45944:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28798:206::-;28862:7;28903:1;28886:19;;:5;:19;;;28882:60;;;28914:28;;;;;;;;;;;;;;28882:60;28968:12;:19;28981:5;28968:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28960:36;;28953:43;;28798:206;;;:::o;2626:103::-;2206:12;:10;:12::i;:::-;2195:23;;:7;:5;:7::i;:::-;:23;;;2187:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2691:30:::1;2718:1;2691:18;:30::i;:::-;2626:103::o:0;46322:34::-;;;;:::o;1975:87::-;2021:7;2048:6;;;;;;;;;;;2041:13;;1975:87;:::o;48306:116::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48402:12:::1;48388:11;:26;;;;;;;;;;;;:::i;:::-;;48306:116:::0;:::o;31983:104::-;32039:13;32072:7;32065:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31983:104;:::o;46447:30::-;;;;:::o;46577:733::-;46636:15;46654:12;:10;:12::i;:::-;46636:30;;46686:6;;;;;;;;;;;46685:7;46677:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;46752:7;46736:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46722:10;;:37;;46714:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46811:1;46801:7;:11;46793:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;46859:7;46846:20;;:9;:20;;;46838:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;46916:7;46400:1;46902:21;;46894:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46992:13;:11;:13::i;:::-;46973:15;;:32;46970:291;;47048:7;46314:1;47029:26;;47021:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;46970:291;;;47136:7;46400:1;47122:21;;47114:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47213:9;47204:5;;47194:7;:15;;;;:::i;:::-;:28;47186:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46970:291;47275:27;47285:7;47294;47275:9;:27::i;:::-;46625:685;46577:733;:::o;33593:279::-;33696:12;:10;:12::i;:::-;33684:24;;:8;:24;;;33680:54;;;33717:17;;;;;;;;;;;;;;33680:54;33792:8;33747:18;:32;33766:12;:10;:12::i;:::-;33747:32;;;;;;;;;;;;;;;:42;33780:8;33747:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33845:8;33816:48;;33831:12;:10;:12::i;:::-;33816:48;;;33855:8;33816:48;;;;;;:::i;:::-;;;;;;;;33593:279;;:::o;48773:233::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48844:11:::1;48858:8;:15;48844:29;;48889:9;48884:115;48904:3;48900:1;:7;48884:115;;;48929:15;48947:8;48956:1;48947:11;;;;;;;;:::i;:::-;;;;;;;;48929:29;;48973:14;48979:7;48973:5;:14::i;:::-;48914:85;48909:3;;;;;:::i;:::-;;;;48884:115;;;;48833:173;48773:233:::0;:::o;34671:369::-;34838:28;34848:4;34854:2;34858:7;34838:9;:28::i;:::-;34881:15;:2;:13;;;:15::i;:::-;:76;;;;;34901:56;34932:4;34938:2;34942:7;34951:5;34901:30;:56::i;:::-;34900:57;34881:76;34877:156;;;34981:40;;;;;;;;;;;;;;34877:156;34671:369;;;;:::o;46121:46::-;;;;;;;;;;;;;;;;;;;:::o;49014:362::-;49080:13;49114:17;49122:8;49114:7;:17::i;:::-;49106:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49199:1;49181:7;49175:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;49257:7;49281:26;49298:8;49281:16;:26::i;:::-;49324:13;;;;;;;;;;;;;;;;;49224:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49175:193;49168:200;;49014:362;;;:::o;46174:89::-;46221:42;46174:89;:::o;47993:106::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48058:33:::1;48068:12;:10;:12::i;:::-;48082:8;48058:9;:33::i;:::-;47993:106:::0;:::o;48430:91::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48505:8:::1;48497:5;:16;;;;48430:91:::0;:::o;46031:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47324:445::-;47449:4;47534:27;46221:42;47534:65;;47655:8;47614:49;;47622:13;:21;;;47644:5;47622:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47614:49;;;47610:93;;;47687:4;47680:11;;;;;47610:93;47722:39;47745:5;47752:8;47722:22;:39::i;:::-;47715:46;;;47324:445;;;;;:::o;48529:103::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48615:9:::1;48602:10;:22;;;;48529:103:::0;:::o;2884:201::-;2206:12;:10;:12::i;:::-;2195:23;;:7;:5;:7::i;:::-;:23;;;2187:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2993:1:::1;2973:22;;:8;:22;;;;2965:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3049:28;3068:8;3049:18;:28::i;:::-;2884:201:::0;:::o;46363:38::-;46400:1;46363:38;:::o;23529:157::-;23614:4;23653:25;23638:40;;;:11;:40;;;;23631:47;;23529:157;;;:::o;716:98::-;769:7;796:10;789:17;;716:98;:::o;35295:187::-;35352:4;35395:7;35376:15;:13;:15::i;:::-;:26;;:53;;;;;35416:13;;35406:7;:23;35376:53;:98;;;;;35447:11;:20;35459:7;35447:20;;;;;;;;;;;:27;;;;;;;;;;;;35446:28;35376:98;35369:105;;35295:187;;;:::o;42906:196::-;43048:2;43021:15;:24;43037:7;43021:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43086:7;43082:2;43066:28;;43075:5;43066:28;;;;;;;;;;;;42906:196;;;:::o;27402:92::-;27458:7;27402:92;:::o;38408:2112::-;38523:35;38561:20;38573:7;38561:11;:20::i;:::-;38523:58;;38594:22;38636:13;:18;;;38620:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38671:50;38688:13;:18;;;38708:12;:10;:12::i;:::-;38671:16;:50::i;:::-;38620:101;:154;;;;38762:12;:10;:12::i;:::-;38738:36;;:20;38750:7;38738:11;:20::i;:::-;:36;;;38620:154;38594:181;;38793:17;38788:66;;38819:35;;;;;;;;;;;;;;38788:66;38891:4;38869:26;;:13;:18;;;:26;;;38865:67;;38904:28;;;;;;;;;;;;;;38865:67;38961:1;38947:16;;:2;:16;;;38943:52;;;38972:23;;;;;;;;;;;;;;38943:52;39008:43;39030:4;39036:2;39040:7;39049:1;39008:21;:43::i;:::-;39116:49;39133:1;39137:7;39146:13;:18;;;39116:8;:49::i;:::-;39491:1;39461:12;:18;39474:4;39461:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39535:1;39507:12;:16;39520:2;39507:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39581:2;39553:11;:20;39565:7;39553:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39643:15;39598:11;:20;39610:7;39598:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39911:19;39943:1;39933:7;:11;39911:33;;40004:1;39963:43;;:11;:24;39975:11;39963:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39959:445;;;40188:13;;40174:11;:27;40170:219;;;40258:13;:18;;;40226:11;:24;40238:11;40226:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40341:13;:28;;;40299:11;:24;40311:11;40299:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40170:219;39959:445;39436:979;40451:7;40447:2;40432:27;;40441:4;40432:27;;;;;;;;;;;;40470:42;40491:4;40497:2;40501:7;40510:1;40470:20;:42::i;:::-;38512:2008;;38408:2112;;;:::o;30453:1108::-;30514:21;;:::i;:::-;30548:12;30563:7;30548:22;;30631:4;30612:15;:13;:15::i;:::-;:23;;:47;;;;;30646:13;;30639:4;:20;30612:47;30608:886;;;30680:31;30714:11;:17;30726:4;30714:17;;;;;;;;;;;30680:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30755:9;:16;;;30750:729;;30826:1;30800:28;;:9;:14;;;:28;;;30796:101;;30864:9;30857:16;;;;;;30796:101;31199:261;31206:4;31199:261;;;31239:6;;;;;;;;31284:11;:17;31296:4;31284:17;;;;;;;;;;;31272:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31358:1;31332:28;;:9;:14;;;:28;;;31328:109;;31400:9;31393:16;;;;;;31328:109;31199:261;;;30750:729;30661:833;30608:886;31522:31;;;;;;;;;;;;;;30453:1108;;;;:::o;3245:191::-;3319:16;3338:6;;;;;;;;;;;3319:25;;3364:8;3355:6;;:17;;;;;;;;;;;;;;;;;;3419:8;3388:40;;3409:8;3388:40;;;;;;;;;;;;3308:128;3245:191;:::o;35490:104::-;35559:27;35569:2;35573:8;35559:27;;;;;;;;;;;;:9;:27::i;:::-;35490:104;;:::o;40749:2039::-;40809:35;40847:20;40859:7;40847:11;:20::i;:::-;40809:58;;40880:65;40902:13;:18;;;40930:1;40934:7;40943:1;40880:21;:65::i;:::-;41010:49;41027:1;41031:7;41040:13;:18;;;41010:8;:49::i;:::-;41399:1;41355:12;:32;41368:13;:18;;;41355:32;;;;;;;;;;;;;;;:40;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41464:1;41415:12;:32;41428:13;:18;;;41415:32;;;;;;;;;;;;;;;:45;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41592:13;:18;;;41564:11;:20;41576:7;41564:20;;;;;;;;;;;:25;;;:46;;;;;;;;;;;;;;;;;;41670:15;41625:11;:20;41637:7;41625:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;41731:4;41701:11;:20;41713:7;41701:20;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;41983:19;42015:1;42005:7;:11;41983:33;;42076:1;42035:43;;:11;:24;42047:11;42035:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42031:445;;;42260:13;;42246:11;:27;42242:219;;;42330:13;:18;;;42298:11;:24;42310:11;42298:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42413:13;:28;;;42371:11;:24;42383:11;42371:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42242:219;42031:445;41330:1157;42545:7;42541:1;42504:49;;42513:13;:18;;;42504:49;;;;;;;;;;;;42564:64;42585:13;:18;;;42613:1;42617:7;42626:1;42564:20;:64::i;:::-;42755:12;;:14;;;;;;;;;;;;;40798:1990;40749:2039;:::o;13306:326::-;13366:4;13623:1;13601:7;:19;;;:23;13594:30;;13306:326;;;:::o;43594:667::-;43757:4;43794:2;43778:36;;;43815:12;:10;:12::i;:::-;43829:4;43835:7;43844:5;43778:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43774:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44029:1;44012:6;:13;:18;44008:235;;;44058:40;;;;;;;;;;;;;;44008:235;44201:6;44195:13;44186:6;44182:2;44178:15;44171:38;43774:480;43907:45;;;43897:55;;;:6;:55;;;;43890:62;;;43594:667;;;;;;:::o;20926:723::-;20982:13;21212:1;21203:5;:10;21199:53;;;21230:10;;;;;;;;;;;;;;;;;;;;;21199:53;21262:12;21277:5;21262:20;;21293:14;21318:78;21333:1;21325:4;:9;21318:78;;21351:8;;;;;:::i;:::-;;;;21382:2;21374:10;;;;;:::i;:::-;;;21318:78;;;21406:19;21438:6;21428:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21406:39;;21456:154;21472:1;21463:5;:10;21456:154;;21500:1;21490:11;;;;;:::i;:::-;;;21567:2;21559:5;:10;;;;:::i;:::-;21546:2;:24;;;;:::i;:::-;21533:39;;21516:6;21523;21516:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21596:2;21587:11;;;;;:::i;:::-;;;21456:154;;;21634:6;21620:21;;;;;20926:723;;;;:::o;33943:164::-;34040:4;34064:18;:25;34083:5;34064:25;;;;;;;;;;;;;;;:35;34090:8;34064:35;;;;;;;;;;;;;;;;;;;;;;;;;34057:42;;33943:164;;;;:::o;44909:159::-;;;;;:::o;45727:158::-;;;;;:::o;35957:163::-;36080:32;36086:2;36090:8;36100:5;36107:4;36080:5;:32::i;:::-;35957:163;;;:::o;36379:1775::-;36518:20;36541:13;;36518:36;;36583:1;36569:16;;:2;:16;;;36565:48;;;36594:19;;;;;;;;;;;;;;36565:48;36640:1;36628:8;:13;36624:44;;;36650:18;;;;;;;;;;;;;;36624:44;36681:61;36711:1;36715:2;36719:12;36733:8;36681:21;:61::i;:::-;37054:8;37019:12;:16;37032:2;37019:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37118:8;37078:12;:16;37091:2;37078:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37177:2;37144:11;:25;37156:12;37144:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37244:15;37194:11;:25;37206:12;37194:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37277:20;37300:12;37277:35;;37327:11;37356:8;37341:12;:23;37327:37;;37385:4;:23;;;;;37393:15;:2;:13;;;:15::i;:::-;37385:23;37381:641;;;37429:314;37485:12;37481:2;37460:38;;37477:1;37460:38;;;;;;;;;;;;37526:69;37565:1;37569:2;37573:14;;;;;;37589:5;37526:30;:69::i;:::-;37521:174;;37631:40;;;;;;;;;;;;;;37521:174;37738:3;37722:12;:19;;37429:314;;37824:12;37807:13;;:29;37803:43;;37838:8;;;37803:43;37381:641;;;37887:120;37943:14;;;;;;37939:2;37918:40;;37935:1;37918:40;;;;;;;;;;;;38002:3;37986:12;:19;;37887:120;;37381:641;38052:12;38036:13;:28;;;;36994:1082;;38086:60;38115:1;38119:2;38123:12;38137:8;38086:20;:60::i;:::-;36507:1647;36379:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2910:201::-;2996:5;3027:6;3021:13;3012:22;;3043:62;3099:5;3043:62;:::i;:::-;2910:201;;;;:::o;3131:340::-;3187:5;3236:3;3229:4;3221:6;3217:17;3213:27;3203:122;;3244:79;;:::i;:::-;3203:122;3361:6;3348:20;3386:79;3461:3;3453:6;3446:4;3438:6;3434:17;3386:79;:::i;:::-;3377:88;;3193:278;3131:340;;;;:::o;3477:139::-;3523:5;3561:6;3548:20;3539:29;;3577:33;3604:5;3577:33;:::i;:::-;3477:139;;;;:::o;3622:329::-;3681:6;3730:2;3718:9;3709:7;3705:23;3701:32;3698:119;;;3736:79;;:::i;:::-;3698:119;3856:1;3881:53;3926:7;3917:6;3906:9;3902:22;3881:53;:::i;:::-;3871:63;;3827:117;3622:329;;;;:::o;3957:474::-;4025:6;4033;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;4335:2;4361:53;4406:7;4397:6;4386:9;4382:22;4361:53;:::i;:::-;4351:63;;4306:118;3957:474;;;;;:::o;4437:619::-;4514:6;4522;4530;4579:2;4567:9;4558:7;4554:23;4550:32;4547:119;;;4585:79;;:::i;:::-;4547:119;4705:1;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4676:117;4832:2;4858:53;4903:7;4894:6;4883:9;4879:22;4858:53;:::i;:::-;4848:63;;4803:118;4960:2;4986:53;5031:7;5022:6;5011:9;5007:22;4986:53;:::i;:::-;4976:63;;4931:118;4437:619;;;;;:::o;5062:943::-;5157:6;5165;5173;5181;5230:3;5218:9;5209:7;5205:23;5201:33;5198:120;;;5237:79;;:::i;:::-;5198:120;5357:1;5382:53;5427:7;5418:6;5407:9;5403:22;5382:53;:::i;:::-;5372:63;;5328:117;5484:2;5510:53;5555:7;5546:6;5535:9;5531:22;5510:53;:::i;:::-;5500:63;;5455:118;5612:2;5638:53;5683:7;5674:6;5663:9;5659:22;5638:53;:::i;:::-;5628:63;;5583:118;5768:2;5757:9;5753:18;5740:32;5799:18;5791:6;5788:30;5785:117;;;5821:79;;:::i;:::-;5785:117;5926:62;5980:7;5971:6;5960:9;5956:22;5926:62;:::i;:::-;5916:72;;5711:287;5062:943;;;;;;;:::o;6011:468::-;6076:6;6084;6133:2;6121:9;6112:7;6108:23;6104:32;6101:119;;;6139:79;;:::i;:::-;6101:119;6259:1;6284:53;6329:7;6320:6;6309:9;6305:22;6284:53;:::i;:::-;6274:63;;6230:117;6386:2;6412:50;6454:7;6445:6;6434:9;6430:22;6412:50;:::i;:::-;6402:60;;6357:115;6011:468;;;;;:::o;6485:474::-;6553:6;6561;6610:2;6598:9;6589:7;6585:23;6581:32;6578:119;;;6616:79;;:::i;:::-;6578:119;6736:1;6761:53;6806:7;6797:6;6786:9;6782:22;6761:53;:::i;:::-;6751:63;;6707:117;6863:2;6889:53;6934:7;6925:6;6914:9;6910:22;6889:53;:::i;:::-;6879:63;;6834:118;6485:474;;;;;:::o;6965:539::-;7049:6;7098:2;7086:9;7077:7;7073:23;7069:32;7066:119;;;7104:79;;:::i;:::-;7066:119;7252:1;7241:9;7237:17;7224:31;7282:18;7274:6;7271:30;7268:117;;;7304:79;;:::i;:::-;7268:117;7409:78;7479:7;7470:6;7459:9;7455:22;7409:78;:::i;:::-;7399:88;;7195:302;6965:539;;;;:::o;7510:323::-;7566:6;7615:2;7603:9;7594:7;7590:23;7586:32;7583:119;;;7621:79;;:::i;:::-;7583:119;7741:1;7766:50;7808:7;7799:6;7788:9;7784:22;7766:50;:::i;:::-;7756:60;;7712:114;7510:323;;;;:::o;7839:327::-;7897:6;7946:2;7934:9;7925:7;7921:23;7917:32;7914:119;;;7952:79;;:::i;:::-;7914:119;8072:1;8097:52;8141:7;8132:6;8121:9;8117:22;8097:52;:::i;:::-;8087:62;;8043:116;7839:327;;;;:::o;8172:349::-;8241:6;8290:2;8278:9;8269:7;8265:23;8261:32;8258:119;;;8296:79;;:::i;:::-;8258:119;8416:1;8441:63;8496:7;8487:6;8476:9;8472:22;8441:63;:::i;:::-;8431:73;;8387:127;8172:349;;;;:::o;8527:409::-;8626:6;8675:2;8663:9;8654:7;8650:23;8646:32;8643:119;;;8681:79;;:::i;:::-;8643:119;8801:1;8826:93;8911:7;8902:6;8891:9;8887:22;8826:93;:::i;:::-;8816:103;;8772:157;8527:409;;;;:::o;8942:509::-;9011:6;9060:2;9048:9;9039:7;9035:23;9031:32;9028:119;;;9066:79;;:::i;:::-;9028:119;9214:1;9203:9;9199:17;9186:31;9244:18;9236:6;9233:30;9230:117;;;9266:79;;:::i;:::-;9230:117;9371:63;9426:7;9417:6;9406:9;9402:22;9371:63;:::i;:::-;9361:73;;9157:287;8942:509;;;;:::o;9457:329::-;9516:6;9565:2;9553:9;9544:7;9540:23;9536:32;9533:119;;;9571:79;;:::i;:::-;9533:119;9691:1;9716:53;9761:7;9752:6;9741:9;9737:22;9716:53;:::i;:::-;9706:63;;9662:117;9457:329;;;;:::o;9792:118::-;9879:24;9897:5;9879:24;:::i;:::-;9874:3;9867:37;9792:118;;:::o;9916:109::-;9997:21;10012:5;9997:21;:::i;:::-;9992:3;9985:34;9916:109;;:::o;10031:360::-;10117:3;10145:38;10177:5;10145:38;:::i;:::-;10199:70;10262:6;10257:3;10199:70;:::i;:::-;10192:77;;10278:52;10323:6;10318:3;10311:4;10304:5;10300:16;10278:52;:::i;:::-;10355:29;10377:6;10355:29;:::i;:::-;10350:3;10346:39;10339:46;;10121:270;10031:360;;;;:::o;10397:364::-;10485:3;10513:39;10546:5;10513:39;:::i;:::-;10568:71;10632:6;10627:3;10568:71;:::i;:::-;10561:78;;10648:52;10693:6;10688:3;10681:4;10674:5;10670:16;10648:52;:::i;:::-;10725:29;10747:6;10725:29;:::i;:::-;10720:3;10716:39;10709:46;;10489:272;10397:364;;;;:::o;10767:377::-;10873:3;10901:39;10934:5;10901:39;:::i;:::-;10956:89;11038:6;11033:3;10956:89;:::i;:::-;10949:96;;11054:52;11099:6;11094:3;11087:4;11080:5;11076:16;11054:52;:::i;:::-;11131:6;11126:3;11122:16;11115:23;;10877:267;10767:377;;;;:::o;11174:845::-;11277:3;11314:5;11308:12;11343:36;11369:9;11343:36;:::i;:::-;11395:89;11477:6;11472:3;11395:89;:::i;:::-;11388:96;;11515:1;11504:9;11500:17;11531:1;11526:137;;;;11677:1;11672:341;;;;11493:520;;11526:137;11610:4;11606:9;11595;11591:25;11586:3;11579:38;11646:6;11641:3;11637:16;11630:23;;11526:137;;11672:341;11739:38;11771:5;11739:38;:::i;:::-;11799:1;11813:154;11827:6;11824:1;11821:13;11813:154;;;11901:7;11895:14;11891:1;11886:3;11882:11;11875:35;11951:1;11942:7;11938:15;11927:26;;11849:4;11846:1;11842:12;11837:17;;11813:154;;;11996:6;11991:3;11987:16;11980:23;;11679:334;;11493:520;;11281:738;;11174:845;;;;:::o;12025:365::-;12167:3;12188:66;12252:1;12247:3;12188:66;:::i;:::-;12181:73;;12263:93;12352:3;12263:93;:::i;:::-;12381:2;12376:3;12372:12;12365:19;;12025:365;;;:::o;12396:366::-;12538:3;12559:67;12623:2;12618:3;12559:67;:::i;:::-;12552:74;;12635:93;12724:3;12635:93;:::i;:::-;12753:2;12748:3;12744:12;12737:19;;12396:366;;;:::o;12768:::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:::-;13282:3;13303:67;13367:2;13362:3;13303:67;:::i;:::-;13296:74;;13379:93;13468:3;13379:93;:::i;:::-;13497:2;13492:3;13488:12;13481:19;;13140:366;;;:::o;13512:::-;13654:3;13675:67;13739:2;13734:3;13675:67;:::i;:::-;13668:74;;13751:93;13840:3;13751:93;:::i;:::-;13869:2;13864:3;13860:12;13853:19;;13512:366;;;:::o;13884:::-;14026:3;14047:67;14111:2;14106:3;14047:67;:::i;:::-;14040:74;;14123:93;14212:3;14123:93;:::i;:::-;14241:2;14236:3;14232:12;14225:19;;13884:366;;;:::o;14256:::-;14398:3;14419:67;14483:2;14478:3;14419:67;:::i;:::-;14412:74;;14495:93;14584:3;14495:93;:::i;:::-;14613:2;14608:3;14604:12;14597:19;;14256:366;;;:::o;14628:::-;14770:3;14791:67;14855:2;14850:3;14791:67;:::i;:::-;14784:74;;14867:93;14956:3;14867:93;:::i;:::-;14985:2;14980:3;14976:12;14969:19;;14628:366;;;:::o;15000:::-;15142:3;15163:67;15227:2;15222:3;15163:67;:::i;:::-;15156:74;;15239:93;15328:3;15239:93;:::i;:::-;15357:2;15352:3;15348:12;15341:19;;15000:366;;;:::o;15372:398::-;15531:3;15552:83;15633:1;15628:3;15552:83;:::i;:::-;15545:90;;15644:93;15733:3;15644:93;:::i;:::-;15762:1;15757:3;15753:11;15746:18;;15372:398;;;:::o;15776:366::-;15918:3;15939:67;16003:2;15998:3;15939:67;:::i;:::-;15932:74;;16015:93;16104:3;16015:93;:::i;:::-;16133:2;16128:3;16124:12;16117:19;;15776:366;;;:::o;16148:::-;16290:3;16311:67;16375:2;16370:3;16311:67;:::i;:::-;16304:74;;16387:93;16476:3;16387:93;:::i;:::-;16505:2;16500:3;16496:12;16489:19;;16148:366;;;:::o;16520:118::-;16607:24;16625:5;16607:24;:::i;:::-;16602:3;16595:37;16520:118;;:::o;16644:589::-;16869:3;16891:92;16979:3;16970:6;16891:92;:::i;:::-;16884:99;;17000:95;17091:3;17082:6;17000:95;:::i;:::-;16993:102;;17112:95;17203:3;17194:6;17112:95;:::i;:::-;17105:102;;17224:3;17217:10;;16644:589;;;;;;:::o;17239:379::-;17423:3;17445:147;17588:3;17445:147;:::i;:::-;17438:154;;17609:3;17602:10;;17239:379;;;:::o;17624:222::-;17717:4;17755:2;17744:9;17740:18;17732:26;;17768:71;17836:1;17825:9;17821:17;17812:6;17768:71;:::i;:::-;17624:222;;;;:::o;17852:640::-;18047:4;18085:3;18074:9;18070:19;18062:27;;18099:71;18167:1;18156:9;18152:17;18143:6;18099:71;:::i;:::-;18180:72;18248:2;18237:9;18233:18;18224:6;18180:72;:::i;:::-;18262;18330:2;18319:9;18315:18;18306:6;18262:72;:::i;:::-;18381:9;18375:4;18371:20;18366:2;18355:9;18351:18;18344:48;18409:76;18480:4;18471:6;18409:76;:::i;:::-;18401:84;;17852:640;;;;;;;:::o;18498:210::-;18585:4;18623:2;18612:9;18608:18;18600:26;;18636:65;18698:1;18687:9;18683:17;18674:6;18636:65;:::i;:::-;18498:210;;;;:::o;18714:313::-;18827:4;18865:2;18854:9;18850:18;18842:26;;18914:9;18908:4;18904:20;18900:1;18889:9;18885:17;18878:47;18942:78;19015:4;19006:6;18942:78;:::i;:::-;18934:86;;18714:313;;;;:::o;19033:419::-;19199:4;19237:2;19226:9;19222:18;19214:26;;19286:9;19280:4;19276:20;19272:1;19261:9;19257:17;19250:47;19314:131;19440:4;19314:131;:::i;:::-;19306:139;;19033:419;;;:::o;19458:::-;19624:4;19662:2;19651:9;19647:18;19639:26;;19711:9;19705:4;19701:20;19697:1;19686:9;19682:17;19675:47;19739:131;19865:4;19739:131;:::i;:::-;19731:139;;19458:419;;;:::o;19883:::-;20049:4;20087:2;20076:9;20072:18;20064:26;;20136:9;20130:4;20126:20;20122:1;20111:9;20107:17;20100:47;20164:131;20290:4;20164:131;:::i;:::-;20156:139;;19883:419;;;:::o;20308:::-;20474:4;20512:2;20501:9;20497:18;20489:26;;20561:9;20555:4;20551:20;20547:1;20536:9;20532:17;20525:47;20589:131;20715:4;20589:131;:::i;:::-;20581:139;;20308:419;;;:::o;20733:::-;20899:4;20937:2;20926:9;20922:18;20914:26;;20986:9;20980:4;20976:20;20972:1;20961:9;20957:17;20950:47;21014:131;21140:4;21014:131;:::i;:::-;21006:139;;20733:419;;;:::o;21158:::-;21324:4;21362:2;21351:9;21347:18;21339:26;;21411:9;21405:4;21401:20;21397:1;21386:9;21382:17;21375:47;21439:131;21565:4;21439:131;:::i;:::-;21431:139;;21158:419;;;:::o;21583:::-;21749:4;21787:2;21776:9;21772:18;21764:26;;21836:9;21830:4;21826:20;21822:1;21811:9;21807:17;21800:47;21864:131;21990:4;21864:131;:::i;:::-;21856:139;;21583:419;;;:::o;22008:::-;22174:4;22212:2;22201:9;22197:18;22189:26;;22261:9;22255:4;22251:20;22247:1;22236:9;22232:17;22225:47;22289:131;22415:4;22289:131;:::i;:::-;22281:139;;22008:419;;;:::o;22433:::-;22599:4;22637:2;22626:9;22622:18;22614:26;;22686:9;22680:4;22676:20;22672:1;22661:9;22657:17;22650:47;22714:131;22840:4;22714:131;:::i;:::-;22706:139;;22433:419;;;:::o;22858:::-;23024:4;23062:2;23051:9;23047:18;23039:26;;23111:9;23105:4;23101:20;23097:1;23086:9;23082:17;23075:47;23139:131;23265:4;23139:131;:::i;:::-;23131:139;;22858:419;;;:::o;23283:::-;23449:4;23487:2;23476:9;23472:18;23464:26;;23536:9;23530:4;23526:20;23522:1;23511:9;23507:17;23500:47;23564:131;23690:4;23564:131;:::i;:::-;23556:139;;23283:419;;;:::o;23708:222::-;23801:4;23839:2;23828:9;23824:18;23816:26;;23852:71;23920:1;23909:9;23905:17;23896:6;23852:71;:::i;:::-;23708:222;;;;:::o;23936:129::-;23970:6;23997:20;;:::i;:::-;23987:30;;24026:33;24054:4;24046:6;24026:33;:::i;:::-;23936:129;;;:::o;24071:75::-;24104:6;24137:2;24131:9;24121:19;;24071:75;:::o;24152:311::-;24229:4;24319:18;24311:6;24308:30;24305:56;;;24341:18;;:::i;:::-;24305:56;24391:4;24383:6;24379:17;24371:25;;24451:4;24445;24441:15;24433:23;;24152:311;;;:::o;24469:307::-;24530:4;24620:18;24612:6;24609:30;24606:56;;;24642:18;;:::i;:::-;24606:56;24680:29;24702:6;24680:29;:::i;:::-;24672:37;;24764:4;24758;24754:15;24746:23;;24469:307;;;:::o;24782:308::-;24844:4;24934:18;24926:6;24923:30;24920:56;;;24956:18;;:::i;:::-;24920:56;24994:29;25016:6;24994:29;:::i;:::-;24986:37;;25078:4;25072;25068:15;25060:23;;24782:308;;;:::o;25096:141::-;25145:4;25168:3;25160:11;;25191:3;25188:1;25181:14;25225:4;25222:1;25212:18;25204:26;;25096:141;;;:::o;25243:98::-;25294:6;25328:5;25322:12;25312:22;;25243:98;;;:::o;25347:99::-;25399:6;25433:5;25427:12;25417:22;;25347:99;;;:::o;25452:168::-;25535:11;25569:6;25564:3;25557:19;25609:4;25604:3;25600:14;25585:29;;25452:168;;;;:::o;25626:147::-;25727:11;25764:3;25749:18;;25626:147;;;;:::o;25779:169::-;25863:11;25897:6;25892:3;25885:19;25937:4;25932:3;25928:14;25913:29;;25779:169;;;;:::o;25954:148::-;26056:11;26093:3;26078:18;;25954:148;;;;:::o;26108:305::-;26148:3;26167:20;26185:1;26167:20;:::i;:::-;26162:25;;26201:20;26219:1;26201:20;:::i;:::-;26196:25;;26355:1;26287:66;26283:74;26280:1;26277:81;26274:107;;;26361:18;;:::i;:::-;26274:107;26405:1;26402;26398:9;26391:16;;26108:305;;;;:::o;26419:185::-;26459:1;26476:20;26494:1;26476:20;:::i;:::-;26471:25;;26510:20;26528:1;26510:20;:::i;:::-;26505:25;;26549:1;26539:35;;26554:18;;:::i;:::-;26539:35;26596:1;26593;26589:9;26584:14;;26419:185;;;;:::o;26610:348::-;26650:7;26673:20;26691:1;26673:20;:::i;:::-;26668:25;;26707:20;26725:1;26707:20;:::i;:::-;26702:25;;26895:1;26827:66;26823:74;26820:1;26817:81;26812:1;26805:9;26798:17;26794:105;26791:131;;;26902:18;;:::i;:::-;26791:131;26950:1;26947;26943:9;26932:20;;26610:348;;;;:::o;26964:191::-;27004:4;27024:20;27042:1;27024:20;:::i;:::-;27019:25;;27058:20;27076:1;27058:20;:::i;:::-;27053:25;;27097:1;27094;27091:8;27088:34;;;27102:18;;:::i;:::-;27088:34;27147:1;27144;27140:9;27132:17;;26964:191;;;;:::o;27161:96::-;27198:7;27227:24;27245:5;27227:24;:::i;:::-;27216:35;;27161:96;;;:::o;27263:90::-;27297:7;27340:5;27333:13;27326:21;27315:32;;27263:90;;;:::o;27359:149::-;27395:7;27435:66;27428:5;27424:78;27413:89;;27359:149;;;:::o;27514:125::-;27580:7;27609:24;27627:5;27609:24;:::i;:::-;27598:35;;27514:125;;;:::o;27645:126::-;27682:7;27722:42;27715:5;27711:54;27700:65;;27645:126;;;:::o;27777:77::-;27814:7;27843:5;27832:16;;27777:77;;;:::o;27860:154::-;27944:6;27939:3;27934;27921:30;28006:1;27997:6;27992:3;27988:16;27981:27;27860:154;;;:::o;28020:307::-;28088:1;28098:113;28112:6;28109:1;28106:13;28098:113;;;28197:1;28192:3;28188:11;28182:18;28178:1;28173:3;28169:11;28162:39;28134:2;28131:1;28127:10;28122:15;;28098:113;;;28229:6;28226:1;28223:13;28220:101;;;28309:1;28300:6;28295:3;28291:16;28284:27;28220:101;28069:258;28020:307;;;:::o;28333:320::-;28377:6;28414:1;28408:4;28404:12;28394:22;;28461:1;28455:4;28451:12;28482:18;28472:81;;28538:4;28530:6;28526:17;28516:27;;28472:81;28600:2;28592:6;28589:14;28569:18;28566:38;28563:84;;;28619:18;;:::i;:::-;28563:84;28384:269;28333:320;;;:::o;28659:281::-;28742:27;28764:4;28742:27;:::i;:::-;28734:6;28730:40;28872:6;28860:10;28857:22;28836:18;28824:10;28821:34;28818:62;28815:88;;;28883:18;;:::i;:::-;28815:88;28923:10;28919:2;28912:22;28702:238;28659:281;;:::o;28946:233::-;28985:3;29008:24;29026:5;29008:24;:::i;:::-;28999:33;;29054:66;29047:5;29044:77;29041:103;;;29124:18;;:::i;:::-;29041:103;29171:1;29164:5;29160:13;29153:20;;28946:233;;;:::o;29185:176::-;29217:1;29234:20;29252:1;29234:20;:::i;:::-;29229:25;;29268:20;29286:1;29268:20;:::i;:::-;29263:25;;29307:1;29297:35;;29312:18;;:::i;:::-;29297:35;29353:1;29350;29346:9;29341:14;;29185:176;;;;:::o;29367:180::-;29415:77;29412:1;29405:88;29512:4;29509:1;29502:15;29536:4;29533:1;29526:15;29553:180;29601:77;29598:1;29591:88;29698:4;29695:1;29688:15;29722:4;29719:1;29712:15;29739:180;29787:77;29784:1;29777:88;29884:4;29881:1;29874:15;29908:4;29905:1;29898:15;29925:180;29973:77;29970:1;29963:88;30070:4;30067:1;30060:15;30094:4;30091:1;30084:15;30111:180;30159:77;30156:1;30149:88;30256:4;30253:1;30246:15;30280:4;30277:1;30270:15;30297:117;30406:1;30403;30396:12;30420:117;30529:1;30526;30519:12;30543:117;30652:1;30649;30642:12;30666:117;30775:1;30772;30765:12;30789:117;30898:1;30895;30888:12;30912:102;30953:6;31004:2;31000:7;30995:2;30988:5;30984:14;30980:28;30970:38;;30912:102;;;:::o;31020:156::-;31160:8;31156:1;31148:6;31144:14;31137:32;31020:156;:::o;31182:225::-;31322:34;31318:1;31310:6;31306:14;31299:58;31391:8;31386:2;31378:6;31374:15;31367:33;31182:225;:::o;31413:160::-;31553:12;31549:1;31541:6;31537:14;31530:36;31413:160;:::o;31579:172::-;31719:24;31715:1;31707:6;31703:14;31696:48;31579:172;:::o;31757:::-;31897:24;31893:1;31885:6;31881:14;31874:48;31757:172;:::o;31935:168::-;32075:20;32071:1;32063:6;32059:14;32052:44;31935:168;:::o;32109:171::-;32249:23;32245:1;32237:6;32233:14;32226:47;32109:171;:::o;32286:182::-;32426:34;32422:1;32414:6;32410:14;32403:58;32286:182;:::o;32474:172::-;32614:24;32610:1;32602:6;32598:14;32591:48;32474:172;:::o;32652:114::-;;:::o;32772:164::-;32912:16;32908:1;32900:6;32896:14;32889:40;32772:164;:::o;32942:162::-;33082:14;33078:1;33070:6;33066:14;33059:38;32942:162;:::o;33110:122::-;33183:24;33201:5;33183:24;:::i;:::-;33176:5;33173:35;33163:63;;33222:1;33219;33212:12;33163:63;33110:122;:::o;33238:116::-;33308:21;33323:5;33308:21;:::i;:::-;33301:5;33298:32;33288:60;;33344:1;33341;33334:12;33288:60;33238:116;:::o;33360:120::-;33432:23;33449:5;33432:23;:::i;:::-;33425:5;33422:34;33412:62;;33470:1;33467;33460:12;33412:62;33360:120;:::o;33486:180::-;33588:53;33635:5;33588:53;:::i;:::-;33581:5;33578:64;33568:92;;33656:1;33653;33646:12;33568:92;33486:180;:::o;33672:122::-;33745:24;33763:5;33745:24;:::i;:::-;33738:5;33735:35;33725:63;;33784:1;33781;33774:12;33725:63;33672:122;:::o

Swarm Source

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