ETH Price: $3,463.58 (-1.23%)
Gas: 3 Gwei

Token

ALIEN ARENA (ALIEN ARENA)
 

Overview

Max Total Supply

603 ALIEN ARENA

Holders

180

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ALIEN ARENA
0xbdb1404c31cc5760697ccd79fe2a68f26b54ce85
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:
Alien_Arena

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-11
*/

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (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: contracts/ALIEN.sol



pragma solidity >=0.7.0 <0.9.0;



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

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.05 ether;
  uint256 public maxSupply = 5000;
  uint256 public maxMintAmount = 20;
  bool public paused = false;

 constructor() ERC721("ALIEN ARENA", "ALIEN ARENA") {
    setBaseURI("ipfs://QmRiGHfZ1RTboBbNuvNTTpAZVsbXfjSHAQnoDEWvTZWpA7/");
    mint(1);
  }

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

  function calcMintingFee(uint256 _supply, uint256 _mintAmount) internal  view returns(uint256 _cost) {
      if(_supply + _mintAmount < 501) {
          return 0 ether;
      }
      if(_supply <= maxSupply) {
          return cost;
      }
  }

  // Public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        require(msg.value >= calcMintingFee(supply, _mintAmount) * _mintAmount, "insufficient funds");
    }
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }

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

  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 setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000fa6565b5066b1a2bc2ec50000600d55611388600e556014600f556000601060006101000a81548160ff0219169083151502179055503480156200009057600080fd5b506040518060400160405280600b81526020017f414c49454e204152454e410000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f414c49454e204152454e4100000000000000000000000000000000000000000081525081600090805190602001906200011592919062000fa6565b5080600190805190602001906200012e92919062000fa6565b50505062000151620001456200019360201b60201c565b6200019b60201b60201c565b6200017b60405180606001604052806036815260200162005f1e603691396200026160201b60201c565b6200018d60016200030c60201b60201c565b62001972565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002716200019360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002976200054760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e790620013a8565b60405180910390fd5b80600b90805190602001906200030892919062000fa6565b5050565b601060009054906101000a900460ff16156200035f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035690620013ca565b60405180910390fd5b6000620003716200057160201b60201c565b905060008211620003b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b0906200140e565b60405180910390fd5b600f5482111562000401576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f89062001364565b60405180910390fd5b600e5482826200041291906200145d565b111562000456576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200044d9062001342565b60405180910390fd5b620004666200054760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620004fe5781620004ac82846200057e60201b60201c565b620004b89190620014ba565b341015620004fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004f490620013ec565b60405180910390fd5b5b6000600190505b82811162000542576200052c3382846200052091906200145d565b620005be60201b60201c565b808062000539906200162c565b91505062000505565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600880549050905090565b60006101f582846200059191906200145d565b1015620005a25760009050620005b8565b600e548311620005b757600d549050620005b8565b5b92915050565b620005e0828260405180602001604052806000815250620005e460201b60201c565b5050565b620005f683836200065260201b60201c565b6200060b60008484846200083860201b60201c565b6200064d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064490620012dc565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620006c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006bc9062001386565b60405180910390fd5b620006d681620009f260201b60201c565b1562000719576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071090620012fe565b60405180910390fd5b6200072d6000838362000a5e60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200077f91906200145d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620008668473ffffffffffffffffffffffffffffffffffffffff1662000ba560201b6200195a1760201c565b15620009e5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620008986200019360201b60201c565b8786866040518563ffffffff1660e01b8152600401620008bc949392919062001288565b602060405180830381600087803b158015620008d757600080fd5b505af19250505080156200090b57506040513d601f19601f820116820180604052508101906200090891906200106d565b60015b62000994573d80600081146200093e576040519150601f19603f3d011682016040523d82523d6000602084013e62000943565b606091505b506000815114156200098c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200098390620012dc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620009ea565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b62000a7683838362000bb860201b6200196d1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000ac35762000abd8162000bbd60201b60201c565b62000b0b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000b0a5762000b09838262000c0660201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000b585762000b528162000d8360201b60201c565b62000ba0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000b9f5762000b9e828262000e5f60201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000c208462000eeb60201b620010ff1760201c565b62000c2c91906200151b565b905060006007600084815260200190815260200160002054905081811462000d12576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000d9991906200151b565b905060006009600084815260200190815260200160002054905060006008838154811062000dcc5762000dcb62001707565b5b90600052602060002001549050806008838154811062000df15762000df062001707565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000e435762000e42620016d8565b5b6001900381819060005260206000200160009055905550505050565b600062000e778362000eeb60201b620010ff1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000f5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f569062001320565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000fb490620015f6565b90600052602060002090601f01602090048101928262000fd8576000855562001024565b82601f1062000ff357805160ff191683800117855562001024565b8280016001018555821562001024579182015b828111156200102357825182559160200191906001019062001006565b5b50905062001033919062001037565b5090565b5b808211156200105257600081600090555060010162001038565b5090565b600081519050620010678162001958565b92915050565b60006020828403121562001086576200108562001736565b5b6000620010968482850162001056565b91505092915050565b620010aa8162001556565b82525050565b6000620010bd8262001430565b620010c981856200143b565b9350620010db818560208601620015c0565b620010e6816200173b565b840191505092915050565b6000620011006032836200144c565b91506200110d826200174c565b604082019050919050565b600062001127601c836200144c565b915062001134826200179b565b602082019050919050565b60006200114e602a836200144c565b91506200115b82620017c4565b604082019050919050565b6000620011756016836200144c565b9150620011828262001813565b602082019050919050565b60006200119c6024836200144c565b9150620011a9826200183c565b604082019050919050565b6000620011c36020836200144c565b9150620011d0826200188b565b602082019050919050565b6000620011ea6020836200144c565b9150620011f782620018b4565b602082019050919050565b6000620012116016836200144c565b91506200121e82620018dd565b602082019050919050565b6000620012386012836200144c565b9150620012458262001906565b602082019050919050565b60006200125f601b836200144c565b91506200126c826200192f565b602082019050919050565b6200128281620015b6565b82525050565b60006080820190506200129f60008301876200109f565b620012ae60208301866200109f565b620012bd604083018562001277565b8181036060830152620012d18184620010b0565b905095945050505050565b60006020820190508181036000830152620012f781620010f1565b9050919050565b60006020820190508181036000830152620013198162001118565b9050919050565b600060208201905081810360008301526200133b816200113f565b9050919050565b600060208201905081810360008301526200135d8162001166565b9050919050565b600060208201905081810360008301526200137f816200118d565b9050919050565b60006020820190508181036000830152620013a181620011b4565b9050919050565b60006020820190508181036000830152620013c381620011db565b9050919050565b60006020820190508181036000830152620013e58162001202565b9050919050565b60006020820190508181036000830152620014078162001229565b9050919050565b60006020820190508181036000830152620014298162001250565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200146a82620015b6565b91506200147783620015b6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620014af57620014ae6200167a565b5b828201905092915050565b6000620014c782620015b6565b9150620014d483620015b6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001510576200150f6200167a565b5b828202905092915050565b60006200152882620015b6565b91506200153583620015b6565b9250828210156200154b576200154a6200167a565b5b828203905092915050565b6000620015638262001596565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620015e0578082015181840152602081019050620015c3565b83811115620015f0576000848401525b50505050565b600060028204905060018216806200160f57607f821691505b60208210811415620016265762001625620016a9565b5b50919050565b60006200163982620015b6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200166f576200166e6200167a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b62001963816200156a565b81146200196f57600080fd5b50565b61459c80620019826000396000f3fe6080604052600436106101ee5760003560e01c80635c975abb1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106cf578063d5abeb011461070c578063da3ef23f14610737578063e985e9c514610760578063f2fde38b1461079d576101ee565b8063a0712d6814610636578063a22cb46514610652578063b88d4fde1461067b578063c6682862146106a4576101ee565b8063715018a6116100dc578063715018a6146105a05780637f00c7a6146105b75780638da5cb5b146105e057806395d89b411461060b576101ee565b80635c975abb146104d05780636352211e146104fb5780636c0360eb1461053857806370a0823114610563576101ee565b806323b872dd11610185578063438b630011610154578063438b63001461040457806344a0d68a146104415780634f6ccce71461046a57806355f804b3146104a7576101ee565b806323b872dd1461036b5780632f745c59146103945780633ccfd60b146103d157806342842e0e146103db576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806313faede6146102ea57806318160ddd14610315578063239c70ae14610340576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612fb5565b6107c6565b6040516102279190613693565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612f88565b610840565b005b34801561026557600080fd5b5061026e6108d9565b60405161027b91906136ae565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190613058565b61096b565b6040516102b8919061360a565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612f48565b6109f0565b005b3480156102f657600080fd5b506102ff610b08565b60405161030c91906139d0565b60405180910390f35b34801561032157600080fd5b5061032a610b0e565b60405161033791906139d0565b60405180910390f35b34801561034c57600080fd5b50610355610b1b565b60405161036291906139d0565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612e32565b610b21565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190612f48565b610b81565b6040516103c891906139d0565b60405180910390f35b6103d9610c26565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612e32565b610d51565b005b34801561041057600080fd5b5061042b60048036038101906104269190612dc5565b610d71565b6040516104389190613671565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190613058565b610e1f565b005b34801561047657600080fd5b50610491600480360381019061048c9190613058565b610ea5565b60405161049e91906139d0565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c9919061300f565b610f16565b005b3480156104dc57600080fd5b506104e5610fac565b6040516104f29190613693565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190613058565b610fbf565b60405161052f919061360a565b60405180910390f35b34801561054457600080fd5b5061054d611071565b60405161055a91906136ae565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190612dc5565b6110ff565b60405161059791906139d0565b60405180910390f35b3480156105ac57600080fd5b506105b56111b7565b005b3480156105c357600080fd5b506105de60048036038101906105d99190613058565b61123f565b005b3480156105ec57600080fd5b506105f56112c5565b604051610602919061360a565b60405180910390f35b34801561061757600080fd5b506106206112ef565b60405161062d91906136ae565b60405180910390f35b610650600480360381019061064b9190613058565b611381565b005b34801561065e57600080fd5b5061067960048036038101906106749190612f08565b611582565b005b34801561068757600080fd5b506106a2600480360381019061069d9190612e85565b611598565b005b3480156106b057600080fd5b506106b96115fa565b6040516106c691906136ae565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190613058565b611688565b60405161070391906136ae565b60405180910390f35b34801561071857600080fd5b50610721611732565b60405161072e91906139d0565b60405180910390f35b34801561074357600080fd5b5061075e6004803603810190610759919061300f565b611738565b005b34801561076c57600080fd5b5061078760048036038101906107829190612df2565b6117ce565b6040516107949190613693565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190612dc5565b611862565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610839575061083882611972565b5b9050919050565b610848611a54565b73ffffffffffffffffffffffffffffffffffffffff166108666112c5565b73ffffffffffffffffffffffffffffffffffffffff16146108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b3906138b0565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600080546108e890613cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461091490613cd9565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b600061097682611a5c565b6109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90613890565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb82610fbf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613930565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8b611a54565b73ffffffffffffffffffffffffffffffffffffffff161480610aba5750610ab981610ab4611a54565b6117ce565b5b610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af0906137d0565b60405180910390fd5b610b038383611ac8565b505050565b600d5481565b6000600880549050905090565b600f5481565b610b32610b2c611a54565b82611b81565b610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890613970565b60405180910390fd5b610b7c838383611c5f565b505050565b6000610b8c836110ff565b8210610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc4906136d0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c2e611a54565b73ffffffffffffffffffffffffffffffffffffffff16610c4c6112c5565b73ffffffffffffffffffffffffffffffffffffffff1614610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c99906138b0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610cc8906135f5565b60006040518083038185875af1925050503d8060008114610d05576040519150601f19603f3d011682016040523d82523d6000602084013e610d0a565b606091505b5050905080610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590613790565b60405180910390fd5b50565b610d6c83838360405180602001604052806000815250611598565b505050565b60606000610d7e836110ff565b905060008167ffffffffffffffff811115610d9c57610d9b613ea1565b5b604051908082528060200260200182016040528015610dca5781602001602082028036833780820191505090505b50905060005b82811015610e1457610de28582610b81565b828281518110610df557610df4613e72565b5b6020026020010181815250508080610e0c90613d3c565b915050610dd0565b508092505050919050565b610e27611a54565b73ffffffffffffffffffffffffffffffffffffffff16610e456112c5565b73ffffffffffffffffffffffffffffffffffffffff1614610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e92906138b0565b60405180910390fd5b80600d8190555050565b6000610eaf610b0e565b8210610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee790613990565b60405180910390fd5b60088281548110610f0457610f03613e72565b5b90600052602060002001549050919050565b610f1e611a54565b73ffffffffffffffffffffffffffffffffffffffff16610f3c6112c5565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f89906138b0565b60405180910390fd5b80600b9080519060200190610fa8929190612bd9565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90613810565b60405180910390fd5b80915050919050565b600b805461107e90613cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546110aa90613cd9565b80156110f75780601f106110cc576101008083540402835291602001916110f7565b820191906000526020600020905b8154815290600101906020018083116110da57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611170576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611167906137f0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111bf611a54565b73ffffffffffffffffffffffffffffffffffffffff166111dd6112c5565b73ffffffffffffffffffffffffffffffffffffffff1614611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a906138b0565b60405180910390fd5b61123d6000611ebb565b565b611247611a54565b73ffffffffffffffffffffffffffffffffffffffff166112656112c5565b73ffffffffffffffffffffffffffffffffffffffff16146112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b2906138b0565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112fe90613cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461132a90613cd9565b80156113775780601f1061134c57610100808354040283529160200191611377565b820191906000526020600020905b81548152906001019060200180831161135a57829003601f168201915b5050505050905090565b601060009054906101000a900460ff16156113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c8906138d0565b60405180910390fd5b60006113db610b0e565b905060008211611420576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611417906139b0565b60405180910390fd5b600f54821115611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90613850565b60405180910390fd5b600e5482826114749190613b0e565b11156114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90613830565b60405180910390fd5b6114bd6112c5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461154757816114fa8284611f81565b6115049190613b95565b341015611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90613950565b60405180910390fd5b5b6000600190505b82811161157d5761156a3382846115659190613b0e565b611fbb565b808061157590613d3c565b91505061154e565b505050565b61159461158d611a54565b8383611fd9565b5050565b6115a96115a3611a54565b83611b81565b6115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90613970565b60405180910390fd5b6115f484848484612146565b50505050565b600c805461160790613cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461163390613cd9565b80156116805780601f1061165557610100808354040283529160200191611680565b820191906000526020600020905b81548152906001019060200180831161166357829003601f168201915b505050505081565b606061169382611a5c565b6116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c990613910565b60405180910390fd5b60006116dc6121a2565b905060008151116116fc576040518060200160405280600081525061172a565b8061170684612234565b600c60405160200161171a939291906135c4565b6040516020818303038152906040525b915050919050565b600e5481565b611740611a54565b73ffffffffffffffffffffffffffffffffffffffff1661175e6112c5565b73ffffffffffffffffffffffffffffffffffffffff16146117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab906138b0565b60405180910390fd5b80600c90805190602001906117ca929190612bd9565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61186a611a54565b73ffffffffffffffffffffffffffffffffffffffff166118886112c5565b73ffffffffffffffffffffffffffffffffffffffff16146118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d5906138b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561194e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194590613710565b60405180910390fd5b61195781611ebb565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a3d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a4d5750611a4c82612395565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b3b83610fbf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b8c82611a5c565b611bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc2906137b0565b60405180910390fd5b6000611bd683610fbf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c4557508373ffffffffffffffffffffffffffffffffffffffff16611c2d8461096b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c565750611c5581856117ce565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c7f82610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc906138f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c90613750565b60405180910390fd5b611d508383836123ff565b611d5b600082611ac8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dab9190613bef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e029190613b0e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006101f58284611f929190613b0e565b1015611fa15760009050611fb5565b600e548311611fb457600d549050611fb5565b5b92915050565b611fd5828260405180602001604052806000815250612513565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90613770565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121399190613693565b60405180910390a3505050565b612151848484611c5f565b61215d8484848461256e565b61219c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612193906136f0565b60405180910390fd5b50505050565b6060600b80546121b190613cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546121dd90613cd9565b801561222a5780601f106121ff5761010080835404028352916020019161222a565b820191906000526020600020905b81548152906001019060200180831161220d57829003601f168201915b5050505050905090565b6060600082141561227c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612390565b600082905060005b600082146122ae57808061229790613d3c565b915050600a826122a79190613b64565b9150612284565b60008167ffffffffffffffff8111156122ca576122c9613ea1565b5b6040519080825280601f01601f1916602001820160405280156122fc5781602001600182028036833780820191505090505b5090505b60008514612389576001826123159190613bef565b9150600a856123249190613d85565b60306123309190613b0e565b60f81b81838151811061234657612345613e72565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123829190613b64565b9450612300565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61240a83838361196d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561244d5761244881612705565b61248c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461248b5761248a838261274e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124cf576124ca816128bb565b61250e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461250d5761250c828261298c565b5b5b505050565b61251d8383612a0b565b61252a600084848461256e565b612569576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612560906136f0565b60405180910390fd5b505050565b600061258f8473ffffffffffffffffffffffffffffffffffffffff1661195a565b156126f8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125b8611a54565b8786866040518563ffffffff1660e01b81526004016125da9493929190613625565b602060405180830381600087803b1580156125f457600080fd5b505af192505050801561262557506040513d601f19601f820116820180604052508101906126229190612fe2565b60015b6126a8573d8060008114612655576040519150601f19603f3d011682016040523d82523d6000602084013e61265a565b606091505b506000815114156126a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612697906136f0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126fd565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161275b846110ff565b6127659190613bef565b905060006007600084815260200190815260200160002054905081811461284a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128cf9190613bef565b90506000600960008481526020019081526020016000205490506000600883815481106128ff576128fe613e72565b5b90600052602060002001549050806008838154811061292157612920613e72565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129705761296f613e43565b5b6001900381819060005260206000200160009055905550505050565b6000612997836110ff565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7290613870565b60405180910390fd5b612a8481611a5c565b15612ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abb90613730565b60405180910390fd5b612ad0600083836123ff565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b209190613b0e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612be590613cd9565b90600052602060002090601f016020900481019282612c075760008555612c4e565b82601f10612c2057805160ff1916838001178555612c4e565b82800160010185558215612c4e579182015b82811115612c4d578251825591602001919060010190612c32565b5b509050612c5b9190612c5f565b5090565b5b80821115612c78576000816000905550600101612c60565b5090565b6000612c8f612c8a84613a10565b6139eb565b905082815260208101848484011115612cab57612caa613ed5565b5b612cb6848285613c97565b509392505050565b6000612cd1612ccc84613a41565b6139eb565b905082815260208101848484011115612ced57612cec613ed5565b5b612cf8848285613c97565b509392505050565b600081359050612d0f8161450a565b92915050565b600081359050612d2481614521565b92915050565b600081359050612d3981614538565b92915050565b600081519050612d4e81614538565b92915050565b600082601f830112612d6957612d68613ed0565b5b8135612d79848260208601612c7c565b91505092915050565b600082601f830112612d9757612d96613ed0565b5b8135612da7848260208601612cbe565b91505092915050565b600081359050612dbf8161454f565b92915050565b600060208284031215612ddb57612dda613edf565b5b6000612de984828501612d00565b91505092915050565b60008060408385031215612e0957612e08613edf565b5b6000612e1785828601612d00565b9250506020612e2885828601612d00565b9150509250929050565b600080600060608486031215612e4b57612e4a613edf565b5b6000612e5986828701612d00565b9350506020612e6a86828701612d00565b9250506040612e7b86828701612db0565b9150509250925092565b60008060008060808587031215612e9f57612e9e613edf565b5b6000612ead87828801612d00565b9450506020612ebe87828801612d00565b9350506040612ecf87828801612db0565b925050606085013567ffffffffffffffff811115612ef057612eef613eda565b5b612efc87828801612d54565b91505092959194509250565b60008060408385031215612f1f57612f1e613edf565b5b6000612f2d85828601612d00565b9250506020612f3e85828601612d15565b9150509250929050565b60008060408385031215612f5f57612f5e613edf565b5b6000612f6d85828601612d00565b9250506020612f7e85828601612db0565b9150509250929050565b600060208284031215612f9e57612f9d613edf565b5b6000612fac84828501612d15565b91505092915050565b600060208284031215612fcb57612fca613edf565b5b6000612fd984828501612d2a565b91505092915050565b600060208284031215612ff857612ff7613edf565b5b600061300684828501612d3f565b91505092915050565b60006020828403121561302557613024613edf565b5b600082013567ffffffffffffffff81111561304357613042613eda565b5b61304f84828501612d82565b91505092915050565b60006020828403121561306e5761306d613edf565b5b600061307c84828501612db0565b91505092915050565b600061309183836135a6565b60208301905092915050565b6130a681613c23565b82525050565b60006130b782613a97565b6130c18185613ac5565b93506130cc83613a72565b8060005b838110156130fd5781516130e48882613085565b97506130ef83613ab8565b9250506001810190506130d0565b5085935050505092915050565b61311381613c35565b82525050565b600061312482613aa2565b61312e8185613ad6565b935061313e818560208601613ca6565b61314781613ee4565b840191505092915050565b600061315d82613aad565b6131678185613af2565b9350613177818560208601613ca6565b61318081613ee4565b840191505092915050565b600061319682613aad565b6131a08185613b03565b93506131b0818560208601613ca6565b80840191505092915050565b600081546131c981613cd9565b6131d38186613b03565b945060018216600081146131ee57600181146131ff57613232565b60ff19831686528186019350613232565b61320885613a82565b60005b8381101561322a5781548189015260018201915060208101905061320b565b838801955050505b50505092915050565b6000613248602b83613af2565b915061325382613ef5565b604082019050919050565b600061326b603283613af2565b915061327682613f44565b604082019050919050565b600061328e602683613af2565b915061329982613f93565b604082019050919050565b60006132b1601c83613af2565b91506132bc82613fe2565b602082019050919050565b60006132d4602483613af2565b91506132df8261400b565b604082019050919050565b60006132f7601983613af2565b91506133028261405a565b602082019050919050565b600061331a600d83613af2565b915061332582614083565b602082019050919050565b600061333d602c83613af2565b9150613348826140ac565b604082019050919050565b6000613360603883613af2565b915061336b826140fb565b604082019050919050565b6000613383602a83613af2565b915061338e8261414a565b604082019050919050565b60006133a6602983613af2565b91506133b182614199565b604082019050919050565b60006133c9601683613af2565b91506133d4826141e8565b602082019050919050565b60006133ec602483613af2565b91506133f782614211565b604082019050919050565b600061340f602083613af2565b915061341a82614260565b602082019050919050565b6000613432602c83613af2565b915061343d82614289565b604082019050919050565b6000613455602083613af2565b9150613460826142d8565b602082019050919050565b6000613478601683613af2565b915061348382614301565b602082019050919050565b600061349b602983613af2565b91506134a68261432a565b604082019050919050565b60006134be602f83613af2565b91506134c982614379565b604082019050919050565b60006134e1602183613af2565b91506134ec826143c8565b604082019050919050565b6000613504600083613ae7565b915061350f82614417565b600082019050919050565b6000613527601283613af2565b91506135328261441a565b602082019050919050565b600061354a603183613af2565b915061355582614443565b604082019050919050565b600061356d602c83613af2565b915061357882614492565b604082019050919050565b6000613590601b83613af2565b915061359b826144e1565b602082019050919050565b6135af81613c8d565b82525050565b6135be81613c8d565b82525050565b60006135d0828661318b565b91506135dc828561318b565b91506135e882846131bc565b9150819050949350505050565b6000613600826134f7565b9150819050919050565b600060208201905061361f600083018461309d565b92915050565b600060808201905061363a600083018761309d565b613647602083018661309d565b61365460408301856135b5565b81810360608301526136668184613119565b905095945050505050565b6000602082019050818103600083015261368b81846130ac565b905092915050565b60006020820190506136a8600083018461310a565b92915050565b600060208201905081810360008301526136c88184613152565b905092915050565b600060208201905081810360008301526136e98161323b565b9050919050565b600060208201905081810360008301526137098161325e565b9050919050565b6000602082019050818103600083015261372981613281565b9050919050565b60006020820190508181036000830152613749816132a4565b9050919050565b60006020820190508181036000830152613769816132c7565b9050919050565b60006020820190508181036000830152613789816132ea565b9050919050565b600060208201905081810360008301526137a98161330d565b9050919050565b600060208201905081810360008301526137c981613330565b9050919050565b600060208201905081810360008301526137e981613353565b9050919050565b6000602082019050818103600083015261380981613376565b9050919050565b6000602082019050818103600083015261382981613399565b9050919050565b60006020820190508181036000830152613849816133bc565b9050919050565b60006020820190508181036000830152613869816133df565b9050919050565b6000602082019050818103600083015261388981613402565b9050919050565b600060208201905081810360008301526138a981613425565b9050919050565b600060208201905081810360008301526138c981613448565b9050919050565b600060208201905081810360008301526138e98161346b565b9050919050565b600060208201905081810360008301526139098161348e565b9050919050565b60006020820190508181036000830152613929816134b1565b9050919050565b60006020820190508181036000830152613949816134d4565b9050919050565b600060208201905081810360008301526139698161351a565b9050919050565b600060208201905081810360008301526139898161353d565b9050919050565b600060208201905081810360008301526139a981613560565b9050919050565b600060208201905081810360008301526139c981613583565b9050919050565b60006020820190506139e560008301846135b5565b92915050565b60006139f5613a06565b9050613a018282613d0b565b919050565b6000604051905090565b600067ffffffffffffffff821115613a2b57613a2a613ea1565b5b613a3482613ee4565b9050602081019050919050565b600067ffffffffffffffff821115613a5c57613a5b613ea1565b5b613a6582613ee4565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b1982613c8d565b9150613b2483613c8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b5957613b58613db6565b5b828201905092915050565b6000613b6f82613c8d565b9150613b7a83613c8d565b925082613b8a57613b89613de5565b5b828204905092915050565b6000613ba082613c8d565b9150613bab83613c8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613be457613be3613db6565b5b828202905092915050565b6000613bfa82613c8d565b9150613c0583613c8d565b925082821015613c1857613c17613db6565b5b828203905092915050565b6000613c2e82613c6d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613cc4578082015181840152602081019050613ca9565b83811115613cd3576000848401525b50505050565b60006002820490506001821680613cf157607f821691505b60208210811415613d0557613d04613e14565b5b50919050565b613d1482613ee4565b810181811067ffffffffffffffff82111715613d3357613d32613ea1565b5b80604052505050565b6000613d4782613c8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d7a57613d79613db6565b5b600182019050919050565b6000613d9082613c8d565b9150613d9b83613c8d565b925082613dab57613daa613de5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5472616e73666572204661696c00000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61451381613c23565b811461451e57600080fd5b50565b61452a81613c35565b811461453557600080fd5b50565b61454181613c41565b811461454c57600080fd5b50565b61455881613c8d565b811461456357600080fd5b5056fea2646970667358221220c2fca982850efc107b7ea0ffcad2356248c278aa53c72424e86d5ae8c0ad537564736f6c63430008070033697066733a2f2f516d52694748665a315254626f42624e75764e545470415a56736258666a534841516e6f44455776545a577041372f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80635c975abb1161010d578063a0712d68116100a0578063c87b56dd1161006f578063c87b56dd146106cf578063d5abeb011461070c578063da3ef23f14610737578063e985e9c514610760578063f2fde38b1461079d576101ee565b8063a0712d6814610636578063a22cb46514610652578063b88d4fde1461067b578063c6682862146106a4576101ee565b8063715018a6116100dc578063715018a6146105a05780637f00c7a6146105b75780638da5cb5b146105e057806395d89b411461060b576101ee565b80635c975abb146104d05780636352211e146104fb5780636c0360eb1461053857806370a0823114610563576101ee565b806323b872dd11610185578063438b630011610154578063438b63001461040457806344a0d68a146104415780634f6ccce71461046a57806355f804b3146104a7576101ee565b806323b872dd1461036b5780632f745c59146103945780633ccfd60b146103d157806342842e0e146103db576101ee565b8063095ea7b3116101c1578063095ea7b3146102c157806313faede6146102ea57806318160ddd14610315578063239c70ae14610340576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde0314610259578063081812fc14610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612fb5565b6107c6565b6040516102279190613693565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612f88565b610840565b005b34801561026557600080fd5b5061026e6108d9565b60405161027b91906136ae565b60405180910390f35b34801561029057600080fd5b506102ab60048036038101906102a69190613058565b61096b565b6040516102b8919061360a565b60405180910390f35b3480156102cd57600080fd5b506102e860048036038101906102e39190612f48565b6109f0565b005b3480156102f657600080fd5b506102ff610b08565b60405161030c91906139d0565b60405180910390f35b34801561032157600080fd5b5061032a610b0e565b60405161033791906139d0565b60405180910390f35b34801561034c57600080fd5b50610355610b1b565b60405161036291906139d0565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612e32565b610b21565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190612f48565b610b81565b6040516103c891906139d0565b60405180910390f35b6103d9610c26565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612e32565b610d51565b005b34801561041057600080fd5b5061042b60048036038101906104269190612dc5565b610d71565b6040516104389190613671565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190613058565b610e1f565b005b34801561047657600080fd5b50610491600480360381019061048c9190613058565b610ea5565b60405161049e91906139d0565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c9919061300f565b610f16565b005b3480156104dc57600080fd5b506104e5610fac565b6040516104f29190613693565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d9190613058565b610fbf565b60405161052f919061360a565b60405180910390f35b34801561054457600080fd5b5061054d611071565b60405161055a91906136ae565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190612dc5565b6110ff565b60405161059791906139d0565b60405180910390f35b3480156105ac57600080fd5b506105b56111b7565b005b3480156105c357600080fd5b506105de60048036038101906105d99190613058565b61123f565b005b3480156105ec57600080fd5b506105f56112c5565b604051610602919061360a565b60405180910390f35b34801561061757600080fd5b506106206112ef565b60405161062d91906136ae565b60405180910390f35b610650600480360381019061064b9190613058565b611381565b005b34801561065e57600080fd5b5061067960048036038101906106749190612f08565b611582565b005b34801561068757600080fd5b506106a2600480360381019061069d9190612e85565b611598565b005b3480156106b057600080fd5b506106b96115fa565b6040516106c691906136ae565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190613058565b611688565b60405161070391906136ae565b60405180910390f35b34801561071857600080fd5b50610721611732565b60405161072e91906139d0565b60405180910390f35b34801561074357600080fd5b5061075e6004803603810190610759919061300f565b611738565b005b34801561076c57600080fd5b5061078760048036038101906107829190612df2565b6117ce565b6040516107949190613693565b60405180910390f35b3480156107a957600080fd5b506107c460048036038101906107bf9190612dc5565b611862565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610839575061083882611972565b5b9050919050565b610848611a54565b73ffffffffffffffffffffffffffffffffffffffff166108666112c5565b73ffffffffffffffffffffffffffffffffffffffff16146108bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b3906138b0565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600080546108e890613cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461091490613cd9565b80156109615780601f1061093657610100808354040283529160200191610961565b820191906000526020600020905b81548152906001019060200180831161094457829003601f168201915b5050505050905090565b600061097682611a5c565b6109b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ac90613890565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fb82610fbf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6390613930565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8b611a54565b73ffffffffffffffffffffffffffffffffffffffff161480610aba5750610ab981610ab4611a54565b6117ce565b5b610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af0906137d0565b60405180910390fd5b610b038383611ac8565b505050565b600d5481565b6000600880549050905090565b600f5481565b610b32610b2c611a54565b82611b81565b610b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6890613970565b60405180910390fd5b610b7c838383611c5f565b505050565b6000610b8c836110ff565b8210610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc4906136d0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c2e611a54565b73ffffffffffffffffffffffffffffffffffffffff16610c4c6112c5565b73ffffffffffffffffffffffffffffffffffffffff1614610ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c99906138b0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610cc8906135f5565b60006040518083038185875af1925050503d8060008114610d05576040519150601f19603f3d011682016040523d82523d6000602084013e610d0a565b606091505b5050905080610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590613790565b60405180910390fd5b50565b610d6c83838360405180602001604052806000815250611598565b505050565b60606000610d7e836110ff565b905060008167ffffffffffffffff811115610d9c57610d9b613ea1565b5b604051908082528060200260200182016040528015610dca5781602001602082028036833780820191505090505b50905060005b82811015610e1457610de28582610b81565b828281518110610df557610df4613e72565b5b6020026020010181815250508080610e0c90613d3c565b915050610dd0565b508092505050919050565b610e27611a54565b73ffffffffffffffffffffffffffffffffffffffff16610e456112c5565b73ffffffffffffffffffffffffffffffffffffffff1614610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e92906138b0565b60405180910390fd5b80600d8190555050565b6000610eaf610b0e565b8210610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee790613990565b60405180910390fd5b60088281548110610f0457610f03613e72565b5b90600052602060002001549050919050565b610f1e611a54565b73ffffffffffffffffffffffffffffffffffffffff16610f3c6112c5565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f89906138b0565b60405180910390fd5b80600b9080519060200190610fa8929190612bd9565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90613810565b60405180910390fd5b80915050919050565b600b805461107e90613cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546110aa90613cd9565b80156110f75780601f106110cc576101008083540402835291602001916110f7565b820191906000526020600020905b8154815290600101906020018083116110da57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611170576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611167906137f0565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111bf611a54565b73ffffffffffffffffffffffffffffffffffffffff166111dd6112c5565b73ffffffffffffffffffffffffffffffffffffffff1614611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a906138b0565b60405180910390fd5b61123d6000611ebb565b565b611247611a54565b73ffffffffffffffffffffffffffffffffffffffff166112656112c5565b73ffffffffffffffffffffffffffffffffffffffff16146112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b2906138b0565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546112fe90613cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461132a90613cd9565b80156113775780601f1061134c57610100808354040283529160200191611377565b820191906000526020600020905b81548152906001019060200180831161135a57829003601f168201915b5050505050905090565b601060009054906101000a900460ff16156113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c8906138d0565b60405180910390fd5b60006113db610b0e565b905060008211611420576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611417906139b0565b60405180910390fd5b600f54821115611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c90613850565b60405180910390fd5b600e5482826114749190613b0e565b11156114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90613830565b60405180910390fd5b6114bd6112c5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461154757816114fa8284611f81565b6115049190613b95565b341015611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90613950565b60405180910390fd5b5b6000600190505b82811161157d5761156a3382846115659190613b0e565b611fbb565b808061157590613d3c565b91505061154e565b505050565b61159461158d611a54565b8383611fd9565b5050565b6115a96115a3611a54565b83611b81565b6115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df90613970565b60405180910390fd5b6115f484848484612146565b50505050565b600c805461160790613cd9565b80601f016020809104026020016040519081016040528092919081815260200182805461163390613cd9565b80156116805780601f1061165557610100808354040283529160200191611680565b820191906000526020600020905b81548152906001019060200180831161166357829003601f168201915b505050505081565b606061169382611a5c565b6116d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c990613910565b60405180910390fd5b60006116dc6121a2565b905060008151116116fc576040518060200160405280600081525061172a565b8061170684612234565b600c60405160200161171a939291906135c4565b6040516020818303038152906040525b915050919050565b600e5481565b611740611a54565b73ffffffffffffffffffffffffffffffffffffffff1661175e6112c5565b73ffffffffffffffffffffffffffffffffffffffff16146117b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ab906138b0565b60405180910390fd5b80600c90805190602001906117ca929190612bd9565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61186a611a54565b73ffffffffffffffffffffffffffffffffffffffff166118886112c5565b73ffffffffffffffffffffffffffffffffffffffff16146118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d5906138b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561194e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194590613710565b60405180910390fd5b61195781611ebb565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a3d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a4d5750611a4c82612395565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b3b83610fbf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b8c82611a5c565b611bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc2906137b0565b60405180910390fd5b6000611bd683610fbf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c4557508373ffffffffffffffffffffffffffffffffffffffff16611c2d8461096b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c565750611c5581856117ce565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c7f82610fbf565b73ffffffffffffffffffffffffffffffffffffffff1614611cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccc906138f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c90613750565b60405180910390fd5b611d508383836123ff565b611d5b600082611ac8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dab9190613bef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e029190613b0e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006101f58284611f929190613b0e565b1015611fa15760009050611fb5565b600e548311611fb457600d549050611fb5565b5b92915050565b611fd5828260405180602001604052806000815250612513565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90613770565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121399190613693565b60405180910390a3505050565b612151848484611c5f565b61215d8484848461256e565b61219c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612193906136f0565b60405180910390fd5b50505050565b6060600b80546121b190613cd9565b80601f01602080910402602001604051908101604052809291908181526020018280546121dd90613cd9565b801561222a5780601f106121ff5761010080835404028352916020019161222a565b820191906000526020600020905b81548152906001019060200180831161220d57829003601f168201915b5050505050905090565b6060600082141561227c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612390565b600082905060005b600082146122ae57808061229790613d3c565b915050600a826122a79190613b64565b9150612284565b60008167ffffffffffffffff8111156122ca576122c9613ea1565b5b6040519080825280601f01601f1916602001820160405280156122fc5781602001600182028036833780820191505090505b5090505b60008514612389576001826123159190613bef565b9150600a856123249190613d85565b60306123309190613b0e565b60f81b81838151811061234657612345613e72565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123829190613b64565b9450612300565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61240a83838361196d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561244d5761244881612705565b61248c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461248b5761248a838261274e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124cf576124ca816128bb565b61250e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461250d5761250c828261298c565b5b5b505050565b61251d8383612a0b565b61252a600084848461256e565b612569576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612560906136f0565b60405180910390fd5b505050565b600061258f8473ffffffffffffffffffffffffffffffffffffffff1661195a565b156126f8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125b8611a54565b8786866040518563ffffffff1660e01b81526004016125da9493929190613625565b602060405180830381600087803b1580156125f457600080fd5b505af192505050801561262557506040513d601f19601f820116820180604052508101906126229190612fe2565b60015b6126a8573d8060008114612655576040519150601f19603f3d011682016040523d82523d6000602084013e61265a565b606091505b506000815114156126a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612697906136f0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126fd565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161275b846110ff565b6127659190613bef565b905060006007600084815260200190815260200160002054905081811461284a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128cf9190613bef565b90506000600960008481526020019081526020016000205490506000600883815481106128ff576128fe613e72565b5b90600052602060002001549050806008838154811061292157612920613e72565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129705761296f613e43565b5b6001900381819060005260206000200160009055905550505050565b6000612997836110ff565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7290613870565b60405180910390fd5b612a8481611a5c565b15612ac4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abb90613730565b60405180910390fd5b612ad0600083836123ff565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b209190613b0e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612be590613cd9565b90600052602060002090601f016020900481019282612c075760008555612c4e565b82601f10612c2057805160ff1916838001178555612c4e565b82800160010185558215612c4e579182015b82811115612c4d578251825591602001919060010190612c32565b5b509050612c5b9190612c5f565b5090565b5b80821115612c78576000816000905550600101612c60565b5090565b6000612c8f612c8a84613a10565b6139eb565b905082815260208101848484011115612cab57612caa613ed5565b5b612cb6848285613c97565b509392505050565b6000612cd1612ccc84613a41565b6139eb565b905082815260208101848484011115612ced57612cec613ed5565b5b612cf8848285613c97565b509392505050565b600081359050612d0f8161450a565b92915050565b600081359050612d2481614521565b92915050565b600081359050612d3981614538565b92915050565b600081519050612d4e81614538565b92915050565b600082601f830112612d6957612d68613ed0565b5b8135612d79848260208601612c7c565b91505092915050565b600082601f830112612d9757612d96613ed0565b5b8135612da7848260208601612cbe565b91505092915050565b600081359050612dbf8161454f565b92915050565b600060208284031215612ddb57612dda613edf565b5b6000612de984828501612d00565b91505092915050565b60008060408385031215612e0957612e08613edf565b5b6000612e1785828601612d00565b9250506020612e2885828601612d00565b9150509250929050565b600080600060608486031215612e4b57612e4a613edf565b5b6000612e5986828701612d00565b9350506020612e6a86828701612d00565b9250506040612e7b86828701612db0565b9150509250925092565b60008060008060808587031215612e9f57612e9e613edf565b5b6000612ead87828801612d00565b9450506020612ebe87828801612d00565b9350506040612ecf87828801612db0565b925050606085013567ffffffffffffffff811115612ef057612eef613eda565b5b612efc87828801612d54565b91505092959194509250565b60008060408385031215612f1f57612f1e613edf565b5b6000612f2d85828601612d00565b9250506020612f3e85828601612d15565b9150509250929050565b60008060408385031215612f5f57612f5e613edf565b5b6000612f6d85828601612d00565b9250506020612f7e85828601612db0565b9150509250929050565b600060208284031215612f9e57612f9d613edf565b5b6000612fac84828501612d15565b91505092915050565b600060208284031215612fcb57612fca613edf565b5b6000612fd984828501612d2a565b91505092915050565b600060208284031215612ff857612ff7613edf565b5b600061300684828501612d3f565b91505092915050565b60006020828403121561302557613024613edf565b5b600082013567ffffffffffffffff81111561304357613042613eda565b5b61304f84828501612d82565b91505092915050565b60006020828403121561306e5761306d613edf565b5b600061307c84828501612db0565b91505092915050565b600061309183836135a6565b60208301905092915050565b6130a681613c23565b82525050565b60006130b782613a97565b6130c18185613ac5565b93506130cc83613a72565b8060005b838110156130fd5781516130e48882613085565b97506130ef83613ab8565b9250506001810190506130d0565b5085935050505092915050565b61311381613c35565b82525050565b600061312482613aa2565b61312e8185613ad6565b935061313e818560208601613ca6565b61314781613ee4565b840191505092915050565b600061315d82613aad565b6131678185613af2565b9350613177818560208601613ca6565b61318081613ee4565b840191505092915050565b600061319682613aad565b6131a08185613b03565b93506131b0818560208601613ca6565b80840191505092915050565b600081546131c981613cd9565b6131d38186613b03565b945060018216600081146131ee57600181146131ff57613232565b60ff19831686528186019350613232565b61320885613a82565b60005b8381101561322a5781548189015260018201915060208101905061320b565b838801955050505b50505092915050565b6000613248602b83613af2565b915061325382613ef5565b604082019050919050565b600061326b603283613af2565b915061327682613f44565b604082019050919050565b600061328e602683613af2565b915061329982613f93565b604082019050919050565b60006132b1601c83613af2565b91506132bc82613fe2565b602082019050919050565b60006132d4602483613af2565b91506132df8261400b565b604082019050919050565b60006132f7601983613af2565b91506133028261405a565b602082019050919050565b600061331a600d83613af2565b915061332582614083565b602082019050919050565b600061333d602c83613af2565b9150613348826140ac565b604082019050919050565b6000613360603883613af2565b915061336b826140fb565b604082019050919050565b6000613383602a83613af2565b915061338e8261414a565b604082019050919050565b60006133a6602983613af2565b91506133b182614199565b604082019050919050565b60006133c9601683613af2565b91506133d4826141e8565b602082019050919050565b60006133ec602483613af2565b91506133f782614211565b604082019050919050565b600061340f602083613af2565b915061341a82614260565b602082019050919050565b6000613432602c83613af2565b915061343d82614289565b604082019050919050565b6000613455602083613af2565b9150613460826142d8565b602082019050919050565b6000613478601683613af2565b915061348382614301565b602082019050919050565b600061349b602983613af2565b91506134a68261432a565b604082019050919050565b60006134be602f83613af2565b91506134c982614379565b604082019050919050565b60006134e1602183613af2565b91506134ec826143c8565b604082019050919050565b6000613504600083613ae7565b915061350f82614417565b600082019050919050565b6000613527601283613af2565b91506135328261441a565b602082019050919050565b600061354a603183613af2565b915061355582614443565b604082019050919050565b600061356d602c83613af2565b915061357882614492565b604082019050919050565b6000613590601b83613af2565b915061359b826144e1565b602082019050919050565b6135af81613c8d565b82525050565b6135be81613c8d565b82525050565b60006135d0828661318b565b91506135dc828561318b565b91506135e882846131bc565b9150819050949350505050565b6000613600826134f7565b9150819050919050565b600060208201905061361f600083018461309d565b92915050565b600060808201905061363a600083018761309d565b613647602083018661309d565b61365460408301856135b5565b81810360608301526136668184613119565b905095945050505050565b6000602082019050818103600083015261368b81846130ac565b905092915050565b60006020820190506136a8600083018461310a565b92915050565b600060208201905081810360008301526136c88184613152565b905092915050565b600060208201905081810360008301526136e98161323b565b9050919050565b600060208201905081810360008301526137098161325e565b9050919050565b6000602082019050818103600083015261372981613281565b9050919050565b60006020820190508181036000830152613749816132a4565b9050919050565b60006020820190508181036000830152613769816132c7565b9050919050565b60006020820190508181036000830152613789816132ea565b9050919050565b600060208201905081810360008301526137a98161330d565b9050919050565b600060208201905081810360008301526137c981613330565b9050919050565b600060208201905081810360008301526137e981613353565b9050919050565b6000602082019050818103600083015261380981613376565b9050919050565b6000602082019050818103600083015261382981613399565b9050919050565b60006020820190508181036000830152613849816133bc565b9050919050565b60006020820190508181036000830152613869816133df565b9050919050565b6000602082019050818103600083015261388981613402565b9050919050565b600060208201905081810360008301526138a981613425565b9050919050565b600060208201905081810360008301526138c981613448565b9050919050565b600060208201905081810360008301526138e98161346b565b9050919050565b600060208201905081810360008301526139098161348e565b9050919050565b60006020820190508181036000830152613929816134b1565b9050919050565b60006020820190508181036000830152613949816134d4565b9050919050565b600060208201905081810360008301526139698161351a565b9050919050565b600060208201905081810360008301526139898161353d565b9050919050565b600060208201905081810360008301526139a981613560565b9050919050565b600060208201905081810360008301526139c981613583565b9050919050565b60006020820190506139e560008301846135b5565b92915050565b60006139f5613a06565b9050613a018282613d0b565b919050565b6000604051905090565b600067ffffffffffffffff821115613a2b57613a2a613ea1565b5b613a3482613ee4565b9050602081019050919050565b600067ffffffffffffffff821115613a5c57613a5b613ea1565b5b613a6582613ee4565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b1982613c8d565b9150613b2483613c8d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b5957613b58613db6565b5b828201905092915050565b6000613b6f82613c8d565b9150613b7a83613c8d565b925082613b8a57613b89613de5565b5b828204905092915050565b6000613ba082613c8d565b9150613bab83613c8d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613be457613be3613db6565b5b828202905092915050565b6000613bfa82613c8d565b9150613c0583613c8d565b925082821015613c1857613c17613db6565b5b828203905092915050565b6000613c2e82613c6d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613cc4578082015181840152602081019050613ca9565b83811115613cd3576000848401525b50505050565b60006002820490506001821680613cf157607f821691505b60208210811415613d0557613d04613e14565b5b50919050565b613d1482613ee4565b810181811067ffffffffffffffff82111715613d3357613d32613ea1565b5b80604052505050565b6000613d4782613c8d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d7a57613d79613db6565b5b600182019050919050565b6000613d9082613c8d565b9150613d9b83613c8d565b925082613dab57613daa613de5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5472616e73666572204661696c00000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61451381613c23565b811461451e57600080fd5b50565b61452a81613c35565b811461453557600080fd5b50565b61454181613c41565b811461454c57600080fd5b50565b61455881613c8d565b811461456357600080fd5b5056fea2646970667358221220c2fca982850efc107b7ea0ffcad2356248c278aa53c72424e86d5ae8c0ad537564736f6c63430008070033

Deployed Bytecode Sourcemap

44522:2945:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38299:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47210:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25793:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27352:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26875:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44677:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38939:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44750:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28102:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38607:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47289:175;;;:::i;:::-;;28512:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45985:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46770:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39129:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46978:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44788:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25487:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44609:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25217:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4763:103;;;;;;;;;;;;;:::i;:::-;;46856:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4112:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25962:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45364:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27645:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28768:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44635:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46339:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44714:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47082:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27871:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5021:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38299:224;38401:4;38440:35;38425:50;;;:11;:50;;;;:90;;;;38479:36;38503:11;38479:23;:36::i;:::-;38425:90;38418:97;;38299:224;;;:::o;47210:73::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47271:6:::1;47262;;:15;;;;;;;;;;;;;;;;;;47210:73:::0;:::o;25793:100::-;25847:13;25880:5;25873:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25793:100;:::o;27352:221::-;27428:7;27456:16;27464:7;27456;:16::i;:::-;27448:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27541:15;:24;27557:7;27541:24;;;;;;;;;;;;;;;;;;;;;27534:31;;27352:221;;;:::o;26875:411::-;26956:13;26972:23;26987:7;26972:14;:23::i;:::-;26956:39;;27020:5;27014:11;;:2;:11;;;;27006:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27114:5;27098:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27123:37;27140:5;27147:12;:10;:12::i;:::-;27123:16;:37::i;:::-;27098:62;27076:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27257:21;27266:2;27270:7;27257:8;:21::i;:::-;26945:341;26875:411;;:::o;44677:32::-;;;;:::o;38939:113::-;39000:7;39027:10;:17;;;;39020:24;;38939:113;:::o;44750:33::-;;;;:::o;28102:339::-;28297:41;28316:12;:10;:12::i;:::-;28330:7;28297:18;:41::i;:::-;28289:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28405:28;28415:4;28421:2;28425:7;28405:9;:28::i;:::-;28102:339;;;:::o;38607:256::-;38704:7;38740:23;38757:5;38740:16;:23::i;:::-;38732:5;:31;38724:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38829:12;:19;38842:5;38829:19;;;;;;;;;;;;;;;:26;38849:5;38829:26;;;;;;;;;;;;38822:33;;38607:256;;;;:::o;47289:175::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47342:12:::1;47368:10;47360:24;;47392:21;47360:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47341:77;;;47433:7;47425:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;47334:130;47289:175::o:0;28512:185::-;28650:39;28667:4;28673:2;28677:7;28650:39;;;;;;;;;;;;:16;:39::i;:::-;28512:185;;;:::o;45985:348::-;46060:16;46088:23;46114:17;46124:6;46114:9;:17::i;:::-;46088:43;;46138:25;46180:15;46166:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46138:58;;46208:9;46203:103;46223:15;46219:1;:19;46203:103;;;46268:30;46288:6;46296:1;46268:19;:30::i;:::-;46254:8;46263:1;46254:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;46240:3;;;;;:::i;:::-;;;;46203:103;;;;46319:8;46312:15;;;;45985:348;;;:::o;46770:80::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46836:8:::1;46829:4;:15;;;;46770:80:::0;:::o;39129:233::-;39204:7;39240:30;:28;:30::i;:::-;39232:5;:38;39224:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;39337:10;39348:5;39337:17;;;;;;;;:::i;:::-;;;;;;;;;;39330:24;;39129:233;;;:::o;46978:98::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47059:11:::1;47049:7;:21;;;;;;;;;;;;:::i;:::-;;46978:98:::0;:::o;44788:26::-;;;;;;;;;;;;;:::o;25487:239::-;25559:7;25579:13;25595:7;:16;25603:7;25595:16;;;;;;;;;;;;;;;;;;;;;25579:32;;25647:1;25630:19;;:5;:19;;;;25622:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25713:5;25706:12;;;25487:239;;;:::o;44609:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25217:208::-;25289:7;25334:1;25317:19;;:5;:19;;;;25309:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25401:9;:16;25411:5;25401:16;;;;;;;;;;;;;;;;25394:23;;25217:208;;;:::o;4763:103::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;46856:116::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46949:17:::1;46933:13;:33;;;;46856:116:::0;:::o;4112:87::-;4158:7;4185:6;;;;;;;;;;;4178:13;;4112:87;:::o;25962:104::-;26018:13;26051:7;26044:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25962:104;:::o;45364:615::-;45430:6;;;;;;;;;;;45429:7;45421:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;45470:14;45487:13;:11;:13::i;:::-;45470:30;;45529:1;45515:11;:15;45507:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;45592:13;;45577:11;:28;;45569:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45685:9;;45670:11;45661:6;:20;;;;:::i;:::-;:33;;45653:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45748:7;:5;:7::i;:::-;45734:21;;:10;:21;;;45730:139;;45827:11;45789:35;45804:6;45812:11;45789:14;:35::i;:::-;:49;;;;:::i;:::-;45776:9;:62;;45768:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;45730:139;45886:9;45898:1;45886:13;;45881:93;45906:11;45901:1;:16;45881:93;;45933:33;45943:10;45964:1;45955:6;:10;;;;:::i;:::-;45933:9;:33::i;:::-;45919:3;;;;;:::i;:::-;;;;45881:93;;;;45414:565;45364:615;:::o;27645:155::-;27740:52;27759:12;:10;:12::i;:::-;27773:8;27783;27740:18;:52::i;:::-;27645:155;;:::o;28768:328::-;28943:41;28962:12;:10;:12::i;:::-;28976:7;28943:18;:41::i;:::-;28935:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29049:39;29063:4;29069:2;29073:7;29082:5;29049:13;:39::i;:::-;28768:328;;;;:::o;44635:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46339:423::-;46437:13;46478:16;46486:7;46478;:16::i;:::-;46462:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;46568:28;46599:10;:8;:10::i;:::-;46568:41;;46654:1;46629:14;46623:28;:32;:133;;;;;;;;;;;;;;;;;46691:14;46707:18;:7;:16;:18::i;:::-;46727:13;46674:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46623:133;46616:140;;;46339:423;;;:::o;44714:31::-;;;;:::o;47082:122::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47181:17:::1;47165:13;:33;;;;;;;;;;;;:::i;:::-;;47082:122:::0;:::o;27871:164::-;27968:4;27992:18;:25;28011:5;27992:25;;;;;;;;;;;;;;;:35;28018:8;27992:35;;;;;;;;;;;;;;;;;;;;;;;;;27985:42;;27871:164;;;;:::o;5021:201::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5130:1:::1;5110:22;;:8;:22;;;;5102:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5186:28;5205:8;5186:18;:28::i;:::-;5021:201:::0;:::o;6400:387::-;6460:4;6668:12;6735:7;6723:20;6715:28;;6778:1;6771:4;:8;6764:15;;;6400:387;;;:::o;37155:126::-;;;;:::o;24848:305::-;24950:4;25002:25;24987:40;;;:11;:40;;;;:105;;;;25059:33;25044:48;;;:11;:48;;;;24987:105;:158;;;;25109:36;25133:11;25109:23;:36::i;:::-;24987:158;24967:178;;24848:305;;;:::o;2836:98::-;2889:7;2916:10;2909:17;;2836:98;:::o;30606:127::-;30671:4;30723:1;30695:30;;:7;:16;30703:7;30695:16;;;;;;;;;;;;;;;;;;;;;:30;;;;30688:37;;30606:127;;;:::o;34588:174::-;34690:2;34663:15;:24;34679:7;34663:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34746:7;34742:2;34708:46;;34717:23;34732:7;34717:14;:23::i;:::-;34708:46;;;;;;;;;;;;34588:174;;:::o;30900:348::-;30993:4;31018:16;31026:7;31018;:16::i;:::-;31010:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31094:13;31110:23;31125:7;31110:14;:23::i;:::-;31094:39;;31163:5;31152:16;;:7;:16;;;:51;;;;31196:7;31172:31;;:20;31184:7;31172:11;:20::i;:::-;:31;;;31152:51;:87;;;;31207:32;31224:5;31231:7;31207:16;:32::i;:::-;31152:87;31144:96;;;30900:348;;;;:::o;33892:578::-;34051:4;34024:31;;:23;34039:7;34024:14;:23::i;:::-;:31;;;34016:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34134:1;34120:16;;:2;:16;;;;34112:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34190:39;34211:4;34217:2;34221:7;34190:20;:39::i;:::-;34294:29;34311:1;34315:7;34294:8;:29::i;:::-;34355:1;34336:9;:15;34346:4;34336:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34384:1;34367:9;:13;34377:2;34367:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34415:2;34396:7;:16;34404:7;34396:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34454:7;34450:2;34435:27;;34444:4;34435:27;;;;;;;;;;;;33892:578;;;:::o;5382:191::-;5456:16;5475:6;;;;;;;;;;;5456:25;;5501:8;5492:6;;:17;;;;;;;;;;;;;;;;;;5556:8;5525:40;;5546:8;5525:40;;;;;;;;;;;;5445:128;5382:191;:::o;45095:250::-;45180:13;45231:3;45217:11;45207:7;:21;;;;:::i;:::-;:27;45204:69;;;45256:7;45249:14;;;;45204:69;45295:9;;45284:7;:20;45281:59;;45326:4;;45319:11;;;;45281:59;45095:250;;;;;:::o;31590:110::-;31666:26;31676:2;31680:7;31666:26;;;;;;;;;;;;:9;:26::i;:::-;31590:110;;:::o;34904:315::-;35059:8;35050:17;;:5;:17;;;;35042:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35146:8;35108:18;:25;35127:5;35108:25;;;;;;;;;;;;;;;:35;35134:8;35108:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35192:8;35170:41;;35185:5;35170:41;;;35202:8;35170:41;;;;;;:::i;:::-;;;;;;;;34904:315;;;:::o;29978:::-;30135:28;30145:4;30151:2;30155:7;30135:9;:28::i;:::-;30182:48;30205:4;30211:2;30215:7;30224:5;30182:22;:48::i;:::-;30174:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29978:315;;;;:::o;44987:102::-;45047:13;45076:7;45069:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44987:102;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;16544:157::-;16629:4;16668:25;16653:40;;;:11;:40;;;;16646:47;;16544:157;;;:::o;39975:589::-;40119:45;40146:4;40152:2;40156:7;40119:26;:45::i;:::-;40197:1;40181:18;;:4;:18;;;40177:187;;;40216:40;40248:7;40216:31;:40::i;:::-;40177:187;;;40286:2;40278:10;;:4;:10;;;40274:90;;40305:47;40338:4;40344:7;40305:32;:47::i;:::-;40274:90;40177:187;40392:1;40378:16;;:2;:16;;;40374:183;;;40411:45;40448:7;40411:36;:45::i;:::-;40374:183;;;40484:4;40478:10;;:2;:10;;;40474:83;;40505:40;40533:2;40537:7;40505:27;:40::i;:::-;40474:83;40374:183;39975:589;;;:::o;31927:321::-;32057:18;32063:2;32067:7;32057:5;:18::i;:::-;32108:54;32139:1;32143:2;32147:7;32156:5;32108:22;:54::i;:::-;32086:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31927:321;;;:::o;35784:799::-;35939:4;35960:15;:2;:13;;;:15::i;:::-;35956:620;;;36012:2;35996:36;;;36033:12;:10;:12::i;:::-;36047:4;36053:7;36062:5;35996:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35992:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36255:1;36238:6;:13;:18;36234:272;;;36281:60;;;;;;;;;;:::i;:::-;;;;;;;;36234:272;36456:6;36450:13;36441:6;36437:2;36433:15;36426:38;35992:529;36129:41;;;36119:51;;;:6;:51;;;;36112:58;;;;;35956:620;36560:4;36553:11;;35784:799;;;;;;;:::o;41287:164::-;41391:10;:17;;;;41364:15;:24;41380:7;41364:24;;;;;;;;;;;:44;;;;41419:10;41435:7;41419:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41287:164;:::o;42078:988::-;42344:22;42394:1;42369:22;42386:4;42369:16;:22::i;:::-;:26;;;;:::i;:::-;42344:51;;42406:18;42427:17;:26;42445:7;42427:26;;;;;;;;;;;;42406:47;;42574:14;42560:10;:28;42556:328;;42605:19;42627:12;:18;42640:4;42627:18;;;;;;;;;;;;;;;:34;42646:14;42627:34;;;;;;;;;;;;42605:56;;42711:11;42678:12;:18;42691:4;42678:18;;;;;;;;;;;;;;;:30;42697:10;42678:30;;;;;;;;;;;:44;;;;42828:10;42795:17;:30;42813:11;42795:30;;;;;;;;;;;:43;;;;42590:294;42556:328;42980:17;:26;42998:7;42980:26;;;;;;;;;;;42973:33;;;43024:12;:18;43037:4;43024:18;;;;;;;;;;;;;;;:34;43043:14;43024:34;;;;;;;;;;;43017:41;;;42159:907;;42078:988;;:::o;43361:1079::-;43614:22;43659:1;43639:10;:17;;;;:21;;;;:::i;:::-;43614:46;;43671:18;43692:15;:24;43708:7;43692:24;;;;;;;;;;;;43671:45;;44043:19;44065:10;44076:14;44065:26;;;;;;;;:::i;:::-;;;;;;;;;;44043:48;;44129:11;44104:10;44115;44104:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;44240:10;44209:15;:28;44225:11;44209:28;;;;;;;;;;;:41;;;;44381:15;:24;44397:7;44381:24;;;;;;;;;;;44374:31;;;44416:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43432:1008;;;43361:1079;:::o;40865:221::-;40950:14;40967:20;40984:2;40967:16;:20::i;:::-;40950:37;;41025:7;40998:12;:16;41011:2;40998:16;;;;;;;;;;;;;;;:24;41015:6;40998:24;;;;;;;;;;;:34;;;;41072:6;41043:17;:26;41061:7;41043:26;;;;;;;;;;;:35;;;;40939:147;40865:221;;:::o;32584:382::-;32678:1;32664:16;;:2;:16;;;;32656:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32737:16;32745:7;32737;:16::i;:::-;32736:17;32728:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32799:45;32828:1;32832:2;32836:7;32799:20;:45::i;:::-;32874:1;32857:9;:13;32867:2;32857:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32905:2;32886:7;:16;32894:7;32886:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32950:7;32946:2;32925:33;;32942:1;32925:33;;;;;;;;;;;;32584: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:398::-;18272:3;18293:83;18374:1;18369:3;18293:83;:::i;:::-;18286:90;;18385:93;18474:3;18385:93;:::i;:::-;18503:1;18498:3;18494:11;18487:18;;18113:398;;;:::o;18517:366::-;18659:3;18680:67;18744:2;18739:3;18680:67;:::i;:::-;18673:74;;18756:93;18845:3;18756:93;:::i;:::-;18874:2;18869:3;18865:12;18858:19;;18517:366;;;:::o;18889:::-;19031:3;19052:67;19116:2;19111:3;19052:67;:::i;:::-;19045:74;;19128:93;19217:3;19128:93;:::i;:::-;19246:2;19241:3;19237:12;19230:19;;18889:366;;;:::o;19261:::-;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:108::-;20082:24;20100:5;20082:24;:::i;:::-;20077:3;20070:37;20005:108;;:::o;20119:118::-;20206:24;20224:5;20206:24;:::i;:::-;20201:3;20194:37;20119:118;;:::o;20243:589::-;20468:3;20490:95;20581:3;20572:6;20490:95;:::i;:::-;20483:102;;20602:95;20693:3;20684:6;20602:95;:::i;:::-;20595:102;;20714:92;20802:3;20793:6;20714:92;:::i;:::-;20707:99;;20823:3;20816:10;;20243:589;;;;;;:::o;20838:379::-;21022:3;21044:147;21187:3;21044:147;:::i;:::-;21037:154;;21208:3;21201:10;;20838:379;;;:::o;21223:222::-;21316:4;21354:2;21343:9;21339:18;21331:26;;21367:71;21435:1;21424:9;21420:17;21411:6;21367:71;:::i;:::-;21223:222;;;;:::o;21451:640::-;21646:4;21684:3;21673:9;21669:19;21661:27;;21698:71;21766:1;21755:9;21751:17;21742:6;21698:71;:::i;:::-;21779:72;21847:2;21836:9;21832:18;21823:6;21779:72;:::i;:::-;21861;21929:2;21918:9;21914:18;21905:6;21861:72;:::i;:::-;21980:9;21974:4;21970:20;21965:2;21954:9;21950:18;21943:48;22008:76;22079:4;22070:6;22008:76;:::i;:::-;22000:84;;21451:640;;;;;;;:::o;22097:373::-;22240:4;22278:2;22267:9;22263:18;22255:26;;22327:9;22321:4;22317:20;22313:1;22302:9;22298:17;22291:47;22355:108;22458:4;22449:6;22355:108;:::i;:::-;22347:116;;22097:373;;;;:::o;22476:210::-;22563:4;22601:2;22590:9;22586:18;22578:26;;22614:65;22676:1;22665:9;22661:17;22652:6;22614:65;:::i;:::-;22476:210;;;;:::o;22692:313::-;22805:4;22843:2;22832:9;22828:18;22820:26;;22892:9;22886:4;22882:20;22878:1;22867:9;22863:17;22856:47;22920:78;22993:4;22984:6;22920:78;:::i;:::-;22912:86;;22692:313;;;;:::o;23011:419::-;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:131;23418:4;23292:131;:::i;:::-;23284:139;;23011:419;;;:::o;23436:::-;23602:4;23640:2;23629:9;23625:18;23617:26;;23689:9;23683:4;23679:20;23675:1;23664:9;23660:17;23653:47;23717:131;23843:4;23717:131;:::i;:::-;23709:139;;23436:419;;;:::o;23861:::-;24027:4;24065:2;24054:9;24050:18;24042:26;;24114:9;24108:4;24104:20;24100:1;24089:9;24085:17;24078:47;24142:131;24268:4;24142:131;:::i;:::-;24134:139;;23861:419;;;:::o;24286:::-;24452:4;24490:2;24479:9;24475:18;24467:26;;24539:9;24533:4;24529:20;24525:1;24514:9;24510:17;24503:47;24567:131;24693:4;24567:131;:::i;:::-;24559:139;;24286:419;;;:::o;24711:::-;24877:4;24915:2;24904:9;24900:18;24892:26;;24964:9;24958:4;24954:20;24950:1;24939:9;24935:17;24928:47;24992:131;25118:4;24992:131;:::i;:::-;24984:139;;24711:419;;;:::o;25136:::-;25302:4;25340:2;25329:9;25325:18;25317:26;;25389:9;25383:4;25379:20;25375:1;25364:9;25360:17;25353:47;25417:131;25543:4;25417:131;:::i;:::-;25409:139;;25136:419;;;:::o;25561:::-;25727:4;25765:2;25754:9;25750:18;25742:26;;25814:9;25808:4;25804:20;25800:1;25789:9;25785:17;25778:47;25842:131;25968:4;25842:131;:::i;:::-;25834:139;;25561:419;;;:::o;25986:::-;26152:4;26190:2;26179:9;26175:18;26167:26;;26239:9;26233:4;26229:20;26225:1;26214:9;26210:17;26203:47;26267:131;26393:4;26267:131;:::i;:::-;26259:139;;25986:419;;;:::o;26411:::-;26577:4;26615:2;26604:9;26600:18;26592:26;;26664:9;26658:4;26654:20;26650:1;26639:9;26635:17;26628:47;26692:131;26818:4;26692:131;:::i;:::-;26684:139;;26411:419;;;:::o;26836:::-;27002:4;27040:2;27029:9;27025:18;27017:26;;27089:9;27083:4;27079:20;27075:1;27064:9;27060:17;27053:47;27117:131;27243:4;27117:131;:::i;:::-;27109:139;;26836:419;;;:::o;27261:::-;27427:4;27465:2;27454:9;27450:18;27442:26;;27514:9;27508:4;27504:20;27500:1;27489:9;27485:17;27478:47;27542:131;27668:4;27542:131;:::i;:::-;27534:139;;27261:419;;;:::o;27686:::-;27852:4;27890:2;27879:9;27875:18;27867:26;;27939:9;27933:4;27929:20;27925:1;27914:9;27910:17;27903:47;27967:131;28093:4;27967:131;:::i;:::-;27959:139;;27686:419;;;:::o;28111:::-;28277:4;28315:2;28304:9;28300:18;28292:26;;28364:9;28358:4;28354:20;28350:1;28339:9;28335:17;28328:47;28392:131;28518:4;28392:131;:::i;:::-;28384:139;;28111:419;;;:::o;28536:::-;28702:4;28740:2;28729:9;28725:18;28717:26;;28789:9;28783:4;28779:20;28775:1;28764:9;28760:17;28753:47;28817:131;28943:4;28817:131;:::i;:::-;28809:139;;28536:419;;;:::o;28961:::-;29127:4;29165:2;29154:9;29150:18;29142:26;;29214:9;29208:4;29204:20;29200:1;29189:9;29185:17;29178:47;29242:131;29368:4;29242:131;:::i;:::-;29234:139;;28961:419;;;:::o;29386:::-;29552:4;29590:2;29579:9;29575:18;29567:26;;29639:9;29633:4;29629:20;29625:1;29614:9;29610:17;29603:47;29667:131;29793:4;29667:131;:::i;:::-;29659:139;;29386:419;;;:::o;29811:::-;29977:4;30015:2;30004:9;30000:18;29992:26;;30064:9;30058:4;30054:20;30050:1;30039:9;30035:17;30028:47;30092:131;30218:4;30092:131;:::i;:::-;30084:139;;29811:419;;;:::o;30236:::-;30402:4;30440:2;30429:9;30425:18;30417:26;;30489:9;30483:4;30479:20;30475:1;30464:9;30460:17;30453:47;30517:131;30643:4;30517:131;:::i;:::-;30509:139;;30236:419;;;:::o;30661:::-;30827:4;30865:2;30854:9;30850:18;30842:26;;30914:9;30908:4;30904:20;30900:1;30889:9;30885:17;30878:47;30942:131;31068:4;30942:131;:::i;:::-;30934:139;;30661:419;;;:::o;31086:::-;31252:4;31290:2;31279:9;31275:18;31267:26;;31339:9;31333:4;31329:20;31325:1;31314:9;31310:17;31303:47;31367:131;31493:4;31367:131;:::i;:::-;31359:139;;31086:419;;;:::o;31511:::-;31677:4;31715:2;31704:9;31700:18;31692:26;;31764:9;31758:4;31754:20;31750:1;31739:9;31735:17;31728:47;31792:131;31918:4;31792:131;:::i;:::-;31784:139;;31511:419;;;:::o;31936:::-;32102:4;32140:2;32129:9;32125:18;32117:26;;32189:9;32183:4;32179:20;32175:1;32164:9;32160:17;32153:47;32217:131;32343:4;32217:131;:::i;:::-;32209:139;;31936:419;;;:::o;32361:::-;32527:4;32565:2;32554:9;32550:18;32542:26;;32614:9;32608:4;32604:20;32600:1;32589:9;32585:17;32578:47;32642:131;32768:4;32642:131;:::i;:::-;32634:139;;32361:419;;;:::o;32786:::-;32952:4;32990:2;32979:9;32975:18;32967:26;;33039:9;33033:4;33029:20;33025:1;33014:9;33010:17;33003:47;33067:131;33193:4;33067:131;:::i;:::-;33059:139;;32786:419;;;:::o;33211:222::-;33304:4;33342:2;33331:9;33327:18;33319:26;;33355:71;33423:1;33412:9;33408:17;33399:6;33355:71;:::i;:::-;33211:222;;;;:::o;33439:129::-;33473:6;33500:20;;:::i;:::-;33490:30;;33529:33;33557:4;33549:6;33529:33;:::i;:::-;33439:129;;;:::o;33574:75::-;33607:6;33640:2;33634:9;33624:19;;33574:75;:::o;33655:307::-;33716:4;33806:18;33798:6;33795:30;33792:56;;;33828:18;;:::i;:::-;33792:56;33866:29;33888:6;33866:29;:::i;:::-;33858:37;;33950:4;33944;33940:15;33932:23;;33655:307;;;:::o;33968:308::-;34030:4;34120:18;34112:6;34109:30;34106:56;;;34142:18;;:::i;:::-;34106:56;34180:29;34202:6;34180:29;:::i;:::-;34172:37;;34264:4;34258;34254:15;34246:23;;33968:308;;;:::o;34282:132::-;34349:4;34372:3;34364:11;;34402:4;34397:3;34393:14;34385:22;;34282:132;;;:::o;34420:141::-;34469:4;34492:3;34484:11;;34515:3;34512:1;34505:14;34549:4;34546:1;34536:18;34528:26;;34420:141;;;:::o;34567:114::-;34634:6;34668:5;34662:12;34652:22;;34567:114;;;:::o;34687:98::-;34738:6;34772:5;34766:12;34756:22;;34687:98;;;:::o;34791:99::-;34843:6;34877:5;34871:12;34861:22;;34791:99;;;:::o;34896:113::-;34966:4;34998;34993:3;34989:14;34981:22;;34896:113;;;:::o;35015:184::-;35114:11;35148:6;35143:3;35136:19;35188:4;35183:3;35179:14;35164:29;;35015:184;;;;:::o;35205:168::-;35288:11;35322:6;35317:3;35310:19;35362:4;35357:3;35353:14;35338:29;;35205:168;;;;:::o;35379:147::-;35480:11;35517:3;35502:18;;35379:147;;;;:::o;35532:169::-;35616:11;35650:6;35645:3;35638:19;35690:4;35685:3;35681:14;35666:29;;35532:169;;;;:::o;35707:148::-;35809:11;35846:3;35831:18;;35707:148;;;;:::o;35861:305::-;35901:3;35920:20;35938:1;35920:20;:::i;:::-;35915:25;;35954:20;35972:1;35954:20;:::i;:::-;35949:25;;36108:1;36040:66;36036:74;36033:1;36030:81;36027:107;;;36114:18;;:::i;:::-;36027:107;36158:1;36155;36151:9;36144:16;;35861:305;;;;:::o;36172:185::-;36212:1;36229:20;36247:1;36229:20;:::i;:::-;36224:25;;36263:20;36281:1;36263:20;:::i;:::-;36258:25;;36302:1;36292:35;;36307:18;;:::i;:::-;36292:35;36349:1;36346;36342:9;36337:14;;36172:185;;;;:::o;36363:348::-;36403:7;36426:20;36444:1;36426:20;:::i;:::-;36421:25;;36460:20;36478:1;36460:20;:::i;:::-;36455:25;;36648:1;36580:66;36576:74;36573:1;36570:81;36565:1;36558:9;36551:17;36547:105;36544:131;;;36655:18;;:::i;:::-;36544:131;36703:1;36700;36696:9;36685:20;;36363:348;;;;:::o;36717:191::-;36757:4;36777:20;36795:1;36777:20;:::i;:::-;36772:25;;36811:20;36829:1;36811:20;:::i;:::-;36806:25;;36850:1;36847;36844:8;36841:34;;;36855:18;;:::i;:::-;36841:34;36900:1;36897;36893:9;36885:17;;36717:191;;;;:::o;36914:96::-;36951:7;36980:24;36998:5;36980:24;:::i;:::-;36969:35;;36914:96;;;:::o;37016:90::-;37050:7;37093:5;37086:13;37079:21;37068:32;;37016:90;;;:::o;37112:149::-;37148:7;37188:66;37181:5;37177:78;37166:89;;37112:149;;;:::o;37267:126::-;37304:7;37344:42;37337:5;37333:54;37322:65;;37267:126;;;:::o;37399:77::-;37436:7;37465:5;37454:16;;37399:77;;;:::o;37482:154::-;37566:6;37561:3;37556;37543:30;37628:1;37619:6;37614:3;37610:16;37603:27;37482:154;;;:::o;37642:307::-;37710:1;37720:113;37734:6;37731:1;37728:13;37720:113;;;37819:1;37814:3;37810:11;37804:18;37800:1;37795:3;37791:11;37784:39;37756:2;37753:1;37749:10;37744:15;;37720:113;;;37851:6;37848:1;37845:13;37842:101;;;37931:1;37922:6;37917:3;37913:16;37906:27;37842:101;37691:258;37642:307;;;:::o;37955:320::-;37999:6;38036:1;38030:4;38026:12;38016:22;;38083:1;38077:4;38073:12;38104:18;38094:81;;38160:4;38152:6;38148:17;38138:27;;38094:81;38222:2;38214:6;38211:14;38191:18;38188:38;38185:84;;;38241:18;;:::i;:::-;38185:84;38006:269;37955:320;;;:::o;38281:281::-;38364:27;38386:4;38364:27;:::i;:::-;38356:6;38352:40;38494:6;38482:10;38479:22;38458:18;38446:10;38443:34;38440:62;38437:88;;;38505:18;;:::i;:::-;38437:88;38545:10;38541:2;38534:22;38324:238;38281:281;;:::o;38568:233::-;38607:3;38630:24;38648:5;38630:24;:::i;:::-;38621:33;;38676:66;38669:5;38666:77;38663:103;;;38746:18;;:::i;:::-;38663:103;38793:1;38786:5;38782:13;38775:20;;38568:233;;;:::o;38807:176::-;38839:1;38856:20;38874:1;38856:20;:::i;:::-;38851:25;;38890:20;38908:1;38890:20;:::i;:::-;38885:25;;38929:1;38919:35;;38934:18;;:::i;:::-;38919:35;38975:1;38972;38968:9;38963:14;;38807:176;;;;:::o;38989:180::-;39037:77;39034:1;39027:88;39134:4;39131:1;39124:15;39158:4;39155:1;39148:15;39175:180;39223:77;39220:1;39213:88;39320:4;39317:1;39310:15;39344:4;39341:1;39334:15;39361:180;39409:77;39406:1;39399:88;39506:4;39503:1;39496:15;39530:4;39527:1;39520:15;39547:180;39595:77;39592:1;39585:88;39692:4;39689:1;39682:15;39716:4;39713:1;39706:15;39733:180;39781:77;39778:1;39771:88;39878:4;39875:1;39868:15;39902:4;39899:1;39892:15;39919:180;39967:77;39964:1;39957:88;40064:4;40061:1;40054:15;40088:4;40085:1;40078:15;40105:117;40214:1;40211;40204:12;40228:117;40337:1;40334;40327:12;40351:117;40460:1;40457;40450:12;40474:117;40583:1;40580;40573:12;40597:102;40638:6;40689:2;40685:7;40680:2;40673:5;40669:14;40665:28;40655:38;;40597:102;;;:::o;40705:230::-;40845:34;40841:1;40833:6;40829:14;40822:58;40914:13;40909:2;40901:6;40897:15;40890:38;40705:230;:::o;40941:237::-;41081:34;41077:1;41069:6;41065:14;41058:58;41150:20;41145:2;41137:6;41133:15;41126:45;40941:237;:::o;41184:225::-;41324:34;41320:1;41312:6;41308:14;41301:58;41393:8;41388:2;41380:6;41376:15;41369:33;41184:225;:::o;41415:178::-;41555:30;41551:1;41543:6;41539:14;41532:54;41415:178;:::o;41599:223::-;41739:34;41735:1;41727:6;41723:14;41716:58;41808:6;41803:2;41795:6;41791:15;41784:31;41599:223;:::o;41828:175::-;41968:27;41964:1;41956:6;41952:14;41945:51;41828:175;:::o;42009:163::-;42149:15;42145:1;42137:6;42133:14;42126:39;42009:163;:::o;42178:231::-;42318:34;42314:1;42306:6;42302:14;42295:58;42387:14;42382:2;42374:6;42370:15;42363:39;42178:231;:::o;42415:243::-;42555:34;42551:1;42543:6;42539:14;42532:58;42624:26;42619:2;42611:6;42607:15;42600:51;42415:243;:::o;42664:229::-;42804:34;42800:1;42792:6;42788:14;42781:58;42873:12;42868:2;42860:6;42856:15;42849:37;42664:229;:::o;42899:228::-;43039:34;43035:1;43027:6;43023:14;43016:58;43108:11;43103:2;43095:6;43091:15;43084:36;42899:228;:::o;43133:172::-;43273:24;43269:1;43261:6;43257:14;43250:48;43133:172;:::o;43311:223::-;43451:34;43447:1;43439:6;43435:14;43428:58;43520:6;43515:2;43507:6;43503:15;43496:31;43311:223;:::o;43540:182::-;43680:34;43676:1;43668:6;43664:14;43657:58;43540:182;:::o;43728:231::-;43868:34;43864:1;43856:6;43852:14;43845:58;43937:14;43932:2;43924:6;43920:15;43913:39;43728:231;:::o;43965:182::-;44105:34;44101:1;44093:6;44089:14;44082:58;43965:182;:::o;44153:172::-;44293:24;44289:1;44281:6;44277:14;44270:48;44153:172;:::o;44331:228::-;44471:34;44467:1;44459:6;44455:14;44448:58;44540:11;44535:2;44527:6;44523:15;44516:36;44331:228;:::o;44565:234::-;44705:34;44701:1;44693:6;44689:14;44682:58;44774:17;44769:2;44761:6;44757:15;44750:42;44565:234;:::o;44805:220::-;44945:34;44941:1;44933:6;44929:14;44922:58;45014:3;45009:2;45001:6;44997:15;44990:28;44805:220;:::o;45031:114::-;;:::o;45151:168::-;45291:20;45287:1;45279:6;45275:14;45268:44;45151:168;:::o;45325:236::-;45465:34;45461:1;45453:6;45449:14;45442:58;45534:19;45529:2;45521:6;45517:15;45510:44;45325:236;:::o;45567:231::-;45707:34;45703:1;45695:6;45691:14;45684:58;45776:14;45771:2;45763:6;45759:15;45752:39;45567:231;:::o;45804:177::-;45944:29;45940:1;45932:6;45928:14;45921:53;45804:177;:::o;45987:122::-;46060:24;46078:5;46060:24;:::i;:::-;46053:5;46050:35;46040:63;;46099:1;46096;46089:12;46040:63;45987:122;:::o;46115:116::-;46185:21;46200:5;46185:21;:::i;:::-;46178:5;46175:32;46165:60;;46221:1;46218;46211:12;46165:60;46115:116;:::o;46237:120::-;46309:23;46326:5;46309:23;:::i;:::-;46302:5;46299:34;46289:62;;46347:1;46344;46337:12;46289:62;46237:120;:::o;46363:122::-;46436:24;46454:5;46436:24;:::i;:::-;46429:5;46426:35;46416:63;;46475:1;46472;46465:12;46416:63;46363:122;:::o

Swarm Source

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