ETH Price: $3,449.85 (-1.90%)
Gas: 3 Gwei

Token

Legendary K-Noids (LTKN)
 

Overview

Max Total Supply

0 LTKN

Holders

39

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bokababa413119.eth
Balance
1 LTKN
0xaD2FF20a49F9eEc8529fa31c8d9Ec66E4949A808
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:
legendary_tkn

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-16
*/

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



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/Pausable.sol



pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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



pragma solidity ^0.8.0;



/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

// File: @openzeppelin/contracts/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: contracts/legendary_tkn.sol


pragma solidity ^0.8.0;





contract legendary_tkn is ERC721, ERC721URIStorage, Pausable, Ownable {
    using Address for address;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    
    uint256 public maxSupply = 100;
    uint256 public price = 150000000000000000; // 0.15 ETH
    bool public saleOpen = false;
    bool public presaleOpen = false;
    string public baseURI;

    mapping(address => uint256) public Whitelist;

    receive() external payable {}

    constructor() ERC721('Legendary K-Noids', 'LTKN') {
    }

    function mint(uint256 amount) public payable {
        require(!Address.isContract(msg.sender), "Contracts are not allowed to mint");
        require(msg.value >= price * amount, 'Not enough was paid');

        if (!saleOpen) {
            require(presaleOpen == true, 'Presale is not open');
            uint256 who = Whitelist[msg.sender];
            require(who > 0, 'This address is not whitelisted for the presale');
            require(amount <= who, 'This address is not allowed to mint that many during the presale');
            for (uint256 i = 0; i < amount; i++) 
                internalMint(msg.sender);
                Whitelist[msg.sender] = who - amount;
            return;
        }

        require(amount <= 10, 'Only 10 per transaction allowed');
        for (uint256 i = 0; i < amount; i++) internalMint(msg.sender);
    }

    function internalMint(address to) internal {
        require(_tokenIdCounter.current() < maxSupply, 'Supply depleted');
        _tokenIdCounter.increment();
        _safeMint(to, _tokenIdCounter.current());
    }

    function whitelistAddress(address[] memory who, uint256 amount) public onlyOwner {
        for (uint256 i = 0; i < who.length; i++) Whitelist[who[i]] = amount;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(owner()).transfer(balance);
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function toggleSale() public onlyOwner {
        saleOpen = !saleOpen;
    }

    function togglePresale() public onlyOwner {
        presaleOpen = !presaleOpen;
    }

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

    function setPrice(uint256 newPrice) public onlyOwner {
        price = newPrice;
    }

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

    // The following functions are overrides required by Solidity.

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

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
        return super.tokenURI(tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"who","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526064600955670214e8348c4f0000600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055503480156200005857600080fd5b506040518060400160405280601181526020017f4c6567656e64617279204b2d4e6f6964730000000000000000000000000000008152506040518060400160405280600481526020017f4c544b4e000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000dd92919062000208565b508060019080519060200190620000f692919062000208565b5050506000600760006101000a81548160ff02191690831515021790555062000134620001286200013a60201b60201c565b6200014260201b60201c565b6200031d565b600033905090565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021690620002b8565b90600052602060002090601f0160209004810192826200023a576000855562000286565b82601f106200025557805160ff191683800117855562000286565b8280016001018555821562000286579182015b828111156200028557825182559160200191906001019062000268565b5b50905062000295919062000299565b5090565b5b80821115620002b45760008160009055506001016200029a565b5090565b60006002820490506001821680620002d157607f821691505b60208210811415620002e857620002e7620002ee565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614242806200032d6000396000f3fe6080604052600436106101e75760003560e01c80637d8966e411610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb011461066a578063e985e9c514610695578063eb73900b146106d2578063f2fde38b1461070f576101ee565b8063a22cb465146105b0578063b88d4fde146105d9578063bee6348a14610602578063c87b56dd1461062d576101ee565b806395d89b41116100d157806395d89b411461051357806399288dbb1461053e578063a035b1fe14610569578063a0712d6814610594576101ee565b80637d8966e4146104915780638456cb59146104a85780638da5cb5b146104bf57806391b7f5ed146104ea576101ee565b806342842e0e1161017a5780636b6384db116101495780636b6384db146103e95780636c0360eb1461041257806370a082311461043d578063715018a61461047a576101ee565b806342842e0e1461032f57806355f804b3146103585780635c975abb146103815780636352211e146103ac576101ee565b806323b872dd116101b657806323b872dd146102c157806334393743146102ea5780633ccfd60b146103015780633f4ba83a14610318576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612edd565b610738565b60405161022791906139d4565b60405180910390f35b34801561023c57600080fd5b5061024561074a565b60405161025291906139ef565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612f70565b6107dc565b60405161028f919061396d565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612e4d565b610861565b005b3480156102cd57600080fd5b506102e860048036038101906102e39190612d47565b610979565b005b3480156102f657600080fd5b506102ff6109d9565b005b34801561030d57600080fd5b50610316610a81565b005b34801561032457600080fd5b5061032d610b53565b005b34801561033b57600080fd5b5061035660048036038101906103519190612d47565b610bd9565b005b34801561036457600080fd5b5061037f600480360381019061037a9190612f2f565b610bf9565b005b34801561038d57600080fd5b50610396610c8f565b6040516103a391906139d4565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce9190612f70565b610ca6565b6040516103e0919061396d565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190612e89565b610d58565b005b34801561041e57600080fd5b50610427610e7c565b60405161043491906139ef565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f9190612ce2565b610f0a565b6040516104719190613d51565b60405180910390f35b34801561048657600080fd5b5061048f610fc2565b005b34801561049d57600080fd5b506104a661104a565b005b3480156104b457600080fd5b506104bd6110f2565b005b3480156104cb57600080fd5b506104d4611178565b6040516104e1919061396d565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190612f70565b6111a2565b005b34801561051f57600080fd5b50610528611228565b60405161053591906139ef565b60405180910390f35b34801561054a57600080fd5b506105536112ba565b60405161056091906139d4565b60405180910390f35b34801561057557600080fd5b5061057e6112cd565b60405161058b9190613d51565b60405180910390f35b6105ae60048036038101906105a99190612f70565b6112d3565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190612e11565b61158d565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612d96565b61170e565b005b34801561060e57600080fd5b50610617611770565b60405161062491906139d4565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190612f70565b611783565b60405161066191906139ef565b60405180910390f35b34801561067657600080fd5b5061067f611795565b60405161068c9190613d51565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612d0b565b61179b565b6040516106c991906139d4565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f49190612ce2565b61182f565b6040516107069190613d51565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190612ce2565b611847565b005b60006107438261193f565b9050919050565b60606000805461075990614037565b80601f016020809104026020016040519081016040528092919081815260200182805461078590614037565b80156107d25780601f106107a7576101008083540402835291602001916107d2565b820191906000526020600020905b8154815290600101906020018083116107b557829003601f168201915b5050505050905090565b60006107e782611a21565b610826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081d90613bf1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086c82610ca6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d490613c91565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc611a8d565b73ffffffffffffffffffffffffffffffffffffffff16148061092b575061092a81610925611a8d565b61179b565b5b61096a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096190613b31565b60405180910390fd5b6109748383611a95565b505050565b61098a610984611a8d565b82611b4e565b6109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090613cd1565b60405180910390fd5b6109d4838383611c2c565b505050565b6109e1611a8d565b73ffffffffffffffffffffffffffffffffffffffff166109ff611178565b73ffffffffffffffffffffffffffffffffffffffff1614610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c90613c11565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b610a89611a8d565b73ffffffffffffffffffffffffffffffffffffffff16610aa7611178565b73ffffffffffffffffffffffffffffffffffffffff1614610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490613c11565b60405180910390fd5b6000479050610b0a611178565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b4f573d6000803e3d6000fd5b5050565b610b5b611a8d565b73ffffffffffffffffffffffffffffffffffffffff16610b79611178565b73ffffffffffffffffffffffffffffffffffffffff1614610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690613c11565b60405180910390fd5b610bd7611e88565b565b610bf48383836040518060200160405280600081525061170e565b505050565b610c01611a8d565b73ffffffffffffffffffffffffffffffffffffffff16610c1f611178565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90613c11565b60405180910390fd5b80600c9080519060200190610c8b929190612a70565b5050565b6000600760009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690613b71565b60405180910390fd5b80915050919050565b610d60611a8d565b73ffffffffffffffffffffffffffffffffffffffff16610d7e611178565b73ffffffffffffffffffffffffffffffffffffffff1614610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90613c11565b60405180910390fd5b60005b8251811015610e775781600d6000858481518110610e1e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610e6f90614069565b915050610dd7565b505050565b600c8054610e8990614037565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb590614037565b8015610f025780601f10610ed757610100808354040283529160200191610f02565b820191906000526020600020905b815481529060010190602001808311610ee557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290613b51565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fca611a8d565b73ffffffffffffffffffffffffffffffffffffffff16610fe8611178565b73ffffffffffffffffffffffffffffffffffffffff161461103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590613c11565b60405180910390fd5b6110486000611f2a565b565b611052611a8d565b73ffffffffffffffffffffffffffffffffffffffff16611070611178565b73ffffffffffffffffffffffffffffffffffffffff16146110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90613c11565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6110fa611a8d565b73ffffffffffffffffffffffffffffffffffffffff16611118611178565b73ffffffffffffffffffffffffffffffffffffffff161461116e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116590613c11565b60405180910390fd5b611176611ff0565b565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111aa611a8d565b73ffffffffffffffffffffffffffffffffffffffff166111c8611178565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590613c11565b60405180910390fd5b80600a8190555050565b60606001805461123790614037565b80601f016020809104026020016040519081016040528092919081815260200182805461126390614037565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1681565b600a5481565b6112dc33612093565b1561131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390613d31565b60405180910390fd5b80600a5461132a9190613ef3565b34101561136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390613b11565b60405180910390fd5b600b60009054906101000a900460ff1661151d5760011515600b60019054906101000a900460ff161515146113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd90613c71565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811161145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145490613d11565b60405180910390fd5b808211156114a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149790613cf1565b60405180910390fd5b60005b828110156114c7576114b4336120a6565b80806114bf90614069565b9150506114a3565b5081816114d49190613f4d565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505061158a565b600a811115611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890613b91565b60405180910390fd5b60005b8181101561158857611575336120a6565b808061158090614069565b915050611564565b505b50565b611595611a8d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa90613ab1565b60405180910390fd5b8060056000611610611a8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116bd611a8d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161170291906139d4565b60405180910390a35050565b61171f611719611a8d565b83611b4e565b61175e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175590613cd1565b60405180910390fd5b61176a84848484612113565b50505050565b600b60019054906101000a900460ff1681565b606061178e8261216f565b9050919050565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d6020528060005260406000206000915090505481565b61184f611a8d565b73ffffffffffffffffffffffffffffffffffffffff1661186d611178565b73ffffffffffffffffffffffffffffffffffffffff16146118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba90613c11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90613a51565b60405180910390fd5b61193c81611f2a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a0a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a1a5750611a19826122c1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b0883610ca6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b5982611a21565b611b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8f90613ad1565b60405180910390fd5b6000611ba383610ca6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c1257508373ffffffffffffffffffffffffffffffffffffffff16611bfa846107dc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c235750611c22818561179b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c4c82610ca6565b73ffffffffffffffffffffffffffffffffffffffff1614611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9990613c31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0990613a91565b60405180910390fd5b611d1d83838361232b565b611d28600082611a95565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d789190613f4d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dcf9190613e6c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611e90610c8f565b611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec690613a11565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f13611a8d565b604051611f20919061396d565b60405180910390a1565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ff8610c8f565b15612038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202f90613af1565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861207c611a8d565b604051612089919061396d565b60405180910390a1565b600080823b905060008111915050919050565b6009546120b36008612383565b106120f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ea90613cb1565b60405180910390fd5b6120fd6008612391565b6121108161210b6008612383565b6123a7565b50565b61211e848484611c2c565b61212a848484846123c5565b612169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216090613a31565b60405180910390fd5b50505050565b606061217a82611a21565b6121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b090613bd1565b60405180910390fd5b60006006600084815260200190815260200160002080546121d990614037565b80601f016020809104026020016040519081016040528092919081815260200182805461220590614037565b80156122525780601f1061222757610100808354040283529160200191612252565b820191906000526020600020905b81548152906001019060200180831161223557829003601f168201915b50505050509050600061226361255c565b90506000815114156122795781925050506122bc565b6000825111156122ae578082604051602001612296929190613949565b604051602081830303815290604052925050506122bc565b6122b7846125ee565b925050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612333610c8f565b15612373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236a90613af1565b60405180910390fd5b61237e838383612695565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6123c182826040518060200160405280600081525061269a565b5050565b60006123e68473ffffffffffffffffffffffffffffffffffffffff16612093565b1561254f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261240f611a8d565b8786866040518563ffffffff1660e01b81526004016124319493929190613988565b602060405180830381600087803b15801561244b57600080fd5b505af192505050801561247c57506040513d601f19601f820116820180604052508101906124799190612f06565b60015b6124ff573d80600081146124ac576040519150601f19603f3d011682016040523d82523d6000602084013e6124b1565b606091505b506000815114156124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee90613a31565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612554565b600190505b949350505050565b6060600c805461256b90614037565b80601f016020809104026020016040519081016040528092919081815260200182805461259790614037565b80156125e45780601f106125b9576101008083540402835291602001916125e4565b820191906000526020600020905b8154815290600101906020018083116125c757829003601f168201915b5050505050905090565b60606125f982611a21565b612638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262f90613c51565b60405180910390fd5b600061264261255c565b90506000815111612662576040518060200160405280600081525061268d565b8061266c846126f5565b60405160200161267d929190613949565b6040516020818303038152906040525b915050919050565b505050565b6126a483836128a2565b6126b160008484846123c5565b6126f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e790613a31565b60405180910390fd5b505050565b6060600082141561273d576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061289d565b600082905060005b6000821461276f57808061275890614069565b915050600a826127689190613ec2565b9150612745565b60008167ffffffffffffffff8111156127b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127e35781602001600182028036833780820191505090505b5090505b60008514612896576001826127fc9190613f4d565b9150600a8561280b91906140b2565b60306128179190613e6c565b60f81b818381518110612853577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561288f9190613ec2565b94506127e7565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290990613bb1565b60405180910390fd5b61291b81611a21565b1561295b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295290613a71565b60405180910390fd5b6129676000838361232b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129b79190613e6c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612a7c90614037565b90600052602060002090601f016020900481019282612a9e5760008555612ae5565b82601f10612ab757805160ff1916838001178555612ae5565b82800160010185558215612ae5579182015b82811115612ae4578251825591602001919060010190612ac9565b5b509050612af29190612af6565b5090565b5b80821115612b0f576000816000905550600101612af7565b5090565b6000612b26612b2184613d9d565b613d6c565b90508083825260208201905082856020860282011115612b4557600080fd5b60005b85811015612b755781612b5b8882612bfb565b845260208401935060208301925050600181019050612b48565b5050509392505050565b6000612b92612b8d84613dc9565b613d6c565b905082815260208101848484011115612baa57600080fd5b612bb5848285613ff5565b509392505050565b6000612bd0612bcb84613df9565b613d6c565b905082815260208101848484011115612be857600080fd5b612bf3848285613ff5565b509392505050565b600081359050612c0a816141b0565b92915050565b600082601f830112612c2157600080fd5b8135612c31848260208601612b13565b91505092915050565b600081359050612c49816141c7565b92915050565b600081359050612c5e816141de565b92915050565b600081519050612c73816141de565b92915050565b600082601f830112612c8a57600080fd5b8135612c9a848260208601612b7f565b91505092915050565b600082601f830112612cb457600080fd5b8135612cc4848260208601612bbd565b91505092915050565b600081359050612cdc816141f5565b92915050565b600060208284031215612cf457600080fd5b6000612d0284828501612bfb565b91505092915050565b60008060408385031215612d1e57600080fd5b6000612d2c85828601612bfb565b9250506020612d3d85828601612bfb565b9150509250929050565b600080600060608486031215612d5c57600080fd5b6000612d6a86828701612bfb565b9350506020612d7b86828701612bfb565b9250506040612d8c86828701612ccd565b9150509250925092565b60008060008060808587031215612dac57600080fd5b6000612dba87828801612bfb565b9450506020612dcb87828801612bfb565b9350506040612ddc87828801612ccd565b925050606085013567ffffffffffffffff811115612df957600080fd5b612e0587828801612c79565b91505092959194509250565b60008060408385031215612e2457600080fd5b6000612e3285828601612bfb565b9250506020612e4385828601612c3a565b9150509250929050565b60008060408385031215612e6057600080fd5b6000612e6e85828601612bfb565b9250506020612e7f85828601612ccd565b9150509250929050565b60008060408385031215612e9c57600080fd5b600083013567ffffffffffffffff811115612eb657600080fd5b612ec285828601612c10565b9250506020612ed385828601612ccd565b9150509250929050565b600060208284031215612eef57600080fd5b6000612efd84828501612c4f565b91505092915050565b600060208284031215612f1857600080fd5b6000612f2684828501612c64565b91505092915050565b600060208284031215612f4157600080fd5b600082013567ffffffffffffffff811115612f5b57600080fd5b612f6784828501612ca3565b91505092915050565b600060208284031215612f8257600080fd5b6000612f9084828501612ccd565b91505092915050565b612fa281613f81565b82525050565b612fb181613f93565b82525050565b6000612fc282613e29565b612fcc8185613e3f565b9350612fdc818560208601614004565b612fe58161419f565b840191505092915050565b6000612ffb82613e34565b6130058185613e50565b9350613015818560208601614004565b61301e8161419f565b840191505092915050565b600061303482613e34565b61303e8185613e61565b935061304e818560208601614004565b80840191505092915050565b6000613067601483613e50565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006130a7603283613e50565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061310d602683613e50565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613173601c83613e50565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006131b3602483613e50565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613219601983613e50565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613259602c83613e50565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132bf601083613e50565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006132ff601383613e50565b91507f4e6f7420656e6f756768207761732070616964000000000000000000000000006000830152602082019050919050565b600061333f603883613e50565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006133a5602a83613e50565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061340b602983613e50565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613471601f83613e50565b91507f4f6e6c7920313020706572207472616e73616374696f6e20616c6c6f776564006000830152602082019050919050565b60006134b1602083613e50565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006134f1603183613e50565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000613557602c83613e50565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006135bd602083613e50565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006135fd602983613e50565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613663602f83613e50565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006136c9601383613e50565b91507f50726573616c65206973206e6f74206f70656e000000000000000000000000006000830152602082019050919050565b6000613709602183613e50565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061376f600f83613e50565b91507f537570706c79206465706c6574656400000000000000000000000000000000006000830152602082019050919050565b60006137af603183613e50565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613815604083613e50565b91507f546869732061646472657373206973206e6f7420616c6c6f77656420746f206d60008301527f696e742074686174206d616e7920647572696e67207468652070726573616c656020830152604082019050919050565b600061387b602f83613e50565b91507f546869732061646472657373206973206e6f742077686974656c69737465642060008301527f666f72207468652070726573616c6500000000000000000000000000000000006020830152604082019050919050565b60006138e1602183613e50565b91507f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e60008301527f74000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61394381613feb565b82525050565b60006139558285613029565b91506139618284613029565b91508190509392505050565b60006020820190506139826000830184612f99565b92915050565b600060808201905061399d6000830187612f99565b6139aa6020830186612f99565b6139b7604083018561393a565b81810360608301526139c98184612fb7565b905095945050505050565b60006020820190506139e96000830184612fa8565b92915050565b60006020820190508181036000830152613a098184612ff0565b905092915050565b60006020820190508181036000830152613a2a8161305a565b9050919050565b60006020820190508181036000830152613a4a8161309a565b9050919050565b60006020820190508181036000830152613a6a81613100565b9050919050565b60006020820190508181036000830152613a8a81613166565b9050919050565b60006020820190508181036000830152613aaa816131a6565b9050919050565b60006020820190508181036000830152613aca8161320c565b9050919050565b60006020820190508181036000830152613aea8161324c565b9050919050565b60006020820190508181036000830152613b0a816132b2565b9050919050565b60006020820190508181036000830152613b2a816132f2565b9050919050565b60006020820190508181036000830152613b4a81613332565b9050919050565b60006020820190508181036000830152613b6a81613398565b9050919050565b60006020820190508181036000830152613b8a816133fe565b9050919050565b60006020820190508181036000830152613baa81613464565b9050919050565b60006020820190508181036000830152613bca816134a4565b9050919050565b60006020820190508181036000830152613bea816134e4565b9050919050565b60006020820190508181036000830152613c0a8161354a565b9050919050565b60006020820190508181036000830152613c2a816135b0565b9050919050565b60006020820190508181036000830152613c4a816135f0565b9050919050565b60006020820190508181036000830152613c6a81613656565b9050919050565b60006020820190508181036000830152613c8a816136bc565b9050919050565b60006020820190508181036000830152613caa816136fc565b9050919050565b60006020820190508181036000830152613cca81613762565b9050919050565b60006020820190508181036000830152613cea816137a2565b9050919050565b60006020820190508181036000830152613d0a81613808565b9050919050565b60006020820190508181036000830152613d2a8161386e565b9050919050565b60006020820190508181036000830152613d4a816138d4565b9050919050565b6000602082019050613d66600083018461393a565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613d9357613d92614170565b5b8060405250919050565b600067ffffffffffffffff821115613db857613db7614170565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613de457613de3614170565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613e1457613e13614170565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e7782613feb565b9150613e8283613feb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613eb757613eb66140e3565b5b828201905092915050565b6000613ecd82613feb565b9150613ed883613feb565b925082613ee857613ee7614112565b5b828204905092915050565b6000613efe82613feb565b9150613f0983613feb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f4257613f416140e3565b5b828202905092915050565b6000613f5882613feb565b9150613f6383613feb565b925082821015613f7657613f756140e3565b5b828203905092915050565b6000613f8c82613fcb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614022578082015181840152602081019050614007565b83811115614031576000848401525b50505050565b6000600282049050600182168061404f57607f821691505b6020821081141561406357614062614141565b5b50919050565b600061407482613feb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140a7576140a66140e3565b5b600182019050919050565b60006140bd82613feb565b91506140c883613feb565b9250826140d8576140d7614112565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6141b981613f81565b81146141c457600080fd5b50565b6141d081613f93565b81146141db57600080fd5b50565b6141e781613f9f565b81146141f257600080fd5b50565b6141fe81613feb565b811461420957600080fd5b5056fea26469706673582212200dfddccab574f295b16d1201e85d22b21333eb8cd8bbfdcb07d461b4b177723564736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101e75760003560e01c80637d8966e411610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb011461066a578063e985e9c514610695578063eb73900b146106d2578063f2fde38b1461070f576101ee565b8063a22cb465146105b0578063b88d4fde146105d9578063bee6348a14610602578063c87b56dd1461062d576101ee565b806395d89b41116100d157806395d89b411461051357806399288dbb1461053e578063a035b1fe14610569578063a0712d6814610594576101ee565b80637d8966e4146104915780638456cb59146104a85780638da5cb5b146104bf57806391b7f5ed146104ea576101ee565b806342842e0e1161017a5780636b6384db116101495780636b6384db146103e95780636c0360eb1461041257806370a082311461043d578063715018a61461047a576101ee565b806342842e0e1461032f57806355f804b3146103585780635c975abb146103815780636352211e146103ac576101ee565b806323b872dd116101b657806323b872dd146102c157806334393743146102ea5780633ccfd60b146103015780633f4ba83a14610318576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612edd565b610738565b60405161022791906139d4565b60405180910390f35b34801561023c57600080fd5b5061024561074a565b60405161025291906139ef565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612f70565b6107dc565b60405161028f919061396d565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612e4d565b610861565b005b3480156102cd57600080fd5b506102e860048036038101906102e39190612d47565b610979565b005b3480156102f657600080fd5b506102ff6109d9565b005b34801561030d57600080fd5b50610316610a81565b005b34801561032457600080fd5b5061032d610b53565b005b34801561033b57600080fd5b5061035660048036038101906103519190612d47565b610bd9565b005b34801561036457600080fd5b5061037f600480360381019061037a9190612f2f565b610bf9565b005b34801561038d57600080fd5b50610396610c8f565b6040516103a391906139d4565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce9190612f70565b610ca6565b6040516103e0919061396d565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190612e89565b610d58565b005b34801561041e57600080fd5b50610427610e7c565b60405161043491906139ef565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f9190612ce2565b610f0a565b6040516104719190613d51565b60405180910390f35b34801561048657600080fd5b5061048f610fc2565b005b34801561049d57600080fd5b506104a661104a565b005b3480156104b457600080fd5b506104bd6110f2565b005b3480156104cb57600080fd5b506104d4611178565b6040516104e1919061396d565b60405180910390f35b3480156104f657600080fd5b50610511600480360381019061050c9190612f70565b6111a2565b005b34801561051f57600080fd5b50610528611228565b60405161053591906139ef565b60405180910390f35b34801561054a57600080fd5b506105536112ba565b60405161056091906139d4565b60405180910390f35b34801561057557600080fd5b5061057e6112cd565b60405161058b9190613d51565b60405180910390f35b6105ae60048036038101906105a99190612f70565b6112d3565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190612e11565b61158d565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612d96565b61170e565b005b34801561060e57600080fd5b50610617611770565b60405161062491906139d4565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190612f70565b611783565b60405161066191906139ef565b60405180910390f35b34801561067657600080fd5b5061067f611795565b60405161068c9190613d51565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612d0b565b61179b565b6040516106c991906139d4565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f49190612ce2565b61182f565b6040516107069190613d51565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190612ce2565b611847565b005b60006107438261193f565b9050919050565b60606000805461075990614037565b80601f016020809104026020016040519081016040528092919081815260200182805461078590614037565b80156107d25780601f106107a7576101008083540402835291602001916107d2565b820191906000526020600020905b8154815290600101906020018083116107b557829003601f168201915b5050505050905090565b60006107e782611a21565b610826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081d90613bf1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086c82610ca6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d490613c91565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc611a8d565b73ffffffffffffffffffffffffffffffffffffffff16148061092b575061092a81610925611a8d565b61179b565b5b61096a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096190613b31565b60405180910390fd5b6109748383611a95565b505050565b61098a610984611a8d565b82611b4e565b6109c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c090613cd1565b60405180910390fd5b6109d4838383611c2c565b505050565b6109e1611a8d565b73ffffffffffffffffffffffffffffffffffffffff166109ff611178565b73ffffffffffffffffffffffffffffffffffffffff1614610a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4c90613c11565b60405180910390fd5b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b610a89611a8d565b73ffffffffffffffffffffffffffffffffffffffff16610aa7611178565b73ffffffffffffffffffffffffffffffffffffffff1614610afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af490613c11565b60405180910390fd5b6000479050610b0a611178565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b4f573d6000803e3d6000fd5b5050565b610b5b611a8d565b73ffffffffffffffffffffffffffffffffffffffff16610b79611178565b73ffffffffffffffffffffffffffffffffffffffff1614610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc690613c11565b60405180910390fd5b610bd7611e88565b565b610bf48383836040518060200160405280600081525061170e565b505050565b610c01611a8d565b73ffffffffffffffffffffffffffffffffffffffff16610c1f611178565b73ffffffffffffffffffffffffffffffffffffffff1614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90613c11565b60405180910390fd5b80600c9080519060200190610c8b929190612a70565b5050565b6000600760009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690613b71565b60405180910390fd5b80915050919050565b610d60611a8d565b73ffffffffffffffffffffffffffffffffffffffff16610d7e611178565b73ffffffffffffffffffffffffffffffffffffffff1614610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90613c11565b60405180910390fd5b60005b8251811015610e775781600d6000858481518110610e1e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610e6f90614069565b915050610dd7565b505050565b600c8054610e8990614037565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb590614037565b8015610f025780601f10610ed757610100808354040283529160200191610f02565b820191906000526020600020905b815481529060010190602001808311610ee557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290613b51565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fca611a8d565b73ffffffffffffffffffffffffffffffffffffffff16610fe8611178565b73ffffffffffffffffffffffffffffffffffffffff161461103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590613c11565b60405180910390fd5b6110486000611f2a565b565b611052611a8d565b73ffffffffffffffffffffffffffffffffffffffff16611070611178565b73ffffffffffffffffffffffffffffffffffffffff16146110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90613c11565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6110fa611a8d565b73ffffffffffffffffffffffffffffffffffffffff16611118611178565b73ffffffffffffffffffffffffffffffffffffffff161461116e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116590613c11565b60405180910390fd5b611176611ff0565b565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111aa611a8d565b73ffffffffffffffffffffffffffffffffffffffff166111c8611178565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590613c11565b60405180910390fd5b80600a8190555050565b60606001805461123790614037565b80601f016020809104026020016040519081016040528092919081815260200182805461126390614037565b80156112b05780601f10611285576101008083540402835291602001916112b0565b820191906000526020600020905b81548152906001019060200180831161129357829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1681565b600a5481565b6112dc33612093565b1561131c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131390613d31565b60405180910390fd5b80600a5461132a9190613ef3565b34101561136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390613b11565b60405180910390fd5b600b60009054906101000a900460ff1661151d5760011515600b60019054906101000a900460ff161515146113d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cd90613c71565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811161145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145490613d11565b60405180910390fd5b808211156114a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149790613cf1565b60405180910390fd5b60005b828110156114c7576114b4336120a6565b80806114bf90614069565b9150506114a3565b5081816114d49190613f4d565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505061158a565b600a811115611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890613b91565b60405180910390fd5b60005b8181101561158857611575336120a6565b808061158090614069565b915050611564565b505b50565b611595611a8d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa90613ab1565b60405180910390fd5b8060056000611610611a8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116bd611a8d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161170291906139d4565b60405180910390a35050565b61171f611719611a8d565b83611b4e565b61175e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175590613cd1565b60405180910390fd5b61176a84848484612113565b50505050565b600b60019054906101000a900460ff1681565b606061178e8261216f565b9050919050565b60095481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d6020528060005260406000206000915090505481565b61184f611a8d565b73ffffffffffffffffffffffffffffffffffffffff1661186d611178565b73ffffffffffffffffffffffffffffffffffffffff16146118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba90613c11565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192a90613a51565b60405180910390fd5b61193c81611f2a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a0a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a1a5750611a19826122c1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b0883610ca6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b5982611a21565b611b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8f90613ad1565b60405180910390fd5b6000611ba383610ca6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c1257508373ffffffffffffffffffffffffffffffffffffffff16611bfa846107dc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c235750611c22818561179b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c4c82610ca6565b73ffffffffffffffffffffffffffffffffffffffff1614611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9990613c31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0990613a91565b60405180910390fd5b611d1d83838361232b565b611d28600082611a95565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d789190613f4d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dcf9190613e6c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611e90610c8f565b611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec690613a11565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f13611a8d565b604051611f20919061396d565b60405180910390a1565b6000600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611ff8610c8f565b15612038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202f90613af1565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861207c611a8d565b604051612089919061396d565b60405180910390a1565b600080823b905060008111915050919050565b6009546120b36008612383565b106120f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ea90613cb1565b60405180910390fd5b6120fd6008612391565b6121108161210b6008612383565b6123a7565b50565b61211e848484611c2c565b61212a848484846123c5565b612169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216090613a31565b60405180910390fd5b50505050565b606061217a82611a21565b6121b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b090613bd1565b60405180910390fd5b60006006600084815260200190815260200160002080546121d990614037565b80601f016020809104026020016040519081016040528092919081815260200182805461220590614037565b80156122525780601f1061222757610100808354040283529160200191612252565b820191906000526020600020905b81548152906001019060200180831161223557829003601f168201915b50505050509050600061226361255c565b90506000815114156122795781925050506122bc565b6000825111156122ae578082604051602001612296929190613949565b604051602081830303815290604052925050506122bc565b6122b7846125ee565b925050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612333610c8f565b15612373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236a90613af1565b60405180910390fd5b61237e838383612695565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b6123c182826040518060200160405280600081525061269a565b5050565b60006123e68473ffffffffffffffffffffffffffffffffffffffff16612093565b1561254f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261240f611a8d565b8786866040518563ffffffff1660e01b81526004016124319493929190613988565b602060405180830381600087803b15801561244b57600080fd5b505af192505050801561247c57506040513d601f19601f820116820180604052508101906124799190612f06565b60015b6124ff573d80600081146124ac576040519150601f19603f3d011682016040523d82523d6000602084013e6124b1565b606091505b506000815114156124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee90613a31565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612554565b600190505b949350505050565b6060600c805461256b90614037565b80601f016020809104026020016040519081016040528092919081815260200182805461259790614037565b80156125e45780601f106125b9576101008083540402835291602001916125e4565b820191906000526020600020905b8154815290600101906020018083116125c757829003601f168201915b5050505050905090565b60606125f982611a21565b612638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262f90613c51565b60405180910390fd5b600061264261255c565b90506000815111612662576040518060200160405280600081525061268d565b8061266c846126f5565b60405160200161267d929190613949565b6040516020818303038152906040525b915050919050565b505050565b6126a483836128a2565b6126b160008484846123c5565b6126f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e790613a31565b60405180910390fd5b505050565b6060600082141561273d576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061289d565b600082905060005b6000821461276f57808061275890614069565b915050600a826127689190613ec2565b9150612745565b60008167ffffffffffffffff8111156127b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127e35781602001600182028036833780820191505090505b5090505b60008514612896576001826127fc9190613f4d565b9150600a8561280b91906140b2565b60306128179190613e6c565b60f81b818381518110612853577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561288f9190613ec2565b94506127e7565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290990613bb1565b60405180910390fd5b61291b81611a21565b1561295b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295290613a71565b60405180910390fd5b6129676000838361232b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129b79190613e6c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612a7c90614037565b90600052602060002090601f016020900481019282612a9e5760008555612ae5565b82601f10612ab757805160ff1916838001178555612ae5565b82800160010185558215612ae5579182015b82811115612ae4578251825591602001919060010190612ac9565b5b509050612af29190612af6565b5090565b5b80821115612b0f576000816000905550600101612af7565b5090565b6000612b26612b2184613d9d565b613d6c565b90508083825260208201905082856020860282011115612b4557600080fd5b60005b85811015612b755781612b5b8882612bfb565b845260208401935060208301925050600181019050612b48565b5050509392505050565b6000612b92612b8d84613dc9565b613d6c565b905082815260208101848484011115612baa57600080fd5b612bb5848285613ff5565b509392505050565b6000612bd0612bcb84613df9565b613d6c565b905082815260208101848484011115612be857600080fd5b612bf3848285613ff5565b509392505050565b600081359050612c0a816141b0565b92915050565b600082601f830112612c2157600080fd5b8135612c31848260208601612b13565b91505092915050565b600081359050612c49816141c7565b92915050565b600081359050612c5e816141de565b92915050565b600081519050612c73816141de565b92915050565b600082601f830112612c8a57600080fd5b8135612c9a848260208601612b7f565b91505092915050565b600082601f830112612cb457600080fd5b8135612cc4848260208601612bbd565b91505092915050565b600081359050612cdc816141f5565b92915050565b600060208284031215612cf457600080fd5b6000612d0284828501612bfb565b91505092915050565b60008060408385031215612d1e57600080fd5b6000612d2c85828601612bfb565b9250506020612d3d85828601612bfb565b9150509250929050565b600080600060608486031215612d5c57600080fd5b6000612d6a86828701612bfb565b9350506020612d7b86828701612bfb565b9250506040612d8c86828701612ccd565b9150509250925092565b60008060008060808587031215612dac57600080fd5b6000612dba87828801612bfb565b9450506020612dcb87828801612bfb565b9350506040612ddc87828801612ccd565b925050606085013567ffffffffffffffff811115612df957600080fd5b612e0587828801612c79565b91505092959194509250565b60008060408385031215612e2457600080fd5b6000612e3285828601612bfb565b9250506020612e4385828601612c3a565b9150509250929050565b60008060408385031215612e6057600080fd5b6000612e6e85828601612bfb565b9250506020612e7f85828601612ccd565b9150509250929050565b60008060408385031215612e9c57600080fd5b600083013567ffffffffffffffff811115612eb657600080fd5b612ec285828601612c10565b9250506020612ed385828601612ccd565b9150509250929050565b600060208284031215612eef57600080fd5b6000612efd84828501612c4f565b91505092915050565b600060208284031215612f1857600080fd5b6000612f2684828501612c64565b91505092915050565b600060208284031215612f4157600080fd5b600082013567ffffffffffffffff811115612f5b57600080fd5b612f6784828501612ca3565b91505092915050565b600060208284031215612f8257600080fd5b6000612f9084828501612ccd565b91505092915050565b612fa281613f81565b82525050565b612fb181613f93565b82525050565b6000612fc282613e29565b612fcc8185613e3f565b9350612fdc818560208601614004565b612fe58161419f565b840191505092915050565b6000612ffb82613e34565b6130058185613e50565b9350613015818560208601614004565b61301e8161419f565b840191505092915050565b600061303482613e34565b61303e8185613e61565b935061304e818560208601614004565b80840191505092915050565b6000613067601483613e50565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006130a7603283613e50565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061310d602683613e50565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613173601c83613e50565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006131b3602483613e50565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613219601983613e50565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613259602c83613e50565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132bf601083613e50565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006132ff601383613e50565b91507f4e6f7420656e6f756768207761732070616964000000000000000000000000006000830152602082019050919050565b600061333f603883613e50565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006133a5602a83613e50565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061340b602983613e50565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613471601f83613e50565b91507f4f6e6c7920313020706572207472616e73616374696f6e20616c6c6f776564006000830152602082019050919050565b60006134b1602083613e50565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006134f1603183613e50565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b6000613557602c83613e50565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006135bd602083613e50565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006135fd602983613e50565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613663602f83613e50565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006136c9601383613e50565b91507f50726573616c65206973206e6f74206f70656e000000000000000000000000006000830152602082019050919050565b6000613709602183613e50565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061376f600f83613e50565b91507f537570706c79206465706c6574656400000000000000000000000000000000006000830152602082019050919050565b60006137af603183613e50565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613815604083613e50565b91507f546869732061646472657373206973206e6f7420616c6c6f77656420746f206d60008301527f696e742074686174206d616e7920647572696e67207468652070726573616c656020830152604082019050919050565b600061387b602f83613e50565b91507f546869732061646472657373206973206e6f742077686974656c69737465642060008301527f666f72207468652070726573616c6500000000000000000000000000000000006020830152604082019050919050565b60006138e1602183613e50565b91507f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e60008301527f74000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61394381613feb565b82525050565b60006139558285613029565b91506139618284613029565b91508190509392505050565b60006020820190506139826000830184612f99565b92915050565b600060808201905061399d6000830187612f99565b6139aa6020830186612f99565b6139b7604083018561393a565b81810360608301526139c98184612fb7565b905095945050505050565b60006020820190506139e96000830184612fa8565b92915050565b60006020820190508181036000830152613a098184612ff0565b905092915050565b60006020820190508181036000830152613a2a8161305a565b9050919050565b60006020820190508181036000830152613a4a8161309a565b9050919050565b60006020820190508181036000830152613a6a81613100565b9050919050565b60006020820190508181036000830152613a8a81613166565b9050919050565b60006020820190508181036000830152613aaa816131a6565b9050919050565b60006020820190508181036000830152613aca8161320c565b9050919050565b60006020820190508181036000830152613aea8161324c565b9050919050565b60006020820190508181036000830152613b0a816132b2565b9050919050565b60006020820190508181036000830152613b2a816132f2565b9050919050565b60006020820190508181036000830152613b4a81613332565b9050919050565b60006020820190508181036000830152613b6a81613398565b9050919050565b60006020820190508181036000830152613b8a816133fe565b9050919050565b60006020820190508181036000830152613baa81613464565b9050919050565b60006020820190508181036000830152613bca816134a4565b9050919050565b60006020820190508181036000830152613bea816134e4565b9050919050565b60006020820190508181036000830152613c0a8161354a565b9050919050565b60006020820190508181036000830152613c2a816135b0565b9050919050565b60006020820190508181036000830152613c4a816135f0565b9050919050565b60006020820190508181036000830152613c6a81613656565b9050919050565b60006020820190508181036000830152613c8a816136bc565b9050919050565b60006020820190508181036000830152613caa816136fc565b9050919050565b60006020820190508181036000830152613cca81613762565b9050919050565b60006020820190508181036000830152613cea816137a2565b9050919050565b60006020820190508181036000830152613d0a81613808565b9050919050565b60006020820190508181036000830152613d2a8161386e565b9050919050565b60006020820190508181036000830152613d4a816138d4565b9050919050565b6000602082019050613d66600083018461393a565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613d9357613d92614170565b5b8060405250919050565b600067ffffffffffffffff821115613db857613db7614170565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613de457613de3614170565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613e1457613e13614170565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e7782613feb565b9150613e8283613feb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613eb757613eb66140e3565b5b828201905092915050565b6000613ecd82613feb565b9150613ed883613feb565b925082613ee857613ee7614112565b5b828204905092915050565b6000613efe82613feb565b9150613f0983613feb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f4257613f416140e3565b5b828202905092915050565b6000613f5882613feb565b9150613f6383613feb565b925082821015613f7657613f756140e3565b5b828203905092915050565b6000613f8c82613fcb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614022578082015181840152602081019050614007565b83811115614031576000848401525b50505050565b6000600282049050600182168061404f57607f821691505b6020821081141561406357614062614141565b5b50919050565b600061407482613feb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140a7576140a66140e3565b5b600182019050919050565b60006140bd82613feb565b91506140c883613feb565b9250826140d8576140d7614112565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6141b981613f81565b81146141c457600080fd5b50565b6141d081613f93565b81146141db57600080fd5b50565b6141e781613f9f565b81146141f257600080fd5b50565b6141fe81613feb565b811461420957600080fd5b5056fea26469706673582212200dfddccab574f295b16d1201e85d22b21333eb8cd8bbfdcb07d461b4b177723564736f6c63430008000033

Deployed Bytecode Sourcemap

41598:3349:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44791:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26128:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27687:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27210:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28577:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43807:87;;;;;;;;;;;;;:::i;:::-;;43431:140;;;;;;;;;;;;;:::i;:::-;;43648:65;;;;;;;;;;;;;:::i;:::-;;28987:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43902:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6261:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25822:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43256:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41974:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25552:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4558:94;;;;;;;;;;;;;:::i;:::-;;43721:78;;;;;;;;;;;;;:::i;:::-;;43579:61;;;;;;;;;;;;;:::i;:::-;;3907:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44012:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26297:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41901:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41841:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42160:864;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27980:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29243:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41936:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44628:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41804:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28346:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42004:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4807:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44791:153;44876:4;44900:36;44924:11;44900:23;:36::i;:::-;44893:43;;44791:153;;;:::o;26128:100::-;26182:13;26215:5;26208:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26128:100;:::o;27687:221::-;27763:7;27791:16;27799:7;27791;:16::i;:::-;27783:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27876:15;:24;27892:7;27876:24;;;;;;;;;;;;;;;;;;;;;27869:31;;27687:221;;;:::o;27210:411::-;27291:13;27307:23;27322:7;27307:14;:23::i;:::-;27291:39;;27355:5;27349:11;;:2;:11;;;;27341:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27449:5;27433:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27458:37;27475:5;27482:12;:10;:12::i;:::-;27458:16;:37::i;:::-;27433:62;27411:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27592:21;27601:2;27605:7;27592:8;:21::i;:::-;27210:411;;;:::o;28577:339::-;28772:41;28791:12;:10;:12::i;:::-;28805:7;28772:18;:41::i;:::-;28764:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28880:28;28890:4;28896:2;28900:7;28880:9;:28::i;:::-;28577:339;;;:::o;43807:87::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43875:11:::1;;;;;;;;;;;43874:12;43860:11;;:26;;;;;;;;;;;;;;;;;;43807:87::o:0;43431:140::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43479:15:::1;43497:21;43479:39;;43537:7;:5;:7::i;:::-;43529:25;;:34;43555:7;43529:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;4198:1;43431:140::o:0;43648:65::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43695:10:::1;:8;:10::i;:::-;43648:65::o:0;28987:185::-;29125:39;29142:4;29148:2;29152:7;29125:39;;;;;;;;;;;;:16;:39::i;:::-;28987:185;;;:::o;43902:102::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43986:10:::1;43976:7;:20;;;;;;;;;;;;:::i;:::-;;43902:102:::0;:::o;6261:86::-;6308:4;6332:7;;;;;;;;;;;6325:14;;6261:86;:::o;25822:239::-;25894:7;25914:13;25930:7;:16;25938:7;25930:16;;;;;;;;;;;;;;;;;;;;;25914:32;;25982:1;25965:19;;:5;:19;;;;25957:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26048:5;26041:12;;;25822:239;;;:::o;43256:167::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43353:9:::1;43348:67;43372:3;:10;43368:1;:14;43348:67;;;43409:6;43389:9;:17;43399:3;43403:1;43399:6;;;;;;;;;;;;;;;;;;;;;;43389:17;;;;;;;;;;;;;;;:26;;;;43384:3;;;;;:::i;:::-;;;;43348:67;;;;43256:167:::0;;:::o;41974:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25552:208::-;25624:7;25669:1;25652:19;;:5;:19;;;;25644:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25736:9;:16;25746:5;25736:16;;;;;;;;;;;;;;;;25729:23;;25552:208;;;:::o;4558:94::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4623:21:::1;4641:1;4623:9;:21::i;:::-;4558:94::o:0;43721:78::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43783:8:::1;;;;;;;;;;;43782:9;43771:8;;:20;;;;;;;;;;;;;;;;;;43721:78::o:0;43579:61::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43624:8:::1;:6;:8::i;:::-;43579:61::o:0;3907:87::-;3953:7;3980:6;;;;;;;;;;;3973:13;;3907:87;:::o;44012:88::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44084:8:::1;44076:5;:16;;;;44012:88:::0;:::o;26297:104::-;26353:13;26386:7;26379:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26297:104;:::o;41901:28::-;;;;;;;;;;;;;:::o;41841:41::-;;;;:::o;42160:864::-;42225:30;42244:10;42225:18;:30::i;:::-;42224:31;42216:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;42333:6;42325:5;;:14;;;;:::i;:::-;42312:9;:27;;42304:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;42381:8;;;;;;;;;;;42376:500;;42429:4;42414:19;;:11;;;;;;;;;;;:19;;;42406:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;42472:11;42486:9;:21;42496:10;42486:21;;;;;;;;;;;;;;;;42472:35;;42536:1;42530:3;:7;42522:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;42622:3;42612:6;:13;;42604:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;42714:9;42709:79;42733:6;42729:1;:10;42709:79;;;42764:24;42777:10;42764:12;:24::i;:::-;42741:3;;;;;:::i;:::-;;;;42709:79;;;;42837:6;42831:3;:12;;;;:::i;:::-;42807:9;:21;42817:10;42807:21;;;;;;;;;;;;;;;:36;;;;42858:7;;;42376:500;42906:2;42896:6;:12;;42888:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;42960:9;42955:61;42979:6;42975:1;:10;42955:61;;;42992:24;43005:10;42992:12;:24::i;:::-;42987:3;;;;;:::i;:::-;;;;42955:61;;;;42160:864;;:::o;27980:295::-;28095:12;:10;:12::i;:::-;28083:24;;:8;:24;;;;28075:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;28195:8;28150:18;:32;28169:12;:10;:12::i;:::-;28150:32;;;;;;;;;;;;;;;:42;28183:8;28150:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28248:8;28219:48;;28234:12;:10;:12::i;:::-;28219:48;;;28258:8;28219:48;;;;;;:::i;:::-;;;;;;;;27980:295;;:::o;29243:328::-;29418:41;29437:12;:10;:12::i;:::-;29451:7;29418:18;:41::i;:::-;29410:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29524:39;29538:4;29544:2;29548:7;29557:5;29524:13;:39::i;:::-;29243:328;;;;:::o;41936:31::-;;;;;;;;;;;;;:::o;44628:155::-;44719:13;44752:23;44767:7;44752:14;:23::i;:::-;44745:30;;44628:155;;;:::o;41804:30::-;;;;:::o;28346:164::-;28443:4;28467:18;:25;28486:5;28467:25;;;;;;;;;;;;;;;:35;28493:8;28467:35;;;;;;;;;;;;;;;;;;;;;;;;;28460:42;;28346:164;;;;:::o;42004:44::-;;;;;;;;;;;;;;;;;:::o;4807:192::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4916:1:::1;4896:22;;:8;:22;;;;4888:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4972:19;4982:8;4972:9;:19::i;:::-;4807:192:::0;:::o;25183:305::-;25285:4;25337:25;25322:40;;;:11;:40;;;;:105;;;;25394:33;25379:48;;;:11;:48;;;;25322:105;:158;;;;25444:36;25468:11;25444:23;:36::i;:::-;25322:158;25302:178;;25183:305;;;:::o;31081:127::-;31146:4;31198:1;31170:30;;:7;:16;31178:7;31170:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31163:37;;31081:127;;;:::o;2695:98::-;2748:7;2775:10;2768:17;;2695:98;:::o;35063:174::-;35165:2;35138:15;:24;35154:7;35138:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35221:7;35217:2;35183:46;;35192:23;35207:7;35192:14;:23::i;:::-;35183:46;;;;;;;;;;;;35063:174;;:::o;31375:348::-;31468:4;31493:16;31501:7;31493;:16::i;:::-;31485:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31569:13;31585:23;31600:7;31585:14;:23::i;:::-;31569:39;;31638:5;31627:16;;:7;:16;;;:51;;;;31671:7;31647:31;;:20;31659:7;31647:11;:20::i;:::-;:31;;;31627:51;:87;;;;31682:32;31699:5;31706:7;31682:16;:32::i;:::-;31627:87;31619:96;;;31375:348;;;;:::o;34367:578::-;34526:4;34499:31;;:23;34514:7;34499:14;:23::i;:::-;:31;;;34491:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34609:1;34595:16;;:2;:16;;;;34587:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34665:39;34686:4;34692:2;34696:7;34665:20;:39::i;:::-;34769:29;34786:1;34790:7;34769:8;:29::i;:::-;34830:1;34811:9;:15;34821:4;34811:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34859:1;34842:9;:13;34852:2;34842:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34890:2;34871:7;:16;34879:7;34871:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34929:7;34925:2;34910:27;;34919:4;34910:27;;;;;;;;;;;;34367:578;;;:::o;7320:120::-;6864:8;:6;:8::i;:::-;6856:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;7389:5:::1;7379:7;;:15;;;;;;;;;;;;;;;;;;7410:22;7419:12;:10;:12::i;:::-;7410:22;;;;;;:::i;:::-;;;;;;;;7320:120::o:0;5007:173::-;5063:16;5082:6;;;;;;;;;;;5063:25;;5108:8;5099:6;;:17;;;;;;;;;;;;;;;;;;5163:8;5132:40;;5153:8;5132:40;;;;;;;;;;;;5007:173;;:::o;7061:118::-;6587:8;:6;:8::i;:::-;6586:9;6578:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;7131:4:::1;7121:7;;:14;;;;;;;;;;;;;;;;;;7151:20;7158:12;:10;:12::i;:::-;7151:20;;;;;;:::i;:::-;;;;;;;;7061:118::o:0;8213:387::-;8273:4;8481:12;8548:7;8536:20;8528:28;;8591:1;8584:4;:8;8577:15;;;8213:387;;;:::o;43032:216::-;43122:9;;43094:25;:15;:23;:25::i;:::-;:37;43086:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;43162:27;:15;:25;:27::i;:::-;43200:40;43210:2;43214:25;:15;:23;:25::i;:::-;43200:9;:40::i;:::-;43032:216;:::o;30453:315::-;30610:28;30620:4;30626:2;30630:7;30610:9;:28::i;:::-;30657:48;30680:4;30686:2;30690:7;30699:5;30657:22;:48::i;:::-;30649:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30453:315;;;;:::o;37736:679::-;37809:13;37843:16;37851:7;37843;:16::i;:::-;37835:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;37926:23;37952:10;:19;37963:7;37952:19;;;;;;;;;;;37926:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37982:18;38003:10;:8;:10::i;:::-;37982:31;;38111:1;38095:4;38089:18;:23;38085:72;;;38136:9;38129:16;;;;;;38085:72;38287:1;38267:9;38261:23;:27;38257:108;;;38336:4;38342:9;38319:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38305:48;;;;;;38257:108;38384:23;38399:7;38384:14;:23::i;:::-;38377:30;;;;37736:679;;;;:::o;18153:157::-;18238:4;18277:25;18262:40;;;:11;:40;;;;18255:47;;18153:157;;;:::o;44286:211::-;6587:8;:6;:8::i;:::-;6586:9;6578:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;44444:45:::1;44471:4;44477:2;44481:7;44444:26;:45::i;:::-;44286:211:::0;;;:::o;40928:114::-;40993:7;41020;:14;;;41013:21;;40928:114;;;:::o;41050:127::-;41157:1;41139:7;:14;;;:19;;;;;;;;;;;41050:127;:::o;32065:110::-;32141:26;32151:2;32155:7;32141:26;;;;;;;;;;;;:9;:26::i;:::-;32065:110;;:::o;35802:799::-;35957:4;35978:15;:2;:13;;;:15::i;:::-;35974:620;;;36030:2;36014:36;;;36051:12;:10;:12::i;:::-;36065:4;36071:7;36080:5;36014:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36010:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36273:1;36256:6;:13;:18;36252:272;;;36299:60;;;;;;;;;;:::i;:::-;;;;;;;;36252:272;36474:6;36468:13;36459:6;36455:2;36451:15;36444:38;36010:529;36147:41;;;36137:51;;;:6;:51;;;;36130:58;;;;;35974:620;36578:4;36571:11;;35802:799;;;;;;;:::o;44108:100::-;44160:13;44193:7;44186:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44108:100;:::o;26472:334::-;26545:13;26579:16;26587:7;26579;:16::i;:::-;26571:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26660:21;26684:10;:8;:10::i;:::-;26660:34;;26736:1;26718:7;26712:21;:25;:86;;;;;;;;;;;;;;;;;26764:7;26773:18;:7;:16;:18::i;:::-;26747:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26712:86;26705:93;;;26472:334;;;:::o;37173:126::-;;;;:::o;32402:321::-;32532:18;32538:2;32542:7;32532:5;:18::i;:::-;32583:54;32614:1;32618:2;32622:7;32631:5;32583:22;:54::i;:::-;32561:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32402:321;;;:::o;311:723::-;367:13;597:1;588:5;:10;584:53;;;615:10;;;;;;;;;;;;;;;;;;;;;584:53;647:12;662:5;647:20;;678:14;703:78;718:1;710:4;:9;703:78;;736:8;;;;;:::i;:::-;;;;767:2;759:10;;;;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791:39;;841:154;857:1;848:5;:10;841:154;;885:1;875:11;;;;;:::i;:::-;;;952:2;944:5;:10;;;;:::i;:::-;931:2;:24;;;;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;841:154;;;1019:6;1005:21;;;;;311:723;;;;:::o;33059:382::-;33153:1;33139:16;;:2;:16;;;;33131:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33212:16;33220:7;33212;:16::i;:::-;33211:17;33203:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33274:45;33303:1;33307:2;33311:7;33274:20;:45::i;:::-;33349:1;33332:9;:13;33342:2;33332:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33380:2;33361:7;:16;33369:7;33361:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33425:7;33421:2;33400:33;;33417:1;33400:33;;;;;;;;;;;;33059:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:342::-;;754:64;769:48;810:6;769:48;:::i;:::-;754:64;:::i;:::-;745:73;;841:6;834:5;827:21;879:4;872:5;868:16;917:3;908:6;903:3;899:16;896:25;893:2;;;934:1;931;924:12;893:2;947:41;981:6;976:3;971;947:41;:::i;:::-;735:259;;;;;;:::o;1000:344::-;;1103:65;1118:49;1160:6;1118:49;:::i;:::-;1103:65;:::i;:::-;1094:74;;1191:6;1184:5;1177:21;1229:4;1222:5;1218:16;1267:3;1258:6;1253:3;1249:16;1246:25;1243:2;;;1284:1;1281;1274:12;1243:2;1297:41;1331:6;1326:3;1321;1297:41;:::i;:::-;1084:260;;;;;;:::o;1350:139::-;;1434:6;1421:20;1412:29;;1450:33;1477:5;1450:33;:::i;:::-;1402:87;;;;:::o;1512:303::-;;1632:3;1625:4;1617:6;1613:17;1609:27;1599:2;;1650:1;1647;1640:12;1599:2;1690:6;1677:20;1715:94;1805:3;1797:6;1790:4;1782:6;1778:17;1715:94;:::i;:::-;1706:103;;1589:226;;;;;:::o;1821:133::-;;1902:6;1889:20;1880:29;;1918:30;1942:5;1918:30;:::i;:::-;1870:84;;;;:::o;1960:137::-;;2043:6;2030:20;2021:29;;2059:32;2085:5;2059:32;:::i;:::-;2011:86;;;;:::o;2103:141::-;;2190:6;2184:13;2175:22;;2206:32;2232:5;2206:32;:::i;:::-;2165:79;;;;:::o;2263:271::-;;2367:3;2360:4;2352:6;2348:17;2344:27;2334:2;;2385:1;2382;2375:12;2334:2;2425:6;2412:20;2450:78;2524:3;2516:6;2509:4;2501:6;2497:17;2450:78;:::i;:::-;2441:87;;2324:210;;;;;:::o;2554:273::-;;2659:3;2652:4;2644:6;2640:17;2636:27;2626:2;;2677:1;2674;2667:12;2626:2;2717:6;2704:20;2742:79;2817:3;2809:6;2802:4;2794:6;2790:17;2742:79;:::i;:::-;2733:88;;2616:211;;;;;:::o;2833:139::-;;2917:6;2904:20;2895:29;;2933:33;2960:5;2933:33;:::i;:::-;2885:87;;;;:::o;2978:262::-;;3086:2;3074:9;3065:7;3061:23;3057:32;3054:2;;;3102:1;3099;3092:12;3054:2;3145:1;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3116:117;3044:196;;;;:::o;3246:407::-;;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3387:1;3384;3377:12;3339:2;3430:1;3455:53;3500:7;3491:6;3480:9;3476:22;3455:53;:::i;:::-;3445:63;;3401:117;3557:2;3583:53;3628:7;3619:6;3608:9;3604:22;3583:53;:::i;:::-;3573:63;;3528:118;3329:324;;;;;:::o;3659:552::-;;;;3801:2;3789:9;3780:7;3776:23;3772:32;3769:2;;;3817:1;3814;3807:12;3769:2;3860:1;3885:53;3930:7;3921:6;3910:9;3906:22;3885:53;:::i;:::-;3875:63;;3831:117;3987:2;4013:53;4058:7;4049:6;4038:9;4034:22;4013:53;:::i;:::-;4003:63;;3958:118;4115:2;4141:53;4186:7;4177:6;4166:9;4162:22;4141:53;:::i;:::-;4131:63;;4086:118;3759:452;;;;;:::o;4217:809::-;;;;;4385:3;4373:9;4364:7;4360:23;4356:33;4353:2;;;4402:1;4399;4392:12;4353:2;4445:1;4470:53;4515:7;4506:6;4495:9;4491:22;4470:53;:::i;:::-;4460:63;;4416:117;4572:2;4598:53;4643:7;4634:6;4623:9;4619:22;4598:53;:::i;:::-;4588:63;;4543:118;4700:2;4726:53;4771:7;4762:6;4751:9;4747:22;4726:53;:::i;:::-;4716:63;;4671:118;4856:2;4845:9;4841:18;4828:32;4887:18;4879:6;4876:30;4873:2;;;4919:1;4916;4909:12;4873:2;4947:62;5001:7;4992:6;4981:9;4977:22;4947:62;:::i;:::-;4937:72;;4799:220;4343:683;;;;;;;:::o;5032:401::-;;;5154:2;5142:9;5133:7;5129:23;5125:32;5122:2;;;5170:1;5167;5160:12;5122:2;5213:1;5238:53;5283:7;5274:6;5263:9;5259:22;5238:53;:::i;:::-;5228:63;;5184:117;5340:2;5366:50;5408:7;5399:6;5388:9;5384:22;5366:50;:::i;:::-;5356:60;;5311:115;5112:321;;;;;:::o;5439:407::-;;;5564:2;5552:9;5543:7;5539:23;5535:32;5532:2;;;5580:1;5577;5570:12;5532:2;5623:1;5648:53;5693:7;5684:6;5673:9;5669:22;5648:53;:::i;:::-;5638:63;;5594:117;5750:2;5776:53;5821:7;5812:6;5801:9;5797:22;5776:53;:::i;:::-;5766:63;;5721:118;5522:324;;;;;:::o;5852:550::-;;;6002:2;5990:9;5981:7;5977:23;5973:32;5970:2;;;6018:1;6015;6008:12;5970:2;6089:1;6078:9;6074:17;6061:31;6119:18;6111:6;6108:30;6105:2;;;6151:1;6148;6141:12;6105:2;6179:78;6249:7;6240:6;6229:9;6225:22;6179:78;:::i;:::-;6169:88;;6032:235;6306:2;6332:53;6377:7;6368:6;6357:9;6353:22;6332:53;:::i;:::-;6322:63;;6277:118;5960:442;;;;;:::o;6408:260::-;;6515:2;6503:9;6494:7;6490:23;6486:32;6483:2;;;6531:1;6528;6521:12;6483:2;6574:1;6599:52;6643:7;6634:6;6623:9;6619:22;6599:52;:::i;:::-;6589:62;;6545:116;6473:195;;;;:::o;6674:282::-;;6792:2;6780:9;6771:7;6767:23;6763:32;6760:2;;;6808:1;6805;6798:12;6760:2;6851:1;6876:63;6931:7;6922:6;6911:9;6907:22;6876:63;:::i;:::-;6866:73;;6822:127;6750:206;;;;:::o;6962:375::-;;7080:2;7068:9;7059:7;7055:23;7051:32;7048:2;;;7096:1;7093;7086:12;7048:2;7167:1;7156:9;7152:17;7139:31;7197:18;7189:6;7186:30;7183:2;;;7229:1;7226;7219:12;7183:2;7257:63;7312:7;7303:6;7292:9;7288:22;7257:63;:::i;:::-;7247:73;;7110:220;7038:299;;;;:::o;7343:262::-;;7451:2;7439:9;7430:7;7426:23;7422:32;7419:2;;;7467:1;7464;7457:12;7419:2;7510:1;7535:53;7580:7;7571:6;7560:9;7556:22;7535:53;:::i;:::-;7525:63;;7481:117;7409:196;;;;:::o;7611:118::-;7698:24;7716:5;7698:24;:::i;:::-;7693:3;7686:37;7676:53;;:::o;7735:109::-;7816:21;7831:5;7816:21;:::i;:::-;7811:3;7804:34;7794:50;;:::o;7850:360::-;;7964:38;7996:5;7964:38;:::i;:::-;8018:70;8081:6;8076:3;8018:70;:::i;:::-;8011:77;;8097:52;8142:6;8137:3;8130:4;8123:5;8119:16;8097:52;:::i;:::-;8174:29;8196:6;8174:29;:::i;:::-;8169:3;8165:39;8158:46;;7940:270;;;;;:::o;8216:364::-;;8332:39;8365:5;8332:39;:::i;:::-;8387:71;8451:6;8446:3;8387:71;:::i;:::-;8380:78;;8467:52;8512:6;8507:3;8500:4;8493:5;8489:16;8467:52;:::i;:::-;8544:29;8566:6;8544:29;:::i;:::-;8539:3;8535:39;8528:46;;8308:272;;;;;:::o;8586:377::-;;8720:39;8753:5;8720:39;:::i;:::-;8775:89;8857:6;8852:3;8775:89;:::i;:::-;8768:96;;8873:52;8918:6;8913:3;8906:4;8899:5;8895:16;8873:52;:::i;:::-;8950:6;8945:3;8941:16;8934:23;;8696:267;;;;;:::o;8969:318::-;;9132:67;9196:2;9191:3;9132:67;:::i;:::-;9125:74;;9229:22;9225:1;9220:3;9216:11;9209:43;9278:2;9273:3;9269:12;9262:19;;9115:172;;;:::o;9293:382::-;;9456:67;9520:2;9515:3;9456:67;:::i;:::-;9449:74;;9553:34;9549:1;9544:3;9540:11;9533:55;9619:20;9614:2;9609:3;9605:12;9598:42;9666:2;9661:3;9657:12;9650:19;;9439:236;;;:::o;9681:370::-;;9844:67;9908:2;9903:3;9844:67;:::i;:::-;9837:74;;9941:34;9937:1;9932:3;9928:11;9921:55;10007:8;10002:2;9997:3;9993:12;9986:30;10042:2;10037:3;10033:12;10026:19;;9827:224;;;:::o;10057:326::-;;10220:67;10284:2;10279:3;10220:67;:::i;:::-;10213:74;;10317:30;10313:1;10308:3;10304:11;10297:51;10374:2;10369:3;10365:12;10358:19;;10203:180;;;:::o;10389:368::-;;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10649:34;10645:1;10640:3;10636:11;10629:55;10715:6;10710:2;10705:3;10701:12;10694:28;10748:2;10743:3;10739:12;10732:19;;10535:222;;;:::o;10763:323::-;;10926:67;10990:2;10985:3;10926:67;:::i;:::-;10919:74;;11023:27;11019:1;11014:3;11010:11;11003:48;11077:2;11072:3;11068:12;11061:19;;10909:177;;;:::o;11092:376::-;;11255:67;11319:2;11314:3;11255:67;:::i;:::-;11248:74;;11352:34;11348:1;11343:3;11339:11;11332:55;11418:14;11413:2;11408:3;11404:12;11397:36;11459:2;11454:3;11450:12;11443:19;;11238:230;;;:::o;11474:314::-;;11637:67;11701:2;11696:3;11637:67;:::i;:::-;11630:74;;11734:18;11730:1;11725:3;11721:11;11714:39;11779:2;11774:3;11770:12;11763:19;;11620:168;;;:::o;11794:317::-;;11957:67;12021:2;12016:3;11957:67;:::i;:::-;11950:74;;12054:21;12050:1;12045:3;12041:11;12034:42;12102:2;12097:3;12093:12;12086:19;;11940:171;;;:::o;12117:388::-;;12280:67;12344:2;12339:3;12280:67;:::i;:::-;12273:74;;12377:34;12373:1;12368:3;12364:11;12357:55;12443:26;12438:2;12433:3;12429:12;12422:48;12496:2;12491:3;12487:12;12480:19;;12263:242;;;:::o;12511:374::-;;12674:67;12738:2;12733:3;12674:67;:::i;:::-;12667:74;;12771:34;12767:1;12762:3;12758:11;12751:55;12837:12;12832:2;12827:3;12823:12;12816:34;12876:2;12871:3;12867:12;12860:19;;12657:228;;;:::o;12891:373::-;;13054:67;13118:2;13113:3;13054:67;:::i;:::-;13047:74;;13151:34;13147:1;13142:3;13138:11;13131:55;13217:11;13212:2;13207:3;13203:12;13196:33;13255:2;13250:3;13246:12;13239:19;;13037:227;;;:::o;13270:329::-;;13433:67;13497:2;13492:3;13433:67;:::i;:::-;13426:74;;13530:33;13526:1;13521:3;13517:11;13510:54;13590:2;13585:3;13581:12;13574:19;;13416:183;;;:::o;13605:330::-;;13768:67;13832:2;13827:3;13768:67;:::i;:::-;13761:74;;13865:34;13861:1;13856:3;13852:11;13845:55;13926:2;13921:3;13917:12;13910:19;;13751:184;;;:::o;13941:381::-;;14104:67;14168:2;14163:3;14104:67;:::i;:::-;14097:74;;14201:34;14197:1;14192:3;14188:11;14181:55;14267:19;14262:2;14257:3;14253:12;14246:41;14313:2;14308:3;14304:12;14297:19;;14087:235;;;:::o;14328:376::-;;14491:67;14555:2;14550:3;14491:67;:::i;:::-;14484:74;;14588:34;14584:1;14579:3;14575:11;14568:55;14654:14;14649:2;14644:3;14640:12;14633:36;14695:2;14690:3;14686:12;14679:19;;14474:230;;;:::o;14710:330::-;;14873:67;14937:2;14932:3;14873:67;:::i;:::-;14866:74;;14970:34;14966:1;14961:3;14957:11;14950:55;15031:2;15026:3;15022:12;15015:19;;14856:184;;;:::o;15046:373::-;;15209:67;15273:2;15268:3;15209:67;:::i;:::-;15202:74;;15306:34;15302:1;15297:3;15293:11;15286:55;15372:11;15367:2;15362:3;15358:12;15351:33;15410:2;15405:3;15401:12;15394:19;;15192:227;;;:::o;15425:379::-;;15588:67;15652:2;15647:3;15588:67;:::i;:::-;15581:74;;15685:34;15681:1;15676:3;15672:11;15665:55;15751:17;15746:2;15741:3;15737:12;15730:39;15795:2;15790:3;15786:12;15779:19;;15571:233;;;:::o;15810:317::-;;15973:67;16037:2;16032:3;15973:67;:::i;:::-;15966:74;;16070:21;16066:1;16061:3;16057:11;16050:42;16118:2;16113:3;16109:12;16102:19;;15956:171;;;:::o;16133:365::-;;16296:67;16360:2;16355:3;16296:67;:::i;:::-;16289:74;;16393:34;16389:1;16384:3;16380:11;16373:55;16459:3;16454:2;16449:3;16445:12;16438:25;16489:2;16484:3;16480:12;16473:19;;16279:219;;;:::o;16504:313::-;;16667:67;16731:2;16726:3;16667:67;:::i;:::-;16660:74;;16764:17;16760:1;16755:3;16751:11;16744:38;16808:2;16803:3;16799:12;16792:19;;16650:167;;;:::o;16823:381::-;;16986:67;17050:2;17045:3;16986:67;:::i;:::-;16979:74;;17083:34;17079:1;17074:3;17070:11;17063:55;17149:19;17144:2;17139:3;17135:12;17128:41;17195:2;17190:3;17186:12;17179:19;;16969:235;;;:::o;17210:396::-;;17373:67;17437:2;17432:3;17373:67;:::i;:::-;17366:74;;17470:34;17466:1;17461:3;17457:11;17450:55;17536:34;17531:2;17526:3;17522:12;17515:56;17597:2;17592:3;17588:12;17581:19;;17356:250;;;:::o;17612:379::-;;17775:67;17839:2;17834:3;17775:67;:::i;:::-;17768:74;;17872:34;17868:1;17863:3;17859:11;17852:55;17938:17;17933:2;17928:3;17924:12;17917:39;17982:2;17977:3;17973:12;17966:19;;17758:233;;;:::o;17997:365::-;;18160:67;18224:2;18219:3;18160:67;:::i;:::-;18153:74;;18257:34;18253:1;18248:3;18244:11;18237:55;18323:3;18318:2;18313:3;18309:12;18302:25;18353:2;18348:3;18344:12;18337:19;;18143:219;;;:::o;18368:118::-;18455:24;18473:5;18455:24;:::i;:::-;18450:3;18443:37;18433:53;;:::o;18492:435::-;;18694:95;18785:3;18776:6;18694:95;:::i;:::-;18687:102;;18806:95;18897:3;18888:6;18806:95;:::i;:::-;18799:102;;18918:3;18911:10;;18676:251;;;;;:::o;18933:222::-;;19064:2;19053:9;19049:18;19041:26;;19077:71;19145:1;19134:9;19130:17;19121:6;19077:71;:::i;:::-;19031:124;;;;:::o;19161:640::-;;19394:3;19383:9;19379:19;19371:27;;19408:71;19476:1;19465:9;19461:17;19452:6;19408:71;:::i;:::-;19489:72;19557:2;19546:9;19542:18;19533:6;19489:72;:::i;:::-;19571;19639:2;19628:9;19624:18;19615:6;19571:72;:::i;:::-;19690:9;19684:4;19680:20;19675:2;19664:9;19660:18;19653:48;19718:76;19789:4;19780:6;19718:76;:::i;:::-;19710:84;;19361:440;;;;;;;:::o;19807:210::-;;19932:2;19921:9;19917:18;19909:26;;19945:65;20007:1;19996:9;19992:17;19983:6;19945:65;:::i;:::-;19899:118;;;;:::o;20023:313::-;;20174:2;20163:9;20159:18;20151:26;;20223:9;20217:4;20213:20;20209:1;20198:9;20194:17;20187:47;20251:78;20324:4;20315:6;20251:78;:::i;:::-;20243:86;;20141:195;;;;:::o;20342:419::-;;20546:2;20535:9;20531:18;20523:26;;20595:9;20589:4;20585:20;20581:1;20570:9;20566:17;20559:47;20623:131;20749:4;20623:131;:::i;:::-;20615:139;;20513:248;;;:::o;20767:419::-;;20971:2;20960:9;20956:18;20948:26;;21020:9;21014:4;21010:20;21006:1;20995:9;20991:17;20984:47;21048:131;21174:4;21048:131;:::i;:::-;21040:139;;20938:248;;;:::o;21192:419::-;;21396:2;21385:9;21381:18;21373:26;;21445:9;21439:4;21435:20;21431:1;21420:9;21416:17;21409:47;21473:131;21599:4;21473:131;:::i;:::-;21465:139;;21363:248;;;:::o;21617:419::-;;21821:2;21810:9;21806:18;21798:26;;21870:9;21864:4;21860:20;21856:1;21845:9;21841:17;21834:47;21898:131;22024:4;21898:131;:::i;:::-;21890:139;;21788:248;;;:::o;22042:419::-;;22246:2;22235:9;22231:18;22223:26;;22295:9;22289:4;22285:20;22281:1;22270:9;22266:17;22259:47;22323:131;22449:4;22323:131;:::i;:::-;22315:139;;22213:248;;;:::o;22467:419::-;;22671:2;22660:9;22656:18;22648:26;;22720:9;22714:4;22710:20;22706:1;22695:9;22691:17;22684:47;22748:131;22874:4;22748:131;:::i;:::-;22740:139;;22638:248;;;:::o;22892:419::-;;23096:2;23085:9;23081:18;23073:26;;23145:9;23139:4;23135:20;23131:1;23120:9;23116:17;23109:47;23173:131;23299:4;23173:131;:::i;:::-;23165:139;;23063:248;;;:::o;23317:419::-;;23521:2;23510:9;23506:18;23498:26;;23570:9;23564:4;23560:20;23556:1;23545:9;23541:17;23534:47;23598:131;23724:4;23598:131;:::i;:::-;23590:139;;23488:248;;;:::o;23742:419::-;;23946:2;23935:9;23931:18;23923:26;;23995:9;23989:4;23985:20;23981:1;23970:9;23966:17;23959:47;24023:131;24149:4;24023:131;:::i;:::-;24015:139;;23913:248;;;:::o;24167:419::-;;24371:2;24360:9;24356:18;24348:26;;24420:9;24414:4;24410:20;24406:1;24395:9;24391:17;24384:47;24448:131;24574:4;24448:131;:::i;:::-;24440:139;;24338:248;;;:::o;24592:419::-;;24796:2;24785:9;24781:18;24773:26;;24845:9;24839:4;24835:20;24831:1;24820:9;24816:17;24809:47;24873:131;24999:4;24873:131;:::i;:::-;24865:139;;24763:248;;;:::o;25017:419::-;;25221:2;25210:9;25206:18;25198:26;;25270:9;25264:4;25260:20;25256:1;25245:9;25241:17;25234:47;25298:131;25424:4;25298:131;:::i;:::-;25290:139;;25188:248;;;:::o;25442:419::-;;25646:2;25635:9;25631:18;25623:26;;25695:9;25689:4;25685:20;25681:1;25670:9;25666:17;25659:47;25723:131;25849:4;25723:131;:::i;:::-;25715:139;;25613:248;;;:::o;25867:419::-;;26071:2;26060:9;26056:18;26048:26;;26120:9;26114:4;26110:20;26106:1;26095:9;26091:17;26084:47;26148:131;26274:4;26148:131;:::i;:::-;26140:139;;26038:248;;;:::o;26292:419::-;;26496:2;26485:9;26481:18;26473:26;;26545:9;26539:4;26535:20;26531:1;26520:9;26516:17;26509:47;26573:131;26699:4;26573:131;:::i;:::-;26565:139;;26463:248;;;:::o;26717:419::-;;26921:2;26910:9;26906:18;26898:26;;26970:9;26964:4;26960:20;26956:1;26945:9;26941:17;26934:47;26998:131;27124:4;26998:131;:::i;:::-;26990:139;;26888:248;;;:::o;27142:419::-;;27346:2;27335:9;27331:18;27323:26;;27395:9;27389:4;27385:20;27381:1;27370:9;27366:17;27359:47;27423:131;27549:4;27423:131;:::i;:::-;27415:139;;27313:248;;;:::o;27567:419::-;;27771:2;27760:9;27756:18;27748:26;;27820:9;27814:4;27810:20;27806:1;27795:9;27791:17;27784:47;27848:131;27974:4;27848:131;:::i;:::-;27840:139;;27738:248;;;:::o;27992:419::-;;28196:2;28185:9;28181:18;28173:26;;28245:9;28239:4;28235:20;28231:1;28220:9;28216:17;28209:47;28273:131;28399:4;28273:131;:::i;:::-;28265:139;;28163:248;;;:::o;28417:419::-;;28621:2;28610:9;28606:18;28598:26;;28670:9;28664:4;28660:20;28656:1;28645:9;28641:17;28634:47;28698:131;28824:4;28698:131;:::i;:::-;28690:139;;28588:248;;;:::o;28842:419::-;;29046:2;29035:9;29031:18;29023:26;;29095:9;29089:4;29085:20;29081:1;29070:9;29066:17;29059:47;29123:131;29249:4;29123:131;:::i;:::-;29115:139;;29013:248;;;:::o;29267:419::-;;29471:2;29460:9;29456:18;29448:26;;29520:9;29514:4;29510:20;29506:1;29495:9;29491:17;29484:47;29548:131;29674:4;29548:131;:::i;:::-;29540:139;;29438:248;;;:::o;29692:419::-;;29896:2;29885:9;29881:18;29873:26;;29945:9;29939:4;29935:20;29931:1;29920:9;29916:17;29909:47;29973:131;30099:4;29973:131;:::i;:::-;29965:139;;29863:248;;;:::o;30117:419::-;;30321:2;30310:9;30306:18;30298:26;;30370:9;30364:4;30360:20;30356:1;30345:9;30341:17;30334:47;30398:131;30524:4;30398:131;:::i;:::-;30390:139;;30288:248;;;:::o;30542:419::-;;30746:2;30735:9;30731:18;30723:26;;30795:9;30789:4;30785:20;30781:1;30770:9;30766:17;30759:47;30823:131;30949:4;30823:131;:::i;:::-;30815:139;;30713:248;;;:::o;30967:419::-;;31171:2;31160:9;31156:18;31148:26;;31220:9;31214:4;31210:20;31206:1;31195:9;31191:17;31184:47;31248:131;31374:4;31248:131;:::i;:::-;31240:139;;31138:248;;;:::o;31392:222::-;;31523:2;31512:9;31508:18;31500:26;;31536:71;31604:1;31593:9;31589:17;31580:6;31536:71;:::i;:::-;31490:124;;;;:::o;31620:283::-;;31686:2;31680:9;31670:19;;31728:4;31720:6;31716:17;31835:6;31823:10;31820:22;31799:18;31787:10;31784:34;31781:62;31778:2;;;31846:18;;:::i;:::-;31778:2;31886:10;31882:2;31875:22;31660:243;;;;:::o;31909:311::-;;32076:18;32068:6;32065:30;32062:2;;;32098:18;;:::i;:::-;32062:2;32148:4;32140:6;32136:17;32128:25;;32208:4;32202;32198:15;32190:23;;31991:229;;;:::o;32226:331::-;;32377:18;32369:6;32366:30;32363:2;;;32399:18;;:::i;:::-;32363:2;32484:4;32480:9;32473:4;32465:6;32461:17;32457:33;32449:41;;32545:4;32539;32535:15;32527:23;;32292:265;;;:::o;32563:332::-;;32715:18;32707:6;32704:30;32701:2;;;32737:18;;:::i;:::-;32701:2;32822:4;32818:9;32811:4;32803:6;32799:17;32795:33;32787:41;;32883:4;32877;32873:15;32865:23;;32630:265;;;:::o;32901:98::-;;32986:5;32980:12;32970:22;;32959:40;;;:::o;33005:99::-;;33091:5;33085:12;33075:22;;33064:40;;;:::o;33110:168::-;;33227:6;33222:3;33215:19;33267:4;33262:3;33258:14;33243:29;;33205:73;;;;:::o;33284:169::-;;33402:6;33397:3;33390:19;33442:4;33437:3;33433:14;33418:29;;33380:73;;;;:::o;33459:148::-;;33598:3;33583:18;;33573:34;;;;:::o;33613:305::-;;33672:20;33690:1;33672:20;:::i;:::-;33667:25;;33706:20;33724:1;33706:20;:::i;:::-;33701:25;;33860:1;33792:66;33788:74;33785:1;33782:81;33779:2;;;33866:18;;:::i;:::-;33779:2;33910:1;33907;33903:9;33896:16;;33657:261;;;;:::o;33924:185::-;;33981:20;33999:1;33981:20;:::i;:::-;33976:25;;34015:20;34033:1;34015:20;:::i;:::-;34010:25;;34054:1;34044:2;;34059:18;;:::i;:::-;34044:2;34101:1;34098;34094:9;34089:14;;33966:143;;;;:::o;34115:348::-;;34178:20;34196:1;34178:20;:::i;:::-;34173:25;;34212:20;34230:1;34212:20;:::i;:::-;34207:25;;34400:1;34332:66;34328:74;34325:1;34322:81;34317:1;34310:9;34303:17;34299:105;34296:2;;;34407:18;;:::i;:::-;34296:2;34455:1;34452;34448:9;34437:20;;34163:300;;;;:::o;34469:191::-;;34529:20;34547:1;34529:20;:::i;:::-;34524:25;;34563:20;34581:1;34563:20;:::i;:::-;34558:25;;34602:1;34599;34596:8;34593:2;;;34607:18;;:::i;:::-;34593:2;34652:1;34649;34645:9;34637:17;;34514:146;;;;:::o;34666:96::-;;34732:24;34750:5;34732:24;:::i;:::-;34721:35;;34711:51;;;:::o;34768:90::-;;34845:5;34838:13;34831:21;34820:32;;34810:48;;;:::o;34864:149::-;;34940:66;34933:5;34929:78;34918:89;;34908:105;;;:::o;35019:126::-;;35096:42;35089:5;35085:54;35074:65;;35064:81;;;:::o;35151:77::-;;35217:5;35206:16;;35196:32;;;:::o;35234:154::-;35318:6;35313:3;35308;35295:30;35380:1;35371:6;35366:3;35362:16;35355:27;35285:103;;;:::o;35394:307::-;35462:1;35472:113;35486:6;35483:1;35480:13;35472:113;;;35571:1;35566:3;35562:11;35556:18;35552:1;35547:3;35543:11;35536:39;35508:2;35505:1;35501:10;35496:15;;35472:113;;;35603:6;35600:1;35597:13;35594:2;;;35683:1;35674:6;35669:3;35665:16;35658:27;35594:2;35443:258;;;;:::o;35707:320::-;;35788:1;35782:4;35778:12;35768:22;;35835:1;35829:4;35825:12;35856:18;35846:2;;35912:4;35904:6;35900:17;35890:27;;35846:2;35974;35966:6;35963:14;35943:18;35940:38;35937:2;;;35993:18;;:::i;:::-;35937:2;35758:269;;;;:::o;36033:233::-;;36095:24;36113:5;36095:24;:::i;:::-;36086:33;;36141:66;36134:5;36131:77;36128:2;;;36211:18;;:::i;:::-;36128:2;36258:1;36251:5;36247:13;36240:20;;36076:190;;;:::o;36272:176::-;;36321:20;36339:1;36321:20;:::i;:::-;36316:25;;36355:20;36373:1;36355:20;:::i;:::-;36350:25;;36394:1;36384:2;;36399:18;;:::i;:::-;36384:2;36440:1;36437;36433:9;36428:14;;36306:142;;;;:::o;36454:180::-;36502:77;36499:1;36492:88;36599:4;36596:1;36589:15;36623:4;36620:1;36613:15;36640:180;36688:77;36685:1;36678:88;36785:4;36782:1;36775:15;36809:4;36806:1;36799:15;36826:180;36874:77;36871:1;36864:88;36971:4;36968:1;36961:15;36995:4;36992:1;36985:15;37012:180;37060:77;37057:1;37050:88;37157:4;37154:1;37147:15;37181:4;37178:1;37171:15;37198:102;;37290:2;37286:7;37281:2;37274:5;37270:14;37266:28;37256:38;;37246:54;;;:::o;37306:122::-;37379:24;37397:5;37379:24;:::i;:::-;37372:5;37369:35;37359:2;;37418:1;37415;37408:12;37359:2;37349:79;:::o;37434:116::-;37504:21;37519:5;37504:21;:::i;:::-;37497:5;37494:32;37484:2;;37540:1;37537;37530:12;37484:2;37474:76;:::o;37556:120::-;37628:23;37645:5;37628:23;:::i;:::-;37621:5;37618:34;37608:2;;37666:1;37663;37656:12;37608:2;37598:78;:::o;37682:122::-;37755:24;37773:5;37755:24;:::i;:::-;37748:5;37745:35;37735:2;;37794:1;37791;37784:12;37735:2;37725:79;:::o

Swarm Source

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