ETH Price: $3,132.05 (+1.70%)
Gas: 3 Gwei

Token

Project 0xD38 (0xD38)
 

Overview

Max Total Supply

10,000 0xD38

Holders

3,200

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 0xD38
0x22b0cd01f0c1f9a43557ef5f1d9f5ee1d93646dc
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

After a global catastrophe, all animals went extinct, the remnants of humanity are trying to revive the animal world. But does everyone have such a goal in mind?

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Project0xD38

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
╭━╮╱╱╱╱╱╱╱╱╭╮╱╭━━━╮╱╭━━┳━━━┳━━━╮
┃╋┣┳┳━┳┳━┳━┫╰╮┃╭━╮┣┳╋╮╮┃╭━╮┃╭━╮┃
┃╭┫╭┫╋┣┫┻┫━┫╭┫┃┃┃┃┣┃╋┻╯┣╯╭╯┃╰━╯┃
╰╯╰╯╰┳╯┣━┻━┻━╯┃┃┃┃┣┻┻━━╋╮╰╮┃╭━╮┃
╱╱╱╱╱╰━╯╱╱╱╱╱╱┃╰━╯┃╱╱╱╱┃╰━╯┃╰━╯┃
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

library Counters {
    struct Counter {

        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter:decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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


pragma solidity ^0.8.0;

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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);
            }
        }
    }
}

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

pragma solidity ^0.8.0;

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

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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


pragma solidity ^0.8.0;


/**
 * @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/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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


pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


pragma solidity ^0.8.0;

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


pragma solidity ^0.8.4;

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

contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    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);
    }

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


pragma solidity ^0.8.4;


contract Project0xD38 is ERC721A, Ownable {
    using Strings for uint256;

    string private baseURI;

    string public hiddenMetadataUri;

    uint256 public price = 0.016 ether;

    uint256 public maxPerTx = 10;

    uint256 public maxFreePerWallet = 2;

    uint256 public totalFree = 8000;

    uint256 public maxSupply = 10000;

    uint public nextId = 0;

    bool public mintEnabled = false;

    bool public revealed = true;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("Project 0xD38", "0xD38") {
        setHiddenMetadataUri("https://api.0xd38.xyz/");
        setBaseURI("https://api.0xd38.xyz/");
    }

    function mint(uint256 count) external payable {
      uint256 cost = price;
      bool isFree =
      ((totalSupply() + count < totalFree + 1) &&
      (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet));

      if (isFree) {
      cost = 0;
     }

     else {
      require(msg.value >= count * price, "Please send the exact amount.");
      require(totalSupply() + count <= maxSupply, "No more 0xD38");
      require(mintEnabled, "Minting is not live yet");
      require(count <= maxPerTx, "Max per TX reached.");
     }

      if (isFree) {
         _mintedFreeAmount[msg.sender] += count;
      }

     _safeMint(msg.sender, count);
     nextId += count;
    }

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

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

        if (revealed == false) {
         return string(abi.encodePacked(hiddenMetadataUri));
        }
    
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

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

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
     hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFree = amount;
    }

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

    function setRevealed() external onlyOwner {
     revealed = !revealed;
    }

    function flipSale() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function getNextId() public view returns(uint){
     return nextId;
    }

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

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Transfer failed.");
    }

    function WhitelistMint(address to, uint256 quantity)public onlyOwner{
    require(totalSupply() + quantity <= maxSupply, "reached max supply");
    _safeMint(to, quantity);
  }
}

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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"WhitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526638d7ea4c680000600b55600a600c556002600d55611f40600e55612710600f5560006010556000601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055503480156200006d57600080fd5b506040518060400160405280600d81526020017f50726f6a656374203078443338000000000000000000000000000000000000008152506040518060400160405280600581526020017f30784433380000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f29291906200042d565b5080600390805190602001906200010b9291906200042d565b506200011c620001d660201b60201c565b60008190555050506200014462000138620001df60201b60201c565b620001e760201b60201c565b6200018a6040518060400160405280601681526020017f68747470733a2f2f6170692e30786433382e78797a2f00000000000000000000815250620002ad60201b60201c565b620001d06040518060400160405280601681526020017f68747470733a2f2f6170692e30786433382e78797a2f000000000000000000008152506200035860201b60201c565b620005c5565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002bd620001df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e36200040360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200033c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003339062000504565b60405180910390fd5b80600a9080519060200190620003549291906200042d565b5050565b62000368620001df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200038e6200040360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003de9062000504565b60405180910390fd5b8060099080519060200190620003ff9291906200042d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200043b9062000537565b90600052602060002090601f0160209004810192826200045f5760008555620004ab565b82601f106200047a57805160ff1916838001178555620004ab565b82800160010185558215620004ab579182015b82811115620004aa5782518255916020019190600101906200048d565b5b509050620004ba9190620004be565b5090565b5b80821115620004d9576000816000905550600101620004bf565b5090565b6000620004ec60208362000526565b9150620004f9826200059c565b602082019050919050565b600060208201905081810360008301526200051f81620004dd565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200055057607f821691505b602082108114156200056757620005666200056d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613bed80620005d56000396000f3fe60806040526004361061020f5760003560e01c80637ba5e62111610118578063a7027357116100a0578063d12397301161006f578063d123973014610730578063d5abeb011461075b578063e985e9c514610786578063f2fde38b146107c3578063f968adbe146107ec5761020f565b8063a702735714610674578063b88d4fde1461069f578063bc968326146106c8578063c87b56dd146106f35761020f565b806395d89b41116100e757806395d89b41146105ae578063a035b1fe146105d9578063a0712d6814610604578063a22cb46514610620578063a45ba8e7146106495761020f565b80637ba5e6211461051a5780638da5cb5b1461053157806391b7f5ed1461055c57806392910eec146105855761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461043557806361b8ce8c1461045e5780636352211e1461048957806370a08231146104c6578063715018a6146105035761020f565b80633ccfd60b146103a157806342842e0e146103b85780634fdd43cb146103e1578063518302271461040a5761020f565b806318160ddd116101e257806318160ddd146102e257806323b872dd1461030d5780633175668c14610336578063333e44e61461035f5780633bd649681461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612ef6565b610817565b6040516102489190613358565b60405180910390f35b34801561025d57600080fd5b506102666108f9565b6040516102739190613373565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612f99565b61098b565b6040516102b091906132f1565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612eb6565b610a07565b005b3480156102ee57600080fd5b506102f7610b12565b60405161030491906134b5565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612da0565b610b29565b005b34801561034257600080fd5b5061035d60048036038101906103589190612eb6565b610b39565b005b34801561036b57600080fd5b50610374610c1a565b60405161038191906134b5565b60405180910390f35b34801561039657600080fd5b5061039f610c20565b005b3480156103ad57600080fd5b506103b6610cc8565b005b3480156103c457600080fd5b506103df60048036038101906103da9190612da0565b610df3565b005b3480156103ed57600080fd5b5061040860048036038101906104039190612f50565b610e13565b005b34801561041657600080fd5b5061041f610ea9565b60405161042c9190613358565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190612f50565b610ebc565b005b34801561046a57600080fd5b50610473610f52565b60405161048091906134b5565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190612f99565b610f58565b6040516104bd91906132f1565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190612d33565b610f6e565b6040516104fa91906134b5565b60405180910390f35b34801561050f57600080fd5b5061051861103e565b005b34801561052657600080fd5b5061052f6110c6565b005b34801561053d57600080fd5b5061054661116e565b60405161055391906132f1565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190612f99565b611198565b005b34801561059157600080fd5b506105ac60048036038101906105a79190612f99565b61121e565b005b3480156105ba57600080fd5b506105c36112a4565b6040516105d09190613373565b60405180910390f35b3480156105e557600080fd5b506105ee611336565b6040516105fb91906134b5565b60405180910390f35b61061e60048036038101906106199190612f99565b61133c565b005b34801561062c57600080fd5b5061064760048036038101906106429190612e76565b611592565b005b34801561065557600080fd5b5061065e61170a565b60405161066b9190613373565b60405180910390f35b34801561068057600080fd5b50610689611798565b60405161069691906134b5565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190612df3565b61179e565b005b3480156106d457600080fd5b506106dd61181a565b6040516106ea91906134b5565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190612f99565b611824565b6040516107279190613373565b60405180910390f35b34801561073c57600080fd5b506107456118e5565b6040516107529190613358565b60405180910390f35b34801561076757600080fd5b506107706118f8565b60405161077d91906134b5565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a89190612d60565b6118fe565b6040516107ba9190613358565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190612d33565b611992565b005b3480156107f857600080fd5b50610801611a8a565b60405161080e91906134b5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f257506108f182611a90565b5b9050919050565b60606002805461090890613785565b80601f016020809104026020016040519081016040528092919081815260200182805461093490613785565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b600061099682611afa565b6109cc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1282610f58565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a7a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a99611b48565b73ffffffffffffffffffffffffffffffffffffffff1614158015610acb5750610ac981610ac4611b48565b6118fe565b155b15610b02576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b0d838383611b50565b505050565b6000610b1c611c02565b6001546000540303905090565b610b34838383611c0b565b505050565b610b41611b48565b73ffffffffffffffffffffffffffffffffffffffff16610b5f61116e565b73ffffffffffffffffffffffffffffffffffffffff1614610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac906133f5565b60405180910390fd5b600f5481610bc1610b12565b610bcb91906135ba565b1115610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c03906133d5565b60405180910390fd5b610c1682826120c1565b5050565b600e5481565b610c28611b48565b73ffffffffffffffffffffffffffffffffffffffff16610c4661116e565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c93906133f5565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b610cd0611b48565b73ffffffffffffffffffffffffffffffffffffffff16610cee61116e565b73ffffffffffffffffffffffffffffffffffffffff1614610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b906133f5565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d6a906132dc565b60006040518083038185875af1925050503d8060008114610da7576040519150601f19603f3d011682016040523d82523d6000602084013e610dac565b606091505b5050905080610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613455565b60405180910390fd5b50565b610e0e8383836040518060200160405280600081525061179e565b505050565b610e1b611b48565b73ffffffffffffffffffffffffffffffffffffffff16610e3961116e565b73ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e86906133f5565b60405180910390fd5b80600a9080519060200190610ea5929190612b04565b5050565b601160019054906101000a900460ff1681565b610ec4611b48565b73ffffffffffffffffffffffffffffffffffffffff16610ee261116e565b73ffffffffffffffffffffffffffffffffffffffff1614610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f906133f5565b60405180910390fd5b8060099080519060200190610f4e929190612b04565b5050565b60105481565b6000610f63826120df565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611046611b48565b73ffffffffffffffffffffffffffffffffffffffff1661106461116e565b73ffffffffffffffffffffffffffffffffffffffff16146110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b1906133f5565b60405180910390fd5b6110c4600061236e565b565b6110ce611b48565b73ffffffffffffffffffffffffffffffffffffffff166110ec61116e565b73ffffffffffffffffffffffffffffffffffffffff1614611142576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611139906133f5565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111a0611b48565b73ffffffffffffffffffffffffffffffffffffffff166111be61116e565b73ffffffffffffffffffffffffffffffffffffffff1614611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b906133f5565b60405180910390fd5b80600b8190555050565b611226611b48565b73ffffffffffffffffffffffffffffffffffffffff1661124461116e565b73ffffffffffffffffffffffffffffffffffffffff161461129a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611291906133f5565b60405180910390fd5b80600e8190555050565b6060600380546112b390613785565b80601f01602080910402602001604051908101604052809291908181526020018280546112df90613785565b801561132c5780601f106113015761010080835404028352916020019161132c565b820191906000526020600020905b81548152906001019060200180831161130f57829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e5461135491906135ba565b8361135d610b12565b61136791906135ba565b1080156113c05750600d5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113bd91906135ba565b11155b905080156113d1576000915061150d565b600b54836113df9190613641565b341015611421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141890613435565b60405180910390fd5b600f548361142d610b12565b61143791906135ba565b1115611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90613475565b60405180910390fd5b601160009054906101000a900460ff166114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613395565b60405180910390fd5b600c5483111561150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390613495565b60405180910390fd5b5b801561156a5782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461156291906135ba565b925050819055505b61157433846120c1565b826010600082825461158691906135ba565b92505081905550505050565b61159a611b48565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ff576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061160c611b48565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116b9611b48565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116fe9190613358565b60405180910390a35050565b600a805461171790613785565b80601f016020809104026020016040519081016040528092919081815260200182805461174390613785565b80156117905780601f1061176557610100808354040283529160200191611790565b820191906000526020600020905b81548152906001019060200180831161177357829003601f168201915b505050505081565b600d5481565b6117a9848484611c0b565b6117c88373ffffffffffffffffffffffffffffffffffffffff16612434565b80156117dd57506117db84848484612457565b155b15611814576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000601054905090565b606061182f82611afa565b61186e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186590613415565b60405180910390fd5b60001515601160019054906101000a900460ff16151514156118b257600a60405160200161189c9190613296565b60405160208183030381529060405290506118e0565b60096118bd836125b7565b6040516020016118ce9291906132ad565b60405160208183030381529060405290505b919050565b601160009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61199a611b48565b73ffffffffffffffffffffffffffffffffffffffff166119b861116e565b73ffffffffffffffffffffffffffffffffffffffff1614611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a05906133f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a75906133b5565b60405180910390fd5b611a878161236e565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b05611c02565b11158015611b14575060005482105b8015611b41575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611c16826120df565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c81576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611ca2611b48565b73ffffffffffffffffffffffffffffffffffffffff161480611cd15750611cd085611ccb611b48565b6118fe565b5b80611d165750611cdf611b48565b73ffffffffffffffffffffffffffffffffffffffff16611cfe8461098b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d4f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611db6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dc38585856001612718565b611dcf60008487611b50565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561204f57600054821461204e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ba858585600161271e565b5050505050565b6120db828260405180602001604052806000815250612724565b5050565b6120e7612b8a565b6000829050806120f5611c02565b11158015612104575060005481105b15612337576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161233557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612219578092505050612369565b5b60011561233457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461232f578092505050612369565b61221a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261247d611b48565b8786866040518563ffffffff1660e01b815260040161249f949392919061330c565b602060405180830381600087803b1580156124b957600080fd5b505af19250505080156124ea57506040513d601f19601f820116820180604052508101906124e79190612f23565b60015b612564573d806000811461251a576040519150601f19603f3d011682016040523d82523d6000602084013e61251f565b606091505b5060008151141561255c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125ff576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612713565b600082905060005b6000821461263157808061261a906137e8565b915050600a8261262a9190613610565b9150612607565b60008167ffffffffffffffff81111561264d5761264c61391e565b5b6040519080825280601f01601f19166020018201604052801561267f5781602001600182028036833780820191505090505b5090505b6000851461270c57600182612698919061369b565b9150600a856126a79190613831565b60306126b391906135ba565b60f81b8183815181106126c9576126c86138ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127059190613610565b9450612683565b8093505050505b919050565b50505050565b50505050565b6127318383836001612736565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127a3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156127de576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127eb6000868387612718565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129b557506129b48773ffffffffffffffffffffffffffffffffffffffff16612434565b5b15612a7b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a2a6000888480600101955088612457565b612a60576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129bb578260005414612a7657600080fd5b612ae7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a7c575b816000819055505050612afd600086838761271e565b5050505050565b828054612b1090613785565b90600052602060002090601f016020900481019282612b325760008555612b79565b82601f10612b4b57805160ff1916838001178555612b79565b82800160010185558215612b79579182015b82811115612b78578251825591602001919060010190612b5d565b5b509050612b869190612bcd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612be6576000816000905550600101612bce565b5090565b6000612bfd612bf8846134f5565b6134d0565b905082815260208101848484011115612c1957612c18613952565b5b612c24848285613743565b509392505050565b6000612c3f612c3a84613526565b6134d0565b905082815260208101848484011115612c5b57612c5a613952565b5b612c66848285613743565b509392505050565b600081359050612c7d81613b5b565b92915050565b600081359050612c9281613b72565b92915050565b600081359050612ca781613b89565b92915050565b600081519050612cbc81613b89565b92915050565b600082601f830112612cd757612cd661394d565b5b8135612ce7848260208601612bea565b91505092915050565b600082601f830112612d0557612d0461394d565b5b8135612d15848260208601612c2c565b91505092915050565b600081359050612d2d81613ba0565b92915050565b600060208284031215612d4957612d4861395c565b5b6000612d5784828501612c6e565b91505092915050565b60008060408385031215612d7757612d7661395c565b5b6000612d8585828601612c6e565b9250506020612d9685828601612c6e565b9150509250929050565b600080600060608486031215612db957612db861395c565b5b6000612dc786828701612c6e565b9350506020612dd886828701612c6e565b9250506040612de986828701612d1e565b9150509250925092565b60008060008060808587031215612e0d57612e0c61395c565b5b6000612e1b87828801612c6e565b9450506020612e2c87828801612c6e565b9350506040612e3d87828801612d1e565b925050606085013567ffffffffffffffff811115612e5e57612e5d613957565b5b612e6a87828801612cc2565b91505092959194509250565b60008060408385031215612e8d57612e8c61395c565b5b6000612e9b85828601612c6e565b9250506020612eac85828601612c83565b9150509250929050565b60008060408385031215612ecd57612ecc61395c565b5b6000612edb85828601612c6e565b9250506020612eec85828601612d1e565b9150509250929050565b600060208284031215612f0c57612f0b61395c565b5b6000612f1a84828501612c98565b91505092915050565b600060208284031215612f3957612f3861395c565b5b6000612f4784828501612cad565b91505092915050565b600060208284031215612f6657612f6561395c565b5b600082013567ffffffffffffffff811115612f8457612f83613957565b5b612f9084828501612cf0565b91505092915050565b600060208284031215612faf57612fae61395c565b5b6000612fbd84828501612d1e565b91505092915050565b612fcf816136cf565b82525050565b612fde816136e1565b82525050565b6000612fef8261356c565b612ff98185613582565b9350613009818560208601613752565b61301281613961565b840191505092915050565b600061302882613577565b613032818561359e565b9350613042818560208601613752565b61304b81613961565b840191505092915050565b600061306182613577565b61306b81856135af565b935061307b818560208601613752565b80840191505092915050565b6000815461309481613785565b61309e81866135af565b945060018216600081146130b957600181146130ca576130fd565b60ff198316865281860193506130fd565b6130d385613557565b60005b838110156130f5578154818901526001820191506020810190506130d6565b838801955050505b50505092915050565b600061311360178361359e565b915061311e82613972565b602082019050919050565b600061313660268361359e565b91506131418261399b565b604082019050919050565b600061315960128361359e565b9150613164826139ea565b602082019050919050565b600061317c6005836135af565b915061318782613a13565b600582019050919050565b600061319f60208361359e565b91506131aa82613a3c565b602082019050919050565b60006131c2602f8361359e565b91506131cd82613a65565b604082019050919050565b60006131e5601d8361359e565b91506131f082613ab4565b602082019050919050565b6000613208600083613593565b915061321382613add565b600082019050919050565b600061322b60108361359e565b915061323682613ae0565b602082019050919050565b600061324e600d8361359e565b915061325982613b09565b602082019050919050565b600061327160138361359e565b915061327c82613b32565b602082019050919050565b61329081613739565b82525050565b60006132a28284613087565b915081905092915050565b60006132b98285613087565b91506132c58284613056565b91506132d08261316f565b91508190509392505050565b60006132e7826131fb565b9150819050919050565b60006020820190506133066000830184612fc6565b92915050565b60006080820190506133216000830187612fc6565b61332e6020830186612fc6565b61333b6040830185613287565b818103606083015261334d8184612fe4565b905095945050505050565b600060208201905061336d6000830184612fd5565b92915050565b6000602082019050818103600083015261338d818461301d565b905092915050565b600060208201905081810360008301526133ae81613106565b9050919050565b600060208201905081810360008301526133ce81613129565b9050919050565b600060208201905081810360008301526133ee8161314c565b9050919050565b6000602082019050818103600083015261340e81613192565b9050919050565b6000602082019050818103600083015261342e816131b5565b9050919050565b6000602082019050818103600083015261344e816131d8565b9050919050565b6000602082019050818103600083015261346e8161321e565b9050919050565b6000602082019050818103600083015261348e81613241565b9050919050565b600060208201905081810360008301526134ae81613264565b9050919050565b60006020820190506134ca6000830184613287565b92915050565b60006134da6134eb565b90506134e682826137b7565b919050565b6000604051905090565b600067ffffffffffffffff8211156135105761350f61391e565b5b61351982613961565b9050602081019050919050565b600067ffffffffffffffff8211156135415761354061391e565b5b61354a82613961565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135c582613739565b91506135d083613739565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561360557613604613862565b5b828201905092915050565b600061361b82613739565b915061362683613739565b92508261363657613635613891565b5b828204905092915050565b600061364c82613739565b915061365783613739565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136905761368f613862565b5b828202905092915050565b60006136a682613739565b91506136b183613739565b9250828210156136c4576136c3613862565b5b828203905092915050565b60006136da82613719565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613770578082015181840152602081019050613755565b8381111561377f576000848401525b50505050565b6000600282049050600182168061379d57607f821691505b602082108114156137b1576137b06138c0565b5b50919050565b6137c082613961565b810181811067ffffffffffffffff821117156137df576137de61391e565b5b80604052505050565b60006137f382613739565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561382657613825613862565b5b600182019050919050565b600061383c82613739565b915061384783613739565b92508261385757613856613891565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e6f206d6f726520307844333800000000000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b613b64816136cf565b8114613b6f57600080fd5b50565b613b7b816136e1565b8114613b8657600080fd5b50565b613b92816136ed565b8114613b9d57600080fd5b50565b613ba981613739565b8114613bb457600080fd5b5056fea2646970667358221220e43a10baf74b5ed226982a2f334c09ff6840e944ab203f876321991abdbb3b5d64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80637ba5e62111610118578063a7027357116100a0578063d12397301161006f578063d123973014610730578063d5abeb011461075b578063e985e9c514610786578063f2fde38b146107c3578063f968adbe146107ec5761020f565b8063a702735714610674578063b88d4fde1461069f578063bc968326146106c8578063c87b56dd146106f35761020f565b806395d89b41116100e757806395d89b41146105ae578063a035b1fe146105d9578063a0712d6814610604578063a22cb46514610620578063a45ba8e7146106495761020f565b80637ba5e6211461051a5780638da5cb5b1461053157806391b7f5ed1461055c57806392910eec146105855761020f565b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461043557806361b8ce8c1461045e5780636352211e1461048957806370a08231146104c6578063715018a6146105035761020f565b80633ccfd60b146103a157806342842e0e146103b85780634fdd43cb146103e1578063518302271461040a5761020f565b806318160ddd116101e257806318160ddd146102e257806323b872dd1461030d5780633175668c14610336578063333e44e61461035f5780633bd649681461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612ef6565b610817565b6040516102489190613358565b60405180910390f35b34801561025d57600080fd5b506102666108f9565b6040516102739190613373565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612f99565b61098b565b6040516102b091906132f1565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612eb6565b610a07565b005b3480156102ee57600080fd5b506102f7610b12565b60405161030491906134b5565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612da0565b610b29565b005b34801561034257600080fd5b5061035d60048036038101906103589190612eb6565b610b39565b005b34801561036b57600080fd5b50610374610c1a565b60405161038191906134b5565b60405180910390f35b34801561039657600080fd5b5061039f610c20565b005b3480156103ad57600080fd5b506103b6610cc8565b005b3480156103c457600080fd5b506103df60048036038101906103da9190612da0565b610df3565b005b3480156103ed57600080fd5b5061040860048036038101906104039190612f50565b610e13565b005b34801561041657600080fd5b5061041f610ea9565b60405161042c9190613358565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190612f50565b610ebc565b005b34801561046a57600080fd5b50610473610f52565b60405161048091906134b5565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190612f99565b610f58565b6040516104bd91906132f1565b60405180910390f35b3480156104d257600080fd5b506104ed60048036038101906104e89190612d33565b610f6e565b6040516104fa91906134b5565b60405180910390f35b34801561050f57600080fd5b5061051861103e565b005b34801561052657600080fd5b5061052f6110c6565b005b34801561053d57600080fd5b5061054661116e565b60405161055391906132f1565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190612f99565b611198565b005b34801561059157600080fd5b506105ac60048036038101906105a79190612f99565b61121e565b005b3480156105ba57600080fd5b506105c36112a4565b6040516105d09190613373565b60405180910390f35b3480156105e557600080fd5b506105ee611336565b6040516105fb91906134b5565b60405180910390f35b61061e60048036038101906106199190612f99565b61133c565b005b34801561062c57600080fd5b5061064760048036038101906106429190612e76565b611592565b005b34801561065557600080fd5b5061065e61170a565b60405161066b9190613373565b60405180910390f35b34801561068057600080fd5b50610689611798565b60405161069691906134b5565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190612df3565b61179e565b005b3480156106d457600080fd5b506106dd61181a565b6040516106ea91906134b5565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190612f99565b611824565b6040516107279190613373565b60405180910390f35b34801561073c57600080fd5b506107456118e5565b6040516107529190613358565b60405180910390f35b34801561076757600080fd5b506107706118f8565b60405161077d91906134b5565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a89190612d60565b6118fe565b6040516107ba9190613358565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190612d33565b611992565b005b3480156107f857600080fd5b50610801611a8a565b60405161080e91906134b5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f257506108f182611a90565b5b9050919050565b60606002805461090890613785565b80601f016020809104026020016040519081016040528092919081815260200182805461093490613785565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b600061099682611afa565b6109cc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1282610f58565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a7a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a99611b48565b73ffffffffffffffffffffffffffffffffffffffff1614158015610acb5750610ac981610ac4611b48565b6118fe565b155b15610b02576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b0d838383611b50565b505050565b6000610b1c611c02565b6001546000540303905090565b610b34838383611c0b565b505050565b610b41611b48565b73ffffffffffffffffffffffffffffffffffffffff16610b5f61116e565b73ffffffffffffffffffffffffffffffffffffffff1614610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac906133f5565b60405180910390fd5b600f5481610bc1610b12565b610bcb91906135ba565b1115610c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c03906133d5565b60405180910390fd5b610c1682826120c1565b5050565b600e5481565b610c28611b48565b73ffffffffffffffffffffffffffffffffffffffff16610c4661116e565b73ffffffffffffffffffffffffffffffffffffffff1614610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c93906133f5565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b610cd0611b48565b73ffffffffffffffffffffffffffffffffffffffff16610cee61116e565b73ffffffffffffffffffffffffffffffffffffffff1614610d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3b906133f5565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610d6a906132dc565b60006040518083038185875af1925050503d8060008114610da7576040519150601f19603f3d011682016040523d82523d6000602084013e610dac565b606091505b5050905080610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790613455565b60405180910390fd5b50565b610e0e8383836040518060200160405280600081525061179e565b505050565b610e1b611b48565b73ffffffffffffffffffffffffffffffffffffffff16610e3961116e565b73ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e86906133f5565b60405180910390fd5b80600a9080519060200190610ea5929190612b04565b5050565b601160019054906101000a900460ff1681565b610ec4611b48565b73ffffffffffffffffffffffffffffffffffffffff16610ee261116e565b73ffffffffffffffffffffffffffffffffffffffff1614610f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2f906133f5565b60405180910390fd5b8060099080519060200190610f4e929190612b04565b5050565b60105481565b6000610f63826120df565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611046611b48565b73ffffffffffffffffffffffffffffffffffffffff1661106461116e565b73ffffffffffffffffffffffffffffffffffffffff16146110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b1906133f5565b60405180910390fd5b6110c4600061236e565b565b6110ce611b48565b73ffffffffffffffffffffffffffffffffffffffff166110ec61116e565b73ffffffffffffffffffffffffffffffffffffffff1614611142576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611139906133f5565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111a0611b48565b73ffffffffffffffffffffffffffffffffffffffff166111be61116e565b73ffffffffffffffffffffffffffffffffffffffff1614611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b906133f5565b60405180910390fd5b80600b8190555050565b611226611b48565b73ffffffffffffffffffffffffffffffffffffffff1661124461116e565b73ffffffffffffffffffffffffffffffffffffffff161461129a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611291906133f5565b60405180910390fd5b80600e8190555050565b6060600380546112b390613785565b80601f01602080910402602001604051908101604052809291908181526020018280546112df90613785565b801561132c5780601f106113015761010080835404028352916020019161132c565b820191906000526020600020905b81548152906001019060200180831161130f57829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e5461135491906135ba565b8361135d610b12565b61136791906135ba565b1080156113c05750600d5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113bd91906135ba565b11155b905080156113d1576000915061150d565b600b54836113df9190613641565b341015611421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141890613435565b60405180910390fd5b600f548361142d610b12565b61143791906135ba565b1115611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90613475565b60405180910390fd5b601160009054906101000a900460ff166114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613395565b60405180910390fd5b600c5483111561150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390613495565b60405180910390fd5b5b801561156a5782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461156291906135ba565b925050819055505b61157433846120c1565b826010600082825461158691906135ba565b92505081905550505050565b61159a611b48565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ff576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061160c611b48565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116b9611b48565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116fe9190613358565b60405180910390a35050565b600a805461171790613785565b80601f016020809104026020016040519081016040528092919081815260200182805461174390613785565b80156117905780601f1061176557610100808354040283529160200191611790565b820191906000526020600020905b81548152906001019060200180831161177357829003601f168201915b505050505081565b600d5481565b6117a9848484611c0b565b6117c88373ffffffffffffffffffffffffffffffffffffffff16612434565b80156117dd57506117db84848484612457565b155b15611814576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000601054905090565b606061182f82611afa565b61186e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186590613415565b60405180910390fd5b60001515601160019054906101000a900460ff16151514156118b257600a60405160200161189c9190613296565b60405160208183030381529060405290506118e0565b60096118bd836125b7565b6040516020016118ce9291906132ad565b60405160208183030381529060405290505b919050565b601160009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61199a611b48565b73ffffffffffffffffffffffffffffffffffffffff166119b861116e565b73ffffffffffffffffffffffffffffffffffffffff1614611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a05906133f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a75906133b5565b60405180910390fd5b611a878161236e565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b05611c02565b11158015611b14575060005482105b8015611b41575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611c16826120df565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c81576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611ca2611b48565b73ffffffffffffffffffffffffffffffffffffffff161480611cd15750611cd085611ccb611b48565b6118fe565b5b80611d165750611cdf611b48565b73ffffffffffffffffffffffffffffffffffffffff16611cfe8461098b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d4f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611db6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dc38585856001612718565b611dcf60008487611b50565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561204f57600054821461204e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ba858585600161271e565b5050505050565b6120db828260405180602001604052806000815250612724565b5050565b6120e7612b8a565b6000829050806120f5611c02565b11158015612104575060005481105b15612337576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161233557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612219578092505050612369565b5b60011561233457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461232f578092505050612369565b61221a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261247d611b48565b8786866040518563ffffffff1660e01b815260040161249f949392919061330c565b602060405180830381600087803b1580156124b957600080fd5b505af19250505080156124ea57506040513d601f19601f820116820180604052508101906124e79190612f23565b60015b612564573d806000811461251a576040519150601f19603f3d011682016040523d82523d6000602084013e61251f565b606091505b5060008151141561255c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125ff576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612713565b600082905060005b6000821461263157808061261a906137e8565b915050600a8261262a9190613610565b9150612607565b60008167ffffffffffffffff81111561264d5761264c61391e565b5b6040519080825280601f01601f19166020018201604052801561267f5781602001600182028036833780820191505090505b5090505b6000851461270c57600182612698919061369b565b9150600a856126a79190613831565b60306126b391906135ba565b60f81b8183815181106126c9576126c86138ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127059190613610565b9450612683565b8093505050505b919050565b50505050565b50505050565b6127318383836001612736565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127a3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156127de576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127eb6000868387612718565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129b557506129b48773ffffffffffffffffffffffffffffffffffffffff16612434565b5b15612a7b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a2a6000888480600101955088612457565b612a60576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129bb578260005414612a7657600080fd5b612ae7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a7c575b816000819055505050612afd600086838761271e565b5050505050565b828054612b1090613785565b90600052602060002090601f016020900481019282612b325760008555612b79565b82601f10612b4b57805160ff1916838001178555612b79565b82800160010185558215612b79579182015b82811115612b78578251825591602001919060010190612b5d565b5b509050612b869190612bcd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612be6576000816000905550600101612bce565b5090565b6000612bfd612bf8846134f5565b6134d0565b905082815260208101848484011115612c1957612c18613952565b5b612c24848285613743565b509392505050565b6000612c3f612c3a84613526565b6134d0565b905082815260208101848484011115612c5b57612c5a613952565b5b612c66848285613743565b509392505050565b600081359050612c7d81613b5b565b92915050565b600081359050612c9281613b72565b92915050565b600081359050612ca781613b89565b92915050565b600081519050612cbc81613b89565b92915050565b600082601f830112612cd757612cd661394d565b5b8135612ce7848260208601612bea565b91505092915050565b600082601f830112612d0557612d0461394d565b5b8135612d15848260208601612c2c565b91505092915050565b600081359050612d2d81613ba0565b92915050565b600060208284031215612d4957612d4861395c565b5b6000612d5784828501612c6e565b91505092915050565b60008060408385031215612d7757612d7661395c565b5b6000612d8585828601612c6e565b9250506020612d9685828601612c6e565b9150509250929050565b600080600060608486031215612db957612db861395c565b5b6000612dc786828701612c6e565b9350506020612dd886828701612c6e565b9250506040612de986828701612d1e565b9150509250925092565b60008060008060808587031215612e0d57612e0c61395c565b5b6000612e1b87828801612c6e565b9450506020612e2c87828801612c6e565b9350506040612e3d87828801612d1e565b925050606085013567ffffffffffffffff811115612e5e57612e5d613957565b5b612e6a87828801612cc2565b91505092959194509250565b60008060408385031215612e8d57612e8c61395c565b5b6000612e9b85828601612c6e565b9250506020612eac85828601612c83565b9150509250929050565b60008060408385031215612ecd57612ecc61395c565b5b6000612edb85828601612c6e565b9250506020612eec85828601612d1e565b9150509250929050565b600060208284031215612f0c57612f0b61395c565b5b6000612f1a84828501612c98565b91505092915050565b600060208284031215612f3957612f3861395c565b5b6000612f4784828501612cad565b91505092915050565b600060208284031215612f6657612f6561395c565b5b600082013567ffffffffffffffff811115612f8457612f83613957565b5b612f9084828501612cf0565b91505092915050565b600060208284031215612faf57612fae61395c565b5b6000612fbd84828501612d1e565b91505092915050565b612fcf816136cf565b82525050565b612fde816136e1565b82525050565b6000612fef8261356c565b612ff98185613582565b9350613009818560208601613752565b61301281613961565b840191505092915050565b600061302882613577565b613032818561359e565b9350613042818560208601613752565b61304b81613961565b840191505092915050565b600061306182613577565b61306b81856135af565b935061307b818560208601613752565b80840191505092915050565b6000815461309481613785565b61309e81866135af565b945060018216600081146130b957600181146130ca576130fd565b60ff198316865281860193506130fd565b6130d385613557565b60005b838110156130f5578154818901526001820191506020810190506130d6565b838801955050505b50505092915050565b600061311360178361359e565b915061311e82613972565b602082019050919050565b600061313660268361359e565b91506131418261399b565b604082019050919050565b600061315960128361359e565b9150613164826139ea565b602082019050919050565b600061317c6005836135af565b915061318782613a13565b600582019050919050565b600061319f60208361359e565b91506131aa82613a3c565b602082019050919050565b60006131c2602f8361359e565b91506131cd82613a65565b604082019050919050565b60006131e5601d8361359e565b91506131f082613ab4565b602082019050919050565b6000613208600083613593565b915061321382613add565b600082019050919050565b600061322b60108361359e565b915061323682613ae0565b602082019050919050565b600061324e600d8361359e565b915061325982613b09565b602082019050919050565b600061327160138361359e565b915061327c82613b32565b602082019050919050565b61329081613739565b82525050565b60006132a28284613087565b915081905092915050565b60006132b98285613087565b91506132c58284613056565b91506132d08261316f565b91508190509392505050565b60006132e7826131fb565b9150819050919050565b60006020820190506133066000830184612fc6565b92915050565b60006080820190506133216000830187612fc6565b61332e6020830186612fc6565b61333b6040830185613287565b818103606083015261334d8184612fe4565b905095945050505050565b600060208201905061336d6000830184612fd5565b92915050565b6000602082019050818103600083015261338d818461301d565b905092915050565b600060208201905081810360008301526133ae81613106565b9050919050565b600060208201905081810360008301526133ce81613129565b9050919050565b600060208201905081810360008301526133ee8161314c565b9050919050565b6000602082019050818103600083015261340e81613192565b9050919050565b6000602082019050818103600083015261342e816131b5565b9050919050565b6000602082019050818103600083015261344e816131d8565b9050919050565b6000602082019050818103600083015261346e8161321e565b9050919050565b6000602082019050818103600083015261348e81613241565b9050919050565b600060208201905081810360008301526134ae81613264565b9050919050565b60006020820190506134ca6000830184613287565b92915050565b60006134da6134eb565b90506134e682826137b7565b919050565b6000604051905090565b600067ffffffffffffffff8211156135105761350f61391e565b5b61351982613961565b9050602081019050919050565b600067ffffffffffffffff8211156135415761354061391e565b5b61354a82613961565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135c582613739565b91506135d083613739565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561360557613604613862565b5b828201905092915050565b600061361b82613739565b915061362683613739565b92508261363657613635613891565b5b828204905092915050565b600061364c82613739565b915061365783613739565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136905761368f613862565b5b828202905092915050565b60006136a682613739565b91506136b183613739565b9250828210156136c4576136c3613862565b5b828203905092915050565b60006136da82613719565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613770578082015181840152602081019050613755565b8381111561377f576000848401525b50505050565b6000600282049050600182168061379d57607f821691505b602082108114156137b1576137b06138c0565b5b50919050565b6137c082613961565b810181811067ffffffffffffffff821117156137df576137de61391e565b5b80604052505050565b60006137f382613739565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561382657613825613862565b5b600182019050919050565b600061383c82613739565b915061384783613739565b92508261385757613856613891565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4e6f206d6f726520307844333800000000000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b613b64816136cf565b8114613b6f57600080fd5b50565b613b7b816136e1565b8114613b8657600080fd5b50565b613b92816136ed565b8114613b9d57600080fd5b50565b613ba981613739565b8114613bb457600080fd5b5056fea2646970667358221220e43a10baf74b5ed226982a2f334c09ff6840e944ab203f876321991abdbb3b5d64736f6c63430008070033

Deployed Bytecode Sourcemap

60262:3191:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44023:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47136:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48639:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48202:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43272:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49504:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63271:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60540:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62695:78;;;;;;;;;;;;;:::i;:::-;;63057:206;;;;;;;;;;;;;:::i;:::-;;49745:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62349:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60692:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62253:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60621:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46944:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44392:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5138:103;;;;;;;;;;;;;:::i;:::-;;62781:84;;;;;;;;;;;;;:::i;:::-;;4487:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62595:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62492:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47305:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60416:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60958:698;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48915:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60376:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60496:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50001:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62873:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61780:465;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60652:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60580:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49273:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5396:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60459:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44023:305;44125:4;44177:25;44162:40;;;:11;:40;;;;:105;;;;44234:33;44219:48;;;:11;:48;;;;44162:105;:158;;;;44284:36;44308:11;44284:23;:36::i;:::-;44162:158;44142:178;;44023:305;;;:::o;47136:100::-;47190:13;47223:5;47216:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47136:100;:::o;48639:204::-;48707:7;48732:16;48740:7;48732;:16::i;:::-;48727:64;;48757:34;;;;;;;;;;;;;;48727:64;48811:15;:24;48827:7;48811:24;;;;;;;;;;;;;;;;;;;;;48804:31;;48639:204;;;:::o;48202:371::-;48275:13;48291:24;48307:7;48291:15;:24::i;:::-;48275:40;;48336:5;48330:11;;:2;:11;;;48326:48;;;48350:24;;;;;;;;;;;;;;48326:48;48407:5;48391:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;48417:37;48434:5;48441:12;:10;:12::i;:::-;48417:16;:37::i;:::-;48416:38;48391:63;48387:138;;;48478:35;;;;;;;;;;;;;;48387:138;48537:28;48546:2;48550:7;48559:5;48537:8;:28::i;:::-;48264:309;48202:371;;:::o;43272:303::-;43316:7;43541:15;:13;:15::i;:::-;43526:12;;43510:13;;:28;:46;43503:53;;43272:303;:::o;49504:170::-;49638:28;49648:4;49654:2;49658:7;49638:9;:28::i;:::-;49504:170;;;:::o;63271:179::-;4718:12;:10;:12::i;:::-;4707:23;;:7;:5;:7::i;:::-;:23;;;4699:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63382:9:::1;;63370:8;63354:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;63346:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63421:23;63431:2;63435:8;63421:9;:23::i;:::-;63271:179:::0;;:::o;60540:31::-;;;;:::o;62695:78::-;4718:12;:10;:12::i;:::-;4707:23;;:7;:5;:7::i;:::-;:23;;;4699:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62757:8:::1;;;;;;;;;;;62756:9;62745:8;;:20;;;;;;;;;;;;;;;;;;62695:78::o:0;63057:206::-;4718:12;:10;:12::i;:::-;4707:23;;:7;:5;:7::i;:::-;:23;;;4699:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63108:12:::1;63134:10;63126:24;;63172:21;63126:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63107:101;;;63227:7;63219:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;63096:167;63057:206::o:0;49745:185::-;49883:39;49900:4;49906:2;49910:7;49883:39;;;;;;;;;;;;:16;:39::i;:::-;49745:185;;;:::o;62349:135::-;4718:12;:10;:12::i;:::-;4707:23;;:7;:5;:7::i;:::-;:23;;;4699:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62458:18:::1;62438:17;:38;;;;;;;;;;;;:::i;:::-;;62349:135:::0;:::o;60692:27::-;;;;;;;;;;;;;:::o;62253:88::-;4718:12;:10;:12::i;:::-;4707:23;;:7;:5;:7::i;:::-;:23;;;4699:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62330:3:::1;62320:7;:13;;;;;;;;;;;;:::i;:::-;;62253:88:::0;:::o;60621:22::-;;;;:::o;46944:125::-;47008:7;47035:21;47048:7;47035:12;:21::i;:::-;:26;;;47028:33;;46944:125;;;:::o;44392:206::-;44456:7;44497:1;44480:19;;:5;:19;;;44476:60;;;44508:28;;;;;;;;;;;;;;44476:60;44562:12;:19;44575:5;44562:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;44554:36;;44547:43;;44392:206;;;:::o;5138:103::-;4718:12;:10;:12::i;:::-;4707:23;;:7;:5;:7::i;:::-;:23;;;4699:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5203:30:::1;5230:1;5203:18;:30::i;:::-;5138:103::o:0;62781:84::-;4718:12;:10;:12::i;:::-;4707:23;;:7;:5;:7::i;:::-;:23;;;4699:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62846:11:::1;;;;;;;;;;;62845:12;62831:11;;:26;;;;;;;;;;;;;;;;;;62781:84::o:0;4487:87::-;4533:7;4560:6;;;;;;;;;;;4553:13;;4487:87;:::o;62595:92::-;4718:12;:10;:12::i;:::-;4707:23;;:7;:5;:7::i;:::-;:23;;;4699:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62670:9:::1;62662:5;:17;;;;62595:92:::0;:::o;62492:95::-;4718:12;:10;:12::i;:::-;4707:23;;:7;:5;:7::i;:::-;:23;;;4699:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62573:6:::1;62561:9;:18;;;;62492:95:::0;:::o;47305:104::-;47361:13;47394:7;47387:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47305:104;:::o;60416:34::-;;;;:::o;60958:698::-;61013:12;61028:5;;61013:20;;61042:11;61101:1;61089:9;;:13;;;;:::i;:::-;61081:5;61065:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;61064:109;;;;;61156:16;;61147:5;61115:17;:29;61133:10;61115:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;61064:109;61042:132;;61189:6;61185:321;;;61213:1;61206:8;;61185:321;;;61275:5;;61267;:13;;;;:::i;:::-;61254:9;:26;;61246:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61356:9;;61347:5;61331:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;61323:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;61400:11;;;;;;;;;;;61392:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;61465:8;;61456:5;:17;;61448:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;61185:321;61520:6;61516:72;;;61573:5;61540:17;:29;61558:10;61540:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;61516:72;61597:28;61607:10;61619:5;61597:9;:28::i;:::-;61643:5;61633:6;;:15;;;;;;;:::i;:::-;;;;;;;;61004:652;;60958:698;:::o;48915:287::-;49026:12;:10;:12::i;:::-;49014:24;;:8;:24;;;49010:54;;;49047:17;;;;;;;;;;;;;;49010:54;49122:8;49077:18;:32;49096:12;:10;:12::i;:::-;49077:32;;;;;;;;;;;;;;;:42;49110:8;49077:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;49175:8;49146:48;;49161:12;:10;:12::i;:::-;49146:48;;;49185:8;49146:48;;;;;;:::i;:::-;;;;;;;;48915:287;;:::o;60376:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60496:35::-;;;;:::o;50001:369::-;50168:28;50178:4;50184:2;50188:7;50168:9;:28::i;:::-;50211:15;:2;:13;;;:15::i;:::-;:76;;;;;50231:56;50262:4;50268:2;50272:7;50281:5;50231:30;:56::i;:::-;50230:57;50211:76;50207:156;;;50311:40;;;;;;;;;;;;;;50207:156;50001:369;;;;:::o;62873:75::-;62914:4;62934:6;;62927:13;;62873:75;:::o;61780:465::-;61898:13;61951:16;61959:7;61951;:16::i;:::-;61929:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;62071:5;62059:17;;:8;;;;;;;;;;;:17;;;62055:97;;;62121:17;62104:35;;;;;;;;:::i;:::-;;;;;;;;;;;;;62090:50;;;;62055:97;62199:7;62208:18;:7;:16;:18::i;:::-;62182:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62168:69;;61780:465;;;;:::o;60652:31::-;;;;;;;;;;;;;:::o;60580:32::-;;;;:::o;49273:164::-;49370:4;49394:18;:25;49413:5;49394:25;;;;;;;;;;;;;;;:35;49420:8;49394:35;;;;;;;;;;;;;;;;;;;;;;;;;49387:42;;49273:164;;;;:::o;5396:201::-;4718:12;:10;:12::i;:::-;4707:23;;:7;:5;:7::i;:::-;:23;;;4699:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5505:1:::1;5485:22;;:8;:22;;;;5477:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5561:28;5580:8;5561:18;:28::i;:::-;5396:201:::0;:::o;60459:28::-;;;;:::o;16131:157::-;16216:4;16255:25;16240:40;;;:11;:40;;;;16233:47;;16131:157;;;:::o;50625:174::-;50682:4;50725:7;50706:15;:13;:15::i;:::-;:26;;:53;;;;;50746:13;;50736:7;:23;50706:53;:85;;;;;50764:11;:20;50776:7;50764:20;;;;;;;;;;;:27;;;;;;;;;;;;50763:28;50706:85;50699:92;;50625:174;;;:::o;3832:98::-;3885:7;3912:10;3905:17;;3832:98;:::o;58536:196::-;58678:2;58651:15;:24;58667:7;58651:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;58716:7;58712:2;58696:28;;58705:5;58696:28;;;;;;;;;;;;58536:196;;;:::o;62956:93::-;63013:7;63040:1;63033:8;;62956:93;:::o;53479:2130::-;53594:35;53632:21;53645:7;53632:12;:21::i;:::-;53594:59;;53692:4;53670:26;;:13;:18;;;:26;;;53666:67;;53705:28;;;;;;;;;;;;;;53666:67;53746:22;53788:4;53772:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;53809:36;53826:4;53832:12;:10;:12::i;:::-;53809:16;:36::i;:::-;53772:73;:126;;;;53886:12;:10;:12::i;:::-;53862:36;;:20;53874:7;53862:11;:20::i;:::-;:36;;;53772:126;53746:153;;53917:17;53912:66;;53943:35;;;;;;;;;;;;;;53912:66;54007:1;53993:16;;:2;:16;;;53989:52;;;54018:23;;;;;;;;;;;;;;53989:52;54054:43;54076:4;54082:2;54086:7;54095:1;54054:21;:43::i;:::-;54162:35;54179:1;54183:7;54192:4;54162:8;:35::i;:::-;54523:1;54493:12;:18;54506:4;54493:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54567:1;54539:12;:16;54552:2;54539:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54585:31;54619:11;:20;54631:7;54619:20;;;;;;;;;;;54585:54;;54670:2;54654:8;:13;;;:18;;;;;;;;;;;;;;;;;;54720:15;54687:8;:23;;;:49;;;;;;;;;;;;;;;;;;54988:19;55020:1;55010:7;:11;54988:33;;55036:31;55070:11;:24;55082:11;55070:24;;;;;;;;;;;55036:58;;55138:1;55113:27;;:8;:13;;;;;;;;;;;;:27;;;55109:384;;;55323:13;;55308:11;:28;55304:174;;55377:4;55361:8;:13;;;:20;;;;;;;;;;;;;;;;;;55430:13;:28;;;55404:8;:23;;;:54;;;;;;;;;;;;;;;;;;55304:174;55109:384;54468:1036;;;55540:7;55536:2;55521:27;;55530:4;55521:27;;;;;;;;;;;;55559:42;55580:4;55586:2;55590:7;55599:1;55559:20;:42::i;:::-;53583:2026;;53479:2130;;;:::o;50807:104::-;50876:27;50886:2;50890:8;50876:27;;;;;;;;;;;;:9;:27::i;:::-;50807:104;;:::o;45773:1109::-;45835:21;;:::i;:::-;45869:12;45884:7;45869:22;;45952:4;45933:15;:13;:15::i;:::-;:23;;:47;;;;;45967:13;;45960:4;:20;45933:47;45929:886;;;46001:31;46035:11;:17;46047:4;46035:17;;;;;;;;;;;46001:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46076:9;:16;;;46071:729;;46147:1;46121:28;;:9;:14;;;:28;;;46117:101;;46185:9;46178:16;;;;;;46117:101;46520:261;46527:4;46520:261;;;46560:6;;;;;;;;46605:11;:17;46617:4;46605:17;;;;;;;;;;;46593:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46679:1;46653:28;;:9;:14;;;:28;;;46649:109;;46721:9;46714:16;;;;;;46649:109;46520:261;;;46071:729;45982:833;45929:886;46843:31;;;;;;;;;;;;;;45773:1109;;;;:::o;5757:191::-;5831:16;5850:6;;;;;;;;;;;5831:25;;5876:8;5867:6;;:17;;;;;;;;;;;;;;;;;;5931:8;5900:40;;5921:8;5900:40;;;;;;;;;;;;5820:128;5757:191;:::o;7061:326::-;7121:4;7378:1;7356:7;:19;;;:23;7349:30;;7061:326;;;:::o;59224:667::-;59387:4;59424:2;59408:36;;;59445:12;:10;:12::i;:::-;59459:4;59465:7;59474:5;59408:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;59404:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59659:1;59642:6;:13;:18;59638:235;;;59688:40;;;;;;;;;;;;;;59638:235;59831:6;59825:13;59816:6;59812:2;59808:15;59801:38;59404:480;59537:45;;;59527:55;;;:6;:55;;;;59520:62;;;59224:667;;;;;;:::o;1506:723::-;1562:13;1792:1;1783:5;:10;1779:53;;;1810:10;;;;;;;;;;;;;;;;;;;;;1779:53;1842:12;1857:5;1842:20;;1873:14;1898:78;1913:1;1905:4;:9;1898:78;;1931:8;;;;;:::i;:::-;;;;1962:2;1954:10;;;;;:::i;:::-;;;1898:78;;;1986:19;2018:6;2008:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1986:39;;2036:154;2052:1;2043:5;:10;2036:154;;2080:1;2070:11;;;;;:::i;:::-;;;2147:2;2139:5;:10;;;;:::i;:::-;2126:2;:24;;;;:::i;:::-;2113:39;;2096:6;2103;2096:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2176:2;2167:11;;;;;:::i;:::-;;;2036:154;;;2214:6;2200:21;;;;;1506:723;;;;:::o;59899:159::-;;;;;:::o;60066:158::-;;;;;:::o;51274:163::-;51397:32;51403:2;51407:8;51417:5;51424:4;51397:5;:32::i;:::-;51274:163;;;:::o;51696:1775::-;51835:20;51858:13;;51835:36;;51900:1;51886:16;;:2;:16;;;51882:48;;;51911:19;;;;;;;;;;;;;;51882:48;51957:1;51945:8;:13;51941:44;;;51967:18;;;;;;;;;;;;;;51941:44;51998:61;52028:1;52032:2;52036:12;52050:8;51998:21;:61::i;:::-;52371:8;52336:12;:16;52349:2;52336:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52435:8;52395:12;:16;52408:2;52395:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52494:2;52461:11;:25;52473:12;52461:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;52561:15;52511:11;:25;52523:12;52511:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;52594:20;52617:12;52594:35;;52644:11;52673:8;52658:12;:23;52644:37;;52702:4;:23;;;;;52710:15;:2;:13;;;:15::i;:::-;52702:23;52698:641;;;52746:314;52802:12;52798:2;52777:38;;52794:1;52777:38;;;;;;;;;;;;52843:69;52882:1;52886:2;52890:14;;;;;;52906:5;52843:30;:69::i;:::-;52838:174;;52948:40;;;;;;;;;;;;;;52838:174;53055:3;53039:12;:19;;52746:314;;53141:12;53124:13;;:29;53120:43;;53155:8;;;53120:43;52698:641;;;53204:120;53260:14;;;;;;53256:2;53235:40;;53252:1;53235:40;;;;;;;;;;;;53319:3;53303:12;:19;;53204:120;;52698:641;53369:12;53353:13;:28;;;;52311:1082;;53403:60;53432:1;53436:2;53440:12;53454:8;53403:20;:60::i;:::-;51824:1647;51696:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:400::-;10667:3;10688:84;10770:1;10765:3;10688:84;:::i;:::-;10681:91;;10781:93;10870:3;10781:93;:::i;:::-;10899:1;10894:3;10890:11;10883:18;;10507:400;;;:::o;10913:366::-;11055:3;11076:67;11140:2;11135:3;11076:67;:::i;:::-;11069:74;;11152:93;11241:3;11152:93;:::i;:::-;11270:2;11265:3;11261:12;11254:19;;10913:366;;;:::o;11285:::-;11427:3;11448:67;11512:2;11507:3;11448:67;:::i;:::-;11441:74;;11524:93;11613:3;11524:93;:::i;:::-;11642:2;11637:3;11633:12;11626:19;;11285:366;;;:::o;11657:::-;11799:3;11820:67;11884:2;11879:3;11820:67;:::i;:::-;11813:74;;11896:93;11985:3;11896:93;:::i;:::-;12014:2;12009:3;12005:12;11998:19;;11657:366;;;:::o;12029:398::-;12188:3;12209:83;12290:1;12285:3;12209:83;:::i;:::-;12202:90;;12301:93;12390:3;12301:93;:::i;:::-;12419:1;12414:3;12410:11;12403:18;;12029:398;;;:::o;12433:366::-;12575:3;12596:67;12660:2;12655:3;12596:67;:::i;:::-;12589:74;;12672:93;12761:3;12672:93;:::i;:::-;12790:2;12785:3;12781:12;12774:19;;12433:366;;;:::o;12805:::-;12947:3;12968:67;13032:2;13027:3;12968:67;:::i;:::-;12961:74;;13044:93;13133:3;13044:93;:::i;:::-;13162:2;13157:3;13153:12;13146:19;;12805:366;;;:::o;13177:::-;13319:3;13340:67;13404:2;13399:3;13340:67;:::i;:::-;13333:74;;13416:93;13505:3;13416:93;:::i;:::-;13534:2;13529:3;13525:12;13518:19;;13177:366;;;:::o;13549:118::-;13636:24;13654:5;13636:24;:::i;:::-;13631:3;13624:37;13549:118;;:::o;13673:269::-;13802:3;13824:92;13912:3;13903:6;13824:92;:::i;:::-;13817:99;;13933:3;13926:10;;13673:269;;;;:::o;13948:695::-;14226:3;14248:92;14336:3;14327:6;14248:92;:::i;:::-;14241:99;;14357:95;14448:3;14439:6;14357:95;:::i;:::-;14350:102;;14469:148;14613:3;14469:148;:::i;:::-;14462:155;;14634:3;14627:10;;13948:695;;;;;:::o;14649:379::-;14833:3;14855:147;14998:3;14855:147;:::i;:::-;14848:154;;15019:3;15012:10;;14649:379;;;:::o;15034:222::-;15127:4;15165:2;15154:9;15150:18;15142:26;;15178:71;15246:1;15235:9;15231:17;15222:6;15178:71;:::i;:::-;15034:222;;;;:::o;15262:640::-;15457:4;15495:3;15484:9;15480:19;15472:27;;15509:71;15577:1;15566:9;15562:17;15553:6;15509:71;:::i;:::-;15590:72;15658:2;15647:9;15643:18;15634:6;15590:72;:::i;:::-;15672;15740:2;15729:9;15725:18;15716:6;15672:72;:::i;:::-;15791:9;15785:4;15781:20;15776:2;15765:9;15761:18;15754:48;15819:76;15890:4;15881:6;15819:76;:::i;:::-;15811:84;;15262:640;;;;;;;:::o;15908:210::-;15995:4;16033:2;16022:9;16018:18;16010:26;;16046:65;16108:1;16097:9;16093:17;16084:6;16046:65;:::i;:::-;15908:210;;;;:::o;16124:313::-;16237:4;16275:2;16264:9;16260:18;16252:26;;16324:9;16318:4;16314:20;16310:1;16299:9;16295:17;16288:47;16352:78;16425:4;16416:6;16352:78;:::i;:::-;16344:86;;16124:313;;;;:::o;16443:419::-;16609:4;16647:2;16636:9;16632:18;16624:26;;16696:9;16690:4;16686:20;16682:1;16671:9;16667:17;16660:47;16724:131;16850:4;16724:131;:::i;:::-;16716:139;;16443:419;;;:::o;16868:::-;17034:4;17072:2;17061:9;17057:18;17049:26;;17121:9;17115:4;17111:20;17107:1;17096:9;17092:17;17085:47;17149:131;17275:4;17149:131;:::i;:::-;17141:139;;16868:419;;;:::o;17293:::-;17459:4;17497:2;17486:9;17482:18;17474:26;;17546:9;17540:4;17536:20;17532:1;17521:9;17517:17;17510:47;17574:131;17700:4;17574:131;:::i;:::-;17566:139;;17293:419;;;:::o;17718:::-;17884:4;17922:2;17911:9;17907:18;17899:26;;17971:9;17965:4;17961:20;17957:1;17946:9;17942:17;17935:47;17999:131;18125:4;17999:131;:::i;:::-;17991:139;;17718:419;;;:::o;18143:::-;18309:4;18347:2;18336:9;18332:18;18324:26;;18396:9;18390:4;18386:20;18382:1;18371:9;18367:17;18360:47;18424:131;18550:4;18424:131;:::i;:::-;18416:139;;18143:419;;;:::o;18568:::-;18734:4;18772:2;18761:9;18757:18;18749:26;;18821:9;18815:4;18811:20;18807:1;18796:9;18792:17;18785:47;18849:131;18975:4;18849:131;:::i;:::-;18841:139;;18568:419;;;:::o;18993:::-;19159:4;19197:2;19186:9;19182:18;19174:26;;19246:9;19240:4;19236:20;19232:1;19221:9;19217:17;19210:47;19274:131;19400:4;19274:131;:::i;:::-;19266:139;;18993:419;;;:::o;19418:::-;19584:4;19622:2;19611:9;19607:18;19599:26;;19671:9;19665:4;19661:20;19657:1;19646:9;19642:17;19635:47;19699:131;19825:4;19699:131;:::i;:::-;19691:139;;19418:419;;;:::o;19843:::-;20009:4;20047:2;20036:9;20032:18;20024:26;;20096:9;20090:4;20086:20;20082:1;20071:9;20067:17;20060:47;20124:131;20250:4;20124:131;:::i;:::-;20116:139;;19843:419;;;:::o;20268:222::-;20361:4;20399:2;20388:9;20384:18;20376:26;;20412:71;20480:1;20469:9;20465:17;20456:6;20412:71;:::i;:::-;20268:222;;;;:::o;20496:129::-;20530:6;20557:20;;:::i;:::-;20547:30;;20586:33;20614:4;20606:6;20586:33;:::i;:::-;20496:129;;;:::o;20631:75::-;20664:6;20697:2;20691:9;20681:19;;20631:75;:::o;20712:307::-;20773:4;20863:18;20855:6;20852:30;20849:56;;;20885:18;;:::i;:::-;20849:56;20923:29;20945:6;20923:29;:::i;:::-;20915:37;;21007:4;21001;20997:15;20989:23;;20712:307;;;:::o;21025:308::-;21087:4;21177:18;21169:6;21166:30;21163:56;;;21199:18;;:::i;:::-;21163:56;21237:29;21259:6;21237:29;:::i;:::-;21229:37;;21321:4;21315;21311:15;21303:23;;21025:308;;;:::o;21339:141::-;21388:4;21411:3;21403:11;;21434:3;21431:1;21424:14;21468:4;21465:1;21455:18;21447:26;;21339:141;;;:::o;21486:98::-;21537:6;21571:5;21565:12;21555:22;;21486:98;;;:::o;21590:99::-;21642:6;21676:5;21670:12;21660:22;;21590:99;;;:::o;21695:168::-;21778:11;21812:6;21807:3;21800:19;21852:4;21847:3;21843:14;21828:29;;21695:168;;;;:::o;21869:147::-;21970:11;22007:3;21992:18;;21869:147;;;;:::o;22022:169::-;22106:11;22140:6;22135:3;22128:19;22180:4;22175:3;22171:14;22156:29;;22022:169;;;;:::o;22197:148::-;22299:11;22336:3;22321:18;;22197:148;;;;:::o;22351:305::-;22391:3;22410:20;22428:1;22410:20;:::i;:::-;22405:25;;22444:20;22462:1;22444:20;:::i;:::-;22439:25;;22598:1;22530:66;22526:74;22523:1;22520:81;22517:107;;;22604:18;;:::i;:::-;22517:107;22648:1;22645;22641:9;22634:16;;22351:305;;;;:::o;22662:185::-;22702:1;22719:20;22737:1;22719:20;:::i;:::-;22714:25;;22753:20;22771:1;22753:20;:::i;:::-;22748:25;;22792:1;22782:35;;22797:18;;:::i;:::-;22782:35;22839:1;22836;22832:9;22827:14;;22662:185;;;;:::o;22853:348::-;22893:7;22916:20;22934:1;22916:20;:::i;:::-;22911:25;;22950:20;22968:1;22950:20;:::i;:::-;22945:25;;23138:1;23070:66;23066:74;23063:1;23060:81;23055:1;23048:9;23041:17;23037:105;23034:131;;;23145:18;;:::i;:::-;23034:131;23193:1;23190;23186:9;23175:20;;22853:348;;;;:::o;23207:191::-;23247:4;23267:20;23285:1;23267:20;:::i;:::-;23262:25;;23301:20;23319:1;23301:20;:::i;:::-;23296:25;;23340:1;23337;23334:8;23331:34;;;23345:18;;:::i;:::-;23331:34;23390:1;23387;23383:9;23375:17;;23207:191;;;;:::o;23404:96::-;23441:7;23470:24;23488:5;23470:24;:::i;:::-;23459:35;;23404:96;;;:::o;23506:90::-;23540:7;23583:5;23576:13;23569:21;23558:32;;23506:90;;;:::o;23602:149::-;23638:7;23678:66;23671:5;23667:78;23656:89;;23602:149;;;:::o;23757:126::-;23794:7;23834:42;23827:5;23823:54;23812:65;;23757:126;;;:::o;23889:77::-;23926:7;23955:5;23944:16;;23889:77;;;:::o;23972:154::-;24056:6;24051:3;24046;24033:30;24118:1;24109:6;24104:3;24100:16;24093:27;23972:154;;;:::o;24132:307::-;24200:1;24210:113;24224:6;24221:1;24218:13;24210:113;;;24309:1;24304:3;24300:11;24294:18;24290:1;24285:3;24281:11;24274:39;24246:2;24243:1;24239:10;24234:15;;24210:113;;;24341:6;24338:1;24335:13;24332:101;;;24421:1;24412:6;24407:3;24403:16;24396:27;24332:101;24181:258;24132:307;;;:::o;24445:320::-;24489:6;24526:1;24520:4;24516:12;24506:22;;24573:1;24567:4;24563:12;24594:18;24584:81;;24650:4;24642:6;24638:17;24628:27;;24584:81;24712:2;24704:6;24701:14;24681:18;24678:38;24675:84;;;24731:18;;:::i;:::-;24675:84;24496:269;24445:320;;;:::o;24771:281::-;24854:27;24876:4;24854:27;:::i;:::-;24846:6;24842:40;24984:6;24972:10;24969:22;24948:18;24936:10;24933:34;24930:62;24927:88;;;24995:18;;:::i;:::-;24927:88;25035:10;25031:2;25024:22;24814:238;24771:281;;:::o;25058:233::-;25097:3;25120:24;25138:5;25120:24;:::i;:::-;25111:33;;25166:66;25159:5;25156:77;25153:103;;;25236:18;;:::i;:::-;25153:103;25283:1;25276:5;25272:13;25265:20;;25058:233;;;:::o;25297:176::-;25329:1;25346:20;25364:1;25346:20;:::i;:::-;25341:25;;25380:20;25398:1;25380:20;:::i;:::-;25375:25;;25419:1;25409:35;;25424:18;;:::i;:::-;25409:35;25465:1;25462;25458:9;25453:14;;25297:176;;;;:::o;25479:180::-;25527:77;25524:1;25517:88;25624:4;25621:1;25614:15;25648:4;25645:1;25638:15;25665:180;25713:77;25710:1;25703:88;25810:4;25807:1;25800:15;25834:4;25831:1;25824:15;25851:180;25899:77;25896:1;25889:88;25996:4;25993:1;25986:15;26020:4;26017:1;26010:15;26037:180;26085:77;26082:1;26075:88;26182:4;26179:1;26172:15;26206:4;26203:1;26196:15;26223:180;26271:77;26268:1;26261:88;26368:4;26365:1;26358:15;26392:4;26389:1;26382:15;26409:117;26518:1;26515;26508:12;26532:117;26641:1;26638;26631:12;26655:117;26764:1;26761;26754:12;26778:117;26887:1;26884;26877:12;26901:102;26942:6;26993:2;26989:7;26984:2;26977:5;26973:14;26969:28;26959:38;;26901:102;;;:::o;27009:173::-;27149:25;27145:1;27137:6;27133:14;27126:49;27009:173;:::o;27188:225::-;27328:34;27324:1;27316:6;27312:14;27305:58;27397:8;27392:2;27384:6;27380:15;27373:33;27188:225;:::o;27419:168::-;27559:20;27555:1;27547:6;27543:14;27536:44;27419:168;:::o;27593:155::-;27733:7;27729:1;27721:6;27717:14;27710:31;27593:155;:::o;27754:182::-;27894:34;27890:1;27882:6;27878:14;27871:58;27754:182;:::o;27942:234::-;28082:34;28078:1;28070:6;28066:14;28059:58;28151:17;28146:2;28138:6;28134:15;28127:42;27942:234;:::o;28182:179::-;28322:31;28318:1;28310:6;28306:14;28299:55;28182:179;:::o;28367:114::-;;:::o;28487:166::-;28627:18;28623:1;28615:6;28611:14;28604:42;28487:166;:::o;28659:163::-;28799:15;28795:1;28787:6;28783:14;28776:39;28659:163;:::o;28828:169::-;28968:21;28964:1;28956:6;28952:14;28945:45;28828:169;:::o;29003:122::-;29076:24;29094:5;29076:24;:::i;:::-;29069:5;29066:35;29056:63;;29115:1;29112;29105:12;29056:63;29003:122;:::o;29131:116::-;29201:21;29216:5;29201:21;:::i;:::-;29194:5;29191:32;29181:60;;29237:1;29234;29227:12;29181:60;29131:116;:::o;29253:120::-;29325:23;29342:5;29325:23;:::i;:::-;29318:5;29315:34;29305:62;;29363:1;29360;29353:12;29305:62;29253:120;:::o;29379:122::-;29452:24;29470:5;29452:24;:::i;:::-;29445:5;29442:35;29432:63;;29491:1;29488;29481:12;29432:63;29379:122;:::o

Swarm Source

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