ETH Price: $3,386.74 (+1.42%)

Token

Pixel Emoji (PIXEMOJ)
 

Overview

Max Total Supply

285 PIXEMOJ

Holders

67

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mehmethan.eth
Balance
3 PIXEMOJ
0x3195c3F94154364E897711e501e104f40D8e23fb
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PixelEmojis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-19
*/

// File: node_modules\@openzeppelin\contracts\utils\Context.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin\contracts\access\Ownable.sol


pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: node_modules\@openzeppelin\contracts\utils\introspection\IERC165.sol


pragma solidity ^0.8.0;

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

// File: node_modules\@openzeppelin\contracts\token\ERC721\IERC721.sol


pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: node_modules\@openzeppelin\contracts\token\ERC721\IERC721Receiver.sol


pragma solidity ^0.8.0;

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

// File: node_modules\@openzeppelin\contracts\token\ERC721\extensions\IERC721Metadata.sol


pragma solidity ^0.8.0;


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

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

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

// File: node_modules\@openzeppelin\contracts\utils\Address.sol


pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: node_modules\@openzeppelin\contracts\utils\Strings.sol


pragma solidity ^0.8.0;

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

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

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

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

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

// File: node_modules\@openzeppelin\contracts\utils\introspection\ERC165.sol


pragma solidity ^0.8.0;


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

// File: node_modules\@openzeppelin\contracts\token\ERC721\ERC721.sol


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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //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);
    }

    /**
     * @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);
    }

    /**
     * @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 of token that is not own");
        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);
    }

    /**
     * @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 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;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: node_modules\@openzeppelin\contracts\token\ERC721\extensions\IERC721Enumerable.sol


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

    /**
     * @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\ERC721Enumerable.sol


pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
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];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    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);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    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();
    }
}

// File: export\pixelEmojis.sol


pragma solidity 0.8.7;



contract PixelEmojis is Ownable, ERC721Enumerable {
    using Strings for uint256;

    string public contractMetadataURI =
        "https://pixelemojistorage.blob.core.windows.net/emojis/pixel-emoji-metadata.json";
    string public baseURI =
        "https://pixelemojistorage.blob.core.windows.net/emojis/";
    string public baseExtension = ".json";

    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public constant MAX_MINTABLE_AT_ONCE = 30;
    uint256 public minting_cost = 0.06 ether;
    uint256 public minting_cost_discounted = 0.03 ether;
    bool public is_public_minting_allowed = false;
    bool public is_discount_active = false;

    constructor() payable ERC721("Pixel Emoji", "PIXEMOJ") {
        mintBulk(msg.sender, 25);
    }

    receive() external payable {} // default receive, so ether can be sent to the contract account

    function common_requires(uint256 _mintedAmount) internal view {
        require(
            is_public_minting_allowed || msg.sender == owner(),
            "Drop must be active to mint a Pixel Emoji"
        );
        require(
            _mintedAmount > 0,
            "Only positive amounts of Pixel Emojis can be minted"
        );
        require(
            _mintedAmount <= MAX_MINTABLE_AT_ONCE,
            "Maximum mintable in one batch is 30 Pixel Emojis"
        );
        require(
            totalSupply() + _mintedAmount <= MAX_SUPPLY,
            "Amount to be minted is not available, you are reaching max supply."
        );
    }

    function mint3(address _to) public payable {
        mint(_to, 3, 0.055 ether); // 3 * 0.055 = 0.165 ether
    }

    function mint5(address _to) public payable {
        mint(_to, 5, 0.05 ether); // 5 * 0.05 = 0.25 ether
    }

    function mint10(address _to) public payable {
        mint(_to, 10, 0.045 ether); // 10 * 0.045 = 0.45 ether
    }

    function mint20(address _to) public payable {
        mint(_to, 20, 0.04 ether); // 20 * 0.04 = 0.8 ether
    }

    function mintBulk(address _to, uint256 _mintAmount) public payable {
        uint256 cost_per_unit;

        if (is_discount_active) {
            cost_per_unit = minting_cost_discounted;
        } else {
            cost_per_unit = minting_cost;
        }

        mint(_to, _mintAmount, cost_per_unit);
    }

    function pay(uint256 amount) public payable {
        if (msg.sender != owner()) {
            require(
                msg.value >= amount,
                "Not enough ether received for the transaction"
            );
        }
    }

    function walletOfAccount(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i = 0; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokenIds;
    }

    function contractURI() public view returns (string memory) {
        return contractMetadataURI;
    }

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

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }

    function getBalance() public view returns (uint256) {
        return address(this).balance;
    }

    function balance(address any_account)
        public
        view
        returns (uint256 accountBalance)
    {
        accountBalance = any_account.balance;
    }

    // private

    function mint(
        address _to, 
        uint256 amount_minted,
        uint256 price_each
    ) private {
        uint256 supply = totalSupply();
        uint256 totalCost = amount_minted * price_each;

        common_requires(amount_minted);
        pay(totalCost);
        for (uint256 i = 1; i <= amount_minted; i++) {
            _safeMint(_to, supply + i);
        }
    }

    // internal

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

    // only owner

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

    function setContractMetadataURI(string memory _newURI) public onlyOwner {
        contractMetadataURI = _newURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        minting_cost = _newCost;
    }

    function setPublicMintingAllowed(bool _newAllowed) public onlyOwner {
        is_public_minting_allowed = _newAllowed;
    }

    function setDiscountActive(bool _newActive) public onlyOwner {
        is_discount_active = _newActive;
    }

    function withdraw() public onlyOwner {
        require(
            payable(msg.sender).send(address(this).balance),
            "The payment cannot be performed"
        );
    }

    function withdrawAmount(uint256 amount) public onlyOwner {
        (bool success, ) = msg.sender.call{value: amount}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTABLE_AT_ONCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"any_account","type":"address"}],"name":"balance","outputs":[{"internalType":"uint256","name":"accountBalance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"is_discount_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"is_public_minting_allowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mint10","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mint20","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mint3","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mint5","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintBulk","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minting_cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minting_cost_discounted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"pay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setContractMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newActive","type":"bool"}],"name":"setDiscountActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newAllowed","type":"bool"}],"name":"setPublicMintingAllowed","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfAccount","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052604051806080016040528060508152602001620066e060509139600b90805190602001906200003592919062000fb3565b506040518060600160405280603781526020016200673060379139600c90805190602001906200006792919062000fb3565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000b592919062000fb3565b5066d529ae9e860000600e55666a94d74f430000600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506040518060400160405280600b81526020017f506978656c20456d6f6a690000000000000000000000000000000000000000008152506040518060400160405280600781526020017f504958454d4f4a000000000000000000000000000000000000000000000000008152506200018e62000182620001db60201b60201c565b620001e360201b60201c565b8160019080519060200190620001a692919062000fb3565b508060029080519060200190620001bf92919062000fb3565b505050620001d5336019620002a760201b60201c565b620019cb565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000601060019054906101000a900460ff1615620002ca57600f549050620002d0565b600e5490505b620002e3838383620002e860201b60201c565b505050565b6000620002fa6200037c60201b60201c565b9050600082846200030c91906200147e565b90506200031f846200038960201b60201c565b62000330816200051560201b60201c565b6000600190505b84811162000374576200035e86828562000352919062001421565b620005a260201b60201c565b80806200036b90620015f0565b91505062000337565b505050505050565b6000600980549050905090565b601060009054906101000a900460ff1680620003df5750620003b0620005c860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b62000421576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041890620013b0565b60405180910390fd5b6000811162000467576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200045e9062001306565b60405180910390fd5b601e811115620004ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004a5906200138e565b60405180910390fd5b61271081620004c26200037c60201b60201c565b620004ce919062001421565b111562000512576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005099062001328565b60405180910390fd5b50565b62000525620005c860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146200059f57803410156200059e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200059590620013d2565b60405180910390fd5b5b50565b620005c4828260405180602001604052806000815250620005f160201b60201c565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200060383836200065f60201b60201c565b6200061860008484846200084560201b60201c565b6200065a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200065190620012c2565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620006d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c9906200136c565b60405180910390fd5b620006e381620009ff60201b60201c565b1562000726576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071d90620012e4565b60405180910390fd5b6200073a6000838362000a6b60201b60201c565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200078c919062001421565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620008738473ffffffffffffffffffffffffffffffffffffffff1662000bb260201b62001f691760201c565b15620009f2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620008a5620001db60201b60201c565b8786866040518563ffffffff1660e01b8152600401620008c994939291906200126e565b602060405180830381600087803b158015620008e457600080fd5b505af19250505080156200091857506040513d601f19601f820116820180604052508101906200091591906200107a565b60015b620009a1573d80600081146200094b576040519150601f19603f3d011682016040523d82523d6000602084013e62000950565b606091505b5060008151141562000999576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200099090620012c2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620009f7565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000a8383838362000bc560201b62001f7c1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000ad05762000aca8162000bca60201b60201c565b62000b18565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000b175762000b16838262000c1360201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000b655762000b5f8162000d9060201b60201c565b62000bad565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000bac5762000bab828262000e6c60201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000c2d8462000ef860201b6200140b1760201c565b62000c399190620014df565b905060006008600084815260200190815260200160002054905081811462000d1f576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160098054905062000da69190620014df565b90506000600a600084815260200190815260200160002054905060006009838154811062000dd95762000dd8620016cb565b5b90600052602060002001549050806009838154811062000dfe5762000dfd620016cb565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548062000e505762000e4f6200169c565b5b6001900381819060005260206000200160009055905550505050565b600062000e848362000ef860201b6200140b1760201c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000f6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f63906200134a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000fc190620015ba565b90600052602060002090601f01602090048101928262000fe5576000855562001031565b82601f106200100057805160ff191683800117855562001031565b8280016001018555821562001031579182015b828111156200103057825182559160200191906001019062001013565b5b50905062001040919062001044565b5090565b5b808211156200105f57600081600090555060010162001045565b5090565b6000815190506200107481620019b1565b92915050565b600060208284031215620010935762001092620016fa565b5b6000620010a38482850162001063565b91505092915050565b620010b7816200151a565b82525050565b6000620010ca82620013f4565b620010d68185620013ff565b9350620010e881856020860162001584565b620010f381620016ff565b840191505092915050565b60006200110d60328362001410565b91506200111a8262001710565b604082019050919050565b600062001134601c8362001410565b915062001141826200175f565b602082019050919050565b60006200115b60338362001410565b9150620011688262001788565b604082019050919050565b60006200118260428362001410565b91506200118f82620017d7565b606082019050919050565b6000620011a9602a8362001410565b9150620011b6826200184c565b604082019050919050565b6000620011d060208362001410565b9150620011dd826200189b565b602082019050919050565b6000620011f760308362001410565b91506200120482620018c4565b604082019050919050565b60006200121e60298362001410565b91506200122b8262001913565b604082019050919050565b600062001245602d8362001410565b9150620012528262001962565b604082019050919050565b62001268816200157a565b82525050565b6000608082019050620012856000830187620010ac565b620012946020830186620010ac565b620012a360408301856200125d565b8181036060830152620012b78184620010bd565b905095945050505050565b60006020820190508181036000830152620012dd81620010fe565b9050919050565b60006020820190508181036000830152620012ff8162001125565b9050919050565b6000602082019050818103600083015262001321816200114c565b9050919050565b60006020820190508181036000830152620013438162001173565b9050919050565b6000602082019050818103600083015262001365816200119a565b9050919050565b600060208201905081810360008301526200138781620011c1565b9050919050565b60006020820190508181036000830152620013a981620011e8565b9050919050565b60006020820190508181036000830152620013cb816200120f565b9050919050565b60006020820190508181036000830152620013ed8162001236565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200142e826200157a565b91506200143b836200157a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200147357620014726200163e565b5b828201905092915050565b60006200148b826200157a565b915062001498836200157a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620014d457620014d36200163e565b5b828202905092915050565b6000620014ec826200157a565b9150620014f9836200157a565b9250828210156200150f576200150e6200163e565b5b828203905092915050565b600062001527826200155a565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620015a457808201518184015260208101905062001587565b83811115620015b4576000848401525b50505050565b60006002820490506001821680620015d357607f821691505b60208210811415620015ea57620015e96200166d565b5b50919050565b6000620015fd826200157a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200163357620016326200163e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4f6e6c7920706f73697469766520616d6f756e7473206f6620506978656c204560008201527f6d6f6a69732063616e206265206d696e74656400000000000000000000000000602082015250565b7f416d6f756e7420746f206265206d696e746564206973206e6f7420617661696c60008201527f61626c652c20796f7520617265207265616368696e67206d617820737570706c60208201527f792e000000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d6178696d756d206d696e7461626c6520696e206f6e6520626174636820697360008201527f20333020506978656c20456d6f6a697300000000000000000000000000000000602082015250565b7f44726f70206d7573742062652061637469766520746f206d696e74206120506960008201527f78656c20456d6f6a690000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820657468657220726563656976656420666f7220746860008201527f65207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b620019bc816200152e565b8114620019c857600080fd5b50565b614d0580620019db6000396000f3fe6080604052600436106102815760003560e01c806373e927841161014f578063bca4d166116100c1578063e37c6b4c1161007a578063e37c6b4c1461093b578063e3d670d714610966578063e8a3d485146109a3578063e985e9c5146109ce578063f1e4ce1914610a0b578063f2fde38b14610a3657610288565b8063bca4d16614610847578063c290d69114610863578063c66828621461087f578063c87b56dd146108aa578063cbf775b2146108e7578063da3ef23f1461091257610288565b8063a22cb46511610113578063a22cb46514610755578063a4dc9a801461077e578063ab5c0947146107bb578063b88d4fde146107e6578063b96d31c71461080f578063ba44d9851461082b57610288565b806373e92784146106825780637dbd2600146106ad5780638da5cb5b146106d657806395d89b4114610701578063a201fc501461072c57610288565b806332cb6b0c116101f357806355f804b3116101ac57806355f804b3146105745780636352211e1461059d5780636885b03c146105da5780636c0360eb1461060357806370a082311461062e578063715018a61461066b57610288565b806332cb6b0c146104875780633ccfd60b146104b257806342842e0e146104c957806344a0d68a146104f25780634f68ec7f1461051b5780634f6ccce71461053757610288565b806309dde2091161024557806309dde209146103845780630a549f41146103a057806312065fe0146103cb57806318160ddd146103f657806323b872dd146104215780632f745c591461044a57610288565b806301ffc9a71461028d5780630562b9f7146102ca57806306fdde03146102f3578063081812fc1461031e578063095ea7b31461035b57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102b460048036038101906102af91906135f4565b610a5f565b6040516102c19190613cf5565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190613697565b610ad9565b005b3480156102ff57600080fd5b50610308610c05565b6040516103159190613d10565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190613697565b610c97565b6040516103529190613c6c565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d9190613587565b610d1c565b005b61039e60048036038101906103999190613404565b610e34565b005b3480156103ac57600080fd5b506103b5610e4a565b6040516103c29190613cf5565b60405180910390f35b3480156103d757600080fd5b506103e0610e5d565b6040516103ed9190614052565b60405180910390f35b34801561040257600080fd5b5061040b610e65565b6040516104189190614052565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190613471565b610e72565b005b34801561045657600080fd5b50610471600480360381019061046c9190613587565b610ed2565b60405161047e9190614052565b60405180910390f35b34801561049357600080fd5b5061049c610f77565b6040516104a99190614052565b60405180910390f35b3480156104be57600080fd5b506104c7610f7d565b005b3480156104d557600080fd5b506104f060048036038101906104eb9190613471565b61106f565b005b3480156104fe57600080fd5b5061051960048036038101906105149190613697565b61108f565b005b61053560048036038101906105309190613404565b611115565b005b34801561054357600080fd5b5061055e60048036038101906105599190613697565b61112b565b60405161056b9190614052565b60405180910390f35b34801561058057600080fd5b5061059b6004803603810190610596919061364e565b61119c565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190613697565b611232565b6040516105d19190613c6c565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc91906135c7565b6112e4565b005b34801561060f57600080fd5b5061061861137d565b6040516106259190613d10565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190613404565b61140b565b6040516106629190614052565b60405180910390f35b34801561067757600080fd5b506106806114c3565b005b34801561068e57600080fd5b5061069761154b565b6040516106a49190613d10565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf91906135c7565b6115d9565b005b3480156106e257600080fd5b506106eb611672565b6040516106f89190613c6c565b60405180910390f35b34801561070d57600080fd5b5061071661169b565b6040516107239190613d10565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e919061364e565b61172d565b005b34801561076157600080fd5b5061077c60048036038101906107779190613547565b6117c3565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613404565b611944565b6040516107b29190613cd3565b60405180910390f35b3480156107c757600080fd5b506107d06119f2565b6040516107dd9190613cf5565b60405180910390f35b3480156107f257600080fd5b5061080d600480360381019061080891906134c4565b611a05565b005b61082960048036038101906108249190613404565b611a67565b005b61084560048036038101906108409190613404565b611a7d565b005b610861600480360381019061085c9190613587565b611a93565b005b61087d60048036038101906108789190613697565b611aca565b005b34801561088b57600080fd5b50610894611b4b565b6040516108a19190613d10565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc9190613697565b611bd9565b6040516108de9190613d10565b60405180910390f35b3480156108f357600080fd5b506108fc611c83565b6040516109099190614052565b60405180910390f35b34801561091e57600080fd5b506109396004803603810190610934919061364e565b611c88565b005b34801561094757600080fd5b50610950611d1e565b60405161095d9190614052565b60405180910390f35b34801561097257600080fd5b5061098d60048036038101906109889190613404565b611d24565b60405161099a9190614052565b60405180910390f35b3480156109af57600080fd5b506109b8611d45565b6040516109c59190613d10565b60405180910390f35b3480156109da57600080fd5b506109f560048036038101906109f09190613431565b611dd7565b604051610a029190613cf5565b60405180910390f35b348015610a1757600080fd5b50610a20611e6b565b604051610a2d9190614052565b60405180910390f35b348015610a4257600080fd5b50610a5d6004803603810190610a589190613404565b611e71565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad25750610ad182611f81565b5b9050919050565b610ae1612063565b73ffffffffffffffffffffffffffffffffffffffff16610aff611672565b73ffffffffffffffffffffffffffffffffffffffff1614610b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4c90613f12565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051610b7b90613c57565b60006040518083038185875af1925050503d8060008114610bb8576040519150601f19603f3d011682016040523d82523d6000602084013e610bbd565b606091505b5050905080610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf890613ff2565b60405180910390fd5b5050565b606060018054610c149061435b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c409061435b565b8015610c8d5780601f10610c6257610100808354040283529160200191610c8d565b820191906000526020600020905b815481529060010190602001808311610c7057829003601f168201915b5050505050905090565b6000610ca28261206b565b610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890613ef2565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d2782611232565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90613fb2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db7612063565b73ffffffffffffffffffffffffffffffffffffffff161480610de65750610de581610de0612063565b611dd7565b5b610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90613e72565b60405180910390fd5b610e2f83836120d7565b505050565b610e4781600366c3663566a58000612190565b50565b601060009054906101000a900460ff1681565b600047905090565b6000600980549050905090565b610e83610e7d612063565b826121fc565b610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb990614012565b60405180910390fd5b610ecd8383836122da565b505050565b6000610edd8361140b565b8210610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1590613d52565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610f85612063565b73ffffffffffffffffffffffffffffffffffffffff16610fa3611672565b73ffffffffffffffffffffffffffffffffffffffff1614610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090613f12565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490613d32565b60405180910390fd5b565b61108a83838360405180602001604052806000815250611a05565b505050565b611097612063565b73ffffffffffffffffffffffffffffffffffffffff166110b5611672565b73ffffffffffffffffffffffffffffffffffffffff161461110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290613f12565b60405180910390fd5b80600e8190555050565b611128816014668e1bc9bf040000612190565b50565b6000611135610e65565b8210611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90614032565b60405180910390fd5b6009828154811061118a576111896144f4565b5b90600052602060002001549050919050565b6111a4612063565b73ffffffffffffffffffffffffffffffffffffffff166111c2611672565b73ffffffffffffffffffffffffffffffffffffffff1614611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f90613f12565b60405180910390fd5b80600c908051906020019061122e929190613218565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d290613eb2565b60405180910390fd5b80915050919050565b6112ec612063565b73ffffffffffffffffffffffffffffffffffffffff1661130a611672565b73ffffffffffffffffffffffffffffffffffffffff1614611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790613f12565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b600c805461138a9061435b565b80601f01602080910402602001604051908101604052809291908181526020018280546113b69061435b565b80156114035780601f106113d857610100808354040283529160200191611403565b820191906000526020600020905b8154815290600101906020018083116113e657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613e92565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114cb612063565b73ffffffffffffffffffffffffffffffffffffffff166114e9611672565b73ffffffffffffffffffffffffffffffffffffffff161461153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690613f12565b60405180910390fd5b6115496000612536565b565b600b80546115589061435b565b80601f01602080910402602001604051908101604052809291908181526020018280546115849061435b565b80156115d15780601f106115a6576101008083540402835291602001916115d1565b820191906000526020600020905b8154815290600101906020018083116115b457829003601f168201915b505050505081565b6115e1612063565b73ffffffffffffffffffffffffffffffffffffffff166115ff611672565b73ffffffffffffffffffffffffffffffffffffffff1614611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90613f12565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546116aa9061435b565b80601f01602080910402602001604051908101604052809291908181526020018280546116d69061435b565b80156117235780601f106116f857610100808354040283529160200191611723565b820191906000526020600020905b81548152906001019060200180831161170657829003601f168201915b5050505050905090565b611735612063565b73ffffffffffffffffffffffffffffffffffffffff16611753611672565b73ffffffffffffffffffffffffffffffffffffffff16146117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a090613f12565b60405180910390fd5b80600b90805190602001906117bf929190613218565b5050565b6117cb612063565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183090613e12565b60405180910390fd5b8060066000611846612063565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118f3612063565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119389190613cf5565b60405180910390a35050565b606060006119518361140b565b905060008167ffffffffffffffff81111561196f5761196e614523565b5b60405190808252806020026020018201604052801561199d5781602001602082028036833780820191505090505b50905060005b828110156119e7576119b58582610ed2565b8282815181106119c8576119c76144f4565b5b60200260200101818152505080806119df906143be565b9150506119a3565b508092505050919050565b601060019054906101000a900460ff1681565b611a16611a10612063565b836121fc565b611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90614012565b60405180910390fd5b611a61848484846125fa565b50505050565b611a7a81600a669fdf42f6e48000612190565b50565b611a9081600566b1a2bc2ec50000612190565b50565b6000601060019054906101000a900460ff1615611ab457600f549050611aba565b600e5490505b611ac5838383612190565b505050565b611ad2611672565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b485780341015611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90613fd2565b60405180910390fd5b5b50565b600d8054611b589061435b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b849061435b565b8015611bd15780601f10611ba657610100808354040283529160200191611bd1565b820191906000526020600020905b815481529060010190602001808311611bb457829003601f168201915b505050505081565b6060611be48261206b565b611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a90613f92565b60405180910390fd5b6000611c2d612656565b90506000815111611c4d5760405180602001604052806000815250611c7b565b80611c57846126e8565b600d604051602001611c6b93929190613c26565b6040516020818303038152906040525b915050919050565b601e81565b611c90612063565b73ffffffffffffffffffffffffffffffffffffffff16611cae611672565b73ffffffffffffffffffffffffffffffffffffffff1614611d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfb90613f12565b60405180910390fd5b80600d9080519060200190611d1a929190613218565b5050565b600f5481565b60008173ffffffffffffffffffffffffffffffffffffffff16319050919050565b6060600b8054611d549061435b565b80601f0160208091040260200160405190810160405280929190818152602001828054611d809061435b565b8015611dcd5780601f10611da257610100808354040283529160200191611dcd565b820191906000526020600020905b815481529060010190602001808311611db057829003601f168201915b5050505050905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b611e79612063565b73ffffffffffffffffffffffffffffffffffffffff16611e97611672565b73ffffffffffffffffffffffffffffffffffffffff1614611eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee490613f12565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490613d92565b60405180910390fd5b611f6681612536565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061204c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061205c575061205b82612849565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661214a83611232565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061219a610e65565b9050600082846121aa9190614217565b90506121b5846128b3565b6121be81611aca565b6000600190505b8481116121f4576121e18682856121dc9190614190565b612a20565b80806121ec906143be565b9150506121c5565b505050505050565b60006122078261206b565b612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d90613e32565b60405180910390fd5b600061225183611232565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122c057508373ffffffffffffffffffffffffffffffffffffffff166122a884610c97565b73ffffffffffffffffffffffffffffffffffffffff16145b806122d157506122d08185611dd7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122fa82611232565b73ffffffffffffffffffffffffffffffffffffffff1614612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234790613f72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b790613df2565b60405180910390fd5b6123cb838383612a3e565b6123d66000826120d7565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124269190614271565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461247d9190614190565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126058484846122da565b61261184848484612b52565b612650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264790613d72565b60405180910390fd5b50505050565b6060600c80546126659061435b565b80601f01602080910402602001604051908101604052809291908181526020018280546126919061435b565b80156126de5780601f106126b3576101008083540402835291602001916126de565b820191906000526020600020905b8154815290600101906020018083116126c157829003601f168201915b5050505050905090565b60606000821415612730576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612844565b600082905060005b6000821461276257808061274b906143be565b915050600a8261275b91906141e6565b9150612738565b60008167ffffffffffffffff81111561277e5761277d614523565b5b6040519080825280601f01601f1916602001820160405280156127b05781602001600182028036833780820191505090505b5090505b6000851461283d576001826127c99190614271565b9150600a856127d89190614407565b60306127e49190614190565b60f81b8183815181106127fa576127f96144f4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561283691906141e6565b94506127b4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b601060009054906101000a900460ff168061290057506128d1611672565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61293f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293690613f52565b60405180910390fd5b60008111612982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297990613dd2565b60405180910390fd5b601e8111156129c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bd90613f32565b60405180910390fd5b612710816129d2610e65565b6129dc9190614190565b1115612a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1490613e52565b60405180910390fd5b50565b612a3a828260405180602001604052806000815250612ce9565b5050565b612a49838383611f7c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a8c57612a8781612d44565b612acb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612aca57612ac98382612d8d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b0e57612b0981612efa565b612b4d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b4c57612b4b8282612fcb565b5b5b505050565b6000612b738473ffffffffffffffffffffffffffffffffffffffff16611f69565b15612cdc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b9c612063565b8786866040518563ffffffff1660e01b8152600401612bbe9493929190613c87565b602060405180830381600087803b158015612bd857600080fd5b505af1925050508015612c0957506040513d601f19601f82011682018060405250810190612c069190613621565b60015b612c8c573d8060008114612c39576040519150601f19603f3d011682016040523d82523d6000602084013e612c3e565b606091505b50600081511415612c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7b90613d72565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ce1565b600190505b949350505050565b612cf3838361304a565b612d006000848484612b52565b612d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3690613d72565b60405180910390fd5b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d9a8461140b565b612da49190614271565b9050600060086000848152602001908152602001600020549050818114612e89576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612f0e9190614271565b90506000600a6000848152602001908152602001600020549050600060098381548110612f3e57612f3d6144f4565b5b906000526020600020015490508060098381548110612f6057612f5f6144f4565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612faf57612fae6144c5565b5b6001900381819060005260206000200160009055905550505050565b6000612fd68361140b565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b190613ed2565b60405180910390fd5b6130c38161206b565b15613103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fa90613db2565b60405180910390fd5b61310f60008383612a3e565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461315f9190614190565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546132249061435b565b90600052602060002090601f016020900481019282613246576000855561328d565b82601f1061325f57805160ff191683800117855561328d565b8280016001018555821561328d579182015b8281111561328c578251825591602001919060010190613271565b5b50905061329a919061329e565b5090565b5b808211156132b757600081600090555060010161329f565b5090565b60006132ce6132c984614092565b61406d565b9050828152602081018484840111156132ea576132e9614557565b5b6132f5848285614319565b509392505050565b600061331061330b846140c3565b61406d565b90508281526020810184848401111561332c5761332b614557565b5b613337848285614319565b509392505050565b60008135905061334e81614c73565b92915050565b60008135905061336381614c8a565b92915050565b60008135905061337881614ca1565b92915050565b60008151905061338d81614ca1565b92915050565b600082601f8301126133a8576133a7614552565b5b81356133b88482602086016132bb565b91505092915050565b600082601f8301126133d6576133d5614552565b5b81356133e68482602086016132fd565b91505092915050565b6000813590506133fe81614cb8565b92915050565b60006020828403121561341a57613419614561565b5b60006134288482850161333f565b91505092915050565b6000806040838503121561344857613447614561565b5b60006134568582860161333f565b92505060206134678582860161333f565b9150509250929050565b60008060006060848603121561348a57613489614561565b5b60006134988682870161333f565b93505060206134a98682870161333f565b92505060406134ba868287016133ef565b9150509250925092565b600080600080608085870312156134de576134dd614561565b5b60006134ec8782880161333f565b94505060206134fd8782880161333f565b935050604061350e878288016133ef565b925050606085013567ffffffffffffffff81111561352f5761352e61455c565b5b61353b87828801613393565b91505092959194509250565b6000806040838503121561355e5761355d614561565b5b600061356c8582860161333f565b925050602061357d85828601613354565b9150509250929050565b6000806040838503121561359e5761359d614561565b5b60006135ac8582860161333f565b92505060206135bd858286016133ef565b9150509250929050565b6000602082840312156135dd576135dc614561565b5b60006135eb84828501613354565b91505092915050565b60006020828403121561360a57613609614561565b5b600061361884828501613369565b91505092915050565b60006020828403121561363757613636614561565b5b60006136458482850161337e565b91505092915050565b60006020828403121561366457613663614561565b5b600082013567ffffffffffffffff8111156136825761368161455c565b5b61368e848285016133c1565b91505092915050565b6000602082840312156136ad576136ac614561565b5b60006136bb848285016133ef565b91505092915050565b60006136d08383613c08565b60208301905092915050565b6136e5816142a5565b82525050565b60006136f682614119565b6137008185614147565b935061370b836140f4565b8060005b8381101561373c57815161372388826136c4565b975061372e8361413a565b92505060018101905061370f565b5085935050505092915050565b613752816142b7565b82525050565b600061376382614124565b61376d8185614158565b935061377d818560208601614328565b61378681614566565b840191505092915050565b600061379c8261412f565b6137a68185614174565b93506137b6818560208601614328565b6137bf81614566565b840191505092915050565b60006137d58261412f565b6137df8185614185565b93506137ef818560208601614328565b80840191505092915050565b600081546138088161435b565b6138128186614185565b9450600182166000811461382d576001811461383e57613871565b60ff19831686528186019350613871565b61384785614104565b60005b838110156138695781548189015260018201915060208101905061384a565b838801955050505b50505092915050565b6000613887601f83614174565b915061389282614577565b602082019050919050565b60006138aa602b83614174565b91506138b5826145a0565b604082019050919050565b60006138cd603283614174565b91506138d8826145ef565b604082019050919050565b60006138f0602683614174565b91506138fb8261463e565b604082019050919050565b6000613913601c83614174565b915061391e8261468d565b602082019050919050565b6000613936603383614174565b9150613941826146b6565b604082019050919050565b6000613959602483614174565b915061396482614705565b604082019050919050565b600061397c601983614174565b915061398782614754565b602082019050919050565b600061399f602c83614174565b91506139aa8261477d565b604082019050919050565b60006139c2604283614174565b91506139cd826147cc565b606082019050919050565b60006139e5603883614174565b91506139f082614841565b604082019050919050565b6000613a08602a83614174565b9150613a1382614890565b604082019050919050565b6000613a2b602983614174565b9150613a36826148df565b604082019050919050565b6000613a4e602083614174565b9150613a598261492e565b602082019050919050565b6000613a71602c83614174565b9150613a7c82614957565b604082019050919050565b6000613a94602083614174565b9150613a9f826149a6565b602082019050919050565b6000613ab7603083614174565b9150613ac2826149cf565b604082019050919050565b6000613ada602983614174565b9150613ae582614a1e565b604082019050919050565b6000613afd602983614174565b9150613b0882614a6d565b604082019050919050565b6000613b20602f83614174565b9150613b2b82614abc565b604082019050919050565b6000613b43602183614174565b9150613b4e82614b0b565b604082019050919050565b6000613b66602d83614174565b9150613b7182614b5a565b604082019050919050565b6000613b89600083614169565b9150613b9482614ba9565b600082019050919050565b6000613bac601083614174565b9150613bb782614bac565b602082019050919050565b6000613bcf603183614174565b9150613bda82614bd5565b604082019050919050565b6000613bf2602c83614174565b9150613bfd82614c24565b604082019050919050565b613c118161430f565b82525050565b613c208161430f565b82525050565b6000613c3282866137ca565b9150613c3e82856137ca565b9150613c4a82846137fb565b9150819050949350505050565b6000613c6282613b7c565b9150819050919050565b6000602082019050613c8160008301846136dc565b92915050565b6000608082019050613c9c60008301876136dc565b613ca960208301866136dc565b613cb66040830185613c17565b8181036060830152613cc88184613758565b905095945050505050565b60006020820190508181036000830152613ced81846136eb565b905092915050565b6000602082019050613d0a6000830184613749565b92915050565b60006020820190508181036000830152613d2a8184613791565b905092915050565b60006020820190508181036000830152613d4b8161387a565b9050919050565b60006020820190508181036000830152613d6b8161389d565b9050919050565b60006020820190508181036000830152613d8b816138c0565b9050919050565b60006020820190508181036000830152613dab816138e3565b9050919050565b60006020820190508181036000830152613dcb81613906565b9050919050565b60006020820190508181036000830152613deb81613929565b9050919050565b60006020820190508181036000830152613e0b8161394c565b9050919050565b60006020820190508181036000830152613e2b8161396f565b9050919050565b60006020820190508181036000830152613e4b81613992565b9050919050565b60006020820190508181036000830152613e6b816139b5565b9050919050565b60006020820190508181036000830152613e8b816139d8565b9050919050565b60006020820190508181036000830152613eab816139fb565b9050919050565b60006020820190508181036000830152613ecb81613a1e565b9050919050565b60006020820190508181036000830152613eeb81613a41565b9050919050565b60006020820190508181036000830152613f0b81613a64565b9050919050565b60006020820190508181036000830152613f2b81613a87565b9050919050565b60006020820190508181036000830152613f4b81613aaa565b9050919050565b60006020820190508181036000830152613f6b81613acd565b9050919050565b60006020820190508181036000830152613f8b81613af0565b9050919050565b60006020820190508181036000830152613fab81613b13565b9050919050565b60006020820190508181036000830152613fcb81613b36565b9050919050565b60006020820190508181036000830152613feb81613b59565b9050919050565b6000602082019050818103600083015261400b81613b9f565b9050919050565b6000602082019050818103600083015261402b81613bc2565b9050919050565b6000602082019050818103600083015261404b81613be5565b9050919050565b60006020820190506140676000830184613c17565b92915050565b6000614077614088565b9050614083828261438d565b919050565b6000604051905090565b600067ffffffffffffffff8211156140ad576140ac614523565b5b6140b682614566565b9050602081019050919050565b600067ffffffffffffffff8211156140de576140dd614523565b5b6140e782614566565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061419b8261430f565b91506141a68361430f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141db576141da614438565b5b828201905092915050565b60006141f18261430f565b91506141fc8361430f565b92508261420c5761420b614467565b5b828204905092915050565b60006142228261430f565b915061422d8361430f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561426657614265614438565b5b828202905092915050565b600061427c8261430f565b91506142878361430f565b92508282101561429a57614299614438565b5b828203905092915050565b60006142b0826142ef565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561434657808201518184015260208101905061432b565b83811115614355576000848401525b50505050565b6000600282049050600182168061437357607f821691505b6020821081141561438757614386614496565b5b50919050565b61439682614566565b810181811067ffffffffffffffff821117156143b5576143b4614523565b5b80604052505050565b60006143c98261430f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143fc576143fb614438565b5b600182019050919050565b60006144128261430f565b915061441d8361430f565b92508261442d5761442c614467565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546865207061796d656e742063616e6e6f7420626520706572666f726d656400600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4f6e6c7920706f73697469766520616d6f756e7473206f6620506978656c204560008201527f6d6f6a69732063616e206265206d696e74656400000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f416d6f756e7420746f206265206d696e746564206973206e6f7420617661696c60008201527f61626c652c20796f7520617265207265616368696e67206d617820737570706c60208201527f792e000000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d206d696e7461626c6520696e206f6e6520626174636820697360008201527f20333020506978656c20456d6f6a697300000000000000000000000000000000602082015250565b7f44726f70206d7573742062652061637469766520746f206d696e74206120506960008201527f78656c20456d6f6a690000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820657468657220726563656976656420666f7220746860008201527f65207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614c7c816142a5565b8114614c8757600080fd5b50565b614c93816142b7565b8114614c9e57600080fd5b50565b614caa816142c3565b8114614cb557600080fd5b50565b614cc18161430f565b8114614ccc57600080fd5b5056fea2646970667358221220fa1afd074ba9e5885ad25ae9bf6d32f754f6f637723fe45e4489559041f9219364736f6c6343000807003368747470733a2f2f706978656c656d6f6a6973746f726167652e626c6f622e636f72652e77696e646f77732e6e65742f656d6f6a69732f706978656c2d656d6f6a692d6d657461646174612e6a736f6e68747470733a2f2f706978656c656d6f6a6973746f726167652e626c6f622e636f72652e77696e646f77732e6e65742f656d6f6a69732f

Deployed Bytecode

0x6080604052600436106102815760003560e01c806373e927841161014f578063bca4d166116100c1578063e37c6b4c1161007a578063e37c6b4c1461093b578063e3d670d714610966578063e8a3d485146109a3578063e985e9c5146109ce578063f1e4ce1914610a0b578063f2fde38b14610a3657610288565b8063bca4d16614610847578063c290d69114610863578063c66828621461087f578063c87b56dd146108aa578063cbf775b2146108e7578063da3ef23f1461091257610288565b8063a22cb46511610113578063a22cb46514610755578063a4dc9a801461077e578063ab5c0947146107bb578063b88d4fde146107e6578063b96d31c71461080f578063ba44d9851461082b57610288565b806373e92784146106825780637dbd2600146106ad5780638da5cb5b146106d657806395d89b4114610701578063a201fc501461072c57610288565b806332cb6b0c116101f357806355f804b3116101ac57806355f804b3146105745780636352211e1461059d5780636885b03c146105da5780636c0360eb1461060357806370a082311461062e578063715018a61461066b57610288565b806332cb6b0c146104875780633ccfd60b146104b257806342842e0e146104c957806344a0d68a146104f25780634f68ec7f1461051b5780634f6ccce71461053757610288565b806309dde2091161024557806309dde209146103845780630a549f41146103a057806312065fe0146103cb57806318160ddd146103f657806323b872dd146104215780632f745c591461044a57610288565b806301ffc9a71461028d5780630562b9f7146102ca57806306fdde03146102f3578063081812fc1461031e578063095ea7b31461035b57610288565b3661028857005b600080fd5b34801561029957600080fd5b506102b460048036038101906102af91906135f4565b610a5f565b6040516102c19190613cf5565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190613697565b610ad9565b005b3480156102ff57600080fd5b50610308610c05565b6040516103159190613d10565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190613697565b610c97565b6040516103529190613c6c565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d9190613587565b610d1c565b005b61039e60048036038101906103999190613404565b610e34565b005b3480156103ac57600080fd5b506103b5610e4a565b6040516103c29190613cf5565b60405180910390f35b3480156103d757600080fd5b506103e0610e5d565b6040516103ed9190614052565b60405180910390f35b34801561040257600080fd5b5061040b610e65565b6040516104189190614052565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190613471565b610e72565b005b34801561045657600080fd5b50610471600480360381019061046c9190613587565b610ed2565b60405161047e9190614052565b60405180910390f35b34801561049357600080fd5b5061049c610f77565b6040516104a99190614052565b60405180910390f35b3480156104be57600080fd5b506104c7610f7d565b005b3480156104d557600080fd5b506104f060048036038101906104eb9190613471565b61106f565b005b3480156104fe57600080fd5b5061051960048036038101906105149190613697565b61108f565b005b61053560048036038101906105309190613404565b611115565b005b34801561054357600080fd5b5061055e60048036038101906105599190613697565b61112b565b60405161056b9190614052565b60405180910390f35b34801561058057600080fd5b5061059b6004803603810190610596919061364e565b61119c565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190613697565b611232565b6040516105d19190613c6c565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc91906135c7565b6112e4565b005b34801561060f57600080fd5b5061061861137d565b6040516106259190613d10565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190613404565b61140b565b6040516106629190614052565b60405180910390f35b34801561067757600080fd5b506106806114c3565b005b34801561068e57600080fd5b5061069761154b565b6040516106a49190613d10565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf91906135c7565b6115d9565b005b3480156106e257600080fd5b506106eb611672565b6040516106f89190613c6c565b60405180910390f35b34801561070d57600080fd5b5061071661169b565b6040516107239190613d10565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e919061364e565b61172d565b005b34801561076157600080fd5b5061077c60048036038101906107779190613547565b6117c3565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613404565b611944565b6040516107b29190613cd3565b60405180910390f35b3480156107c757600080fd5b506107d06119f2565b6040516107dd9190613cf5565b60405180910390f35b3480156107f257600080fd5b5061080d600480360381019061080891906134c4565b611a05565b005b61082960048036038101906108249190613404565b611a67565b005b61084560048036038101906108409190613404565b611a7d565b005b610861600480360381019061085c9190613587565b611a93565b005b61087d60048036038101906108789190613697565b611aca565b005b34801561088b57600080fd5b50610894611b4b565b6040516108a19190613d10565b60405180910390f35b3480156108b657600080fd5b506108d160048036038101906108cc9190613697565b611bd9565b6040516108de9190613d10565b60405180910390f35b3480156108f357600080fd5b506108fc611c83565b6040516109099190614052565b60405180910390f35b34801561091e57600080fd5b506109396004803603810190610934919061364e565b611c88565b005b34801561094757600080fd5b50610950611d1e565b60405161095d9190614052565b60405180910390f35b34801561097257600080fd5b5061098d60048036038101906109889190613404565b611d24565b60405161099a9190614052565b60405180910390f35b3480156109af57600080fd5b506109b8611d45565b6040516109c59190613d10565b60405180910390f35b3480156109da57600080fd5b506109f560048036038101906109f09190613431565b611dd7565b604051610a029190613cf5565b60405180910390f35b348015610a1757600080fd5b50610a20611e6b565b604051610a2d9190614052565b60405180910390f35b348015610a4257600080fd5b50610a5d6004803603810190610a589190613404565b611e71565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ad25750610ad182611f81565b5b9050919050565b610ae1612063565b73ffffffffffffffffffffffffffffffffffffffff16610aff611672565b73ffffffffffffffffffffffffffffffffffffffff1614610b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4c90613f12565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051610b7b90613c57565b60006040518083038185875af1925050503d8060008114610bb8576040519150601f19603f3d011682016040523d82523d6000602084013e610bbd565b606091505b5050905080610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf890613ff2565b60405180910390fd5b5050565b606060018054610c149061435b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c409061435b565b8015610c8d5780601f10610c6257610100808354040283529160200191610c8d565b820191906000526020600020905b815481529060010190602001808311610c7057829003601f168201915b5050505050905090565b6000610ca28261206b565b610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd890613ef2565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d2782611232565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90613fb2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db7612063565b73ffffffffffffffffffffffffffffffffffffffff161480610de65750610de581610de0612063565b611dd7565b5b610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90613e72565b60405180910390fd5b610e2f83836120d7565b505050565b610e4781600366c3663566a58000612190565b50565b601060009054906101000a900460ff1681565b600047905090565b6000600980549050905090565b610e83610e7d612063565b826121fc565b610ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb990614012565b60405180910390fd5b610ecd8383836122da565b505050565b6000610edd8361140b565b8210610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1590613d52565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610f85612063565b73ffffffffffffffffffffffffffffffffffffffff16610fa3611672565b73ffffffffffffffffffffffffffffffffffffffff1614610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090613f12565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061106d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106490613d32565b60405180910390fd5b565b61108a83838360405180602001604052806000815250611a05565b505050565b611097612063565b73ffffffffffffffffffffffffffffffffffffffff166110b5611672565b73ffffffffffffffffffffffffffffffffffffffff161461110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110290613f12565b60405180910390fd5b80600e8190555050565b611128816014668e1bc9bf040000612190565b50565b6000611135610e65565b8210611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90614032565b60405180910390fd5b6009828154811061118a576111896144f4565b5b90600052602060002001549050919050565b6111a4612063565b73ffffffffffffffffffffffffffffffffffffffff166111c2611672565b73ffffffffffffffffffffffffffffffffffffffff1614611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f90613f12565b60405180910390fd5b80600c908051906020019061122e929190613218565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d290613eb2565b60405180910390fd5b80915050919050565b6112ec612063565b73ffffffffffffffffffffffffffffffffffffffff1661130a611672565b73ffffffffffffffffffffffffffffffffffffffff1614611360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135790613f12565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b600c805461138a9061435b565b80601f01602080910402602001604051908101604052809291908181526020018280546113b69061435b565b80156114035780601f106113d857610100808354040283529160200191611403565b820191906000526020600020905b8154815290600101906020018083116113e657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613e92565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114cb612063565b73ffffffffffffffffffffffffffffffffffffffff166114e9611672565b73ffffffffffffffffffffffffffffffffffffffff161461153f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153690613f12565b60405180910390fd5b6115496000612536565b565b600b80546115589061435b565b80601f01602080910402602001604051908101604052809291908181526020018280546115849061435b565b80156115d15780601f106115a6576101008083540402835291602001916115d1565b820191906000526020600020905b8154815290600101906020018083116115b457829003601f168201915b505050505081565b6115e1612063565b73ffffffffffffffffffffffffffffffffffffffff166115ff611672565b73ffffffffffffffffffffffffffffffffffffffff1614611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90613f12565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546116aa9061435b565b80601f01602080910402602001604051908101604052809291908181526020018280546116d69061435b565b80156117235780601f106116f857610100808354040283529160200191611723565b820191906000526020600020905b81548152906001019060200180831161170657829003601f168201915b5050505050905090565b611735612063565b73ffffffffffffffffffffffffffffffffffffffff16611753611672565b73ffffffffffffffffffffffffffffffffffffffff16146117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a090613f12565b60405180910390fd5b80600b90805190602001906117bf929190613218565b5050565b6117cb612063565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183090613e12565b60405180910390fd5b8060066000611846612063565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118f3612063565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119389190613cf5565b60405180910390a35050565b606060006119518361140b565b905060008167ffffffffffffffff81111561196f5761196e614523565b5b60405190808252806020026020018201604052801561199d5781602001602082028036833780820191505090505b50905060005b828110156119e7576119b58582610ed2565b8282815181106119c8576119c76144f4565b5b60200260200101818152505080806119df906143be565b9150506119a3565b508092505050919050565b601060019054906101000a900460ff1681565b611a16611a10612063565b836121fc565b611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90614012565b60405180910390fd5b611a61848484846125fa565b50505050565b611a7a81600a669fdf42f6e48000612190565b50565b611a9081600566b1a2bc2ec50000612190565b50565b6000601060019054906101000a900460ff1615611ab457600f549050611aba565b600e5490505b611ac5838383612190565b505050565b611ad2611672565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b485780341015611b47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3e90613fd2565b60405180910390fd5b5b50565b600d8054611b589061435b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b849061435b565b8015611bd15780601f10611ba657610100808354040283529160200191611bd1565b820191906000526020600020905b815481529060010190602001808311611bb457829003601f168201915b505050505081565b6060611be48261206b565b611c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1a90613f92565b60405180910390fd5b6000611c2d612656565b90506000815111611c4d5760405180602001604052806000815250611c7b565b80611c57846126e8565b600d604051602001611c6b93929190613c26565b6040516020818303038152906040525b915050919050565b601e81565b611c90612063565b73ffffffffffffffffffffffffffffffffffffffff16611cae611672565b73ffffffffffffffffffffffffffffffffffffffff1614611d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfb90613f12565b60405180910390fd5b80600d9080519060200190611d1a929190613218565b5050565b600f5481565b60008173ffffffffffffffffffffffffffffffffffffffff16319050919050565b6060600b8054611d549061435b565b80601f0160208091040260200160405190810160405280929190818152602001828054611d809061435b565b8015611dcd5780601f10611da257610100808354040283529160200191611dcd565b820191906000526020600020905b815481529060010190602001808311611db057829003601f168201915b5050505050905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b611e79612063565b73ffffffffffffffffffffffffffffffffffffffff16611e97611672565b73ffffffffffffffffffffffffffffffffffffffff1614611eed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee490613f12565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490613d92565b60405180910390fd5b611f6681612536565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061204c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061205c575061205b82612849565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661214a83611232565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061219a610e65565b9050600082846121aa9190614217565b90506121b5846128b3565b6121be81611aca565b6000600190505b8481116121f4576121e18682856121dc9190614190565b612a20565b80806121ec906143be565b9150506121c5565b505050505050565b60006122078261206b565b612246576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223d90613e32565b60405180910390fd5b600061225183611232565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122c057508373ffffffffffffffffffffffffffffffffffffffff166122a884610c97565b73ffffffffffffffffffffffffffffffffffffffff16145b806122d157506122d08185611dd7565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122fa82611232565b73ffffffffffffffffffffffffffffffffffffffff1614612350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234790613f72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b790613df2565b60405180910390fd5b6123cb838383612a3e565b6123d66000826120d7565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124269190614271565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461247d9190614190565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126058484846122da565b61261184848484612b52565b612650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264790613d72565b60405180910390fd5b50505050565b6060600c80546126659061435b565b80601f01602080910402602001604051908101604052809291908181526020018280546126919061435b565b80156126de5780601f106126b3576101008083540402835291602001916126de565b820191906000526020600020905b8154815290600101906020018083116126c157829003601f168201915b5050505050905090565b60606000821415612730576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612844565b600082905060005b6000821461276257808061274b906143be565b915050600a8261275b91906141e6565b9150612738565b60008167ffffffffffffffff81111561277e5761277d614523565b5b6040519080825280601f01601f1916602001820160405280156127b05781602001600182028036833780820191505090505b5090505b6000851461283d576001826127c99190614271565b9150600a856127d89190614407565b60306127e49190614190565b60f81b8183815181106127fa576127f96144f4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561283691906141e6565b94506127b4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b601060009054906101000a900460ff168061290057506128d1611672565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61293f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293690613f52565b60405180910390fd5b60008111612982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297990613dd2565b60405180910390fd5b601e8111156129c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129bd90613f32565b60405180910390fd5b612710816129d2610e65565b6129dc9190614190565b1115612a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1490613e52565b60405180910390fd5b50565b612a3a828260405180602001604052806000815250612ce9565b5050565b612a49838383611f7c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a8c57612a8781612d44565b612acb565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612aca57612ac98382612d8d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b0e57612b0981612efa565b612b4d565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612b4c57612b4b8282612fcb565b5b5b505050565b6000612b738473ffffffffffffffffffffffffffffffffffffffff16611f69565b15612cdc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b9c612063565b8786866040518563ffffffff1660e01b8152600401612bbe9493929190613c87565b602060405180830381600087803b158015612bd857600080fd5b505af1925050508015612c0957506040513d601f19601f82011682018060405250810190612c069190613621565b60015b612c8c573d8060008114612c39576040519150601f19603f3d011682016040523d82523d6000602084013e612c3e565b606091505b50600081511415612c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7b90613d72565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ce1565b600190505b949350505050565b612cf3838361304a565b612d006000848484612b52565b612d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3690613d72565b60405180910390fd5b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d9a8461140b565b612da49190614271565b9050600060086000848152602001908152602001600020549050818114612e89576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600980549050612f0e9190614271565b90506000600a6000848152602001908152602001600020549050600060098381548110612f3e57612f3d6144f4565b5b906000526020600020015490508060098381548110612f6057612f5f6144f4565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612faf57612fae6144c5565b5b6001900381819060005260206000200160009055905550505050565b6000612fd68361140b565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130b190613ed2565b60405180910390fd5b6130c38161206b565b15613103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fa90613db2565b60405180910390fd5b61310f60008383612a3e565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461315f9190614190565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546132249061435b565b90600052602060002090601f016020900481019282613246576000855561328d565b82601f1061325f57805160ff191683800117855561328d565b8280016001018555821561328d579182015b8281111561328c578251825591602001919060010190613271565b5b50905061329a919061329e565b5090565b5b808211156132b757600081600090555060010161329f565b5090565b60006132ce6132c984614092565b61406d565b9050828152602081018484840111156132ea576132e9614557565b5b6132f5848285614319565b509392505050565b600061331061330b846140c3565b61406d565b90508281526020810184848401111561332c5761332b614557565b5b613337848285614319565b509392505050565b60008135905061334e81614c73565b92915050565b60008135905061336381614c8a565b92915050565b60008135905061337881614ca1565b92915050565b60008151905061338d81614ca1565b92915050565b600082601f8301126133a8576133a7614552565b5b81356133b88482602086016132bb565b91505092915050565b600082601f8301126133d6576133d5614552565b5b81356133e68482602086016132fd565b91505092915050565b6000813590506133fe81614cb8565b92915050565b60006020828403121561341a57613419614561565b5b60006134288482850161333f565b91505092915050565b6000806040838503121561344857613447614561565b5b60006134568582860161333f565b92505060206134678582860161333f565b9150509250929050565b60008060006060848603121561348a57613489614561565b5b60006134988682870161333f565b93505060206134a98682870161333f565b92505060406134ba868287016133ef565b9150509250925092565b600080600080608085870312156134de576134dd614561565b5b60006134ec8782880161333f565b94505060206134fd8782880161333f565b935050604061350e878288016133ef565b925050606085013567ffffffffffffffff81111561352f5761352e61455c565b5b61353b87828801613393565b91505092959194509250565b6000806040838503121561355e5761355d614561565b5b600061356c8582860161333f565b925050602061357d85828601613354565b9150509250929050565b6000806040838503121561359e5761359d614561565b5b60006135ac8582860161333f565b92505060206135bd858286016133ef565b9150509250929050565b6000602082840312156135dd576135dc614561565b5b60006135eb84828501613354565b91505092915050565b60006020828403121561360a57613609614561565b5b600061361884828501613369565b91505092915050565b60006020828403121561363757613636614561565b5b60006136458482850161337e565b91505092915050565b60006020828403121561366457613663614561565b5b600082013567ffffffffffffffff8111156136825761368161455c565b5b61368e848285016133c1565b91505092915050565b6000602082840312156136ad576136ac614561565b5b60006136bb848285016133ef565b91505092915050565b60006136d08383613c08565b60208301905092915050565b6136e5816142a5565b82525050565b60006136f682614119565b6137008185614147565b935061370b836140f4565b8060005b8381101561373c57815161372388826136c4565b975061372e8361413a565b92505060018101905061370f565b5085935050505092915050565b613752816142b7565b82525050565b600061376382614124565b61376d8185614158565b935061377d818560208601614328565b61378681614566565b840191505092915050565b600061379c8261412f565b6137a68185614174565b93506137b6818560208601614328565b6137bf81614566565b840191505092915050565b60006137d58261412f565b6137df8185614185565b93506137ef818560208601614328565b80840191505092915050565b600081546138088161435b565b6138128186614185565b9450600182166000811461382d576001811461383e57613871565b60ff19831686528186019350613871565b61384785614104565b60005b838110156138695781548189015260018201915060208101905061384a565b838801955050505b50505092915050565b6000613887601f83614174565b915061389282614577565b602082019050919050565b60006138aa602b83614174565b91506138b5826145a0565b604082019050919050565b60006138cd603283614174565b91506138d8826145ef565b604082019050919050565b60006138f0602683614174565b91506138fb8261463e565b604082019050919050565b6000613913601c83614174565b915061391e8261468d565b602082019050919050565b6000613936603383614174565b9150613941826146b6565b604082019050919050565b6000613959602483614174565b915061396482614705565b604082019050919050565b600061397c601983614174565b915061398782614754565b602082019050919050565b600061399f602c83614174565b91506139aa8261477d565b604082019050919050565b60006139c2604283614174565b91506139cd826147cc565b606082019050919050565b60006139e5603883614174565b91506139f082614841565b604082019050919050565b6000613a08602a83614174565b9150613a1382614890565b604082019050919050565b6000613a2b602983614174565b9150613a36826148df565b604082019050919050565b6000613a4e602083614174565b9150613a598261492e565b602082019050919050565b6000613a71602c83614174565b9150613a7c82614957565b604082019050919050565b6000613a94602083614174565b9150613a9f826149a6565b602082019050919050565b6000613ab7603083614174565b9150613ac2826149cf565b604082019050919050565b6000613ada602983614174565b9150613ae582614a1e565b604082019050919050565b6000613afd602983614174565b9150613b0882614a6d565b604082019050919050565b6000613b20602f83614174565b9150613b2b82614abc565b604082019050919050565b6000613b43602183614174565b9150613b4e82614b0b565b604082019050919050565b6000613b66602d83614174565b9150613b7182614b5a565b604082019050919050565b6000613b89600083614169565b9150613b9482614ba9565b600082019050919050565b6000613bac601083614174565b9150613bb782614bac565b602082019050919050565b6000613bcf603183614174565b9150613bda82614bd5565b604082019050919050565b6000613bf2602c83614174565b9150613bfd82614c24565b604082019050919050565b613c118161430f565b82525050565b613c208161430f565b82525050565b6000613c3282866137ca565b9150613c3e82856137ca565b9150613c4a82846137fb565b9150819050949350505050565b6000613c6282613b7c565b9150819050919050565b6000602082019050613c8160008301846136dc565b92915050565b6000608082019050613c9c60008301876136dc565b613ca960208301866136dc565b613cb66040830185613c17565b8181036060830152613cc88184613758565b905095945050505050565b60006020820190508181036000830152613ced81846136eb565b905092915050565b6000602082019050613d0a6000830184613749565b92915050565b60006020820190508181036000830152613d2a8184613791565b905092915050565b60006020820190508181036000830152613d4b8161387a565b9050919050565b60006020820190508181036000830152613d6b8161389d565b9050919050565b60006020820190508181036000830152613d8b816138c0565b9050919050565b60006020820190508181036000830152613dab816138e3565b9050919050565b60006020820190508181036000830152613dcb81613906565b9050919050565b60006020820190508181036000830152613deb81613929565b9050919050565b60006020820190508181036000830152613e0b8161394c565b9050919050565b60006020820190508181036000830152613e2b8161396f565b9050919050565b60006020820190508181036000830152613e4b81613992565b9050919050565b60006020820190508181036000830152613e6b816139b5565b9050919050565b60006020820190508181036000830152613e8b816139d8565b9050919050565b60006020820190508181036000830152613eab816139fb565b9050919050565b60006020820190508181036000830152613ecb81613a1e565b9050919050565b60006020820190508181036000830152613eeb81613a41565b9050919050565b60006020820190508181036000830152613f0b81613a64565b9050919050565b60006020820190508181036000830152613f2b81613a87565b9050919050565b60006020820190508181036000830152613f4b81613aaa565b9050919050565b60006020820190508181036000830152613f6b81613acd565b9050919050565b60006020820190508181036000830152613f8b81613af0565b9050919050565b60006020820190508181036000830152613fab81613b13565b9050919050565b60006020820190508181036000830152613fcb81613b36565b9050919050565b60006020820190508181036000830152613feb81613b59565b9050919050565b6000602082019050818103600083015261400b81613b9f565b9050919050565b6000602082019050818103600083015261402b81613bc2565b9050919050565b6000602082019050818103600083015261404b81613be5565b9050919050565b60006020820190506140676000830184613c17565b92915050565b6000614077614088565b9050614083828261438d565b919050565b6000604051905090565b600067ffffffffffffffff8211156140ad576140ac614523565b5b6140b682614566565b9050602081019050919050565b600067ffffffffffffffff8211156140de576140dd614523565b5b6140e782614566565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061419b8261430f565b91506141a68361430f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141db576141da614438565b5b828201905092915050565b60006141f18261430f565b91506141fc8361430f565b92508261420c5761420b614467565b5b828204905092915050565b60006142228261430f565b915061422d8361430f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561426657614265614438565b5b828202905092915050565b600061427c8261430f565b91506142878361430f565b92508282101561429a57614299614438565b5b828203905092915050565b60006142b0826142ef565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561434657808201518184015260208101905061432b565b83811115614355576000848401525b50505050565b6000600282049050600182168061437357607f821691505b6020821081141561438757614386614496565b5b50919050565b61439682614566565b810181811067ffffffffffffffff821117156143b5576143b4614523565b5b80604052505050565b60006143c98261430f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143fc576143fb614438565b5b600182019050919050565b60006144128261430f565b915061441d8361430f565b92508261442d5761442c614467565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546865207061796d656e742063616e6e6f7420626520706572666f726d656400600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4f6e6c7920706f73697469766520616d6f756e7473206f6620506978656c204560008201527f6d6f6a69732063616e206265206d696e74656400000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f416d6f756e7420746f206265206d696e746564206973206e6f7420617661696c60008201527f61626c652c20796f7520617265207265616368696e67206d617820737570706c60208201527f792e000000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d6178696d756d206d696e7461626c6520696e206f6e6520626174636820697360008201527f20333020506978656c20456d6f6a697300000000000000000000000000000000602082015250565b7f44726f70206d7573742062652061637469766520746f206d696e74206120506960008201527f78656c20456d6f6a690000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820657468657220726563656976656420666f7220746860008201527f65207472616e73616374696f6e00000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614c7c816142a5565b8114614c8757600080fd5b50565b614c93816142b7565b8114614c9e57600080fd5b50565b614caa816142c3565b8114614cb557600080fd5b50565b614cc18161430f565b8114614ccc57600080fd5b5056fea2646970667358221220fa1afd074ba9e5885ad25ae9bf6d32f754f6f637723fe45e4489559041f9219364736f6c63430008070033

Deployed Bytecode Sourcemap

43321:5779:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37106:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48921:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23998:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25557:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25080:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44881:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43899:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47113:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37746:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26447:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37414:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43689:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48729:184;;;;;;;;;;;;;:::i;:::-;;26857:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48374:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45246:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37936:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47975:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23692:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48610:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43546:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23422:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2530:94;;;;;;;;;;;;;:::i;:::-;;43412:127;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48476:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1879:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24167:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48087:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25850:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45945:398;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43951:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27113:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45122:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45003:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45367:320;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45695:242;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43643:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46463:642;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43738:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48215:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43841:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47220:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46351:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26216:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43794:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2779:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37106:224;37208:4;37247:35;37232:50;;;:11;:50;;;;:90;;;;37286:36;37310:11;37286:23;:36::i;:::-;37232:90;37225:97;;37106:224;;;:::o;48921:176::-;2110:12;:10;:12::i;:::-;2099:23;;:7;:5;:7::i;:::-;:23;;;2091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48990:12:::1;49008:10;:15;;49031:6;49008:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48989:53;;;49061:7;49053:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;48978:119;48921:176:::0;:::o;23998:100::-;24052:13;24085:5;24078:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23998:100;:::o;25557:221::-;25633:7;25661:16;25669:7;25661;:16::i;:::-;25653:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25746:15;:24;25762:7;25746:24;;;;;;;;;;;;;;;;;;;;;25739:31;;25557:221;;;:::o;25080:411::-;25161:13;25177:23;25192:7;25177:14;:23::i;:::-;25161:39;;25225:5;25219:11;;:2;:11;;;;25211:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25319:5;25303:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25328:37;25345:5;25352:12;:10;:12::i;:::-;25328:16;:37::i;:::-;25303:62;25281:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;25462:21;25471:2;25475:7;25462:8;:21::i;:::-;25150:341;25080:411;;:::o;44881:114::-;44935:25;44940:3;44945:1;44948:11;44935:4;:25::i;:::-;44881:114;:::o;43899:45::-;;;;;;;;;;;;;:::o;47113:99::-;47156:7;47183:21;47176:28;;47113:99;:::o;37746:113::-;37807:7;37834:10;:17;;;;37827:24;;37746:113;:::o;26447:339::-;26642:41;26661:12;:10;:12::i;:::-;26675:7;26642:18;:41::i;:::-;26634:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26750:28;26760:4;26766:2;26770:7;26750:9;:28::i;:::-;26447:339;;;:::o;37414:256::-;37511:7;37547:23;37564:5;37547:16;:23::i;:::-;37539:5;:31;37531:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37636:12;:19;37649:5;37636:19;;;;;;;;;;;;;;;:26;37656:5;37636:26;;;;;;;;;;;;37629:33;;37414:256;;;;:::o;43689:42::-;43726:5;43689:42;:::o;48729:184::-;2110:12;:10;:12::i;:::-;2099:23;;:7;:5;:7::i;:::-;:23;;;2091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48807:10:::1;48799:24;;:47;48824:21;48799:47;;;;;;;;;;;;;;;;;;;;;;;48777:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;48729:184::o:0;26857:185::-;26995:39;27012:4;27018:2;27022:7;26995:39;;;;;;;;;;;;:16;:39::i;:::-;26857:185;;;:::o;48374:94::-;2110:12;:10;:12::i;:::-;2099:23;;:7;:5;:7::i;:::-;:23;;;2091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48452:8:::1;48437:12;:23;;;;48374:94:::0;:::o;45246:113::-;45301:25;45306:3;45311:2;45315:10;45301:4;:25::i;:::-;45246:113;:::o;37936:233::-;38011:7;38047:30;:28;:30::i;:::-;38039:5;:38;38031:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;38144:10;38155:5;38144:17;;;;;;;;:::i;:::-;;;;;;;;;;38137:24;;37936:233;;;:::o;47975:104::-;2110:12;:10;:12::i;:::-;2099:23;;:7;:5;:7::i;:::-;:23;;;2091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48060:11:::1;48050:7;:21;;;;;;;;;;;;:::i;:::-;;47975:104:::0;:::o;23692:239::-;23764:7;23784:13;23800:7;:16;23808:7;23800:16;;;;;;;;;;;;;;;;;;;;;23784:32;;23852:1;23835:19;;:5;:19;;;;23827:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23918:5;23911:12;;;23692:239;;;:::o;48610:111::-;2110:12;:10;:12::i;:::-;2099:23;;:7;:5;:7::i;:::-;:23;;;2091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48703:10:::1;48682:18;;:31;;;;;;;;;;;;;;;;;;48610:111:::0;:::o;43546:90::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23422:208::-;23494:7;23539:1;23522:19;;:5;:19;;;;23514:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23606:9;:16;23616:5;23606:16;;;;;;;;;;;;;;;;23599:23;;23422:208;;;:::o;2530:94::-;2110:12;:10;:12::i;:::-;2099:23;;:7;:5;:7::i;:::-;:23;;;2091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2595:21:::1;2613:1;2595:9;:21::i;:::-;2530:94::o:0;43412:127::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48476:126::-;2110:12;:10;:12::i;:::-;2099:23;;:7;:5;:7::i;:::-;:23;;;2091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48583:11:::1;48555:25;;:39;;;;;;;;;;;;;;;;;;48476:126:::0;:::o;1879:87::-;1925:7;1952:6;;;;;;;;;;;1945:13;;1879:87;:::o;24167:104::-;24223:13;24256:7;24249:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24167:104;:::o;48087:120::-;2110:12;:10;:12::i;:::-;2099:23;;:7;:5;:7::i;:::-;:23;;;2091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48192:7:::1;48170:19;:29;;;;;;;;;;;;:::i;:::-;;48087:120:::0;:::o;25850:295::-;25965:12;:10;:12::i;:::-;25953:24;;:8;:24;;;;25945:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26065:8;26020:18;:32;26039:12;:10;:12::i;:::-;26020:32;;;;;;;;;;;;;;;:42;26053:8;26020:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26118:8;26089:48;;26104:12;:10;:12::i;:::-;26089:48;;;26128:8;26089:48;;;;;;:::i;:::-;;;;;;;;25850:295;;:::o;45945:398::-;46034:16;46068:23;46094:17;46104:6;46094:9;:17::i;:::-;46068:43;;46122:25;46164:15;46150:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46122:58;;46196:9;46191:117;46215:15;46211:1;:19;46191:117;;;46266:30;46286:6;46294:1;46266:19;:30::i;:::-;46252:8;46261:1;46252:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;46232:3;;;;;:::i;:::-;;;;46191:117;;;;46327:8;46320:15;;;;45945:398;;;:::o;43951:38::-;;;;;;;;;;;;;:::o;27113:328::-;27288:41;27307:12;:10;:12::i;:::-;27321:7;27288:18;:41::i;:::-;27280:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27394:39;27408:4;27414:2;27418:7;27427:5;27394:13;:39::i;:::-;27113:328;;;;:::o;45122:116::-;45177:26;45182:3;45187:2;45191:11;45177:4;:26::i;:::-;45122:116;:::o;45003:111::-;45057:24;45062:3;45067:1;45070:10;45057:4;:24::i;:::-;45003:111;:::o;45367:320::-;45445:21;45483:18;;;;;;;;;;;45479:151;;;45534:23;;45518:39;;45479:151;;;45606:12;;45590:28;;45479:151;45642:37;45647:3;45652:11;45665:13;45642:4;:37::i;:::-;45434:253;45367:320;;:::o;45695:242::-;45768:7;:5;:7::i;:::-;45754:21;;:10;:21;;;45750:180;;45831:6;45818:9;:19;;45792:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;45750:180;45695:242;:::o;43643:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46463:642::-;46581:13;46634:16;46642:7;46634;:16::i;:::-;46612:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;46738:28;46769:10;:8;:10::i;:::-;46738:41;;46841:1;46816:14;46810:28;:32;:287;;;;;;;;;;;;;;;;;46934:14;46975:18;:7;:16;:18::i;:::-;47020:13;46891:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46810:287;46790:307;;;46463:642;;;:::o;43738:49::-;43785:2;43738:49;:::o;48215:151::-;2110:12;:10;:12::i;:::-;2099:23;;:7;:5;:7::i;:::-;:23;;;2091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48341:17:::1;48325:13;:33;;;;;;;;;;;;:::i;:::-;;48215:151:::0;:::o;43841:51::-;;;;:::o;47220:170::-;47306:22;47363:11;:19;;;47346:36;;47220:170;;;:::o;46351:104::-;46395:13;46428:19;46421:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46351:104;:::o;26216:164::-;26313:4;26337:18;:25;26356:5;26337:25;;;;;;;;;;;;;;;:35;26363:8;26337:35;;;;;;;;;;;;;;;;;;;;;;;;;26330:42;;26216:164;;;;:::o;43794:40::-;;;;:::o;2779:192::-;2110:12;:10;:12::i;:::-;2099:23;;:7;:5;:7::i;:::-;:23;;;2091:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2888:1:::1;2868:22;;:8;:22;;;;2860:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2944:19;2954:8;2944:9;:19::i;:::-;2779:192:::0;:::o;11325:387::-;11385:4;11593:12;11660:7;11648:20;11640:28;;11703:1;11696:4;:8;11689:15;;;11325:387;;;:::o;35043:126::-;;;;:::o;23053:305::-;23155:4;23207:25;23192:40;;;:11;:40;;;;:105;;;;23264:33;23249:48;;;:11;:48;;;;23192:105;:158;;;;23314:36;23338:11;23314:23;:36::i;:::-;23192:158;23172:178;;23053:305;;;:::o;669:98::-;722:7;749:10;742:17;;669:98;:::o;28951:127::-;29016:4;29068:1;29040:30;;:7;:16;29048:7;29040:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29033:37;;28951:127;;;:::o;32933:174::-;33035:2;33008:15;:24;33024:7;33008:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33091:7;33087:2;33053:46;;33062:23;33077:7;33062:14;:23::i;:::-;33053:46;;;;;;;;;;;;32933:174;;:::o;47416:395::-;47540:14;47557:13;:11;:13::i;:::-;47540:30;;47581:17;47617:10;47601:13;:26;;;;:::i;:::-;47581:46;;47640:30;47656:13;47640:15;:30::i;:::-;47681:14;47685:9;47681:3;:14::i;:::-;47711:9;47723:1;47711:13;;47706:98;47731:13;47726:1;:18;47706:98;;47766:26;47776:3;47790:1;47781:6;:10;;;;:::i;:::-;47766:9;:26::i;:::-;47746:3;;;;;:::i;:::-;;;;47706:98;;;;47529:282;;47416:395;;;:::o;29245:348::-;29338:4;29363:16;29371:7;29363;:16::i;:::-;29355:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29439:13;29455:23;29470:7;29455:14;:23::i;:::-;29439:39;;29508:5;29497:16;;:7;:16;;;:51;;;;29541:7;29517:31;;:20;29529:7;29517:11;:20::i;:::-;:31;;;29497:51;:87;;;;29552:32;29569:5;29576:7;29552:16;:32::i;:::-;29497:87;29489:96;;;29245:348;;;;:::o;32237:578::-;32396:4;32369:31;;:23;32384:7;32369:14;:23::i;:::-;:31;;;32361:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32479:1;32465:16;;:2;:16;;;;32457:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32535:39;32556:4;32562:2;32566:7;32535:20;:39::i;:::-;32639:29;32656:1;32660:7;32639:8;:29::i;:::-;32700:1;32681:9;:15;32691:4;32681:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32729:1;32712:9;:13;32722:2;32712:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32760:2;32741:7;:16;32749:7;32741:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32799:7;32795:2;32780:27;;32789:4;32780:27;;;;;;;;;;;;32237:578;;;:::o;2979:173::-;3035:16;3054:6;;;;;;;;;;;3035:25;;3080:8;3071:6;;:17;;;;;;;;;;;;;;;;;;3135:8;3104:40;;3125:8;3104:40;;;;;;;;;;;;3024:128;2979:173;:::o;28323:315::-;28480:28;28490:4;28496:2;28500:7;28480:9;:28::i;:::-;28527:48;28550:4;28556:2;28560:7;28569:5;28527:22;:48::i;:::-;28519:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;28323:315;;;;:::o;47838:108::-;47898:13;47931:7;47924:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47838:108;:::o;18978:723::-;19034:13;19264:1;19255:5;:10;19251:53;;;19282:10;;;;;;;;;;;;;;;;;;;;;19251:53;19314:12;19329:5;19314:20;;19345:14;19370:78;19385:1;19377:4;:9;19370:78;;19403:8;;;;;:::i;:::-;;;;19434:2;19426:10;;;;;:::i;:::-;;;19370:78;;;19458:19;19490:6;19480:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19458:39;;19508:154;19524:1;19515:5;:10;19508:154;;19552:1;19542:11;;;;;:::i;:::-;;;19619:2;19611:5;:10;;;;:::i;:::-;19598:2;:24;;;;:::i;:::-;19585:39;;19568:6;19575;19568:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19648:2;19639:11;;;;;:::i;:::-;;;19508:154;;;19686:6;19672:21;;;;;18978:723;;;;:::o;21546:157::-;21631:4;21670:25;21655:40;;;:11;:40;;;;21648:47;;21546:157;;;:::o;44206:667::-;44301:25;;;;;;;;;;;:50;;;;44344:7;:5;:7::i;:::-;44330:21;;:10;:21;;;44301:50;44279:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;44469:1;44453:13;:17;44431:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;43785:2;44582:13;:37;;44560:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;43726:5;44744:13;44728;:11;:13::i;:::-;:29;;;;:::i;:::-;:43;;44706:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;44206:667;:::o;29935:110::-;30011:26;30021:2;30025:7;30011:26;;;;;;;;;;;;:9;:26::i;:::-;29935:110;;:::o;38782:589::-;38926:45;38953:4;38959:2;38963:7;38926:26;:45::i;:::-;39004:1;38988:18;;:4;:18;;;38984:187;;;39023:40;39055:7;39023:31;:40::i;:::-;38984:187;;;39093:2;39085:10;;:4;:10;;;39081:90;;39112:47;39145:4;39151:7;39112:32;:47::i;:::-;39081:90;38984:187;39199:1;39185:16;;:2;:16;;;39181:183;;;39218:45;39255:7;39218:36;:45::i;:::-;39181:183;;;39291:4;39285:10;;:2;:10;;;39281:83;;39312:40;39340:2;39344:7;39312:27;:40::i;:::-;39281:83;39181:183;38782:589;;;:::o;33672:799::-;33827:4;33848:15;:2;:13;;;:15::i;:::-;33844:620;;;33900:2;33884:36;;;33921:12;:10;:12::i;:::-;33935:4;33941:7;33950:5;33884:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33880:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34143:1;34126:6;:13;:18;34122:272;;;34169:60;;;;;;;;;;:::i;:::-;;;;;;;;34122:272;34344:6;34338:13;34329:6;34325:2;34321:15;34314:38;33880:529;34017:41;;;34007:51;;;:6;:51;;;;34000:58;;;;;33844:620;34448:4;34441:11;;33672:799;;;;;;;:::o;30272:321::-;30402:18;30408:2;30412:7;30402:5;:18::i;:::-;30453:54;30484:1;30488:2;30492:7;30501:5;30453:22;:54::i;:::-;30431:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;30272:321;;;:::o;40094:164::-;40198:10;:17;;;;40171:15;:24;40187:7;40171:24;;;;;;;;;;;:44;;;;40226:10;40242:7;40226:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40094:164;:::o;40885:988::-;41151:22;41201:1;41176:22;41193:4;41176:16;:22::i;:::-;:26;;;;:::i;:::-;41151:51;;41213:18;41234:17;:26;41252:7;41234:26;;;;;;;;;;;;41213:47;;41381:14;41367:10;:28;41363:328;;41412:19;41434:12;:18;41447:4;41434:18;;;;;;;;;;;;;;;:34;41453:14;41434:34;;;;;;;;;;;;41412:56;;41518:11;41485:12;:18;41498:4;41485:18;;;;;;;;;;;;;;;:30;41504:10;41485:30;;;;;;;;;;;:44;;;;41635:10;41602:17;:30;41620:11;41602:30;;;;;;;;;;;:43;;;;41397:294;41363:328;41787:17;:26;41805:7;41787:26;;;;;;;;;;;41780:33;;;41831:12;:18;41844:4;41831:18;;;;;;;;;;;;;;;:34;41850:14;41831:34;;;;;;;;;;;41824:41;;;40966:907;;40885:988;;:::o;42168:1079::-;42421:22;42466:1;42446:10;:17;;;;:21;;;;:::i;:::-;42421:46;;42478:18;42499:15;:24;42515:7;42499:24;;;;;;;;;;;;42478:45;;42850:19;42872:10;42883:14;42872:26;;;;;;;;:::i;:::-;;;;;;;;;;42850:48;;42936:11;42911:10;42922;42911:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;43047:10;43016:15;:28;43032:11;43016:28;;;;;;;;;;;:41;;;;43188:15;:24;43204:7;43188:24;;;;;;;;;;;43181:31;;;43223:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42239:1008;;;42168:1079;:::o;39672:221::-;39757:14;39774:20;39791:2;39774:16;:20::i;:::-;39757:37;;39832:7;39805:12;:16;39818:2;39805:16;;;;;;;;;;;;;;;:24;39822:6;39805:24;;;;;;;;;;;:34;;;;39879:6;39850:17;:26;39868:7;39850:26;;;;;;;;;;;:35;;;;39746:147;39672:221;;:::o;30929:382::-;31023:1;31009:16;;:2;:16;;;;31001:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31082:16;31090:7;31082;:16::i;:::-;31081:17;31073:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31144:45;31173:1;31177:2;31181:7;31144:20;:45::i;:::-;31219:1;31202:9;:13;31212:2;31202:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31250:2;31231:7;:16;31239:7;31231:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31295:7;31291:2;31270:33;;31287:1;31270:33;;;;;;;;;;;;30929:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16253:366;;;:::o;16625:::-;16767:3;16788:67;16852:2;16847:3;16788:67;:::i;:::-;16781:74;;16864:93;16953:3;16864:93;:::i;:::-;16982:2;16977:3;16973:12;16966:19;;16625:366;;;:::o;16997:::-;17139:3;17160:67;17224:2;17219:3;17160:67;:::i;:::-;17153:74;;17236:93;17325:3;17236:93;:::i;:::-;17354:2;17349:3;17345:12;17338:19;;16997:366;;;:::o;17369:::-;17511:3;17532:67;17596:2;17591:3;17532:67;:::i;:::-;17525:74;;17608:93;17697:3;17608:93;:::i;:::-;17726:2;17721:3;17717:12;17710:19;;17369:366;;;:::o;17741:::-;17883:3;17904:67;17968:2;17963:3;17904:67;:::i;:::-;17897:74;;17980:93;18069:3;17980:93;:::i;:::-;18098:2;18093:3;18089:12;18082:19;;17741:366;;;:::o;18113:::-;18255:3;18276:67;18340:2;18335:3;18276:67;:::i;:::-;18269:74;;18352:93;18441:3;18352:93;:::i;:::-;18470:2;18465:3;18461:12;18454:19;;18113:366;;;:::o;18485:::-;18627:3;18648:67;18712:2;18707:3;18648:67;:::i;:::-;18641:74;;18724:93;18813:3;18724:93;:::i;:::-;18842:2;18837:3;18833:12;18826:19;;18485:366;;;:::o;18857:398::-;19016:3;19037:83;19118:1;19113:3;19037:83;:::i;:::-;19030:90;;19129:93;19218:3;19129:93;:::i;:::-;19247:1;19242:3;19238:11;19231:18;;18857:398;;;:::o;19261:366::-;19403:3;19424:67;19488:2;19483:3;19424:67;:::i;:::-;19417:74;;19500:93;19589:3;19500:93;:::i;:::-;19618:2;19613:3;19609:12;19602:19;;19261:366;;;:::o;19633:::-;19775:3;19796:67;19860:2;19855:3;19796:67;:::i;:::-;19789:74;;19872:93;19961:3;19872:93;:::i;:::-;19990:2;19985:3;19981:12;19974:19;;19633:366;;;:::o;20005:::-;20147:3;20168:67;20232:2;20227:3;20168:67;:::i;:::-;20161:74;;20244:93;20333:3;20244:93;:::i;:::-;20362:2;20357:3;20353:12;20346:19;;20005:366;;;:::o;20377:108::-;20454:24;20472:5;20454:24;:::i;:::-;20449:3;20442:37;20377:108;;:::o;20491:118::-;20578:24;20596:5;20578:24;:::i;:::-;20573:3;20566:37;20491:118;;:::o;20615:589::-;20840:3;20862:95;20953:3;20944:6;20862:95;:::i;:::-;20855:102;;20974:95;21065:3;21056:6;20974:95;:::i;:::-;20967:102;;21086:92;21174:3;21165:6;21086:92;:::i;:::-;21079:99;;21195:3;21188:10;;20615:589;;;;;;:::o;21210:379::-;21394:3;21416:147;21559:3;21416:147;:::i;:::-;21409:154;;21580:3;21573:10;;21210:379;;;:::o;21595:222::-;21688:4;21726:2;21715:9;21711:18;21703:26;;21739:71;21807:1;21796:9;21792:17;21783:6;21739:71;:::i;:::-;21595:222;;;;:::o;21823:640::-;22018:4;22056:3;22045:9;22041:19;22033:27;;22070:71;22138:1;22127:9;22123:17;22114:6;22070:71;:::i;:::-;22151:72;22219:2;22208:9;22204:18;22195:6;22151:72;:::i;:::-;22233;22301:2;22290:9;22286:18;22277:6;22233:72;:::i;:::-;22352:9;22346:4;22342:20;22337:2;22326:9;22322:18;22315:48;22380:76;22451:4;22442:6;22380:76;:::i;:::-;22372:84;;21823:640;;;;;;;:::o;22469:373::-;22612:4;22650:2;22639:9;22635:18;22627:26;;22699:9;22693:4;22689:20;22685:1;22674:9;22670:17;22663:47;22727:108;22830:4;22821:6;22727:108;:::i;:::-;22719:116;;22469:373;;;;:::o;22848:210::-;22935:4;22973:2;22962:9;22958:18;22950:26;;22986:65;23048:1;23037:9;23033:17;23024:6;22986:65;:::i;:::-;22848:210;;;;:::o;23064:313::-;23177:4;23215:2;23204:9;23200:18;23192:26;;23264:9;23258:4;23254:20;23250:1;23239:9;23235:17;23228:47;23292:78;23365:4;23356:6;23292:78;:::i;:::-;23284:86;;23064:313;;;;:::o;23383:419::-;23549:4;23587:2;23576:9;23572:18;23564:26;;23636:9;23630:4;23626:20;23622:1;23611:9;23607:17;23600:47;23664:131;23790:4;23664:131;:::i;:::-;23656:139;;23383:419;;;:::o;23808:::-;23974:4;24012:2;24001:9;23997:18;23989:26;;24061:9;24055:4;24051:20;24047:1;24036:9;24032:17;24025:47;24089:131;24215:4;24089:131;:::i;:::-;24081:139;;23808:419;;;:::o;24233:::-;24399:4;24437:2;24426:9;24422:18;24414:26;;24486:9;24480:4;24476:20;24472:1;24461:9;24457:17;24450:47;24514:131;24640:4;24514:131;:::i;:::-;24506:139;;24233:419;;;:::o;24658:::-;24824:4;24862:2;24851:9;24847:18;24839:26;;24911:9;24905:4;24901:20;24897:1;24886:9;24882:17;24875:47;24939:131;25065:4;24939:131;:::i;:::-;24931:139;;24658:419;;;:::o;25083:::-;25249:4;25287:2;25276:9;25272:18;25264:26;;25336:9;25330:4;25326:20;25322:1;25311:9;25307:17;25300:47;25364:131;25490:4;25364:131;:::i;:::-;25356:139;;25083:419;;;:::o;25508:::-;25674:4;25712:2;25701:9;25697:18;25689:26;;25761:9;25755:4;25751:20;25747:1;25736:9;25732:17;25725:47;25789:131;25915:4;25789:131;:::i;:::-;25781:139;;25508:419;;;:::o;25933:::-;26099:4;26137:2;26126:9;26122:18;26114:26;;26186:9;26180:4;26176:20;26172:1;26161:9;26157:17;26150:47;26214:131;26340:4;26214:131;:::i;:::-;26206:139;;25933:419;;;:::o;26358:::-;26524:4;26562:2;26551:9;26547:18;26539:26;;26611:9;26605:4;26601:20;26597:1;26586:9;26582:17;26575:47;26639:131;26765:4;26639:131;:::i;:::-;26631:139;;26358:419;;;:::o;26783:::-;26949:4;26987:2;26976:9;26972:18;26964:26;;27036:9;27030:4;27026:20;27022:1;27011:9;27007:17;27000:47;27064:131;27190:4;27064:131;:::i;:::-;27056:139;;26783:419;;;:::o;27208:::-;27374:4;27412:2;27401:9;27397:18;27389:26;;27461:9;27455:4;27451:20;27447:1;27436:9;27432:17;27425:47;27489:131;27615:4;27489:131;:::i;:::-;27481:139;;27208:419;;;:::o;27633:::-;27799:4;27837:2;27826:9;27822:18;27814:26;;27886:9;27880:4;27876:20;27872:1;27861:9;27857:17;27850:47;27914:131;28040:4;27914:131;:::i;:::-;27906:139;;27633:419;;;:::o;28058:::-;28224:4;28262:2;28251:9;28247:18;28239:26;;28311:9;28305:4;28301:20;28297:1;28286:9;28282:17;28275:47;28339:131;28465:4;28339:131;:::i;:::-;28331:139;;28058:419;;;:::o;28483:::-;28649:4;28687:2;28676:9;28672:18;28664:26;;28736:9;28730:4;28726:20;28722:1;28711:9;28707:17;28700:47;28764:131;28890:4;28764:131;:::i;:::-;28756:139;;28483:419;;;:::o;28908:::-;29074:4;29112:2;29101:9;29097:18;29089:26;;29161:9;29155:4;29151:20;29147:1;29136:9;29132:17;29125:47;29189:131;29315:4;29189:131;:::i;:::-;29181:139;;28908:419;;;:::o;29333:::-;29499:4;29537:2;29526:9;29522:18;29514:26;;29586:9;29580:4;29576:20;29572:1;29561:9;29557:17;29550:47;29614:131;29740:4;29614:131;:::i;:::-;29606:139;;29333:419;;;:::o;29758:::-;29924:4;29962:2;29951:9;29947:18;29939:26;;30011:9;30005:4;30001:20;29997:1;29986:9;29982:17;29975:47;30039:131;30165:4;30039:131;:::i;:::-;30031:139;;29758:419;;;:::o;30183:::-;30349:4;30387:2;30376:9;30372:18;30364:26;;30436:9;30430:4;30426:20;30422:1;30411:9;30407:17;30400:47;30464:131;30590:4;30464:131;:::i;:::-;30456:139;;30183:419;;;:::o;30608:::-;30774:4;30812:2;30801:9;30797:18;30789:26;;30861:9;30855:4;30851:20;30847:1;30836:9;30832:17;30825:47;30889:131;31015:4;30889:131;:::i;:::-;30881:139;;30608:419;;;:::o;31033:::-;31199:4;31237:2;31226:9;31222:18;31214:26;;31286:9;31280:4;31276:20;31272:1;31261:9;31257:17;31250:47;31314:131;31440:4;31314:131;:::i;:::-;31306:139;;31033:419;;;:::o;31458:::-;31624:4;31662:2;31651:9;31647:18;31639:26;;31711:9;31705:4;31701:20;31697:1;31686:9;31682:17;31675:47;31739:131;31865:4;31739:131;:::i;:::-;31731:139;;31458:419;;;:::o;31883:::-;32049:4;32087:2;32076:9;32072:18;32064:26;;32136:9;32130:4;32126:20;32122:1;32111:9;32107:17;32100:47;32164:131;32290:4;32164:131;:::i;:::-;32156:139;;31883:419;;;:::o;32308:::-;32474:4;32512:2;32501:9;32497:18;32489:26;;32561:9;32555:4;32551:20;32547:1;32536:9;32532:17;32525:47;32589:131;32715:4;32589:131;:::i;:::-;32581:139;;32308:419;;;:::o;32733:::-;32899:4;32937:2;32926:9;32922:18;32914:26;;32986:9;32980:4;32976:20;32972:1;32961:9;32957:17;32950:47;33014:131;33140:4;33014:131;:::i;:::-;33006:139;;32733:419;;;:::o;33158:::-;33324:4;33362:2;33351:9;33347:18;33339:26;;33411:9;33405:4;33401:20;33397:1;33386:9;33382:17;33375:47;33439:131;33565:4;33439:131;:::i;:::-;33431:139;;33158:419;;;:::o;33583:::-;33749:4;33787:2;33776:9;33772:18;33764:26;;33836:9;33830:4;33826:20;33822:1;33811:9;33807:17;33800:47;33864:131;33990:4;33864:131;:::i;:::-;33856:139;;33583:419;;;:::o;34008:222::-;34101:4;34139:2;34128:9;34124:18;34116:26;;34152:71;34220:1;34209:9;34205:17;34196:6;34152:71;:::i;:::-;34008:222;;;;:::o;34236:129::-;34270:6;34297:20;;:::i;:::-;34287:30;;34326:33;34354:4;34346:6;34326:33;:::i;:::-;34236:129;;;:::o;34371:75::-;34404:6;34437:2;34431:9;34421:19;;34371:75;:::o;34452:307::-;34513:4;34603:18;34595:6;34592:30;34589:56;;;34625:18;;:::i;:::-;34589:56;34663:29;34685:6;34663:29;:::i;:::-;34655:37;;34747:4;34741;34737:15;34729:23;;34452:307;;;:::o;34765:308::-;34827:4;34917:18;34909:6;34906:30;34903:56;;;34939:18;;:::i;:::-;34903:56;34977:29;34999:6;34977:29;:::i;:::-;34969:37;;35061:4;35055;35051:15;35043:23;;34765:308;;;:::o;35079:132::-;35146:4;35169:3;35161:11;;35199:4;35194:3;35190:14;35182:22;;35079:132;;;:::o;35217:141::-;35266:4;35289:3;35281:11;;35312:3;35309:1;35302:14;35346:4;35343:1;35333:18;35325:26;;35217:141;;;:::o;35364:114::-;35431:6;35465:5;35459:12;35449:22;;35364:114;;;:::o;35484:98::-;35535:6;35569:5;35563:12;35553:22;;35484:98;;;:::o;35588:99::-;35640:6;35674:5;35668:12;35658:22;;35588:99;;;:::o;35693:113::-;35763:4;35795;35790:3;35786:14;35778:22;;35693:113;;;:::o;35812:184::-;35911:11;35945:6;35940:3;35933:19;35985:4;35980:3;35976:14;35961:29;;35812:184;;;;:::o;36002:168::-;36085:11;36119:6;36114:3;36107:19;36159:4;36154:3;36150:14;36135:29;;36002:168;;;;:::o;36176:147::-;36277:11;36314:3;36299:18;;36176:147;;;;:::o;36329:169::-;36413:11;36447:6;36442:3;36435:19;36487:4;36482:3;36478:14;36463:29;;36329:169;;;;:::o;36504:148::-;36606:11;36643:3;36628:18;;36504:148;;;;:::o;36658:305::-;36698:3;36717:20;36735:1;36717:20;:::i;:::-;36712:25;;36751:20;36769:1;36751:20;:::i;:::-;36746:25;;36905:1;36837:66;36833:74;36830:1;36827:81;36824:107;;;36911:18;;:::i;:::-;36824:107;36955:1;36952;36948:9;36941:16;;36658:305;;;;:::o;36969:185::-;37009:1;37026:20;37044:1;37026:20;:::i;:::-;37021:25;;37060:20;37078:1;37060:20;:::i;:::-;37055:25;;37099:1;37089:35;;37104:18;;:::i;:::-;37089:35;37146:1;37143;37139:9;37134:14;;36969:185;;;;:::o;37160:348::-;37200:7;37223:20;37241:1;37223:20;:::i;:::-;37218:25;;37257:20;37275:1;37257:20;:::i;:::-;37252:25;;37445:1;37377:66;37373:74;37370:1;37367:81;37362:1;37355:9;37348:17;37344:105;37341:131;;;37452:18;;:::i;:::-;37341:131;37500:1;37497;37493:9;37482:20;;37160:348;;;;:::o;37514:191::-;37554:4;37574:20;37592:1;37574:20;:::i;:::-;37569:25;;37608:20;37626:1;37608:20;:::i;:::-;37603:25;;37647:1;37644;37641:8;37638:34;;;37652:18;;:::i;:::-;37638:34;37697:1;37694;37690:9;37682:17;;37514:191;;;;:::o;37711:96::-;37748:7;37777:24;37795:5;37777:24;:::i;:::-;37766:35;;37711:96;;;:::o;37813:90::-;37847:7;37890:5;37883:13;37876:21;37865:32;;37813:90;;;:::o;37909:149::-;37945:7;37985:66;37978:5;37974:78;37963:89;;37909:149;;;:::o;38064:126::-;38101:7;38141:42;38134:5;38130:54;38119:65;;38064:126;;;:::o;38196:77::-;38233:7;38262:5;38251:16;;38196:77;;;:::o;38279:154::-;38363:6;38358:3;38353;38340:30;38425:1;38416:6;38411:3;38407:16;38400:27;38279:154;;;:::o;38439:307::-;38507:1;38517:113;38531:6;38528:1;38525:13;38517:113;;;38616:1;38611:3;38607:11;38601:18;38597:1;38592:3;38588:11;38581:39;38553:2;38550:1;38546:10;38541:15;;38517:113;;;38648:6;38645:1;38642:13;38639:101;;;38728:1;38719:6;38714:3;38710:16;38703:27;38639:101;38488:258;38439:307;;;:::o;38752:320::-;38796:6;38833:1;38827:4;38823:12;38813:22;;38880:1;38874:4;38870:12;38901:18;38891:81;;38957:4;38949:6;38945:17;38935:27;;38891:81;39019:2;39011:6;39008:14;38988:18;38985:38;38982:84;;;39038:18;;:::i;:::-;38982:84;38803:269;38752:320;;;:::o;39078:281::-;39161:27;39183:4;39161:27;:::i;:::-;39153:6;39149:40;39291:6;39279:10;39276:22;39255:18;39243:10;39240:34;39237:62;39234:88;;;39302:18;;:::i;:::-;39234:88;39342:10;39338:2;39331:22;39121:238;39078:281;;:::o;39365:233::-;39404:3;39427:24;39445:5;39427:24;:::i;:::-;39418:33;;39473:66;39466:5;39463:77;39460:103;;;39543:18;;:::i;:::-;39460:103;39590:1;39583:5;39579:13;39572:20;;39365:233;;;:::o;39604:176::-;39636:1;39653:20;39671:1;39653:20;:::i;:::-;39648:25;;39687:20;39705:1;39687:20;:::i;:::-;39682:25;;39726:1;39716:35;;39731:18;;:::i;:::-;39716:35;39772:1;39769;39765:9;39760:14;;39604:176;;;;:::o;39786:180::-;39834:77;39831:1;39824:88;39931:4;39928:1;39921:15;39955:4;39952:1;39945:15;39972:180;40020:77;40017:1;40010:88;40117:4;40114:1;40107:15;40141:4;40138:1;40131:15;40158:180;40206:77;40203:1;40196:88;40303:4;40300:1;40293:15;40327:4;40324:1;40317:15;40344:180;40392:77;40389:1;40382:88;40489:4;40486:1;40479:15;40513:4;40510:1;40503:15;40530:180;40578:77;40575:1;40568:88;40675:4;40672:1;40665:15;40699:4;40696:1;40689:15;40716:180;40764:77;40761:1;40754:88;40861:4;40858:1;40851:15;40885:4;40882:1;40875:15;40902:117;41011:1;41008;41001:12;41025:117;41134:1;41131;41124:12;41148:117;41257:1;41254;41247:12;41271:117;41380:1;41377;41370:12;41394:102;41435:6;41486:2;41482:7;41477:2;41470:5;41466:14;41462:28;41452:38;;41394:102;;;:::o;41502:181::-;41642:33;41638:1;41630:6;41626:14;41619:57;41502:181;:::o;41689:230::-;41829:34;41825:1;41817:6;41813:14;41806:58;41898:13;41893:2;41885:6;41881:15;41874:38;41689:230;:::o;41925:237::-;42065:34;42061:1;42053:6;42049:14;42042:58;42134:20;42129:2;42121:6;42117:15;42110:45;41925:237;:::o;42168:225::-;42308:34;42304:1;42296:6;42292:14;42285:58;42377:8;42372:2;42364:6;42360:15;42353:33;42168:225;:::o;42399:178::-;42539:30;42535:1;42527:6;42523:14;42516:54;42399:178;:::o;42583:238::-;42723:34;42719:1;42711:6;42707:14;42700:58;42792:21;42787:2;42779:6;42775:15;42768:46;42583:238;:::o;42827:223::-;42967:34;42963:1;42955:6;42951:14;42944:58;43036:6;43031:2;43023:6;43019:15;43012:31;42827:223;:::o;43056:175::-;43196:27;43192:1;43184:6;43180:14;43173:51;43056:175;:::o;43237:231::-;43377:34;43373:1;43365:6;43361:14;43354:58;43446:14;43441:2;43433:6;43429:15;43422:39;43237:231;:::o;43474:290::-;43614:34;43610:1;43602:6;43598:14;43591:58;43683:34;43678:2;43670:6;43666:15;43659:59;43752:4;43747:2;43739:6;43735:15;43728:29;43474:290;:::o;43770:243::-;43910:34;43906:1;43898:6;43894:14;43887:58;43979:26;43974:2;43966:6;43962:15;43955:51;43770:243;:::o;44019:229::-;44159:34;44155:1;44147:6;44143:14;44136:58;44228:12;44223:2;44215:6;44211:15;44204:37;44019:229;:::o;44254:228::-;44394:34;44390:1;44382:6;44378:14;44371:58;44463:11;44458:2;44450:6;44446:15;44439:36;44254:228;:::o;44488:182::-;44628:34;44624:1;44616:6;44612:14;44605:58;44488:182;:::o;44676:231::-;44816:34;44812:1;44804:6;44800:14;44793:58;44885:14;44880:2;44872:6;44868:15;44861:39;44676:231;:::o;44913:182::-;45053:34;45049:1;45041:6;45037:14;45030:58;44913:182;:::o;45101:235::-;45241:34;45237:1;45229:6;45225:14;45218:58;45310:18;45305:2;45297:6;45293:15;45286:43;45101:235;:::o;45342:228::-;45482:34;45478:1;45470:6;45466:14;45459:58;45551:11;45546:2;45538:6;45534:15;45527:36;45342:228;:::o;45576:::-;45716:34;45712:1;45704:6;45700:14;45693:58;45785:11;45780:2;45772:6;45768:15;45761:36;45576:228;:::o;45810:234::-;45950:34;45946:1;45938:6;45934:14;45927:58;46019:17;46014:2;46006:6;46002:15;45995:42;45810:234;:::o;46050:220::-;46190:34;46186:1;46178:6;46174:14;46167:58;46259:3;46254:2;46246:6;46242:15;46235:28;46050:220;:::o;46276:232::-;46416:34;46412:1;46404:6;46400:14;46393:58;46485:15;46480:2;46472:6;46468:15;46461:40;46276:232;:::o;46514:114::-;;:::o;46634:166::-;46774:18;46770:1;46762:6;46758:14;46751:42;46634:166;:::o;46806:236::-;46946:34;46942:1;46934:6;46930:14;46923:58;47015:19;47010:2;47002:6;46998:15;46991:44;46806:236;:::o;47048:231::-;47188:34;47184:1;47176:6;47172:14;47165:58;47257:14;47252:2;47244:6;47240:15;47233:39;47048:231;:::o;47285:122::-;47358:24;47376:5;47358:24;:::i;:::-;47351:5;47348:35;47338:63;;47397:1;47394;47387:12;47338:63;47285:122;:::o;47413:116::-;47483:21;47498:5;47483:21;:::i;:::-;47476:5;47473:32;47463:60;;47519:1;47516;47509:12;47463:60;47413:116;:::o;47535:120::-;47607:23;47624:5;47607:23;:::i;:::-;47600:5;47597:34;47587:62;;47645:1;47642;47635:12;47587:62;47535:120;:::o;47661:122::-;47734:24;47752:5;47734:24;:::i;:::-;47727:5;47724:35;47714:63;;47773:1;47770;47763:12;47714:63;47661:122;:::o

Swarm Source

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