ETH Price: $3,354.21 (-0.83%)
Gas: 9 Gwei

Token

Claylings (CLAYS)
 

Overview

Max Total Supply

4,040 CLAYS

Holders

1,930

Market

Volume (24H)

0.0029 ETH

Min Price (24H)

$9.73 @ 0.002900 ETH

Max Price (24H)

$9.73 @ 0.002900 ETH
Balance
1 CLAYS
0xbfa3f52d271883e11c0210b1bfd2fa061bf49d8a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Claylings is a 4,040 edition generative art project, which draws its aesthetic from the likes of Chicken Run, Wallace & Grommit or Neverhood, calling back to '90s nostalgia.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Claylings

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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/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/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/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/access/Ownable.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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/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/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/token/ERC721/ERC721.sol

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/*
 _______  _        _______           _       _________ _        _______  _______ 
(  ____ \( \      (  ___  )|\     /|( \      \__   __/( (    /|(  ____ \(  ____ \
| (    \/| (      | (   ) |( \   / )| (         ) (   |  \  ( || (    \/| (    \/
| |      | |      | (___) | \ (_) / | |         | |   |   \ | || |      | (_____ 
| |      | |      |  ___  |  \   /  | |         | |   | (\ \) || | ____ (_____  )
| |      | |      | (   ) |   ) (   | |         | |   | | \   || | \_  )      ) |
| (____/\| (____/\| )   ( |   | |   | (____/\___) (___| )  \  || (___) |/\____) |
(_______/(_______/|/     \|   \_/   (_______/\_______/|/    )_)(_______)\_______)
                                                                                 
                               By Devko.dev#7286 
*/


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

    uint256 public constant CLAYS_GIFT = 100;
    uint256 public constant CLAYS_PRIVATE = 900;
    uint256 public constant CLAYS_PUBLIC = 3040;
    uint256 public constant CLAYS_MAX = CLAYS_GIFT + CLAYS_PRIVATE + CLAYS_PUBLIC;
    uint256 public constant CLAYS_PRICE = 0.07 ether;
    uint256 public constant CLAYS_PER_MINT = 5;
    mapping(address => bool) public presalerList;
    mapping(address => uint256) public presalerListPurchases;
    string private _contractURI = "https://api.claylings.io/api/contract/";
    string private _tokenBaseURI = "https://api.claylings.io/api/token/";
    address private member1 = 0x7CE779604DbE0A293cBec245459Abe4e0Fa8eC61; // M1
    address private member2 = 0x6CDf69634F9D5d00e28c1A0EEaFb38b76446E247; // ROBBIE
    address private member3 = 0x4AbC263960D14ed4E309578f6A75E7f12F8333C8; // BALD
    address private member4 = 0x0000003f9A1FBB7348f3a4BF96BbBE68b6dEafcD; // DEVKO
    address private member5 = 0x26844CBCC50A9675A24132CCc04473E9613ecFC7; // ANON
    uint256 public publicAmountMinted;
    uint256 public privateAmountMinted;
    uint256 public presalePurchaseLimit = 2;
    bool public presaleLive;
    bool public saleLive;
    bool public locked;
    
    constructor() ERC721("Claylings", "CLAYS") { 
        for (uint256 i = 0; i < 100; i++) {
            _safeMint(member1, totalSupply() + 1);
        }
    }
    
    modifier notLocked {
        require(!locked, "Contract metadata methods are locked");
        _;
    }
    
    function addToPresaleList(address[] calldata entries) external onlyOwner {
        for(uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "NULL_ADDRESS");
            require(!presalerList[entry], "DUPLICATE_ENTRY");

            presalerList[entry] = true;
        }   
    }

    function removeFromPresaleList(address[] calldata entries) external onlyOwner {
        for(uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "NULL_ADDRESS");
            
            presalerList[entry] = false;
        }
    }

    
    function buy(uint256 tokenQuantity) external payable {
        require(saleLive, "SALE_CLOSED");
        require(!presaleLive, "ONLY_PRESALE");
        require(totalSupply() < CLAYS_MAX, "OUT_OF_STOCK");
        require(publicAmountMinted + tokenQuantity <= CLAYS_PUBLIC, "EXCEED_PUBLIC");
        require(tokenQuantity <= CLAYS_PER_MINT, "EXCEED_CLAYS_PER_MINT");
        require(CLAYS_PRICE * tokenQuantity <= msg.value, "INSUFFICIENT_ETH");
        
        for(uint256 i = 0; i < tokenQuantity; i++) {
            publicAmountMinted++;
            _safeMint(msg.sender, totalSupply() + 1);
        }
        
        
    }
    
    function presaleBuy(uint256 tokenQuantity) external payable {
        require(!saleLive && presaleLive, "PRESALE_CLOSED");
        require(presalerList[msg.sender], "NOT_QUALIFIED");
        require(totalSupply() < CLAYS_MAX, "OUT_OF_STOCK");
        require(privateAmountMinted + tokenQuantity <= CLAYS_PRIVATE, "EXCEED_PRIVATE");
        require(presalerListPurchases[msg.sender] + tokenQuantity <= presalePurchaseLimit, "EXCEED_ALLOC");
        require(CLAYS_PRICE * tokenQuantity <= msg.value, "INSUFFICIENT_ETH");
        
        for (uint256 i = 0; i < tokenQuantity; i++) {
            privateAmountMinted++;
            presalerListPurchases[msg.sender]++;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }

    function withdraw() external {
        payable(member5).transfer(address(this).balance / 2);
        uint256 currentBalance = address(this).balance;
        payable(member3).transfer(currentBalance * 38 / 1000);
        payable(member4).transfer(currentBalance / 10);
        payable(member1).transfer(address(this).balance / 2);
        payable(member2).transfer(address(this).balance);
    }
    
    function isPresaler(address addr) external view returns (bool) {
        return presalerList[addr];
    }
    
    function presalePurchasedCount(address addr) external view returns (uint256) {
        return presalerListPurchases[addr];
    }

    function lockMetadata() external onlyOwner {
        locked = true;
    }
    
    function togglePresaleStatus() external onlyOwner {
        presaleLive = !presaleLive;
    }
    
    function toggleSaleStatus() external onlyOwner {
        saleLive = !saleLive;
    }
    
    function setContractURI(string calldata URI) external onlyOwner notLocked {
        _contractURI = URI;
    }
    
    function setBaseURI(string calldata URI) external onlyOwner notLocked {
        _tokenBaseURI = URI;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }
    
    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");
        
        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CLAYS_GIFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLAYS_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLAYS_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLAYS_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLAYS_PRIVATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CLAYS_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleList","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address","name":"addr","type":"address"}],"name":"isPresaler","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"presaleBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePurchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"presalePurchasedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060268152602001620067b760269139600d90805190602001906200003592919062000e8b565b506040518060600160405280602381526020016200679460239139600e90805190602001906200006792919062000e8b565b50737ce779604dbe0a293cbec245459abe4e0fa8ec61600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736cdf69634f9d5d00e28c1a0eeafb38b76446e247601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734abc263960d14ed4e309578f6a75e7f12f8333c8601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550703f9a1fbb7348f3a4bf96bbbe68b6deafcd601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507326844cbcc50a9675a24132ccc04473e9613ecfc7601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060026016553480156200022057600080fd5b506040518060400160405280600981526020017f436c61796c696e677300000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f434c4159530000000000000000000000000000000000000000000000000000008152508160009080519060200190620002a592919062000e8b565b508060019080519060200190620002be92919062000e8b565b505050620002e1620002d56200035c60201b60201c565b6200036460201b60201c565b60005b606481101562000355576200033f600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620003276200042a60201b60201c565b62000333919062001186565b6200043760201b60201c565b80806200034c90620012f4565b915050620002e4565b50620014bb565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600880549050905090565b620004598282604051806020016040528060008152506200045d60201b60201c565b5050565b6200046f8383620004cb60201b60201c565b620004846000848484620006b160201b60201c565b620004c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004bd90620010d1565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200053e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005359062001137565b60405180910390fd5b6200054f816200086b60201b60201c565b1562000592576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200058990620010f3565b60405180910390fd5b620005a660008383620008d760201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005f8919062001186565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620006df8473ffffffffffffffffffffffffffffffffffffffff1662000a1e60201b620027021760201c565b156200085e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007116200035c60201b60201c565b8786866040518563ffffffff1660e01b81526004016200073594939291906200107d565b602060405180830381600087803b1580156200075057600080fd5b505af19250505080156200078457506040513d601f19601f8201168201806040525081019062000781919062000f52565b60015b6200080d573d8060008114620007b7576040519150601f19603f3d011682016040523d82523d6000602084013e620007bc565b606091505b5060008151141562000805576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007fc90620010d1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000863565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620008ef83838362000a3160201b620027151760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200093c57620009368162000a3660201b60201c565b62000984565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620009835762000982838262000a7f60201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009d157620009cb8162000bfc60201b60201c565b62000a19565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000a185762000a17828262000d4460201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000a998462000dd060201b620013e91760201c565b62000aa59190620011e3565b905060006007600084815260200190815260200160002054905081811462000b8b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000c129190620011e3565b905060006009600084815260200190815260200160002054905060006008838154811062000c69577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000cb2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000d28577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000d5c8362000dd060201b620013e91760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000e44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e3b9062001115565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000e9990620012be565b90600052602060002090601f01602090048101928262000ebd576000855562000f09565b82601f1062000ed857805160ff191683800117855562000f09565b8280016001018555821562000f09579182015b8281111562000f0857825182559160200191906001019062000eeb565b5b50905062000f18919062000f1c565b5090565b5b8082111562000f3757600081600090555060010162000f1d565b5090565b60008151905062000f4c81620014a1565b92915050565b60006020828403121562000f6557600080fd5b600062000f758482850162000f3b565b91505092915050565b62000f89816200121e565b82525050565b600062000f9c8262001159565b62000fa8818562001164565b935062000fba81856020860162001288565b62000fc581620013a0565b840191505092915050565b600062000fdf60328362001175565b915062000fec82620013b1565b604082019050919050565b600062001006601c8362001175565b9150620010138262001400565b602082019050919050565b60006200102d602a8362001175565b91506200103a8262001429565b604082019050919050565b60006200105460208362001175565b9150620010618262001478565b602082019050919050565b62001077816200127e565b82525050565b600060808201905062001094600083018762000f7e565b620010a3602083018662000f7e565b620010b260408301856200106c565b8181036060830152620010c6818462000f8f565b905095945050505050565b60006020820190508181036000830152620010ec8162000fd0565b9050919050565b600060208201905081810360008301526200110e8162000ff7565b9050919050565b6000602082019050818103600083015262001130816200101e565b9050919050565b60006020820190508181036000830152620011528162001045565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062001193826200127e565b9150620011a0836200127e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620011d857620011d762001342565b5b828201905092915050565b6000620011f0826200127e565b9150620011fd836200127e565b92508282101562001213576200121262001342565b5b828203905092915050565b60006200122b826200125e565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620012a85780820151818401526020810190506200128b565b83811115620012b8576000848401525b50505050565b60006002820490506001821680620012d757607f821691505b60208210811415620012ee57620012ed62001371565b5b50919050565b600062001301826200127e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562001337576200133662001342565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b620014ac8162001232565b8114620014b857600080fd5b50565b6152c980620014cb6000396000f3fe60806040526004361061027d5760003560e01c8063815f7bbd1161014f5780639fb472ef116100c1578063d96a094a1161007a578063d96a094a1461097b578063e081b78114610997578063e8a3d485146109c2578063e985e9c5146109ed578063f2fde38b14610a2a578063f474307014610a535761027d565b80639fb472ef1461086d578063a22cb46514610898578063b179e060146108c1578063b88d4fde146108ea578063c87b56dd14610913578063cf309012146109505761027d565b806395d89b411161011357806395d89b4114610749578063989bdbb6146107745780639bf803161461078b5780639cf2e8d6146107c85780639d466107146108055780639e273b2f146108305761027d565b8063815f7bbd1461068357806383a9e0491461069f5780638da5cb5b146106ca578063938e3d7b146106f5578063940f1ada1461071e5761027d565b806342842e0e116101f35780635ce7af1f116101ac5780635ce7af1f146105755780636352211e146105b257806370a08231146105ef578063715018a61461062c5780637204a3c9146106435780637bffb4ce1461066c5761027d565b806342842e0e146104655780634c0d1b4e1461048e5780634f6ccce7146104b957806355f804b3146104f65780635670dbb51461051f57806359a12ad51461054a5761027d565b806318160ddd1161024557806318160ddd146103675780631910190a1461039257806323b872dd146103bd5780632c69f2ab146103e65780632f745c59146104115780633ccfd60b1461044e5761027d565b806301ffc9a714610282578063049c5c49146102bf57806306fdde03146102d6578063081812fc14610301578063095ea7b31461033e575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613bfa565b610a7e565b6040516102b691906142d1565b60405180910390f35b3480156102cb57600080fd5b506102d4610af8565b005b3480156102e257600080fd5b506102eb610ba0565b6040516102f891906142ec565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190613c91565b610c32565b604051610335919061426a565b60405180910390f35b34801561034a57600080fd5b5061036560048036038101906103609190613b79565b610cb7565b005b34801561037357600080fd5b5061037c610dcf565b60405161038991906146ee565b60405180910390f35b34801561039e57600080fd5b506103a7610ddc565b6040516103b491906146ee565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190613a73565b610de2565b005b3480156103f257600080fd5b506103fb610e42565b60405161040891906146ee565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190613b79565b610e4d565b60405161044591906146ee565b60405180910390f35b34801561045a57600080fd5b50610463610ef2565b005b34801561047157600080fd5b5061048c60048036038101906104879190613a73565b611144565b005b34801561049a57600080fd5b506104a3611164565b6040516104b091906146ee565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190613c91565b61116a565b6040516104ed91906146ee565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190613c4c565b611201565b005b34801561052b57600080fd5b506105346112e3565b60405161054191906146ee565b60405180910390f35b34801561055657600080fd5b5061055f6112e8565b60405161056c91906146ee565b60405180910390f35b34801561058157600080fd5b5061059c60048036038101906105979190613a0e565b6112ee565b6040516105a991906146ee565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190613c91565b611337565b6040516105e6919061426a565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190613a0e565b6113e9565b60405161062391906146ee565b60405180910390f35b34801561063857600080fd5b506106416114a1565b005b34801561064f57600080fd5b5061066a60048036038101906106659190613bb5565b611529565b005b34801561067857600080fd5b50610681611773565b005b61069d60048036038101906106989190613c91565b61181b565b005b3480156106ab57600080fd5b506106b4611b55565b6040516106c191906142d1565b60405180910390f35b3480156106d657600080fd5b506106df611b68565b6040516106ec919061426a565b60405180910390f35b34801561070157600080fd5b5061071c60048036038101906107179190613c4c565b611b92565b005b34801561072a57600080fd5b50610733611c74565b60405161074091906146ee565b60405180910390f35b34801561075557600080fd5b5061075e611c7a565b60405161076b91906142ec565b60405180910390f35b34801561078057600080fd5b50610789611d0c565b005b34801561079757600080fd5b506107b260048036038101906107ad9190613a0e565b611da5565b6040516107bf91906146ee565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613a0e565b611dbd565b6040516107fc91906142d1565b60405180910390f35b34801561081157600080fd5b5061081a611ddd565b60405161082791906146ee565b60405180910390f35b34801561083c57600080fd5b5061085760048036038101906108529190613a0e565b611de2565b60405161086491906142d1565b60405180910390f35b34801561087957600080fd5b50610882611e38565b60405161088f91906146ee565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba9190613b3d565b611e57565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613bb5565b611fd8565b005b3480156108f657600080fd5b50610911600480360381019061090c9190613ac2565b612195565b005b34801561091f57600080fd5b5061093a60048036038101906109359190613c91565b6121f7565b60405161094791906142ec565b60405180910390f35b34801561095c57600080fd5b50610965612273565b60405161097291906142d1565b60405180910390f35b61099560048036038101906109909190613c91565b612286565b005b3480156109a357600080fd5b506109ac6124cb565b6040516109b991906142d1565b60405180910390f35b3480156109ce57600080fd5b506109d76124de565b6040516109e491906142ec565b60405180910390f35b3480156109f957600080fd5b50610a146004803603810190610a0f9190613a37565b612570565b604051610a2191906142d1565b60405180910390f35b348015610a3657600080fd5b50610a516004803603810190610a4c9190613a0e565b612604565b005b348015610a5f57600080fd5b50610a686126fc565b604051610a7591906146ee565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af15750610af08261271a565b5b9050919050565b610b006127fc565b73ffffffffffffffffffffffffffffffffffffffff16610b1e611b68565b73ffffffffffffffffffffffffffffffffffffffff1614610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b9061456e565b60405180910390fd5b601760019054906101000a900460ff1615601760016101000a81548160ff021916908315150217905550565b606060008054610baf90614982565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdb90614982565b8015610c285780601f10610bfd57610100808354040283529160200191610c28565b820191906000526020600020905b815481529060010190602001808311610c0b57829003601f168201915b5050505050905090565b6000610c3d82612804565b610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c739061454e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cc282611337565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2a9061460e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d526127fc565b73ffffffffffffffffffffffffffffffffffffffff161480610d815750610d8081610d7b6127fc565b612570565b5b610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db7906144ce565b60405180910390fd5b610dca8383612870565b505050565b6000600880549050905090565b61038481565b610df3610ded6127fc565b82612929565b610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e299061464e565b60405180910390fd5b610e3d838383612a07565b505050565b66f8b0a10e47000081565b6000610e58836113e9565b8210610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e909061434e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600247610f3b919061480d565b9081150290604051600060405180830381858888f19350505050158015610f66573d6000803e3d6000fd5b506000479050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e8602684610fb8919061483e565b610fc2919061480d565b9081150290604051600060405180830381858888f19350505050158015610fed573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600a83611037919061480d565b9081150290604051600060405180830381858888f19350505050158015611062573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6002476110ac919061480d565b9081150290604051600060405180830381858888f193505050501580156110d7573d6000803e3d6000fd5b50601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611140573d6000803e3d6000fd5b5050565b61115f83838360405180602001604052806000815250612195565b505050565b610be081565b6000611174610dcf565b82106111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac9061466e565b60405180910390fd5b600882815481106111ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6112096127fc565b73ffffffffffffffffffffffffffffffffffffffff16611227611b68565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112749061456e565b60405180910390fd5b601760029054906101000a900460ff16156112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c4906145ae565b60405180910390fd5b8181600e91906112de929190613806565b505050565b600581565b60155481565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d79061450e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611451906144ee565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114a96127fc565b73ffffffffffffffffffffffffffffffffffffffff166114c7611b68565b73ffffffffffffffffffffffffffffffffffffffff161461151d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115149061456e565b60405180910390fd5b6115276000612c63565b565b6115316127fc565b73ffffffffffffffffffffffffffffffffffffffff1661154f611b68565b73ffffffffffffffffffffffffffffffffffffffff16146115a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159c9061456e565b60405180910390fd5b60005b8282905081101561176e5760008383838181106115ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906116039190613a0e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c9061432e565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f99061448e565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611766906149e5565b9150506115a8565b505050565b61177b6127fc565b73ffffffffffffffffffffffffffffffffffffffff16611799611b68565b73ffffffffffffffffffffffffffffffffffffffff16146117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e69061456e565b60405180910390fd5b601760009054906101000a900460ff1615601760006101000a81548160ff021916908315150217905550565b601760019054906101000a900460ff161580156118445750601760009054906101000a900460ff165b611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187a9061430e565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661190f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611906906145ce565b60405180910390fd5b610be0610384606461192191906147b7565b61192b91906147b7565b611933610dcf565b10611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a9061442e565b60405180910390fd5b6103848160155461198491906147b7565b11156119c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bc9061468e565b60405180910390fd5b60165481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a1391906147b7565b1115611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b906146ae565b60405180910390fd5b348166f8b0a10e470000611a68919061483e565b1115611aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa0906146ce565b60405180910390fd5b60005b81811015611b515760156000815480929190611ac7906149e5565b9190505550600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611b1c906149e5565b9190505550611b3e336001611b2f610dcf565b611b3991906147b7565b612d29565b8080611b49906149e5565b915050611aac565b5050565b601760009054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b9a6127fc565b73ffffffffffffffffffffffffffffffffffffffff16611bb8611b68565b73ffffffffffffffffffffffffffffffffffffffff1614611c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c059061456e565b60405180910390fd5b601760029054906101000a900460ff1615611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c55906145ae565b60405180910390fd5b8181600d9190611c6f929190613806565b505050565b60145481565b606060018054611c8990614982565b80601f0160208091040260200160405190810160405280929190818152602001828054611cb590614982565b8015611d025780601f10611cd757610100808354040283529160200191611d02565b820191906000526020600020905b815481529060010190602001808311611ce557829003601f168201915b5050505050905090565b611d146127fc565b73ffffffffffffffffffffffffffffffffffffffff16611d32611b68565b73ffffffffffffffffffffffffffffffffffffffff1614611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f9061456e565b60405180910390fd5b6001601760026101000a81548160ff021916908315150217905550565b600c6020528060005260406000206000915090505481565b600b6020528060005260406000206000915054906101000a900460ff1681565b606481565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610be06103846064611e4a91906147b7565b611e5491906147b7565b81565b611e5f6127fc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec49061440e565b60405180910390fd5b8060056000611eda6127fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f876127fc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fcc91906142d1565b60405180910390a35050565b611fe06127fc565b73ffffffffffffffffffffffffffffffffffffffff16611ffe611b68565b73ffffffffffffffffffffffffffffffffffffffff1614612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204b9061456e565b60405180910390fd5b60005b8282905081101561219057600083838381811061209d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906120b29190613a0e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b9061432e565b60405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080612188906149e5565b915050612057565b505050565b6121a66121a06127fc565b83612929565b6121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc9061464e565b60405180910390fd5b6121f184848484612d47565b50505050565b606061220282612804565b612241576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612238906145ee565b60405180910390fd5b600e61224c83612da3565b60405160200161225d929190614246565b6040516020818303038152906040529050919050565b601760029054906101000a900460ff1681565b601760019054906101000a900460ff166122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc9061444e565b60405180910390fd5b601760009054906101000a900460ff1615612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c906144ae565b60405180910390fd5b610be0610384606461233791906147b7565b61234191906147b7565b612349610dcf565b10612389576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123809061442e565b60405180910390fd5b610be08160145461239a91906147b7565b11156123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d29061462e565b60405180910390fd5b600581111561241f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612416906143ce565b60405180910390fd5b348166f8b0a10e470000612433919061483e565b1115612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b906146ce565b60405180910390fd5b60005b818110156124c75760146000815480929190612492906149e5565b91905055506124b43360016124a5610dcf565b6124af91906147b7565b612d29565b80806124bf906149e5565b915050612477565b5050565b601760019054906101000a900460ff1681565b6060600d80546124ed90614982565b80601f016020809104026020016040519081016040528092919081815260200182805461251990614982565b80156125665780601f1061253b57610100808354040283529160200191612566565b820191906000526020600020905b81548152906001019060200180831161254957829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61260c6127fc565b73ffffffffffffffffffffffffffffffffffffffff1661262a611b68565b73ffffffffffffffffffffffffffffffffffffffff1614612680576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126779061456e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e79061438e565b60405180910390fd5b6126f981612c63565b50565b60165481565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127e557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127f557506127f482612f50565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128e383611337565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061293482612804565b612973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296a9061446e565b60405180910390fd5b600061297e83611337565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129ed57508373ffffffffffffffffffffffffffffffffffffffff166129d584610c32565b73ffffffffffffffffffffffffffffffffffffffff16145b806129fe57506129fd8185612570565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a2782611337565b73ffffffffffffffffffffffffffffffffffffffff1614612a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a749061458e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae4906143ee565b60405180910390fd5b612af8838383612fba565b612b03600082612870565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b539190614898565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612baa91906147b7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d438282604051806020016040528060008152506130ce565b5050565b612d52848484612a07565b612d5e84848484613129565b612d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d949061436e565b60405180910390fd5b50505050565b60606000821415612deb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f4b565b600082905060005b60008214612e1d578080612e06906149e5565b915050600a82612e16919061480d565b9150612df3565b60008167ffffffffffffffff811115612e5f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e915781602001600182028036833780820191505090505b5090505b60008514612f4457600182612eaa9190614898565b9150600a85612eb99190614a2e565b6030612ec591906147b7565b60f81b818381518110612f01577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f3d919061480d565b9450612e95565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612fc5838383612715565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561300857613003816132c0565b613047565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613046576130458382613309565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561308a5761308581613476565b6130c9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130c8576130c782826135b9565b5b5b505050565b6130d88383613638565b6130e56000848484613129565b613124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311b9061436e565b60405180910390fd5b505050565b600061314a8473ffffffffffffffffffffffffffffffffffffffff16612702565b156132b3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131736127fc565b8786866040518563ffffffff1660e01b81526004016131959493929190614285565b602060405180830381600087803b1580156131af57600080fd5b505af19250505080156131e057506040513d601f19601f820116820180604052508101906131dd9190613c23565b60015b613263573d8060008114613210576040519150601f19603f3d011682016040523d82523d6000602084013e613215565b606091505b5060008151141561325b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132529061436e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132b8565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613316846113e9565b6133209190614898565b9050600060076000848152602001908152602001600020549050818114613405576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061348a9190614898565b90506000600960008481526020019081526020016000205490506000600883815481106134e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613528577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061359d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006135c4836113e9565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369f9061452e565b60405180910390fd5b6136b181612804565b156136f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e8906143ae565b60405180910390fd5b6136fd60008383612fba565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461374d91906147b7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461381290614982565b90600052602060002090601f016020900481019282613834576000855561387b565b82601f1061384d57803560ff191683800117855561387b565b8280016001018555821561387b579182015b8281111561387a57823582559160200191906001019061385f565b5b509050613888919061388c565b5090565b5b808211156138a557600081600090555060010161388d565b5090565b60006138bc6138b78461472e565b614709565b9050828152602081018484840111156138d457600080fd5b6138df848285614940565b509392505050565b6000813590506138f681615237565b92915050565b60008083601f84011261390e57600080fd5b8235905067ffffffffffffffff81111561392757600080fd5b60208301915083602082028301111561393f57600080fd5b9250929050565b6000813590506139558161524e565b92915050565b60008135905061396a81615265565b92915050565b60008151905061397f81615265565b92915050565b600082601f83011261399657600080fd5b81356139a68482602086016138a9565b91505092915050565b60008083601f8401126139c157600080fd5b8235905067ffffffffffffffff8111156139da57600080fd5b6020830191508360018202830111156139f257600080fd5b9250929050565b600081359050613a088161527c565b92915050565b600060208284031215613a2057600080fd5b6000613a2e848285016138e7565b91505092915050565b60008060408385031215613a4a57600080fd5b6000613a58858286016138e7565b9250506020613a69858286016138e7565b9150509250929050565b600080600060608486031215613a8857600080fd5b6000613a96868287016138e7565b9350506020613aa7868287016138e7565b9250506040613ab8868287016139f9565b9150509250925092565b60008060008060808587031215613ad857600080fd5b6000613ae6878288016138e7565b9450506020613af7878288016138e7565b9350506040613b08878288016139f9565b925050606085013567ffffffffffffffff811115613b2557600080fd5b613b3187828801613985565b91505092959194509250565b60008060408385031215613b5057600080fd5b6000613b5e858286016138e7565b9250506020613b6f85828601613946565b9150509250929050565b60008060408385031215613b8c57600080fd5b6000613b9a858286016138e7565b9250506020613bab858286016139f9565b9150509250929050565b60008060208385031215613bc857600080fd5b600083013567ffffffffffffffff811115613be257600080fd5b613bee858286016138fc565b92509250509250929050565b600060208284031215613c0c57600080fd5b6000613c1a8482850161395b565b91505092915050565b600060208284031215613c3557600080fd5b6000613c4384828501613970565b91505092915050565b60008060208385031215613c5f57600080fd5b600083013567ffffffffffffffff811115613c7957600080fd5b613c85858286016139af565b92509250509250929050565b600060208284031215613ca357600080fd5b6000613cb1848285016139f9565b91505092915050565b613cc3816148cc565b82525050565b613cd2816148de565b82525050565b6000613ce382614774565b613ced818561478a565b9350613cfd81856020860161494f565b613d0681614b1b565b840191505092915050565b6000613d1c8261477f565b613d26818561479b565b9350613d3681856020860161494f565b613d3f81614b1b565b840191505092915050565b6000613d558261477f565b613d5f81856147ac565b9350613d6f81856020860161494f565b80840191505092915050565b60008154613d8881614982565b613d9281866147ac565b94506001821660008114613dad5760018114613dbe57613df1565b60ff19831686528186019350613df1565b613dc78561475f565b60005b83811015613de957815481890152600182019150602081019050613dca565b838801955050505b50505092915050565b6000613e07600e8361479b565b9150613e1282614b2c565b602082019050919050565b6000613e2a600c8361479b565b9150613e3582614b55565b602082019050919050565b6000613e4d602b8361479b565b9150613e5882614b7e565b604082019050919050565b6000613e7060328361479b565b9150613e7b82614bcd565b604082019050919050565b6000613e9360268361479b565b9150613e9e82614c1c565b604082019050919050565b6000613eb6601c8361479b565b9150613ec182614c6b565b602082019050919050565b6000613ed960158361479b565b9150613ee482614c94565b602082019050919050565b6000613efc60248361479b565b9150613f0782614cbd565b604082019050919050565b6000613f1f60198361479b565b9150613f2a82614d0c565b602082019050919050565b6000613f42600c8361479b565b9150613f4d82614d35565b602082019050919050565b6000613f65600b8361479b565b9150613f7082614d5e565b602082019050919050565b6000613f88602c8361479b565b9150613f9382614d87565b604082019050919050565b6000613fab600f8361479b565b9150613fb682614dd6565b602082019050919050565b6000613fce600c8361479b565b9150613fd982614dff565b602082019050919050565b6000613ff160388361479b565b9150613ffc82614e28565b604082019050919050565b6000614014602a8361479b565b915061401f82614e77565b604082019050919050565b600061403760298361479b565b915061404282614ec6565b604082019050919050565b600061405a60208361479b565b915061406582614f15565b602082019050919050565b600061407d602c8361479b565b915061408882614f3e565b604082019050919050565b60006140a060208361479b565b91506140ab82614f8d565b602082019050919050565b60006140c360298361479b565b91506140ce82614fb6565b604082019050919050565b60006140e660248361479b565b91506140f182615005565b604082019050919050565b6000614109600d8361479b565b915061411482615054565b602082019050919050565b600061412c601f8361479b565b91506141378261507d565b602082019050919050565b600061414f60218361479b565b915061415a826150a6565b604082019050919050565b6000614172600d8361479b565b915061417d826150f5565b602082019050919050565b600061419560318361479b565b91506141a08261511e565b604082019050919050565b60006141b8602c8361479b565b91506141c38261516d565b604082019050919050565b60006141db600e8361479b565b91506141e6826151bc565b602082019050919050565b60006141fe600c8361479b565b9150614209826151e5565b602082019050919050565b600061422160108361479b565b915061422c8261520e565b602082019050919050565b61424081614936565b82525050565b60006142528285613d7b565b915061425e8284613d4a565b91508190509392505050565b600060208201905061427f6000830184613cba565b92915050565b600060808201905061429a6000830187613cba565b6142a76020830186613cba565b6142b46040830185614237565b81810360608301526142c68184613cd8565b905095945050505050565b60006020820190506142e66000830184613cc9565b92915050565b600060208201905081810360008301526143068184613d11565b905092915050565b6000602082019050818103600083015261432781613dfa565b9050919050565b6000602082019050818103600083015261434781613e1d565b9050919050565b6000602082019050818103600083015261436781613e40565b9050919050565b6000602082019050818103600083015261438781613e63565b9050919050565b600060208201905081810360008301526143a781613e86565b9050919050565b600060208201905081810360008301526143c781613ea9565b9050919050565b600060208201905081810360008301526143e781613ecc565b9050919050565b6000602082019050818103600083015261440781613eef565b9050919050565b6000602082019050818103600083015261442781613f12565b9050919050565b6000602082019050818103600083015261444781613f35565b9050919050565b6000602082019050818103600083015261446781613f58565b9050919050565b6000602082019050818103600083015261448781613f7b565b9050919050565b600060208201905081810360008301526144a781613f9e565b9050919050565b600060208201905081810360008301526144c781613fc1565b9050919050565b600060208201905081810360008301526144e781613fe4565b9050919050565b6000602082019050818103600083015261450781614007565b9050919050565b600060208201905081810360008301526145278161402a565b9050919050565b600060208201905081810360008301526145478161404d565b9050919050565b6000602082019050818103600083015261456781614070565b9050919050565b6000602082019050818103600083015261458781614093565b9050919050565b600060208201905081810360008301526145a7816140b6565b9050919050565b600060208201905081810360008301526145c7816140d9565b9050919050565b600060208201905081810360008301526145e7816140fc565b9050919050565b600060208201905081810360008301526146078161411f565b9050919050565b6000602082019050818103600083015261462781614142565b9050919050565b6000602082019050818103600083015261464781614165565b9050919050565b6000602082019050818103600083015261466781614188565b9050919050565b60006020820190508181036000830152614687816141ab565b9050919050565b600060208201905081810360008301526146a7816141ce565b9050919050565b600060208201905081810360008301526146c7816141f1565b9050919050565b600060208201905081810360008301526146e781614214565b9050919050565b60006020820190506147036000830184614237565b92915050565b6000614713614724565b905061471f82826149b4565b919050565b6000604051905090565b600067ffffffffffffffff82111561474957614748614aec565b5b61475282614b1b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006147c282614936565b91506147cd83614936565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561480257614801614a5f565b5b828201905092915050565b600061481882614936565b915061482383614936565b92508261483357614832614a8e565b5b828204905092915050565b600061484982614936565b915061485483614936565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561488d5761488c614a5f565b5b828202905092915050565b60006148a382614936565b91506148ae83614936565b9250828210156148c1576148c0614a5f565b5b828203905092915050565b60006148d782614916565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561496d578082015181840152602081019050614952565b8381111561497c576000848401525b50505050565b6000600282049050600182168061499a57607f821691505b602082108114156149ae576149ad614abd565b5b50919050565b6149bd82614b1b565b810181811067ffffffffffffffff821117156149dc576149db614aec565b5b80604052505050565b60006149f082614936565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a2357614a22614a5f565b5b600182019050919050565b6000614a3982614936565b9150614a4483614936565b925082614a5457614a53614a8e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f50524553414c455f434c4f534544000000000000000000000000000000000000600082015250565b7f4e554c4c5f414444524553530000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4558434545445f434c4159535f5045525f4d494e540000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4455504c49434154455f454e5452590000000000000000000000000000000000600082015250565b7f4f4e4c595f50524553414c450000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60008201527f636b656400000000000000000000000000000000000000000000000000000000602082015250565b7f4e4f545f5155414c494649454400000000000000000000000000000000000000600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f5055424c494300000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4558434545445f50524956415445000000000000000000000000000000000000600082015250565b7f4558434545445f414c4c4f430000000000000000000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b615240816148cc565b811461524b57600080fd5b50565b615257816148de565b811461526257600080fd5b50565b61526e816148ea565b811461527957600080fd5b50565b61528581614936565b811461529057600080fd5b5056fea2646970667358221220e93b02bf72193462fbcb111e87370f4e641136c953926e161462493f11a9727f64736f6c6343000804003368747470733a2f2f6170692e636c61796c696e67732e696f2f6170692f746f6b656e2f68747470733a2f2f6170692e636c61796c696e67732e696f2f6170692f636f6e74726163742f

Deployed Bytecode

0x60806040526004361061027d5760003560e01c8063815f7bbd1161014f5780639fb472ef116100c1578063d96a094a1161007a578063d96a094a1461097b578063e081b78114610997578063e8a3d485146109c2578063e985e9c5146109ed578063f2fde38b14610a2a578063f474307014610a535761027d565b80639fb472ef1461086d578063a22cb46514610898578063b179e060146108c1578063b88d4fde146108ea578063c87b56dd14610913578063cf309012146109505761027d565b806395d89b411161011357806395d89b4114610749578063989bdbb6146107745780639bf803161461078b5780639cf2e8d6146107c85780639d466107146108055780639e273b2f146108305761027d565b8063815f7bbd1461068357806383a9e0491461069f5780638da5cb5b146106ca578063938e3d7b146106f5578063940f1ada1461071e5761027d565b806342842e0e116101f35780635ce7af1f116101ac5780635ce7af1f146105755780636352211e146105b257806370a08231146105ef578063715018a61461062c5780637204a3c9146106435780637bffb4ce1461066c5761027d565b806342842e0e146104655780634c0d1b4e1461048e5780634f6ccce7146104b957806355f804b3146104f65780635670dbb51461051f57806359a12ad51461054a5761027d565b806318160ddd1161024557806318160ddd146103675780631910190a1461039257806323b872dd146103bd5780632c69f2ab146103e65780632f745c59146104115780633ccfd60b1461044e5761027d565b806301ffc9a714610282578063049c5c49146102bf57806306fdde03146102d6578063081812fc14610301578063095ea7b31461033e575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613bfa565b610a7e565b6040516102b691906142d1565b60405180910390f35b3480156102cb57600080fd5b506102d4610af8565b005b3480156102e257600080fd5b506102eb610ba0565b6040516102f891906142ec565b60405180910390f35b34801561030d57600080fd5b5061032860048036038101906103239190613c91565b610c32565b604051610335919061426a565b60405180910390f35b34801561034a57600080fd5b5061036560048036038101906103609190613b79565b610cb7565b005b34801561037357600080fd5b5061037c610dcf565b60405161038991906146ee565b60405180910390f35b34801561039e57600080fd5b506103a7610ddc565b6040516103b491906146ee565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190613a73565b610de2565b005b3480156103f257600080fd5b506103fb610e42565b60405161040891906146ee565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190613b79565b610e4d565b60405161044591906146ee565b60405180910390f35b34801561045a57600080fd5b50610463610ef2565b005b34801561047157600080fd5b5061048c60048036038101906104879190613a73565b611144565b005b34801561049a57600080fd5b506104a3611164565b6040516104b091906146ee565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190613c91565b61116a565b6040516104ed91906146ee565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190613c4c565b611201565b005b34801561052b57600080fd5b506105346112e3565b60405161054191906146ee565b60405180910390f35b34801561055657600080fd5b5061055f6112e8565b60405161056c91906146ee565b60405180910390f35b34801561058157600080fd5b5061059c60048036038101906105979190613a0e565b6112ee565b6040516105a991906146ee565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190613c91565b611337565b6040516105e6919061426a565b60405180910390f35b3480156105fb57600080fd5b5061061660048036038101906106119190613a0e565b6113e9565b60405161062391906146ee565b60405180910390f35b34801561063857600080fd5b506106416114a1565b005b34801561064f57600080fd5b5061066a60048036038101906106659190613bb5565b611529565b005b34801561067857600080fd5b50610681611773565b005b61069d60048036038101906106989190613c91565b61181b565b005b3480156106ab57600080fd5b506106b4611b55565b6040516106c191906142d1565b60405180910390f35b3480156106d657600080fd5b506106df611b68565b6040516106ec919061426a565b60405180910390f35b34801561070157600080fd5b5061071c60048036038101906107179190613c4c565b611b92565b005b34801561072a57600080fd5b50610733611c74565b60405161074091906146ee565b60405180910390f35b34801561075557600080fd5b5061075e611c7a565b60405161076b91906142ec565b60405180910390f35b34801561078057600080fd5b50610789611d0c565b005b34801561079757600080fd5b506107b260048036038101906107ad9190613a0e565b611da5565b6040516107bf91906146ee565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613a0e565b611dbd565b6040516107fc91906142d1565b60405180910390f35b34801561081157600080fd5b5061081a611ddd565b60405161082791906146ee565b60405180910390f35b34801561083c57600080fd5b5061085760048036038101906108529190613a0e565b611de2565b60405161086491906142d1565b60405180910390f35b34801561087957600080fd5b50610882611e38565b60405161088f91906146ee565b60405180910390f35b3480156108a457600080fd5b506108bf60048036038101906108ba9190613b3d565b611e57565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613bb5565b611fd8565b005b3480156108f657600080fd5b50610911600480360381019061090c9190613ac2565b612195565b005b34801561091f57600080fd5b5061093a60048036038101906109359190613c91565b6121f7565b60405161094791906142ec565b60405180910390f35b34801561095c57600080fd5b50610965612273565b60405161097291906142d1565b60405180910390f35b61099560048036038101906109909190613c91565b612286565b005b3480156109a357600080fd5b506109ac6124cb565b6040516109b991906142d1565b60405180910390f35b3480156109ce57600080fd5b506109d76124de565b6040516109e491906142ec565b60405180910390f35b3480156109f957600080fd5b50610a146004803603810190610a0f9190613a37565b612570565b604051610a2191906142d1565b60405180910390f35b348015610a3657600080fd5b50610a516004803603810190610a4c9190613a0e565b612604565b005b348015610a5f57600080fd5b50610a686126fc565b604051610a7591906146ee565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af15750610af08261271a565b5b9050919050565b610b006127fc565b73ffffffffffffffffffffffffffffffffffffffff16610b1e611b68565b73ffffffffffffffffffffffffffffffffffffffff1614610b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6b9061456e565b60405180910390fd5b601760019054906101000a900460ff1615601760016101000a81548160ff021916908315150217905550565b606060008054610baf90614982565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdb90614982565b8015610c285780601f10610bfd57610100808354040283529160200191610c28565b820191906000526020600020905b815481529060010190602001808311610c0b57829003601f168201915b5050505050905090565b6000610c3d82612804565b610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c739061454e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cc282611337565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2a9061460e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d526127fc565b73ffffffffffffffffffffffffffffffffffffffff161480610d815750610d8081610d7b6127fc565b612570565b5b610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db7906144ce565b60405180910390fd5b610dca8383612870565b505050565b6000600880549050905090565b61038481565b610df3610ded6127fc565b82612929565b610e32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e299061464e565b60405180910390fd5b610e3d838383612a07565b505050565b66f8b0a10e47000081565b6000610e58836113e9565b8210610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e909061434e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600247610f3b919061480d565b9081150290604051600060405180830381858888f19350505050158015610f66573d6000803e3d6000fd5b506000479050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e8602684610fb8919061483e565b610fc2919061480d565b9081150290604051600060405180830381858888f19350505050158015610fed573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600a83611037919061480d565b9081150290604051600060405180830381858888f19350505050158015611062573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6002476110ac919061480d565b9081150290604051600060405180830381858888f193505050501580156110d7573d6000803e3d6000fd5b50601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611140573d6000803e3d6000fd5b5050565b61115f83838360405180602001604052806000815250612195565b505050565b610be081565b6000611174610dcf565b82106111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac9061466e565b60405180910390fd5b600882815481106111ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6112096127fc565b73ffffffffffffffffffffffffffffffffffffffff16611227611b68565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112749061456e565b60405180910390fd5b601760029054906101000a900460ff16156112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c4906145ae565b60405180910390fd5b8181600e91906112de929190613806565b505050565b600581565b60155481565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d79061450e565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561145a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611451906144ee565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114a96127fc565b73ffffffffffffffffffffffffffffffffffffffff166114c7611b68565b73ffffffffffffffffffffffffffffffffffffffff161461151d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115149061456e565b60405180910390fd5b6115276000612c63565b565b6115316127fc565b73ffffffffffffffffffffffffffffffffffffffff1661154f611b68565b73ffffffffffffffffffffffffffffffffffffffff16146115a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159c9061456e565b60405180910390fd5b60005b8282905081101561176e5760008383838181106115ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906116039190613a0e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c9061432e565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f99061448e565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611766906149e5565b9150506115a8565b505050565b61177b6127fc565b73ffffffffffffffffffffffffffffffffffffffff16611799611b68565b73ffffffffffffffffffffffffffffffffffffffff16146117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e69061456e565b60405180910390fd5b601760009054906101000a900460ff1615601760006101000a81548160ff021916908315150217905550565b601760019054906101000a900460ff161580156118445750601760009054906101000a900460ff165b611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187a9061430e565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661190f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611906906145ce565b60405180910390fd5b610be0610384606461192191906147b7565b61192b91906147b7565b611933610dcf565b10611973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196a9061442e565b60405180910390fd5b6103848160155461198491906147b7565b11156119c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bc9061468e565b60405180910390fd5b60165481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a1391906147b7565b1115611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b906146ae565b60405180910390fd5b348166f8b0a10e470000611a68919061483e565b1115611aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa0906146ce565b60405180910390fd5b60005b81811015611b515760156000815480929190611ac7906149e5565b9190505550600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611b1c906149e5565b9190505550611b3e336001611b2f610dcf565b611b3991906147b7565b612d29565b8080611b49906149e5565b915050611aac565b5050565b601760009054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b9a6127fc565b73ffffffffffffffffffffffffffffffffffffffff16611bb8611b68565b73ffffffffffffffffffffffffffffffffffffffff1614611c0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c059061456e565b60405180910390fd5b601760029054906101000a900460ff1615611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c55906145ae565b60405180910390fd5b8181600d9190611c6f929190613806565b505050565b60145481565b606060018054611c8990614982565b80601f0160208091040260200160405190810160405280929190818152602001828054611cb590614982565b8015611d025780601f10611cd757610100808354040283529160200191611d02565b820191906000526020600020905b815481529060010190602001808311611ce557829003601f168201915b5050505050905090565b611d146127fc565b73ffffffffffffffffffffffffffffffffffffffff16611d32611b68565b73ffffffffffffffffffffffffffffffffffffffff1614611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f9061456e565b60405180910390fd5b6001601760026101000a81548160ff021916908315150217905550565b600c6020528060005260406000206000915090505481565b600b6020528060005260406000206000915054906101000a900460ff1681565b606481565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610be06103846064611e4a91906147b7565b611e5491906147b7565b81565b611e5f6127fc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec49061440e565b60405180910390fd5b8060056000611eda6127fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f876127fc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fcc91906142d1565b60405180910390a35050565b611fe06127fc565b73ffffffffffffffffffffffffffffffffffffffff16611ffe611b68565b73ffffffffffffffffffffffffffffffffffffffff1614612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204b9061456e565b60405180910390fd5b60005b8282905081101561219057600083838381811061209d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906120b29190613a0e565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211b9061432e565b60405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080612188906149e5565b915050612057565b505050565b6121a66121a06127fc565b83612929565b6121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc9061464e565b60405180910390fd5b6121f184848484612d47565b50505050565b606061220282612804565b612241576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612238906145ee565b60405180910390fd5b600e61224c83612da3565b60405160200161225d929190614246565b6040516020818303038152906040529050919050565b601760029054906101000a900460ff1681565b601760019054906101000a900460ff166122d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cc9061444e565b60405180910390fd5b601760009054906101000a900460ff1615612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c906144ae565b60405180910390fd5b610be0610384606461233791906147b7565b61234191906147b7565b612349610dcf565b10612389576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123809061442e565b60405180910390fd5b610be08160145461239a91906147b7565b11156123db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d29061462e565b60405180910390fd5b600581111561241f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612416906143ce565b60405180910390fd5b348166f8b0a10e470000612433919061483e565b1115612474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246b906146ce565b60405180910390fd5b60005b818110156124c75760146000815480929190612492906149e5565b91905055506124b43360016124a5610dcf565b6124af91906147b7565b612d29565b80806124bf906149e5565b915050612477565b5050565b601760019054906101000a900460ff1681565b6060600d80546124ed90614982565b80601f016020809104026020016040519081016040528092919081815260200182805461251990614982565b80156125665780601f1061253b57610100808354040283529160200191612566565b820191906000526020600020905b81548152906001019060200180831161254957829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61260c6127fc565b73ffffffffffffffffffffffffffffffffffffffff1661262a611b68565b73ffffffffffffffffffffffffffffffffffffffff1614612680576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126779061456e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e79061438e565b60405180910390fd5b6126f981612c63565b50565b60165481565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127e557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127f557506127f482612f50565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128e383611337565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061293482612804565b612973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296a9061446e565b60405180910390fd5b600061297e83611337565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129ed57508373ffffffffffffffffffffffffffffffffffffffff166129d584610c32565b73ffffffffffffffffffffffffffffffffffffffff16145b806129fe57506129fd8185612570565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a2782611337565b73ffffffffffffffffffffffffffffffffffffffff1614612a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a749061458e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae4906143ee565b60405180910390fd5b612af8838383612fba565b612b03600082612870565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b539190614898565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612baa91906147b7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d438282604051806020016040528060008152506130ce565b5050565b612d52848484612a07565b612d5e84848484613129565b612d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d949061436e565b60405180910390fd5b50505050565b60606000821415612deb576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f4b565b600082905060005b60008214612e1d578080612e06906149e5565b915050600a82612e16919061480d565b9150612df3565b60008167ffffffffffffffff811115612e5f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e915781602001600182028036833780820191505090505b5090505b60008514612f4457600182612eaa9190614898565b9150600a85612eb99190614a2e565b6030612ec591906147b7565b60f81b818381518110612f01577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f3d919061480d565b9450612e95565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612fc5838383612715565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561300857613003816132c0565b613047565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613046576130458382613309565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561308a5761308581613476565b6130c9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130c8576130c782826135b9565b5b5b505050565b6130d88383613638565b6130e56000848484613129565b613124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311b9061436e565b60405180910390fd5b505050565b600061314a8473ffffffffffffffffffffffffffffffffffffffff16612702565b156132b3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131736127fc565b8786866040518563ffffffff1660e01b81526004016131959493929190614285565b602060405180830381600087803b1580156131af57600080fd5b505af19250505080156131e057506040513d601f19601f820116820180604052508101906131dd9190613c23565b60015b613263573d8060008114613210576040519150601f19603f3d011682016040523d82523d6000602084013e613215565b606091505b5060008151141561325b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132529061436e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132b8565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613316846113e9565b6133209190614898565b9050600060076000848152602001908152602001600020549050818114613405576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061348a9190614898565b90506000600960008481526020019081526020016000205490506000600883815481106134e0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613528577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061359d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006135c4836113e9565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369f9061452e565b60405180910390fd5b6136b181612804565b156136f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e8906143ae565b60405180910390fd5b6136fd60008383612fba565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461374d91906147b7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461381290614982565b90600052602060002090601f016020900481019282613834576000855561387b565b82601f1061384d57803560ff191683800117855561387b565b8280016001018555821561387b579182015b8281111561387a57823582559160200191906001019061385f565b5b509050613888919061388c565b5090565b5b808211156138a557600081600090555060010161388d565b5090565b60006138bc6138b78461472e565b614709565b9050828152602081018484840111156138d457600080fd5b6138df848285614940565b509392505050565b6000813590506138f681615237565b92915050565b60008083601f84011261390e57600080fd5b8235905067ffffffffffffffff81111561392757600080fd5b60208301915083602082028301111561393f57600080fd5b9250929050565b6000813590506139558161524e565b92915050565b60008135905061396a81615265565b92915050565b60008151905061397f81615265565b92915050565b600082601f83011261399657600080fd5b81356139a68482602086016138a9565b91505092915050565b60008083601f8401126139c157600080fd5b8235905067ffffffffffffffff8111156139da57600080fd5b6020830191508360018202830111156139f257600080fd5b9250929050565b600081359050613a088161527c565b92915050565b600060208284031215613a2057600080fd5b6000613a2e848285016138e7565b91505092915050565b60008060408385031215613a4a57600080fd5b6000613a58858286016138e7565b9250506020613a69858286016138e7565b9150509250929050565b600080600060608486031215613a8857600080fd5b6000613a96868287016138e7565b9350506020613aa7868287016138e7565b9250506040613ab8868287016139f9565b9150509250925092565b60008060008060808587031215613ad857600080fd5b6000613ae6878288016138e7565b9450506020613af7878288016138e7565b9350506040613b08878288016139f9565b925050606085013567ffffffffffffffff811115613b2557600080fd5b613b3187828801613985565b91505092959194509250565b60008060408385031215613b5057600080fd5b6000613b5e858286016138e7565b9250506020613b6f85828601613946565b9150509250929050565b60008060408385031215613b8c57600080fd5b6000613b9a858286016138e7565b9250506020613bab858286016139f9565b9150509250929050565b60008060208385031215613bc857600080fd5b600083013567ffffffffffffffff811115613be257600080fd5b613bee858286016138fc565b92509250509250929050565b600060208284031215613c0c57600080fd5b6000613c1a8482850161395b565b91505092915050565b600060208284031215613c3557600080fd5b6000613c4384828501613970565b91505092915050565b60008060208385031215613c5f57600080fd5b600083013567ffffffffffffffff811115613c7957600080fd5b613c85858286016139af565b92509250509250929050565b600060208284031215613ca357600080fd5b6000613cb1848285016139f9565b91505092915050565b613cc3816148cc565b82525050565b613cd2816148de565b82525050565b6000613ce382614774565b613ced818561478a565b9350613cfd81856020860161494f565b613d0681614b1b565b840191505092915050565b6000613d1c8261477f565b613d26818561479b565b9350613d3681856020860161494f565b613d3f81614b1b565b840191505092915050565b6000613d558261477f565b613d5f81856147ac565b9350613d6f81856020860161494f565b80840191505092915050565b60008154613d8881614982565b613d9281866147ac565b94506001821660008114613dad5760018114613dbe57613df1565b60ff19831686528186019350613df1565b613dc78561475f565b60005b83811015613de957815481890152600182019150602081019050613dca565b838801955050505b50505092915050565b6000613e07600e8361479b565b9150613e1282614b2c565b602082019050919050565b6000613e2a600c8361479b565b9150613e3582614b55565b602082019050919050565b6000613e4d602b8361479b565b9150613e5882614b7e565b604082019050919050565b6000613e7060328361479b565b9150613e7b82614bcd565b604082019050919050565b6000613e9360268361479b565b9150613e9e82614c1c565b604082019050919050565b6000613eb6601c8361479b565b9150613ec182614c6b565b602082019050919050565b6000613ed960158361479b565b9150613ee482614c94565b602082019050919050565b6000613efc60248361479b565b9150613f0782614cbd565b604082019050919050565b6000613f1f60198361479b565b9150613f2a82614d0c565b602082019050919050565b6000613f42600c8361479b565b9150613f4d82614d35565b602082019050919050565b6000613f65600b8361479b565b9150613f7082614d5e565b602082019050919050565b6000613f88602c8361479b565b9150613f9382614d87565b604082019050919050565b6000613fab600f8361479b565b9150613fb682614dd6565b602082019050919050565b6000613fce600c8361479b565b9150613fd982614dff565b602082019050919050565b6000613ff160388361479b565b9150613ffc82614e28565b604082019050919050565b6000614014602a8361479b565b915061401f82614e77565b604082019050919050565b600061403760298361479b565b915061404282614ec6565b604082019050919050565b600061405a60208361479b565b915061406582614f15565b602082019050919050565b600061407d602c8361479b565b915061408882614f3e565b604082019050919050565b60006140a060208361479b565b91506140ab82614f8d565b602082019050919050565b60006140c360298361479b565b91506140ce82614fb6565b604082019050919050565b60006140e660248361479b565b91506140f182615005565b604082019050919050565b6000614109600d8361479b565b915061411482615054565b602082019050919050565b600061412c601f8361479b565b91506141378261507d565b602082019050919050565b600061414f60218361479b565b915061415a826150a6565b604082019050919050565b6000614172600d8361479b565b915061417d826150f5565b602082019050919050565b600061419560318361479b565b91506141a08261511e565b604082019050919050565b60006141b8602c8361479b565b91506141c38261516d565b604082019050919050565b60006141db600e8361479b565b91506141e6826151bc565b602082019050919050565b60006141fe600c8361479b565b9150614209826151e5565b602082019050919050565b600061422160108361479b565b915061422c8261520e565b602082019050919050565b61424081614936565b82525050565b60006142528285613d7b565b915061425e8284613d4a565b91508190509392505050565b600060208201905061427f6000830184613cba565b92915050565b600060808201905061429a6000830187613cba565b6142a76020830186613cba565b6142b46040830185614237565b81810360608301526142c68184613cd8565b905095945050505050565b60006020820190506142e66000830184613cc9565b92915050565b600060208201905081810360008301526143068184613d11565b905092915050565b6000602082019050818103600083015261432781613dfa565b9050919050565b6000602082019050818103600083015261434781613e1d565b9050919050565b6000602082019050818103600083015261436781613e40565b9050919050565b6000602082019050818103600083015261438781613e63565b9050919050565b600060208201905081810360008301526143a781613e86565b9050919050565b600060208201905081810360008301526143c781613ea9565b9050919050565b600060208201905081810360008301526143e781613ecc565b9050919050565b6000602082019050818103600083015261440781613eef565b9050919050565b6000602082019050818103600083015261442781613f12565b9050919050565b6000602082019050818103600083015261444781613f35565b9050919050565b6000602082019050818103600083015261446781613f58565b9050919050565b6000602082019050818103600083015261448781613f7b565b9050919050565b600060208201905081810360008301526144a781613f9e565b9050919050565b600060208201905081810360008301526144c781613fc1565b9050919050565b600060208201905081810360008301526144e781613fe4565b9050919050565b6000602082019050818103600083015261450781614007565b9050919050565b600060208201905081810360008301526145278161402a565b9050919050565b600060208201905081810360008301526145478161404d565b9050919050565b6000602082019050818103600083015261456781614070565b9050919050565b6000602082019050818103600083015261458781614093565b9050919050565b600060208201905081810360008301526145a7816140b6565b9050919050565b600060208201905081810360008301526145c7816140d9565b9050919050565b600060208201905081810360008301526145e7816140fc565b9050919050565b600060208201905081810360008301526146078161411f565b9050919050565b6000602082019050818103600083015261462781614142565b9050919050565b6000602082019050818103600083015261464781614165565b9050919050565b6000602082019050818103600083015261466781614188565b9050919050565b60006020820190508181036000830152614687816141ab565b9050919050565b600060208201905081810360008301526146a7816141ce565b9050919050565b600060208201905081810360008301526146c7816141f1565b9050919050565b600060208201905081810360008301526146e781614214565b9050919050565b60006020820190506147036000830184614237565b92915050565b6000614713614724565b905061471f82826149b4565b919050565b6000604051905090565b600067ffffffffffffffff82111561474957614748614aec565b5b61475282614b1b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006147c282614936565b91506147cd83614936565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561480257614801614a5f565b5b828201905092915050565b600061481882614936565b915061482383614936565b92508261483357614832614a8e565b5b828204905092915050565b600061484982614936565b915061485483614936565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561488d5761488c614a5f565b5b828202905092915050565b60006148a382614936565b91506148ae83614936565b9250828210156148c1576148c0614a5f565b5b828203905092915050565b60006148d782614916565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561496d578082015181840152602081019050614952565b8381111561497c576000848401525b50505050565b6000600282049050600182168061499a57607f821691505b602082108114156149ae576149ad614abd565b5b50919050565b6149bd82614b1b565b810181811067ffffffffffffffff821117156149dc576149db614aec565b5b80604052505050565b60006149f082614936565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614a2357614a22614a5f565b5b600182019050919050565b6000614a3982614936565b9150614a4483614936565b925082614a5457614a53614a8e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f50524553414c455f434c4f534544000000000000000000000000000000000000600082015250565b7f4e554c4c5f414444524553530000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4558434545445f434c4159535f5045525f4d494e540000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4455504c49434154455f454e5452590000000000000000000000000000000000600082015250565b7f4f4e4c595f50524553414c450000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60008201527f636b656400000000000000000000000000000000000000000000000000000000602082015250565b7f4e4f545f5155414c494649454400000000000000000000000000000000000000600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f5055424c494300000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4558434545445f50524956415445000000000000000000000000000000000000600082015250565b7f4558434545445f414c4c4f430000000000000000000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b615240816148cc565b811461524b57600080fd5b50565b615257816148de565b811461526257600080fd5b50565b61526e816148ea565b811461527957600080fd5b50565b61528581614936565b811461529057600080fd5b5056fea2646970667358221220e93b02bf72193462fbcb111e87370f4e641136c953926e161462493f11a9727f64736f6c63430008040033

Deployed Bytecode Sourcemap

47064:5272:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39782:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51633:86;;;;;;;;;;;;;:::i;:::-;;26942:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28635:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28158:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40585:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47200:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29694:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47384:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40166:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50770:400;;;;;;;;;;;;;:::i;:::-;;30141:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47250:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40775:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51854:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47439:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48210:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51301:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26549:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26192:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9649:94;;;;;;;;;;;;;:::i;:::-;;48675:356;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51526:95;;;;;;;;;;;;;:::i;:::-;;50014:748;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48297:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8998:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51731:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48170:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27111:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51439:75;;;;;;;;;;;;;:::i;:::-;;47539:56;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47488:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47153:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51182:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47300:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29015:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49039:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30397:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52079:254;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48354:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49361:641;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48327:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51970:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29413:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9898:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48251:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39782:300;39929:4;39986:35;39971:50;;;:11;:50;;;;:103;;;;40038:36;40062:11;40038:23;:36::i;:::-;39971:103;39951:123;;39782:300;;;:::o;51633:86::-;9229:12;:10;:12::i;:::-;9218:23;;:7;:5;:7::i;:::-;:23;;;9210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51703:8:::1;;;;;;;;;;;51702:9;51691:8;;:20;;;;;;;;;;;;;;;;;;51633:86::o:0;26942:100::-;26996:13;27029:5;27022:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26942:100;:::o;28635:308::-;28756:7;28803:16;28811:7;28803;:16::i;:::-;28781:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;28911:15;:24;28927:7;28911:24;;;;;;;;;;;;;;;;;;;;;28904:31;;28635:308;;;:::o;28158:411::-;28239:13;28255:23;28270:7;28255:14;:23::i;:::-;28239:39;;28303:5;28297:11;;:2;:11;;;;28289:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28397:5;28381:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28406:37;28423:5;28430:12;:10;:12::i;:::-;28406:16;:37::i;:::-;28381:62;28359:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28540:21;28549:2;28553:7;28540:8;:21::i;:::-;28158:411;;;:::o;40585:113::-;40646:7;40673:10;:17;;;;40666:24;;40585:113;:::o;47200:43::-;47240:3;47200:43;:::o;29694:376::-;29903:41;29922:12;:10;:12::i;:::-;29936:7;29903:18;:41::i;:::-;29881:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30034:28;30044:4;30050:2;30054:7;30034:9;:28::i;:::-;29694:376;;;:::o;47384:48::-;47422:10;47384:48;:::o;40166:343::-;40308:7;40363:23;40380:5;40363:16;:23::i;:::-;40355:5;:31;40333:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;40475:12;:19;40488:5;40475:19;;;;;;;;;;;;;;;:26;40495:5;40475:26;;;;;;;;;;;;40468:33;;40166:343;;;;:::o;50770:400::-;50818:7;;;;;;;;;;;50810:25;;:52;50860:1;50836:21;:25;;;;:::i;:::-;50810:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50873:22;50898:21;50873:46;;50938:7;;;;;;;;;;;50930:25;;:53;50978:4;50973:2;50956:14;:19;;;;:::i;:::-;:26;;;;:::i;:::-;50930:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51002:7;;;;;;;;;;;50994:25;;:46;51037:2;51020:14;:19;;;;:::i;:::-;50994:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51059:7;;;;;;;;;;;51051:25;;:52;51101:1;51077:21;:25;;;;:::i;:::-;51051:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51122:7;;;;;;;;;;;51114:25;;:48;51140:21;51114:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50770:400;:::o;30141:185::-;30279:39;30296:4;30302:2;30306:7;30279:39;;;;;;;;;;;;:16;:39::i;:::-;30141:185;;;:::o;47250:43::-;47289:4;47250:43;:::o;40775:320::-;40895:7;40950:30;:28;:30::i;:::-;40942:5;:38;40920:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;41070:10;41081:5;41070:17;;;;;;;;;;;;;;;;;;;;;;;;41063:24;;40775:320;;;:::o;51854:108::-;9229:12;:10;:12::i;:::-;9218:23;;:7;:5;:7::i;:::-;:23;;;9210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48596:6:::1;;;;;;;;;;;48595:7;48587:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51951:3:::2;;51935:13;:19;;;;;;;:::i;:::-;;51854:108:::0;;:::o;47439:42::-;47480:1;47439:42;:::o;48210:34::-;;;;:::o;51301:130::-;51369:7;51396:21;:27;51418:4;51396:27;;;;;;;;;;;;;;;;51389:34;;51301:130;;;:::o;26549:326::-;26666:7;26691:13;26707:7;:16;26715:7;26707:16;;;;;;;;;;;;;;;;;;;;;26691:32;;26773:1;26756:19;;:5;:19;;;;26734:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;26862:5;26855:12;;;26549:326;;;:::o;26192:295::-;26309:7;26373:1;26356:19;;:5;:19;;;;26334:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26463:9;:16;26473:5;26463:16;;;;;;;;;;;;;;;;26456:23;;26192:295;;;:::o;9649:94::-;9229:12;:10;:12::i;:::-;9218:23;;:7;:5;:7::i;:::-;:23;;;9210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9714:21:::1;9732:1;9714:9;:21::i;:::-;9649:94::o:0;48675:356::-;9229:12;:10;:12::i;:::-;9218:23;;:7;:5;:7::i;:::-;:23;;;9210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48763:9:::1;48759:262;48782:7;;:14;;48778:1;:18;48759:262;;;48818:13;48834:7;;48842:1;48834:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48818:26;;48884:1;48867:19;;:5;:19;;;;48859:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;48927:12;:19;48940:5;48927:19;;;;;;;;;;;;;;;;;;;;;;;;;48926:20;48918:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;49005:4;48983:12;:19;48996:5;48983:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;48759:262;48798:3;;;;;:::i;:::-;;;;48759:262;;;;48675:356:::0;;:::o;51526:95::-;9229:12;:10;:12::i;:::-;9218:23;;:7;:5;:7::i;:::-;:23;;;9210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51602:11:::1;;;;;;;;;;;51601:12;51587:11;;:26;;;;;;;;;;;;;;;;;;51526:95::o:0;50014:748::-;50094:8;;;;;;;;;;;50093:9;:24;;;;;50106:11;;;;;;;;;;;50093:24;50085:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;50155:12;:24;50168:10;50155:24;;;;;;;;;;;;;;;;;;;;;;;;;50147:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;47289:4;47240:3;47190;47336:26;;;;:::i;:::-;:41;;;;:::i;:::-;50216:13;:11;:13::i;:::-;:25;50208:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;47240:3;50299:13;50277:19;;:35;;;;:::i;:::-;:52;;50269:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;50420:20;;50403:13;50367:21;:33;50389:10;50367:33;;;;;;;;;;;;;;;;:49;;;;:::i;:::-;:73;;50359:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50507:9;50490:13;47422:10;50476:27;;;;:::i;:::-;:40;;50468:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50563:9;50558:197;50582:13;50578:1;:17;50558:197;;;50617:19;;:21;;;;;;;;;:::i;:::-;;;;;;50653;:33;50675:10;50653:33;;;;;;;;;;;;;;;;:35;;;;;;;;;:::i;:::-;;;;;;50703:40;50713:10;50741:1;50725:13;:11;:13::i;:::-;:17;;;;:::i;:::-;50703:9;:40::i;:::-;50597:3;;;;;:::i;:::-;;;;50558:197;;;;50014:748;:::o;48297:23::-;;;;;;;;;;;;;:::o;8998:87::-;9044:7;9071:6;;;;;;;;;;;9064:13;;8998:87;:::o;51731:111::-;9229:12;:10;:12::i;:::-;9218:23;;:7;:5;:7::i;:::-;:23;;;9210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48596:6:::1;;;;;;;;;;;48595:7;48587:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;51831:3:::2;;51816:12;:18;;;;;;;:::i;:::-;;51731:111:::0;;:::o;48170:33::-;;;;:::o;27111:104::-;27167:13;27200:7;27193:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27111:104;:::o;51439:75::-;9229:12;:10;:12::i;:::-;9218:23;;:7;:5;:7::i;:::-;:23;;;9210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51502:4:::1;51493:6;;:13;;;;;;;;;;;;;;;;;;51439:75::o:0;47539:56::-;;;;;;;;;;;;;;;;;:::o;47488:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;47153:40::-;47190:3;47153:40;:::o;51182:107::-;51239:4;51263:12;:18;51276:4;51263:18;;;;;;;;;;;;;;;;;;;;;;;;;51256:25;;51182:107;;;:::o;47300:77::-;47289:4;47240:3;47190;47336:26;;;;:::i;:::-;:41;;;;:::i;:::-;47300:77;:::o;29015:327::-;29162:12;:10;:12::i;:::-;29150:24;;:8;:24;;;;29142:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29262:8;29217:18;:32;29236:12;:10;:12::i;:::-;29217:32;;;;;;;;;;;;;;;:42;29250:8;29217:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29315:8;29286:48;;29301:12;:10;:12::i;:::-;29286:48;;;29325:8;29286:48;;;;;;:::i;:::-;;;;;;;;29015:327;;:::o;49039:308::-;9229:12;:10;:12::i;:::-;9218:23;;:7;:5;:7::i;:::-;:23;;;9210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49132:9:::1;49128:212;49151:7;;:14;;49147:1;:18;49128:212;;;49187:13;49203:7;;49211:1;49203:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49187:26;;49253:1;49236:19;;:5;:19;;;;49228:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49323:5;49301:12;:19;49314:5;49301:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;49128:212;49167:3;;;;;:::i;:::-;;;;49128:212;;;;49039:308:::0;;:::o;30397:365::-;30586:41;30605:12;:10;:12::i;:::-;30619:7;30586:18;:41::i;:::-;30564:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30715:39;30729:4;30735:2;30739:7;30748:5;30715:13;:39::i;:::-;30397:365;;;;:::o;52079:254::-;52152:13;52186:16;52194:7;52186;:16::i;:::-;52178:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;52290:13;52305:18;:7;:16;:18::i;:::-;52273:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52259:66;;52079:254;;;:::o;48354:18::-;;;;;;;;;;;;;:::o;49361:641::-;49433:8;;;;;;;;;;;49425:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;49477:11;;;;;;;;;;;49476:12;49468:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;47289:4;47240:3;47190;47336:26;;;;:::i;:::-;:41;;;;:::i;:::-;49524:13;:11;:13::i;:::-;:25;49516:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;47289:4;49606:13;49585:18;;:34;;;;:::i;:::-;:50;;49577:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;47480:1;49672:13;:31;;49664:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49779:9;49762:13;47422:10;49748:27;;;;:::i;:::-;:40;;49740:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;49834:9;49830:145;49853:13;49849:1;:17;49830:145;;;49888:18;;:20;;;;;;;;;:::i;:::-;;;;;;49923:40;49933:10;49961:1;49945:13;:11;:13::i;:::-;:17;;;;:::i;:::-;49923:9;:40::i;:::-;49868:3;;;;;:::i;:::-;;;;49830:145;;;;49361:641;:::o;48327:20::-;;;;;;;;;;;;;:::o;51970:97::-;52014:13;52047:12;52040:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51970:97;:::o;29413:214::-;29555:4;29584:18;:25;29603:5;29584:25;;;;;;;;;;;;;;;:35;29610:8;29584:35;;;;;;;;;;;;;;;;;;;;;;;;;29577:42;;29413:214;;;;:::o;9898:229::-;9229:12;:10;:12::i;:::-;9218:23;;:7;:5;:7::i;:::-;:23;;;9210:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10021:1:::1;10001:22;;:8;:22;;;;9979:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;10100:19;10110:8;10100:9;:19::i;:::-;9898:229:::0;:::o;48251:39::-;;;;:::o;15193:387::-;15253:4;15461:12;15528:7;15516:20;15508:28;;15571:1;15564:4;:8;15557:15;;;15193:387;;;:::o;38727:126::-;;;;:::o;25773:355::-;25920:4;25977:25;25962:40;;;:11;:40;;;;:105;;;;26034:33;26019:48;;;:11;:48;;;;25962:105;:158;;;;26084:36;26108:11;26084:23;:36::i;:::-;25962:158;25942:178;;25773:355;;;:::o;1971:98::-;2024:7;2051:10;2044:17;;1971:98;:::o;32309:127::-;32374:4;32426:1;32398:30;;:7;:16;32406:7;32398:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32391:37;;32309:127;;;:::o;36432:174::-;36534:2;36507:15;:24;36523:7;36507:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36590:7;36586:2;36552:46;;36561:23;36576:7;36561:14;:23::i;:::-;36552:46;;;;;;;;;;;;36432:174;;:::o;32603:452::-;32732:4;32776:16;32784:7;32776;:16::i;:::-;32754:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32875:13;32891:23;32906:7;32891:14;:23::i;:::-;32875:39;;32944:5;32933:16;;:7;:16;;;:64;;;;32990:7;32966:31;;:20;32978:7;32966:11;:20::i;:::-;:31;;;32933:64;:113;;;;33014:32;33031:5;33038:7;33014:16;:32::i;:::-;32933:113;32925:122;;;32603:452;;;;:::o;35699:615::-;35872:4;35845:31;;:23;35860:7;35845:14;:23::i;:::-;:31;;;35823:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;35978:1;35964:16;;:2;:16;;;;35956:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36034:39;36055:4;36061:2;36065:7;36034:20;:39::i;:::-;36138:29;36155:1;36159:7;36138:8;:29::i;:::-;36199:1;36180:9;:15;36190:4;36180:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36228:1;36211:9;:13;36221:2;36211:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36259:2;36240:7;:16;36248:7;36240:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36298:7;36294:2;36279:27;;36288:4;36279:27;;;;;;;;;;;;35699:615;;;:::o;10135:173::-;10191:16;10210:6;;;;;;;;;;;10191:25;;10236:8;10227:6;;:17;;;;;;;;;;;;;;;;;;10291:8;10260:40;;10281:8;10260:40;;;;;;;;;;;;10135:173;;:::o;33397:110::-;33473:26;33483:2;33487:7;33473:26;;;;;;;;;;;;:9;:26::i;:::-;33397:110;;:::o;31644:352::-;31801:28;31811:4;31817:2;31821:7;31801:9;:28::i;:::-;31862:48;31885:4;31891:2;31895:7;31904:5;31862:22;:48::i;:::-;31840:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;31644:352;;;;:::o;12640:723::-;12696:13;12926:1;12917:5;:10;12913:53;;;12944:10;;;;;;;;;;;;;;;;;;;;;12913:53;12976:12;12991:5;12976:20;;13007:14;13032:78;13047:1;13039:4;:9;13032:78;;13065:8;;;;;:::i;:::-;;;;13096:2;13088:10;;;;;:::i;:::-;;;13032:78;;;13120:19;13152:6;13142:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13120:39;;13170:154;13186:1;13177:5;:10;13170:154;;13214:1;13204:11;;;;;:::i;:::-;;;13281:2;13273:5;:10;;;;:::i;:::-;13260:2;:24;;;;:::i;:::-;13247:39;;13230:6;13237;13230:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;13310:2;13301:11;;;;;:::i;:::-;;;13170:154;;;13348:6;13334:21;;;;;12640:723;;;;:::o;12119:207::-;12249:4;12293:25;12278:40;;;:11;:40;;;;12271:47;;12119:207;;;:::o;41708:589::-;41852:45;41879:4;41885:2;41889:7;41852:26;:45::i;:::-;41930:1;41914:18;;:4;:18;;;41910:187;;;41949:40;41981:7;41949:31;:40::i;:::-;41910:187;;;42019:2;42011:10;;:4;:10;;;42007:90;;42038:47;42071:4;42077:7;42038:32;:47::i;:::-;42007:90;41910:187;42125:1;42111:16;;:2;:16;;;42107:183;;;42144:45;42181:7;42144:36;:45::i;:::-;42107:183;;;42217:4;42211:10;;:2;:10;;;42207:83;;42238:40;42266:2;42270:7;42238:27;:40::i;:::-;42207:83;42107:183;41708:589;;;:::o;33734:321::-;33864:18;33870:2;33874:7;33864:5;:18::i;:::-;33915:54;33946:1;33950:2;33954:7;33963:5;33915:22;:54::i;:::-;33893:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;33734:321;;;:::o;37171:984::-;37326:4;37347:15;:2;:13;;;:15::i;:::-;37343:805;;;37416:2;37400:36;;;37459:12;:10;:12::i;:::-;37494:4;37521:7;37551:5;37400:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37379:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37779:1;37762:6;:13;:18;37758:320;;;37805:108;;;;;;;;;;:::i;:::-;;;;;;;;37758:320;38028:6;38022:13;38013:6;38009:2;38005:15;37998:38;37379:714;37649:45;;;37639:55;;;:6;:55;;;;37632:62;;;;;37343:805;38132:4;38125:11;;37171:984;;;;;;;:::o;43020:164::-;43124:10;:17;;;;43097:15;:24;43113:7;43097:24;;;;;;;;;;;:44;;;;43152:10;43168:7;43152:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43020:164;:::o;43811:1002::-;44091:22;44141:1;44116:22;44133:4;44116:16;:22::i;:::-;:26;;;;:::i;:::-;44091:51;;44153:18;44174:17;:26;44192:7;44174:26;;;;;;;;;;;;44153:47;;44321:14;44307:10;:28;44303:328;;44352:19;44374:12;:18;44387:4;44374:18;;;;;;;;;;;;;;;:34;44393:14;44374:34;;;;;;;;;;;;44352:56;;44458:11;44425:12;:18;44438:4;44425:18;;;;;;;;;;;;;;;:30;44444:10;44425:30;;;;;;;;;;;:44;;;;44575:10;44542:17;:30;44560:11;44542:30;;;;;;;;;;;:43;;;;44303:328;;44727:17;:26;44745:7;44727:26;;;;;;;;;;;44720:33;;;44771:12;:18;44784:4;44771:18;;;;;;;;;;;;;;;:34;44790:14;44771:34;;;;;;;;;;;44764:41;;;43811:1002;;;;:::o;45108:1079::-;45361:22;45406:1;45386:10;:17;;;;:21;;;;:::i;:::-;45361:46;;45418:18;45439:15;:24;45455:7;45439:24;;;;;;;;;;;;45418:45;;45790:19;45812:10;45823:14;45812:26;;;;;;;;;;;;;;;;;;;;;;;;45790:48;;45876:11;45851:10;45862;45851:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;45987:10;45956:15;:28;45972:11;45956:28;;;;;;;;;;;:41;;;;46128:15;:24;46144:7;46128:24;;;;;;;;;;;46121:31;;;46163:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45108:1079;;;;:::o;42598:221::-;42683:14;42700:20;42717:2;42700:16;:20::i;:::-;42683:37;;42758:7;42731:12;:16;42744:2;42731:16;;;;;;;;;;;;;;;:24;42748:6;42731:24;;;;;;;;;;;:34;;;;42805:6;42776:17;:26;42794:7;42776:26;;;;;;;;;;;:35;;;;42598:221;;;:::o;34391:382::-;34485:1;34471:16;;:2;:16;;;;34463:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34544:16;34552:7;34544;:16::i;:::-;34543:17;34535:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34606:45;34635:1;34639:2;34643:7;34606:20;:45::i;:::-;34681:1;34664:9;:13;34674:2;34664:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34712:2;34693:7;:16;34701:7;34693:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34757:7;34753:2;34732:33;;34749:1;34732:33;;;;;;;;;;;;34391:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343: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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;518:367::-;591:8;601:6;651:3;644:4;636:6;632:17;628:27;618:2;;669:1;666;659:12;618:2;705:6;692:20;682:30;;735:18;727:6;724:30;721:2;;;767:1;764;757:12;721:2;804:4;796:6;792:17;780:29;;858:3;850:4;842:6;838:17;828:8;824:32;821:41;818:2;;;875:1;872;865:12;818:2;608:277;;;;;:::o;891:133::-;934:5;972:6;959:20;950:29;;988:30;1012:5;988:30;:::i;:::-;940:84;;;;:::o;1030:137::-;1075:5;1113:6;1100:20;1091:29;;1129:32;1155:5;1129:32;:::i;:::-;1081:86;;;;:::o;1173:141::-;1229:5;1260:6;1254:13;1245:22;;1276:32;1302:5;1276:32;:::i;:::-;1235:79;;;;:::o;1333:271::-;1388:5;1437:3;1430:4;1422:6;1418:17;1414:27;1404:2;;1455:1;1452;1445:12;1404:2;1495:6;1482:20;1520:78;1594:3;1586:6;1579:4;1571:6;1567:17;1520:78;:::i;:::-;1511:87;;1394:210;;;;;:::o;1624:352::-;1682:8;1692:6;1742:3;1735:4;1727:6;1723:17;1719:27;1709:2;;1760:1;1757;1750:12;1709:2;1796:6;1783:20;1773:30;;1826:18;1818:6;1815:30;1812:2;;;1858:1;1855;1848:12;1812:2;1895:4;1887:6;1883:17;1871:29;;1949:3;1941:4;1933:6;1929:17;1919:8;1915:32;1912:41;1909:2;;;1966:1;1963;1956:12;1909:2;1699:277;;;;;:::o;1982:139::-;2028:5;2066:6;2053:20;2044:29;;2082:33;2109:5;2082:33;:::i;:::-;2034:87;;;;:::o;2127:262::-;2186:6;2235:2;2223:9;2214:7;2210:23;2206:32;2203:2;;;2251:1;2248;2241:12;2203:2;2294:1;2319:53;2364:7;2355:6;2344:9;2340:22;2319:53;:::i;:::-;2309:63;;2265:117;2193:196;;;;:::o;2395:407::-;2463:6;2471;2520:2;2508:9;2499:7;2495:23;2491:32;2488:2;;;2536:1;2533;2526:12;2488:2;2579:1;2604:53;2649:7;2640:6;2629:9;2625:22;2604:53;:::i;:::-;2594:63;;2550:117;2706:2;2732:53;2777:7;2768:6;2757:9;2753:22;2732:53;:::i;:::-;2722:63;;2677:118;2478:324;;;;;:::o;2808:552::-;2885:6;2893;2901;2950:2;2938:9;2929:7;2925:23;2921:32;2918:2;;;2966:1;2963;2956:12;2918:2;3009:1;3034:53;3079:7;3070:6;3059:9;3055:22;3034:53;:::i;:::-;3024:63;;2980:117;3136:2;3162:53;3207:7;3198:6;3187:9;3183:22;3162:53;:::i;:::-;3152:63;;3107:118;3264:2;3290:53;3335:7;3326:6;3315:9;3311:22;3290:53;:::i;:::-;3280:63;;3235:118;2908:452;;;;;:::o;3366:809::-;3461:6;3469;3477;3485;3534:3;3522:9;3513:7;3509:23;3505:33;3502:2;;;3551:1;3548;3541:12;3502:2;3594:1;3619:53;3664:7;3655:6;3644:9;3640:22;3619:53;:::i;:::-;3609:63;;3565:117;3721:2;3747:53;3792:7;3783:6;3772:9;3768:22;3747:53;:::i;:::-;3737:63;;3692:118;3849:2;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3820:118;4005:2;3994:9;3990:18;3977:32;4036:18;4028:6;4025:30;4022:2;;;4068:1;4065;4058:12;4022:2;4096:62;4150:7;4141:6;4130:9;4126:22;4096:62;:::i;:::-;4086:72;;3948:220;3492:683;;;;;;;:::o;4181:401::-;4246:6;4254;4303:2;4291:9;4282:7;4278:23;4274:32;4271:2;;;4319:1;4316;4309:12;4271:2;4362:1;4387:53;4432:7;4423:6;4412:9;4408:22;4387:53;:::i;:::-;4377:63;;4333:117;4489:2;4515:50;4557:7;4548:6;4537:9;4533:22;4515:50;:::i;:::-;4505:60;;4460:115;4261:321;;;;;:::o;4588:407::-;4656:6;4664;4713:2;4701:9;4692:7;4688:23;4684:32;4681:2;;;4729:1;4726;4719:12;4681:2;4772:1;4797:53;4842:7;4833:6;4822:9;4818:22;4797:53;:::i;:::-;4787:63;;4743:117;4899:2;4925:53;4970:7;4961:6;4950:9;4946:22;4925:53;:::i;:::-;4915:63;;4870:118;4671:324;;;;;:::o;5001:425::-;5087:6;5095;5144:2;5132:9;5123:7;5119:23;5115:32;5112:2;;;5160:1;5157;5150:12;5112:2;5231:1;5220:9;5216:17;5203:31;5261:18;5253:6;5250:30;5247:2;;;5293:1;5290;5283:12;5247:2;5329:80;5401:7;5392:6;5381:9;5377:22;5329:80;:::i;:::-;5311:98;;;;5174:245;5102:324;;;;;:::o;5432:260::-;5490:6;5539:2;5527:9;5518:7;5514:23;5510:32;5507:2;;;5555:1;5552;5545:12;5507:2;5598:1;5623:52;5667:7;5658:6;5647:9;5643:22;5623:52;:::i;:::-;5613:62;;5569:116;5497:195;;;;:::o;5698:282::-;5767:6;5816:2;5804:9;5795:7;5791:23;5787:32;5784:2;;;5832:1;5829;5822:12;5784:2;5875:1;5900:63;5955:7;5946:6;5935:9;5931:22;5900:63;:::i;:::-;5890:73;;5846:127;5774:206;;;;:::o;5986:395::-;6057:6;6065;6114:2;6102:9;6093:7;6089:23;6085:32;6082:2;;;6130:1;6127;6120:12;6082:2;6201:1;6190:9;6186:17;6173:31;6231:18;6223:6;6220:30;6217:2;;;6263:1;6260;6253:12;6217:2;6299:65;6356:7;6347:6;6336:9;6332:22;6299:65;:::i;:::-;6281:83;;;;6144:230;6072:309;;;;;:::o;6387:262::-;6446:6;6495:2;6483:9;6474:7;6470:23;6466:32;6463:2;;;6511:1;6508;6501:12;6463:2;6554:1;6579:53;6624:7;6615:6;6604:9;6600:22;6579:53;:::i;:::-;6569:63;;6525:117;6453:196;;;;:::o;6655:118::-;6742:24;6760:5;6742:24;:::i;:::-;6737:3;6730:37;6720:53;;:::o;6779:109::-;6860:21;6875:5;6860:21;:::i;:::-;6855:3;6848:34;6838:50;;:::o;6894:360::-;6980:3;7008:38;7040:5;7008:38;:::i;:::-;7062:70;7125:6;7120:3;7062:70;:::i;:::-;7055:77;;7141:52;7186:6;7181:3;7174:4;7167:5;7163:16;7141:52;:::i;:::-;7218:29;7240:6;7218:29;:::i;:::-;7213:3;7209:39;7202:46;;6984:270;;;;;:::o;7260:364::-;7348:3;7376:39;7409:5;7376:39;:::i;:::-;7431:71;7495:6;7490:3;7431:71;:::i;:::-;7424:78;;7511:52;7556:6;7551:3;7544:4;7537:5;7533:16;7511:52;:::i;:::-;7588:29;7610:6;7588:29;:::i;:::-;7583:3;7579:39;7572:46;;7352:272;;;;;:::o;7630:377::-;7736:3;7764:39;7797:5;7764:39;:::i;:::-;7819:89;7901:6;7896:3;7819:89;:::i;:::-;7812:96;;7917:52;7962:6;7957:3;7950:4;7943:5;7939:16;7917:52;:::i;:::-;7994:6;7989:3;7985:16;7978:23;;7740:267;;;;;:::o;8037:845::-;8140:3;8177:5;8171:12;8206:36;8232:9;8206:36;:::i;:::-;8258:89;8340:6;8335:3;8258:89;:::i;:::-;8251:96;;8378:1;8367:9;8363:17;8394:1;8389:137;;;;8540:1;8535:341;;;;8356:520;;8389:137;8473:4;8469:9;8458;8454:25;8449:3;8442:38;8509:6;8504:3;8500:16;8493:23;;8389:137;;8535:341;8602:38;8634:5;8602:38;:::i;:::-;8662:1;8676:154;8690:6;8687:1;8684:13;8676:154;;;8764:7;8758:14;8754:1;8749:3;8745:11;8738:35;8814:1;8805:7;8801:15;8790:26;;8712:4;8709:1;8705:12;8700:17;;8676:154;;;8859:6;8854:3;8850:16;8843:23;;8542:334;;8356:520;;8144:738;;;;;;:::o;8888:366::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;9034:220;;;:::o;9260:366::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9406:220;;;:::o;9632:366::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9778:220;;;:::o;10004:366::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10150:220;;;:::o;10376:366::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10522:220;;;:::o;10748:366::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10894:220;;;:::o;11120:366::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11266:220;;;:::o;11492:366::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11638:220;;;:::o;11864:366::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;12010:220;;;:::o;12236:366::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12382:220;;;:::o;12608:366::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12754:220;;;:::o;12980:366::-;13122:3;13143:67;13207:2;13202:3;13143:67;:::i;:::-;13136:74;;13219:93;13308:3;13219:93;:::i;:::-;13337:2;13332:3;13328:12;13321:19;;13126:220;;;:::o;13352:366::-;13494:3;13515:67;13579:2;13574:3;13515:67;:::i;:::-;13508:74;;13591:93;13680:3;13591:93;:::i;:::-;13709:2;13704:3;13700:12;13693:19;;13498:220;;;:::o;13724:366::-;13866:3;13887:67;13951:2;13946:3;13887:67;:::i;:::-;13880:74;;13963:93;14052:3;13963:93;:::i;:::-;14081:2;14076:3;14072:12;14065:19;;13870:220;;;:::o;14096:366::-;14238:3;14259:67;14323:2;14318:3;14259:67;:::i;:::-;14252:74;;14335:93;14424:3;14335:93;:::i;:::-;14453:2;14448:3;14444:12;14437:19;;14242:220;;;:::o;14468:366::-;14610:3;14631:67;14695:2;14690:3;14631:67;:::i;:::-;14624:74;;14707:93;14796:3;14707:93;:::i;:::-;14825:2;14820:3;14816:12;14809:19;;14614:220;;;:::o;14840:366::-;14982:3;15003:67;15067:2;15062:3;15003:67;:::i;:::-;14996:74;;15079:93;15168:3;15079:93;:::i;:::-;15197:2;15192:3;15188:12;15181:19;;14986:220;;;:::o;15212:366::-;15354:3;15375:67;15439:2;15434:3;15375:67;:::i;:::-;15368:74;;15451:93;15540:3;15451:93;:::i;:::-;15569:2;15564:3;15560:12;15553:19;;15358:220;;;:::o;15584:366::-;15726:3;15747:67;15811:2;15806:3;15747:67;:::i;:::-;15740:74;;15823:93;15912:3;15823:93;:::i;:::-;15941:2;15936:3;15932:12;15925:19;;15730:220;;;:::o;15956:366::-;16098:3;16119:67;16183:2;16178:3;16119:67;:::i;:::-;16112:74;;16195:93;16284:3;16195:93;:::i;:::-;16313:2;16308:3;16304:12;16297:19;;16102:220;;;:::o;16328:366::-;16470:3;16491:67;16555:2;16550:3;16491:67;:::i;:::-;16484:74;;16567:93;16656:3;16567:93;:::i;:::-;16685:2;16680:3;16676:12;16669:19;;16474:220;;;:::o;16700:366::-;16842:3;16863:67;16927:2;16922:3;16863:67;:::i;:::-;16856:74;;16939:93;17028:3;16939:93;:::i;:::-;17057:2;17052:3;17048:12;17041:19;;16846:220;;;:::o;17072:366::-;17214:3;17235:67;17299:2;17294:3;17235:67;:::i;:::-;17228:74;;17311:93;17400:3;17311:93;:::i;:::-;17429:2;17424:3;17420:12;17413:19;;17218:220;;;:::o;17444:366::-;17586:3;17607:67;17671:2;17666:3;17607:67;:::i;:::-;17600:74;;17683:93;17772:3;17683:93;:::i;:::-;17801:2;17796:3;17792:12;17785:19;;17590:220;;;:::o;17816:366::-;17958:3;17979:67;18043:2;18038:3;17979:67;:::i;:::-;17972:74;;18055:93;18144:3;18055:93;:::i;:::-;18173:2;18168:3;18164:12;18157:19;;17962:220;;;:::o;18188:366::-;18330:3;18351:67;18415:2;18410:3;18351:67;:::i;:::-;18344:74;;18427:93;18516:3;18427:93;:::i;:::-;18545:2;18540:3;18536:12;18529:19;;18334:220;;;:::o;18560:366::-;18702:3;18723:67;18787:2;18782:3;18723:67;:::i;:::-;18716:74;;18799:93;18888:3;18799:93;:::i;:::-;18917:2;18912:3;18908:12;18901:19;;18706:220;;;:::o;18932:366::-;19074:3;19095:67;19159:2;19154:3;19095:67;:::i;:::-;19088:74;;19171:93;19260:3;19171:93;:::i;:::-;19289:2;19284:3;19280:12;19273:19;;19078:220;;;:::o;19304:366::-;19446:3;19467:67;19531:2;19526:3;19467:67;:::i;:::-;19460:74;;19543:93;19632:3;19543:93;:::i;:::-;19661:2;19656:3;19652:12;19645:19;;19450:220;;;:::o;19676:366::-;19818:3;19839:67;19903:2;19898:3;19839:67;:::i;:::-;19832:74;;19915:93;20004:3;19915:93;:::i;:::-;20033:2;20028:3;20024:12;20017:19;;19822:220;;;:::o;20048:366::-;20190:3;20211:67;20275:2;20270:3;20211:67;:::i;:::-;20204:74;;20287:93;20376:3;20287:93;:::i;:::-;20405:2;20400:3;20396:12;20389:19;;20194:220;;;:::o;20420:118::-;20507:24;20525:5;20507:24;:::i;:::-;20502:3;20495:37;20485:53;;:::o;20544:429::-;20721:3;20743:92;20831:3;20822:6;20743:92;:::i;:::-;20736:99;;20852:95;20943:3;20934:6;20852:95;:::i;:::-;20845:102;;20964:3;20957:10;;20725:248;;;;;:::o;20979:222::-;21072:4;21110:2;21099:9;21095:18;21087:26;;21123:71;21191:1;21180:9;21176:17;21167:6;21123:71;:::i;:::-;21077:124;;;;:::o;21207:640::-;21402:4;21440:3;21429:9;21425:19;21417:27;;21454:71;21522:1;21511:9;21507:17;21498:6;21454:71;:::i;:::-;21535:72;21603:2;21592:9;21588:18;21579:6;21535:72;:::i;:::-;21617;21685:2;21674:9;21670:18;21661:6;21617:72;:::i;:::-;21736:9;21730:4;21726:20;21721:2;21710:9;21706:18;21699:48;21764:76;21835:4;21826:6;21764:76;:::i;:::-;21756:84;;21407:440;;;;;;;:::o;21853:210::-;21940:4;21978:2;21967:9;21963:18;21955:26;;21991:65;22053:1;22042:9;22038:17;22029:6;21991:65;:::i;:::-;21945:118;;;;:::o;22069:313::-;22182:4;22220:2;22209:9;22205:18;22197:26;;22269:9;22263:4;22259:20;22255:1;22244:9;22240:17;22233:47;22297:78;22370:4;22361:6;22297:78;:::i;:::-;22289:86;;22187:195;;;;:::o;22388:419::-;22554:4;22592:2;22581:9;22577:18;22569:26;;22641:9;22635:4;22631:20;22627:1;22616:9;22612:17;22605:47;22669:131;22795:4;22669:131;:::i;:::-;22661:139;;22559:248;;;:::o;22813:419::-;22979:4;23017:2;23006:9;23002:18;22994:26;;23066:9;23060:4;23056:20;23052:1;23041:9;23037:17;23030:47;23094:131;23220:4;23094:131;:::i;:::-;23086:139;;22984:248;;;:::o;23238:419::-;23404:4;23442:2;23431:9;23427:18;23419:26;;23491:9;23485:4;23481:20;23477:1;23466:9;23462:17;23455:47;23519:131;23645:4;23519:131;:::i;:::-;23511:139;;23409:248;;;:::o;23663:419::-;23829:4;23867:2;23856:9;23852:18;23844:26;;23916:9;23910:4;23906:20;23902:1;23891:9;23887:17;23880:47;23944:131;24070:4;23944:131;:::i;:::-;23936:139;;23834:248;;;:::o;24088:419::-;24254:4;24292:2;24281:9;24277:18;24269:26;;24341:9;24335:4;24331:20;24327:1;24316:9;24312:17;24305:47;24369:131;24495:4;24369:131;:::i;:::-;24361:139;;24259:248;;;:::o;24513:419::-;24679:4;24717:2;24706:9;24702:18;24694:26;;24766:9;24760:4;24756:20;24752:1;24741:9;24737:17;24730:47;24794:131;24920:4;24794:131;:::i;:::-;24786:139;;24684:248;;;:::o;24938:419::-;25104:4;25142:2;25131:9;25127:18;25119:26;;25191:9;25185:4;25181:20;25177:1;25166:9;25162:17;25155:47;25219:131;25345:4;25219:131;:::i;:::-;25211:139;;25109:248;;;:::o;25363:419::-;25529:4;25567:2;25556:9;25552:18;25544:26;;25616:9;25610:4;25606:20;25602:1;25591:9;25587:17;25580:47;25644:131;25770:4;25644:131;:::i;:::-;25636:139;;25534:248;;;:::o;25788:419::-;25954:4;25992:2;25981:9;25977:18;25969:26;;26041:9;26035:4;26031:20;26027:1;26016:9;26012:17;26005:47;26069:131;26195:4;26069:131;:::i;:::-;26061:139;;25959:248;;;:::o;26213:419::-;26379:4;26417:2;26406:9;26402:18;26394:26;;26466:9;26460:4;26456:20;26452:1;26441:9;26437:17;26430:47;26494:131;26620:4;26494:131;:::i;:::-;26486:139;;26384:248;;;:::o;26638:419::-;26804:4;26842:2;26831:9;26827:18;26819:26;;26891:9;26885:4;26881:20;26877:1;26866:9;26862:17;26855:47;26919:131;27045:4;26919:131;:::i;:::-;26911:139;;26809:248;;;:::o;27063:419::-;27229:4;27267:2;27256:9;27252:18;27244:26;;27316:9;27310:4;27306:20;27302:1;27291:9;27287:17;27280:47;27344:131;27470:4;27344:131;:::i;:::-;27336:139;;27234:248;;;:::o;27488:419::-;27654:4;27692:2;27681:9;27677:18;27669:26;;27741:9;27735:4;27731:20;27727:1;27716:9;27712:17;27705:47;27769:131;27895:4;27769:131;:::i;:::-;27761:139;;27659:248;;;:::o;27913:419::-;28079:4;28117:2;28106:9;28102:18;28094:26;;28166:9;28160:4;28156:20;28152:1;28141:9;28137:17;28130:47;28194:131;28320:4;28194:131;:::i;:::-;28186:139;;28084:248;;;:::o;28338:419::-;28504:4;28542:2;28531:9;28527:18;28519:26;;28591:9;28585:4;28581:20;28577:1;28566:9;28562:17;28555:47;28619:131;28745:4;28619:131;:::i;:::-;28611:139;;28509:248;;;:::o;28763:419::-;28929:4;28967:2;28956:9;28952:18;28944:26;;29016:9;29010:4;29006:20;29002:1;28991:9;28987:17;28980:47;29044:131;29170:4;29044:131;:::i;:::-;29036:139;;28934:248;;;:::o;29188:419::-;29354:4;29392:2;29381:9;29377:18;29369:26;;29441:9;29435:4;29431:20;29427:1;29416:9;29412:17;29405:47;29469:131;29595:4;29469:131;:::i;:::-;29461:139;;29359:248;;;:::o;29613:419::-;29779:4;29817:2;29806:9;29802:18;29794:26;;29866:9;29860:4;29856:20;29852:1;29841:9;29837:17;29830:47;29894:131;30020:4;29894:131;:::i;:::-;29886:139;;29784:248;;;:::o;30038:419::-;30204:4;30242:2;30231:9;30227:18;30219:26;;30291:9;30285:4;30281:20;30277:1;30266:9;30262:17;30255:47;30319:131;30445:4;30319:131;:::i;:::-;30311:139;;30209:248;;;:::o;30463:419::-;30629:4;30667:2;30656:9;30652:18;30644:26;;30716:9;30710:4;30706:20;30702:1;30691:9;30687:17;30680:47;30744:131;30870:4;30744:131;:::i;:::-;30736:139;;30634:248;;;:::o;30888:419::-;31054:4;31092:2;31081:9;31077:18;31069:26;;31141:9;31135:4;31131:20;31127:1;31116:9;31112:17;31105:47;31169:131;31295:4;31169:131;:::i;:::-;31161:139;;31059:248;;;:::o;31313:419::-;31479:4;31517:2;31506:9;31502:18;31494:26;;31566:9;31560:4;31556:20;31552:1;31541:9;31537:17;31530:47;31594:131;31720:4;31594:131;:::i;:::-;31586:139;;31484:248;;;:::o;31738:419::-;31904:4;31942:2;31931:9;31927:18;31919:26;;31991:9;31985:4;31981:20;31977:1;31966:9;31962:17;31955:47;32019:131;32145:4;32019:131;:::i;:::-;32011:139;;31909:248;;;:::o;32163:419::-;32329:4;32367:2;32356:9;32352:18;32344:26;;32416:9;32410:4;32406:20;32402:1;32391:9;32387:17;32380:47;32444:131;32570:4;32444:131;:::i;:::-;32436:139;;32334:248;;;:::o;32588:419::-;32754:4;32792:2;32781:9;32777:18;32769:26;;32841:9;32835:4;32831:20;32827:1;32816:9;32812:17;32805:47;32869:131;32995:4;32869:131;:::i;:::-;32861:139;;32759:248;;;:::o;33013:419::-;33179:4;33217:2;33206:9;33202:18;33194:26;;33266:9;33260:4;33256:20;33252:1;33241:9;33237:17;33230:47;33294:131;33420:4;33294:131;:::i;:::-;33286:139;;33184:248;;;:::o;33438:419::-;33604:4;33642:2;33631:9;33627:18;33619:26;;33691:9;33685:4;33681:20;33677:1;33666:9;33662:17;33655:47;33719:131;33845:4;33719:131;:::i;:::-;33711:139;;33609:248;;;:::o;33863:419::-;34029:4;34067:2;34056:9;34052:18;34044:26;;34116:9;34110:4;34106:20;34102:1;34091:9;34087:17;34080:47;34144:131;34270:4;34144:131;:::i;:::-;34136:139;;34034:248;;;:::o;34288:419::-;34454:4;34492:2;34481:9;34477:18;34469:26;;34541:9;34535:4;34531:20;34527:1;34516:9;34512:17;34505:47;34569:131;34695:4;34569:131;:::i;:::-;34561:139;;34459:248;;;:::o;34713:419::-;34879:4;34917:2;34906:9;34902:18;34894:26;;34966:9;34960:4;34956:20;34952:1;34941:9;34937:17;34930:47;34994:131;35120:4;34994:131;:::i;:::-;34986:139;;34884:248;;;:::o;35138:419::-;35304:4;35342:2;35331:9;35327:18;35319:26;;35391:9;35385:4;35381:20;35377:1;35366:9;35362:17;35355:47;35419:131;35545:4;35419:131;:::i;:::-;35411:139;;35309:248;;;:::o;35563:222::-;35656:4;35694:2;35683:9;35679:18;35671:26;;35707:71;35775:1;35764:9;35760:17;35751:6;35707:71;:::i;:::-;35661:124;;;;:::o;35791:129::-;35825:6;35852:20;;:::i;:::-;35842:30;;35881:33;35909:4;35901:6;35881:33;:::i;:::-;35832:88;;;:::o;35926:75::-;35959:6;35992:2;35986:9;35976:19;;35966:35;:::o;36007:307::-;36068:4;36158:18;36150:6;36147:30;36144:2;;;36180:18;;:::i;:::-;36144:2;36218:29;36240:6;36218:29;:::i;:::-;36210:37;;36302:4;36296;36292:15;36284:23;;36073:241;;;:::o;36320:141::-;36369:4;36392:3;36384:11;;36415:3;36412:1;36405:14;36449:4;36446:1;36436:18;36428:26;;36374:87;;;:::o;36467:98::-;36518:6;36552:5;36546:12;36536:22;;36525:40;;;:::o;36571:99::-;36623:6;36657:5;36651:12;36641:22;;36630:40;;;:::o;36676:168::-;36759:11;36793:6;36788:3;36781:19;36833:4;36828:3;36824:14;36809:29;;36771:73;;;;:::o;36850:169::-;36934:11;36968:6;36963:3;36956:19;37008:4;37003:3;36999:14;36984:29;;36946:73;;;;:::o;37025:148::-;37127:11;37164:3;37149:18;;37139:34;;;;:::o;37179:305::-;37219:3;37238:20;37256:1;37238:20;:::i;:::-;37233:25;;37272:20;37290:1;37272:20;:::i;:::-;37267:25;;37426:1;37358:66;37354:74;37351:1;37348:81;37345:2;;;37432:18;;:::i;:::-;37345:2;37476:1;37473;37469:9;37462:16;;37223:261;;;;:::o;37490:185::-;37530:1;37547:20;37565:1;37547:20;:::i;:::-;37542:25;;37581:20;37599:1;37581:20;:::i;:::-;37576:25;;37620:1;37610:2;;37625:18;;:::i;:::-;37610:2;37667:1;37664;37660:9;37655:14;;37532:143;;;;:::o;37681:348::-;37721:7;37744:20;37762:1;37744:20;:::i;:::-;37739:25;;37778:20;37796:1;37778:20;:::i;:::-;37773:25;;37966:1;37898:66;37894:74;37891:1;37888:81;37883:1;37876:9;37869:17;37865:105;37862:2;;;37973:18;;:::i;:::-;37862:2;38021:1;38018;38014:9;38003:20;;37729:300;;;;:::o;38035:191::-;38075:4;38095:20;38113:1;38095:20;:::i;:::-;38090:25;;38129:20;38147:1;38129:20;:::i;:::-;38124:25;;38168:1;38165;38162:8;38159:2;;;38173:18;;:::i;:::-;38159:2;38218:1;38215;38211:9;38203:17;;38080:146;;;;:::o;38232:96::-;38269:7;38298:24;38316:5;38298:24;:::i;:::-;38287:35;;38277:51;;;:::o;38334:90::-;38368:7;38411:5;38404:13;38397:21;38386:32;;38376:48;;;:::o;38430:149::-;38466:7;38506:66;38499:5;38495:78;38484:89;;38474:105;;;:::o;38585:126::-;38622:7;38662:42;38655:5;38651:54;38640:65;;38630:81;;;:::o;38717:77::-;38754:7;38783:5;38772:16;;38762:32;;;:::o;38800:154::-;38884:6;38879:3;38874;38861:30;38946:1;38937:6;38932:3;38928:16;38921:27;38851:103;;;:::o;38960:307::-;39028:1;39038:113;39052:6;39049:1;39046:13;39038:113;;;39137:1;39132:3;39128:11;39122:18;39118:1;39113:3;39109:11;39102:39;39074:2;39071:1;39067:10;39062:15;;39038:113;;;39169:6;39166:1;39163:13;39160:2;;;39249:1;39240:6;39235:3;39231:16;39224:27;39160:2;39009:258;;;;:::o;39273:320::-;39317:6;39354:1;39348:4;39344:12;39334:22;;39401:1;39395:4;39391:12;39422:18;39412:2;;39478:4;39470:6;39466:17;39456:27;;39412:2;39540;39532:6;39529:14;39509:18;39506:38;39503:2;;;39559:18;;:::i;:::-;39503:2;39324:269;;;;:::o;39599:281::-;39682:27;39704:4;39682:27;:::i;:::-;39674:6;39670:40;39812:6;39800:10;39797:22;39776:18;39764:10;39761:34;39758:62;39755:2;;;39823:18;;:::i;:::-;39755:2;39863:10;39859:2;39852:22;39642:238;;;:::o;39886:233::-;39925:3;39948:24;39966:5;39948:24;:::i;:::-;39939:33;;39994:66;39987:5;39984:77;39981:2;;;40064:18;;:::i;:::-;39981:2;40111:1;40104:5;40100:13;40093:20;;39929:190;;;:::o;40125:176::-;40157:1;40174:20;40192:1;40174:20;:::i;:::-;40169:25;;40208:20;40226:1;40208:20;:::i;:::-;40203:25;;40247:1;40237:2;;40252:18;;:::i;:::-;40237:2;40293:1;40290;40286:9;40281:14;;40159:142;;;;:::o;40307:180::-;40355:77;40352:1;40345:88;40452:4;40449:1;40442:15;40476:4;40473:1;40466:15;40493:180;40541:77;40538:1;40531:88;40638:4;40635:1;40628:15;40662:4;40659:1;40652:15;40679:180;40727:77;40724:1;40717:88;40824:4;40821:1;40814:15;40848:4;40845:1;40838:15;40865:180;40913:77;40910:1;40903:88;41010:4;41007:1;41000:15;41034:4;41031:1;41024:15;41051:102;41092:6;41143:2;41139:7;41134:2;41127:5;41123:14;41119:28;41109:38;;41099:54;;;:::o;41159:164::-;41299:16;41295:1;41287:6;41283:14;41276:40;41265:58;:::o;41329:162::-;41469:14;41465:1;41457:6;41453:14;41446:38;41435:56;:::o;41497:230::-;41637:34;41633:1;41625:6;41621:14;41614:58;41706:13;41701:2;41693:6;41689:15;41682:38;41603:124;:::o;41733:237::-;41873:34;41869:1;41861:6;41857:14;41850:58;41942:20;41937:2;41929:6;41925:15;41918:45;41839:131;:::o;41976:225::-;42116:34;42112:1;42104:6;42100:14;42093:58;42185:8;42180:2;42172:6;42168:15;42161:33;42082:119;:::o;42207:178::-;42347:30;42343:1;42335:6;42331:14;42324:54;42313:72;:::o;42391:171::-;42531:23;42527:1;42519:6;42515:14;42508:47;42497:65;:::o;42568:223::-;42708:34;42704:1;42696:6;42692:14;42685:58;42777:6;42772:2;42764:6;42760:15;42753:31;42674:117;:::o;42797:175::-;42937:27;42933:1;42925:6;42921:14;42914:51;42903:69;:::o;42978:162::-;43118:14;43114:1;43106:6;43102:14;43095:38;43084:56;:::o;43146:161::-;43286:13;43282:1;43274:6;43270:14;43263:37;43252:55;:::o;43313:231::-;43453:34;43449:1;43441:6;43437:14;43430:58;43522:14;43517:2;43509:6;43505:15;43498:39;43419:125;:::o;43550:165::-;43690:17;43686:1;43678:6;43674:14;43667:41;43656:59;:::o;43721:162::-;43861:14;43857:1;43849:6;43845:14;43838:38;43827:56;:::o;43889:243::-;44029:34;44025:1;44017:6;44013:14;44006:58;44098:26;44093:2;44085:6;44081:15;44074:51;43995:137;:::o;44138:229::-;44278:34;44274:1;44266:6;44262:14;44255:58;44347:12;44342:2;44334:6;44330:15;44323:37;44244:123;:::o;44373:228::-;44513:34;44509:1;44501:6;44497:14;44490:58;44582:11;44577:2;44569:6;44565:15;44558:36;44479:122;:::o;44607:182::-;44747:34;44743:1;44735:6;44731:14;44724:58;44713:76;:::o;44795:231::-;44935:34;44931:1;44923:6;44919:14;44912:58;45004:14;44999:2;44991:6;44987:15;44980:39;44901:125;:::o;45032:182::-;45172:34;45168:1;45160:6;45156:14;45149:58;45138:76;:::o;45220:228::-;45360:34;45356:1;45348:6;45344:14;45337:58;45429:11;45424:2;45416:6;45412:15;45405:36;45326:122;:::o;45454:223::-;45594:34;45590:1;45582:6;45578:14;45571:58;45663:6;45658:2;45650:6;45646:15;45639:31;45560:117;:::o;45683:163::-;45823:15;45819:1;45811:6;45807:14;45800:39;45789:57;:::o;45852:181::-;45992:33;45988:1;45980:6;45976:14;45969:57;45958:75;:::o;46039:220::-;46179:34;46175:1;46167:6;46163:14;46156:58;46248:3;46243:2;46235:6;46231:15;46224:28;46145:114;:::o;46265:163::-;46405:15;46401:1;46393:6;46389:14;46382:39;46371:57;:::o;46434:236::-;46574:34;46570:1;46562:6;46558:14;46551:58;46643:19;46638:2;46630:6;46626:15;46619:44;46540:130;:::o;46676:231::-;46816:34;46812:1;46804:6;46800:14;46793:58;46885:14;46880:2;46872:6;46868:15;46861:39;46782:125;:::o;46913:164::-;47053:16;47049:1;47041:6;47037:14;47030:40;47019:58;:::o;47083:162::-;47223:14;47219:1;47211:6;47207:14;47200:38;47189:56;:::o;47251:166::-;47391:18;47387:1;47379:6;47375:14;47368:42;47357:60;:::o;47423:122::-;47496:24;47514:5;47496:24;:::i;:::-;47489:5;47486:35;47476:2;;47535:1;47532;47525:12;47476:2;47466:79;:::o;47551:116::-;47621:21;47636:5;47621:21;:::i;:::-;47614:5;47611:32;47601:2;;47657:1;47654;47647:12;47601:2;47591:76;:::o;47673:120::-;47745:23;47762:5;47745:23;:::i;:::-;47738:5;47735:34;47725:2;;47783:1;47780;47773:12;47725:2;47715:78;:::o;47799:122::-;47872:24;47890:5;47872:24;:::i;:::-;47865:5;47862:35;47852:2;;47911:1;47908;47901:12;47852:2;47842:79;:::o

Swarm Source

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