ETH Price: $3,179.40 (-8.12%)
Gas: 3 Gwei

Token

WizardsMagic (WM)
 

Overview

Max Total Supply

3,568 WM

Holders

292

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 WM
0xda3888467e28643dfb77273f76257beee05f1810
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:
WizardsMagic

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-31
*/

// SPDX-License-Identifier: MIT

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

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

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

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

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

// 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 (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// 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 (last updated v4.6.0) (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 overridden 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

// File: contracts/WizardMagic.sol





pragma solidity >=0.7.0 <0.9.0;




contract WizardsMagic is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.00 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmountPerTx = 1;

  bool public paused = true;
  bool public revealed = false;

  constructor() ERC721("WizardsMagic", "WM") {
    setHiddenMetadataUri("ipfs://QmRFqvfb8SHp9vLL1rTsSN2T79xt1vvxtGWnifMDgvec3h");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _mintLoop(msg.sender, _mintAmount);
  }
  
  

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

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

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

  function withdraw() public onlyOwner {
 
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

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

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":"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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b92919062000361565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200007992919062000361565b506000600b55612710600c556001600d556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff021916908315150217905550348015620000cd57600080fd5b506040518060400160405280600c81526020017f57697a617264734d6167696300000000000000000000000000000000000000008152506040518060400160405280600281526020017f574d00000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200015292919062000361565b5080600190805190602001906200016b92919062000361565b5050506200018e62000182620001be60201b60201c565b620001c660201b60201c565b620001b86040518060600160405280603581526020016200455a603591396200028c60201b60201c565b620004f9565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200029c620001be60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002c26200033760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200031b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003129062000438565b60405180910390fd5b80600a90805190602001906200033392919062000361565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200036f906200046b565b90600052602060002090601f016020900481019282620003935760008555620003df565b82601f10620003ae57805160ff1916838001178555620003df565b82800160010185558215620003df579182015b82811115620003de578251825591602001919060010190620003c1565b5b509050620003ee9190620003f2565b5090565b5b808211156200040d576000816000905550600101620003f3565b5090565b6000620004206020836200045a565b91506200042d82620004d0565b602082019050919050565b60006020820190508181036000830152620004538162000411565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200048457607f821691505b602082108114156200049b576200049a620004a1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61405180620005096000396000f3fe6080604052600436106102045760003560e01c806362b99ad411610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610720578063d5abeb011461075d578063e0a8085314610788578063e985e9c5146107b1578063f2fde38b146107ee57610204565b8063a22cb4651461067a578063a45ba8e7146106a3578063b071401b146106ce578063b88d4fde146106f757610204565b80637ec4a659116100e75780637ec4a659146105b45780638da5cb5b146105dd57806394354fd01461060857806395d89b4114610633578063a0712d681461065e57610204565b806362b99ad4146104f85780636352211e1461052357806370a0823114610560578063715018a61461059d57610204565b806323b872dd1161019b57806344a0d68a1161016a57806344a0d68a146104255780634fdd43cb1461044e57806351830227146104775780635503a0e8146104a25780635c975abb146104cd57610204565b806323b872dd1461037f5780633ccfd60b146103a857806342842e0e146103bf578063438b6300146103e857610204565b806313faede6116101d757806313faede6146102d757806316ba10e01461030257806316c38b3c1461032b57806318160ddd1461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612cbb565b610817565b60405161023d919061330d565b60405180910390f35b34801561025257600080fd5b5061025b6108f9565b6040516102689190613328565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612d5e565b61098b565b6040516102a59190613284565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612c4e565b610a10565b005b3480156102e357600080fd5b506102ec610b28565b6040516102f991906135ca565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612d15565b610b2e565b005b34801561033757600080fd5b50610352600480360381019061034d9190612c8e565b610bc4565b005b34801561036057600080fd5b50610369610c5d565b60405161037691906135ca565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a19190612b38565b610c6e565b005b3480156103b457600080fd5b506103bd610cce565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190612b38565b610dca565b005b3480156103f457600080fd5b5061040f600480360381019061040a9190612acb565b610dea565b60405161041c91906132eb565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190612d5e565b610ef5565b005b34801561045a57600080fd5b5061047560048036038101906104709190612d15565b610f7b565b005b34801561048357600080fd5b5061048c611011565b604051610499919061330d565b60405180910390f35b3480156104ae57600080fd5b506104b7611024565b6040516104c49190613328565b60405180910390f35b3480156104d957600080fd5b506104e26110b2565b6040516104ef919061330d565b60405180910390f35b34801561050457600080fd5b5061050d6110c5565b60405161051a9190613328565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190612d5e565b611153565b6040516105579190613284565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190612acb565b611205565b60405161059491906135ca565b60405180910390f35b3480156105a957600080fd5b506105b26112bd565b005b3480156105c057600080fd5b506105db60048036038101906105d69190612d15565b611345565b005b3480156105e957600080fd5b506105f26113db565b6040516105ff9190613284565b60405180910390f35b34801561061457600080fd5b5061061d611405565b60405161062a91906135ca565b60405180910390f35b34801561063f57600080fd5b5061064861140b565b6040516106559190613328565b60405180910390f35b61067860048036038101906106739190612d5e565b61149d565b005b34801561068657600080fd5b506106a1600480360381019061069c9190612c0e565b6115f6565b005b3480156106af57600080fd5b506106b861160c565b6040516106c59190613328565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190612d5e565b61169a565b005b34801561070357600080fd5b5061071e60048036038101906107199190612b8b565b611720565b005b34801561072c57600080fd5b5061074760048036038101906107429190612d5e565b611782565b6040516107549190613328565b60405180910390f35b34801561076957600080fd5b506107726118db565b60405161077f91906135ca565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190612c8e565b6118e1565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190612af8565b61197a565b6040516107e5919061330d565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190612acb565b611a0e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f257506108f182611b06565b5b9050919050565b606060008054610908906138d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610934906138d3565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b600061099682611b70565b6109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc906134ca565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1b82611153565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a839061354a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aab611bdc565b73ffffffffffffffffffffffffffffffffffffffff161480610ada5750610ad981610ad4611bdc565b61197a565b5b610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b109061344a565b60405180910390fd5b610b238383611be4565b505050565b600b5481565b610b36611bdc565b73ffffffffffffffffffffffffffffffffffffffff16610b546113db565b73ffffffffffffffffffffffffffffffffffffffff1614610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba1906134ea565b60405180910390fd5b8060099080519060200190610bc09291906128df565b5050565b610bcc611bdc565b73ffffffffffffffffffffffffffffffffffffffff16610bea6113db565b73ffffffffffffffffffffffffffffffffffffffff1614610c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c37906134ea565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610c696007611c9d565b905090565b610c7f610c79611bdc565b82611cab565b610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb59061358a565b60405180910390fd5b610cc9838383611d89565b505050565b610cd6611bdc565b73ffffffffffffffffffffffffffffffffffffffff16610cf46113db565b73ffffffffffffffffffffffffffffffffffffffff1614610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d41906134ea565b60405180910390fd5b6000610d546113db565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d779061326f565b60006040518083038185875af1925050503d8060008114610db4576040519150601f19603f3d011682016040523d82523d6000602084013e610db9565b606091505b5050905080610dc757600080fd5b50565b610de583838360405180602001604052806000815250611720565b505050565b60606000610df783611205565b905060008167ffffffffffffffff811115610e1557610e14613a6c565b5b604051908082528060200260200182016040528015610e435781602001602082028036833780820191505090505b50905060006001905060005b8381108015610e605750600c548211155b15610ee9576000610e7083611153565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ed55782848381518110610eba57610eb9613a3d565b5b6020026020010181815250508180610ed190613936565b9250505b8280610ee090613936565b93505050610e4f565b82945050505050919050565b610efd611bdc565b73ffffffffffffffffffffffffffffffffffffffff16610f1b6113db565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f68906134ea565b60405180910390fd5b80600b8190555050565b610f83611bdc565b73ffffffffffffffffffffffffffffffffffffffff16610fa16113db565b73ffffffffffffffffffffffffffffffffffffffff1614610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee906134ea565b60405180910390fd5b80600a908051906020019061100d9291906128df565b5050565b600e60019054906101000a900460ff1681565b60098054611031906138d3565b80601f016020809104026020016040519081016040528092919081815260200182805461105d906138d3565b80156110aa5780601f1061107f576101008083540402835291602001916110aa565b820191906000526020600020905b81548152906001019060200180831161108d57829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b600880546110d2906138d3565b80601f01602080910402602001604051908101604052809291908181526020018280546110fe906138d3565b801561114b5780601f106111205761010080835404028352916020019161114b565b820191906000526020600020905b81548152906001019060200180831161112e57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f39061348a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d9061346a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112c5611bdc565b73ffffffffffffffffffffffffffffffffffffffff166112e36113db565b73ffffffffffffffffffffffffffffffffffffffff1614611339576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611330906134ea565b60405180910390fd5b6113436000611ff0565b565b61134d611bdc565b73ffffffffffffffffffffffffffffffffffffffff1661136b6113db565b73ffffffffffffffffffffffffffffffffffffffff16146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b8906134ea565b60405180910390fd5b80600890805190602001906113d79291906128df565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606001805461141a906138d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611446906138d3565b80156114935780601f1061146857610100808354040283529160200191611493565b820191906000526020600020905b81548152906001019060200180831161147657829003601f168201915b5050505050905090565b806000811180156114b05750600d548111155b6114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e6906133ca565b60405180910390fd5b600c54816114fd6007611c9d565b6115079190613708565b1115611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f9061356a565b60405180910390fd5b600e60009054906101000a900460ff1615611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f9061350a565b60405180910390fd5b81600b546115a6919061378f565b3410156115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df906135aa565b60405180910390fd5b6115f233836120b6565b5050565b611608611601611bdc565b83836120f6565b5050565b600a8054611619906138d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611645906138d3565b80156116925780601f1061166757610100808354040283529160200191611692565b820191906000526020600020905b81548152906001019060200180831161167557829003601f168201915b505050505081565b6116a2611bdc565b73ffffffffffffffffffffffffffffffffffffffff166116c06113db565b73ffffffffffffffffffffffffffffffffffffffff1614611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906134ea565b60405180910390fd5b80600d8190555050565b61173161172b611bdc565b83611cab565b611770576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117679061358a565b60405180910390fd5b61177c84848484612263565b50505050565b606061178d82611b70565b6117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c39061352a565b60405180910390fd5b60001515600e60019054906101000a900460ff161515141561187a57600a80546117f5906138d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611821906138d3565b801561186e5780601f106118435761010080835404028352916020019161186e565b820191906000526020600020905b81548152906001019060200180831161185157829003601f168201915b505050505090506118d6565b60006118846122bf565b905060008151116118a457604051806020016040528060008152506118d2565b806118ae84612351565b60096040516020016118c29392919061323e565b6040516020818303038152906040525b9150505b919050565b600c5481565b6118e9611bdc565b73ffffffffffffffffffffffffffffffffffffffff166119076113db565b73ffffffffffffffffffffffffffffffffffffffff161461195d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611954906134ea565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a16611bdc565b73ffffffffffffffffffffffffffffffffffffffff16611a346113db565b73ffffffffffffffffffffffffffffffffffffffff1614611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a81906134ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af19061336a565b60405180910390fd5b611b0381611ff0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c5783611153565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611cb682611b70565b611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec9061342a565b60405180910390fd5b6000611d0083611153565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d425750611d41818561197a565b5b80611d8057508373ffffffffffffffffffffffffffffffffffffffff16611d688461098b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611da982611153565b73ffffffffffffffffffffffffffffffffffffffff1614611dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df69061338a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e66906133ea565b60405180910390fd5b611e7a8383836124b2565b611e85600082611be4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed591906137e9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2c9190613708565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611feb8383836124b7565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156120f1576120cb60076124bc565b6120de836120d96007611c9d565b6124d2565b80806120e990613936565b9150506120b9565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215c9061340a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612256919061330d565b60405180910390a3505050565b61226e848484611d89565b61227a848484846124f0565b6122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b09061334a565b60405180910390fd5b50505050565b6060600880546122ce906138d3565b80601f01602080910402602001604051908101604052809291908181526020018280546122fa906138d3565b80156123475780601f1061231c57610100808354040283529160200191612347565b820191906000526020600020905b81548152906001019060200180831161232a57829003601f168201915b5050505050905090565b60606000821415612399576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124ad565b600082905060005b600082146123cb5780806123b490613936565b915050600a826123c4919061375e565b91506123a1565b60008167ffffffffffffffff8111156123e7576123e6613a6c565b5b6040519080825280601f01601f1916602001820160405280156124195781602001600182028036833780820191505090505b5090505b600085146124a65760018261243291906137e9565b9150600a85612441919061397f565b603061244d9190613708565b60f81b81838151811061246357612462613a3d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561249f919061375e565b945061241d565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6124ec828260405180602001604052806000815250612687565b5050565b60006125118473ffffffffffffffffffffffffffffffffffffffff166126e2565b1561267a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253a611bdc565b8786866040518563ffffffff1660e01b815260040161255c949392919061329f565b602060405180830381600087803b15801561257657600080fd5b505af19250505080156125a757506040513d601f19601f820116820180604052508101906125a49190612ce8565b60015b61262a573d80600081146125d7576040519150601f19603f3d011682016040523d82523d6000602084013e6125dc565b606091505b50600081511415612622576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126199061334a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061267f565b600190505b949350505050565b6126918383612705565b61269e60008484846124f0565b6126dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d49061334a565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276c906134aa565b60405180910390fd5b61277e81611b70565b156127be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b5906133aa565b60405180910390fd5b6127ca600083836124b2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461281a9190613708565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128db600083836124b7565b5050565b8280546128eb906138d3565b90600052602060002090601f01602090048101928261290d5760008555612954565b82601f1061292657805160ff1916838001178555612954565b82800160010185558215612954579182015b82811115612953578251825591602001919060010190612938565b5b5090506129619190612965565b5090565b5b8082111561297e576000816000905550600101612966565b5090565b60006129956129908461360a565b6135e5565b9050828152602081018484840111156129b1576129b0613aa0565b5b6129bc848285613891565b509392505050565b60006129d76129d28461363b565b6135e5565b9050828152602081018484840111156129f3576129f2613aa0565b5b6129fe848285613891565b509392505050565b600081359050612a1581613fbf565b92915050565b600081359050612a2a81613fd6565b92915050565b600081359050612a3f81613fed565b92915050565b600081519050612a5481613fed565b92915050565b600082601f830112612a6f57612a6e613a9b565b5b8135612a7f848260208601612982565b91505092915050565b600082601f830112612a9d57612a9c613a9b565b5b8135612aad8482602086016129c4565b91505092915050565b600081359050612ac581614004565b92915050565b600060208284031215612ae157612ae0613aaa565b5b6000612aef84828501612a06565b91505092915050565b60008060408385031215612b0f57612b0e613aaa565b5b6000612b1d85828601612a06565b9250506020612b2e85828601612a06565b9150509250929050565b600080600060608486031215612b5157612b50613aaa565b5b6000612b5f86828701612a06565b9350506020612b7086828701612a06565b9250506040612b8186828701612ab6565b9150509250925092565b60008060008060808587031215612ba557612ba4613aaa565b5b6000612bb387828801612a06565b9450506020612bc487828801612a06565b9350506040612bd587828801612ab6565b925050606085013567ffffffffffffffff811115612bf657612bf5613aa5565b5b612c0287828801612a5a565b91505092959194509250565b60008060408385031215612c2557612c24613aaa565b5b6000612c3385828601612a06565b9250506020612c4485828601612a1b565b9150509250929050565b60008060408385031215612c6557612c64613aaa565b5b6000612c7385828601612a06565b9250506020612c8485828601612ab6565b9150509250929050565b600060208284031215612ca457612ca3613aaa565b5b6000612cb284828501612a1b565b91505092915050565b600060208284031215612cd157612cd0613aaa565b5b6000612cdf84828501612a30565b91505092915050565b600060208284031215612cfe57612cfd613aaa565b5b6000612d0c84828501612a45565b91505092915050565b600060208284031215612d2b57612d2a613aaa565b5b600082013567ffffffffffffffff811115612d4957612d48613aa5565b5b612d5584828501612a88565b91505092915050565b600060208284031215612d7457612d73613aaa565b5b6000612d8284828501612ab6565b91505092915050565b6000612d978383613220565b60208301905092915050565b612dac8161381d565b82525050565b6000612dbd82613691565b612dc781856136bf565b9350612dd28361366c565b8060005b83811015612e03578151612dea8882612d8b565b9750612df5836136b2565b925050600181019050612dd6565b5085935050505092915050565b612e198161382f565b82525050565b6000612e2a8261369c565b612e3481856136d0565b9350612e448185602086016138a0565b612e4d81613aaf565b840191505092915050565b6000612e63826136a7565b612e6d81856136ec565b9350612e7d8185602086016138a0565b612e8681613aaf565b840191505092915050565b6000612e9c826136a7565b612ea681856136fd565b9350612eb68185602086016138a0565b80840191505092915050565b60008154612ecf816138d3565b612ed981866136fd565b94506001821660008114612ef45760018114612f0557612f38565b60ff19831686528186019350612f38565b612f0e8561367c565b60005b83811015612f3057815481890152600182019150602081019050612f11565b838801955050505b50505092915050565b6000612f4e6032836136ec565b9150612f5982613ac0565b604082019050919050565b6000612f716026836136ec565b9150612f7c82613b0f565b604082019050919050565b6000612f946025836136ec565b9150612f9f82613b5e565b604082019050919050565b6000612fb7601c836136ec565b9150612fc282613bad565b602082019050919050565b6000612fda6014836136ec565b9150612fe582613bd6565b602082019050919050565b6000612ffd6024836136ec565b915061300882613bff565b604082019050919050565b60006130206019836136ec565b915061302b82613c4e565b602082019050919050565b6000613043602c836136ec565b915061304e82613c77565b604082019050919050565b60006130666038836136ec565b915061307182613cc6565b604082019050919050565b6000613089602a836136ec565b915061309482613d15565b604082019050919050565b60006130ac6029836136ec565b91506130b782613d64565b604082019050919050565b60006130cf6020836136ec565b91506130da82613db3565b602082019050919050565b60006130f2602c836136ec565b91506130fd82613ddc565b604082019050919050565b60006131156020836136ec565b915061312082613e2b565b602082019050919050565b60006131386017836136ec565b915061314382613e54565b602082019050919050565b600061315b602f836136ec565b915061316682613e7d565b604082019050919050565b600061317e6021836136ec565b915061318982613ecc565b604082019050919050565b60006131a16000836136e1565b91506131ac82613f1b565b600082019050919050565b60006131c46014836136ec565b91506131cf82613f1e565b602082019050919050565b60006131e76031836136ec565b91506131f282613f47565b604082019050919050565b600061320a6013836136ec565b915061321582613f96565b602082019050919050565b61322981613887565b82525050565b61323881613887565b82525050565b600061324a8286612e91565b91506132568285612e91565b91506132628284612ec2565b9150819050949350505050565b600061327a82613194565b9150819050919050565b60006020820190506132996000830184612da3565b92915050565b60006080820190506132b46000830187612da3565b6132c16020830186612da3565b6132ce604083018561322f565b81810360608301526132e08184612e1f565b905095945050505050565b600060208201905081810360008301526133058184612db2565b905092915050565b60006020820190506133226000830184612e10565b92915050565b600060208201905081810360008301526133428184612e58565b905092915050565b6000602082019050818103600083015261336381612f41565b9050919050565b6000602082019050818103600083015261338381612f64565b9050919050565b600060208201905081810360008301526133a381612f87565b9050919050565b600060208201905081810360008301526133c381612faa565b9050919050565b600060208201905081810360008301526133e381612fcd565b9050919050565b6000602082019050818103600083015261340381612ff0565b9050919050565b6000602082019050818103600083015261342381613013565b9050919050565b6000602082019050818103600083015261344381613036565b9050919050565b6000602082019050818103600083015261346381613059565b9050919050565b600060208201905081810360008301526134838161307c565b9050919050565b600060208201905081810360008301526134a38161309f565b9050919050565b600060208201905081810360008301526134c3816130c2565b9050919050565b600060208201905081810360008301526134e3816130e5565b9050919050565b6000602082019050818103600083015261350381613108565b9050919050565b600060208201905081810360008301526135238161312b565b9050919050565b600060208201905081810360008301526135438161314e565b9050919050565b6000602082019050818103600083015261356381613171565b9050919050565b60006020820190508181036000830152613583816131b7565b9050919050565b600060208201905081810360008301526135a3816131da565b9050919050565b600060208201905081810360008301526135c3816131fd565b9050919050565b60006020820190506135df600083018461322f565b92915050565b60006135ef613600565b90506135fb8282613905565b919050565b6000604051905090565b600067ffffffffffffffff82111561362557613624613a6c565b5b61362e82613aaf565b9050602081019050919050565b600067ffffffffffffffff82111561365657613655613a6c565b5b61365f82613aaf565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061371382613887565b915061371e83613887565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613753576137526139b0565b5b828201905092915050565b600061376982613887565b915061377483613887565b925082613784576137836139df565b5b828204905092915050565b600061379a82613887565b91506137a583613887565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137de576137dd6139b0565b5b828202905092915050565b60006137f482613887565b91506137ff83613887565b925082821015613812576138116139b0565b5b828203905092915050565b600061382882613867565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138be5780820151818401526020810190506138a3565b838111156138cd576000848401525b50505050565b600060028204905060018216806138eb57607f821691505b602082108114156138ff576138fe613a0e565b5b50919050565b61390e82613aaf565b810181811067ffffffffffffffff8211171561392d5761392c613a6c565b5b80604052505050565b600061394182613887565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613974576139736139b0565b5b600182019050919050565b600061398a82613887565b915061399583613887565b9250826139a5576139a46139df565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613fc88161381d565b8114613fd357600080fd5b50565b613fdf8161382f565b8114613fea57600080fd5b50565b613ff68161383b565b811461400157600080fd5b50565b61400d81613887565b811461401857600080fd5b5056fea2646970667358221220187c04850d9ba298dc2ccf36364e81ce8bd5277efe905643504a271dd1ab699f64736f6c63430008070033697066733a2f2f516d5246717666623853487039764c4c31725473534e325437397874317676787447576e69664d44677665633368

Deployed Bytecode

0x6080604052600436106102045760003560e01c806362b99ad411610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd14610720578063d5abeb011461075d578063e0a8085314610788578063e985e9c5146107b1578063f2fde38b146107ee57610204565b8063a22cb4651461067a578063a45ba8e7146106a3578063b071401b146106ce578063b88d4fde146106f757610204565b80637ec4a659116100e75780637ec4a659146105b45780638da5cb5b146105dd57806394354fd01461060857806395d89b4114610633578063a0712d681461065e57610204565b806362b99ad4146104f85780636352211e1461052357806370a0823114610560578063715018a61461059d57610204565b806323b872dd1161019b57806344a0d68a1161016a57806344a0d68a146104255780634fdd43cb1461044e57806351830227146104775780635503a0e8146104a25780635c975abb146104cd57610204565b806323b872dd1461037f5780633ccfd60b146103a857806342842e0e146103bf578063438b6300146103e857610204565b806313faede6116101d757806313faede6146102d757806316ba10e01461030257806316c38b3c1461032b57806318160ddd1461035457610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190612cbb565b610817565b60405161023d919061330d565b60405180910390f35b34801561025257600080fd5b5061025b6108f9565b6040516102689190613328565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612d5e565b61098b565b6040516102a59190613284565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190612c4e565b610a10565b005b3480156102e357600080fd5b506102ec610b28565b6040516102f991906135ca565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612d15565b610b2e565b005b34801561033757600080fd5b50610352600480360381019061034d9190612c8e565b610bc4565b005b34801561036057600080fd5b50610369610c5d565b60405161037691906135ca565b60405180910390f35b34801561038b57600080fd5b506103a660048036038101906103a19190612b38565b610c6e565b005b3480156103b457600080fd5b506103bd610cce565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190612b38565b610dca565b005b3480156103f457600080fd5b5061040f600480360381019061040a9190612acb565b610dea565b60405161041c91906132eb565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190612d5e565b610ef5565b005b34801561045a57600080fd5b5061047560048036038101906104709190612d15565b610f7b565b005b34801561048357600080fd5b5061048c611011565b604051610499919061330d565b60405180910390f35b3480156104ae57600080fd5b506104b7611024565b6040516104c49190613328565b60405180910390f35b3480156104d957600080fd5b506104e26110b2565b6040516104ef919061330d565b60405180910390f35b34801561050457600080fd5b5061050d6110c5565b60405161051a9190613328565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190612d5e565b611153565b6040516105579190613284565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190612acb565b611205565b60405161059491906135ca565b60405180910390f35b3480156105a957600080fd5b506105b26112bd565b005b3480156105c057600080fd5b506105db60048036038101906105d69190612d15565b611345565b005b3480156105e957600080fd5b506105f26113db565b6040516105ff9190613284565b60405180910390f35b34801561061457600080fd5b5061061d611405565b60405161062a91906135ca565b60405180910390f35b34801561063f57600080fd5b5061064861140b565b6040516106559190613328565b60405180910390f35b61067860048036038101906106739190612d5e565b61149d565b005b34801561068657600080fd5b506106a1600480360381019061069c9190612c0e565b6115f6565b005b3480156106af57600080fd5b506106b861160c565b6040516106c59190613328565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f09190612d5e565b61169a565b005b34801561070357600080fd5b5061071e60048036038101906107199190612b8b565b611720565b005b34801561072c57600080fd5b5061074760048036038101906107429190612d5e565b611782565b6040516107549190613328565b60405180910390f35b34801561076957600080fd5b506107726118db565b60405161077f91906135ca565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190612c8e565b6118e1565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190612af8565b61197a565b6040516107e5919061330d565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190612acb565b611a0e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f257506108f182611b06565b5b9050919050565b606060008054610908906138d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610934906138d3565b80156109815780601f1061095657610100808354040283529160200191610981565b820191906000526020600020905b81548152906001019060200180831161096457829003601f168201915b5050505050905090565b600061099682611b70565b6109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc906134ca565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1b82611153565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a839061354a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aab611bdc565b73ffffffffffffffffffffffffffffffffffffffff161480610ada5750610ad981610ad4611bdc565b61197a565b5b610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b109061344a565b60405180910390fd5b610b238383611be4565b505050565b600b5481565b610b36611bdc565b73ffffffffffffffffffffffffffffffffffffffff16610b546113db565b73ffffffffffffffffffffffffffffffffffffffff1614610baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba1906134ea565b60405180910390fd5b8060099080519060200190610bc09291906128df565b5050565b610bcc611bdc565b73ffffffffffffffffffffffffffffffffffffffff16610bea6113db565b73ffffffffffffffffffffffffffffffffffffffff1614610c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c37906134ea565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610c696007611c9d565b905090565b610c7f610c79611bdc565b82611cab565b610cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb59061358a565b60405180910390fd5b610cc9838383611d89565b505050565b610cd6611bdc565b73ffffffffffffffffffffffffffffffffffffffff16610cf46113db565b73ffffffffffffffffffffffffffffffffffffffff1614610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d41906134ea565b60405180910390fd5b6000610d546113db565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d779061326f565b60006040518083038185875af1925050503d8060008114610db4576040519150601f19603f3d011682016040523d82523d6000602084013e610db9565b606091505b5050905080610dc757600080fd5b50565b610de583838360405180602001604052806000815250611720565b505050565b60606000610df783611205565b905060008167ffffffffffffffff811115610e1557610e14613a6c565b5b604051908082528060200260200182016040528015610e435781602001602082028036833780820191505090505b50905060006001905060005b8381108015610e605750600c548211155b15610ee9576000610e7083611153565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ed55782848381518110610eba57610eb9613a3d565b5b6020026020010181815250508180610ed190613936565b9250505b8280610ee090613936565b93505050610e4f565b82945050505050919050565b610efd611bdc565b73ffffffffffffffffffffffffffffffffffffffff16610f1b6113db565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f68906134ea565b60405180910390fd5b80600b8190555050565b610f83611bdc565b73ffffffffffffffffffffffffffffffffffffffff16610fa16113db565b73ffffffffffffffffffffffffffffffffffffffff1614610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee906134ea565b60405180910390fd5b80600a908051906020019061100d9291906128df565b5050565b600e60019054906101000a900460ff1681565b60098054611031906138d3565b80601f016020809104026020016040519081016040528092919081815260200182805461105d906138d3565b80156110aa5780601f1061107f576101008083540402835291602001916110aa565b820191906000526020600020905b81548152906001019060200180831161108d57829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b600880546110d2906138d3565b80601f01602080910402602001604051908101604052809291908181526020018280546110fe906138d3565b801561114b5780601f106111205761010080835404028352916020019161114b565b820191906000526020600020905b81548152906001019060200180831161112e57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f39061348a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d9061346a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112c5611bdc565b73ffffffffffffffffffffffffffffffffffffffff166112e36113db565b73ffffffffffffffffffffffffffffffffffffffff1614611339576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611330906134ea565b60405180910390fd5b6113436000611ff0565b565b61134d611bdc565b73ffffffffffffffffffffffffffffffffffffffff1661136b6113db565b73ffffffffffffffffffffffffffffffffffffffff16146113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b8906134ea565b60405180910390fd5b80600890805190602001906113d79291906128df565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606001805461141a906138d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611446906138d3565b80156114935780601f1061146857610100808354040283529160200191611493565b820191906000526020600020905b81548152906001019060200180831161147657829003601f168201915b5050505050905090565b806000811180156114b05750600d548111155b6114ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e6906133ca565b60405180910390fd5b600c54816114fd6007611c9d565b6115079190613708565b1115611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f9061356a565b60405180910390fd5b600e60009054906101000a900460ff1615611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f9061350a565b60405180910390fd5b81600b546115a6919061378f565b3410156115e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115df906135aa565b60405180910390fd5b6115f233836120b6565b5050565b611608611601611bdc565b83836120f6565b5050565b600a8054611619906138d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611645906138d3565b80156116925780601f1061166757610100808354040283529160200191611692565b820191906000526020600020905b81548152906001019060200180831161167557829003601f168201915b505050505081565b6116a2611bdc565b73ffffffffffffffffffffffffffffffffffffffff166116c06113db565b73ffffffffffffffffffffffffffffffffffffffff1614611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906134ea565b60405180910390fd5b80600d8190555050565b61173161172b611bdc565b83611cab565b611770576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117679061358a565b60405180910390fd5b61177c84848484612263565b50505050565b606061178d82611b70565b6117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c39061352a565b60405180910390fd5b60001515600e60019054906101000a900460ff161515141561187a57600a80546117f5906138d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611821906138d3565b801561186e5780601f106118435761010080835404028352916020019161186e565b820191906000526020600020905b81548152906001019060200180831161185157829003601f168201915b505050505090506118d6565b60006118846122bf565b905060008151116118a457604051806020016040528060008152506118d2565b806118ae84612351565b60096040516020016118c29392919061323e565b6040516020818303038152906040525b9150505b919050565b600c5481565b6118e9611bdc565b73ffffffffffffffffffffffffffffffffffffffff166119076113db565b73ffffffffffffffffffffffffffffffffffffffff161461195d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611954906134ea565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a16611bdc565b73ffffffffffffffffffffffffffffffffffffffff16611a346113db565b73ffffffffffffffffffffffffffffffffffffffff1614611a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a81906134ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af19061336a565b60405180910390fd5b611b0381611ff0565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c5783611153565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611cb682611b70565b611cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cec9061342a565b60405180910390fd5b6000611d0083611153565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d425750611d41818561197a565b5b80611d8057508373ffffffffffffffffffffffffffffffffffffffff16611d688461098b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611da982611153565b73ffffffffffffffffffffffffffffffffffffffff1614611dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df69061338a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e66906133ea565b60405180910390fd5b611e7a8383836124b2565b611e85600082611be4565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ed591906137e9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f2c9190613708565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611feb8383836124b7565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156120f1576120cb60076124bc565b6120de836120d96007611c9d565b6124d2565b80806120e990613936565b9150506120b9565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215c9061340a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612256919061330d565b60405180910390a3505050565b61226e848484611d89565b61227a848484846124f0565b6122b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b09061334a565b60405180910390fd5b50505050565b6060600880546122ce906138d3565b80601f01602080910402602001604051908101604052809291908181526020018280546122fa906138d3565b80156123475780601f1061231c57610100808354040283529160200191612347565b820191906000526020600020905b81548152906001019060200180831161232a57829003601f168201915b5050505050905090565b60606000821415612399576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124ad565b600082905060005b600082146123cb5780806123b490613936565b915050600a826123c4919061375e565b91506123a1565b60008167ffffffffffffffff8111156123e7576123e6613a6c565b5b6040519080825280601f01601f1916602001820160405280156124195781602001600182028036833780820191505090505b5090505b600085146124a65760018261243291906137e9565b9150600a85612441919061397f565b603061244d9190613708565b60f81b81838151811061246357612462613a3d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561249f919061375e565b945061241d565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6124ec828260405180602001604052806000815250612687565b5050565b60006125118473ffffffffffffffffffffffffffffffffffffffff166126e2565b1561267a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253a611bdc565b8786866040518563ffffffff1660e01b815260040161255c949392919061329f565b602060405180830381600087803b15801561257657600080fd5b505af19250505080156125a757506040513d601f19601f820116820180604052508101906125a49190612ce8565b60015b61262a573d80600081146125d7576040519150601f19603f3d011682016040523d82523d6000602084013e6125dc565b606091505b50600081511415612622576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126199061334a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061267f565b600190505b949350505050565b6126918383612705565b61269e60008484846124f0565b6126dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d49061334a565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276c906134aa565b60405180910390fd5b61277e81611b70565b156127be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b5906133aa565b60405180910390fd5b6127ca600083836124b2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461281a9190613708565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128db600083836124b7565b5050565b8280546128eb906138d3565b90600052602060002090601f01602090048101928261290d5760008555612954565b82601f1061292657805160ff1916838001178555612954565b82800160010185558215612954579182015b82811115612953578251825591602001919060010190612938565b5b5090506129619190612965565b5090565b5b8082111561297e576000816000905550600101612966565b5090565b60006129956129908461360a565b6135e5565b9050828152602081018484840111156129b1576129b0613aa0565b5b6129bc848285613891565b509392505050565b60006129d76129d28461363b565b6135e5565b9050828152602081018484840111156129f3576129f2613aa0565b5b6129fe848285613891565b509392505050565b600081359050612a1581613fbf565b92915050565b600081359050612a2a81613fd6565b92915050565b600081359050612a3f81613fed565b92915050565b600081519050612a5481613fed565b92915050565b600082601f830112612a6f57612a6e613a9b565b5b8135612a7f848260208601612982565b91505092915050565b600082601f830112612a9d57612a9c613a9b565b5b8135612aad8482602086016129c4565b91505092915050565b600081359050612ac581614004565b92915050565b600060208284031215612ae157612ae0613aaa565b5b6000612aef84828501612a06565b91505092915050565b60008060408385031215612b0f57612b0e613aaa565b5b6000612b1d85828601612a06565b9250506020612b2e85828601612a06565b9150509250929050565b600080600060608486031215612b5157612b50613aaa565b5b6000612b5f86828701612a06565b9350506020612b7086828701612a06565b9250506040612b8186828701612ab6565b9150509250925092565b60008060008060808587031215612ba557612ba4613aaa565b5b6000612bb387828801612a06565b9450506020612bc487828801612a06565b9350506040612bd587828801612ab6565b925050606085013567ffffffffffffffff811115612bf657612bf5613aa5565b5b612c0287828801612a5a565b91505092959194509250565b60008060408385031215612c2557612c24613aaa565b5b6000612c3385828601612a06565b9250506020612c4485828601612a1b565b9150509250929050565b60008060408385031215612c6557612c64613aaa565b5b6000612c7385828601612a06565b9250506020612c8485828601612ab6565b9150509250929050565b600060208284031215612ca457612ca3613aaa565b5b6000612cb284828501612a1b565b91505092915050565b600060208284031215612cd157612cd0613aaa565b5b6000612cdf84828501612a30565b91505092915050565b600060208284031215612cfe57612cfd613aaa565b5b6000612d0c84828501612a45565b91505092915050565b600060208284031215612d2b57612d2a613aaa565b5b600082013567ffffffffffffffff811115612d4957612d48613aa5565b5b612d5584828501612a88565b91505092915050565b600060208284031215612d7457612d73613aaa565b5b6000612d8284828501612ab6565b91505092915050565b6000612d978383613220565b60208301905092915050565b612dac8161381d565b82525050565b6000612dbd82613691565b612dc781856136bf565b9350612dd28361366c565b8060005b83811015612e03578151612dea8882612d8b565b9750612df5836136b2565b925050600181019050612dd6565b5085935050505092915050565b612e198161382f565b82525050565b6000612e2a8261369c565b612e3481856136d0565b9350612e448185602086016138a0565b612e4d81613aaf565b840191505092915050565b6000612e63826136a7565b612e6d81856136ec565b9350612e7d8185602086016138a0565b612e8681613aaf565b840191505092915050565b6000612e9c826136a7565b612ea681856136fd565b9350612eb68185602086016138a0565b80840191505092915050565b60008154612ecf816138d3565b612ed981866136fd565b94506001821660008114612ef45760018114612f0557612f38565b60ff19831686528186019350612f38565b612f0e8561367c565b60005b83811015612f3057815481890152600182019150602081019050612f11565b838801955050505b50505092915050565b6000612f4e6032836136ec565b9150612f5982613ac0565b604082019050919050565b6000612f716026836136ec565b9150612f7c82613b0f565b604082019050919050565b6000612f946025836136ec565b9150612f9f82613b5e565b604082019050919050565b6000612fb7601c836136ec565b9150612fc282613bad565b602082019050919050565b6000612fda6014836136ec565b9150612fe582613bd6565b602082019050919050565b6000612ffd6024836136ec565b915061300882613bff565b604082019050919050565b60006130206019836136ec565b915061302b82613c4e565b602082019050919050565b6000613043602c836136ec565b915061304e82613c77565b604082019050919050565b60006130666038836136ec565b915061307182613cc6565b604082019050919050565b6000613089602a836136ec565b915061309482613d15565b604082019050919050565b60006130ac6029836136ec565b91506130b782613d64565b604082019050919050565b60006130cf6020836136ec565b91506130da82613db3565b602082019050919050565b60006130f2602c836136ec565b91506130fd82613ddc565b604082019050919050565b60006131156020836136ec565b915061312082613e2b565b602082019050919050565b60006131386017836136ec565b915061314382613e54565b602082019050919050565b600061315b602f836136ec565b915061316682613e7d565b604082019050919050565b600061317e6021836136ec565b915061318982613ecc565b604082019050919050565b60006131a16000836136e1565b91506131ac82613f1b565b600082019050919050565b60006131c46014836136ec565b91506131cf82613f1e565b602082019050919050565b60006131e76031836136ec565b91506131f282613f47565b604082019050919050565b600061320a6013836136ec565b915061321582613f96565b602082019050919050565b61322981613887565b82525050565b61323881613887565b82525050565b600061324a8286612e91565b91506132568285612e91565b91506132628284612ec2565b9150819050949350505050565b600061327a82613194565b9150819050919050565b60006020820190506132996000830184612da3565b92915050565b60006080820190506132b46000830187612da3565b6132c16020830186612da3565b6132ce604083018561322f565b81810360608301526132e08184612e1f565b905095945050505050565b600060208201905081810360008301526133058184612db2565b905092915050565b60006020820190506133226000830184612e10565b92915050565b600060208201905081810360008301526133428184612e58565b905092915050565b6000602082019050818103600083015261336381612f41565b9050919050565b6000602082019050818103600083015261338381612f64565b9050919050565b600060208201905081810360008301526133a381612f87565b9050919050565b600060208201905081810360008301526133c381612faa565b9050919050565b600060208201905081810360008301526133e381612fcd565b9050919050565b6000602082019050818103600083015261340381612ff0565b9050919050565b6000602082019050818103600083015261342381613013565b9050919050565b6000602082019050818103600083015261344381613036565b9050919050565b6000602082019050818103600083015261346381613059565b9050919050565b600060208201905081810360008301526134838161307c565b9050919050565b600060208201905081810360008301526134a38161309f565b9050919050565b600060208201905081810360008301526134c3816130c2565b9050919050565b600060208201905081810360008301526134e3816130e5565b9050919050565b6000602082019050818103600083015261350381613108565b9050919050565b600060208201905081810360008301526135238161312b565b9050919050565b600060208201905081810360008301526135438161314e565b9050919050565b6000602082019050818103600083015261356381613171565b9050919050565b60006020820190508181036000830152613583816131b7565b9050919050565b600060208201905081810360008301526135a3816131da565b9050919050565b600060208201905081810360008301526135c3816131fd565b9050919050565b60006020820190506135df600083018461322f565b92915050565b60006135ef613600565b90506135fb8282613905565b919050565b6000604051905090565b600067ffffffffffffffff82111561362557613624613a6c565b5b61362e82613aaf565b9050602081019050919050565b600067ffffffffffffffff82111561365657613655613a6c565b5b61365f82613aaf565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061371382613887565b915061371e83613887565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613753576137526139b0565b5b828201905092915050565b600061376982613887565b915061377483613887565b925082613784576137836139df565b5b828204905092915050565b600061379a82613887565b91506137a583613887565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137de576137dd6139b0565b5b828202905092915050565b60006137f482613887565b91506137ff83613887565b925082821015613812576138116139b0565b5b828203905092915050565b600061382882613867565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138be5780820151818401526020810190506138a3565b838111156138cd576000848401525b50505050565b600060028204905060018216806138eb57607f821691505b602082108114156138ff576138fe613a0e565b5b50919050565b61390e82613aaf565b810181811067ffffffffffffffff8211171561392d5761392c613a6c565b5b80604052505050565b600061394182613887565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613974576139736139b0565b5b600182019050919050565b600061398a82613887565b915061399583613887565b9250826139a5576139a46139df565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613fc88161381d565b8114613fd357600080fd5b50565b613fdf8161382f565b8114613fea57600080fd5b50565b613ff68161383b565b811461400157600080fd5b50565b61400d81613887565b811461401857600080fd5b5056fea2646970667358221220187c04850d9ba298dc2ccf36364e81ce8bd5277efe905643504a271dd1ab699f64736f6c63430008070033

Deployed Bytecode Sourcemap

38849:3531:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25647:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26592:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28152:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27675:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39116:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41722:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41828:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39678:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28902:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41911:146;;;;;;;;;;;;;:::i;:::-;;29312:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40034:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41262:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41478:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39264:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39038:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39234:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39005:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26286:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26016:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6230:103;;;;;;;;;;;;;:::i;:::-;;41616:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5579:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39190:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26761:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39773:247;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28445:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39076:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41342:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29568:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40675:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39153:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41175:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28671:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6488:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25647:305;25749:4;25801:25;25786:40;;;:11;:40;;;;:105;;;;25858:33;25843:48;;;:11;:48;;;;25786:105;:158;;;;25908:36;25932:11;25908:23;:36::i;:::-;25786:158;25766:178;;25647:305;;;:::o;26592:100::-;26646:13;26679:5;26672:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26592:100;:::o;28152:221::-;28228:7;28256:16;28264:7;28256;:16::i;:::-;28248:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28341:15;:24;28357:7;28341:24;;;;;;;;;;;;;;;;;;;;;28334:31;;28152:221;;;:::o;27675:411::-;27756:13;27772:23;27787:7;27772:14;:23::i;:::-;27756:39;;27820:5;27814:11;;:2;:11;;;;27806:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27914:5;27898:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27923:37;27940:5;27947:12;:10;:12::i;:::-;27923:16;:37::i;:::-;27898:62;27876:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28057:21;28066:2;28070:7;28057:8;:21::i;:::-;27745:341;27675:411;;:::o;39116:32::-;;;;:::o;41722:100::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41806:10:::1;41794:9;:22;;;;;;;;;;;;:::i;:::-;;41722:100:::0;:::o;41828:77::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41893:6:::1;41884;;:15;;;;;;;;;;;;;;;;;;41828:77:::0;:::o;39678:89::-;39722:7;39745:16;:6;:14;:16::i;:::-;39738:23;;39678:89;:::o;28902:339::-;29097:41;29116:12;:10;:12::i;:::-;29130:7;29097:18;:41::i;:::-;29089:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29205:28;29215:4;29221:2;29225:7;29205:9;:28::i;:::-;28902:339;;;:::o;41911:146::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41959:7:::1;41980;:5;:7::i;:::-;41972:21;;42001;41972:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41958:69;;;42042:2;42034:11;;;::::0;::::1;;41948:109;41911:146::o:0;29312:185::-;29450:39;29467:4;29473:2;29477:7;29450:39;;;;;;;;;;;;:16;:39::i;:::-;29312:185;;;:::o;40034:635::-;40109:16;40137:23;40163:17;40173:6;40163:9;:17::i;:::-;40137:43;;40187:30;40234:15;40220:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40187:63;;40257:22;40282:1;40257:26;;40290:23;40326:309;40351:15;40333;:33;:64;;;;;40388:9;;40370:14;:27;;40333:64;40326:309;;;40408:25;40436:23;40444:14;40436:7;:23::i;:::-;40408:51;;40495:6;40474:27;;:17;:27;;;40470:131;;;40547:14;40514:13;40528:15;40514:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;40574:17;;;;;:::i;:::-;;;;40470:131;40611:16;;;;;:::i;:::-;;;;40399:236;40326:309;;;40650:13;40643:20;;;;;;40034:635;;;:::o;41262:74::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41325:5:::1;41318:4;:12;;;;41262:74:::0;:::o;41478:132::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41586:18:::1;41566:17;:38;;;;;;;;;;;;:::i;:::-;;41478:132:::0;:::o;39264:28::-;;;;;;;;;;;;;:::o;39038:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39234:25::-;;;;;;;;;;;;;:::o;39005:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26286:239::-;26358:7;26378:13;26394:7;:16;26402:7;26394:16;;;;;;;;;;;;;;;;;;;;;26378:32;;26446:1;26429:19;;:5;:19;;;;26421:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26512:5;26505:12;;;26286:239;;;:::o;26016:208::-;26088:7;26133:1;26116:19;;:5;:19;;;;26108:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26200:9;:16;26210:5;26200:16;;;;;;;;;;;;;;;;26193:23;;26016:208;;;:::o;6230:103::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6295:30:::1;6322:1;6295:18;:30::i;:::-;6230:103::o:0;41616:100::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41700:10:::1;41688:9;:22;;;;;;;;;;;;:::i;:::-;;41616:100:::0;:::o;5579:87::-;5625:7;5652:6;;;;;;;;;;;5645:13;;5579:87;:::o;39190:37::-;;;;:::o;26761:104::-;26817:13;26850:7;26843:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26761:104;:::o;39773:247::-;39838:11;39512:1;39498:11;:15;:52;;;;;39532:18;;39517:11;:33;;39498:52;39490:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39624:9;;39609:11;39590:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39582:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39867:6:::1;;;;;;;;;;;39866:7;39858:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;39936:11;39929:4;;:18;;;;:::i;:::-;39916:9;:31;;39908:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;39980:34;39990:10;40002:11;39980:9;:34::i;:::-;39773:247:::0;;:::o;28445:155::-;28540:52;28559:12;:10;:12::i;:::-;28573:8;28583;28540:18;:52::i;:::-;28445:155;;:::o;39076:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41342:130::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41447:19:::1;41426:18;:40;;;;41342:130:::0;:::o;29568:328::-;29743:41;29762:12;:10;:12::i;:::-;29776:7;29743:18;:41::i;:::-;29735:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29849:39;29863:4;29869:2;29873:7;29882:5;29849:13;:39::i;:::-;29568:328;;;;:::o;40675:494::-;40774:13;40815:17;40823:8;40815:7;:17::i;:::-;40799:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;40922:5;40910:17;;:8;;;;;;;;;;;:17;;;40906:64;;;40945:17;40938:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40906:64;40978:28;41009:10;:8;:10::i;:::-;40978:41;;41064:1;41039:14;41033:28;:32;:130;;;;;;;;;;;;;;;;;41101:14;41117:19;:8;:17;:19::i;:::-;41138:9;41084:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41033:130;41026:137;;;40675:494;;;;:::o;39153:32::-;;;;:::o;41175:81::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41244:6:::1;41233:8;;:17;;;;;;;;;;;;;;;;;;41175:81:::0;:::o;28671:164::-;28768:4;28792:18;:25;28811:5;28792:25;;;;;;;;;;;;;;;:35;28818:8;28792:35;;;;;;;;;;;;;;;;;;;;;;;;;28785:42;;28671:164;;;;:::o;6488:201::-;5810:12;:10;:12::i;:::-;5799:23;;:7;:5;:7::i;:::-;:23;;;5791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6597:1:::1;6577:22;;:8;:22;;;;6569:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6653:28;6672:8;6653:18;:28::i;:::-;6488:201:::0;:::o;18386:157::-;18471:4;18510:25;18495:40;;;:11;:40;;;;18488:47;;18386:157;;;:::o;31406:127::-;31471:4;31523:1;31495:30;;:7;:16;31503:7;31495:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31488:37;;31406:127;;;:::o;4303:98::-;4356:7;4383:10;4376:17;;4303:98;:::o;35552:174::-;35654:2;35627:15;:24;35643:7;35627:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35710:7;35706:2;35672:46;;35681:23;35696:7;35681:14;:23::i;:::-;35672:46;;;;;;;;;;;;35552:174;;:::o;907:114::-;972:7;999;:14;;;992:21;;907:114;;;:::o;31700:348::-;31793:4;31818:16;31826:7;31818;:16::i;:::-;31810:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31894:13;31910:23;31925:7;31910:14;:23::i;:::-;31894:39;;31963:5;31952:16;;:7;:16;;;:52;;;;31972:32;31989:5;31996:7;31972:16;:32::i;:::-;31952:52;:87;;;;32032:7;32008:31;;:20;32020:7;32008:11;:20::i;:::-;:31;;;31952:87;31944:96;;;31700:348;;;;:::o;34809:625::-;34968:4;34941:31;;:23;34956:7;34941:14;:23::i;:::-;:31;;;34933:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35047:1;35033:16;;:2;:16;;;;35025:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35103:39;35124:4;35130:2;35134:7;35103:20;:39::i;:::-;35207:29;35224:1;35228:7;35207:8;:29::i;:::-;35268:1;35249:9;:15;35259:4;35249:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35297:1;35280:9;:13;35290:2;35280:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35328:2;35309:7;:16;35317:7;35309:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35367:7;35363:2;35348:27;;35357:4;35348:27;;;;;;;;;;;;35388:38;35408:4;35414:2;35418:7;35388:19;:38::i;:::-;34809:625;;;:::o;6849:191::-;6923:16;6942:6;;;;;;;;;;;6923:25;;6968:8;6959:6;;:17;;;;;;;;;;;;;;;;;;7023:8;6992:40;;7013:8;6992:40;;;;;;;;;;;;6912:128;6849:191;:::o;42063:204::-;42143:9;42138:124;42162:11;42158:1;:15;42138:124;;;42189:18;:6;:16;:18::i;:::-;42216:38;42226:9;42237:16;:6;:14;:16::i;:::-;42216:9;:38::i;:::-;42175:3;;;;;:::i;:::-;;;;42138:124;;;;42063:204;;:::o;35868:315::-;36023:8;36014:17;;:5;:17;;;;36006:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36110:8;36072:18;:25;36091:5;36072:25;;;;;;;;;;;;;;;:35;36098:8;36072:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36156:8;36134:41;;36149:5;36134:41;;;36166:8;36134:41;;;;;;:::i;:::-;;;;;;;;35868:315;;;:::o;30778:::-;30935:28;30945:4;30951:2;30955:7;30935:9;:28::i;:::-;30982:48;31005:4;31011:2;31015:7;31024:5;30982:22;:48::i;:::-;30974:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30778:315;;;;:::o;42273:104::-;42333:13;42362:9;42355:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42273:104;:::o;1865:723::-;1921:13;2151:1;2142:5;:10;2138:53;;;2169:10;;;;;;;;;;;;;;;;;;;;;2138:53;2201:12;2216:5;2201:20;;2232:14;2257:78;2272:1;2264:4;:9;2257:78;;2290:8;;;;;:::i;:::-;;;;2321:2;2313:10;;;;;:::i;:::-;;;2257:78;;;2345:19;2377:6;2367:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2345:39;;2395:154;2411:1;2402:5;:10;2395:154;;2439:1;2429:11;;;;;:::i;:::-;;;2506:2;2498:5;:10;;;;:::i;:::-;2485:2;:24;;;;:::i;:::-;2472:39;;2455:6;2462;2455:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2535:2;2526:11;;;;;:::i;:::-;;;2395:154;;;2573:6;2559:21;;;;;1865:723;;;;:::o;38119:126::-;;;;:::o;38630:125::-;;;;:::o;1029:127::-;1136:1;1118:7;:14;;;:19;;;;;;;;;;;1029:127;:::o;32390:110::-;32466:26;32476:2;32480:7;32466:26;;;;;;;;;;;;:9;:26::i;:::-;32390:110;;:::o;36748:799::-;36903:4;36924:15;:2;:13;;;:15::i;:::-;36920:620;;;36976:2;36960:36;;;36997:12;:10;:12::i;:::-;37011:4;37017:7;37026:5;36960:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36956:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37219:1;37202:6;:13;:18;37198:272;;;37245:60;;;;;;;;;;:::i;:::-;;;;;;;;37198:272;37420:6;37414:13;37405:6;37401:2;37397:15;37390:38;36956:529;37093:41;;;37083:51;;;:6;:51;;;;37076:58;;;;;36920:620;37524:4;37517:11;;36748:799;;;;;;;:::o;32727:321::-;32857:18;32863:2;32867:7;32857:5;:18::i;:::-;32908:54;32939:1;32943:2;32947:7;32956:5;32908:22;:54::i;:::-;32886:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32727:321;;;:::o;8280:326::-;8340:4;8597:1;8575:7;:19;;;:23;8568:30;;8280:326;;;:::o;33384:439::-;33478:1;33464:16;;:2;:16;;;;33456:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33537:16;33545:7;33537;:16::i;:::-;33536:17;33528:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33599:45;33628:1;33632:2;33636:7;33599:20;:45::i;:::-;33674:1;33657:9;:13;33667:2;33657:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33705:2;33686:7;:16;33694:7;33686:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33750:7;33746:2;33725:33;;33742:1;33725:33;;;;;;;;;;;;33771:44;33799:1;33803:2;33807:7;33771:19;:44::i;:::-;33384:439;;:::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:398::-;17156:3;17177:83;17258:1;17253:3;17177:83;:::i;:::-;17170:90;;17269:93;17358:3;17269:93;:::i;:::-;17387:1;17382:3;17378:11;17371:18;;16997:398;;;:::o;17401:366::-;17543:3;17564:67;17628:2;17623:3;17564:67;:::i;:::-;17557:74;;17640:93;17729:3;17640:93;:::i;:::-;17758:2;17753:3;17749:12;17742:19;;17401:366;;;:::o;17773:::-;17915:3;17936:67;18000:2;17995:3;17936:67;:::i;:::-;17929:74;;18012:93;18101:3;18012:93;:::i;:::-;18130:2;18125:3;18121:12;18114:19;;17773:366;;;:::o;18145:::-;18287:3;18308:67;18372:2;18367:3;18308:67;:::i;:::-;18301:74;;18384:93;18473:3;18384:93;:::i;:::-;18502:2;18497:3;18493:12;18486:19;;18145:366;;;:::o;18517:108::-;18594:24;18612:5;18594:24;:::i;:::-;18589:3;18582:37;18517:108;;:::o;18631:118::-;18718:24;18736:5;18718:24;:::i;:::-;18713:3;18706:37;18631:118;;:::o;18755:589::-;18980:3;19002:95;19093:3;19084:6;19002:95;:::i;:::-;18995:102;;19114:95;19205:3;19196:6;19114:95;:::i;:::-;19107:102;;19226:92;19314:3;19305:6;19226:92;:::i;:::-;19219:99;;19335:3;19328:10;;18755:589;;;;;;:::o;19350:379::-;19534:3;19556:147;19699:3;19556:147;:::i;:::-;19549:154;;19720:3;19713:10;;19350:379;;;:::o;19735:222::-;19828:4;19866:2;19855:9;19851:18;19843:26;;19879:71;19947:1;19936:9;19932:17;19923:6;19879:71;:::i;:::-;19735:222;;;;:::o;19963:640::-;20158:4;20196:3;20185:9;20181:19;20173:27;;20210:71;20278:1;20267:9;20263:17;20254:6;20210:71;:::i;:::-;20291:72;20359:2;20348:9;20344:18;20335:6;20291:72;:::i;:::-;20373;20441:2;20430:9;20426:18;20417:6;20373:72;:::i;:::-;20492:9;20486:4;20482:20;20477:2;20466:9;20462:18;20455:48;20520:76;20591:4;20582:6;20520:76;:::i;:::-;20512:84;;19963:640;;;;;;;:::o;20609:373::-;20752:4;20790:2;20779:9;20775:18;20767:26;;20839:9;20833:4;20829:20;20825:1;20814:9;20810:17;20803:47;20867:108;20970:4;20961:6;20867:108;:::i;:::-;20859:116;;20609:373;;;;:::o;20988:210::-;21075:4;21113:2;21102:9;21098:18;21090:26;;21126:65;21188:1;21177:9;21173:17;21164:6;21126:65;:::i;:::-;20988:210;;;;:::o;21204:313::-;21317:4;21355:2;21344:9;21340:18;21332:26;;21404:9;21398:4;21394:20;21390:1;21379:9;21375:17;21368:47;21432:78;21505:4;21496:6;21432:78;:::i;:::-;21424:86;;21204:313;;;;:::o;21523:419::-;21689:4;21727:2;21716:9;21712:18;21704:26;;21776:9;21770:4;21766:20;21762:1;21751:9;21747:17;21740:47;21804:131;21930:4;21804:131;:::i;:::-;21796:139;;21523:419;;;:::o;21948:::-;22114:4;22152:2;22141:9;22137:18;22129:26;;22201:9;22195:4;22191:20;22187:1;22176:9;22172:17;22165:47;22229:131;22355:4;22229:131;:::i;:::-;22221:139;;21948:419;;;:::o;22373:::-;22539:4;22577:2;22566:9;22562:18;22554:26;;22626:9;22620:4;22616:20;22612:1;22601:9;22597:17;22590:47;22654:131;22780:4;22654:131;:::i;:::-;22646:139;;22373:419;;;:::o;22798:::-;22964:4;23002:2;22991:9;22987:18;22979:26;;23051:9;23045:4;23041:20;23037:1;23026:9;23022:17;23015:47;23079:131;23205:4;23079:131;:::i;:::-;23071:139;;22798:419;;;:::o;23223:::-;23389:4;23427:2;23416:9;23412:18;23404:26;;23476:9;23470:4;23466:20;23462:1;23451:9;23447:17;23440:47;23504:131;23630:4;23504:131;:::i;:::-;23496:139;;23223:419;;;:::o;23648:::-;23814:4;23852:2;23841:9;23837:18;23829:26;;23901:9;23895:4;23891:20;23887:1;23876:9;23872:17;23865:47;23929:131;24055:4;23929:131;:::i;:::-;23921:139;;23648:419;;;:::o;24073:::-;24239:4;24277:2;24266:9;24262:18;24254:26;;24326:9;24320:4;24316:20;24312:1;24301:9;24297:17;24290:47;24354:131;24480:4;24354:131;:::i;:::-;24346:139;;24073:419;;;:::o;24498:::-;24664:4;24702:2;24691:9;24687:18;24679:26;;24751:9;24745:4;24741:20;24737:1;24726:9;24722:17;24715:47;24779:131;24905:4;24779:131;:::i;:::-;24771:139;;24498:419;;;:::o;24923:::-;25089:4;25127:2;25116:9;25112:18;25104:26;;25176:9;25170:4;25166:20;25162:1;25151:9;25147:17;25140:47;25204:131;25330:4;25204:131;:::i;:::-;25196:139;;24923:419;;;:::o;25348:::-;25514:4;25552:2;25541:9;25537:18;25529:26;;25601:9;25595:4;25591:20;25587:1;25576:9;25572:17;25565:47;25629:131;25755:4;25629:131;:::i;:::-;25621:139;;25348:419;;;:::o;25773:::-;25939:4;25977:2;25966:9;25962:18;25954:26;;26026:9;26020:4;26016:20;26012:1;26001:9;25997:17;25990:47;26054:131;26180:4;26054:131;:::i;:::-;26046:139;;25773:419;;;:::o;26198:::-;26364:4;26402:2;26391:9;26387:18;26379:26;;26451:9;26445:4;26441:20;26437:1;26426:9;26422:17;26415:47;26479:131;26605:4;26479:131;:::i;:::-;26471:139;;26198:419;;;:::o;26623:::-;26789:4;26827:2;26816:9;26812:18;26804:26;;26876:9;26870:4;26866:20;26862:1;26851:9;26847:17;26840:47;26904:131;27030:4;26904:131;:::i;:::-;26896:139;;26623:419;;;:::o;27048:::-;27214:4;27252:2;27241:9;27237:18;27229:26;;27301:9;27295:4;27291:20;27287:1;27276:9;27272:17;27265:47;27329:131;27455:4;27329:131;:::i;:::-;27321:139;;27048:419;;;:::o;27473:::-;27639:4;27677:2;27666:9;27662:18;27654:26;;27726:9;27720:4;27716:20;27712:1;27701:9;27697:17;27690:47;27754:131;27880:4;27754:131;:::i;:::-;27746:139;;27473:419;;;:::o;27898:::-;28064:4;28102:2;28091:9;28087:18;28079:26;;28151:9;28145:4;28141:20;28137:1;28126:9;28122:17;28115:47;28179:131;28305:4;28179:131;:::i;:::-;28171:139;;27898:419;;;:::o;28323:::-;28489:4;28527:2;28516:9;28512:18;28504:26;;28576:9;28570:4;28566:20;28562:1;28551:9;28547:17;28540:47;28604:131;28730:4;28604:131;:::i;:::-;28596:139;;28323:419;;;:::o;28748:::-;28914:4;28952:2;28941:9;28937:18;28929:26;;29001:9;28995:4;28991:20;28987:1;28976:9;28972:17;28965:47;29029:131;29155:4;29029:131;:::i;:::-;29021:139;;28748:419;;;:::o;29173:::-;29339:4;29377:2;29366:9;29362:18;29354:26;;29426:9;29420:4;29416:20;29412:1;29401:9;29397:17;29390:47;29454:131;29580:4;29454:131;:::i;:::-;29446:139;;29173:419;;;:::o;29598:::-;29764:4;29802:2;29791:9;29787:18;29779:26;;29851:9;29845:4;29841:20;29837:1;29826:9;29822:17;29815:47;29879:131;30005:4;29879:131;:::i;:::-;29871:139;;29598:419;;;:::o;30023:222::-;30116:4;30154:2;30143:9;30139:18;30131:26;;30167:71;30235:1;30224:9;30220:17;30211:6;30167:71;:::i;:::-;30023:222;;;;:::o;30251:129::-;30285:6;30312:20;;:::i;:::-;30302:30;;30341:33;30369:4;30361:6;30341:33;:::i;:::-;30251:129;;;:::o;30386:75::-;30419:6;30452:2;30446:9;30436:19;;30386:75;:::o;30467:307::-;30528:4;30618:18;30610:6;30607:30;30604:56;;;30640:18;;:::i;:::-;30604:56;30678:29;30700:6;30678:29;:::i;:::-;30670:37;;30762:4;30756;30752:15;30744:23;;30467:307;;;:::o;30780:308::-;30842:4;30932:18;30924:6;30921:30;30918:56;;;30954:18;;:::i;:::-;30918:56;30992:29;31014:6;30992:29;:::i;:::-;30984:37;;31076:4;31070;31066:15;31058:23;;30780:308;;;:::o;31094:132::-;31161:4;31184:3;31176:11;;31214:4;31209:3;31205:14;31197:22;;31094:132;;;:::o;31232:141::-;31281:4;31304:3;31296:11;;31327:3;31324:1;31317:14;31361:4;31358:1;31348:18;31340:26;;31232:141;;;:::o;31379:114::-;31446:6;31480:5;31474:12;31464:22;;31379:114;;;:::o;31499:98::-;31550:6;31584:5;31578:12;31568:22;;31499:98;;;:::o;31603:99::-;31655:6;31689:5;31683:12;31673:22;;31603:99;;;:::o;31708:113::-;31778:4;31810;31805:3;31801:14;31793:22;;31708:113;;;:::o;31827:184::-;31926:11;31960:6;31955:3;31948:19;32000:4;31995:3;31991:14;31976:29;;31827:184;;;;:::o;32017:168::-;32100:11;32134:6;32129:3;32122:19;32174:4;32169:3;32165:14;32150:29;;32017:168;;;;:::o;32191:147::-;32292:11;32329:3;32314:18;;32191:147;;;;:::o;32344:169::-;32428:11;32462:6;32457:3;32450:19;32502:4;32497:3;32493:14;32478:29;;32344:169;;;;:::o;32519:148::-;32621:11;32658:3;32643:18;;32519:148;;;;:::o;32673:305::-;32713:3;32732:20;32750:1;32732:20;:::i;:::-;32727:25;;32766:20;32784:1;32766:20;:::i;:::-;32761:25;;32920:1;32852:66;32848:74;32845:1;32842:81;32839:107;;;32926:18;;:::i;:::-;32839:107;32970:1;32967;32963:9;32956:16;;32673:305;;;;:::o;32984:185::-;33024:1;33041:20;33059:1;33041:20;:::i;:::-;33036:25;;33075:20;33093:1;33075:20;:::i;:::-;33070:25;;33114:1;33104:35;;33119:18;;:::i;:::-;33104:35;33161:1;33158;33154:9;33149:14;;32984:185;;;;:::o;33175:348::-;33215:7;33238:20;33256:1;33238:20;:::i;:::-;33233:25;;33272:20;33290:1;33272:20;:::i;:::-;33267:25;;33460:1;33392:66;33388:74;33385:1;33382:81;33377:1;33370:9;33363:17;33359:105;33356:131;;;33467:18;;:::i;:::-;33356:131;33515:1;33512;33508:9;33497:20;;33175:348;;;;:::o;33529:191::-;33569:4;33589:20;33607:1;33589:20;:::i;:::-;33584:25;;33623:20;33641:1;33623:20;:::i;:::-;33618:25;;33662:1;33659;33656:8;33653:34;;;33667:18;;:::i;:::-;33653:34;33712:1;33709;33705:9;33697:17;;33529:191;;;;:::o;33726:96::-;33763:7;33792:24;33810:5;33792:24;:::i;:::-;33781:35;;33726:96;;;:::o;33828:90::-;33862:7;33905:5;33898:13;33891:21;33880:32;;33828:90;;;:::o;33924:149::-;33960:7;34000:66;33993:5;33989:78;33978:89;;33924:149;;;:::o;34079:126::-;34116:7;34156:42;34149:5;34145:54;34134:65;;34079:126;;;:::o;34211:77::-;34248:7;34277:5;34266:16;;34211:77;;;:::o;34294:154::-;34378:6;34373:3;34368;34355:30;34440:1;34431:6;34426:3;34422:16;34415:27;34294:154;;;:::o;34454:307::-;34522:1;34532:113;34546:6;34543:1;34540:13;34532:113;;;34631:1;34626:3;34622:11;34616:18;34612:1;34607:3;34603:11;34596:39;34568:2;34565:1;34561:10;34556:15;;34532:113;;;34663:6;34660:1;34657:13;34654:101;;;34743:1;34734:6;34729:3;34725:16;34718:27;34654:101;34503:258;34454:307;;;:::o;34767:320::-;34811:6;34848:1;34842:4;34838:12;34828:22;;34895:1;34889:4;34885:12;34916:18;34906:81;;34972:4;34964:6;34960:17;34950:27;;34906:81;35034:2;35026:6;35023:14;35003:18;35000:38;34997:84;;;35053:18;;:::i;:::-;34997:84;34818:269;34767:320;;;:::o;35093:281::-;35176:27;35198:4;35176:27;:::i;:::-;35168:6;35164:40;35306:6;35294:10;35291:22;35270:18;35258:10;35255:34;35252:62;35249:88;;;35317:18;;:::i;:::-;35249:88;35357:10;35353:2;35346:22;35136:238;35093:281;;:::o;35380:233::-;35419:3;35442:24;35460:5;35442:24;:::i;:::-;35433:33;;35488:66;35481:5;35478:77;35475:103;;;35558:18;;:::i;:::-;35475:103;35605:1;35598:5;35594:13;35587:20;;35380:233;;;:::o;35619:176::-;35651:1;35668:20;35686:1;35668:20;:::i;:::-;35663:25;;35702:20;35720:1;35702:20;:::i;:::-;35697:25;;35741:1;35731:35;;35746:18;;:::i;:::-;35731:35;35787:1;35784;35780:9;35775:14;;35619:176;;;;:::o;35801:180::-;35849:77;35846:1;35839:88;35946:4;35943:1;35936:15;35970:4;35967:1;35960:15;35987:180;36035:77;36032:1;36025:88;36132:4;36129:1;36122:15;36156:4;36153:1;36146:15;36173:180;36221:77;36218:1;36211:88;36318:4;36315:1;36308:15;36342:4;36339:1;36332:15;36359:180;36407:77;36404:1;36397:88;36504:4;36501:1;36494:15;36528:4;36525:1;36518:15;36545:180;36593:77;36590:1;36583:88;36690:4;36687:1;36680:15;36714:4;36711:1;36704:15;36731:117;36840:1;36837;36830:12;36854:117;36963:1;36960;36953:12;36977:117;37086:1;37083;37076:12;37100:117;37209:1;37206;37199:12;37223:102;37264:6;37315:2;37311:7;37306:2;37299:5;37295:14;37291:28;37281:38;;37223:102;;;:::o;37331:237::-;37471:34;37467:1;37459:6;37455:14;37448:58;37540:20;37535:2;37527:6;37523:15;37516:45;37331:237;:::o;37574:225::-;37714:34;37710:1;37702:6;37698:14;37691:58;37783:8;37778:2;37770:6;37766:15;37759:33;37574:225;:::o;37805:224::-;37945:34;37941:1;37933:6;37929:14;37922:58;38014:7;38009:2;38001:6;37997:15;37990:32;37805:224;:::o;38035:178::-;38175:30;38171:1;38163:6;38159:14;38152:54;38035:178;:::o;38219:170::-;38359:22;38355:1;38347:6;38343:14;38336:46;38219:170;:::o;38395:223::-;38535:34;38531:1;38523:6;38519:14;38512:58;38604:6;38599:2;38591:6;38587:15;38580:31;38395:223;:::o;38624:175::-;38764:27;38760:1;38752:6;38748:14;38741:51;38624:175;:::o;38805:231::-;38945:34;38941:1;38933:6;38929:14;38922:58;39014:14;39009:2;39001:6;38997:15;38990:39;38805:231;:::o;39042:243::-;39182:34;39178:1;39170:6;39166:14;39159:58;39251:26;39246:2;39238:6;39234:15;39227:51;39042:243;:::o;39291:229::-;39431:34;39427:1;39419:6;39415:14;39408:58;39500:12;39495:2;39487:6;39483:15;39476:37;39291:229;:::o;39526:228::-;39666:34;39662:1;39654:6;39650:14;39643:58;39735:11;39730:2;39722:6;39718:15;39711:36;39526:228;:::o;39760:182::-;39900:34;39896:1;39888:6;39884:14;39877:58;39760:182;:::o;39948:231::-;40088:34;40084:1;40076:6;40072:14;40065:58;40157:14;40152:2;40144:6;40140:15;40133:39;39948:231;:::o;40185:182::-;40325:34;40321:1;40313:6;40309:14;40302:58;40185:182;:::o;40373:173::-;40513:25;40509:1;40501:6;40497:14;40490:49;40373:173;:::o;40552:234::-;40692:34;40688:1;40680:6;40676:14;40669:58;40761:17;40756:2;40748:6;40744:15;40737:42;40552:234;:::o;40792:220::-;40932:34;40928:1;40920:6;40916:14;40909:58;41001:3;40996:2;40988:6;40984:15;40977:28;40792:220;:::o;41018:114::-;;:::o;41138:170::-;41278:22;41274:1;41266:6;41262:14;41255:46;41138:170;:::o;41314:236::-;41454:34;41450:1;41442:6;41438:14;41431:58;41523:19;41518:2;41510:6;41506:15;41499:44;41314:236;:::o;41556:169::-;41696:21;41692:1;41684:6;41680:14;41673:45;41556:169;:::o;41731:122::-;41804:24;41822:5;41804:24;:::i;:::-;41797:5;41794:35;41784:63;;41843:1;41840;41833:12;41784:63;41731:122;:::o;41859:116::-;41929:21;41944:5;41929:21;:::i;:::-;41922:5;41919:32;41909:60;;41965:1;41962;41955:12;41909:60;41859:116;:::o;41981:120::-;42053:23;42070:5;42053:23;:::i;:::-;42046:5;42043:34;42033:62;;42091:1;42088;42081:12;42033:62;41981:120;:::o;42107:122::-;42180:24;42198:5;42180:24;:::i;:::-;42173:5;42170:35;42160:63;;42219:1;42216;42209:12;42160:63;42107:122;:::o

Swarm Source

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