ETH Price: $3,098.78 (+0.50%)
Gas: 5 Gwei

Token

0xTB (XTB)
 

Overview

Max Total Supply

1,225 XTB

Holders

405

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bazra.eth
Balance
3 XTB
0xdc690437f32c2fba70448f57cfeb64f9183a3dca
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:
xTB

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-22
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

// File: contracts/xTB.sol

// contracts/xTB.sol

//SPDX-License-Identifier: MIT
/*                            
    
*/
pragma solidity ^0.8.0;





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

    Counters.Counter private tokenIdCounter;

    string baseURI;
    string public baseExtension = ".json";
    string public preRevealURI;
    uint256 public currentPrice = 0.01 ether;
    uint256 public FREE_MINT_LIMIT_PER_WALLET = 3;
    uint256 public total = 10000;
    uint256 public maxFree = 1000;
    bool public paused = true;

   mapping(address => uint256) private freeMintCountMap;

    constructor(string memory _initBaseURI)
        ERC721("0xTB", "XTB")
    {
        setBaseURI(_initBaseURI);
        
    }


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

    function freeMintTastyBones(uint256 mintAmount) public {
        uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET - freeMintCountMap[msg.sender];
        uint256 supply = tokenIdCounter.current();
        require(!paused, "Sale paused");
        require(mintAmount < 4, "You can only mint 3 free tasty Bones");
        require(supply + mintAmount < maxFree, "No more free 0x Tasty Bones left");
        require(remainingFreeMint > 0, "You can only mint 3 free Tasty Bones per wallet" );

        updateFreeMintCount(msg.sender, mintAmount);
        mintTastyBones(msg.sender, mintAmount);
    }

    function mint(uint256 mintAmount) external payable {
        uint256 supply = tokenIdCounter.current();
        require(!paused, "Sale paused");
        require(mintAmount < 21, "You can only mint 20 tasty Bones at a time");
        require(
            supply + mintAmount < total + 1,
            "Exceeds maximum tasty bones supply"
        );
        require(
            msg.value >= currentPrice * mintAmount,
            "Not enough Ether sent"
        );

        mintTastyBones(msg.sender, mintAmount);
    }

    function mintTastyBones(address addr, uint256 mintAmount) private {
        for (uint256 i = 0; i < mintAmount; i++) {
            tokenIdCounter.increment();
            _safeMint(addr, tokenIdCounter.current());
        }
    }

    function getCurrentId() external view returns (uint256) {
        return tokenIdCounter.current();
    }

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

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

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

    //----------------Owner functions--------------------

    function ownerMint(uint256 mintAmount) public onlyOwner {
        uint256 supply = tokenIdCounter.current();
        require(supply + mintAmount < total + 1,"Exceeds maximum tasty bones supply");
        mintTastyBones(msg.sender, mintAmount);
    }

     function setFreeMintAllowance(uint256 freeMintAllowance) external onlyOwner {
        FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance;
    }
    function pause(bool val) public onlyOwner {
        paused = val;
    }

    function setPrice(uint256 _newPrice) public onlyOwner {
        currentPrice = _newPrice;
    }

    function setMaxFree(uint256 _maxFree) public onlyOwner {
        maxFree = _maxFree;
    }


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

    function updateFreeMintCount(address minter, uint256 count) private {
        freeMintCountMap[minter] += count;
    }

    function withdraw() public onlyOwner {
        uint256 amount = address(this).balance;
        (bool success, ) = msg.sender.call{value: amount}("");
        require(success, "Failed to send Ether");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_LIMIT_PER_WALLET","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"freeMintTastyBones","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preRevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"}],"name":"setFreeMintAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFree","type":"uint256"}],"name":"setMaxFree","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"total","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200005192919062000337565b50662386f26fc10000600b556003600c55612710600d556103e8600e556001600f60006101000a81548160ff0219169083151502179055503480156200009657600080fd5b50604051620047db380380620047db8339818101604052810190620000bc919062000465565b6040518060400160405280600481526020017f30785442000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f585442000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200014092919062000337565b5080600190805190602001906200015992919062000337565b5050506200017c620001706200019460201b60201c565b6200019c60201b60201c565b6200018d816200026260201b60201c565b50620006bd565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002726200019460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002986200030d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002f1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e890620004dd565b60405180910390fd5b80600890805190602001906200030992919062000337565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200034590620005a5565b90600052602060002090601f016020900481019282620003695760008555620003b5565b82601f106200038457805160ff1916838001178555620003b5565b82800160010185558215620003b5579182015b82811115620003b457825182559160200191906001019062000397565b5b509050620003c49190620003c8565b5090565b5b80821115620003e3576000816000905550600101620003c9565b5090565b6000620003fe620003f88462000528565b620004ff565b9050828152602081018484840111156200041d576200041c62000674565b5b6200042a8482856200056f565b509392505050565b600082601f8301126200044a57620004496200066f565b5b81516200045c848260208601620003e7565b91505092915050565b6000602082840312156200047e576200047d6200067e565b5b600082015167ffffffffffffffff8111156200049f576200049e62000679565b5b620004ad8482850162000432565b91505092915050565b6000620004c56020836200055e565b9150620004d28262000694565b602082019050919050565b60006020820190508181036000830152620004f881620004b6565b9050919050565b60006200050b6200051e565b9050620005198282620005db565b919050565b6000604051905090565b600067ffffffffffffffff82111562000546576200054562000640565b5b620005518262000683565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200058f57808201518184015260208101905062000572565b838111156200059f576000848401525b50505050565b60006002820490506001821680620005be57607f821691505b60208210811415620005d557620005d462000611565b5b50919050565b620005e68262000683565b810181811067ffffffffffffffff8211171562000608576200060762000640565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61410e80620006cd6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106da578063d755bf9914610717578063e985e9c514610740578063f19e75d41461077d578063f2fde38b146107a6576101f9565b8063a22cb46514610634578063b0551ac41461065d578063b88d4fde14610686578063c6682862146106af576101f9565b806391b7f5ed116100dc57806391b7f5ed1461059957806395d89b41146105c25780639d1b464a146105ed578063a0712d6814610618576101f9565b806370a08231146104ef578063715018a61461052c57806379b6ed36146105435780638da5cb5b1461056e576101f9565b80632ddbd13a11610190578063485a68a31161015f578063485a68a31461040857806355f804b3146104335780635c975abb1461045c5780636352211e146104875780636c143862146104c4576101f9565b80632ddbd13a146103745780633ccfd60b1461039f57806342842e0e146103b65780634695da2c146103df576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806310b0c052146102f557806318160ddd1461032057806323b872dd1461034b576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c10565b6107cf565b6040516102329190613247565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612be3565b6108b1565b005b34801561027057600080fd5b5061027961094a565b6040516102869190613262565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612cb3565b6109dc565b6040516102c391906131e0565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190612ba3565b610a61565b005b34801561030157600080fd5b5061030a610b79565b6040516103179190613584565b60405180910390f35b34801561032c57600080fd5b50610335610b7f565b6040516103429190613584565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612a8d565b610b90565b005b34801561038057600080fd5b50610389610bf0565b6040516103969190613584565b60405180910390f35b3480156103ab57600080fd5b506103b4610bf6565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190612a8d565b610d27565b005b3480156103eb57600080fd5b5061040660048036038101906104019190612cb3565b610d47565b005b34801561041457600080fd5b5061041d610ee4565b60405161042a9190613584565b60405180910390f35b34801561043f57600080fd5b5061045a60048036038101906104559190612c6a565b610eea565b005b34801561046857600080fd5b50610471610f80565b60405161047e9190613247565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190612cb3565b610f93565b6040516104bb91906131e0565b60405180910390f35b3480156104d057600080fd5b506104d9611045565b6040516104e69190613584565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190612a20565b611056565b6040516105239190613584565b60405180910390f35b34801561053857600080fd5b5061054161110e565b005b34801561054f57600080fd5b50610558611196565b6040516105659190613262565b60405180910390f35b34801561057a57600080fd5b50610583611224565b60405161059091906131e0565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612cb3565b61124e565b005b3480156105ce57600080fd5b506105d76112d4565b6040516105e49190613262565b60405180910390f35b3480156105f957600080fd5b50610602611366565b60405161060f9190613584565b60405180910390f35b610632600480360381019061062d9190612cb3565b61136c565b005b34801561064057600080fd5b5061065b60048036038101906106569190612b63565b6114c6565b005b34801561066957600080fd5b50610684600480360381019061067f9190612cb3565b6114dc565b005b34801561069257600080fd5b506106ad60048036038101906106a89190612ae0565b611562565b005b3480156106bb57600080fd5b506106c46115c4565b6040516106d19190613262565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190612cb3565b611652565b60405161070e9190613262565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190612cb3565b6116fc565b005b34801561074c57600080fd5b5061076760048036038101906107629190612a4d565b611782565b6040516107749190613247565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612cb3565b611816565b005b3480156107b257600080fd5b506107cd60048036038101906107c89190612a20565b611909565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611a01565b5b9050919050565b6108b9611a6b565b73ffffffffffffffffffffffffffffffffffffffff166108d7611224565b73ffffffffffffffffffffffffffffffffffffffff161461092d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610924906134c4565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b60606000805461095990613854565b80601f016020809104026020016040519081016040528092919081815260200182805461098590613854565b80156109d25780601f106109a7576101008083540402835291602001916109d2565b820191906000526020600020905b8154815290600101906020018083116109b557829003601f168201915b5050505050905090565b60006109e782611a73565b610a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d906134a4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6c82610f93565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad490613504565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610afc611a6b565b73ffffffffffffffffffffffffffffffffffffffff161480610b2b5750610b2a81610b25611a6b565b611782565b5b610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6190613424565b60405180910390fd5b610b748383611adf565b505050565b600c5481565b6000610b8b6007611b98565b905090565b610ba1610b9b611a6b565b82611ba6565b610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790613544565b60405180910390fd5b610beb838383611c84565b505050565b600d5481565b610bfe611a6b565b73ffffffffffffffffffffffffffffffffffffffff16610c1c611224565b73ffffffffffffffffffffffffffffffffffffffff1614610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c69906134c4565b60405180910390fd5b600047905060003373ffffffffffffffffffffffffffffffffffffffff1682604051610c9d906131cb565b60006040518083038185875af1925050503d8060008114610cda576040519150601f19603f3d011682016040523d82523d6000602084013e610cdf565b606091505b5050905080610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a906133a4565b60405180910390fd5b5050565b610d4283838360405180602001604052806000815250611562565b505050565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54610d96919061376a565b90506000610da46007611b98565b9050600f60009054906101000a900460ff1615610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90613284565b60405180910390fd5b60048310610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090613564565b60405180910390fd5b600e548382610e489190613689565b10610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f906132e4565b60405180910390fd5b60008211610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec290613324565b60405180910390fd5b610ed53384611eeb565b610edf3384611f45565b505050565b600e5481565b610ef2611a6b565b73ffffffffffffffffffffffffffffffffffffffff16610f10611224565b73ffffffffffffffffffffffffffffffffffffffff1614610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d906134c4565b60405180910390fd5b8060089080519060200190610f7c929190612834565b5050565b600f60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390613464565b60405180910390fd5b80915050919050565b60006110516007611b98565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90613444565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611116611a6b565b73ffffffffffffffffffffffffffffffffffffffff16611134611224565b73ffffffffffffffffffffffffffffffffffffffff161461118a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611181906134c4565b60405180910390fd5b6111946000611f85565b565b600a80546111a390613854565b80601f01602080910402602001604051908101604052809291908181526020018280546111cf90613854565b801561121c5780601f106111f15761010080835404028352916020019161121c565b820191906000526020600020905b8154815290600101906020018083116111ff57829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611256611a6b565b73ffffffffffffffffffffffffffffffffffffffff16611274611224565b73ffffffffffffffffffffffffffffffffffffffff16146112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c1906134c4565b60405180910390fd5b80600b8190555050565b6060600180546112e390613854565b80601f016020809104026020016040519081016040528092919081815260200182805461130f90613854565b801561135c5780601f106113315761010080835404028352916020019161135c565b820191906000526020600020905b81548152906001019060200180831161133f57829003601f168201915b5050505050905090565b600b5481565b60006113786007611b98565b9050600f60009054906101000a900460ff16156113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190613284565b60405180910390fd5b6015821061140d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140490613524565b60405180910390fd5b6001600d5461141c9190613689565b82826114289190613689565b10611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f906132a4565b60405180910390fd5b81600b546114769190613710565b3410156114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af906132c4565b60405180910390fd5b6114c23383611f45565b5050565b6114d86114d1611a6b565b838361204b565b5050565b6114e4611a6b565b73ffffffffffffffffffffffffffffffffffffffff16611502611224565b73ffffffffffffffffffffffffffffffffffffffff1614611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f906134c4565b60405180910390fd5b80600c8190555050565b61157361156d611a6b565b83611ba6565b6115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a990613544565b60405180910390fd5b6115be848484846121b8565b50505050565b600980546115d190613854565b80601f01602080910402602001604051908101604052809291908181526020018280546115fd90613854565b801561164a5780601f1061161f5761010080835404028352916020019161164a565b820191906000526020600020905b81548152906001019060200180831161162d57829003601f168201915b505050505081565b606061165d82611a73565b61169c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611693906134e4565b60405180910390fd5b60006116a6612214565b905060008151116116c657604051806020016040528060008152506116f4565b806116d0846122a6565b60096040516020016116e49392919061319a565b6040516020818303038152906040525b915050919050565b611704611a6b565b73ffffffffffffffffffffffffffffffffffffffff16611722611224565b73ffffffffffffffffffffffffffffffffffffffff1614611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f906134c4565b60405180910390fd5b80600e8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61181e611a6b565b73ffffffffffffffffffffffffffffffffffffffff1661183c611224565b73ffffffffffffffffffffffffffffffffffffffff1614611892576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611889906134c4565b60405180910390fd5b600061189e6007611b98565b90506001600d546118af9190613689565b82826118bb9190613689565b106118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f2906132a4565b60405180910390fd5b6119053383611f45565b5050565b611911611a6b565b73ffffffffffffffffffffffffffffffffffffffff1661192f611224565b73ffffffffffffffffffffffffffffffffffffffff1614611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c906134c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec90613344565b60405180910390fd5b6119fe81611f85565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b5283610f93565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611bb182611a73565b611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be790613404565b60405180910390fd5b6000611bfb83610f93565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c6a57508373ffffffffffffffffffffffffffffffffffffffff16611c52846109dc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c7b5750611c7a8185611782565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ca482610f93565b73ffffffffffffffffffffffffffffffffffffffff1614611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf190613364565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d61906133c4565b60405180910390fd5b611d75838383612407565b611d80600082611adf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd0919061376a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e279190613689565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ee683838361240c565b505050565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f3a9190613689565b925050819055505050565b60005b81811015611f8057611f5a6007612411565b611f6d83611f686007611b98565b612427565b8080611f78906138b7565b915050611f48565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b1906133e4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121ab9190613247565b60405180910390a3505050565b6121c3848484611c84565b6121cf84848484612445565b61220e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220590613304565b60405180910390fd5b50505050565b60606008805461222390613854565b80601f016020809104026020016040519081016040528092919081815260200182805461224f90613854565b801561229c5780601f106122715761010080835404028352916020019161229c565b820191906000526020600020905b81548152906001019060200180831161227f57829003601f168201915b5050505050905090565b606060008214156122ee576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612402565b600082905060005b60008214612320578080612309906138b7565b915050600a8261231991906136df565b91506122f6565b60008167ffffffffffffffff81111561233c5761233b6139ed565b5b6040519080825280601f01601f19166020018201604052801561236e5781602001600182028036833780820191505090505b5090505b600085146123fb57600182612387919061376a565b9150600a856123969190613900565b60306123a29190613689565b60f81b8183815181106123b8576123b76139be565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123f491906136df565b9450612372565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6124418282604051806020016040528060008152506125dc565b5050565b60006124668473ffffffffffffffffffffffffffffffffffffffff16612637565b156125cf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261248f611a6b565b8786866040518563ffffffff1660e01b81526004016124b194939291906131fb565b602060405180830381600087803b1580156124cb57600080fd5b505af19250505080156124fc57506040513d601f19601f820116820180604052508101906124f99190612c3d565b60015b61257f573d806000811461252c576040519150601f19603f3d011682016040523d82523d6000602084013e612531565b606091505b50600081511415612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e90613304565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125d4565b600190505b949350505050565b6125e6838361265a565b6125f36000848484612445565b612632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262990613304565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c190613484565b60405180910390fd5b6126d381611a73565b15612713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270a90613384565b60405180910390fd5b61271f60008383612407565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461276f9190613689565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128306000838361240c565b5050565b82805461284090613854565b90600052602060002090601f01602090048101928261286257600085556128a9565b82601f1061287b57805160ff19168380011785556128a9565b828001600101855582156128a9579182015b828111156128a857825182559160200191906001019061288d565b5b5090506128b691906128ba565b5090565b5b808211156128d35760008160009055506001016128bb565b5090565b60006128ea6128e5846135c4565b61359f565b90508281526020810184848401111561290657612905613a21565b5b612911848285613812565b509392505050565b600061292c612927846135f5565b61359f565b90508281526020810184848401111561294857612947613a21565b5b612953848285613812565b509392505050565b60008135905061296a8161407c565b92915050565b60008135905061297f81614093565b92915050565b600081359050612994816140aa565b92915050565b6000815190506129a9816140aa565b92915050565b600082601f8301126129c4576129c3613a1c565b5b81356129d48482602086016128d7565b91505092915050565b600082601f8301126129f2576129f1613a1c565b5b8135612a02848260208601612919565b91505092915050565b600081359050612a1a816140c1565b92915050565b600060208284031215612a3657612a35613a2b565b5b6000612a448482850161295b565b91505092915050565b60008060408385031215612a6457612a63613a2b565b5b6000612a728582860161295b565b9250506020612a838582860161295b565b9150509250929050565b600080600060608486031215612aa657612aa5613a2b565b5b6000612ab48682870161295b565b9350506020612ac58682870161295b565b9250506040612ad686828701612a0b565b9150509250925092565b60008060008060808587031215612afa57612af9613a2b565b5b6000612b088782880161295b565b9450506020612b198782880161295b565b9350506040612b2a87828801612a0b565b925050606085013567ffffffffffffffff811115612b4b57612b4a613a26565b5b612b57878288016129af565b91505092959194509250565b60008060408385031215612b7a57612b79613a2b565b5b6000612b888582860161295b565b9250506020612b9985828601612970565b9150509250929050565b60008060408385031215612bba57612bb9613a2b565b5b6000612bc88582860161295b565b9250506020612bd985828601612a0b565b9150509250929050565b600060208284031215612bf957612bf8613a2b565b5b6000612c0784828501612970565b91505092915050565b600060208284031215612c2657612c25613a2b565b5b6000612c3484828501612985565b91505092915050565b600060208284031215612c5357612c52613a2b565b5b6000612c618482850161299a565b91505092915050565b600060208284031215612c8057612c7f613a2b565b5b600082013567ffffffffffffffff811115612c9e57612c9d613a26565b5b612caa848285016129dd565b91505092915050565b600060208284031215612cc957612cc8613a2b565b5b6000612cd784828501612a0b565b91505092915050565b612ce98161379e565b82525050565b612cf8816137b0565b82525050565b6000612d098261363b565b612d138185613651565b9350612d23818560208601613821565b612d2c81613a30565b840191505092915050565b6000612d4282613646565b612d4c818561366d565b9350612d5c818560208601613821565b612d6581613a30565b840191505092915050565b6000612d7b82613646565b612d85818561367e565b9350612d95818560208601613821565b80840191505092915050565b60008154612dae81613854565b612db8818661367e565b94506001821660008114612dd35760018114612de457612e17565b60ff19831686528186019350612e17565b612ded85613626565b60005b83811015612e0f57815481890152600182019150602081019050612df0565b838801955050505b50505092915050565b6000612e2d600b8361366d565b9150612e3882613a41565b602082019050919050565b6000612e5060228361366d565b9150612e5b82613a6a565b604082019050919050565b6000612e7360158361366d565b9150612e7e82613ab9565b602082019050919050565b6000612e9660208361366d565b9150612ea182613ae2565b602082019050919050565b6000612eb960328361366d565b9150612ec482613b0b565b604082019050919050565b6000612edc602f8361366d565b9150612ee782613b5a565b604082019050919050565b6000612eff60268361366d565b9150612f0a82613ba9565b604082019050919050565b6000612f2260258361366d565b9150612f2d82613bf8565b604082019050919050565b6000612f45601c8361366d565b9150612f5082613c47565b602082019050919050565b6000612f6860148361366d565b9150612f7382613c70565b602082019050919050565b6000612f8b60248361366d565b9150612f9682613c99565b604082019050919050565b6000612fae60198361366d565b9150612fb982613ce8565b602082019050919050565b6000612fd1602c8361366d565b9150612fdc82613d11565b604082019050919050565b6000612ff460388361366d565b9150612fff82613d60565b604082019050919050565b6000613017602a8361366d565b915061302282613daf565b604082019050919050565b600061303a60298361366d565b915061304582613dfe565b604082019050919050565b600061305d60208361366d565b915061306882613e4d565b602082019050919050565b6000613080602c8361366d565b915061308b82613e76565b604082019050919050565b60006130a360208361366d565b91506130ae82613ec5565b602082019050919050565b60006130c6602f8361366d565b91506130d182613eee565b604082019050919050565b60006130e960218361366d565b91506130f482613f3d565b604082019050919050565b600061310c602a8361366d565b915061311782613f8c565b604082019050919050565b600061312f600083613662565b915061313a82613fdb565b600082019050919050565b600061315260318361366d565b915061315d82613fde565b604082019050919050565b600061317560248361366d565b91506131808261402d565b604082019050919050565b61319481613808565b82525050565b60006131a68286612d70565b91506131b28285612d70565b91506131be8284612da1565b9150819050949350505050565b60006131d682613122565b9150819050919050565b60006020820190506131f56000830184612ce0565b92915050565b60006080820190506132106000830187612ce0565b61321d6020830186612ce0565b61322a604083018561318b565b818103606083015261323c8184612cfe565b905095945050505050565b600060208201905061325c6000830184612cef565b92915050565b6000602082019050818103600083015261327c8184612d37565b905092915050565b6000602082019050818103600083015261329d81612e20565b9050919050565b600060208201905081810360008301526132bd81612e43565b9050919050565b600060208201905081810360008301526132dd81612e66565b9050919050565b600060208201905081810360008301526132fd81612e89565b9050919050565b6000602082019050818103600083015261331d81612eac565b9050919050565b6000602082019050818103600083015261333d81612ecf565b9050919050565b6000602082019050818103600083015261335d81612ef2565b9050919050565b6000602082019050818103600083015261337d81612f15565b9050919050565b6000602082019050818103600083015261339d81612f38565b9050919050565b600060208201905081810360008301526133bd81612f5b565b9050919050565b600060208201905081810360008301526133dd81612f7e565b9050919050565b600060208201905081810360008301526133fd81612fa1565b9050919050565b6000602082019050818103600083015261341d81612fc4565b9050919050565b6000602082019050818103600083015261343d81612fe7565b9050919050565b6000602082019050818103600083015261345d8161300a565b9050919050565b6000602082019050818103600083015261347d8161302d565b9050919050565b6000602082019050818103600083015261349d81613050565b9050919050565b600060208201905081810360008301526134bd81613073565b9050919050565b600060208201905081810360008301526134dd81613096565b9050919050565b600060208201905081810360008301526134fd816130b9565b9050919050565b6000602082019050818103600083015261351d816130dc565b9050919050565b6000602082019050818103600083015261353d816130ff565b9050919050565b6000602082019050818103600083015261355d81613145565b9050919050565b6000602082019050818103600083015261357d81613168565b9050919050565b6000602082019050613599600083018461318b565b92915050565b60006135a96135ba565b90506135b58282613886565b919050565b6000604051905090565b600067ffffffffffffffff8211156135df576135de6139ed565b5b6135e882613a30565b9050602081019050919050565b600067ffffffffffffffff8211156136105761360f6139ed565b5b61361982613a30565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061369482613808565b915061369f83613808565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136d4576136d3613931565b5b828201905092915050565b60006136ea82613808565b91506136f583613808565b92508261370557613704613960565b5b828204905092915050565b600061371b82613808565b915061372683613808565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561375f5761375e613931565b5b828202905092915050565b600061377582613808565b915061378083613808565b92508282101561379357613792613931565b5b828203905092915050565b60006137a9826137e8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561383f578082015181840152602081019050613824565b8381111561384e576000848401525b50505050565b6000600282049050600182168061386c57607f821691505b602082108114156138805761387f61398f565b5b50919050565b61388f82613a30565b810181811067ffffffffffffffff821117156138ae576138ad6139ed565b5b80604052505050565b60006138c282613808565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138f5576138f4613931565b5b600182019050919050565b600061390b82613808565b915061391683613808565b92508261392657613925613960565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f45786365656473206d6178696d756d20746173747920626f6e6573207375707060008201527f6c79000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682045746865722073656e740000000000000000000000600082015250565b7f4e6f206d6f7265206672656520307820546173747920426f6e6573206c656674600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e7420332066726565205461737479204260008201527f6f6e6573207065722077616c6c65740000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e7420323020746173747920426f6e657360008201527f20617420612074696d6500000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e7420332066726565207461737479204260008201527f6f6e657300000000000000000000000000000000000000000000000000000000602082015250565b6140858161379e565b811461409057600080fd5b50565b61409c816137b0565b81146140a757600080fd5b50565b6140b3816137bc565b81146140be57600080fd5b50565b6140ca81613808565b81146140d557600080fd5b5056fea2646970667358221220232df3dc02188c2231115a2fb65d679ac6ef7f3c2e0cb8120fc22fcf51c6eecd64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d58636133557648444d68366e4b564e757953746278786f4c6f43615273545848486333796e63624673754b392f00000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106da578063d755bf9914610717578063e985e9c514610740578063f19e75d41461077d578063f2fde38b146107a6576101f9565b8063a22cb46514610634578063b0551ac41461065d578063b88d4fde14610686578063c6682862146106af576101f9565b806391b7f5ed116100dc57806391b7f5ed1461059957806395d89b41146105c25780639d1b464a146105ed578063a0712d6814610618576101f9565b806370a08231146104ef578063715018a61461052c57806379b6ed36146105435780638da5cb5b1461056e576101f9565b80632ddbd13a11610190578063485a68a31161015f578063485a68a31461040857806355f804b3146104335780635c975abb1461045c5780636352211e146104875780636c143862146104c4576101f9565b80632ddbd13a146103745780633ccfd60b1461039f57806342842e0e146103b65780634695da2c146103df576101f9565b8063095ea7b3116101cc578063095ea7b3146102cc57806310b0c052146102f557806318160ddd1461032057806323b872dd1461034b576101f9565b806301ffc9a7146101fe57806302329a291461023b57806306fdde0314610264578063081812fc1461028f575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612c10565b6107cf565b6040516102329190613247565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d9190612be3565b6108b1565b005b34801561027057600080fd5b5061027961094a565b6040516102869190613262565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b19190612cb3565b6109dc565b6040516102c391906131e0565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190612ba3565b610a61565b005b34801561030157600080fd5b5061030a610b79565b6040516103179190613584565b60405180910390f35b34801561032c57600080fd5b50610335610b7f565b6040516103429190613584565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612a8d565b610b90565b005b34801561038057600080fd5b50610389610bf0565b6040516103969190613584565b60405180910390f35b3480156103ab57600080fd5b506103b4610bf6565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190612a8d565b610d27565b005b3480156103eb57600080fd5b5061040660048036038101906104019190612cb3565b610d47565b005b34801561041457600080fd5b5061041d610ee4565b60405161042a9190613584565b60405180910390f35b34801561043f57600080fd5b5061045a60048036038101906104559190612c6a565b610eea565b005b34801561046857600080fd5b50610471610f80565b60405161047e9190613247565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190612cb3565b610f93565b6040516104bb91906131e0565b60405180910390f35b3480156104d057600080fd5b506104d9611045565b6040516104e69190613584565b60405180910390f35b3480156104fb57600080fd5b5061051660048036038101906105119190612a20565b611056565b6040516105239190613584565b60405180910390f35b34801561053857600080fd5b5061054161110e565b005b34801561054f57600080fd5b50610558611196565b6040516105659190613262565b60405180910390f35b34801561057a57600080fd5b50610583611224565b60405161059091906131e0565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612cb3565b61124e565b005b3480156105ce57600080fd5b506105d76112d4565b6040516105e49190613262565b60405180910390f35b3480156105f957600080fd5b50610602611366565b60405161060f9190613584565b60405180910390f35b610632600480360381019061062d9190612cb3565b61136c565b005b34801561064057600080fd5b5061065b60048036038101906106569190612b63565b6114c6565b005b34801561066957600080fd5b50610684600480360381019061067f9190612cb3565b6114dc565b005b34801561069257600080fd5b506106ad60048036038101906106a89190612ae0565b611562565b005b3480156106bb57600080fd5b506106c46115c4565b6040516106d19190613262565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190612cb3565b611652565b60405161070e9190613262565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190612cb3565b6116fc565b005b34801561074c57600080fd5b5061076760048036038101906107629190612a4d565b611782565b6040516107749190613247565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612cb3565b611816565b005b3480156107b257600080fd5b506107cd60048036038101906107c89190612a20565b611909565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611a01565b5b9050919050565b6108b9611a6b565b73ffffffffffffffffffffffffffffffffffffffff166108d7611224565b73ffffffffffffffffffffffffffffffffffffffff161461092d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610924906134c4565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b60606000805461095990613854565b80601f016020809104026020016040519081016040528092919081815260200182805461098590613854565b80156109d25780601f106109a7576101008083540402835291602001916109d2565b820191906000526020600020905b8154815290600101906020018083116109b557829003601f168201915b5050505050905090565b60006109e782611a73565b610a26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1d906134a4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6c82610f93565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad490613504565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610afc611a6b565b73ffffffffffffffffffffffffffffffffffffffff161480610b2b5750610b2a81610b25611a6b565b611782565b5b610b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6190613424565b60405180910390fd5b610b748383611adf565b505050565b600c5481565b6000610b8b6007611b98565b905090565b610ba1610b9b611a6b565b82611ba6565b610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790613544565b60405180910390fd5b610beb838383611c84565b505050565b600d5481565b610bfe611a6b565b73ffffffffffffffffffffffffffffffffffffffff16610c1c611224565b73ffffffffffffffffffffffffffffffffffffffff1614610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c69906134c4565b60405180910390fd5b600047905060003373ffffffffffffffffffffffffffffffffffffffff1682604051610c9d906131cb565b60006040518083038185875af1925050503d8060008114610cda576040519150601f19603f3d011682016040523d82523d6000602084013e610cdf565b606091505b5050905080610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a906133a4565b60405180910390fd5b5050565b610d4283838360405180602001604052806000815250611562565b505050565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54610d96919061376a565b90506000610da46007611b98565b9050600f60009054906101000a900460ff1615610df6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ded90613284565b60405180910390fd5b60048310610e39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3090613564565b60405180910390fd5b600e548382610e489190613689565b10610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f906132e4565b60405180910390fd5b60008211610ecb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec290613324565b60405180910390fd5b610ed53384611eeb565b610edf3384611f45565b505050565b600e5481565b610ef2611a6b565b73ffffffffffffffffffffffffffffffffffffffff16610f10611224565b73ffffffffffffffffffffffffffffffffffffffff1614610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d906134c4565b60405180910390fd5b8060089080519060200190610f7c929190612834565b5050565b600f60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390613464565b60405180910390fd5b80915050919050565b60006110516007611b98565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90613444565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611116611a6b565b73ffffffffffffffffffffffffffffffffffffffff16611134611224565b73ffffffffffffffffffffffffffffffffffffffff161461118a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611181906134c4565b60405180910390fd5b6111946000611f85565b565b600a80546111a390613854565b80601f01602080910402602001604051908101604052809291908181526020018280546111cf90613854565b801561121c5780601f106111f15761010080835404028352916020019161121c565b820191906000526020600020905b8154815290600101906020018083116111ff57829003601f168201915b505050505081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611256611a6b565b73ffffffffffffffffffffffffffffffffffffffff16611274611224565b73ffffffffffffffffffffffffffffffffffffffff16146112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c1906134c4565b60405180910390fd5b80600b8190555050565b6060600180546112e390613854565b80601f016020809104026020016040519081016040528092919081815260200182805461130f90613854565b801561135c5780601f106113315761010080835404028352916020019161135c565b820191906000526020600020905b81548152906001019060200180831161133f57829003601f168201915b5050505050905090565b600b5481565b60006113786007611b98565b9050600f60009054906101000a900460ff16156113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c190613284565b60405180910390fd5b6015821061140d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140490613524565b60405180910390fd5b6001600d5461141c9190613689565b82826114289190613689565b10611468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145f906132a4565b60405180910390fd5b81600b546114769190613710565b3410156114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af906132c4565b60405180910390fd5b6114c23383611f45565b5050565b6114d86114d1611a6b565b838361204b565b5050565b6114e4611a6b565b73ffffffffffffffffffffffffffffffffffffffff16611502611224565b73ffffffffffffffffffffffffffffffffffffffff1614611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f906134c4565b60405180910390fd5b80600c8190555050565b61157361156d611a6b565b83611ba6565b6115b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a990613544565b60405180910390fd5b6115be848484846121b8565b50505050565b600980546115d190613854565b80601f01602080910402602001604051908101604052809291908181526020018280546115fd90613854565b801561164a5780601f1061161f5761010080835404028352916020019161164a565b820191906000526020600020905b81548152906001019060200180831161162d57829003601f168201915b505050505081565b606061165d82611a73565b61169c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611693906134e4565b60405180910390fd5b60006116a6612214565b905060008151116116c657604051806020016040528060008152506116f4565b806116d0846122a6565b60096040516020016116e49392919061319a565b6040516020818303038152906040525b915050919050565b611704611a6b565b73ffffffffffffffffffffffffffffffffffffffff16611722611224565b73ffffffffffffffffffffffffffffffffffffffff1614611778576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176f906134c4565b60405180910390fd5b80600e8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61181e611a6b565b73ffffffffffffffffffffffffffffffffffffffff1661183c611224565b73ffffffffffffffffffffffffffffffffffffffff1614611892576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611889906134c4565b60405180910390fd5b600061189e6007611b98565b90506001600d546118af9190613689565b82826118bb9190613689565b106118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f2906132a4565b60405180910390fd5b6119053383611f45565b5050565b611911611a6b565b73ffffffffffffffffffffffffffffffffffffffff1661192f611224565b73ffffffffffffffffffffffffffffffffffffffff1614611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c906134c4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ec90613344565b60405180910390fd5b6119fe81611f85565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611b5283610f93565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611bb182611a73565b611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be790613404565b60405180910390fd5b6000611bfb83610f93565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c6a57508373ffffffffffffffffffffffffffffffffffffffff16611c52846109dc565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c7b5750611c7a8185611782565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ca482610f93565b73ffffffffffffffffffffffffffffffffffffffff1614611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf190613364565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d61906133c4565b60405180910390fd5b611d75838383612407565b611d80600082611adf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd0919061376a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e279190613689565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ee683838361240c565b505050565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f3a9190613689565b925050819055505050565b60005b81811015611f8057611f5a6007612411565b611f6d83611f686007611b98565b612427565b8080611f78906138b7565b915050611f48565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b1906133e4565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121ab9190613247565b60405180910390a3505050565b6121c3848484611c84565b6121cf84848484612445565b61220e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220590613304565b60405180910390fd5b50505050565b60606008805461222390613854565b80601f016020809104026020016040519081016040528092919081815260200182805461224f90613854565b801561229c5780601f106122715761010080835404028352916020019161229c565b820191906000526020600020905b81548152906001019060200180831161227f57829003601f168201915b5050505050905090565b606060008214156122ee576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612402565b600082905060005b60008214612320578080612309906138b7565b915050600a8261231991906136df565b91506122f6565b60008167ffffffffffffffff81111561233c5761233b6139ed565b5b6040519080825280601f01601f19166020018201604052801561236e5781602001600182028036833780820191505090505b5090505b600085146123fb57600182612387919061376a565b9150600a856123969190613900565b60306123a29190613689565b60f81b8183815181106123b8576123b76139be565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123f491906136df565b9450612372565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b6124418282604051806020016040528060008152506125dc565b5050565b60006124668473ffffffffffffffffffffffffffffffffffffffff16612637565b156125cf578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261248f611a6b565b8786866040518563ffffffff1660e01b81526004016124b194939291906131fb565b602060405180830381600087803b1580156124cb57600080fd5b505af19250505080156124fc57506040513d601f19601f820116820180604052508101906124f99190612c3d565b60015b61257f573d806000811461252c576040519150601f19603f3d011682016040523d82523d6000602084013e612531565b606091505b50600081511415612577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256e90613304565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125d4565b600190505b949350505050565b6125e6838361265a565b6125f36000848484612445565b612632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262990613304565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c190613484565b60405180910390fd5b6126d381611a73565b15612713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270a90613384565b60405180910390fd5b61271f60008383612407565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461276f9190613689565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128306000838361240c565b5050565b82805461284090613854565b90600052602060002090601f01602090048101928261286257600085556128a9565b82601f1061287b57805160ff19168380011785556128a9565b828001600101855582156128a9579182015b828111156128a857825182559160200191906001019061288d565b5b5090506128b691906128ba565b5090565b5b808211156128d35760008160009055506001016128bb565b5090565b60006128ea6128e5846135c4565b61359f565b90508281526020810184848401111561290657612905613a21565b5b612911848285613812565b509392505050565b600061292c612927846135f5565b61359f565b90508281526020810184848401111561294857612947613a21565b5b612953848285613812565b509392505050565b60008135905061296a8161407c565b92915050565b60008135905061297f81614093565b92915050565b600081359050612994816140aa565b92915050565b6000815190506129a9816140aa565b92915050565b600082601f8301126129c4576129c3613a1c565b5b81356129d48482602086016128d7565b91505092915050565b600082601f8301126129f2576129f1613a1c565b5b8135612a02848260208601612919565b91505092915050565b600081359050612a1a816140c1565b92915050565b600060208284031215612a3657612a35613a2b565b5b6000612a448482850161295b565b91505092915050565b60008060408385031215612a6457612a63613a2b565b5b6000612a728582860161295b565b9250506020612a838582860161295b565b9150509250929050565b600080600060608486031215612aa657612aa5613a2b565b5b6000612ab48682870161295b565b9350506020612ac58682870161295b565b9250506040612ad686828701612a0b565b9150509250925092565b60008060008060808587031215612afa57612af9613a2b565b5b6000612b088782880161295b565b9450506020612b198782880161295b565b9350506040612b2a87828801612a0b565b925050606085013567ffffffffffffffff811115612b4b57612b4a613a26565b5b612b57878288016129af565b91505092959194509250565b60008060408385031215612b7a57612b79613a2b565b5b6000612b888582860161295b565b9250506020612b9985828601612970565b9150509250929050565b60008060408385031215612bba57612bb9613a2b565b5b6000612bc88582860161295b565b9250506020612bd985828601612a0b565b9150509250929050565b600060208284031215612bf957612bf8613a2b565b5b6000612c0784828501612970565b91505092915050565b600060208284031215612c2657612c25613a2b565b5b6000612c3484828501612985565b91505092915050565b600060208284031215612c5357612c52613a2b565b5b6000612c618482850161299a565b91505092915050565b600060208284031215612c8057612c7f613a2b565b5b600082013567ffffffffffffffff811115612c9e57612c9d613a26565b5b612caa848285016129dd565b91505092915050565b600060208284031215612cc957612cc8613a2b565b5b6000612cd784828501612a0b565b91505092915050565b612ce98161379e565b82525050565b612cf8816137b0565b82525050565b6000612d098261363b565b612d138185613651565b9350612d23818560208601613821565b612d2c81613a30565b840191505092915050565b6000612d4282613646565b612d4c818561366d565b9350612d5c818560208601613821565b612d6581613a30565b840191505092915050565b6000612d7b82613646565b612d85818561367e565b9350612d95818560208601613821565b80840191505092915050565b60008154612dae81613854565b612db8818661367e565b94506001821660008114612dd35760018114612de457612e17565b60ff19831686528186019350612e17565b612ded85613626565b60005b83811015612e0f57815481890152600182019150602081019050612df0565b838801955050505b50505092915050565b6000612e2d600b8361366d565b9150612e3882613a41565b602082019050919050565b6000612e5060228361366d565b9150612e5b82613a6a565b604082019050919050565b6000612e7360158361366d565b9150612e7e82613ab9565b602082019050919050565b6000612e9660208361366d565b9150612ea182613ae2565b602082019050919050565b6000612eb960328361366d565b9150612ec482613b0b565b604082019050919050565b6000612edc602f8361366d565b9150612ee782613b5a565b604082019050919050565b6000612eff60268361366d565b9150612f0a82613ba9565b604082019050919050565b6000612f2260258361366d565b9150612f2d82613bf8565b604082019050919050565b6000612f45601c8361366d565b9150612f5082613c47565b602082019050919050565b6000612f6860148361366d565b9150612f7382613c70565b602082019050919050565b6000612f8b60248361366d565b9150612f9682613c99565b604082019050919050565b6000612fae60198361366d565b9150612fb982613ce8565b602082019050919050565b6000612fd1602c8361366d565b9150612fdc82613d11565b604082019050919050565b6000612ff460388361366d565b9150612fff82613d60565b604082019050919050565b6000613017602a8361366d565b915061302282613daf565b604082019050919050565b600061303a60298361366d565b915061304582613dfe565b604082019050919050565b600061305d60208361366d565b915061306882613e4d565b602082019050919050565b6000613080602c8361366d565b915061308b82613e76565b604082019050919050565b60006130a360208361366d565b91506130ae82613ec5565b602082019050919050565b60006130c6602f8361366d565b91506130d182613eee565b604082019050919050565b60006130e960218361366d565b91506130f482613f3d565b604082019050919050565b600061310c602a8361366d565b915061311782613f8c565b604082019050919050565b600061312f600083613662565b915061313a82613fdb565b600082019050919050565b600061315260318361366d565b915061315d82613fde565b604082019050919050565b600061317560248361366d565b91506131808261402d565b604082019050919050565b61319481613808565b82525050565b60006131a68286612d70565b91506131b28285612d70565b91506131be8284612da1565b9150819050949350505050565b60006131d682613122565b9150819050919050565b60006020820190506131f56000830184612ce0565b92915050565b60006080820190506132106000830187612ce0565b61321d6020830186612ce0565b61322a604083018561318b565b818103606083015261323c8184612cfe565b905095945050505050565b600060208201905061325c6000830184612cef565b92915050565b6000602082019050818103600083015261327c8184612d37565b905092915050565b6000602082019050818103600083015261329d81612e20565b9050919050565b600060208201905081810360008301526132bd81612e43565b9050919050565b600060208201905081810360008301526132dd81612e66565b9050919050565b600060208201905081810360008301526132fd81612e89565b9050919050565b6000602082019050818103600083015261331d81612eac565b9050919050565b6000602082019050818103600083015261333d81612ecf565b9050919050565b6000602082019050818103600083015261335d81612ef2565b9050919050565b6000602082019050818103600083015261337d81612f15565b9050919050565b6000602082019050818103600083015261339d81612f38565b9050919050565b600060208201905081810360008301526133bd81612f5b565b9050919050565b600060208201905081810360008301526133dd81612f7e565b9050919050565b600060208201905081810360008301526133fd81612fa1565b9050919050565b6000602082019050818103600083015261341d81612fc4565b9050919050565b6000602082019050818103600083015261343d81612fe7565b9050919050565b6000602082019050818103600083015261345d8161300a565b9050919050565b6000602082019050818103600083015261347d8161302d565b9050919050565b6000602082019050818103600083015261349d81613050565b9050919050565b600060208201905081810360008301526134bd81613073565b9050919050565b600060208201905081810360008301526134dd81613096565b9050919050565b600060208201905081810360008301526134fd816130b9565b9050919050565b6000602082019050818103600083015261351d816130dc565b9050919050565b6000602082019050818103600083015261353d816130ff565b9050919050565b6000602082019050818103600083015261355d81613145565b9050919050565b6000602082019050818103600083015261357d81613168565b9050919050565b6000602082019050613599600083018461318b565b92915050565b60006135a96135ba565b90506135b58282613886565b919050565b6000604051905090565b600067ffffffffffffffff8211156135df576135de6139ed565b5b6135e882613a30565b9050602081019050919050565b600067ffffffffffffffff8211156136105761360f6139ed565b5b61361982613a30565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061369482613808565b915061369f83613808565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156136d4576136d3613931565b5b828201905092915050565b60006136ea82613808565b91506136f583613808565b92508261370557613704613960565b5b828204905092915050565b600061371b82613808565b915061372683613808565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561375f5761375e613931565b5b828202905092915050565b600061377582613808565b915061378083613808565b92508282101561379357613792613931565b5b828203905092915050565b60006137a9826137e8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561383f578082015181840152602081019050613824565b8381111561384e576000848401525b50505050565b6000600282049050600182168061386c57607f821691505b602082108114156138805761387f61398f565b5b50919050565b61388f82613a30565b810181811067ffffffffffffffff821117156138ae576138ad6139ed565b5b80604052505050565b60006138c282613808565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138f5576138f4613931565b5b600182019050919050565b600061390b82613808565b915061391683613808565b92508261392657613925613960565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f53616c6520706175736564000000000000000000000000000000000000000000600082015250565b7f45786365656473206d6178696d756d20746173747920626f6e6573207375707060008201527f6c79000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682045746865722073656e740000000000000000000000600082015250565b7f4e6f206d6f7265206672656520307820546173747920426f6e6573206c656674600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e7420332066726565205461737479204260008201527f6f6e6573207065722077616c6c65740000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e7420323020746173747920426f6e657360008201527f20617420612074696d6500000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f752063616e206f6e6c79206d696e7420332066726565207461737479204260008201527f6f6e657300000000000000000000000000000000000000000000000000000000602082015250565b6140858161379e565b811461409057600080fd5b50565b61409c816137b0565b81146140a757600080fd5b50565b6140b3816137bc565b81146140be57600080fd5b50565b6140ca81613808565b81146140d557600080fd5b5056fea2646970667358221220232df3dc02188c2231115a2fb65d679ac6ef7f3c2e0cb8120fc22fcf51c6eecd64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d58636133557648444d68366e4b564e757953746278786f4c6f43615273545848486333796e63624673754b392f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmXca3UvHDMh6nKVNuyStbxxoLoCaRsTXHHc3yncbFsuK9/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d58636133557648444d68366e4b564e757953746278786f
Arg [3] : 4c6f43615273545848486333796e63624673754b392f00000000000000000000


Deployed Bytecode Sourcemap

38851:4265:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25574:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42376:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26519:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28078:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27601:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39159:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41139:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28828:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39211:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42904:209;;;;;;;;;;;;;:::i;:::-;;29238:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39626:610;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39246:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42664:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39282:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26213:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41025:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25943:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6195:103;;;;;;;;;;;;;:::i;:::-;;39079:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5544:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42457:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26688:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39112:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40244:531;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28371:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42229:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29494:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39035:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41256:642;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42562:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28597:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41967:253;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6453:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25574:305;25676:4;25728:25;25713:40;;;:11;:40;;;;:105;;;;25785:33;25770:48;;;:11;:48;;;;25713:105;:158;;;;25835:36;25859:11;25835:23;:36::i;:::-;25713:158;25693:178;;25574:305;;;:::o;42376:73::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42438:3:::1;42429:6;;:12;;;;;;;;;;;;;;;;;;42376:73:::0;:::o;26519:100::-;26573:13;26606:5;26599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26519:100;:::o;28078:221::-;28154:7;28182:16;28190:7;28182;:16::i;:::-;28174:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28267:15;:24;28283:7;28267:24;;;;;;;;;;;;;;;;;;;;;28260:31;;28078:221;;;:::o;27601:411::-;27682:13;27698:23;27713:7;27698:14;:23::i;:::-;27682:39;;27746:5;27740:11;;:2;:11;;;;27732:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27840:5;27824:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27849:37;27866:5;27873:12;:10;:12::i;:::-;27849:16;:37::i;:::-;27824:62;27802:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27983:21;27992:2;27996:7;27983:8;:21::i;:::-;27671:341;27601:411;;:::o;39159:45::-;;;;:::o;41139:103::-;41183:7;41210:24;:14;:22;:24::i;:::-;41203:31;;41139:103;:::o;28828:339::-;29023:41;29042:12;:10;:12::i;:::-;29056:7;29023:18;:41::i;:::-;29015:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29131:28;29141:4;29147:2;29151:7;29131:9;:28::i;:::-;28828:339;;;:::o;39211:28::-;;;;:::o;42904:209::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42952:14:::1;42969:21;42952:38;;43002:12;43020:10;:15;;43043:6;43020:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43001:53;;;43073:7;43065:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;42941:172;;42904:209::o:0;29238:185::-;29376:39;29393:4;29399:2;29403:7;29376:39;;;;;;;;;;;;:16;:39::i;:::-;29238:185;;;:::o;39626:610::-;39692:25;39749:16;:28;39766:10;39749:28;;;;;;;;;;;;;;;;39720:26;;:57;;;;:::i;:::-;39692:85;;39788:14;39805:24;:14;:22;:24::i;:::-;39788:41;;39849:6;;;;;;;;;;;39848:7;39840:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;39903:1;39890:10;:14;39882:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;39986:7;;39973:10;39964:6;:19;;;;:::i;:::-;:29;39956:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;40069:1;40049:17;:21;40041:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;40136:43;40156:10;40168;40136:19;:43::i;:::-;40190:38;40205:10;40217;40190:14;:38::i;:::-;39681:555;;39626:610;:::o;39246:29::-;;;;:::o;42664:104::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42749:11:::1;42739:7;:21;;;;;;;;;;;;:::i;:::-;;42664:104:::0;:::o;39282:25::-;;;;;;;;;;;;;:::o;26213:239::-;26285:7;26305:13;26321:7;:16;26329:7;26321:16;;;;;;;;;;;;;;;;;;;;;26305:32;;26373:1;26356:19;;:5;:19;;;;26348:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26439:5;26432:12;;;26213:239;;;:::o;41025:106::-;41072:7;41099:24;:14;:22;:24::i;:::-;41092:31;;41025:106;:::o;25943:208::-;26015:7;26060:1;26043:19;;:5;:19;;;;26035:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26127:9;:16;26137:5;26127:16;;;;;;;;;;;;;;;;26120:23;;25943:208;;;:::o;6195:103::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;39079:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5544:87::-;5590:7;5617:6;;;;;;;;;;;5610:13;;5544:87;:::o;42457:97::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42537:9:::1;42522:12;:24;;;;42457:97:::0;:::o;26688:104::-;26744:13;26777:7;26770:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26688:104;:::o;39112:40::-;;;;:::o;40244:531::-;40306:14;40323:24;:14;:22;:24::i;:::-;40306:41;;40367:6;;;;;;;;;;;40366:7;40358:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;40421:2;40408:10;:15;40400:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;40533:1;40525:5;;:9;;;;:::i;:::-;40512:10;40503:6;:19;;;;:::i;:::-;:31;40481:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;40657:10;40642:12;;:25;;;;:::i;:::-;40629:9;:38;;40607:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;40729:38;40744:10;40756;40729:14;:38::i;:::-;40295:480;40244:531;:::o;28371:155::-;28466:52;28485:12;:10;:12::i;:::-;28499:8;28509;28466:18;:52::i;:::-;28371:155;;:::o;42229:141::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42345:17:::1;42316:26;:46;;;;42229:141:::0;:::o;29494:328::-;29669:41;29688:12;:10;:12::i;:::-;29702:7;29669:18;:41::i;:::-;29661:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29775:39;29789:4;29795:2;29799:7;29808:5;29775:13;:39::i;:::-;29494:328;;;;:::o;39035:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41256:642::-;41374:13;41427:16;41435:7;41427;:16::i;:::-;41405:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;41531:28;41562:10;:8;:10::i;:::-;41531:41;;41634:1;41609:14;41603:28;:32;:287;;;;;;;;;;;;;;;;;41727:14;41768:18;:7;:16;:18::i;:::-;41813:13;41684:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41603:287;41583:307;;;41256:642;;;:::o;42562:92::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42638:8:::1;42628:7;:18;;;;42562:92:::0;:::o;28597:164::-;28694:4;28718:18;:25;28737:5;28718:25;;;;;;;;;;;;;;;:35;28744:8;28718:35;;;;;;;;;;;;;;;;;;;;;;;;;28711:42;;28597:164;;;;:::o;41967:253::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42034:14:::1;42051:24;:14;:22;:24::i;:::-;42034:41;;42124:1;42116:5;;:9;;;;:::i;:::-;42103:10;42094:6;:19;;;;:::i;:::-;:31;42086:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;42174:38;42189:10;42201;42174:14;:38::i;:::-;42023:197;41967:253:::0;:::o;6453:201::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6562:1:::1;6542:22;;:8;:22;;;;6534:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;18328:157::-;18413:4;18452:25;18437:40;;;:11;:40;;;;18430:47;;18328:157;;;:::o;4268:98::-;4321:7;4348:10;4341:17;;4268:98;:::o;31332:127::-;31397:4;31449:1;31421:30;;:7;:16;31429:7;31421:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31414:37;;31332:127;;;:::o;35478:174::-;35580:2;35553:15;:24;35569:7;35553:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35636:7;35632:2;35598:46;;35607:23;35622:7;35607:14;:23::i;:::-;35598:46;;;;;;;;;;;;35478:174;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;31626:348::-;31719:4;31744:16;31752:7;31744;:16::i;:::-;31736:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31820:13;31836:23;31851:7;31836:14;:23::i;:::-;31820:39;;31889:5;31878:16;;:7;:16;;;:51;;;;31922:7;31898:31;;:20;31910:7;31898:11;:20::i;:::-;:31;;;31878:51;:87;;;;31933:32;31950:5;31957:7;31933:16;:32::i;:::-;31878:87;31870:96;;;31626:348;;;;:::o;34735:625::-;34894:4;34867:31;;:23;34882:7;34867:14;:23::i;:::-;:31;;;34859:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34973:1;34959:16;;:2;:16;;;;34951:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35029:39;35050:4;35056:2;35060:7;35029:20;:39::i;:::-;35133:29;35150:1;35154:7;35133:8;:29::i;:::-;35194:1;35175:9;:15;35185:4;35175:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35223:1;35206:9;:13;35216:2;35206:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35254:2;35235:7;:16;35243:7;35235:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35293:7;35289:2;35274:27;;35283:4;35274:27;;;;;;;;;;;;35314:38;35334:4;35340:2;35344:7;35314:19;:38::i;:::-;34735:625;;;:::o;42776:120::-;42883:5;42855:16;:24;42872:6;42855:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;42776:120;;:::o;40783:234::-;40865:9;40860:150;40884:10;40880:1;:14;40860:150;;;40916:26;:14;:24;:26::i;:::-;40957:41;40967:4;40973:24;:14;:22;:24::i;:::-;40957:9;:41::i;:::-;40896:3;;;;;:::i;:::-;;;;40860:150;;;;40783:234;;:::o;6814:191::-;6888:16;6907:6;;;;;;;;;;;6888:25;;6933:8;6924:6;;:17;;;;;;;;;;;;;;;;;;6988:8;6957:40;;6978:8;6957:40;;;;;;;;;;;;6877:128;6814:191;:::o;35794:315::-;35949:8;35940:17;;:5;:17;;;;35932:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36036:8;35998:18;:25;36017:5;35998:25;;;;;;;;;;;;;;;:35;36024:8;35998:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36082:8;36060:41;;36075:5;36060:41;;;36092:8;36060:41;;;;;;:::i;:::-;;;;;;;;35794:315;;;:::o;30704:::-;30861:28;30871:4;30877:2;30881:7;30861:9;:28::i;:::-;30908:48;30931:4;30937:2;30941:7;30950:5;30908:22;:48::i;:::-;30900:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30704:315;;;;:::o;39518:100::-;39570:13;39603:7;39596:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39518:100;:::o;1830:723::-;1886:13;2116:1;2107:5;:10;2103:53;;;2134:10;;;;;;;;;;;;;;;;;;;;;2103:53;2166:12;2181:5;2166:20;;2197:14;2222:78;2237:1;2229:4;:9;2222:78;;2255:8;;;;;:::i;:::-;;;;2286:2;2278:10;;;;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310:39;;2360:154;2376:1;2367:5;:10;2360:154;;2404:1;2394:11;;;;;:::i;:::-;;;2471:2;2463:5;:10;;;;:::i;:::-;2450:2;:24;;;;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2500:2;2491:11;;;;;:::i;:::-;;;2360:154;;;2538:6;2524:21;;;;;1830:723;;;;:::o;38045:126::-;;;;:::o;38556:125::-;;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;32316:110::-;32392:26;32402:2;32406:7;32392:26;;;;;;;;;;;;:9;:26::i;:::-;32316:110;;:::o;36674:799::-;36829:4;36850:15;:2;:13;;;:15::i;:::-;36846:620;;;36902:2;36886:36;;;36923:12;:10;:12::i;:::-;36937:4;36943:7;36952:5;36886:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36882:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37145:1;37128:6;:13;:18;37124:272;;;37171:60;;;;;;;;;;:::i;:::-;;;;;;;;37124:272;37346:6;37340:13;37331:6;37327:2;37323:15;37316:38;36882:529;37019:41;;;37009:51;;;:6;:51;;;;37002:58;;;;;36846:620;37450:4;37443:11;;36674:799;;;;;;;:::o;32653:321::-;32783:18;32789:2;32793:7;32783:5;:18::i;:::-;32834:54;32865:1;32869:2;32873:7;32882:5;32834:22;:54::i;:::-;32812:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32653:321;;;:::o;8245:326::-;8305:4;8562:1;8540:7;:19;;;:23;8533:30;;8245:326;;;:::o;33310:439::-;33404:1;33390:16;;:2;:16;;;;33382:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33463:16;33471:7;33463;:16::i;:::-;33462:17;33454:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33525:45;33554:1;33558:2;33562:7;33525:20;:45::i;:::-;33600:1;33583:9;:13;33593:2;33583:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33631:2;33612:7;:16;33620:7;33612:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33676:7;33672:2;33651:33;;33668:1;33651:33;;;;;;;;;;;;33697:44;33725:1;33729:2;33733:7;33697:19;:44::i;:::-;33310:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:366::-;9862:3;9883:67;9947:2;9942:3;9883:67;:::i;:::-;9876:74;;9959:93;10048:3;9959:93;:::i;:::-;10077:2;10072:3;10068:12;10061:19;;9720:366;;;:::o;10092:::-;10234:3;10255:67;10319:2;10314:3;10255:67;:::i;:::-;10248:74;;10331:93;10420:3;10331:93;:::i;:::-;10449:2;10444:3;10440:12;10433:19;;10092:366;;;:::o;10464:::-;10606:3;10627:67;10691:2;10686:3;10627:67;:::i;:::-;10620:74;;10703:93;10792:3;10703:93;:::i;:::-;10821:2;10816:3;10812:12;10805:19;;10464:366;;;:::o;10836:::-;10978:3;10999:67;11063:2;11058:3;10999:67;:::i;:::-;10992:74;;11075:93;11164:3;11075:93;:::i;:::-;11193:2;11188:3;11184:12;11177:19;;10836:366;;;:::o;11208:::-;11350:3;11371:67;11435:2;11430:3;11371:67;:::i;:::-;11364:74;;11447:93;11536:3;11447:93;:::i;:::-;11565:2;11560:3;11556:12;11549:19;;11208:366;;;:::o;11580:::-;11722:3;11743:67;11807:2;11802:3;11743:67;:::i;:::-;11736:74;;11819:93;11908:3;11819:93;:::i;:::-;11937:2;11932:3;11928:12;11921:19;;11580:366;;;:::o;11952:::-;12094:3;12115:67;12179:2;12174:3;12115:67;:::i;:::-;12108:74;;12191:93;12280:3;12191:93;:::i;:::-;12309:2;12304:3;12300:12;12293:19;;11952:366;;;:::o;12324:::-;12466:3;12487:67;12551:2;12546:3;12487:67;:::i;:::-;12480:74;;12563:93;12652:3;12563:93;:::i;:::-;12681:2;12676:3;12672:12;12665:19;;12324:366;;;:::o;12696:::-;12838:3;12859:67;12923:2;12918:3;12859:67;:::i;:::-;12852:74;;12935:93;13024:3;12935:93;:::i;:::-;13053:2;13048:3;13044:12;13037:19;;12696:366;;;:::o;13068:::-;13210:3;13231:67;13295:2;13290:3;13231:67;:::i;:::-;13224:74;;13307:93;13396:3;13307:93;:::i;:::-;13425:2;13420:3;13416:12;13409:19;;13068:366;;;:::o;13440:::-;13582:3;13603:67;13667:2;13662:3;13603:67;:::i;:::-;13596:74;;13679:93;13768:3;13679:93;:::i;:::-;13797:2;13792:3;13788:12;13781:19;;13440:366;;;:::o;13812:::-;13954:3;13975:67;14039:2;14034:3;13975:67;:::i;:::-;13968:74;;14051:93;14140:3;14051:93;:::i;:::-;14169:2;14164:3;14160:12;14153:19;;13812:366;;;:::o;14184:::-;14326:3;14347:67;14411:2;14406:3;14347:67;:::i;:::-;14340:74;;14423:93;14512:3;14423:93;:::i;:::-;14541:2;14536:3;14532:12;14525:19;;14184:366;;;:::o;14556:::-;14698:3;14719:67;14783:2;14778:3;14719:67;:::i;:::-;14712:74;;14795:93;14884:3;14795:93;:::i;:::-;14913:2;14908:3;14904:12;14897:19;;14556:366;;;:::o;14928:::-;15070:3;15091:67;15155:2;15150:3;15091:67;:::i;:::-;15084:74;;15167:93;15256:3;15167:93;:::i;:::-;15285:2;15280:3;15276:12;15269:19;;14928:366;;;:::o;15300:::-;15442:3;15463:67;15527:2;15522:3;15463:67;:::i;:::-;15456:74;;15539:93;15628:3;15539:93;:::i;:::-;15657:2;15652:3;15648:12;15641:19;;15300:366;;;:::o;15672:::-;15814:3;15835:67;15899:2;15894:3;15835:67;:::i;:::-;15828:74;;15911:93;16000:3;15911:93;:::i;:::-;16029:2;16024:3;16020:12;16013:19;;15672:366;;;:::o;16044:::-;16186:3;16207:67;16271:2;16266:3;16207:67;:::i;:::-;16200:74;;16283:93;16372:3;16283:93;:::i;:::-;16401:2;16396:3;16392:12;16385:19;;16044:366;;;:::o;16416:::-;16558:3;16579:67;16643:2;16638:3;16579:67;:::i;:::-;16572:74;;16655:93;16744:3;16655:93;:::i;:::-;16773:2;16768:3;16764:12;16757:19;;16416:366;;;:::o;16788:::-;16930:3;16951:67;17015:2;17010:3;16951:67;:::i;:::-;16944:74;;17027:93;17116:3;17027:93;:::i;:::-;17145:2;17140:3;17136:12;17129:19;;16788:366;;;:::o;17160:::-;17302:3;17323:67;17387:2;17382:3;17323:67;:::i;:::-;17316:74;;17399:93;17488:3;17399:93;:::i;:::-;17517:2;17512:3;17508:12;17501:19;;17160:366;;;:::o;17532:::-;17674:3;17695:67;17759:2;17754:3;17695:67;:::i;:::-;17688:74;;17771:93;17860:3;17771:93;:::i;:::-;17889:2;17884:3;17880:12;17873:19;;17532:366;;;:::o;17904:398::-;18063:3;18084:83;18165:1;18160:3;18084:83;:::i;:::-;18077:90;;18176:93;18265:3;18176:93;:::i;:::-;18294:1;18289:3;18285:11;18278:18;;17904:398;;;:::o;18308:366::-;18450:3;18471:67;18535:2;18530:3;18471:67;:::i;:::-;18464:74;;18547:93;18636:3;18547:93;:::i;:::-;18665:2;18660:3;18656:12;18649:19;;18308:366;;;:::o;18680:::-;18822:3;18843:67;18907:2;18902:3;18843:67;:::i;:::-;18836:74;;18919:93;19008:3;18919:93;:::i;:::-;19037:2;19032:3;19028:12;19021:19;;18680:366;;;:::o;19052:118::-;19139:24;19157:5;19139:24;:::i;:::-;19134:3;19127:37;19052:118;;:::o;19176:589::-;19401:3;19423:95;19514:3;19505:6;19423:95;:::i;:::-;19416:102;;19535:95;19626:3;19617:6;19535:95;:::i;:::-;19528:102;;19647:92;19735:3;19726:6;19647:92;:::i;:::-;19640:99;;19756:3;19749:10;;19176:589;;;;;;:::o;19771:379::-;19955:3;19977:147;20120:3;19977:147;:::i;:::-;19970:154;;20141:3;20134:10;;19771:379;;;:::o;20156:222::-;20249:4;20287:2;20276:9;20272:18;20264:26;;20300:71;20368:1;20357:9;20353:17;20344:6;20300:71;:::i;:::-;20156:222;;;;:::o;20384:640::-;20579:4;20617:3;20606:9;20602:19;20594:27;;20631:71;20699:1;20688:9;20684:17;20675:6;20631:71;:::i;:::-;20712:72;20780:2;20769:9;20765:18;20756:6;20712:72;:::i;:::-;20794;20862:2;20851:9;20847:18;20838:6;20794:72;:::i;:::-;20913:9;20907:4;20903:20;20898:2;20887:9;20883:18;20876:48;20941:76;21012:4;21003:6;20941:76;:::i;:::-;20933:84;;20384:640;;;;;;;:::o;21030:210::-;21117:4;21155:2;21144:9;21140:18;21132:26;;21168:65;21230:1;21219:9;21215:17;21206:6;21168:65;:::i;:::-;21030:210;;;;:::o;21246:313::-;21359:4;21397:2;21386:9;21382:18;21374:26;;21446:9;21440:4;21436:20;21432:1;21421:9;21417:17;21410:47;21474:78;21547:4;21538:6;21474:78;:::i;:::-;21466:86;;21246:313;;;;:::o;21565:419::-;21731:4;21769:2;21758:9;21754:18;21746:26;;21818:9;21812:4;21808:20;21804:1;21793:9;21789:17;21782:47;21846:131;21972:4;21846:131;:::i;:::-;21838:139;;21565:419;;;:::o;21990:::-;22156:4;22194:2;22183:9;22179:18;22171:26;;22243:9;22237:4;22233:20;22229:1;22218:9;22214:17;22207:47;22271:131;22397:4;22271:131;:::i;:::-;22263:139;;21990:419;;;:::o;22415:::-;22581:4;22619:2;22608:9;22604:18;22596:26;;22668:9;22662:4;22658:20;22654:1;22643:9;22639:17;22632:47;22696:131;22822:4;22696:131;:::i;:::-;22688:139;;22415:419;;;:::o;22840:::-;23006:4;23044:2;23033:9;23029:18;23021:26;;23093:9;23087:4;23083:20;23079:1;23068:9;23064:17;23057:47;23121:131;23247:4;23121:131;:::i;:::-;23113:139;;22840:419;;;:::o;23265:::-;23431:4;23469:2;23458:9;23454:18;23446:26;;23518:9;23512:4;23508:20;23504:1;23493:9;23489:17;23482:47;23546:131;23672:4;23546:131;:::i;:::-;23538:139;;23265:419;;;:::o;23690:::-;23856:4;23894:2;23883:9;23879:18;23871:26;;23943:9;23937:4;23933:20;23929:1;23918:9;23914:17;23907:47;23971:131;24097:4;23971:131;:::i;:::-;23963:139;;23690:419;;;:::o;24115:::-;24281:4;24319:2;24308:9;24304:18;24296:26;;24368:9;24362:4;24358:20;24354:1;24343:9;24339:17;24332:47;24396:131;24522:4;24396:131;:::i;:::-;24388:139;;24115:419;;;:::o;24540:::-;24706:4;24744:2;24733:9;24729:18;24721:26;;24793:9;24787:4;24783:20;24779:1;24768:9;24764:17;24757:47;24821:131;24947:4;24821:131;:::i;:::-;24813:139;;24540:419;;;:::o;24965:::-;25131:4;25169:2;25158:9;25154:18;25146:26;;25218:9;25212:4;25208:20;25204:1;25193:9;25189:17;25182:47;25246:131;25372:4;25246:131;:::i;:::-;25238:139;;24965:419;;;:::o;25390:::-;25556:4;25594:2;25583:9;25579:18;25571:26;;25643:9;25637:4;25633:20;25629:1;25618:9;25614:17;25607:47;25671:131;25797:4;25671:131;:::i;:::-;25663:139;;25390:419;;;:::o;25815:::-;25981:4;26019:2;26008:9;26004:18;25996:26;;26068:9;26062:4;26058:20;26054:1;26043:9;26039:17;26032:47;26096:131;26222:4;26096:131;:::i;:::-;26088:139;;25815:419;;;:::o;26240:::-;26406:4;26444:2;26433:9;26429:18;26421:26;;26493:9;26487:4;26483:20;26479:1;26468:9;26464:17;26457:47;26521:131;26647:4;26521:131;:::i;:::-;26513:139;;26240:419;;;:::o;26665:::-;26831:4;26869:2;26858:9;26854:18;26846:26;;26918:9;26912:4;26908:20;26904:1;26893:9;26889:17;26882:47;26946:131;27072:4;26946:131;:::i;:::-;26938:139;;26665:419;;;:::o;27090:::-;27256:4;27294:2;27283:9;27279:18;27271:26;;27343:9;27337:4;27333:20;27329:1;27318:9;27314:17;27307:47;27371:131;27497:4;27371:131;:::i;:::-;27363:139;;27090:419;;;:::o;27515:::-;27681:4;27719:2;27708:9;27704:18;27696:26;;27768:9;27762:4;27758:20;27754:1;27743:9;27739:17;27732:47;27796:131;27922:4;27796:131;:::i;:::-;27788:139;;27515:419;;;:::o;27940:::-;28106:4;28144:2;28133:9;28129:18;28121:26;;28193:9;28187:4;28183:20;28179:1;28168:9;28164:17;28157:47;28221:131;28347:4;28221:131;:::i;:::-;28213:139;;27940:419;;;:::o;28365:::-;28531:4;28569:2;28558:9;28554:18;28546:26;;28618:9;28612:4;28608:20;28604:1;28593:9;28589:17;28582:47;28646:131;28772:4;28646:131;:::i;:::-;28638:139;;28365:419;;;:::o;28790:::-;28956:4;28994:2;28983:9;28979:18;28971:26;;29043:9;29037:4;29033:20;29029:1;29018:9;29014:17;29007:47;29071:131;29197:4;29071:131;:::i;:::-;29063:139;;28790:419;;;:::o;29215:::-;29381:4;29419:2;29408:9;29404:18;29396:26;;29468:9;29462:4;29458:20;29454:1;29443:9;29439:17;29432:47;29496:131;29622:4;29496:131;:::i;:::-;29488:139;;29215:419;;;:::o;29640:::-;29806:4;29844:2;29833:9;29829:18;29821:26;;29893:9;29887:4;29883:20;29879:1;29868:9;29864:17;29857:47;29921:131;30047:4;29921:131;:::i;:::-;29913:139;;29640:419;;;:::o;30065:::-;30231:4;30269:2;30258:9;30254:18;30246:26;;30318:9;30312:4;30308:20;30304:1;30293:9;30289:17;30282:47;30346:131;30472:4;30346:131;:::i;:::-;30338:139;;30065:419;;;:::o;30490:::-;30656:4;30694:2;30683:9;30679:18;30671:26;;30743:9;30737:4;30733:20;30729:1;30718:9;30714:17;30707:47;30771:131;30897:4;30771:131;:::i;:::-;30763:139;;30490:419;;;:::o;30915:::-;31081:4;31119:2;31108:9;31104:18;31096:26;;31168:9;31162:4;31158:20;31154:1;31143:9;31139:17;31132:47;31196:131;31322:4;31196:131;:::i;:::-;31188:139;;30915:419;;;:::o;31340:::-;31506:4;31544:2;31533:9;31529:18;31521:26;;31593:9;31587:4;31583:20;31579:1;31568:9;31564:17;31557:47;31621:131;31747:4;31621:131;:::i;:::-;31613:139;;31340:419;;;:::o;31765:222::-;31858:4;31896:2;31885:9;31881:18;31873:26;;31909:71;31977:1;31966:9;31962:17;31953:6;31909:71;:::i;:::-;31765:222;;;;:::o;31993:129::-;32027:6;32054:20;;:::i;:::-;32044:30;;32083:33;32111:4;32103:6;32083:33;:::i;:::-;31993:129;;;:::o;32128:75::-;32161:6;32194:2;32188:9;32178:19;;32128:75;:::o;32209:307::-;32270:4;32360:18;32352:6;32349:30;32346:56;;;32382:18;;:::i;:::-;32346:56;32420:29;32442:6;32420:29;:::i;:::-;32412:37;;32504:4;32498;32494:15;32486:23;;32209:307;;;:::o;32522:308::-;32584:4;32674:18;32666:6;32663:30;32660:56;;;32696:18;;:::i;:::-;32660:56;32734:29;32756:6;32734:29;:::i;:::-;32726:37;;32818:4;32812;32808:15;32800:23;;32522:308;;;:::o;32836:141::-;32885:4;32908:3;32900:11;;32931:3;32928:1;32921:14;32965:4;32962:1;32952:18;32944:26;;32836:141;;;:::o;32983:98::-;33034:6;33068:5;33062:12;33052:22;;32983:98;;;:::o;33087:99::-;33139:6;33173:5;33167:12;33157:22;;33087:99;;;:::o;33192:168::-;33275:11;33309:6;33304:3;33297:19;33349:4;33344:3;33340:14;33325:29;;33192:168;;;;:::o;33366:147::-;33467:11;33504:3;33489:18;;33366:147;;;;:::o;33519:169::-;33603:11;33637:6;33632:3;33625:19;33677:4;33672:3;33668:14;33653:29;;33519:169;;;;:::o;33694:148::-;33796:11;33833:3;33818:18;;33694:148;;;;:::o;33848:305::-;33888:3;33907:20;33925:1;33907:20;:::i;:::-;33902:25;;33941:20;33959:1;33941:20;:::i;:::-;33936:25;;34095:1;34027:66;34023:74;34020:1;34017:81;34014:107;;;34101:18;;:::i;:::-;34014:107;34145:1;34142;34138:9;34131:16;;33848:305;;;;:::o;34159:185::-;34199:1;34216:20;34234:1;34216:20;:::i;:::-;34211:25;;34250:20;34268:1;34250:20;:::i;:::-;34245:25;;34289:1;34279:35;;34294:18;;:::i;:::-;34279:35;34336:1;34333;34329:9;34324:14;;34159:185;;;;:::o;34350:348::-;34390:7;34413:20;34431:1;34413:20;:::i;:::-;34408:25;;34447:20;34465:1;34447:20;:::i;:::-;34442:25;;34635:1;34567:66;34563:74;34560:1;34557:81;34552:1;34545:9;34538:17;34534:105;34531:131;;;34642:18;;:::i;:::-;34531:131;34690:1;34687;34683:9;34672:20;;34350:348;;;;:::o;34704:191::-;34744:4;34764:20;34782:1;34764:20;:::i;:::-;34759:25;;34798:20;34816:1;34798:20;:::i;:::-;34793:25;;34837:1;34834;34831:8;34828:34;;;34842:18;;:::i;:::-;34828:34;34887:1;34884;34880:9;34872:17;;34704:191;;;;:::o;34901:96::-;34938:7;34967:24;34985:5;34967:24;:::i;:::-;34956:35;;34901:96;;;:::o;35003:90::-;35037:7;35080:5;35073:13;35066:21;35055:32;;35003:90;;;:::o;35099:149::-;35135:7;35175:66;35168:5;35164:78;35153:89;;35099:149;;;:::o;35254:126::-;35291:7;35331:42;35324:5;35320:54;35309:65;;35254:126;;;:::o;35386:77::-;35423:7;35452:5;35441:16;;35386:77;;;:::o;35469:154::-;35553:6;35548:3;35543;35530:30;35615:1;35606:6;35601:3;35597:16;35590:27;35469:154;;;:::o;35629:307::-;35697:1;35707:113;35721:6;35718:1;35715:13;35707:113;;;35806:1;35801:3;35797:11;35791:18;35787:1;35782:3;35778:11;35771:39;35743:2;35740:1;35736:10;35731:15;;35707:113;;;35838:6;35835:1;35832:13;35829:101;;;35918:1;35909:6;35904:3;35900:16;35893:27;35829:101;35678:258;35629:307;;;:::o;35942:320::-;35986:6;36023:1;36017:4;36013:12;36003:22;;36070:1;36064:4;36060:12;36091:18;36081:81;;36147:4;36139:6;36135:17;36125:27;;36081:81;36209:2;36201:6;36198:14;36178:18;36175:38;36172:84;;;36228:18;;:::i;:::-;36172:84;35993:269;35942:320;;;:::o;36268:281::-;36351:27;36373:4;36351:27;:::i;:::-;36343:6;36339:40;36481:6;36469:10;36466:22;36445:18;36433:10;36430:34;36427:62;36424:88;;;36492:18;;:::i;:::-;36424:88;36532:10;36528:2;36521:22;36311:238;36268:281;;:::o;36555:233::-;36594:3;36617:24;36635:5;36617:24;:::i;:::-;36608:33;;36663:66;36656:5;36653:77;36650:103;;;36733:18;;:::i;:::-;36650:103;36780:1;36773:5;36769:13;36762:20;;36555:233;;;:::o;36794:176::-;36826:1;36843:20;36861:1;36843:20;:::i;:::-;36838:25;;36877:20;36895:1;36877:20;:::i;:::-;36872:25;;36916:1;36906:35;;36921:18;;:::i;:::-;36906:35;36962:1;36959;36955:9;36950:14;;36794:176;;;;:::o;36976:180::-;37024:77;37021:1;37014:88;37121:4;37118:1;37111:15;37145:4;37142:1;37135:15;37162:180;37210:77;37207:1;37200:88;37307:4;37304:1;37297:15;37331:4;37328:1;37321:15;37348:180;37396:77;37393:1;37386:88;37493:4;37490:1;37483:15;37517:4;37514:1;37507:15;37534:180;37582:77;37579:1;37572:88;37679:4;37676:1;37669:15;37703:4;37700:1;37693:15;37720:180;37768:77;37765:1;37758:88;37865:4;37862:1;37855:15;37889:4;37886:1;37879:15;37906:117;38015:1;38012;38005:12;38029:117;38138:1;38135;38128:12;38152:117;38261:1;38258;38251:12;38275:117;38384:1;38381;38374:12;38398:102;38439:6;38490:2;38486:7;38481:2;38474:5;38470:14;38466:28;38456:38;;38398:102;;;:::o;38506:161::-;38646:13;38642:1;38634:6;38630:14;38623:37;38506:161;:::o;38673:221::-;38813:34;38809:1;38801:6;38797:14;38790:58;38882:4;38877:2;38869:6;38865:15;38858:29;38673:221;:::o;38900:171::-;39040:23;39036:1;39028:6;39024:14;39017:47;38900:171;:::o;39077:182::-;39217:34;39213:1;39205:6;39201:14;39194:58;39077:182;:::o;39265:237::-;39405:34;39401:1;39393:6;39389:14;39382:58;39474:20;39469:2;39461:6;39457:15;39450:45;39265:237;:::o;39508:234::-;39648:34;39644:1;39636:6;39632:14;39625:58;39717:17;39712:2;39704:6;39700:15;39693:42;39508:234;:::o;39748:225::-;39888:34;39884:1;39876:6;39872:14;39865:58;39957:8;39952:2;39944:6;39940:15;39933:33;39748:225;:::o;39979:224::-;40119:34;40115:1;40107:6;40103:14;40096:58;40188:7;40183:2;40175:6;40171:15;40164:32;39979:224;:::o;40209:178::-;40349:30;40345:1;40337:6;40333:14;40326:54;40209:178;:::o;40393:170::-;40533:22;40529:1;40521:6;40517:14;40510:46;40393:170;:::o;40569:223::-;40709:34;40705:1;40697:6;40693:14;40686:58;40778:6;40773:2;40765:6;40761:15;40754:31;40569:223;:::o;40798:175::-;40938:27;40934:1;40926:6;40922:14;40915:51;40798:175;:::o;40979:231::-;41119:34;41115:1;41107:6;41103:14;41096:58;41188:14;41183:2;41175:6;41171:15;41164:39;40979:231;:::o;41216:243::-;41356:34;41352:1;41344:6;41340:14;41333:58;41425:26;41420:2;41412:6;41408:15;41401:51;41216:243;:::o;41465:229::-;41605:34;41601:1;41593:6;41589:14;41582:58;41674:12;41669:2;41661:6;41657:15;41650:37;41465:229;:::o;41700:228::-;41840:34;41836:1;41828:6;41824:14;41817:58;41909:11;41904:2;41896:6;41892:15;41885:36;41700:228;:::o;41934:182::-;42074:34;42070:1;42062:6;42058:14;42051:58;41934:182;:::o;42122:231::-;42262:34;42258:1;42250:6;42246:14;42239:58;42331:14;42326:2;42318:6;42314:15;42307:39;42122:231;:::o;42359:182::-;42499:34;42495:1;42487:6;42483:14;42476:58;42359:182;:::o;42547:234::-;42687:34;42683:1;42675:6;42671:14;42664:58;42756:17;42751:2;42743:6;42739:15;42732:42;42547:234;:::o;42787:220::-;42927:34;42923:1;42915:6;42911:14;42904:58;42996:3;42991:2;42983:6;42979:15;42972:28;42787:220;:::o;43013:229::-;43153:34;43149:1;43141:6;43137:14;43130:58;43222:12;43217:2;43209:6;43205:15;43198:37;43013:229;:::o;43248:114::-;;:::o;43368:236::-;43508:34;43504:1;43496:6;43492:14;43485:58;43577:19;43572:2;43564:6;43560:15;43553:44;43368:236;:::o;43610:223::-;43750:34;43746:1;43738:6;43734:14;43727:58;43819:6;43814:2;43806:6;43802:15;43795:31;43610:223;:::o;43839:122::-;43912:24;43930:5;43912:24;:::i;:::-;43905:5;43902:35;43892:63;;43951:1;43948;43941:12;43892:63;43839:122;:::o;43967:116::-;44037:21;44052:5;44037:21;:::i;:::-;44030:5;44027:32;44017:60;;44073:1;44070;44063:12;44017:60;43967:116;:::o;44089:120::-;44161:23;44178:5;44161:23;:::i;:::-;44154:5;44151:34;44141:62;;44199:1;44196;44189:12;44141:62;44089:120;:::o;44215:122::-;44288:24;44306:5;44288:24;:::i;:::-;44281:5;44278:35;44268:63;;44327:1;44324;44317:12;44268:63;44215:122;:::o

Swarm Source

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