ETH Price: $3,387.46 (-1.58%)
Gas: 2 Gwei

Token

Omega Droids (O-DROIDS)
 

Overview

Max Total Supply

10,000 O-DROIDS

Holders

2,898

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 O-DROIDS
0x7e0c1d963b4c8d017950c9bc8070bccb2ad9560e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

They were created to protect all of humanity. Omega droids will have to confront the Alpha Chimera. They are just as powerful and capable as these mutated creatures. Their code is, first and foremost, human safety. They are sure to win the coming war.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ODROIDS

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

// SPDX-License-Identifier: MIT

/**
Omega Droids - collection belongs to the 0xd38 Universe.
Official website - www.0xd38.xyz
*/

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 ODROIDS is ERC721A, Ownable {
    using Strings for uint256;

    string private baseURI;

    string public hiddenMetadataUri;

    uint256 public price = 0.016 ether;

    uint256 public maxPerTx = 3;

    uint256 public maxFreePerWallet = 3;

    uint256 public totalFree = 10000;

    uint256 public maxSupply = 10000;

    uint public nextId = 0;

    bool public mintEnabled = false;

    bool public revealed = true;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("Omega Droids", "O-DROIDS") {
        setHiddenMetadataUri("https://api2.0xd38.xyz/");
        setBaseURI("https://api2.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 DROIDS");
      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 FREEMINTWL(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":"FREEMINTWL","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"}]

60806040526638d7ea4c680000600b556003600c556003600d55612710600e55612710600f5560006010556000601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055503480156200006d57600080fd5b506040518060400160405280600c81526020017f4f6d6567612044726f69647300000000000000000000000000000000000000008152506040518060400160405280600881526020017f4f2d44524f4944530000000000000000000000000000000000000000000000008152508160029080519060200190620000f29291906200042d565b5080600390805190602001906200010b9291906200042d565b506200011c620001d660201b60201c565b60008190555050506200014462000138620001df60201b60201c565b620001e760201b60201c565b6200018a6040518060400160405280601781526020017f68747470733a2f2f617069322e30786433382e78797a2f000000000000000000815250620002ad60201b60201c565b620001d06040518060400160405280601781526020017f68747470733a2f2f617069322e30786433382e78797a2f0000000000000000008152506200035860201b60201c565b620005c5565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002bd620001df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e36200040360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200033c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003339062000504565b60405180910390fd5b80600a9080519060200190620003549291906200042d565b5050565b62000368620001df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200038e6200040360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003de9062000504565b60405180910390fd5b8060099080519060200190620003ff9291906200042d565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200043b9062000537565b90600052602060002090601f0160209004810192826200045f5760008555620004ab565b82601f106200047a57805160ff1916838001178555620004ab565b82800160010185558215620004ab579182015b82811115620004aa5782518255916020019190600101906200048d565b5b509050620004ba9190620004be565b5090565b5b80821115620004d9576000816000905550600101620004bf565b5090565b6000620004ec60208362000526565b9150620004f9826200059c565b602082019050919050565b600060208201905081810360008301526200051f81620004dd565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200055057607f821691505b602082108114156200056757620005666200056d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613bed80620005d56000396000f3fe60806040526004361061020f5760003560e01c80638da5cb5b11610118578063a7027357116100a0578063d12397301161006f578063d123973014610730578063d5abeb011461075b578063e985e9c514610786578063f2fde38b146107c3578063f968adbe146107ec5761020f565b8063a702735714610674578063b88d4fde1461069f578063bc968326146106c8578063c87b56dd146106f35761020f565b80639c3afbf5116100e75780639c3afbf5146105b0578063a035b1fe146105d9578063a0712d6814610604578063a22cb46514610620578063a45ba8e7146106495761020f565b80638da5cb5b1461050857806391b7f5ed1461053357806392910eec1461055c57806395d89b41146105855761020f565b806342842e0e1161019b57806361b8ce8c1161016a57806361b8ce8c146104355780636352211e1461046057806370a082311461049d578063715018a6146104da5780637ba5e621146104f15761020f565b806342842e0e1461038f5780634fdd43cb146103b857806351830227146103e157806355f804b31461040c5761020f565b806318160ddd116101e257806318160ddd146102e257806323b872dd1461030d578063333e44e6146103365780633bd64968146103615780633ccfd60b146103785761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612ef6565b610817565b6040516102489190613358565b60405180910390f35b34801561025d57600080fd5b506102666108f9565b6040516102739190613373565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612f99565b61098b565b6040516102b091906132f1565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612eb6565b610a07565b005b3480156102ee57600080fd5b506102f7610b12565b60405161030491906134b5565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612da0565b610b29565b005b34801561034257600080fd5b5061034b610b39565b60405161035891906134b5565b60405180910390f35b34801561036d57600080fd5b50610376610b3f565b005b34801561038457600080fd5b5061038d610be7565b005b34801561039b57600080fd5b506103b660048036038101906103b19190612da0565b610d12565b005b3480156103c457600080fd5b506103df60048036038101906103da9190612f50565b610d32565b005b3480156103ed57600080fd5b506103f6610dc8565b6040516104039190613358565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190612f50565b610ddb565b005b34801561044157600080fd5b5061044a610e71565b60405161045791906134b5565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190612f99565b610e77565b60405161049491906132f1565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf9190612d33565b610e8d565b6040516104d191906134b5565b60405180910390f35b3480156104e657600080fd5b506104ef610f5d565b005b3480156104fd57600080fd5b50610506610fe5565b005b34801561051457600080fd5b5061051d61108d565b60405161052a91906132f1565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612f99565b6110b7565b005b34801561056857600080fd5b50610583600480360381019061057e9190612f99565b61113d565b005b34801561059157600080fd5b5061059a6111c3565b6040516105a79190613373565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190612eb6565b611255565b005b3480156105e557600080fd5b506105ee611336565b6040516105fb91906134b5565b60405180910390f35b61061e60048036038101906106199190612f99565b61133c565b005b34801561062c57600080fd5b5061064760048036038101906106429190612e76565b611592565b005b34801561065557600080fd5b5061065e61170a565b60405161066b9190613373565b60405180910390f35b34801561068057600080fd5b50610689611798565b60405161069691906134b5565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190612df3565b61179e565b005b3480156106d457600080fd5b506106dd61181a565b6040516106ea91906134b5565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190612f99565b611824565b6040516107279190613373565b60405180910390f35b34801561073c57600080fd5b506107456118e5565b6040516107529190613358565b60405180910390f35b34801561076757600080fd5b506107706118f8565b60405161077d91906134b5565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a89190612d60565b6118fe565b6040516107ba9190613358565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190612d33565b611992565b005b3480156107f857600080fd5b50610801611a8a565b60405161080e91906134b5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f257506108f182611a90565b5b9050919050565b60606002805461090890613785565b80601f016020809104026020016040519081016040528092919081815260200182805461093490613785565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b600061099682611afa565b6109cc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1282610e77565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a7a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a99611b48565b73ffffffffffffffffffffffffffffffffffffffff1614158015610acb5750610ac981610ac4611b48565b6118fe565b155b15610b02576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b0d838383611b50565b505050565b6000610b1c611c02565b6001546000540303905090565b610b34838383611c0b565b505050565b600e5481565b610b47611b48565b73ffffffffffffffffffffffffffffffffffffffff16610b6561108d565b73ffffffffffffffffffffffffffffffffffffffff1614610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290613415565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b610bef611b48565b73ffffffffffffffffffffffffffffffffffffffff16610c0d61108d565b73ffffffffffffffffffffffffffffffffffffffff1614610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90613415565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c89906132dc565b60006040518083038185875af1925050503d8060008114610cc6576040519150601f19603f3d011682016040523d82523d6000602084013e610ccb565b606091505b5050905080610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690613475565b60405180910390fd5b50565b610d2d8383836040518060200160405280600081525061179e565b505050565b610d3a611b48565b73ffffffffffffffffffffffffffffffffffffffff16610d5861108d565b73ffffffffffffffffffffffffffffffffffffffff1614610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590613415565b60405180910390fd5b80600a9080519060200190610dc4929190612b04565b5050565b601160019054906101000a900460ff1681565b610de3611b48565b73ffffffffffffffffffffffffffffffffffffffff16610e0161108d565b73ffffffffffffffffffffffffffffffffffffffff1614610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e90613415565b60405180910390fd5b8060099080519060200190610e6d929190612b04565b5050565b60105481565b6000610e82826120c1565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f65611b48565b73ffffffffffffffffffffffffffffffffffffffff16610f8361108d565b73ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613415565b60405180910390fd5b610fe36000612350565b565b610fed611b48565b73ffffffffffffffffffffffffffffffffffffffff1661100b61108d565b73ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890613415565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110bf611b48565b73ffffffffffffffffffffffffffffffffffffffff166110dd61108d565b73ffffffffffffffffffffffffffffffffffffffff1614611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90613415565b60405180910390fd5b80600b8190555050565b611145611b48565b73ffffffffffffffffffffffffffffffffffffffff1661116361108d565b73ffffffffffffffffffffffffffffffffffffffff16146111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090613415565b60405180910390fd5b80600e8190555050565b6060600380546111d290613785565b80601f01602080910402602001604051908101604052809291908181526020018280546111fe90613785565b801561124b5780601f106112205761010080835404028352916020019161124b565b820191906000526020600020905b81548152906001019060200180831161122e57829003601f168201915b5050505050905090565b61125d611b48565b73ffffffffffffffffffffffffffffffffffffffff1661127b61108d565b73ffffffffffffffffffffffffffffffffffffffff16146112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c890613415565b60405180910390fd5b600f54816112dd610b12565b6112e791906135ba565b1115611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f906133d5565b60405180910390fd5b6113328282612416565b5050565b600b5481565b6000600b54905060006001600e5461135491906135ba565b8361135d610b12565b61136791906135ba565b1080156113c05750600d5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113bd91906135ba565b11155b905080156113d1576000915061150d565b600b54836113df9190613641565b341015611421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141890613455565b60405180910390fd5b600f548361142d610b12565b61143791906135ba565b1115611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f906133f5565b60405180910390fd5b601160009054906101000a900460ff166114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613395565b60405180910390fd5b600c5483111561150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390613495565b60405180910390fd5b5b801561156a5782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461156291906135ba565b925050819055505b6115743384612416565b826010600082825461158691906135ba565b92505081905550505050565b61159a611b48565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ff576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061160c611b48565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116b9611b48565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116fe9190613358565b60405180910390a35050565b600a805461171790613785565b80601f016020809104026020016040519081016040528092919081815260200182805461174390613785565b80156117905780601f1061176557610100808354040283529160200191611790565b820191906000526020600020905b81548152906001019060200180831161177357829003601f168201915b505050505081565b600d5481565b6117a9848484611c0b565b6117c88373ffffffffffffffffffffffffffffffffffffffff16612434565b80156117dd57506117db84848484612457565b155b15611814576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000601054905090565b606061182f82611afa565b61186e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186590613435565b60405180910390fd5b60001515601160019054906101000a900460ff16151514156118b257600a60405160200161189c9190613296565b60405160208183030381529060405290506118e0565b60096118bd836125b7565b6040516020016118ce9291906132ad565b60405160208183030381529060405290505b919050565b601160009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61199a611b48565b73ffffffffffffffffffffffffffffffffffffffff166119b861108d565b73ffffffffffffffffffffffffffffffffffffffff1614611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0590613415565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a75906133b5565b60405180910390fd5b611a8781612350565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b05611c02565b11158015611b14575060005482105b8015611b41575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611c16826120c1565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c81576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611ca2611b48565b73ffffffffffffffffffffffffffffffffffffffff161480611cd15750611cd085611ccb611b48565b6118fe565b5b80611d165750611cdf611b48565b73ffffffffffffffffffffffffffffffffffffffff16611cfe8461098b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d4f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611db6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dc38585856001612718565b611dcf60008487611b50565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561204f57600054821461204e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ba858585600161271e565b5050505050565b6120c9612b8a565b6000829050806120d7611c02565b111580156120e6575060005481105b15612319576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161231757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121fb57809250505061234b565b5b60011561231657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231157809250505061234b565b6121fc565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612430828260405180602001604052806000815250612724565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261247d611b48565b8786866040518563ffffffff1660e01b815260040161249f949392919061330c565b602060405180830381600087803b1580156124b957600080fd5b505af19250505080156124ea57506040513d601f19601f820116820180604052508101906124e79190612f23565b60015b612564573d806000811461251a576040519150601f19603f3d011682016040523d82523d6000602084013e61251f565b606091505b5060008151141561255c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125ff576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612713565b600082905060005b6000821461263157808061261a906137e8565b915050600a8261262a9190613610565b9150612607565b60008167ffffffffffffffff81111561264d5761264c61391e565b5b6040519080825280601f01601f19166020018201604052801561267f5781602001600182028036833780820191505090505b5090505b6000851461270c57600182612698919061369b565b9150600a856126a79190613831565b60306126b391906135ba565b60f81b8183815181106126c9576126c86138ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127059190613610565b9450612683565b8093505050505b919050565b50505050565b50505050565b6127318383836001612736565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127a3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156127de576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127eb6000868387612718565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129b557506129b48773ffffffffffffffffffffffffffffffffffffffff16612434565b5b15612a7b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a2a6000888480600101955088612457565b612a60576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129bb578260005414612a7657600080fd5b612ae7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a7c575b816000819055505050612afd600086838761271e565b5050505050565b828054612b1090613785565b90600052602060002090601f016020900481019282612b325760008555612b79565b82601f10612b4b57805160ff1916838001178555612b79565b82800160010185558215612b79579182015b82811115612b78578251825591602001919060010190612b5d565b5b509050612b869190612bcd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612be6576000816000905550600101612bce565b5090565b6000612bfd612bf8846134f5565b6134d0565b905082815260208101848484011115612c1957612c18613952565b5b612c24848285613743565b509392505050565b6000612c3f612c3a84613526565b6134d0565b905082815260208101848484011115612c5b57612c5a613952565b5b612c66848285613743565b509392505050565b600081359050612c7d81613b5b565b92915050565b600081359050612c9281613b72565b92915050565b600081359050612ca781613b89565b92915050565b600081519050612cbc81613b89565b92915050565b600082601f830112612cd757612cd661394d565b5b8135612ce7848260208601612bea565b91505092915050565b600082601f830112612d0557612d0461394d565b5b8135612d15848260208601612c2c565b91505092915050565b600081359050612d2d81613ba0565b92915050565b600060208284031215612d4957612d4861395c565b5b6000612d5784828501612c6e565b91505092915050565b60008060408385031215612d7757612d7661395c565b5b6000612d8585828601612c6e565b9250506020612d9685828601612c6e565b9150509250929050565b600080600060608486031215612db957612db861395c565b5b6000612dc786828701612c6e565b9350506020612dd886828701612c6e565b9250506040612de986828701612d1e565b9150509250925092565b60008060008060808587031215612e0d57612e0c61395c565b5b6000612e1b87828801612c6e565b9450506020612e2c87828801612c6e565b9350506040612e3d87828801612d1e565b925050606085013567ffffffffffffffff811115612e5e57612e5d613957565b5b612e6a87828801612cc2565b91505092959194509250565b60008060408385031215612e8d57612e8c61395c565b5b6000612e9b85828601612c6e565b9250506020612eac85828601612c83565b9150509250929050565b60008060408385031215612ecd57612ecc61395c565b5b6000612edb85828601612c6e565b9250506020612eec85828601612d1e565b9150509250929050565b600060208284031215612f0c57612f0b61395c565b5b6000612f1a84828501612c98565b91505092915050565b600060208284031215612f3957612f3861395c565b5b6000612f4784828501612cad565b91505092915050565b600060208284031215612f6657612f6561395c565b5b600082013567ffffffffffffffff811115612f8457612f83613957565b5b612f9084828501612cf0565b91505092915050565b600060208284031215612faf57612fae61395c565b5b6000612fbd84828501612d1e565b91505092915050565b612fcf816136cf565b82525050565b612fde816136e1565b82525050565b6000612fef8261356c565b612ff98185613582565b9350613009818560208601613752565b61301281613961565b840191505092915050565b600061302882613577565b613032818561359e565b9350613042818560208601613752565b61304b81613961565b840191505092915050565b600061306182613577565b61306b81856135af565b935061307b818560208601613752565b80840191505092915050565b6000815461309481613785565b61309e81866135af565b945060018216600081146130b957600181146130ca576130fd565b60ff198316865281860193506130fd565b6130d385613557565b60005b838110156130f5578154818901526001820191506020810190506130d6565b838801955050505b50505092915050565b600061311360178361359e565b915061311e82613972565b602082019050919050565b600061313660268361359e565b91506131418261399b565b604082019050919050565b600061315960128361359e565b9150613164826139ea565b602082019050919050565b600061317c600e8361359e565b915061318782613a13565b602082019050919050565b600061319f6005836135af565b91506131aa82613a3c565b600582019050919050565b60006131c260208361359e565b91506131cd82613a65565b602082019050919050565b60006131e5602f8361359e565b91506131f082613a8e565b604082019050919050565b6000613208601d8361359e565b915061321382613add565b602082019050919050565b600061322b600083613593565b915061323682613b06565b600082019050919050565b600061324e60108361359e565b915061325982613b09565b602082019050919050565b600061327160138361359e565b915061327c82613b32565b602082019050919050565b61329081613739565b82525050565b60006132a28284613087565b915081905092915050565b60006132b98285613087565b91506132c58284613056565b91506132d082613192565b91508190509392505050565b60006132e78261321e565b9150819050919050565b60006020820190506133066000830184612fc6565b92915050565b60006080820190506133216000830187612fc6565b61332e6020830186612fc6565b61333b6040830185613287565b818103606083015261334d8184612fe4565b905095945050505050565b600060208201905061336d6000830184612fd5565b92915050565b6000602082019050818103600083015261338d818461301d565b905092915050565b600060208201905081810360008301526133ae81613106565b9050919050565b600060208201905081810360008301526133ce81613129565b9050919050565b600060208201905081810360008301526133ee8161314c565b9050919050565b6000602082019050818103600083015261340e8161316f565b9050919050565b6000602082019050818103600083015261342e816131b5565b9050919050565b6000602082019050818103600083015261344e816131d8565b9050919050565b6000602082019050818103600083015261346e816131fb565b9050919050565b6000602082019050818103600083015261348e81613241565b9050919050565b600060208201905081810360008301526134ae81613264565b9050919050565b60006020820190506134ca6000830184613287565b92915050565b60006134da6134eb565b90506134e682826137b7565b919050565b6000604051905090565b600067ffffffffffffffff8211156135105761350f61391e565b5b61351982613961565b9050602081019050919050565b600067ffffffffffffffff8211156135415761354061391e565b5b61354a82613961565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135c582613739565b91506135d083613739565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561360557613604613862565b5b828201905092915050565b600061361b82613739565b915061362683613739565b92508261363657613635613891565b5b828204905092915050565b600061364c82613739565b915061365783613739565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136905761368f613862565b5b828202905092915050565b60006136a682613739565b91506136b183613739565b9250828210156136c4576136c3613862565b5b828203905092915050565b60006136da82613719565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613770578082015181840152602081019050613755565b8381111561377f576000848401525b50505050565b6000600282049050600182168061379d57607f821691505b602082108114156137b1576137b06138c0565b5b50919050565b6137c082613961565b810181811067ffffffffffffffff821117156137df576137de61391e565b5b80604052505050565b60006137f382613739565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561382657613825613862565b5b600182019050919050565b600061383c82613739565b915061384783613739565b92508261385757613856613891565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f4e6f206d6f72652044524f494453000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b613b64816136cf565b8114613b6f57600080fd5b50565b613b7b816136e1565b8114613b8657600080fd5b50565b613b92816136ed565b8114613b9d57600080fd5b50565b613ba981613739565b8114613bb457600080fd5b5056fea2646970667358221220be49ee6814db7867e1a451b40fdd89c6c7aeea1d60028cc9e3046009c69e1f8b64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638da5cb5b11610118578063a7027357116100a0578063d12397301161006f578063d123973014610730578063d5abeb011461075b578063e985e9c514610786578063f2fde38b146107c3578063f968adbe146107ec5761020f565b8063a702735714610674578063b88d4fde1461069f578063bc968326146106c8578063c87b56dd146106f35761020f565b80639c3afbf5116100e75780639c3afbf5146105b0578063a035b1fe146105d9578063a0712d6814610604578063a22cb46514610620578063a45ba8e7146106495761020f565b80638da5cb5b1461050857806391b7f5ed1461053357806392910eec1461055c57806395d89b41146105855761020f565b806342842e0e1161019b57806361b8ce8c1161016a57806361b8ce8c146104355780636352211e1461046057806370a082311461049d578063715018a6146104da5780637ba5e621146104f15761020f565b806342842e0e1461038f5780634fdd43cb146103b857806351830227146103e157806355f804b31461040c5761020f565b806318160ddd116101e257806318160ddd146102e257806323b872dd1461030d578063333e44e6146103365780633bd64968146103615780633ccfd60b146103785761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612ef6565b610817565b6040516102489190613358565b60405180910390f35b34801561025d57600080fd5b506102666108f9565b6040516102739190613373565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612f99565b61098b565b6040516102b091906132f1565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612eb6565b610a07565b005b3480156102ee57600080fd5b506102f7610b12565b60405161030491906134b5565b60405180910390f35b34801561031957600080fd5b50610334600480360381019061032f9190612da0565b610b29565b005b34801561034257600080fd5b5061034b610b39565b60405161035891906134b5565b60405180910390f35b34801561036d57600080fd5b50610376610b3f565b005b34801561038457600080fd5b5061038d610be7565b005b34801561039b57600080fd5b506103b660048036038101906103b19190612da0565b610d12565b005b3480156103c457600080fd5b506103df60048036038101906103da9190612f50565b610d32565b005b3480156103ed57600080fd5b506103f6610dc8565b6040516104039190613358565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190612f50565b610ddb565b005b34801561044157600080fd5b5061044a610e71565b60405161045791906134b5565b60405180910390f35b34801561046c57600080fd5b5061048760048036038101906104829190612f99565b610e77565b60405161049491906132f1565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf9190612d33565b610e8d565b6040516104d191906134b5565b60405180910390f35b3480156104e657600080fd5b506104ef610f5d565b005b3480156104fd57600080fd5b50610506610fe5565b005b34801561051457600080fd5b5061051d61108d565b60405161052a91906132f1565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612f99565b6110b7565b005b34801561056857600080fd5b50610583600480360381019061057e9190612f99565b61113d565b005b34801561059157600080fd5b5061059a6111c3565b6040516105a79190613373565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d29190612eb6565b611255565b005b3480156105e557600080fd5b506105ee611336565b6040516105fb91906134b5565b60405180910390f35b61061e60048036038101906106199190612f99565b61133c565b005b34801561062c57600080fd5b5061064760048036038101906106429190612e76565b611592565b005b34801561065557600080fd5b5061065e61170a565b60405161066b9190613373565b60405180910390f35b34801561068057600080fd5b50610689611798565b60405161069691906134b5565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c19190612df3565b61179e565b005b3480156106d457600080fd5b506106dd61181a565b6040516106ea91906134b5565b60405180910390f35b3480156106ff57600080fd5b5061071a60048036038101906107159190612f99565b611824565b6040516107279190613373565b60405180910390f35b34801561073c57600080fd5b506107456118e5565b6040516107529190613358565b60405180910390f35b34801561076757600080fd5b506107706118f8565b60405161077d91906134b5565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a89190612d60565b6118fe565b6040516107ba9190613358565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190612d33565b611992565b005b3480156107f857600080fd5b50610801611a8a565b60405161080e91906134b5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f257506108f182611a90565b5b9050919050565b60606002805461090890613785565b80601f016020809104026020016040519081016040528092919081815260200182805461093490613785565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b600061099682611afa565b6109cc576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1282610e77565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a7a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a99611b48565b73ffffffffffffffffffffffffffffffffffffffff1614158015610acb5750610ac981610ac4611b48565b6118fe565b155b15610b02576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b0d838383611b50565b505050565b6000610b1c611c02565b6001546000540303905090565b610b34838383611c0b565b505050565b600e5481565b610b47611b48565b73ffffffffffffffffffffffffffffffffffffffff16610b6561108d565b73ffffffffffffffffffffffffffffffffffffffff1614610bbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb290613415565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b610bef611b48565b73ffffffffffffffffffffffffffffffffffffffff16610c0d61108d565b73ffffffffffffffffffffffffffffffffffffffff1614610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a90613415565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610c89906132dc565b60006040518083038185875af1925050503d8060008114610cc6576040519150601f19603f3d011682016040523d82523d6000602084013e610ccb565b606091505b5050905080610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0690613475565b60405180910390fd5b50565b610d2d8383836040518060200160405280600081525061179e565b505050565b610d3a611b48565b73ffffffffffffffffffffffffffffffffffffffff16610d5861108d565b73ffffffffffffffffffffffffffffffffffffffff1614610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da590613415565b60405180910390fd5b80600a9080519060200190610dc4929190612b04565b5050565b601160019054906101000a900460ff1681565b610de3611b48565b73ffffffffffffffffffffffffffffffffffffffff16610e0161108d565b73ffffffffffffffffffffffffffffffffffffffff1614610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e90613415565b60405180910390fd5b8060099080519060200190610e6d929190612b04565b5050565b60105481565b6000610e82826120c1565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef5576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f65611b48565b73ffffffffffffffffffffffffffffffffffffffff16610f8361108d565b73ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd090613415565b60405180910390fd5b610fe36000612350565b565b610fed611b48565b73ffffffffffffffffffffffffffffffffffffffff1661100b61108d565b73ffffffffffffffffffffffffffffffffffffffff1614611061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105890613415565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110bf611b48565b73ffffffffffffffffffffffffffffffffffffffff166110dd61108d565b73ffffffffffffffffffffffffffffffffffffffff1614611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90613415565b60405180910390fd5b80600b8190555050565b611145611b48565b73ffffffffffffffffffffffffffffffffffffffff1661116361108d565b73ffffffffffffffffffffffffffffffffffffffff16146111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090613415565b60405180910390fd5b80600e8190555050565b6060600380546111d290613785565b80601f01602080910402602001604051908101604052809291908181526020018280546111fe90613785565b801561124b5780601f106112205761010080835404028352916020019161124b565b820191906000526020600020905b81548152906001019060200180831161122e57829003601f168201915b5050505050905090565b61125d611b48565b73ffffffffffffffffffffffffffffffffffffffff1661127b61108d565b73ffffffffffffffffffffffffffffffffffffffff16146112d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c890613415565b60405180910390fd5b600f54816112dd610b12565b6112e791906135ba565b1115611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f906133d5565b60405180910390fd5b6113328282612416565b5050565b600b5481565b6000600b54905060006001600e5461135491906135ba565b8361135d610b12565b61136791906135ba565b1080156113c05750600d5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113bd91906135ba565b11155b905080156113d1576000915061150d565b600b54836113df9190613641565b341015611421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141890613455565b60405180910390fd5b600f548361142d610b12565b61143791906135ba565b1115611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f906133f5565b60405180910390fd5b601160009054906101000a900460ff166114c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114be90613395565b60405180910390fd5b600c5483111561150c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150390613495565b60405180910390fd5b5b801561156a5782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461156291906135ba565b925050819055505b6115743384612416565b826010600082825461158691906135ba565b92505081905550505050565b61159a611b48565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ff576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061160c611b48565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116b9611b48565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116fe9190613358565b60405180910390a35050565b600a805461171790613785565b80601f016020809104026020016040519081016040528092919081815260200182805461174390613785565b80156117905780601f1061176557610100808354040283529160200191611790565b820191906000526020600020905b81548152906001019060200180831161177357829003601f168201915b505050505081565b600d5481565b6117a9848484611c0b565b6117c88373ffffffffffffffffffffffffffffffffffffffff16612434565b80156117dd57506117db84848484612457565b155b15611814576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000601054905090565b606061182f82611afa565b61186e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186590613435565b60405180910390fd5b60001515601160019054906101000a900460ff16151514156118b257600a60405160200161189c9190613296565b60405160208183030381529060405290506118e0565b60096118bd836125b7565b6040516020016118ce9291906132ad565b60405160208183030381529060405290505b919050565b601160009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61199a611b48565b73ffffffffffffffffffffffffffffffffffffffff166119b861108d565b73ffffffffffffffffffffffffffffffffffffffff1614611a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0590613415565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a75906133b5565b60405180910390fd5b611a8781612350565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b05611c02565b11158015611b14575060005482105b8015611b41575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611c16826120c1565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c81576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611ca2611b48565b73ffffffffffffffffffffffffffffffffffffffff161480611cd15750611cd085611ccb611b48565b6118fe565b5b80611d165750611cdf611b48565b73ffffffffffffffffffffffffffffffffffffffff16611cfe8461098b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d4f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611db6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dc38585856001612718565b611dcf60008487611b50565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561204f57600054821461204e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120ba858585600161271e565b5050505050565b6120c9612b8a565b6000829050806120d7611c02565b111580156120e6575060005481105b15612319576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161231757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121fb57809250505061234b565b5b60011561231657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231157809250505061234b565b6121fc565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612430828260405180602001604052806000815250612724565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261247d611b48565b8786866040518563ffffffff1660e01b815260040161249f949392919061330c565b602060405180830381600087803b1580156124b957600080fd5b505af19250505080156124ea57506040513d601f19601f820116820180604052508101906124e79190612f23565b60015b612564573d806000811461251a576040519150601f19603f3d011682016040523d82523d6000602084013e61251f565b606091505b5060008151141561255c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156125ff576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612713565b600082905060005b6000821461263157808061261a906137e8565b915050600a8261262a9190613610565b9150612607565b60008167ffffffffffffffff81111561264d5761264c61391e565b5b6040519080825280601f01601f19166020018201604052801561267f5781602001600182028036833780820191505090505b5090505b6000851461270c57600182612698919061369b565b9150600a856126a79190613831565b60306126b391906135ba565b60f81b8183815181106126c9576126c86138ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127059190613610565b9450612683565b8093505050505b919050565b50505050565b50505050565b6127318383836001612736565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127a3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156127de576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127eb6000868387612718565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129b557506129b48773ffffffffffffffffffffffffffffffffffffffff16612434565b5b15612a7b575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a2a6000888480600101955088612457565b612a60576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129bb578260005414612a7657600080fd5b612ae7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a7c575b816000819055505050612afd600086838761271e565b5050505050565b828054612b1090613785565b90600052602060002090601f016020900481019282612b325760008555612b79565b82601f10612b4b57805160ff1916838001178555612b79565b82800160010185558215612b79579182015b82811115612b78578251825591602001919060010190612b5d565b5b509050612b869190612bcd565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612be6576000816000905550600101612bce565b5090565b6000612bfd612bf8846134f5565b6134d0565b905082815260208101848484011115612c1957612c18613952565b5b612c24848285613743565b509392505050565b6000612c3f612c3a84613526565b6134d0565b905082815260208101848484011115612c5b57612c5a613952565b5b612c66848285613743565b509392505050565b600081359050612c7d81613b5b565b92915050565b600081359050612c9281613b72565b92915050565b600081359050612ca781613b89565b92915050565b600081519050612cbc81613b89565b92915050565b600082601f830112612cd757612cd661394d565b5b8135612ce7848260208601612bea565b91505092915050565b600082601f830112612d0557612d0461394d565b5b8135612d15848260208601612c2c565b91505092915050565b600081359050612d2d81613ba0565b92915050565b600060208284031215612d4957612d4861395c565b5b6000612d5784828501612c6e565b91505092915050565b60008060408385031215612d7757612d7661395c565b5b6000612d8585828601612c6e565b9250506020612d9685828601612c6e565b9150509250929050565b600080600060608486031215612db957612db861395c565b5b6000612dc786828701612c6e565b9350506020612dd886828701612c6e565b9250506040612de986828701612d1e565b9150509250925092565b60008060008060808587031215612e0d57612e0c61395c565b5b6000612e1b87828801612c6e565b9450506020612e2c87828801612c6e565b9350506040612e3d87828801612d1e565b925050606085013567ffffffffffffffff811115612e5e57612e5d613957565b5b612e6a87828801612cc2565b91505092959194509250565b60008060408385031215612e8d57612e8c61395c565b5b6000612e9b85828601612c6e565b9250506020612eac85828601612c83565b9150509250929050565b60008060408385031215612ecd57612ecc61395c565b5b6000612edb85828601612c6e565b9250506020612eec85828601612d1e565b9150509250929050565b600060208284031215612f0c57612f0b61395c565b5b6000612f1a84828501612c98565b91505092915050565b600060208284031215612f3957612f3861395c565b5b6000612f4784828501612cad565b91505092915050565b600060208284031215612f6657612f6561395c565b5b600082013567ffffffffffffffff811115612f8457612f83613957565b5b612f9084828501612cf0565b91505092915050565b600060208284031215612faf57612fae61395c565b5b6000612fbd84828501612d1e565b91505092915050565b612fcf816136cf565b82525050565b612fde816136e1565b82525050565b6000612fef8261356c565b612ff98185613582565b9350613009818560208601613752565b61301281613961565b840191505092915050565b600061302882613577565b613032818561359e565b9350613042818560208601613752565b61304b81613961565b840191505092915050565b600061306182613577565b61306b81856135af565b935061307b818560208601613752565b80840191505092915050565b6000815461309481613785565b61309e81866135af565b945060018216600081146130b957600181146130ca576130fd565b60ff198316865281860193506130fd565b6130d385613557565b60005b838110156130f5578154818901526001820191506020810190506130d6565b838801955050505b50505092915050565b600061311360178361359e565b915061311e82613972565b602082019050919050565b600061313660268361359e565b91506131418261399b565b604082019050919050565b600061315960128361359e565b9150613164826139ea565b602082019050919050565b600061317c600e8361359e565b915061318782613a13565b602082019050919050565b600061319f6005836135af565b91506131aa82613a3c565b600582019050919050565b60006131c260208361359e565b91506131cd82613a65565b602082019050919050565b60006131e5602f8361359e565b91506131f082613a8e565b604082019050919050565b6000613208601d8361359e565b915061321382613add565b602082019050919050565b600061322b600083613593565b915061323682613b06565b600082019050919050565b600061324e60108361359e565b915061325982613b09565b602082019050919050565b600061327160138361359e565b915061327c82613b32565b602082019050919050565b61329081613739565b82525050565b60006132a28284613087565b915081905092915050565b60006132b98285613087565b91506132c58284613056565b91506132d082613192565b91508190509392505050565b60006132e78261321e565b9150819050919050565b60006020820190506133066000830184612fc6565b92915050565b60006080820190506133216000830187612fc6565b61332e6020830186612fc6565b61333b6040830185613287565b818103606083015261334d8184612fe4565b905095945050505050565b600060208201905061336d6000830184612fd5565b92915050565b6000602082019050818103600083015261338d818461301d565b905092915050565b600060208201905081810360008301526133ae81613106565b9050919050565b600060208201905081810360008301526133ce81613129565b9050919050565b600060208201905081810360008301526133ee8161314c565b9050919050565b6000602082019050818103600083015261340e8161316f565b9050919050565b6000602082019050818103600083015261342e816131b5565b9050919050565b6000602082019050818103600083015261344e816131d8565b9050919050565b6000602082019050818103600083015261346e816131fb565b9050919050565b6000602082019050818103600083015261348e81613241565b9050919050565b600060208201905081810360008301526134ae81613264565b9050919050565b60006020820190506134ca6000830184613287565b92915050565b60006134da6134eb565b90506134e682826137b7565b919050565b6000604051905090565b600067ffffffffffffffff8211156135105761350f61391e565b5b61351982613961565b9050602081019050919050565b600067ffffffffffffffff8211156135415761354061391e565b5b61354a82613961565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135c582613739565b91506135d083613739565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561360557613604613862565b5b828201905092915050565b600061361b82613739565b915061362683613739565b92508261363657613635613891565b5b828204905092915050565b600061364c82613739565b915061365783613739565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136905761368f613862565b5b828202905092915050565b60006136a682613739565b91506136b183613739565b9250828210156136c4576136c3613862565b5b828203905092915050565b60006136da82613719565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613770578082015181840152602081019050613755565b8381111561377f576000848401525b50505050565b6000600282049050600182168061379d57607f821691505b602082108114156137b1576137b06138c0565b5b50919050565b6137c082613961565b810181811067ffffffffffffffff821117156137df576137de61391e565b5b80604052505050565b60006137f382613739565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561382657613825613862565b5b600182019050919050565b600061383c82613739565b915061384783613739565b92508261385757613856613891565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f4e6f206d6f72652044524f494453000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b613b64816136cf565b8114613b6f57600080fd5b50565b613b7b816136e1565b8114613b8657600080fd5b50565b613b92816136ed565b8114613b9d57600080fd5b50565b613ba981613739565b8114613bb457600080fd5b5056fea2646970667358221220be49ee6814db7867e1a451b40fdd89c6c7aeea1d60028cc9e3046009c69e1f8b64736f6c63430008070033

Deployed Bytecode Sourcemap

59864:3188:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43625:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46738:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48241:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47804:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42874:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49106:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60136:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62297:78;;;;;;;;;;;;;:::i;:::-;;62659:206;;;;;;;;;;;;;:::i;:::-;;49347:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61951:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60289:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61855:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60218:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46546:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43994:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4740:103;;;;;;;;;;;;;:::i;:::-;;62383:84;;;;;;;;;;;;;:::i;:::-;;4089:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62197:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62094:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46907:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62873:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60013:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60559:699;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48517:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59973:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60092:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49603:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62475:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61382:465;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60249:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60177:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48875:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4998:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60056:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43625:305;43727:4;43779:25;43764:40;;;:11;:40;;;;:105;;;;43836:33;43821:48;;;:11;:48;;;;43764:105;:158;;;;43886:36;43910:11;43886:23;:36::i;:::-;43764:158;43744:178;;43625:305;;;:::o;46738:100::-;46792:13;46825:5;46818:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46738:100;:::o;48241:204::-;48309:7;48334:16;48342:7;48334;:16::i;:::-;48329:64;;48359:34;;;;;;;;;;;;;;48329:64;48413:15;:24;48429:7;48413:24;;;;;;;;;;;;;;;;;;;;;48406:31;;48241:204;;;:::o;47804:371::-;47877:13;47893:24;47909:7;47893:15;:24::i;:::-;47877:40;;47938:5;47932:11;;:2;:11;;;47928:48;;;47952:24;;;;;;;;;;;;;;47928:48;48009:5;47993:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;48019:37;48036:5;48043:12;:10;:12::i;:::-;48019:16;:37::i;:::-;48018:38;47993:63;47989:138;;;48080:35;;;;;;;;;;;;;;47989:138;48139:28;48148:2;48152:7;48161:5;48139:8;:28::i;:::-;47866:309;47804:371;;:::o;42874:303::-;42918:7;43143:15;:13;:15::i;:::-;43128:12;;43112:13;;:28;:46;43105:53;;42874:303;:::o;49106:170::-;49240:28;49250:4;49256:2;49260:7;49240:9;:28::i;:::-;49106:170;;;:::o;60136:32::-;;;;:::o;62297:78::-;4320:12;:10;:12::i;:::-;4309:23;;:7;:5;:7::i;:::-;:23;;;4301:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62359:8:::1;;;;;;;;;;;62358:9;62347:8;;:20;;;;;;;;;;;;;;;;;;62297:78::o:0;62659:206::-;4320:12;:10;:12::i;:::-;4309:23;;:7;:5;:7::i;:::-;:23;;;4301:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62710:12:::1;62736:10;62728:24;;62774:21;62728:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62709:101;;;62829:7;62821:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;62698:167;62659:206::o:0;49347:185::-;49485:39;49502:4;49508:2;49512:7;49485:39;;;;;;;;;;;;:16;:39::i;:::-;49347:185;;;:::o;61951:135::-;4320:12;:10;:12::i;:::-;4309:23;;:7;:5;:7::i;:::-;:23;;;4301:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62060:18:::1;62040:17;:38;;;;;;;;;;;;:::i;:::-;;61951:135:::0;:::o;60289:27::-;;;;;;;;;;;;;:::o;61855:88::-;4320:12;:10;:12::i;:::-;4309:23;;:7;:5;:7::i;:::-;:23;;;4301:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61932:3:::1;61922:7;:13;;;;;;;;;;;;:::i;:::-;;61855:88:::0;:::o;60218:22::-;;;;:::o;46546:125::-;46610:7;46637:21;46650:7;46637:12;:21::i;:::-;:26;;;46630:33;;46546:125;;;:::o;43994:206::-;44058:7;44099:1;44082:19;;:5;:19;;;44078:60;;;44110:28;;;;;;;;;;;;;;44078:60;44164:12;:19;44177:5;44164:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;44156:36;;44149:43;;43994:206;;;:::o;4740:103::-;4320:12;:10;:12::i;:::-;4309:23;;:7;:5;:7::i;:::-;:23;;;4301:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4805:30:::1;4832:1;4805:18;:30::i;:::-;4740:103::o:0;62383:84::-;4320:12;:10;:12::i;:::-;4309:23;;:7;:5;:7::i;:::-;:23;;;4301:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62448:11:::1;;;;;;;;;;;62447:12;62433:11;;:26;;;;;;;;;;;;;;;;;;62383:84::o:0;4089:87::-;4135:7;4162:6;;;;;;;;;;;4155:13;;4089:87;:::o;62197:92::-;4320:12;:10;:12::i;:::-;4309:23;;:7;:5;:7::i;:::-;:23;;;4301:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62272:9:::1;62264:5;:17;;;;62197:92:::0;:::o;62094:95::-;4320:12;:10;:12::i;:::-;4309:23;;:7;:5;:7::i;:::-;:23;;;4301:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62175:6:::1;62163:9;:18;;;;62094:95:::0;:::o;46907:104::-;46963:13;46996:7;46989:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46907:104;:::o;62873:176::-;4320:12;:10;:12::i;:::-;4309:23;;:7;:5;:7::i;:::-;:23;;;4301:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62981:9:::1;;62969:8;62953:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;62945:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63020:23;63030:2;63034:8;63020:9;:23::i;:::-;62873:176:::0;;:::o;60013:34::-;;;;:::o;60559:699::-;60614:12;60629:5;;60614:20;;60643:11;60702:1;60690:9;;:13;;;;:::i;:::-;60682:5;60666:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;60665:109;;;;;60757:16;;60748:5;60716:17;:29;60734:10;60716:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;60665:109;60643:132;;60790:6;60786:322;;;60814:1;60807:8;;60786:322;;;60876:5;;60868;:13;;;;:::i;:::-;60855:9;:26;;60847:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60957:9;;60948:5;60932:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;60924:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;61002:11;;;;;;;;;;;60994:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;61067:8;;61058:5;:17;;61050:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;60786:322;61122:6;61118:72;;;61175:5;61142:17;:29;61160:10;61142:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;61118:72;61199:28;61209:10;61221:5;61199:9;:28::i;:::-;61245:5;61235:6;;:15;;;;;;;:::i;:::-;;;;;;;;60605:653;;60559:699;:::o;48517:287::-;48628:12;:10;:12::i;:::-;48616:24;;:8;:24;;;48612:54;;;48649:17;;;;;;;;;;;;;;48612:54;48724:8;48679:18;:32;48698:12;:10;:12::i;:::-;48679:32;;;;;;;;;;;;;;;:42;48712:8;48679:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;48777:8;48748:48;;48763:12;:10;:12::i;:::-;48748:48;;;48787:8;48748:48;;;;;;:::i;:::-;;;;;;;;48517:287;;:::o;59973:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;60092:35::-;;;;:::o;49603:369::-;49770:28;49780:4;49786:2;49790:7;49770:9;:28::i;:::-;49813:15;:2;:13;;;:15::i;:::-;:76;;;;;49833:56;49864:4;49870:2;49874:7;49883:5;49833:30;:56::i;:::-;49832:57;49813:76;49809:156;;;49913:40;;;;;;;;;;;;;;49809:156;49603:369;;;;:::o;62475:75::-;62516:4;62536:6;;62529:13;;62475:75;:::o;61382:465::-;61500:13;61553:16;61561:7;61553;:16::i;:::-;61531:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;61673:5;61661:17;;:8;;;;;;;;;;;:17;;;61657:97;;;61723:17;61706:35;;;;;;;;:::i;:::-;;;;;;;;;;;;;61692:50;;;;61657:97;61801:7;61810:18;:7;:16;:18::i;:::-;61784:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61770:69;;61382:465;;;;:::o;60249:31::-;;;;;;;;;;;;;:::o;60177:32::-;;;;:::o;48875:164::-;48972:4;48996:18;:25;49015:5;48996:25;;;;;;;;;;;;;;;:35;49022:8;48996:35;;;;;;;;;;;;;;;;;;;;;;;;;48989:42;;48875:164;;;;:::o;4998:201::-;4320:12;:10;:12::i;:::-;4309:23;;:7;:5;:7::i;:::-;:23;;;4301:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5107:1:::1;5087:22;;:8;:22;;;;5079:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5163:28;5182:8;5163:18;:28::i;:::-;4998:201:::0;:::o;60056:27::-;;;;:::o;15733:157::-;15818:4;15857:25;15842:40;;;:11;:40;;;;15835:47;;15733:157;;;:::o;50227:174::-;50284:4;50327:7;50308:15;:13;:15::i;:::-;:26;;:53;;;;;50348:13;;50338:7;:23;50308:53;:85;;;;;50366:11;:20;50378:7;50366:20;;;;;;;;;;;:27;;;;;;;;;;;;50365:28;50308:85;50301:92;;50227:174;;;:::o;3434:98::-;3487:7;3514:10;3507:17;;3434:98;:::o;58138:196::-;58280:2;58253:15;:24;58269:7;58253:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;58318:7;58314:2;58298:28;;58307:5;58298:28;;;;;;;;;;;;58138:196;;;:::o;62558:93::-;62615:7;62642:1;62635:8;;62558:93;:::o;53081:2130::-;53196:35;53234:21;53247:7;53234:12;:21::i;:::-;53196:59;;53294:4;53272:26;;:13;:18;;;:26;;;53268:67;;53307:28;;;;;;;;;;;;;;53268:67;53348:22;53390:4;53374:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;53411:36;53428:4;53434:12;:10;:12::i;:::-;53411:16;:36::i;:::-;53374:73;:126;;;;53488:12;:10;:12::i;:::-;53464:36;;:20;53476:7;53464:11;:20::i;:::-;:36;;;53374:126;53348:153;;53519:17;53514:66;;53545:35;;;;;;;;;;;;;;53514:66;53609:1;53595:16;;:2;:16;;;53591:52;;;53620:23;;;;;;;;;;;;;;53591:52;53656:43;53678:4;53684:2;53688:7;53697:1;53656:21;:43::i;:::-;53764:35;53781:1;53785:7;53794:4;53764:8;:35::i;:::-;54125:1;54095:12;:18;54108:4;54095:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54169:1;54141:12;:16;54154:2;54141:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54187:31;54221:11;:20;54233:7;54221:20;;;;;;;;;;;54187:54;;54272:2;54256:8;:13;;;:18;;;;;;;;;;;;;;;;;;54322:15;54289:8;:23;;;:49;;;;;;;;;;;;;;;;;;54590:19;54622:1;54612:7;:11;54590:33;;54638:31;54672:11;:24;54684:11;54672:24;;;;;;;;;;;54638:58;;54740:1;54715:27;;:8;:13;;;;;;;;;;;;:27;;;54711:384;;;54925:13;;54910:11;:28;54906:174;;54979:4;54963:8;:13;;;:20;;;;;;;;;;;;;;;;;;55032:13;:28;;;55006:8;:23;;;:54;;;;;;;;;;;;;;;;;;54906:174;54711:384;54070:1036;;;55142:7;55138:2;55123:27;;55132:4;55123:27;;;;;;;;;;;;55161:42;55182:4;55188:2;55192:7;55201:1;55161:20;:42::i;:::-;53185:2026;;53081:2130;;;:::o;45375:1109::-;45437:21;;:::i;:::-;45471:12;45486:7;45471:22;;45554:4;45535:15;:13;:15::i;:::-;:23;;:47;;;;;45569:13;;45562:4;:20;45535:47;45531:886;;;45603:31;45637:11;:17;45649:4;45637:17;;;;;;;;;;;45603:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45678:9;:16;;;45673:729;;45749:1;45723:28;;:9;:14;;;:28;;;45719:101;;45787:9;45780:16;;;;;;45719:101;46122:261;46129:4;46122:261;;;46162:6;;;;;;;;46207:11;:17;46219:4;46207:17;;;;;;;;;;;46195:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46281:1;46255:28;;:9;:14;;;:28;;;46251:109;;46323:9;46316:16;;;;;;46251:109;46122:261;;;45673:729;45584:833;45531:886;46445:31;;;;;;;;;;;;;;45375:1109;;;;:::o;5359:191::-;5433:16;5452:6;;;;;;;;;;;5433:25;;5478:8;5469:6;;:17;;;;;;;;;;;;;;;;;;5533:8;5502:40;;5523:8;5502:40;;;;;;;;;;;;5422:128;5359:191;:::o;50409:104::-;50478:27;50488:2;50492:8;50478:27;;;;;;;;;;;;:9;:27::i;:::-;50409:104;;:::o;6663:326::-;6723:4;6980:1;6958:7;:19;;;:23;6951:30;;6663:326;;;:::o;58826:667::-;58989:4;59026:2;59010:36;;;59047:12;:10;:12::i;:::-;59061:4;59067:7;59076:5;59010:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;59006:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59261:1;59244:6;:13;:18;59240:235;;;59290:40;;;;;;;;;;;;;;59240:235;59433:6;59427:13;59418:6;59414:2;59410:15;59403:38;59006:480;59139:45;;;59129:55;;;:6;:55;;;;59122:62;;;58826:667;;;;;;:::o;1108:723::-;1164:13;1394:1;1385:5;:10;1381:53;;;1412:10;;;;;;;;;;;;;;;;;;;;;1381:53;1444:12;1459:5;1444:20;;1475:14;1500:78;1515:1;1507:4;:9;1500:78;;1533:8;;;;;:::i;:::-;;;;1564:2;1556:10;;;;;:::i;:::-;;;1500:78;;;1588:19;1620:6;1610:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1588:39;;1638:154;1654:1;1645:5;:10;1638:154;;1682:1;1672:11;;;;;:::i;:::-;;;1749:2;1741:5;:10;;;;:::i;:::-;1728:2;:24;;;;:::i;:::-;1715:39;;1698:6;1705;1698:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1778:2;1769:11;;;;;:::i;:::-;;;1638:154;;;1816:6;1802:21;;;;;1108:723;;;;:::o;59501:159::-;;;;;:::o;59668:158::-;;;;;:::o;50876:163::-;50999:32;51005:2;51009:8;51019:5;51026:4;50999:5;:32::i;:::-;50876:163;;;:::o;51298:1775::-;51437:20;51460:13;;51437:36;;51502:1;51488:16;;:2;:16;;;51484:48;;;51513:19;;;;;;;;;;;;;;51484:48;51559:1;51547:8;:13;51543:44;;;51569:18;;;;;;;;;;;;;;51543:44;51600:61;51630:1;51634:2;51638:12;51652:8;51600:21;:61::i;:::-;51973:8;51938:12;:16;51951:2;51938:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52037:8;51997:12;:16;52010:2;51997:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52096:2;52063:11;:25;52075:12;52063:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;52163:15;52113:11;:25;52125:12;52113:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;52196:20;52219:12;52196:35;;52246:11;52275:8;52260:12;:23;52246:37;;52304:4;:23;;;;;52312:15;:2;:13;;;:15::i;:::-;52304:23;52300:641;;;52348:314;52404:12;52400:2;52379:38;;52396:1;52379:38;;;;;;;;;;;;52445:69;52484:1;52488:2;52492:14;;;;;;52508:5;52445:30;:69::i;:::-;52440:174;;52550:40;;;;;;;;;;;;;;52440:174;52657:3;52641:12;:19;;52348:314;;52743:12;52726:13;;:29;52722:43;;52757:8;;;52722:43;52300:641;;;52806:120;52862:14;;;;;;52858:2;52837:40;;52854:1;52837:40;;;;;;;;;;;;52921:3;52905:12;:19;;52806:120;;52300:641;52971:12;52955:13;:28;;;;51913:1082;;53005:60;53034:1;53038:2;53042:12;53056:8;53005:20;:60::i;:::-;51426:1647;51298: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:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:400::-;11039:3;11060:84;11142:1;11137:3;11060:84;:::i;:::-;11053:91;;11153:93;11242:3;11153:93;:::i;:::-;11271:1;11266:3;11262:11;11255:18;;10879:400;;;:::o;11285:366::-;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:::-;12171:3;12192:67;12256:2;12251:3;12192:67;:::i;:::-;12185:74;;12268:93;12357:3;12268:93;:::i;:::-;12386:2;12381:3;12377:12;12370:19;;12029:366;;;:::o;12401:398::-;12560:3;12581:83;12662:1;12657:3;12581:83;:::i;:::-;12574:90;;12673:93;12762:3;12673:93;:::i;:::-;12791:1;12786:3;12782:11;12775:18;;12401:398;;;:::o;12805:366::-;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:164::-;27733:16;27729:1;27721:6;27717:14;27710:40;27593:164;:::o;27763:155::-;27903:7;27899:1;27891:6;27887:14;27880:31;27763:155;:::o;27924:182::-;28064:34;28060:1;28052:6;28048:14;28041:58;27924:182;:::o;28112:234::-;28252:34;28248:1;28240:6;28236:14;28229:58;28321:17;28316:2;28308:6;28304:15;28297:42;28112:234;:::o;28352:179::-;28492:31;28488:1;28480:6;28476:14;28469:55;28352:179;:::o;28537:114::-;;:::o;28657:166::-;28797:18;28793:1;28785:6;28781:14;28774:42;28657:166;:::o;28829:169::-;28969:21;28965:1;28957:6;28953:14;28946:45;28829:169;:::o;29004:122::-;29077:24;29095:5;29077:24;:::i;:::-;29070:5;29067:35;29057:63;;29116:1;29113;29106:12;29057:63;29004:122;:::o;29132:116::-;29202:21;29217:5;29202:21;:::i;:::-;29195:5;29192:32;29182:60;;29238:1;29235;29228:12;29182:60;29132:116;:::o;29254:120::-;29326:23;29343:5;29326:23;:::i;:::-;29319:5;29316:34;29306:62;;29364:1;29361;29354:12;29306:62;29254:120;:::o;29380:122::-;29453:24;29471:5;29453:24;:::i;:::-;29446:5;29443:35;29433:63;;29492:1;29489;29482:12;29433:63;29380:122;:::o

Swarm Source

ipfs://be49ee6814db7867e1a451b40fdd89c6c7aeea1d60028cc9e3046009c69e1f8b
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.