ETH Price: $3,442.30 (-1.31%)
Gas: 9 Gwei

Token

CatsOnChain (COnC)
 

Overview

Max Total Supply

1,008 COnC

Holders

357

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
ujq.eth
Balance
7 COnC
0x477430e5d51a00a0d09f8c3cbe3db4aef7ca8ed6
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CatsOnChain

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
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);
    }
}

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;
    }
}


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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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);
}

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);
}

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;
    }
}

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;
}

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);
}

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);
}

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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();
    }
}

pragma solidity ^0.8.0;

library CatLib {
    string internal constant TABLE =
        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return "";

        // load the table into memory
        string memory table = TABLE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)

            // prepare the lookup table
            let tablePtr := add(table, 1)

            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))

            // result ptr, jump over length
            let resultPtr := add(result, 32)

            // run over the input, 3 bytes at a time
            for {

            } lt(dataPtr, endPtr) {

            } {
                dataPtr := add(dataPtr, 3)

                // read 3 bytes
                let input := mload(dataPtr)

                // write 4 characters
                mstore(
                    resultPtr,
                    shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                )
                resultPtr := add(resultPtr, 1)
                mstore(
                    resultPtr,
                    shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                )
                resultPtr := add(resultPtr, 1)
                mstore(
                    resultPtr,
                    shl(248, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                )
                resultPtr := add(resultPtr, 1)
                mstore(
                    resultPtr,
                    shl(248, mload(add(tablePtr, and(input, 0x3F))))
                )
                resultPtr := add(resultPtr, 1)
            }

            // padding with '='
            switch mod(mload(data), 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }
        }

        return result;
    }

    function toString(uint256 value) internal pure returns (string memory) {
        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);
    }

    function parseInt(string memory _a)
        internal
        pure
        returns (uint8 _parsedInt)
    {
        bytes memory bresult = bytes(_a);
        uint8 mint = 0;
        for (uint8 i = 0; i < bresult.length; i++) {
            if (
                (uint8(uint8(bresult[i])) >= 48) &&
                (uint8(uint8(bresult[i])) <= 57)
            ) {
                mint *= 10;
                mint += uint8(bresult[i]) - 48;
            }
        }
        return mint;
    }

    function parseInt16(string memory _a)
        internal
        pure
        returns (uint16 _parsedInt)
    {
        bytes memory bresult = bytes(_a);
        uint16 mint = 0;
        for (uint8 i = 0; i < bresult.length; i++) {
            if (
                (uint8(uint8(bresult[i])) >= 48) &&
                (uint8(uint8(bresult[i])) <= 57)
            ) {
                mint *= 10;
                mint += uint8(bresult[i]) - 48;
            }
        }
        return mint;
    }

    function substring(
        string memory str,
        uint256 startIndex,
        uint256 endIndex
    ) internal pure returns (string memory) {
        bytes memory strBytes = bytes(str);
        bytes memory result = new bytes(endIndex - startIndex);
        for (uint256 i = startIndex; i < endIndex; i++) {
            result[i - startIndex] = strBytes[i];
        }
        return string(result);
    }

    function letterToNumber(bytes1 _inputLetter) internal pure returns (uint8) {
        bytes memory tablebytes = bytes(TABLE);
        for (uint8 i = 0; i < tablebytes.length; i++) {
            if (
                keccak256(abi.encodePacked((tablebytes[i]))) ==
                keccak256(abi.encodePacked((_inputLetter)))
            ) return (i);
        }
        revert();
    }
}

pragma solidity ^0.8.0;

// TODO Namechange
contract CatsOnChain is ERC721Enumerable {
    using CatLib for uint8;

    struct Trait {
        string traitName;
        string traitType;
        string pixels;
    }

    mapping(uint256 => string) internal tokenIdToHash;
    mapping(uint256 => Trait[]) public traitTypes;
    mapping(string => bool) hashToMinted;

    uint256 public constant MINT_PRICE = 80000000000000000; // 0.08 ETH
    uint256 public constant MAX_SUPPLY = 11111;

    uint16[][7] TIERS;
    address _owner;
    uint256 SEED_NONCE = 0;

    constructor() ERC721("CatsOnChain", "COnC") {
        _owner = msg.sender;

        //Declare all the rarity tiers        
        //Hat
        TIERS[0] = [5556,333,667,1333,1000,1111,889,222];
        //Whiskers
        TIERS[1] = [1920,412,3978,3018,960,823];
        //Mouth
        TIERS[2] = [2564,2393,2051,1709,1026,855,342,171];
        //Eyes
        TIERS[3] = [1949,2242,1365,1754,975,877,780,487,390,292];
        //Eyebrows
        TIERS[4] = [2083,1736,2083,1389,2431,1042,347];
        //Neck
        TIERS[5] = [6286,2193,1170,585,292,585];
        //Type
        TIERS[6] = [92,3214,1837,3214,1377,459,918];  


        for(int i = 0; i<10; i++){
            mintCatOwner();
        }     

    }    
    /*
  __  __ _     _   _             ___             _   _             
 |  \/  (_)_ _| |_(_)_ _  __ _  | __|  _ _ _  __| |_(_)___ _ _  ___
 | |\/| | | ' \  _| | ' \/ _` | | _| || | ' \/ _|  _| / _ \ ' \(_-<
 |_|  |_|_|_||_\__|_|_||_\__, | |_| \_,_|_||_\__|\__|_\___/_||_/__/
                         |___/                                     
   */

    /**
     * @dev Converts a digit from 0 - 11110 into its corresponding rarity based on the given rarity tier.
     * @param _randinput The input from 0 - 11110 to use for rarity gen.
     * @param _rarityTier The tier to use.
     */
    function rarityGen(uint256 _randinput, uint8 _rarityTier)
        internal
        view
        returns (string memory)
    {
        uint16 currentLowerBound = 0;
        for (uint8 i = 0; i < TIERS[_rarityTier].length; i++) {
            uint16 thisPercentage = TIERS[_rarityTier][i];
            if (
                _randinput >= currentLowerBound &&
                _randinput < currentLowerBound + thisPercentage
            ) return i.toString();
            currentLowerBound = currentLowerBound + thisPercentage;
        }

        revert();
    }

    /**
     * @dev Generates a 7 digit hash from a tokenId, address, and random number.
     * @param _t The token id to be used within the hash.
     * @param _a The address to be used within the hash.
     * @param _c The custom nonce to be used within the hash.
     */
    function hash(
        uint256 _t,
        address _a,
        uint256 _c
    ) internal returns (string memory) {
        require(_c < 10);

        // This will generate a 7 random character string.
        string memory currentHash;

        for (uint8 i = 0; i < 7; i++) {
            SEED_NONCE++;
            uint16 _randinput = uint16(
                uint256(
                    keccak256(
                        abi.encodePacked(
                            block.timestamp,
                            block.difficulty,
                            _t,
                            _a,
                            _c,
                            SEED_NONCE
                        )
                    )
                ) % 11111
            );

            currentHash = string(
                abi.encodePacked(currentHash, rarityGen(_randinput, i))
            );
        }

        if (hashToMinted[currentHash]) return hash(_t, _a, _c + 1);

        return currentHash;
    }

    /**
     * @dev Mints new cat. The first 1000 mints are free. Afterwards each mint costs 0.08 Eth. There is a maximum of 11111 cats. 
     */
    function mintCatPublic() public payable {
        require(msg.value  >= MINT_PRICE || totalSupply() < 1000,
            "Wrong Minting Price (0.08 Eth)"
        );
        mintCat();      
    }

    function mintCat() private{    
        uint256 _totalSupply = totalSupply();
        require(_totalSupply < MAX_SUPPLY, "All cats are already minted");
        uint256 thisTokenId = _totalSupply;
        tokenIdToHash[thisTokenId] = hash(thisTokenId, msg.sender, 0);
        hashToMinted[tokenIdToHash[thisTokenId]] = true;
        _mint(msg.sender, thisTokenId);
    }

    /*
 ____     ___   ____  ___        _____  __ __  ____     __ ______  ____  ___   ____   _____
|    \   /  _] /    ||   \      |     ||  |  ||    \   /  ]      ||    |/   \ |    \ / ___/
|  D  ) /  [_ |  o  ||    \     |   __||  |  ||  _  | /  /|      | |  ||     ||  _  (   \_ 
|    / |    _]|     ||  D  |    |  |_  |  |  ||  |  |/  / |_|  |_| |  ||  O  ||  |  |\__  |
|    \ |   [_ |  _  ||     |    |   _] |  :  ||  |  /   \_  |  |   |  ||     ||  |  |/  \ |
|  .  \|     ||  |  ||     |    |  |   |     ||  |  \     | |  |   |  ||     ||  |  |\    |
|__|\_||_____||__|__||_____|    |__|    \__,_||__|__|\____| |__|  |____|\___/ |__|__| \___|
                                                                                           
*/

    /**
     * @dev Returns the GIF and metadata for a token Id
     * @param _tokenId The tokenId to return the GIF and metadata for.
     */
    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId));
        string memory tokenHash = tokenIdToHash[_tokenId];
      

        return
            string(
                abi.encodePacked(
                    "data:application/json;base64,",
                    CatLib.encode(
                        bytes(
                            string(
                                abi.encodePacked(
                                    '{"name": "Cat #',
                                    CatLib.toString(_tokenId),
                                    '", "description": "CatsOnChain is a collection of 11,111 unique animated cats. All metadata and GIFs are generated by an algorithm on the blockchain. No IPFS, no API. Just one smart contract on the Ethereum blockchain.", "image": "data:image/gif;base64,',
                                    hashToGifHex(tokenHash),
                                    '","attributes":',
                                    hashToMetadata(tokenHash),
                                    "}"
                                )
                            )
                        )
                    )
                )
            );
    }

    /**
     * @dev Hash to GIF-Hex function
     * @param _hash The Hash to generate the GIF
     */
    function hashToGifHex(string memory _hash)
        public
        view
        returns (string memory)
    {
        // 12 Frames. Each with 25x25 (625) colors
        bytes[12] memory colorBytes;
        for (uint256 i = 0; i < 12; i++) {
            colorBytes[i] = new bytes(625);
        }
        bool[625][12] memory placedPixels;

        //for each trait
        for (uint8 i = 0; i < 7; i++) {
            uint16 thisTraitIndex = CatLib.parseInt16(
                CatLib.substring(_hash, i, i + 1)
            );

            //For each defined pixel within the trait
            for (
                uint16 j = 0;
                j < bytes(traitTypes[i][thisTraitIndex].pixels).length / 5;
                j++
            ) {
                // Get the pixel information
                string memory thisPixel = CatLib.substring(
                    traitTypes[i][thisTraitIndex].pixels,
                    j * 5,
                    j * 5 + 5
                );
                bytes memory thisPixelBytes = bytes(thisPixel);

                // Get the place of the pixel: 25*(Y-Coordinate) + X-Coordinate
                uint16 place = CatLib.letterToNumber(thisPixelBytes[1]);
                place = place * 25 + CatLib.letterToNumber(thisPixelBytes[0]);

                // Get the Length of the Pixel
                uint8 PixelLength = CatLib.letterToNumber(thisPixelBytes[2]);

                // Get the color of the pixel
                uint8 color = CatLib.letterToNumber(thisPixelBytes[3]);

                // Get the movement of the Pixel
                uint8 movement = CatLib.letterToNumber(thisPixelBytes[4]);
               
                // Do it PixelLenghth-times
                for (uint8 l = 0; l < PixelLength; l++) {
                    //For each GIF Frame
                    for (uint8 k = 0; k < 12; k++) {
                        //Place and color inside this frame
                        uint16 placeFrame = place;
                        uint8 colorFrame = color;

                        //Each Movement results in different output
                        if (movement == 0) {
                            // Do nothing
                        } else if (movement == 1) {
                            placeFrame = (place + k) % 625;
                        } else if (movement == 2) {
                            colorFrame = color + (k % 3);
                        } else if (movement == 3) {
                            colorFrame = (color - 1) + ((k + 1) % 3);
                        } else if (movement == 4) {
                            colorFrame = (color - 2) + ((k + 2) % 3);
                        } else if (movement == 5) {
                            placeFrame = placeFrame + ((k / 4) % 2);
                        } else if (movement == 6) {
                            if (0 >= k || k >= 11) {
                                continue;
                            }
                        } else if (movement == 7) {
                            if (1 >= k || k >= 10) {
                                continue;
                            }
                        } else if (movement == 8) {
                            if (2 >= k || k >= 9) {
                                continue;
                            }
                        } else if (movement == 9) {
                            if (3 >= k || k >= 8) {
                                continue;
                            }
                        } else if (movement == 10) {
                            if (4 >= k || k >= 7) {
                                continue;
                            }
                        } else if (movement == 11) {
                            if (k > 5) {
                                placeFrame = place - 25;
                            }
                        } else if (movement == 12) {
                            if (k == 3 || k == 5) {
                                placeFrame = place - 25;
                            }
                        } else if (movement == 13) {
                            if ((k / 3) % 2 == 0) {
                                continue;
                            }
                        } else if (movement == 14) {
                            if ((k / 3) % 2 != 0) {
                                continue;
                            }
                        } else if (movement == 15) {
                            placeFrame = place + (k / 2) * 25;
                        } else if (movement == 16) {
                            if (k % 2 != 0) {
                                continue;
                            }
                        } else if (movement == 17) {
                            placeFrame = place + (k / 2) * 26;
                            if (placeFrame >= 625) {
                                continue;
                            }
                        } else if (movement == 18) {
                            if ((k/2) == 2 || (k/2) == 4) {
                                placeFrame = place - 25;
                            }
                        } else if (movement == 19) {
                            if((k/2)%2 == 1){
                                placeFrame = place - 1;                               
                           }
                        } else if (movement == 20) {
                            placeFrame = place + ((k+3) / 2) % 2;
                        } else if (movement == 21) {
                            if(k<6){
                                placeFrame = place + k;
                            }else{
                                placeFrame = place + (12-k);
                            }
                            if(placeFrame > 37) continue;
                            colorFrame = color + k/6;
                        }else if (movement == 22) {
                            if(k<6){
                                if(placeFrame > 42 - k) continue;
                            }else{
                                if(placeFrame > 42 - (12-k)) continue;
                            }                            
                            colorFrame = color - k/6;
                        }else if (movement == 23) {
                           if(k%2 == 0){
                               if(k%4 == 0){ 
                                   placeFrame = place + 1;
                               } else {
                                   placeFrame = place - 1;
                               }
                           }
                        } else if (movement == 24) {
                            placeFrame = placeFrame - ((k / 4) % 2);
                        } else if (movement == 24) {
                            placeFrame = placeFrame + ((k / 3) % 2);
                        }

                        // Only set the Pixel if not set before
                        if (placedPixels[k][placeFrame]) continue;

                        //Set the color
                        colorBytes[k][placeFrame] = abi.encodePacked(
                            colorFrame
                        )[0];
                        placedPixels[k][placeFrame] = true;
                    }
                    place += 1;
                }
            }
        }
     
        
        /* Define the GIF         
            Header: \x47\x49\x46\x38\x39\x61
            Size (100px x 100px):  \x64\x00\x64\x00
            Define of length of Global Color Table (64 colors): \xF5
            Background color (not used): \x02 
            Default pixel ratio: \x00
            Color table with 64 colors (in RGB):    \x00\x00\x00
                                                    \x43\xF6\xEE
                                                    ...
                                                    \x00\x00\x00
            Application Extension: \x21\xFF
                Size of block including application name and verification bytes (always 11): \x0B
                8-byte application name plus 3 verification bytes: \x4E\x45\x54\x53\x43\x41\x50\x45\x32\x2E\x30
                Number of bytes in the following sub block: \x03
                    Subblock: 
                        Index of subblock: \x01
                        Number of repetitions (never ends): \x00\x00
            End of Application extension: \x00
      */
        bytes
            memory gifHex = "\x47\x49\x46\x38\x39\x61\x64\x00\x64\x00\xF5\x02\x00\x00\x00\x00\xF6\x43\x7F\x43\xF6\xEE\x5D\xF6\x43\x4A\xC7\x35\xFF\xD7\x00\xFE\xE2\x4D\xFE\xDC\x25\xC0\xC0\xC0\xD0\xD0\xD0\xDF\xDF\xDF\x00\x00\x00\x00\x3A\x04\x00\x49\x05\x00\x5E\x07\x27\x07\x3E\x2E\xBD\xB7\x31\x25\x06\x3A\x05\x05\x3D\x0B\x60\x46\x16\x70\x48\x27\x60\x52\x48\x2D\x52\x4B\x35\x5A\x44\x0A\x5C\x1E\x92\x63\x59\x3D\x67\x59\x37\x6B\x20\xAC\x6B\x61\x44\x6D\x15\x15\x6D\x5D\x34\x6D\x6D\x6D\x80\x6B\x34\x82\x80\x79\x8B\x69\x11\x8D\x7E\x57\x92\x47\x47\x9A\x4E\x6E\xA9\xA9\xA9\xB1\x9D\x68\xBD\xAB\x79\xC5\x9F\x9F\xCA\xD4\x38\xCC\x73\x20\xDD\x7B\x1F\xE5\xBC\xBC\xE7\xE7\xE7\xEB\xF6\x43\xEF\x79\xAB\xF0\xD9\xE3\xFF\x00\x00\xFF\xF9\xF9\xFF\xFF\x00\xFF\xFF\xFF\x08\x26\x42\x11\x37\x5C\x22\x53\x81\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x21\xFF\x0B\x4E\x45\x54\x53\x43\x41\x50\x45\x32\x2E\x30\x03\x01\x00\x00\x00";

        //For each Frame add Hex value to the gifHex
        for (uint256 i = 0; i < 12; i++) {
            gifHex = abi.encodePacked(gifHex, hexByColors(colorBytes[i]));
        }

        //Add Last byte in the file: \x3B
        gifHex = abi.encodePacked(gifHex, "\x3B");
        return CatLib.encode(gifHex);
    }

    /**
     * @dev Get the Hex of the GIF by Color-Bytes
     * @param colorBytes Bytes of Colors for the GIF (625 Bytes)
     */
    function hexByColors(bytes memory colorBytes)
        public
        pure
        returns (bytes memory)
    {
        bytes memory returnHex;
        bytes memory tempBytes;

        // For each row in the gif (25x25 = 625 colors)
        for (uint256 i = 0; i < colorBytes.length / 25; i++) {
            // Get Hex of the row
            tempBytes = hexgetLine(colorBytes, i * 25);

            //Because we want a 100x100px Gif: Copy the line 4 times
            for (uint256 j = 0; j < 4; j++) {
                returnHex = abi.encodePacked(returnHex, tempBytes);
            }
        }

        /*returnHex Explanation: 
            Graphic Control Extension: \x21\xF9
                Amount of GCE bytes: \x04
                    Transparent color given (yes): \x09
                    Frame delay (0,16s): \x11\x00
                    Transparent color (The first color in the Global Color Table):\x00
            End of GCE extension: \x00
            Image Descriptor: \x2C
                North-west corner position of frame: \x00\x00\x00\x00
                Frame width (100x100px):\x64\x00\x64\x00
                Local color table (not used):\x00
                Minimum LZW (Lempel-Ziv-Welch) compression: \x07

                Hex LZW

                Last Bytes of LZW: \x01\x81
            End of Image Descriptor: \x00 
        */
        returnHex = abi.encodePacked(
            "\x21\xF9\x04\x09\x11\x00\x00\x00\x2C\x00\x00\x00\x00\x64\x00\x64\x00\x00\x07",
            returnHex,
            "\x01\x81\x00"
        );
        return returnHex;
    }

    /**
     * @dev Get Hex-value for one row of the GIF
     * @param colorBytes Bytes of Colors for the GIF
     * @param startindex The start index of the row
     */
    function hexgetLine(bytes memory colorBytes, uint256 startindex)
        public
        pure
        returns (bytes memory)
    {
        bytes memory returnHex;
        // For each color: add the byte 4 times
        for (uint256 i = startindex; i < startindex + 25; i++) {
            bytes1 tempByte = colorBytes[i];
            for (uint256 j = 0; j < 4; j++) {
                returnHex = abi.encodePacked(returnHex, tempByte);
            }
        }

        /*
            Length of the Part (25*4 + 1): \x65
            Clear Code (relevant for LZW): \x80 
        */
        return abi.encodePacked("\x65\x80", returnHex);
    }

    /**
     * @dev Hash to metadata function
     * @param _hash The Hash to generate the Metadata
     */
    function hashToMetadata(string memory _hash)
        public
        view
        returns (string memory)
    {
        string memory metadataString;

        for (uint8 i = 0; i < 7; i++) {
            uint8 thisTraitIndex = CatLib.parseInt(
                CatLib.substring(_hash, i, i + 1)
            );

            metadataString = string(
                abi.encodePacked(
                    metadataString,
                    '{"trait_type":"',
                    traitTypes[i][thisTraitIndex].traitType,
                    '","value":"',
                    traitTypes[i][thisTraitIndex].traitName,
                    '"}'
                )
            );

            if (i < 6)
                metadataString = string(abi.encodePacked(metadataString, ","));
        }

        return string(abi.encodePacked("[", metadataString, "]"));
    }

    /**
     * @dev Get Has by TokenID
     * @param _tokenId Token ID 
     */
    function _tokenIdToHash(uint256 _tokenId)
        public
        view
        returns (string memory)
    {
        string memory tokenHash = tokenIdToHash[_tokenId];
        return tokenHash;
    }   

    /*
  ___   __    __  ____     ___  ____       _____  __ __  ____     __ ______  ____  ___   ____   _____
 /   \ |  |__|  ||    \   /  _]|    \     |     ||  |  ||    \   /  ]      ||    |/   \ |    \ / ___/
|     ||  |  |  ||  _  | /  [_ |  D  )    |   __||  |  ||  _  | /  /|      | |  ||     ||  _  (   \_ 
|  O  ||  |  |  ||  |  ||    _]|    /     |  |_  |  |  ||  |  |/  / |_|  |_| |  ||  O  ||  |  |\__  |
|     ||  `  '  ||  |  ||   [_ |    \     |   _] |  :  ||  |  /   \_  |  |   |  ||     ||  |  |/  \ |
|     | \      / |  |  ||     ||  .  \    |  |   |     ||  |  \     | |  |   |  ||     ||  |  |\    |
 \___/   \_/\_/  |__|__||_____||__|\_|    |__|    \__,_||__|__|\____| |__|  |____|\___/ |__|__| \___|
                                                                                                    
    */

    /**
     * @dev Modifier to only allow owner to call functions
     */
    modifier onlyOwner() {
        require(_owner == msg.sender);
        _;
    }

    /**
     * @dev Clears the traits.
     */
    function clearTraits() public onlyOwner {
        for (uint256 i = 0; i < 7; i++) {
            delete traitTypes[i];
        }
    }

    /**
     * @dev Add a trait type
     * @param _traitTypeIndex The trait type index
     * @param traits Array of traits to add
     */

    function addTraitType(uint256 _traitTypeIndex, Trait[] memory traits)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < traits.length; i++) {
            traitTypes[_traitTypeIndex].push(
                Trait(
                    traits[i].traitName,
                    traits[i].traitType,
                    traits[i].pixels
                )
            );
        }
    }

    /**
     * @dev Transfers ownership
     * @param _newOwner The new owner
     */
    function transferOwnership(address _newOwner) public onlyOwner {
        _owner = _newOwner;
    }

    /**
     * @dev Withdraw Ether
     */
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Balance is zero");
        payable(msg.sender).transfer(balance);
    }

    /**
     * @dev Owner Mint
     */
    function mintCatOwner() public onlyOwner {
        mintCat();      
    }
}

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":"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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"_tokenIdToHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_traitTypeIndex","type":"uint256"},{"components":[{"internalType":"string","name":"traitName","type":"string"},{"internalType":"string","name":"traitType","type":"string"},{"internalType":"string","name":"pixels","type":"string"}],"internalType":"struct CatsOnChain.Trait[]","name":"traits","type":"tuple[]"}],"name":"addTraitType","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":[],"name":"clearTraits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"hashToGifHex","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"hashToMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"colorBytes","type":"bytes"}],"name":"hexByColors","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes","name":"colorBytes","type":"bytes"},{"internalType":"uint256","name":"startindex","type":"uint256"}],"name":"hexgetLine","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCatOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintCatPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"traitTypes","outputs":[{"internalType":"string","name":"traitName","type":"string"},{"internalType":"string","name":"traitType","type":"string"},{"internalType":"string","name":"pixels","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006015553480156200001657600080fd5b50604080518082018252600b81526a21b0ba39a7b721b430b4b760a91b602080830191825283518085019094526004845263434f6e4360e01b908401528151919291620000669160009162000c13565b5080516200007c90600190602084019062000c13565b5050601480546001600160a01b031916331790555060408051610100810182526115b4815261014d602082015261029b9181019190915261053560608201526103e8608082015261045760a082015261037960c082015260de60e0820152620000ea90600d90600862000ca2565b506040805160c081018252610780815261019c6020820152610f8a91810191909152610bca60608201526103c0608082015261033760a08201526200013490600e90600662000ca2565b506040805161010081018252610a0481526109596020820152610803918101919091526106ad6060820152610402608082015261035760a082015261015660c082015260ab60e08201526200018e90600f90600862000ca2565b50604080516101408101825261079d81526108c26020820152610555918101919091526106da60608201526103cf608082015261036d60a082015261030c60c08201526101e760e0820152610186610100820152610124610120820152620001fb90601090600a62000ca2565b506040805160e0810182526108238082526106c860208301529181019190915261056d606082015261097f608082015261041260a082015261015b60c08201526200024b90601190600762000ca2565b506040805160c08101825261188e815261089160208201526104929181019190915261024960608201819052610124608083015260a08201526200029490601290600662000ca2565b506040805160e081018252605c8152610c8e6020820181905261072d92820192909252606081019190915261056160808201526101cb60a082015261039660c0820152620002e790601390600762000ca2565b5060005b600a8112156200031457620002ff6200031b565b806200030b8162000f1a565b915050620002eb565b5062000ffc565b6014546001600160a01b031633146200033357600080fd5b6200033d6200033f565b565b60006200034b60085490565b9050612b678110620003a45760405162461bcd60e51b815260206004820152601b60248201527f416c6c20636174732061726520616c7265616479206d696e746564000000000060448201526064015b60405180910390fd5b80620003b3813360006200042f565b6000828152600a602090815260409091208251620003d8939192919091019062000c13565b506001600c600a6000848152602001908152602001600020604051620003ff919062000dc4565b908152604051908190036020019020805491151560ff199092169190911790556200042b33826200057b565b5050565b6060600a82106200043f57600080fd5b606060005b60078160ff161015620005235760158054906000620004638362000f3d565b9091555050601554604080514260208201524491810191909152606080820189905287901b6001600160601b03191660808201526094810186905260b4810191909152600090612b679060d4016040516020818303038152906040528051906020012060001c620004d5919062000f77565b905082620004e861ffff831684620006d1565b604051602001620004fb92919062000dab565b60405160208183030381529060405292505080806200051a9062000f54565b91505062000444565b50600c8160405162000536919062000d9d565b9081526040519081900360200190205460ff161562000571576200056885856200056286600162000e91565b6200042f565b91505062000574565b90505b9392505050565b6001600160a01b038216620005d35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016200039b565b6000818152600260205260409020546001600160a01b0316156200063a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200039b565b6200064860008383620007d4565b6001600160a01b03821660009081526003602052604081208054600192906200067390849062000e91565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606000805b600d8460ff1660078110620006f057620006f062000fd0565b015460ff82161015620007c8576000600d8560ff166007811062000718576200071862000fd0565b018260ff168154811062000730576200073062000fd0565b90600052602060002090601091828204019190066002029054906101000a900461ffff1690508261ffff16861015801562000779575062000772818462000e68565b61ffff1686105b15620007a357620007988260ff16620008b560201b62001e181760201c565b9350505050620007ce565b620007af818462000e68565b9250508080620007bf9062000f54565b915050620006d7565b50600080fd5b92915050565b620007ec8383836200088a60201b620008b71760201c565b6001600160a01b0383166200084a576200084481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000870565b816001600160a01b0316836001600160a01b0316146200087057620008708382620009d2565b6001600160a01b0382166200088f576200088a8162000a7f565b505050565b826001600160a01b0316826001600160a01b0316146200088a576200088a828262000b39565b606081620008da5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156200090a5780620008f18162000f3d565b9150620009029050600a8362000eac565b9150620008de565b6000816001600160401b0381111562000927576200092762000fe6565b6040519080825280601f01601f19166020018201604052801562000952576020820181803683370190505b5090505b8415620009ca576200096a60018362000ec3565b915062000979600a8662000f77565b6200098690603062000e91565b60f81b8183815181106200099e576200099e62000fd0565b60200101906001600160f81b031916908160001a905350620009c2600a8662000eac565b945062000956565b949350505050565b60006001620009ec8462000b8a60201b62000fd01760201c565b620009f8919062000ec3565b60008381526007602052604090205490915080821462000a4c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009062000a939060019062000ec3565b6000838152600960205260408120546008805493945090928490811062000abe5762000abe62000fd0565b90600052602060002001549050806008838154811062000ae25762000ae262000fd0565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000b1d5762000b1d62000fba565b6001900381819060005260206000200160009055905550505050565b600062000b518362000b8a60201b62000fd01760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000bf75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016200039b565b506001600160a01b031660009081526003602052604090205490565b82805462000c219062000edd565b90600052602060002090601f01602090048101928262000c45576000855562000c90565b82601f1062000c6057805160ff191683800117855562000c90565b8280016001018555821562000c90579182015b8281111562000c9057825182559160200191906001019062000c73565b5062000c9e92915062000d48565b5090565b82805482825590600052602060002090600f0160109004810192821562000c905791602002820160005b8382111562000d0e57835183826101000a81548161ffff021916908361ffff160217905550926020019260020160208160010104928301926001030262000ccc565b801562000d3e5782816101000a81549061ffff021916905560020160208160010104928301926001030262000d0e565b505062000c9e9291505b5b8082111562000c9e576000815560010162000d49565b6000815160005b8181101562000d82576020818501810151868301520162000d66565b8181111562000d92576000828601525b509290920192915050565b600062000574828462000d5f565b6000620009ca62000dbd838662000d5f565b8462000d5f565b600080835481600182811c91508083168062000de157607f831692505b602080841082141562000e0257634e487b7160e01b86526022600452602486fd5b81801562000e19576001811462000e2b5762000e5a565b60ff1986168952848901965062000e5a565b60008a81526020902060005b8681101562000e525781548b82015290850190830162000e37565b505084890196505b509498975050505050505050565b600061ffff80831681851680830382111562000e885762000e8862000f8e565b01949350505050565b6000821982111562000ea75762000ea762000f8e565b500190565b60008262000ebe5762000ebe62000fa4565b500490565b60008282101562000ed85762000ed862000f8e565b500390565b600181811c9082168062000ef257607f821691505b6020821081141562000f1457634e487b7160e01b600052602260045260246000fd5b50919050565b60006001600160ff1b0382141562000f365762000f3662000f8e565b5060010190565b600060001982141562000f365762000f3662000f8e565b600060ff821660ff81141562000f6e5762000f6e62000f8e565b60010192915050565b60008262000f895762000f8962000fa4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b613fc1806200100c6000396000f3fe6080604052600436106101cc5760003560e01c80634f6ccce7116100f7578063adcb7a2311610095578063c002d23d11610064578063c002d23d14610506578063c87b56dd14610522578063e985e9c514610542578063f2fde38b1461058b57600080fd5b8063adcb7a2314610486578063b88d4fde146104a6578063baf31a72146104c6578063bbfb55a1146104e657600080fd5b806370a08231116100d157806370a082311461041c57806395d89b411461043c57806399fab99d14610451578063a22cb4651461046657600080fd5b80634f6ccce7146103bc5780636352211e146103dc57806366e33870146103fc57600080fd5b806323b872dd1161016f5780633ccfd60b1161013e5780633ccfd60b1461035f57806340d950121461037457806342842e0e1461037c5780634432fa2c1461039c57600080fd5b806323b872dd146102da5780632f745c59146102fa5780632fb098d21461031a57806332cb6b0c1461034957600080fd5b8063081812fc116101ab578063081812fc1461024c578063095ea7b314610284578063098afd4b146102a657806318160ddd146102bb57600080fd5b80625ea307146101d157806301ffc9a71461020757806306fdde0314610237575b600080fd5b3480156101dd57600080fd5b506101f16101ec3660046133ad565b6105ab565b6040516101fe9190613a24565b60405180910390f35b34801561021357600080fd5b506102276102223660046132f9565b61064f565b60405190151581526020016101fe565b34801561024357600080fd5b506101f161067a565b34801561025857600080fd5b5061026c6102673660046133ad565b61070c565b6040516001600160a01b0390911681526020016101fe565b34801561029057600080fd5b506102a461029f3660046132cf565b6107a6565b005b3480156102b257600080fd5b506102a46108bc565b3480156102c757600080fd5b506008545b6040519081526020016101fe565b3480156102e657600080fd5b506102a46102f53660046131ef565b61090b565b34801561030657600080fd5b506102cc6103153660046132cf565b61093c565b34801561032657600080fd5b5061033a610335366004613517565b6109d2565b6040516101fe93929190613a37565b34801561035557600080fd5b506102cc612b6781565b34801561036b57600080fd5b506102a4610bb1565b6102a4610c39565b34801561038857600080fd5b506102a46103973660046131ef565b610caf565b3480156103a857600080fd5b506101f16103b7366004613368565b610cca565b3480156103c857600080fd5b506102cc6103d73660046133ad565b610d88565b3480156103e857600080fd5b5061026c6103f73660046133ad565b610e1b565b34801561040857600080fd5b506101f1610417366004613333565b610e92565b34801561042857600080fd5b506102cc6104373660046131a1565b610fd0565b34801561044857600080fd5b506101f1611057565b34801561045d57600080fd5b506102a4611066565b34801561047257600080fd5b506102a4610481366004613293565b61107d565b34801561049257600080fd5b506101f16104a1366004613333565b611088565b3480156104b257600080fd5b506102a46104c136600461322b565b611ac6565b3480156104d257600080fd5b506102a46104e13660046133c6565b611afe565b3480156104f257600080fd5b506101f1610501366004613333565b611c20565b34801561051257600080fd5b506102cc67011c37937e08000081565b34801561052e57600080fd5b506101f161053d3660046133ad565b611cce565b34801561054e57600080fd5b5061022761055d3660046131bc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059757600080fd5b506102a46105a63660046131a1565b611ddf565b6000818152600a60205260408120805460609291906105c990613cf8565b80601f01602080910402602001604051908101604052809291908181526020018280546105f590613cf8565b80156106425780601f1061061757610100808354040283529160200191610642565b820191906000526020600020905b81548152906001019060200180831161062557829003601f168201915b5093979650505050505050565b60006001600160e01b0319821663780e9d6360e01b1480610674575061067482611f1e565b92915050565b60606000805461068990613cf8565b80601f01602080910402602001604051908101604052809291908181526020018280546106b590613cf8565b80156107025780601f106106d757610100808354040283529160200191610702565b820191906000526020600020905b8154815290600101906020018083116106e557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661078a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107b182610e1b565b9050806001600160a01b0316836001600160a01b0316141561081f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610781565b336001600160a01b038216148061083b575061083b813361055d565b6108ad5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610781565b6108b78383611f6e565b505050565b6014546001600160a01b031633146108d357600080fd5b60005b6007811015610908576000818152600b602052604081206108f691612f72565b8061090081613d55565b9150506108d6565b50565b6109153382611fdc565b6109315760405162461bcd60e51b815260040161078190613ac2565b6108b78383836120cf565b600061094783610fd0565b82106109a95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610781565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b60205281600052604060002081815481106109ee57600080fd5b906000526020600020906003020160009150915050806000018054610a1290613cf8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e90613cf8565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b505050505090806001018054610aa090613cf8565b80601f0160208091040260200160405190810160405280929190818152602001828054610acc90613cf8565b8015610b195780601f10610aee57610100808354040283529160200191610b19565b820191906000526020600020905b815481529060010190602001808311610afc57829003601f168201915b505050505090806002018054610b2e90613cf8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5a90613cf8565b8015610ba75780601f10610b7c57610100808354040283529160200191610ba7565b820191906000526020600020905b815481529060010190602001808311610b8a57829003601f168201915b5050505050905083565b6014546001600160a01b03163314610bc857600080fd5b4780610c085760405162461bcd60e51b815260206004820152600f60248201526e42616c616e6365206973207a65726f60881b6044820152606401610781565b604051339082156108fc029083906000818181858888f19350505050158015610c35573d6000803e3d6000fd5b5050565b67011c37937e08000034101580610c5957506103e8610c5760085490565b105b610ca55760405162461bcd60e51b815260206004820152601e60248201527f57726f6e67204d696e74696e672050726963652028302e3038204574682900006044820152606401610781565b610cad612276565b565b6108b783838360405180602001604052806000815250611ac6565b606080825b610cda846019613b8a565b811015610d5e576000858281518110610cf557610cf5613e29565b01602001516001600160f81b031916905060005b6004811015610d49578382604051602001610d2592919061361b565b60405160208183030381529060405293508080610d4190613d55565b915050610d09565b50508080610d5690613d55565b915050610ccf565b5080604051602001610d7091906137a0565b60405160208183030381529060405291505092915050565b6000610d9360085490565b8210610df65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610781565b60088281548110610e0957610e09613e29565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106745760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610781565b60608060005b60078160ff161015610fa7576000610ec9610ec48660ff8516610ebc866001613ba2565b60ff16612353565b612422565b905082600b60008460ff1681526020019081526020016000208260ff1681548110610ef657610ef6613e29565b9060005260206000209060030201600101600b60008560ff1681526020019081526020016000208360ff1681548110610f3157610f31613e29565b9060005260206000209060030201600001604051602001610f54939291906136df565b604051602081830303815290604052925060068260ff161015610f945782604051602001610f8291906136ba565b60405160208183030381529060405292505b5080610f9f81613d70565b915050610e98565b5080604051602001610fb991906137ca565b604051602081830303815290604052915050919050565b60006001600160a01b03821661103b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610781565b506001600160a01b031660009081526003602052604090205490565b60606001805461068990613cf8565b6014546001600160a01b03163314610ca557600080fd5b610c353383836124e0565b6060611092612f93565b60005b600c8110156110e757604080516102718082526102a0820190925290602082018180368337019050508282600c81106110d0576110d0613e29565b6020020152806110df81613d55565b915050611095565b506110f0612fbb565b60005b60078160ff161015611a1157600061111c6111178760ff8516610ebc866001613ba2565b6125af565b905060005b6005600b60008560ff1681526020019081526020016000208361ffff168154811061114e5761114e613e29565b9060005260206000209060030201600201805461116a90613cf8565b611175929150613bc7565b8161ffff1610156119fc5760ff83166000908152600b602052604081208054611277919061ffff86169081106111ad576111ad613e29565b906000526020600020906003020160020180546111c990613cf8565b80601f01602080910402602001604051908101604052809291908181526020018280546111f590613cf8565b80156112425780601f1061121757610100808354040283529160200191611242565b820191906000526020600020905b81548152906001019060200180831161122557829003601f168201915b50505050508360056112549190613bfd565b61ffff16611263856005613bfd565b61126e906005613b6d565b61ffff16612353565b9050600081905060006112aa8260018151811061129657611296613e29565b01602001516001600160f81b031916612668565b60ff1690506112c58260008151811061129657611296613e29565b60ff166112d3826019613bfd565b6112dd9190613b6d565b905060006112f78360028151811061129657611296613e29565b905060006113118460038151811061129657611296613e29565b9050600061132b8560048151811061129657611296613e29565b905060005b8360ff168160ff1610156119e25760005b600c8160ff1610156119c257858460ff851661135c576118a0565b8460ff16600114156113895761027161137860ff85168a613b6d565b6113829190613d90565b91506118a0565b8460ff16600214156113b1576113a0600384613dc5565b6113aa9087613ba2565b90506118a0565b8460ff16600314156113e95760036113ca846001613ba2565b6113d49190613dc5565b6113df600188613ca9565b6113aa9190613ba2565b8460ff1660041415611417576003611402846002613ba2565b61140c9190613dc5565b6113df600288613ca9565b8460ff1660051415611447576002611430600485613bdb565b61143a9190613dc5565b6113829060ff1683613b6d565b8460ff16600614156114785760ff831615806114675750600b8360ff1610155b156114735750506119b0565b6118a0565b8460ff16600714156114a4578260ff1660011015806114675750600a8360ff16106114735750506119b0565b8460ff16600814156114d0578260ff166002101580611467575060098360ff16106114735750506119b0565b8460ff16600914156114fc578260ff166003101580611467575060088360ff16106114735750506119b0565b8460ff16600a1415611528578260ff166004101580611467575060078360ff16106114735750506119b0565b8460ff16600b141561154b5760058360ff16111561147357611382601989613c6f565b8460ff16600c141561157c578260ff166003148061156c57508260ff166005145b1561147357611382601989613c6f565b8460ff16600d14156115ad576002611595600385613bdb565b61159f9190613dc5565b60ff166114735750506119b0565b8460ff16600e14156115df5760026115c6600385613bdb565b6115d09190613dc5565b60ff16156114735750506119b0565b8460ff16600f141561160e576115f6600284613bdb565b611601906019613c46565b6113829060ff1689613b6d565b8460ff1660101415611625576115d0600284613dc5565b8460ff166011141561166a5761163c600284613bdb565b61164790601a613c46565b6116549060ff1689613b6d565b91506102718261ffff16106114735750506119b0565b8460ff16601214156116ae57611681600284613bdb565b60ff166002148061156c5750611698600284613bdb565b60ff166004141561147357611382601989613c6f565b8460ff16601314156116e65760026116c68185613bdb565b6116d09190613dc5565b60ff166001141561147357611382600189613c6f565b8460ff166014141561171457600280611700856003613ba2565b61170a9190613bdb565b6116019190613dc5565b8460ff166015141561177a5760068360ff1610156117405761173960ff841689613b6d565b915061175b565b61174b83600c613ca9565b6117589060ff1689613b6d565b91505b60258261ffff16111561176f5750506119b0565b6113a0600684613bdb565b8460ff16601614156117f75760068360ff1610156117b75761179d83602a613ca9565b60ff168261ffff1611156117b25750506119b0565b6117e2565b6117c283600c613ca9565b6117cd90602a613ca9565b60ff168261ffff1611156117e25750506119b0565b6117ed600684613bdb565b6113aa9087613ca9565b8460ff166017141561183d5761180e600284613dc5565b60ff1661147357611820600484613dc5565b60ff1661183257611382886001613b6d565b611382600189613c6f565b8460ff166018141561186d576002611856600485613bdb565b6118609190613dc5565b6113829060ff1683613c6f565b8460ff16601814156118a0576002611886600385613bdb565b6118909190613dc5565b61189d9060ff1683613b6d565b91505b8d8360ff16600c81106118b5576118b5613e29565b60200201518261ffff1661027181106118d0576118d0613e29565b6020020151156118e15750506119b0565b6040516001600160f81b031960f883901b16602082015260210160405160208183030381529060405260008151811061191c5761191c613e29565b01602001516001600160f81b0319168f60ff8516600c811061194057611940613e29565b60200201518361ffff168151811061195a5761195a613e29565b60200101906001600160f81b031916908160001a90535060018e8460ff16600c811061198857611988613e29565b60200201518361ffff1661027181106119a3576119a3613e29565b9115156020909202015250505b806119ba81613d70565b915050611341565b506119ce600186613b6d565b9450806119da81613d70565b915050611330565b5050505050505080806119f490613d33565b915050611121565b50508080611a0990613d70565b9150506110f3565b50600060405180610100016040528060e08152602001613eac60e09139905060005b600c811015611a915781611a5c8583600c8110611a5257611a52613e29565b6020020151611c20565b604051602001611a6d92919061364a565b60405160208183030381529060405291508080611a8990613d55565b915050611a33565b5080604051602001611aa39190613679565b6040516020818303038152906040529050611abd8161272c565b95945050505050565b611ad03383611fdc565b611aec5760405162461bcd60e51b815260040161078190613ac2565b611af884848484612894565b50505050565b6014546001600160a01b03163314611b1557600080fd5b60005b81518110156108b757600b60008481526020019081526020016000206040518060600160405280848481518110611b5157611b51613e29565b6020026020010151600001518152602001848481518110611b7457611b74613e29565b6020026020010151602001518152602001848481518110611b9757611b97613e29565b60209081029190910181015160400151909152825460018101845560009384529281902082518051939460030290910192611bd59284920190612fe9565b506020828101518051611bee9260018501920190612fe9565b5060408201518051611c0a916002840191602090910190612fe9565b5050508080611c1890613d55565b915050611b18565b606080606060005b60198551611c369190613bc7565b811015611ca457611c4c856103b7836019613c27565b915060005b6004811015611c91578383604051602001611c6d92919061364a565b60405160208183030381529060405293508080611c8990613d55565b915050611c51565b5080611c9c81613d55565b915050611c28565b5081604051602001611cb69190613758565b60408051601f19818403018152919052949350505050565b6000818152600260205260409020546060906001600160a01b0316611cf257600080fd5b6000828152600a602052604081208054611d0b90613cf8565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3790613cf8565b8015611d845780601f10611d5957610100808354040283529160200191611d84565b820191906000526020600020905b815481529060010190602001808311611d6757829003601f168201915b50505050509050611dcf611d9784611e18565b611da083611088565b611da984610e92565b604051602001611dbb93929190613843565b60405160208183030381529060405261272c565b604051602001610fb991906137fe565b6014546001600160a01b03163314611df657600080fd5b601480546001600160a01b0319166001600160a01b0392909216919091179055565b606081611e3c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e665780611e5081613d55565b9150611e5f9050600a83613bc7565b9150611e40565b60008167ffffffffffffffff811115611e8157611e81613e3f565b6040519080825280601f01601f191660200182016040528015611eab576020820181803683370190505b5090505b8415611f1657611ec0600183613c92565b9150611ecd600a86613db1565b611ed8906030613b8a565b60f81b818381518110611eed57611eed613e29565b60200101906001600160f81b031916908160001a905350611f0f600a86613bc7565b9450611eaf565b949350505050565b60006001600160e01b031982166380ac58cd60e01b1480611f4f57506001600160e01b03198216635b5e139f60e01b145b8061067457506301ffc9a760e01b6001600160e01b0319831614610674565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fa382610e1b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166120555760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610781565b600061206083610e1b565b9050806001600160a01b0316846001600160a01b0316148061209b5750836001600160a01b03166120908461070c565b6001600160a01b0316145b80611f1657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611f16565b826001600160a01b03166120e282610e1b565b6001600160a01b0316146121465760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610781565b6001600160a01b0382166121a85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610781565b6121b38383836128c7565b6121be600082611f6e565b6001600160a01b03831660009081526003602052604081208054600192906121e7908490613c92565b90915550506001600160a01b0382166000908152600360205260408120805460019290612215908490613b8a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061228160085490565b9050612b6781106122d45760405162461bcd60e51b815260206004820152601b60248201527f416c6c20636174732061726520616c7265616479206d696e74656400000000006044820152606401610781565b806122e18133600061297f565b6000828152600a6020908152604090912082516123049391929190910190612fe9565b506001600c600a6000848152602001908152602001600020604051612329919061374c565b908152604051908190036020019020805491151560ff19909216919091179055610c353382612ab1565b60608360006123628585613c92565b67ffffffffffffffff81111561237a5761237a613e3f565b6040519080825280601f01601f1916602001820160405280156123a4576020820181803683370190505b509050845b84811015612416578281815181106123c3576123c3613e29565b01602001516001600160f81b031916826123dd8884613c92565b815181106123ed576123ed613e29565b60200101906001600160f81b031916908160001a9053508061240e81613d55565b9150506123a9565b509150505b9392505050565b60008181805b82518160ff1610156124d8576030838260ff168151811061244b5761244b613e29565b016020015160f81c1080159061247e57506039838260ff168151811061247357612473613e29565b016020015160f81c11155b156124c65761248e600a83613c46565b91506030838260ff16815181106124a7576124a7613e29565b01602001516124b9919060f81c613ca9565b6124c39083613ba2565b91505b806124d081613d70565b915050612428565b509392505050565b816001600160a01b0316836001600160a01b031614156125425760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610781565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008181805b82518160ff1610156124d8576030838260ff16815181106125d8576125d8613e29565b016020015160f81c1080159061260b57506039838260ff168151811061260057612600613e29565b016020015160f81c11155b156126565761261b600a83613bfd565b91506030838260ff168151811061263457612634613e29565b0160200151612646919060f81c613ca9565b6126539060ff1683613b6d565b91505b8061266081613d70565b9150506125b5565b600080604051806060016040528060408152602001613e6c60409139905060005b81518160ff161015612726576040516001600160f81b03198516602082015260210160405160208183030381529060405280519060200120828260ff16815181106126d6576126d6613e29565b60209101810151604080516001600160f81b031990921682840152805160018184030181526021909201905280519101201415612714579392505050565b8061271e81613d70565b915050612689565b50600080fd5b606081516000141561274c57505060408051602081019091526000815290565b6000604051806060016040528060408152602001613e6c604091399050600060038451600261277b9190613b8a565b6127859190613bc7565b612790906004613c27565b9050600061279f826020613b8a565b67ffffffffffffffff8111156127b7576127b7613e3f565b6040519080825280601f01601f1916602001820160405280156127e1576020820181803683370190505b509050818152600183018586518101602084015b8183101561284f5760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b938201939093526004016127f5565b600389510660018114612869576002811461287a57612886565b613d3d60f01b600119830152612886565b603d60f81b6000198301525b509398975050505050505050565b61289f8484846120cf565b6128ab84848484612bff565b611af85760405162461bcd60e51b815260040161078190613a70565b6001600160a01b0383166129225761291d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612945565b816001600160a01b0316836001600160a01b031614612945576129458382612d0c565b6001600160a01b03821661295c576108b781612da9565b826001600160a01b0316826001600160a01b0316146108b7576108b78282612e58565b6060600a821061298e57600080fd5b606060005b60078160ff161015612a6b57601580549060006129af83613d55565b9091555050601554604080514260208201524491810191909152606080820189905287901b6bffffffffffffffffffffffff191660808201526094810186905260b4810191909152600090612b679060d4016040516020818303038152906040528051906020012060001c612a249190613db1565b905082612a358261ffff1684612e9c565b604051602001612a4692919061364a565b6040516020818303038152906040529250508080612a6390613d70565b915050612993565b50600c81604051612a7c919061369e565b9081526040519081900360200190205460ff1615611f1657612aa98585612aa4866001613b8a565b61297f565b91505061241b565b6001600160a01b038216612b075760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610781565b6000818152600260205260409020546001600160a01b031615612b6c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610781565b612b78600083836128c7565b6001600160a01b0382166000908152600360205260408120805460019290612ba1908490613b8a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15612d0157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612c439033908990889088906004016139f1565b602060405180830381600087803b158015612c5d57600080fd5b505af1925050508015612c8d575060408051601f3d908101601f19168201909252612c8a91810190613316565b60015b612ce7573d808015612cbb576040519150601f19603f3d011682016040523d82523d6000602084013e612cc0565b606091505b508051612cdf5760405162461bcd60e51b815260040161078190613a70565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f16565b506001949350505050565b60006001612d1984610fd0565b612d239190613c92565b600083815260076020526040902054909150808214612d76576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612dbb90600190613c92565b60008381526009602052604081205460088054939450909284908110612de357612de3613e29565b906000526020600020015490508060088381548110612e0457612e04613e29565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612e3c57612e3c613e13565b6001900381819060005260206000200160009055905550505050565b6000612e6383610fd0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60606000805b600d8460ff1660078110612eb857612eb8613e29565b015460ff82161015612726576000600d8560ff1660078110612edc57612edc613e29565b018260ff1681548110612ef157612ef1613e29565b90600052602060002090601091828204019190066002029054906101000a900461ffff1690508261ffff168610158015612f375750612f308184613b6d565b61ffff1686105b15612f5257612f488260ff16611e18565b9350505050610674565b612f5c8184613b6d565b9250508080612f6a90613d70565b915050612ea2565b5080546000825560030290600052602060002090810190610908919061306d565b604051806101800160405280600c905b6060815260200190600190039081612fa35790505090565b604051806101800160405280600c905b612fd36130a6565b815260200190600190039081612fcb5790505090565b828054612ff590613cf8565b90600052602060002090601f016020900481019282613017576000855561305d565b82601f1061303057805160ff191683800117855561305d565b8280016001018555821561305d579182015b8281111561305d578251825591602001919060010190613042565b506130699291506130c6565b5090565b8082111561306957600061308182826130db565b61308f6001830160006130db565b61309d6002830160006130db565b5060030161306d565b60405180614e200160405280610271906020820280368337509192915050565b5b8082111561306957600081556001016130c7565b5080546130e790613cf8565b6000825580601f106130f7575050565b601f01602090049060005260206000209081019061090891906130c6565b80356001600160a01b038116811461312c57600080fd5b919050565b600082601f83011261314257600080fd5b813567ffffffffffffffff81111561315c5761315c613e3f565b61316f601f8201601f1916602001613b3c565b81815284602083860101111561318457600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156131b357600080fd5b61241b82613115565b600080604083850312156131cf57600080fd5b6131d883613115565b91506131e660208401613115565b90509250929050565b60008060006060848603121561320457600080fd5b61320d84613115565b925061321b60208501613115565b9150604084013590509250925092565b6000806000806080858703121561324157600080fd5b61324a85613115565b935061325860208601613115565b925060408501359150606085013567ffffffffffffffff81111561327b57600080fd5b61328787828801613131565b91505092959194509250565b600080604083850312156132a657600080fd5b6132af83613115565b9150602083013580151581146132c457600080fd5b809150509250929050565b600080604083850312156132e257600080fd5b6132eb83613115565b946020939093013593505050565b60006020828403121561330b57600080fd5b813561241b81613e55565b60006020828403121561332857600080fd5b815161241b81613e55565b60006020828403121561334557600080fd5b813567ffffffffffffffff81111561335c57600080fd5b611f1684828501613131565b6000806040838503121561337b57600080fd5b823567ffffffffffffffff81111561339257600080fd5b61339e85828601613131565b95602094909401359450505050565b6000602082840312156133bf57600080fd5b5035919050565b600080604083850312156133d957600080fd5b8235915060208084013567ffffffffffffffff808211156133f957600080fd5b818601915086601f83011261340d57600080fd5b81358181111561341f5761341f613e3f565b8060051b61342e858201613b3c565b8281528581019085870183870188018c101561344957600080fd5b600093505b848410156135055780358681111561346557600080fd5b87016060818e03601f1901121561347b57600080fd5b613483613b13565b898201358881111561349457600080fd5b6134a28f8c83860101613131565b8252506040820135888111156134b757600080fd5b6134c58f8c83860101613131565b8b830152506060820135888111156134dc57600080fd5b6134ea8f8c83860101613131565b6040830152508452506001939093019291870191870161344e565b50809750505050505050509250929050565b6000806040838503121561352a57600080fd5b50508035926020909101359150565b60008151808452613551816020860160208601613ccc565b601f01601f19169290920160200192915050565b60008151613577818560208601613ccc565b9290920192915050565b8054600090600181811c908083168061359b57607f831692505b60208084108214156135bd57634e487b7160e01b600052602260045260246000fd5b8180156135d157600181146135e25761360f565b60ff1986168952848901965061360f565b60008881526020902060005b868110156136075781548b8201529085019083016135ee565b505084890196505b50505050505092915050565b6000835161362d818460208801613ccc565b6001600160f81b0319939093169190920190815260010192915050565b6000835161365c818460208801613ccc565b835190830190613670818360208801613ccc565b01949350505050565b6000825161368b818460208701613ccc565b603b60f81b920191825250600101919050565b600082516136b0818460208701613ccc565b9190910192915050565b600082516136cc818460208701613ccc565b600b60fa1b920191825250600101919050565b600084516136f1818460208901613ccc565b6e3d913a3930b4ba2fba3cb832911d1160891b908301908152613717600f820186613581565b6a1116113b30b63ab2911d1160a91b81529050613737600b820185613581565b61227d60f01b81526002019695505050505050565b600061241b8284613581565b7221f90409110000002c0000000064006400000760681b81528151600090613787816013850160208701613ccc565b61018160f01b6013939091019283015250601601919050565b60cb60f71b815281516000906137bd816002850160208701613ccc565b9190910160020192915050565b605b60f81b8152600082516137e6816001850160208701613ccc565b605d60f81b6001939091019283015250600201919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161383681601d850160208701613ccc565b91909101601d0192915050565b6e7b226e616d65223a2022436174202360881b8152835160009061386e81600f850160208901613ccc565b7f222c20226465736372697074696f6e223a2022436174734f6e436861696e2069600f918401918201527f73206120636f6c6c656374696f6e206f662031312c31313120756e6971756520602f8201527f616e696d6174656420636174732e20416c6c206d6574616461746120616e6420604f8201527f47494673206172652067656e65726174656420627920616e20616c676f726974606f8201527f686d206f6e2074686520626c6f636b636861696e2e204e6f20495046532c206e608f8201527f6f204150492e204a757374206f6e6520736d61727420636f6e7472616374206f60af8201527f6e2074686520457468657265756d20626c6f636b636861696e2e222c2022696d60cf8201527f616765223a2022646174613a696d6167652f6769663b6261736536342c00000060ef8201526139e76139da6139d46139b961010c850189613565565b6e11161130ba3a3934b13aba32b9911d60891b8152600f0190565b86613565565b607d60f81b815260010190565b9695505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906139e790830184613539565b60208152600061241b6020830184613539565b606081526000613a4a6060830186613539565b8281036020840152613a5c8186613539565b905082810360408401526139e78185613539565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6040516060810167ffffffffffffffff81118282101715613b3657613b36613e3f565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715613b6557613b65613e3f565b604052919050565b600061ffff80831681851680830382111561367057613670613de7565b60008219821115613b9d57613b9d613de7565b500190565b600060ff821660ff84168060ff03821115613bbf57613bbf613de7565b019392505050565b600082613bd657613bd6613dfd565b500490565b600060ff831680613bee57613bee613dfd565b8060ff84160491505092915050565b600061ffff80831681851681830481118215151615613c1e57613c1e613de7565b02949350505050565b6000816000190483118215151615613c4157613c41613de7565b500290565b600060ff821660ff84168160ff0481118215151615613c6757613c67613de7565b029392505050565b600061ffff83811690831681811015613c8a57613c8a613de7565b039392505050565b600082821015613ca457613ca4613de7565b500390565b600060ff821660ff841680821015613cc357613cc3613de7565b90039392505050565b60005b83811015613ce7578181015183820152602001613ccf565b83811115611af85750506000910152565b600181811c90821680613d0c57607f821691505b60208210811415613d2d57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415613d4b57613d4b613de7565b6001019392505050565b6000600019821415613d6957613d69613de7565b5060010190565b600060ff821660ff811415613d8757613d87613de7565b60010192915050565b600061ffff80841680613da557613da5613dfd565b92169190910692915050565b600082613dc057613dc0613dfd565b500690565b600060ff831680613dd857613dd8613dfd565b8060ff84160691505092915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461090857600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f47494638396164006400f50200000000f6437f43f6ee5df6434ac735ffd700fee24dfedc25c0c0c0d0d0d0dfdfdf000000003a04004905005e0727073e2ebdb73125063a05053d0b6046167048276052482d524b355a440a5c1e9263593d6759376b20ac6b61446d15156d5d346d6d6d806b348280798b69118d7e579247479a4e6ea9a9a9b19d68bdab79c59f9fcad438cc7320dd7b1fe5bcbce7e7e7ebf643ef79abf0d9e3ff0000fff9f9ffff00ffffff08264211375c22538100000000000000000000000000000000000021ff0b4e45545343415045322e300301000000a2646970667358221220fdbdd17867db2e7df7f188e0ab6c9a51d1a4f64c2a8903b377c2057e9ad566c864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101cc5760003560e01c80634f6ccce7116100f7578063adcb7a2311610095578063c002d23d11610064578063c002d23d14610506578063c87b56dd14610522578063e985e9c514610542578063f2fde38b1461058b57600080fd5b8063adcb7a2314610486578063b88d4fde146104a6578063baf31a72146104c6578063bbfb55a1146104e657600080fd5b806370a08231116100d157806370a082311461041c57806395d89b411461043c57806399fab99d14610451578063a22cb4651461046657600080fd5b80634f6ccce7146103bc5780636352211e146103dc57806366e33870146103fc57600080fd5b806323b872dd1161016f5780633ccfd60b1161013e5780633ccfd60b1461035f57806340d950121461037457806342842e0e1461037c5780634432fa2c1461039c57600080fd5b806323b872dd146102da5780632f745c59146102fa5780632fb098d21461031a57806332cb6b0c1461034957600080fd5b8063081812fc116101ab578063081812fc1461024c578063095ea7b314610284578063098afd4b146102a657806318160ddd146102bb57600080fd5b80625ea307146101d157806301ffc9a71461020757806306fdde0314610237575b600080fd5b3480156101dd57600080fd5b506101f16101ec3660046133ad565b6105ab565b6040516101fe9190613a24565b60405180910390f35b34801561021357600080fd5b506102276102223660046132f9565b61064f565b60405190151581526020016101fe565b34801561024357600080fd5b506101f161067a565b34801561025857600080fd5b5061026c6102673660046133ad565b61070c565b6040516001600160a01b0390911681526020016101fe565b34801561029057600080fd5b506102a461029f3660046132cf565b6107a6565b005b3480156102b257600080fd5b506102a46108bc565b3480156102c757600080fd5b506008545b6040519081526020016101fe565b3480156102e657600080fd5b506102a46102f53660046131ef565b61090b565b34801561030657600080fd5b506102cc6103153660046132cf565b61093c565b34801561032657600080fd5b5061033a610335366004613517565b6109d2565b6040516101fe93929190613a37565b34801561035557600080fd5b506102cc612b6781565b34801561036b57600080fd5b506102a4610bb1565b6102a4610c39565b34801561038857600080fd5b506102a46103973660046131ef565b610caf565b3480156103a857600080fd5b506101f16103b7366004613368565b610cca565b3480156103c857600080fd5b506102cc6103d73660046133ad565b610d88565b3480156103e857600080fd5b5061026c6103f73660046133ad565b610e1b565b34801561040857600080fd5b506101f1610417366004613333565b610e92565b34801561042857600080fd5b506102cc6104373660046131a1565b610fd0565b34801561044857600080fd5b506101f1611057565b34801561045d57600080fd5b506102a4611066565b34801561047257600080fd5b506102a4610481366004613293565b61107d565b34801561049257600080fd5b506101f16104a1366004613333565b611088565b3480156104b257600080fd5b506102a46104c136600461322b565b611ac6565b3480156104d257600080fd5b506102a46104e13660046133c6565b611afe565b3480156104f257600080fd5b506101f1610501366004613333565b611c20565b34801561051257600080fd5b506102cc67011c37937e08000081565b34801561052e57600080fd5b506101f161053d3660046133ad565b611cce565b34801561054e57600080fd5b5061022761055d3660046131bc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059757600080fd5b506102a46105a63660046131a1565b611ddf565b6000818152600a60205260408120805460609291906105c990613cf8565b80601f01602080910402602001604051908101604052809291908181526020018280546105f590613cf8565b80156106425780601f1061061757610100808354040283529160200191610642565b820191906000526020600020905b81548152906001019060200180831161062557829003601f168201915b5093979650505050505050565b60006001600160e01b0319821663780e9d6360e01b1480610674575061067482611f1e565b92915050565b60606000805461068990613cf8565b80601f01602080910402602001604051908101604052809291908181526020018280546106b590613cf8565b80156107025780601f106106d757610100808354040283529160200191610702565b820191906000526020600020905b8154815290600101906020018083116106e557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661078a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107b182610e1b565b9050806001600160a01b0316836001600160a01b0316141561081f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610781565b336001600160a01b038216148061083b575061083b813361055d565b6108ad5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610781565b6108b78383611f6e565b505050565b6014546001600160a01b031633146108d357600080fd5b60005b6007811015610908576000818152600b602052604081206108f691612f72565b8061090081613d55565b9150506108d6565b50565b6109153382611fdc565b6109315760405162461bcd60e51b815260040161078190613ac2565b6108b78383836120cf565b600061094783610fd0565b82106109a95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610781565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b60205281600052604060002081815481106109ee57600080fd5b906000526020600020906003020160009150915050806000018054610a1290613cf8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e90613cf8565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b505050505090806001018054610aa090613cf8565b80601f0160208091040260200160405190810160405280929190818152602001828054610acc90613cf8565b8015610b195780601f10610aee57610100808354040283529160200191610b19565b820191906000526020600020905b815481529060010190602001808311610afc57829003601f168201915b505050505090806002018054610b2e90613cf8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5a90613cf8565b8015610ba75780601f10610b7c57610100808354040283529160200191610ba7565b820191906000526020600020905b815481529060010190602001808311610b8a57829003601f168201915b5050505050905083565b6014546001600160a01b03163314610bc857600080fd5b4780610c085760405162461bcd60e51b815260206004820152600f60248201526e42616c616e6365206973207a65726f60881b6044820152606401610781565b604051339082156108fc029083906000818181858888f19350505050158015610c35573d6000803e3d6000fd5b5050565b67011c37937e08000034101580610c5957506103e8610c5760085490565b105b610ca55760405162461bcd60e51b815260206004820152601e60248201527f57726f6e67204d696e74696e672050726963652028302e3038204574682900006044820152606401610781565b610cad612276565b565b6108b783838360405180602001604052806000815250611ac6565b606080825b610cda846019613b8a565b811015610d5e576000858281518110610cf557610cf5613e29565b01602001516001600160f81b031916905060005b6004811015610d49578382604051602001610d2592919061361b565b60405160208183030381529060405293508080610d4190613d55565b915050610d09565b50508080610d5690613d55565b915050610ccf565b5080604051602001610d7091906137a0565b60405160208183030381529060405291505092915050565b6000610d9360085490565b8210610df65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610781565b60088281548110610e0957610e09613e29565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806106745760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610781565b60608060005b60078160ff161015610fa7576000610ec9610ec48660ff8516610ebc866001613ba2565b60ff16612353565b612422565b905082600b60008460ff1681526020019081526020016000208260ff1681548110610ef657610ef6613e29565b9060005260206000209060030201600101600b60008560ff1681526020019081526020016000208360ff1681548110610f3157610f31613e29565b9060005260206000209060030201600001604051602001610f54939291906136df565b604051602081830303815290604052925060068260ff161015610f945782604051602001610f8291906136ba565b60405160208183030381529060405292505b5080610f9f81613d70565b915050610e98565b5080604051602001610fb991906137ca565b604051602081830303815290604052915050919050565b60006001600160a01b03821661103b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610781565b506001600160a01b031660009081526003602052604090205490565b60606001805461068990613cf8565b6014546001600160a01b03163314610ca557600080fd5b610c353383836124e0565b6060611092612f93565b60005b600c8110156110e757604080516102718082526102a0820190925290602082018180368337019050508282600c81106110d0576110d0613e29565b6020020152806110df81613d55565b915050611095565b506110f0612fbb565b60005b60078160ff161015611a1157600061111c6111178760ff8516610ebc866001613ba2565b6125af565b905060005b6005600b60008560ff1681526020019081526020016000208361ffff168154811061114e5761114e613e29565b9060005260206000209060030201600201805461116a90613cf8565b611175929150613bc7565b8161ffff1610156119fc5760ff83166000908152600b602052604081208054611277919061ffff86169081106111ad576111ad613e29565b906000526020600020906003020160020180546111c990613cf8565b80601f01602080910402602001604051908101604052809291908181526020018280546111f590613cf8565b80156112425780601f1061121757610100808354040283529160200191611242565b820191906000526020600020905b81548152906001019060200180831161122557829003601f168201915b50505050508360056112549190613bfd565b61ffff16611263856005613bfd565b61126e906005613b6d565b61ffff16612353565b9050600081905060006112aa8260018151811061129657611296613e29565b01602001516001600160f81b031916612668565b60ff1690506112c58260008151811061129657611296613e29565b60ff166112d3826019613bfd565b6112dd9190613b6d565b905060006112f78360028151811061129657611296613e29565b905060006113118460038151811061129657611296613e29565b9050600061132b8560048151811061129657611296613e29565b905060005b8360ff168160ff1610156119e25760005b600c8160ff1610156119c257858460ff851661135c576118a0565b8460ff16600114156113895761027161137860ff85168a613b6d565b6113829190613d90565b91506118a0565b8460ff16600214156113b1576113a0600384613dc5565b6113aa9087613ba2565b90506118a0565b8460ff16600314156113e95760036113ca846001613ba2565b6113d49190613dc5565b6113df600188613ca9565b6113aa9190613ba2565b8460ff1660041415611417576003611402846002613ba2565b61140c9190613dc5565b6113df600288613ca9565b8460ff1660051415611447576002611430600485613bdb565b61143a9190613dc5565b6113829060ff1683613b6d565b8460ff16600614156114785760ff831615806114675750600b8360ff1610155b156114735750506119b0565b6118a0565b8460ff16600714156114a4578260ff1660011015806114675750600a8360ff16106114735750506119b0565b8460ff16600814156114d0578260ff166002101580611467575060098360ff16106114735750506119b0565b8460ff16600914156114fc578260ff166003101580611467575060088360ff16106114735750506119b0565b8460ff16600a1415611528578260ff166004101580611467575060078360ff16106114735750506119b0565b8460ff16600b141561154b5760058360ff16111561147357611382601989613c6f565b8460ff16600c141561157c578260ff166003148061156c57508260ff166005145b1561147357611382601989613c6f565b8460ff16600d14156115ad576002611595600385613bdb565b61159f9190613dc5565b60ff166114735750506119b0565b8460ff16600e14156115df5760026115c6600385613bdb565b6115d09190613dc5565b60ff16156114735750506119b0565b8460ff16600f141561160e576115f6600284613bdb565b611601906019613c46565b6113829060ff1689613b6d565b8460ff1660101415611625576115d0600284613dc5565b8460ff166011141561166a5761163c600284613bdb565b61164790601a613c46565b6116549060ff1689613b6d565b91506102718261ffff16106114735750506119b0565b8460ff16601214156116ae57611681600284613bdb565b60ff166002148061156c5750611698600284613bdb565b60ff166004141561147357611382601989613c6f565b8460ff16601314156116e65760026116c68185613bdb565b6116d09190613dc5565b60ff166001141561147357611382600189613c6f565b8460ff166014141561171457600280611700856003613ba2565b61170a9190613bdb565b6116019190613dc5565b8460ff166015141561177a5760068360ff1610156117405761173960ff841689613b6d565b915061175b565b61174b83600c613ca9565b6117589060ff1689613b6d565b91505b60258261ffff16111561176f5750506119b0565b6113a0600684613bdb565b8460ff16601614156117f75760068360ff1610156117b75761179d83602a613ca9565b60ff168261ffff1611156117b25750506119b0565b6117e2565b6117c283600c613ca9565b6117cd90602a613ca9565b60ff168261ffff1611156117e25750506119b0565b6117ed600684613bdb565b6113aa9087613ca9565b8460ff166017141561183d5761180e600284613dc5565b60ff1661147357611820600484613dc5565b60ff1661183257611382886001613b6d565b611382600189613c6f565b8460ff166018141561186d576002611856600485613bdb565b6118609190613dc5565b6113829060ff1683613c6f565b8460ff16601814156118a0576002611886600385613bdb565b6118909190613dc5565b61189d9060ff1683613b6d565b91505b8d8360ff16600c81106118b5576118b5613e29565b60200201518261ffff1661027181106118d0576118d0613e29565b6020020151156118e15750506119b0565b6040516001600160f81b031960f883901b16602082015260210160405160208183030381529060405260008151811061191c5761191c613e29565b01602001516001600160f81b0319168f60ff8516600c811061194057611940613e29565b60200201518361ffff168151811061195a5761195a613e29565b60200101906001600160f81b031916908160001a90535060018e8460ff16600c811061198857611988613e29565b60200201518361ffff1661027181106119a3576119a3613e29565b9115156020909202015250505b806119ba81613d70565b915050611341565b506119ce600186613b6d565b9450806119da81613d70565b915050611330565b5050505050505080806119f490613d33565b915050611121565b50508080611a0990613d70565b9150506110f3565b50600060405180610100016040528060e08152602001613eac60e09139905060005b600c811015611a915781611a5c8583600c8110611a5257611a52613e29565b6020020151611c20565b604051602001611a6d92919061364a565b60405160208183030381529060405291508080611a8990613d55565b915050611a33565b5080604051602001611aa39190613679565b6040516020818303038152906040529050611abd8161272c565b95945050505050565b611ad03383611fdc565b611aec5760405162461bcd60e51b815260040161078190613ac2565b611af884848484612894565b50505050565b6014546001600160a01b03163314611b1557600080fd5b60005b81518110156108b757600b60008481526020019081526020016000206040518060600160405280848481518110611b5157611b51613e29565b6020026020010151600001518152602001848481518110611b7457611b74613e29565b6020026020010151602001518152602001848481518110611b9757611b97613e29565b60209081029190910181015160400151909152825460018101845560009384529281902082518051939460030290910192611bd59284920190612fe9565b506020828101518051611bee9260018501920190612fe9565b5060408201518051611c0a916002840191602090910190612fe9565b5050508080611c1890613d55565b915050611b18565b606080606060005b60198551611c369190613bc7565b811015611ca457611c4c856103b7836019613c27565b915060005b6004811015611c91578383604051602001611c6d92919061364a565b60405160208183030381529060405293508080611c8990613d55565b915050611c51565b5080611c9c81613d55565b915050611c28565b5081604051602001611cb69190613758565b60408051601f19818403018152919052949350505050565b6000818152600260205260409020546060906001600160a01b0316611cf257600080fd5b6000828152600a602052604081208054611d0b90613cf8565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3790613cf8565b8015611d845780601f10611d5957610100808354040283529160200191611d84565b820191906000526020600020905b815481529060010190602001808311611d6757829003601f168201915b50505050509050611dcf611d9784611e18565b611da083611088565b611da984610e92565b604051602001611dbb93929190613843565b60405160208183030381529060405261272c565b604051602001610fb991906137fe565b6014546001600160a01b03163314611df657600080fd5b601480546001600160a01b0319166001600160a01b0392909216919091179055565b606081611e3c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e665780611e5081613d55565b9150611e5f9050600a83613bc7565b9150611e40565b60008167ffffffffffffffff811115611e8157611e81613e3f565b6040519080825280601f01601f191660200182016040528015611eab576020820181803683370190505b5090505b8415611f1657611ec0600183613c92565b9150611ecd600a86613db1565b611ed8906030613b8a565b60f81b818381518110611eed57611eed613e29565b60200101906001600160f81b031916908160001a905350611f0f600a86613bc7565b9450611eaf565b949350505050565b60006001600160e01b031982166380ac58cd60e01b1480611f4f57506001600160e01b03198216635b5e139f60e01b145b8061067457506301ffc9a760e01b6001600160e01b0319831614610674565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fa382610e1b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166120555760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610781565b600061206083610e1b565b9050806001600160a01b0316846001600160a01b0316148061209b5750836001600160a01b03166120908461070c565b6001600160a01b0316145b80611f1657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611f16565b826001600160a01b03166120e282610e1b565b6001600160a01b0316146121465760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610781565b6001600160a01b0382166121a85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610781565b6121b38383836128c7565b6121be600082611f6e565b6001600160a01b03831660009081526003602052604081208054600192906121e7908490613c92565b90915550506001600160a01b0382166000908152600360205260408120805460019290612215908490613b8a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061228160085490565b9050612b6781106122d45760405162461bcd60e51b815260206004820152601b60248201527f416c6c20636174732061726520616c7265616479206d696e74656400000000006044820152606401610781565b806122e18133600061297f565b6000828152600a6020908152604090912082516123049391929190910190612fe9565b506001600c600a6000848152602001908152602001600020604051612329919061374c565b908152604051908190036020019020805491151560ff19909216919091179055610c353382612ab1565b60608360006123628585613c92565b67ffffffffffffffff81111561237a5761237a613e3f565b6040519080825280601f01601f1916602001820160405280156123a4576020820181803683370190505b509050845b84811015612416578281815181106123c3576123c3613e29565b01602001516001600160f81b031916826123dd8884613c92565b815181106123ed576123ed613e29565b60200101906001600160f81b031916908160001a9053508061240e81613d55565b9150506123a9565b509150505b9392505050565b60008181805b82518160ff1610156124d8576030838260ff168151811061244b5761244b613e29565b016020015160f81c1080159061247e57506039838260ff168151811061247357612473613e29565b016020015160f81c11155b156124c65761248e600a83613c46565b91506030838260ff16815181106124a7576124a7613e29565b01602001516124b9919060f81c613ca9565b6124c39083613ba2565b91505b806124d081613d70565b915050612428565b509392505050565b816001600160a01b0316836001600160a01b031614156125425760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610781565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008181805b82518160ff1610156124d8576030838260ff16815181106125d8576125d8613e29565b016020015160f81c1080159061260b57506039838260ff168151811061260057612600613e29565b016020015160f81c11155b156126565761261b600a83613bfd565b91506030838260ff168151811061263457612634613e29565b0160200151612646919060f81c613ca9565b6126539060ff1683613b6d565b91505b8061266081613d70565b9150506125b5565b600080604051806060016040528060408152602001613e6c60409139905060005b81518160ff161015612726576040516001600160f81b03198516602082015260210160405160208183030381529060405280519060200120828260ff16815181106126d6576126d6613e29565b60209101810151604080516001600160f81b031990921682840152805160018184030181526021909201905280519101201415612714579392505050565b8061271e81613d70565b915050612689565b50600080fd5b606081516000141561274c57505060408051602081019091526000815290565b6000604051806060016040528060408152602001613e6c604091399050600060038451600261277b9190613b8a565b6127859190613bc7565b612790906004613c27565b9050600061279f826020613b8a565b67ffffffffffffffff8111156127b7576127b7613e3f565b6040519080825280601f01601f1916602001820160405280156127e1576020820181803683370190505b509050818152600183018586518101602084015b8183101561284f5760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b938201939093526004016127f5565b600389510660018114612869576002811461287a57612886565b613d3d60f01b600119830152612886565b603d60f81b6000198301525b509398975050505050505050565b61289f8484846120cf565b6128ab84848484612bff565b611af85760405162461bcd60e51b815260040161078190613a70565b6001600160a01b0383166129225761291d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612945565b816001600160a01b0316836001600160a01b031614612945576129458382612d0c565b6001600160a01b03821661295c576108b781612da9565b826001600160a01b0316826001600160a01b0316146108b7576108b78282612e58565b6060600a821061298e57600080fd5b606060005b60078160ff161015612a6b57601580549060006129af83613d55565b9091555050601554604080514260208201524491810191909152606080820189905287901b6bffffffffffffffffffffffff191660808201526094810186905260b4810191909152600090612b679060d4016040516020818303038152906040528051906020012060001c612a249190613db1565b905082612a358261ffff1684612e9c565b604051602001612a4692919061364a565b6040516020818303038152906040529250508080612a6390613d70565b915050612993565b50600c81604051612a7c919061369e565b9081526040519081900360200190205460ff1615611f1657612aa98585612aa4866001613b8a565b61297f565b91505061241b565b6001600160a01b038216612b075760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610781565b6000818152600260205260409020546001600160a01b031615612b6c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610781565b612b78600083836128c7565b6001600160a01b0382166000908152600360205260408120805460019290612ba1908490613b8a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15612d0157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612c439033908990889088906004016139f1565b602060405180830381600087803b158015612c5d57600080fd5b505af1925050508015612c8d575060408051601f3d908101601f19168201909252612c8a91810190613316565b60015b612ce7573d808015612cbb576040519150601f19603f3d011682016040523d82523d6000602084013e612cc0565b606091505b508051612cdf5760405162461bcd60e51b815260040161078190613a70565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f16565b506001949350505050565b60006001612d1984610fd0565b612d239190613c92565b600083815260076020526040902054909150808214612d76576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612dbb90600190613c92565b60008381526009602052604081205460088054939450909284908110612de357612de3613e29565b906000526020600020015490508060088381548110612e0457612e04613e29565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612e3c57612e3c613e13565b6001900381819060005260206000200160009055905550505050565b6000612e6383610fd0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60606000805b600d8460ff1660078110612eb857612eb8613e29565b015460ff82161015612726576000600d8560ff1660078110612edc57612edc613e29565b018260ff1681548110612ef157612ef1613e29565b90600052602060002090601091828204019190066002029054906101000a900461ffff1690508261ffff168610158015612f375750612f308184613b6d565b61ffff1686105b15612f5257612f488260ff16611e18565b9350505050610674565b612f5c8184613b6d565b9250508080612f6a90613d70565b915050612ea2565b5080546000825560030290600052602060002090810190610908919061306d565b604051806101800160405280600c905b6060815260200190600190039081612fa35790505090565b604051806101800160405280600c905b612fd36130a6565b815260200190600190039081612fcb5790505090565b828054612ff590613cf8565b90600052602060002090601f016020900481019282613017576000855561305d565b82601f1061303057805160ff191683800117855561305d565b8280016001018555821561305d579182015b8281111561305d578251825591602001919060010190613042565b506130699291506130c6565b5090565b8082111561306957600061308182826130db565b61308f6001830160006130db565b61309d6002830160006130db565b5060030161306d565b60405180614e200160405280610271906020820280368337509192915050565b5b8082111561306957600081556001016130c7565b5080546130e790613cf8565b6000825580601f106130f7575050565b601f01602090049060005260206000209081019061090891906130c6565b80356001600160a01b038116811461312c57600080fd5b919050565b600082601f83011261314257600080fd5b813567ffffffffffffffff81111561315c5761315c613e3f565b61316f601f8201601f1916602001613b3c565b81815284602083860101111561318457600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156131b357600080fd5b61241b82613115565b600080604083850312156131cf57600080fd5b6131d883613115565b91506131e660208401613115565b90509250929050565b60008060006060848603121561320457600080fd5b61320d84613115565b925061321b60208501613115565b9150604084013590509250925092565b6000806000806080858703121561324157600080fd5b61324a85613115565b935061325860208601613115565b925060408501359150606085013567ffffffffffffffff81111561327b57600080fd5b61328787828801613131565b91505092959194509250565b600080604083850312156132a657600080fd5b6132af83613115565b9150602083013580151581146132c457600080fd5b809150509250929050565b600080604083850312156132e257600080fd5b6132eb83613115565b946020939093013593505050565b60006020828403121561330b57600080fd5b813561241b81613e55565b60006020828403121561332857600080fd5b815161241b81613e55565b60006020828403121561334557600080fd5b813567ffffffffffffffff81111561335c57600080fd5b611f1684828501613131565b6000806040838503121561337b57600080fd5b823567ffffffffffffffff81111561339257600080fd5b61339e85828601613131565b95602094909401359450505050565b6000602082840312156133bf57600080fd5b5035919050565b600080604083850312156133d957600080fd5b8235915060208084013567ffffffffffffffff808211156133f957600080fd5b818601915086601f83011261340d57600080fd5b81358181111561341f5761341f613e3f565b8060051b61342e858201613b3c565b8281528581019085870183870188018c101561344957600080fd5b600093505b848410156135055780358681111561346557600080fd5b87016060818e03601f1901121561347b57600080fd5b613483613b13565b898201358881111561349457600080fd5b6134a28f8c83860101613131565b8252506040820135888111156134b757600080fd5b6134c58f8c83860101613131565b8b830152506060820135888111156134dc57600080fd5b6134ea8f8c83860101613131565b6040830152508452506001939093019291870191870161344e565b50809750505050505050509250929050565b6000806040838503121561352a57600080fd5b50508035926020909101359150565b60008151808452613551816020860160208601613ccc565b601f01601f19169290920160200192915050565b60008151613577818560208601613ccc565b9290920192915050565b8054600090600181811c908083168061359b57607f831692505b60208084108214156135bd57634e487b7160e01b600052602260045260246000fd5b8180156135d157600181146135e25761360f565b60ff1986168952848901965061360f565b60008881526020902060005b868110156136075781548b8201529085019083016135ee565b505084890196505b50505050505092915050565b6000835161362d818460208801613ccc565b6001600160f81b0319939093169190920190815260010192915050565b6000835161365c818460208801613ccc565b835190830190613670818360208801613ccc565b01949350505050565b6000825161368b818460208701613ccc565b603b60f81b920191825250600101919050565b600082516136b0818460208701613ccc565b9190910192915050565b600082516136cc818460208701613ccc565b600b60fa1b920191825250600101919050565b600084516136f1818460208901613ccc565b6e3d913a3930b4ba2fba3cb832911d1160891b908301908152613717600f820186613581565b6a1116113b30b63ab2911d1160a91b81529050613737600b820185613581565b61227d60f01b81526002019695505050505050565b600061241b8284613581565b7221f90409110000002c0000000064006400000760681b81528151600090613787816013850160208701613ccc565b61018160f01b6013939091019283015250601601919050565b60cb60f71b815281516000906137bd816002850160208701613ccc565b9190910160020192915050565b605b60f81b8152600082516137e6816001850160208701613ccc565b605d60f81b6001939091019283015250600201919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161383681601d850160208701613ccc565b91909101601d0192915050565b6e7b226e616d65223a2022436174202360881b8152835160009061386e81600f850160208901613ccc565b7f222c20226465736372697074696f6e223a2022436174734f6e436861696e2069600f918401918201527f73206120636f6c6c656374696f6e206f662031312c31313120756e6971756520602f8201527f616e696d6174656420636174732e20416c6c206d6574616461746120616e6420604f8201527f47494673206172652067656e65726174656420627920616e20616c676f726974606f8201527f686d206f6e2074686520626c6f636b636861696e2e204e6f20495046532c206e608f8201527f6f204150492e204a757374206f6e6520736d61727420636f6e7472616374206f60af8201527f6e2074686520457468657265756d20626c6f636b636861696e2e222c2022696d60cf8201527f616765223a2022646174613a696d6167652f6769663b6261736536342c00000060ef8201526139e76139da6139d46139b961010c850189613565565b6e11161130ba3a3934b13aba32b9911d60891b8152600f0190565b86613565565b607d60f81b815260010190565b9695505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906139e790830184613539565b60208152600061241b6020830184613539565b606081526000613a4a6060830186613539565b8281036020840152613a5c8186613539565b905082810360408401526139e78185613539565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6040516060810167ffffffffffffffff81118282101715613b3657613b36613e3f565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715613b6557613b65613e3f565b604052919050565b600061ffff80831681851680830382111561367057613670613de7565b60008219821115613b9d57613b9d613de7565b500190565b600060ff821660ff84168060ff03821115613bbf57613bbf613de7565b019392505050565b600082613bd657613bd6613dfd565b500490565b600060ff831680613bee57613bee613dfd565b8060ff84160491505092915050565b600061ffff80831681851681830481118215151615613c1e57613c1e613de7565b02949350505050565b6000816000190483118215151615613c4157613c41613de7565b500290565b600060ff821660ff84168160ff0481118215151615613c6757613c67613de7565b029392505050565b600061ffff83811690831681811015613c8a57613c8a613de7565b039392505050565b600082821015613ca457613ca4613de7565b500390565b600060ff821660ff841680821015613cc357613cc3613de7565b90039392505050565b60005b83811015613ce7578181015183820152602001613ccf565b83811115611af85750506000910152565b600181811c90821680613d0c57607f821691505b60208210811415613d2d57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff80831681811415613d4b57613d4b613de7565b6001019392505050565b6000600019821415613d6957613d69613de7565b5060010190565b600060ff821660ff811415613d8757613d87613de7565b60010192915050565b600061ffff80841680613da557613da5613dfd565b92169190910692915050565b600082613dc057613dc0613dfd565b500690565b600060ff831680613dd857613dd8613dfd565b8060ff84160691505092915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461090857600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f47494638396164006400f50200000000f6437f43f6ee5df6434ac735ffd700fee24dfedc25c0c0c0d0d0d0dfdfdf000000003a04004905005e0727073e2ebdb73125063a05053d0b6046167048276052482d524b355a440a5c1e9263593d6759376b20ac6b61446d15156d5d346d6d6d806b348280798b69118d7e579247479a4e6ea9a9a9b19d68bdab79c59f9fcad438cc7320dd7b1fe5bcbce7e7e7ebf643ef79abf0d9e3ff0000fff9f9ffff00ffffff08264211375c22538100000000000000000000000000000000000021ff0b4e45545343415045322e300301000000a2646970667358221220fdbdd17867db2e7df7f188e0ab6c9a51d1a4f64c2a8903b377c2057e9ad566c864736f6c63430008070033

Deployed Bytecode Sourcemap

48223:22918:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68590:205;;;;;;;;;;-1:-1:-1;68590:205:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36944:300;;;;;;;;;;-1:-1:-1;36944:300:0;;;;;:::i;:::-;;:::i;:::-;;;17505:14:1;;17498:22;17480:41;;17468:2;17453:18;36944:300:0;17340:187:1;23198:100:0;;;;;;;;;;;;;:::i;24891:308::-;;;;;;;;;;-1:-1:-1;24891:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;16792:32:1;;;16774:51;;16762:2;16747:18;24891:308:0;16628:203:1;24414:411:0;;;;;;;;;;-1:-1:-1;24414:411:0;;;;;:::i;:::-;;:::i;:::-;;69864:137;;;;;;;;;;;;;:::i;37747:113::-;;;;;;;;;;-1:-1:-1;37835:10:0;:17;37747:113;;;25805:25:1;;;25793:2;25778:18;37747:113:0;25659:177:1;25810:376:0;;;;;;;;;;-1:-1:-1;25810:376:0;;;;;:::i;:::-;;:::i;37328:343::-;;;;;;;;;;-1:-1:-1;37328:343:0;;;;;:::i;:::-;;:::i;48465:45::-;;;;;;;;;;-1:-1:-1;48465:45:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;48635:42::-;;;;;;;;;;;;48672:5;48635:42;;70820:193;;;;;;;;;;;;;:::i;52158:199::-;;;:::i;26257:185::-;;;;;;;;;;-1:-1:-1;26257:185:0;;;;;:::i;:::-;;:::i;66837:657::-;;;;;;;;;;-1:-1:-1;66837:657:0;;;;;:::i;:::-;;:::i;37937:320::-;;;;;;;;;;-1:-1:-1;37937:320:0;;;;;:::i;:::-;;:::i;22805:326::-;;;;;;;;;;-1:-1:-1;22805:326:0;;;;;:::i;:::-;;:::i;67614:884::-;;;;;;;;;;-1:-1:-1;67614:884:0;;;;;:::i;:::-;;:::i;22448:295::-;;;;;;;;;;-1:-1:-1;22448:295:0;;;;;:::i;:::-;;:::i;23367:104::-;;;;;;;;;;;;;:::i;71063:75::-;;;;;;;;;;;;;:::i;25271:187::-;;;;;;;;;;-1:-1:-1;25271:187:0;;;;;:::i;:::-;;:::i;55076:9819::-;;;;;;;;;;-1:-1:-1;55076:9819:0;;;;;:::i;:::-;;:::i;26513:365::-;;;;;;;;;;-1:-1:-1;26513:365:0;;;;;:::i;:::-;;:::i;70156:412::-;;;;;;;;;;-1:-1:-1;70156:412:0;;;;;:::i;:::-;;:::i;65038:1616::-;;;;;;;;;;-1:-1:-1;65038:1616:0;;;;;:::i;:::-;;:::i;48562:54::-;;;;;;;;;;;;48599:17;48562:54;;53655:1307;;;;;;;;;;-1:-1:-1;53655:1307:0;;;;;:::i;:::-;;:::i;25529:214::-;;;;;;;;;;-1:-1:-1;25529:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;25700:25:0;;;25671:4;25700:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25529:214;70666:100;;;;;;;;;;-1:-1:-1;70666:100:0;;;;;:::i;:::-;;:::i;68590:205::-;68711:23;68737;;;:13;:23;;;;;68711:49;;68680:13;;68711:23;68737;68711:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68711:49:0;;68590:205;-1:-1:-1;;;;;;;68590:205:0:o;36944:300::-;37091:4;-1:-1:-1;;;;;;37133:50:0;;-1:-1:-1;;;37133:50:0;;:103;;;37200:36;37224:11;37200:23;:36::i;:::-;37113:123;36944:300;-1:-1:-1;;36944:300:0:o;23198:100::-;23252:13;23285:5;23278:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23198:100;:::o;24891:308::-;25012:7;28514:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28514:16:0;25037:110;;;;-1:-1:-1;;;25037:110:0;;23512:2:1;25037:110:0;;;23494:21:1;23551:2;23531:18;;;23524:30;23590:34;23570:18;;;23563:62;-1:-1:-1;;;23641:18:1;;;23634:42;23693:19;;25037:110:0;;;;;;;;;-1:-1:-1;25167:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25167:24:0;;24891:308::o;24414:411::-;24495:13;24511:23;24526:7;24511:14;:23::i;:::-;24495:39;;24559:5;-1:-1:-1;;;;;24553:11:0;:2;-1:-1:-1;;;;;24553:11:0;;;24545:57;;;;-1:-1:-1;;;24545:57:0;;23925:2:1;24545:57:0;;;23907:21:1;23964:2;23944:18;;;23937:30;24003:34;23983:18;;;23976:62;-1:-1:-1;;;24054:18:1;;;24047:31;24095:19;;24545:57:0;23723:397:1;24545:57:0;2724:10;-1:-1:-1;;;;;24637:21:0;;;;:62;;-1:-1:-1;24662:37:0;24679:5;2724:10;25529:214;:::i;24662:37::-;24615:168;;;;-1:-1:-1;;;24615:168:0;;21905:2:1;24615:168:0;;;21887:21:1;21944:2;21924:18;;;21917:30;21983:34;21963:18;;;21956:62;22054:26;22034:18;;;22027:54;22098:19;;24615:168:0;21703:420:1;24615:168:0;24796:21;24805:2;24809:7;24796:8;:21::i;:::-;24484:341;24414:411;;:::o;69864:137::-;69765:6;;-1:-1:-1;;;;;69765:6:0;69775:10;69765:20;69757:29;;;;;;69920:9:::1;69915:79;69939:1;69935;:5;69915:79;;;69969:13;::::0;;;:10:::1;:13;::::0;;;;69962:20:::1;::::0;::::1;:::i;:::-;69942:3:::0;::::1;::::0;::::1;:::i;:::-;;;;69915:79;;;;69864:137::o:0;25810:376::-;26019:41;2724:10;26052:7;26019:18;:41::i;:::-;25997:140;;;;-1:-1:-1;;;25997:140:0;;;;;;;:::i;:::-;26150:28;26160:4;26166:2;26170:7;26150:9;:28::i;37328:343::-;37470:7;37525:23;37542:5;37525:16;:23::i;:::-;37517:5;:31;37495:124;;;;-1:-1:-1;;;37495:124:0;;18783:2:1;37495:124:0;;;18765:21:1;18822:2;18802:18;;;18795:30;18861:34;18841:18;;;18834:62;-1:-1:-1;;;18912:18:1;;;18905:41;18963:19;;37495:124:0;18581:407:1;37495:124:0;-1:-1:-1;;;;;;37637:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37328:343::o;48465:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;70820:193::-;69765:6;;-1:-1:-1;;;;;69765:6:0;69775:10;69765:20;69757:29;;;;;;70886:21:::1;70926:11:::0;70918:39:::1;;;::::0;-1:-1:-1;;;70918:39:0;;25517:2:1;70918:39:0::1;::::0;::::1;25499:21:1::0;25556:2;25536:18;;;25529:30;-1:-1:-1;;;25575:18:1;;;25568:45;25630:18;;70918:39:0::1;25315:339:1::0;70918:39:0::1;70968:37;::::0;70976:10:::1;::::0;70968:37;::::1;;;::::0;70997:7;;70968:37:::1;::::0;;;70997:7;70976:10;70968:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;70857:156;70820:193::o:0;52158:199::-;48599:17;52217:9;:24;;:48;;;;52261:4;52245:13;37835:10;:17;;37747:113;52245:13;:20;52217:48;52209:114;;;;-1:-1:-1;;;52209:114:0;;25158:2:1;52209:114:0;;;25140:21:1;25197:2;25177:18;;;25170:30;25236:32;25216:18;;;25209:60;25286:18;;52209:114:0;24956:354:1;52209:114:0;52334:9;:7;:9::i;:::-;52158:199::o;26257:185::-;26395:39;26412:4;26418:2;26422:7;26395:39;;;;;;;;;;;;:16;:39::i;66837:657::-;66950:12;;67079:10;67062:243;67095:15;:10;67108:2;67095:15;:::i;:::-;67091:1;:19;67062:243;;;67132:15;67150:10;67161:1;67150:13;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;67150:13:0;;-1:-1:-1;67183:9:0;67178:116;67202:1;67198;:5;67178:116;;;67258:9;67269:8;67241:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67229:49;;67205:3;;;;;:::i;:::-;;;;67178:116;;;;67117:188;67112:3;;;;;:::i;:::-;;;;67062:243;;;;67476:9;67447:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;67440:46;;;66837:657;;;;:::o;37937:320::-;38057:7;38112:30;37835:10;:17;;37747:113;38112:30;38104:5;:38;38082:132;;;;-1:-1:-1;;;38082:132:0;;24745:2:1;38082:132:0;;;24727:21:1;24784:2;24764:18;;;24757:30;24823:34;24803:18;;;24796:62;-1:-1:-1;;;24874:18:1;;;24867:42;24926:19;;38082:132:0;24543:408:1;38082:132:0;38232:10;38243:5;38232:17;;;;;;;;:::i;:::-;;;;;;;;;38225:24;;37937:320;;;:::o;22805:326::-;22922:7;22963:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22963:16:0;23012:19;22990:110;;;;-1:-1:-1;;;22990:110:0;;22741:2:1;22990:110:0;;;22723:21:1;22780:2;22760:18;;;22753:30;22819:34;22799:18;;;22792:62;-1:-1:-1;;;22870:18:1;;;22863:39;22919:19;;22990:110:0;22539:405:1;67614:884:0;67707:13;67738:28;67784:7;67779:642;67801:1;67797;:5;;;67779:642;;;67824:20;67847:82;67881:33;67898:5;67881:33;;;67908:5;67905:1;67912;67908:5;:::i;:::-;67881:33;;:16;:33::i;:::-;67847:15;:82::i;:::-;67824:105;;68027:14;68104:10;:13;68115:1;68104:13;;;;;;;;;;;;;68118:14;68104:29;;;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;68202:10;:13;68213:1;68202:13;;;;;;;;;;;;;68216:14;68202:29;;;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;67988:299;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67946:356;;68327:1;68323;:5;;;68319:90;;;68388:14;68371:37;;;;;;;;:::i;:::-;;;;;;;;;;;;;68347:62;;68319:90;-1:-1:-1;67804:3:0;;;;:::i;:::-;;;;67779:642;;;;68469:14;68447:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;68433:57;;;67614:884;;;:::o;22448:295::-;22565:7;-1:-1:-1;;;;;22612:19:0;;22590:111;;;;-1:-1:-1;;;22590:111:0;;22330:2:1;22590:111:0;;;22312:21:1;22369:2;22349:18;;;22342:30;22408:34;22388:18;;;22381:62;-1:-1:-1;;;22459:18:1;;;22452:40;22509:19;;22590:111:0;22128:406:1;22590:111:0;-1:-1:-1;;;;;;22719:16:0;;;;;:9;:16;;;;;;;22448:295::o;23367:104::-;23423:13;23456:7;23449:14;;;;;:::i;71063:75::-;69765:6;;-1:-1:-1;;;;;69765:6:0;69775:10;69765:20;69757:29;;;;;25271:187;25398:52;2724:10;25431:8;25441;25398:18;:52::i;55076:9819::-;55167:13;55250:27;;:::i;:::-;55293:9;55288:90;55312:2;55308:1;:6;55288:90;;;55352:14;;;55362:3;55352:14;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55352:14:0;55336:10;55347:1;55336:13;;;;;;;:::i;:::-;;;;:30;55316:3;;;;:::i;:::-;;;;55288:90;;;;55388:33;;:::i;:::-;55465:7;55460:7065;55482:1;55478;:5;;;55460:7065;;;55505:21;55529:84;55565:33;55582:5;55565:33;;;55592:5;55589:1;55596;55592:5;:::i;55565:33::-;55529:17;:84::i;:::-;55505:108;;55708:8;55685:6829;55796:1;55749:10;:13;55760:1;55749:13;;;;;;;;;;;;;55763:14;55749:29;;;;;;;;;;:::i;:::-;;;;;;;;;;;:36;;55743:50;;;;;:::i;:::-;:54;;;-1:-1:-1;55743:54:0;:::i;:::-;55739:1;:58;;;55685:6829;;;55965:13;;;55900:23;55965:13;;;:10;:13;;;;;:29;;55926:154;;55965:13;:29;;;;;;;;;;:::i;:::-;;;;;;;;;;;:36;;55926:154;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56024:1;56028;56024:5;;;;:::i;:::-;55926:154;;56052:5;:1;56056;56052:5;:::i;:::-;:9;;56060:1;56052:9;:::i;:::-;55926:154;;:16;:154::i;:::-;55900:180;;56099:27;56135:9;56099:46;;56247:12;56262:40;56284:14;56299:1;56284:17;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;56284:17:0;56262:21;:40::i;:::-;56247:55;;;;56342:40;56364:14;56379:1;56364:17;;;;;;;;:::i;56342:40::-;56329:53;;:10;:5;56337:2;56329:10;:::i;:::-;:53;;;;:::i;:::-;56321:61;;56451:17;56471:40;56493:14;56508:1;56493:17;;;;;;;;:::i;56471:40::-;56451:60;;56579:11;56593:40;56615:14;56630:1;56615:17;;;;;;;;:::i;56593:40::-;56579:54;;56704:14;56721:40;56743:14;56758:1;56743:17;;;;;;;;:::i;56721:40::-;56704:57;;56847:7;56842:5657;56864:11;56860:15;;:1;:15;;;56842:5657;;;56952:7;56947:5500;56969:2;56965:1;:6;;;56947:5500;;;57086:5;57137;57244:13;;;57240:4803;;;;;57340:8;:13;;57352:1;57340:13;57336:4707;;;57413:3;57400:9;;;;:5;:9;:::i;:::-;57399:17;;;;:::i;:::-;57386:30;;57336:4707;;;57454:8;:13;;57466:1;57454:13;57450:4593;;;57522:5;57526:1;57522;:5;:::i;:::-;57513:15;;:5;:15;:::i;:::-;57500:28;;57450:4593;;;57566:8;:13;;57578:1;57566:13;57562:4481;;;57650:1;57641:5;:1;57645;57641:5;:::i;:::-;57640:11;;;;:::i;:::-;57626:9;57634:1;57626:5;:9;:::i;:::-;57625:27;;;;:::i;57562:4481::-;57690:8;:13;;57702:1;57690:13;57686:4357;;;57774:1;57765:5;:1;57769;57765:5;:::i;:::-;57764:11;;;;:::i;:::-;57750:9;57758:1;57750:5;:9;:::i;57686:4357::-;57814:8;:13;;57826:1;57814:13;57810:4233;;;57897:1;57888:5;57892:1;57888;:5;:::i;:::-;57887:11;;;;:::i;:::-;57873:26;;;;:10;:26;:::i;57810:4233::-;57937:8;:13;;57949:1;57937:13;57933:4110;;;57987:6;;;;;:17;;;58002:2;57997:1;:7;;;;57987:17;57983:98;;;58041:8;;;;57983:98;57933:4110;;;58118:8;:13;;58130:1;58118:13;58114:3929;;;58173:1;58168:6;;:1;:6;;:17;;;;58183:2;58178:1;:7;;;58164:98;;58222:8;;;;58114:3929;58299:8;:13;;58311:1;58299:13;58295:3748;;;58354:1;58349:6;;:1;:6;;:16;;;;58364:1;58359;:6;;;58345:97;;58402:8;;;;58295:3748;58479:8;:13;;58491:1;58479:13;58475:3568;;;58534:1;58529:6;;:1;:6;;:16;;;;58544:1;58539;:6;;;58525:97;;58582:8;;;;58475:3568;58659:8;:14;;58671:2;58659:14;58655:3388;;;58715:1;58710:6;;:1;:6;;:16;;;;58725:1;58720;:6;;;58706:97;;58763:8;;;;58655:3388;58840:8;:14;;58852:2;58840:14;58836:3207;;;58895:1;58891;:5;;;58887:101;;;58946:10;58954:2;58946:5;:10;:::i;58836:3207::-;59025:8;:14;;59037:2;59025:14;59021:3022;;;59076:1;:6;;59081:1;59076:6;:16;;;;59086:1;:6;;59091:1;59086:6;59076:16;59072:112;;;59142:10;59150:2;59142:5;:10;:::i;59021:3022::-;59221:8;:14;;59233:2;59221:14;59217:2826;;;59282:1;59273:5;59277:1;59273;:5;:::i;:::-;59272:11;;;;:::i;:::-;:16;;59268:97;;59325:8;;;;59217:2826;59402:8;:14;;59414:2;59402:14;59398:2645;;;59463:1;59454:5;59458:1;59454;:5;:::i;:::-;59453:11;;;;:::i;:::-;:16;;;59449:97;;59506:8;;;;59398:2645;59583:8;:14;;59595:2;59583:14;59579:2464;;;59652:5;59656:1;59652;:5;:::i;:::-;59651:12;;59661:2;59651:12;:::i;:::-;59643:20;;;;:5;:20;:::i;59579:2464::-;59701:8;:14;;59713:2;59701:14;59697:2346;;;59752:5;59756:1;59752;:5;:::i;59697:2346::-;59876:8;:14;;59888:2;59876:14;59872:2171;;;59945:5;59949:1;59945;:5;:::i;:::-;59944:12;;59954:2;59944:12;:::i;:::-;59936:20;;;;:5;:20;:::i;:::-;59923:33;;60005:3;59991:10;:17;;;59987:98;;60045:8;;;;59872:2171;60122:8;:14;;60134:2;60122:14;60118:1925;;;60174:3;60176:1;60174;:3;:::i;:::-;60173:10;;60182:1;60173:10;:24;;;-1:-1:-1;60188:3:0;60190:1;60188;:3;:::i;:::-;60187:10;;60196:1;60187:10;60169:120;;;60247:10;60255:2;60247:5;:10;:::i;60118:1925::-;60326:8;:14;;60338:2;60326:14;60322:1721;;;60382:1;60377:3;60382:1;60377;:3;:::i;:::-;60376:7;;;;:::i;:::-;:12;;60387:1;60376:12;60373:135;;;60437:9;60445:1;60437:5;:9;:::i;60322:1721::-;60545:8;:14;;60557:2;60545:14;60541:1502;;;60627:1;;60615:3;:1;60617;60615:3;:::i;:::-;60614:9;;;;:::i;:::-;60613:15;;;;:::i;60541:1502::-;60666:8;:14;;60678:2;60666:14;60662:1381;;;60718:1;60716;:3;;;60713:194;;;60768:9;;;;:5;:9;:::i;:::-;60755:22;;60713:194;;;60870:4;60873:1;60870:2;:4;:::i;:::-;60861:14;;;;:5;:14;:::i;:::-;60848:27;;60713:194;60953:2;60940:10;:15;;;60937:28;;;60957:8;;;;60937:28;61017:3;61019:1;61017;:3;:::i;60662:1381::-;61057:8;:14;;61069:2;61057:14;61053:990;;;61109:1;61107;:3;;;61104:214;;;61162:6;61167:1;61162:2;:6;:::i;:::-;61149:19;;:10;:19;;;61146:32;;;61170:8;;;;61146:32;61104:214;;;61271:4;61274:1;61271:2;:4;:::i;:::-;61265:11;;:2;:11;:::i;:::-;61252:24;;:10;:24;;;61249:37;;;61278:8;;;;61249:37;61397:3;61399:1;61397;:3;:::i;:::-;61389:11;;:5;:11;:::i;61053:990::-;61437:8;:14;;61449:2;61437:14;61433:610;;;61486:3;61488:1;61486;:3;:::i;:::-;:8;;61483:285;;61532:3;61534:1;61532;:3;:::i;:::-;:8;;61529:209;;61593:9;:5;61601:1;61593:9;:::i;61529:209::-;61694:9;61702:1;61694:5;:9;:::i;61433:610::-;61805:8;:14;;61817:2;61805:14;61801:242;;;61889:1;61880:5;61884:1;61880;:5;:::i;:::-;61879:11;;;;:::i;:::-;61865:26;;;;:10;:26;:::i;61801:242::-;61929:8;:14;;61941:2;61929:14;61925:118;;;62013:1;62004:5;62008:1;62004;:5;:::i;:::-;62003:11;;;;:::i;:::-;61989:26;;;;:10;:26;:::i;:::-;61976:39;;61925:118;62140:12;62153:1;62140:15;;;;;;;;;:::i;:::-;;;;;62156:10;62140:27;;;;;;;;;:::i;:::-;;;;;62136:41;;;62169:8;;;;62136:41;62275:84;;-1:-1:-1;;;;;;16579:3:1;16557:16;;;16553:36;62275:84:0;;;16541:49:1;16606:11;;62275:84:0;;;;;;;;;;;;62360:1;62275:87;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;62275:87:0;62247:10;:13;;;;;;;;;;:::i;:::-;;;;;62261:10;62247:25;;;;;;;;;;:::i;:::-;;;;:115;-1:-1:-1;;;;;62247:115:0;;;;;;;;;62419:4;62389:12;62402:1;62389:15;;;;;;;;;:::i;:::-;;;;;62405:10;62389:27;;;;;;;;;:::i;:::-;:34;;;:27;;;;;:34;-1:-1:-1;;56947:5500:0;56973:3;;;;:::i;:::-;;;;56947:5500;;;-1:-1:-1;62469:10:0;62478:1;62469:10;;:::i;:::-;;-1:-1:-1;56877:3:0;;;;:::i;:::-;;;;56842:5657;;;;55835:6679;;;;;;55816:3;;;;;:::i;:::-;;;;55685:6829;;;;55490:7035;55485:3;;;;;:::i;:::-;;;;55460:7065;;;;63631:32;:933;;;;;;;;;;;;;;;;;;;64636:9;64631:121;64655:2;64651:1;:6;64631:121;;;64705:6;64713:26;64725:10;64736:1;64725:13;;;;;;;:::i;:::-;;;;;64713:11;:26::i;:::-;64688:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64679:61;;64659:3;;;;;:::i;:::-;;;;64631:121;;;;64833:6;64816:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;64807:41;;64866:21;64880:6;64866:13;:21::i;:::-;64859:28;55076:9819;-1:-1:-1;;;;;55076:9819:0:o;26513:365::-;26702:41;2724:10;26735:7;26702:18;:41::i;:::-;26680:140;;;;-1:-1:-1;;;26680:140:0;;;;;;;:::i;:::-;26831:39;26845:4;26851:2;26855:7;26864:5;26831:13;:39::i;:::-;26513:365;;;;:::o;70156:412::-;69765:6;;-1:-1:-1;;;;;69765:6:0;69775:10;69765:20;69757:29;;;;;;70282:9:::1;70277:284;70301:6;:13;70297:1;:17;70277:284;;;70336:10;:27;70347:15;70336:27;;;;;;;;;;;70387:147;;;;;;;;70415:6;70422:1;70415:9;;;;;;;;:::i;:::-;;;;;;;:19;;;70387:147;;;;70457:6;70464:1;70457:9;;;;;;;;:::i;:::-;;;;;;;:19;;;70387:147;;;;70499:6;70506:1;70499:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;:16:::1;;::::0;70387:147;;;70336:213;;::::1;::::0;::::1;::::0;;-1:-1:-1;70336:213:0;;;;;;;;;;;;;::::1;;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;70336:213:0::1;::::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;70336:213:0::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;;;70316:3;;;;;:::i;:::-;;;;70277:284;;65038:1616:::0;65132:12;65162:22;65195;65292:9;65287:360;65331:2;65311:10;:17;:22;;;;:::i;:::-;65307:1;:26;65287:360;;;65402:30;65413:10;65425:6;:1;65429:2;65425:6;:::i;65402:30::-;65390:42;;65524:9;65519:117;65543:1;65539;:5;65519:117;;;65599:9;65610;65582:38;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65570:50;;65546:3;;;;;:::i;:::-;;;;65519:117;;;-1:-1:-1;65335:3:0;;;;:::i;:::-;;;;65287:360;;;;66570:9;66446:173;;;;;;;;:::i;:::-;;;;-1:-1:-1;;66446:173:0;;;;;;;;;;65038:1616;-1:-1:-1;;;;65038:1616:0:o;53655:1307::-;28490:4;28514:16;;;:7;:16;;;;;;53757:13;;-1:-1:-1;;;;;28514:16:0;53788:26;;;;;;53825:23;53851;;;:13;:23;;;;;53825:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54033:887;54261:25;54277:8;54261:15;:25::i;:::-;54619:23;54632:9;54619:12;:23::i;:::-;54737:25;54752:9;54737:14;:25::i;:::-;54150:689;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54033:13;:887::i;:::-;53940:999;;;;;;;;:::i;70666:100::-;69765:6;;-1:-1:-1;;;;;69765:6:0;69775:10;69765:20;69757:29;;;;;;70740:6:::1;:18:::0;;-1:-1:-1;;;;;;70740:18:0::1;-1:-1:-1::0;;;;;70740:18:0;;;::::1;::::0;;;::::1;::::0;;70666:100::o;45786:532::-;45842:13;45872:10;45868:53;;-1:-1:-1;;45899:10:0;;;;;;;;;;;;-1:-1:-1;;;45899:10:0;;;;;45786:532::o;45868:53::-;45946:5;45931:12;45987:78;45994:9;;45987:78;;46020:8;;;;:::i;:::-;;-1:-1:-1;46043:10:0;;-1:-1:-1;46051:2:0;46043:10;;:::i;:::-;;;45987:78;;;46075:19;46107:6;46097:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46097:17:0;;46075:39;;46125:154;46132:10;;46125:154;;46159:11;46169:1;46159:11;;:::i;:::-;;-1:-1:-1;46228:10:0;46236:2;46228:5;:10;:::i;:::-;46215:24;;:2;:24;:::i;:::-;46202:39;;46185:6;46192;46185:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;46185:56:0;;;;;;;;-1:-1:-1;46256:11:0;46265:2;46256:11;;:::i;:::-;;;46125:154;;;46303:6;45786:532;-1:-1:-1;;;;45786:532:0:o;22029:355::-;22176:4;-1:-1:-1;;;;;;22218:40:0;;-1:-1:-1;;;22218:40:0;;:105;;-1:-1:-1;;;;;;;22275:48:0;;-1:-1:-1;;;22275:48:0;22218:105;:158;;;-1:-1:-1;;;;;;;;;;14253:40:0;;;22340:36;14094:207;32712:174;32787:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32787:29:0;-1:-1:-1;;;;;32787:29:0;;;;;;;;:24;;32841:23;32787:24;32841:14;:23::i;:::-;-1:-1:-1;;;;;32832:46:0;;;;;;;;;;;32712:174;;:::o;28719:452::-;28848:4;28514:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28514:16:0;28870:110;;;;-1:-1:-1;;;28870:110:0;;21136:2:1;28870:110:0;;;21118:21:1;21175:2;21155:18;;;21148:30;21214:34;21194:18;;;21187:62;-1:-1:-1;;;21265:18:1;;;21258:42;21317:19;;28870:110:0;20934:408:1;28870:110:0;28991:13;29007:23;29022:7;29007:14;:23::i;:::-;28991:39;;29060:5;-1:-1:-1;;;;;29049:16:0;:7;-1:-1:-1;;;;;29049:16:0;;:64;;;;29106:7;-1:-1:-1;;;;;29082:31:0;:20;29094:7;29082:11;:20::i;:::-;-1:-1:-1;;;;;29082:31:0;;29049:64;:113;;;-1:-1:-1;;;;;;25700:25:0;;;25671:4;25700:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29130:32;25529:214;31932:662;32105:4;-1:-1:-1;;;;;32078:31:0;:23;32093:7;32078:14;:23::i;:::-;-1:-1:-1;;;;;32078:31:0;;32056:118;;;;-1:-1:-1;;;32056:118:0;;19614:2:1;32056:118:0;;;19596:21:1;19653:2;19633:18;;;19626:30;19692:34;19672:18;;;19665:62;-1:-1:-1;;;19743:18:1;;;19736:35;19788:19;;32056:118:0;19412:401:1;32056:118:0;-1:-1:-1;;;;;32193:16:0;;32185:65;;;;-1:-1:-1;;;32185:65:0;;20377:2:1;32185:65:0;;;20359:21:1;20416:2;20396:18;;;20389:30;20455:34;20435:18;;;20428:62;-1:-1:-1;;;20506:18:1;;;20499:34;20550:19;;32185:65:0;20175:400:1;32185:65:0;32263:39;32284:4;32290:2;32294:7;32263:20;:39::i;:::-;32367:29;32384:1;32388:7;32367:8;:29::i;:::-;-1:-1:-1;;;;;32409:15:0;;;;;;:9;:15;;;;;:20;;32428:1;;32409:15;:20;;32428:1;;32409:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32440:13:0;;;;;;:9;:13;;;;;:18;;32457:1;;32440:13;:18;;32457:1;;32440:18;:::i;:::-;;;;-1:-1:-1;;32469:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32469:21:0;-1:-1:-1;;;;;32469:21:0;;;;;;;;;32508:27;;32469:16;;32508:27;;;;;;;24484:341;24414:411;;:::o;52365:377::-;52406:20;52429:13;37835:10;:17;;37747:113;52429:13;52406:36;;48672:5;52461:12;:25;52453:65;;;;-1:-1:-1;;;52453:65:0;;21549:2:1;52453:65:0;;;21531:21:1;21588:2;21568:18;;;21561:30;21627:29;21607:18;;;21600:57;21674:18;;52453:65:0;21347:351:1;52453:65:0;52551:12;52603:32;52551:12;52621:10;52529:19;52603:4;:32::i;:::-;52574:26;;;;:13;:26;;;;;;;;:61;;;;:26;;:61;;;;;;:::i;:::-;;52689:4;52646:12;52659:13;:26;52673:11;52659:26;;;;;;;;;;;52646:40;;;;;;:::i;:::-;;;;;;;;;;;;;;:47;;;;;-1:-1:-1;;52646:47:0;;;;;;;;;52704:30;52710:10;52722:11;52704:5;:30::i;47352:419::-;47485:13;47541:3;47511:21;47588;47599:10;47588:8;:21;:::i;:::-;47578:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47578:32:0;-1:-1:-1;47556:54:0;-1:-1:-1;47638:10:0;47621:111;47654:8;47650:1;:12;47621:111;;;47709:8;47718:1;47709:11;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;47709:11:0;47684:6;47691:14;47695:10;47691:1;:14;:::i;:::-;47684:22;;;;;;;;:::i;:::-;;;;:36;-1:-1:-1;;;;;47684:36:0;;;;;;;;-1:-1:-1;47664:3:0;;;;:::i;:::-;;;;47621:111;;;-1:-1:-1;47756:6:0;-1:-1:-1;;47352:419:0;;;;;;:::o;46326:503::-;46412:16;46475:2;46412:16;;46514:286;46536:7;:14;46532:1;:18;;;46514:286;;;46623:2;46607:7;46615:1;46607:10;;;;;;;;;;:::i;:::-;;;;;;;46595:30;;;;46594:85;;;46676:2;46660:7;46668:1;46660:10;;;;;;;;;;:::i;:::-;;;;;;;46648:30;;46594:85;46572:217;;;46714:10;46722:2;46714:10;;:::i;:::-;;;46771:2;46757:7;46765:1;46757:10;;;;;;;;;;:::i;:::-;;;;;46751:22;;;46757:10;;46751:22;:::i;:::-;46743:30;;;;:::i;:::-;;;46572:217;46552:3;;;;:::i;:::-;;;;46514:286;;;-1:-1:-1;46817:4:0;46326:503;-1:-1:-1;;;46326:503:0:o;33028:315::-;33183:8;-1:-1:-1;;;;;33174:17:0;:5;-1:-1:-1;;;;;33174:17:0;;;33166:55;;;;-1:-1:-1;;;33166:55:0;;20782:2:1;33166:55:0;;;20764:21:1;20821:2;20801:18;;;20794:30;20860:27;20840:18;;;20833:55;20905:18;;33166:55:0;20580:349:1;33166:55:0;-1:-1:-1;;;;;33232:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;33232:46:0;;;;;;;;;;33294:41;;17480::1;;;33294::0;;17453:18:1;33294:41:0;;;;;;;33028:315;;;:::o;46837:507::-;46925:17;46989:2;46925:17;;47029:286;47051:7;:14;47047:1;:18;;;47029:286;;;47138:2;47122:7;47130:1;47122:10;;;;;;;;;;:::i;:::-;;;;;;;47110:30;;;;47109:85;;;47191:2;47175:7;47183:1;47175:10;;;;;;;;;;:::i;:::-;;;;;;;47163:30;;47109:85;47087:217;;;47229:10;47237:2;47229:10;;:::i;:::-;;;47286:2;47272:7;47280:1;47272:10;;;;;;;;;;:::i;:::-;;;;;47266:22;;;47272:10;;47266:22;:::i;:::-;47258:30;;;;;;:::i;:::-;;;47087:217;47067:3;;;;:::i;:::-;;;;47029:286;;47779:390;47847:5;47865:23;47897:5;;;;;;;;;;;;;;;;;47865:38;;47919:7;47914:229;47936:10;:17;47932:1;:21;;;47914:229;;;48072:32;;-1:-1:-1;;;;;;8386:26:1;;48072:32:0;;;8374:39:1;8429:11;;48072:32:0;;;;;;;;;;;;48062:43;;;;;;48025:10;48036:1;48025:13;;;;;;;;;;:::i;:::-;;;;;;;48007:33;;;-1:-1:-1;;;;;;48025:13:0;;;48007:33;;;8374:39:1;48007:33:0;;;;;;;;;8429:11:1;;;;48007:33:0;;47997:44;;;;;:108;47975:156;;;48129:1;47779:390;-1:-1:-1;;;47779:390:0:o;47975:156::-;47955:3;;;;:::i;:::-;;;;47914:229;;;;48153:8;;;43522:2256;43580:13;43610:4;:11;43625:1;43610:16;43606:31;;;-1:-1:-1;;43628:9:0;;;;;;;;;-1:-1:-1;43628:9:0;;;43522:2256::o;43606:31::-;43689:19;43711:5;;;;;;;;;;;;;;;;;43689:27;;43768:18;43814:1;43795:4;:11;43809:1;43795:15;;;;:::i;:::-;43794:21;;;;:::i;:::-;43789:27;;:1;:27;:::i;:::-;43768:48;-1:-1:-1;43899:20:0;43933:15;43768:48;43946:2;43933:15;:::i;:::-;43922:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43922:27:0;;43899:50;;44046:10;44038:6;44031:26;44141:1;44134:5;44130:13;44200:4;44251;44245:11;44236:7;44232:25;44347:2;44339:6;44335:15;44420:1045;44455:6;44446:7;44443:19;44420:1045;;;44525:1;44512:15;;;44593:14;;44776:4;44764:2;44760:14;;;44756:25;;44742:40;;44736:47;44731:3;44727:57;;;44666:137;;44967:2;44963:14;;;44959:25;;44945:40;;44939:47;44930:57;;44849:1;44834:17;;44869:137;45170:1;45166:13;;;45162:24;;45148:39;;45142:46;45133:56;;45037:17;;;45072:136;45364:16;;45350:31;;45344:38;45335:48;;45239:17;;;45274:128;;;;45433:17;;44420:1045;;;45538:1;45531:4;45525:11;45521:19;45559:1;45554:84;;;;45657:1;45652:82;;;;45514:220;;45554:84;-1:-1:-1;;;;;45587:17:0;;45580:43;45554:84;;45652:82;-1:-1:-1;;;;;45685:17:0;;45678:41;45514:220;-1:-1:-1;45764:6:0;;43522:2256;-1:-1:-1;;;;;;;;43522:2256:0:o;27760:352::-;27917:28;27927:4;27933:2;27937:7;27917:9;:28::i;:::-;27978:48;28001:4;28007:2;28011:7;28020:5;27978:22;:48::i;:::-;27956:148;;;;-1:-1:-1;;;27956:148:0;;;;;;;:::i;38870:589::-;-1:-1:-1;;;;;39076:18:0;;39072:187;;39111:40;39143:7;40286:10;:17;;40259:24;;;;:15;:24;;;;;:44;;;40314:24;;;;;;;;;;;;40182:164;39111:40;39072:187;;;39181:2;-1:-1:-1;;;;;39173:10:0;:4;-1:-1:-1;;;;;39173:10:0;;39169:90;;39200:47;39233:4;39239:7;39200:32;:47::i;:::-;-1:-1:-1;;;;;39273:16:0;;39269:183;;39306:45;39343:7;39306:36;:45::i;39269:183::-;39379:4;-1:-1:-1;;;;;39373:10:0;:2;-1:-1:-1;;;;;39373:10:0;;39369:83;;39400:40;39428:2;39432:7;39400:27;:40::i;50975:1026::-;51077:13;51116:2;51111;:7;51103:16;;;;;;51192:25;51235:7;51230:662;51252:1;51248;:5;;;51230:662;;;51275:10;:12;;;:10;:12;;;:::i;:::-;;;;-1:-1:-1;;51652:10:0;;51413:276;;;51460:15;51413:276;;;16123:19:1;51506:16:0;16158:12:1;;;16151:28;;;;16195:12;;;;16188:28;;;16250:15;;;-1:-1:-1;;16246:53:1;16232:12;;;16225:75;16316:13;;;16309:29;;;16354:13;;;16347:29;;;;-1:-1:-1;;51734:5:0;;16392:13:1;;51413:276:0;;;;;;;;;;;;51377:335;;;;;;51347:384;;:392;;;;:::i;:::-;51302:452;;51827:11;51840:24;51850:10;51840:24;;51862:1;51840:9;:24::i;:::-;51810:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51771:109;;51260:632;51255:3;;;;;:::i;:::-;;;;51230:662;;;;51908:12;51921:11;51908:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;51904:58;;;51942:20;51947:2;51951;51955:6;:2;51960:1;51955:6;:::i;:::-;51942:4;:20::i;:::-;51935:27;;;;;30507:439;-1:-1:-1;;;;;30587:16:0;;30579:61;;;;-1:-1:-1;;;30579:61:0;;23151:2:1;30579:61:0;;;23133:21:1;;;23170:18;;;23163:30;23229:34;23209:18;;;23202:62;23281:18;;30579:61:0;22949:356:1;30579:61:0;28490:4;28514:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28514:16:0;:30;30651:58;;;;-1:-1:-1;;;30651:58:0;;20020:2:1;30651:58:0;;;20002:21:1;20059:2;20039:18;;;20032:30;20098;20078:18;;;20071:58;20146:18;;30651:58:0;19818:352:1;30651:58:0;30722:45;30751:1;30755:2;30759:7;30722:20;:45::i;:::-;-1:-1:-1;;;;;30780:13:0;;;;;;:9;:13;;;;;:18;;30797:1;;30780:13;:18;;30797:1;;30780:18;:::i;:::-;;;;-1:-1:-1;;30809:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30809:21:0;-1:-1:-1;;;;;30809:21:0;;;;;;;;30848:33;;30809:16;;;30848:33;;30809:16;;30848:33;70968:37:::1;70857:156;70820:193::o:0;33908:980::-;34063:4;-1:-1:-1;;;;;34084:13:0;;4261:19;:23;34080:801;;34137:175;;-1:-1:-1;;;34137:175:0;;-1:-1:-1;;;;;34137:36:0;;;;;:175;;2724:10;;34231:4;;34258:7;;34288:5;;34137:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34137:175:0;;;;;;;;-1:-1:-1;;34137:175:0;;;;;;;;;;;;:::i;:::-;;;34116:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34495:13:0;;34491:320;;34538:108;;-1:-1:-1;;;34538:108:0;;;;;;;:::i;34491:320::-;34761:6;34755:13;34746:6;34742:2;34738:15;34731:38;34116:710;-1:-1:-1;;;;;;34376:51:0;-1:-1:-1;;;34376:51:0;;-1:-1:-1;34369:58:0;;34080:801;-1:-1:-1;34865:4:0;33908:980;;;;;;:::o;40973:1002::-;41253:22;41303:1;41278:22;41295:4;41278:16;:22::i;:::-;:26;;;;:::i;:::-;41315:18;41336:26;;;:17;:26;;;;;;41253:51;;-1:-1:-1;41469:28:0;;;41465:328;;-1:-1:-1;;;;;41536:18:0;;41514:19;41536:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41587:30;;;;;;:44;;;41704:30;;:17;:30;;;;;:43;;;41465:328;-1:-1:-1;41889:26:0;;;;:17;:26;;;;;;;;41882:33;;;-1:-1:-1;;;;;41933:18:0;;;;;:12;:18;;;;;:34;;;;;;;41926:41;40973:1002::o;42270:1079::-;42548:10;:17;42523:22;;42548:21;;42568:1;;42548:21;:::i;:::-;42580:18;42601:24;;;:15;:24;;;;;;42974:10;:26;;42523:46;;-1:-1:-1;42601:24:0;;42523:46;;42974:26;;;;;;:::i;:::-;;;;;;;;;42952:48;;43038:11;43013:10;43024;43013:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;43118:28;;;:15;:28;;;;;;;:41;;;43290:24;;;;;43283:31;43325:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42341:1008;;;42270:1079;:::o;39760:221::-;39845:14;39862:20;39879:2;39862:16;:20::i;:::-;-1:-1:-1;;;;;39893:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39938:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39760:221:0:o;50115:572::-;50223:13;50254:24;50298:7;50293:366;50315:5;50321:11;50315:18;;;;;;;;;:::i;:::-;;:25;50311:29;;;;50293:366;;;50362:21;50386:5;50392:11;50386:18;;;;;;;;;:::i;:::-;;50405:1;50386:21;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;50362:45;;50458:17;50444:31;;:10;:31;;:99;;;;-1:-1:-1;50509:34:0;50529:14;50509:17;:34;:::i;:::-;50496:47;;:10;:47;50444:99;50422:156;;;50566:12;:1;:10;;;:12::i;:::-;50559:19;;;;;;;50422:156;50613:34;50633:14;50613:17;:34;:::i;:::-;50593:54;;50347:312;50342:3;;;;;:::i;:::-;;;;50293:366;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:530::-;234:5;287:3;280:4;272:6;268:17;264:27;254:55;;305:1;302;295:12;254:55;341:6;328:20;367:18;363:2;360:26;357:52;;;389:18;;:::i;:::-;433:55;476:2;457:13;;-1:-1:-1;;453:27:1;482:4;449:38;433:55;:::i;:::-;513:2;504:7;497:19;559:3;552:4;547:2;539:6;535:15;531:26;528:35;525:55;;;576:1;573;566:12;525:55;641:2;634:4;626:6;622:17;615:4;606:7;602:18;589:55;689:1;664:16;;;682:4;660:27;653:38;;;;668:7;192:530;-1:-1:-1;;;192:530:1:o;727:186::-;786:6;839:2;827:9;818:7;814:23;810:32;807:52;;;855:1;852;845:12;807:52;878:29;897:9;878:29;:::i;918:260::-;986:6;994;1047:2;1035:9;1026:7;1022:23;1018:32;1015:52;;;1063:1;1060;1053:12;1015:52;1086:29;1105:9;1086:29;:::i;:::-;1076:39;;1134:38;1168:2;1157:9;1153:18;1134:38;:::i;:::-;1124:48;;918:260;;;;;:::o;1183:328::-;1260:6;1268;1276;1329:2;1317:9;1308:7;1304:23;1300:32;1297:52;;;1345:1;1342;1335:12;1297:52;1368:29;1387:9;1368:29;:::i;:::-;1358:39;;1416:38;1450:2;1439:9;1435:18;1416:38;:::i;:::-;1406:48;;1501:2;1490:9;1486:18;1473:32;1463:42;;1183:328;;;;;:::o;1516:537::-;1611:6;1619;1627;1635;1688:3;1676:9;1667:7;1663:23;1659:33;1656:53;;;1705:1;1702;1695:12;1656:53;1728:29;1747:9;1728:29;:::i;:::-;1718:39;;1776:38;1810:2;1799:9;1795:18;1776:38;:::i;:::-;1766:48;;1861:2;1850:9;1846:18;1833:32;1823:42;;1916:2;1905:9;1901:18;1888:32;1943:18;1935:6;1932:30;1929:50;;;1975:1;1972;1965:12;1929:50;1998:49;2039:7;2030:6;2019:9;2015:22;1998:49;:::i;:::-;1988:59;;;1516:537;;;;;;;:::o;2058:347::-;2123:6;2131;2184:2;2172:9;2163:7;2159:23;2155:32;2152:52;;;2200:1;2197;2190:12;2152:52;2223:29;2242:9;2223:29;:::i;:::-;2213:39;;2302:2;2291:9;2287:18;2274:32;2349:5;2342:13;2335:21;2328:5;2325:32;2315:60;;2371:1;2368;2361:12;2315:60;2394:5;2384:15;;;2058:347;;;;;:::o;2410:254::-;2478:6;2486;2539:2;2527:9;2518:7;2514:23;2510:32;2507:52;;;2555:1;2552;2545:12;2507:52;2578:29;2597:9;2578:29;:::i;:::-;2568:39;2654:2;2639:18;;;;2626:32;;-1:-1:-1;;;2410:254:1:o;2669:245::-;2727:6;2780:2;2768:9;2759:7;2755:23;2751:32;2748:52;;;2796:1;2793;2786:12;2748:52;2835:9;2822:23;2854:30;2878:5;2854:30;:::i;2919:249::-;2988:6;3041:2;3029:9;3020:7;3016:23;3012:32;3009:52;;;3057:1;3054;3047:12;3009:52;3089:9;3083:16;3108:30;3132:5;3108:30;:::i;3173:320::-;3241:6;3294:2;3282:9;3273:7;3269:23;3265:32;3262:52;;;3310:1;3307;3300:12;3262:52;3350:9;3337:23;3383:18;3375:6;3372:30;3369:50;;;3415:1;3412;3405:12;3369:50;3438:49;3479:7;3470:6;3459:9;3455:22;3438:49;:::i;3498:388::-;3575:6;3583;3636:2;3624:9;3615:7;3611:23;3607:32;3604:52;;;3652:1;3649;3642:12;3604:52;3692:9;3679:23;3725:18;3717:6;3714:30;3711:50;;;3757:1;3754;3747:12;3711:50;3780:49;3821:7;3812:6;3801:9;3797:22;3780:49;:::i;:::-;3770:59;3876:2;3861:18;;;;3848:32;;-1:-1:-1;;;;3498:388:1:o;4217:180::-;4276:6;4329:2;4317:9;4308:7;4304:23;4300:32;4297:52;;;4345:1;4342;4335:12;4297:52;-1:-1:-1;4368:23:1;;4217:180;-1:-1:-1;4217:180:1:o;4402:1874::-;4518:6;4526;4579:2;4567:9;4558:7;4554:23;4550:32;4547:52;;;4595:1;4592;4585:12;4547:52;4631:9;4618:23;4608:33;;4660:2;4713;4702:9;4698:18;4685:32;4736:18;4777:2;4769:6;4766:14;4763:34;;;4793:1;4790;4783:12;4763:34;4831:6;4820:9;4816:22;4806:32;;4876:7;4869:4;4865:2;4861:13;4857:27;4847:55;;4898:1;4895;4888:12;4847:55;4934:2;4921:16;4956:2;4952;4949:10;4946:36;;;4962:18;;:::i;:::-;5008:2;5005:1;5001:10;5031:28;5055:2;5051;5047:11;5031:28;:::i;:::-;5093:15;;;5124:12;;;;5156:11;;;5186;;;5182:20;;5179:33;-1:-1:-1;5176:53:1;;;5225:1;5222;5215:12;5176:53;5247:1;5238:10;;5257:989;5271:2;5268:1;5265:9;5257:989;;;5348:3;5335:17;5384:2;5371:11;5368:19;5365:39;;;5400:1;5397;5390:12;5365:39;5427:20;;5499:4;5471:16;;;-1:-1:-1;;5467:30:1;5463:41;5460:61;;;5517:1;5514;5507:12;5460:61;5547:22;;:::i;:::-;5619:2;5615;5611:11;5598:25;5652:2;5642:8;5639:16;5636:36;;;5668:1;5665;5658:12;5636:36;5699:53;5744:7;5739:2;5728:8;5724:2;5720:17;5716:26;5699:53;:::i;:::-;5692:5;5685:68;;5803:2;5799;5795:11;5782:25;5836:2;5826:8;5823:16;5820:36;;;5852:1;5849;5842:12;5820:36;5892:53;5937:7;5932:2;5921:8;5917:2;5913:17;5909:26;5892:53;:::i;:::-;5887:2;5880:5;5876:14;5869:77;;5996:4;5992:2;5988:13;5975:27;6031:2;6021:8;6018:16;6015:36;;;6047:1;6044;6037:12;6015:36;6087:53;6132:7;6127:2;6116:8;6112:2;6108:17;6104:26;6087:53;:::i;:::-;6082:2;6071:14;;6064:77;-1:-1:-1;6154:18:1;;-1:-1:-1;5289:1:1;5282:9;;;;;6192:12;;;;6224;;5257:989;;;5261:3;6265:5;6255:15;;;;;;;;;4402:1874;;;;;:::o;6281:248::-;6349:6;6357;6410:2;6398:9;6389:7;6385:23;6381:32;6378:52;;;6426:1;6423;6416:12;6378:52;-1:-1:-1;;6449:23:1;;;6519:2;6504:18;;;6491:32;;-1:-1:-1;6281:248:1:o;6534:268::-;6586:3;6624:5;6618:12;6651:6;6646:3;6639:19;6667:63;6723:6;6716:4;6711:3;6707:14;6700:4;6693:5;6689:16;6667:63;:::i;:::-;6784:2;6763:15;-1:-1:-1;;6759:29:1;6750:39;;;;6791:4;6746:50;;6534:268;-1:-1:-1;;6534:268:1:o;6807:184::-;6848:3;6886:5;6880:12;6901:52;6946:6;6941:3;6934:4;6927:5;6923:16;6901:52;:::i;:::-;6969:16;;;;;6807:184;-1:-1:-1;;6807:184:1:o;6996:973::-;7081:12;;7046:3;;7136:1;7156:18;;;;7209;;;;7236:61;;7290:4;7282:6;7278:17;7268:27;;7236:61;7316:2;7364;7356:6;7353:14;7333:18;7330:38;7327:161;;;7410:10;7405:3;7401:20;7398:1;7391:31;7445:4;7442:1;7435:15;7473:4;7470:1;7463:15;7327:161;7504:18;7531:104;;;;7649:1;7644:319;;;;7497:466;;7531:104;-1:-1:-1;;7564:24:1;;7552:37;;7609:16;;;;-1:-1:-1;7531:104:1;;7644:319;26452:1;26445:14;;;26489:4;26476:18;;7738:1;7752:165;7766:6;7763:1;7760:13;7752:165;;;7844:14;;7831:11;;;7824:35;7887:16;;;;7781:10;;7752:165;;;7756:3;;7946:6;7941:3;7937:16;7930:23;;7497:466;;;;;;;6996:973;;;;:::o;8451:385::-;8606:3;8644:6;8638:13;8660:53;8706:6;8701:3;8694:4;8686:6;8682:17;8660:53;:::i;:::-;-1:-1:-1;;;;;;8774:26:1;;;;8735:16;;;;8760:41;;;8828:1;8817:13;;8451:385;-1:-1:-1;;8451:385:1:o;8841:466::-;9016:3;9054:6;9048:13;9070:53;9116:6;9111:3;9104:4;9096:6;9092:17;9070:53;:::i;:::-;9186:13;;9145:16;;;;9208:57;9186:13;9145:16;9242:4;9230:17;;9208:57;:::i;:::-;9281:20;;8841:466;-1:-1:-1;;;;8841:466:1:o;9312:437::-;9542:3;9580:6;9574:13;9596:53;9642:6;9637:3;9630:4;9622:6;9618:17;9596:53;:::i;:::-;-1:-1:-1;;;9671:16:1;;9696:18;;;-1:-1:-1;9741:1:1;9730:13;;9312:437;-1:-1:-1;9312:437:1:o;9754:276::-;9885:3;9923:6;9917:13;9939:53;9985:6;9980:3;9973:4;9965:6;9961:17;9939:53;:::i;:::-;10008:16;;;;;9754:276;-1:-1:-1;;9754:276:1:o;10510:439::-;10742:3;10780:6;10774:13;10796:53;10842:6;10837:3;10830:4;10822:6;10818:17;10796:53;:::i;:::-;-1:-1:-1;;;10871:16:1;;10896:18;;;-1:-1:-1;10941:1:1;10930:13;;10510:439;-1:-1:-1;10510:439:1:o;10954:990::-;11478:3;11516:6;11510:13;11532:53;11578:6;11573:3;11566:4;11558:6;11554:17;11532:53;:::i;:::-;-1:-1:-1;;;11607:16:1;;;11632:57;;;11708:49;11753:2;11742:14;;11734:6;11708:49;:::i;:::-;-1:-1:-1;;;11766:46:1;;11698:59;-1:-1:-1;11831:46:1;11873:2;11865:11;;11857:6;11831:46;:::i;:::-;-1:-1:-1;;;11886:26:1;;11936:1;11928:10;;10954:990;-1:-1:-1;;;;;;10954:990:1:o;11949:197::-;12077:3;12102:38;12136:3;12128:6;12102:38;:::i;12151:630::-;-1:-1:-1;;;12500:63:1;;12586:13;;12482:3;;12608:62;12586:13;12658:2;12649:12;;12642:4;12630:17;;12608:62;:::i;:::-;-1:-1:-1;;;12729:2:1;12689:16;;;;12721:11;;;12714:34;-1:-1:-1;12772:2:1;12764:11;;12151:630;-1:-1:-1;12151:630:1:o;12786:426::-;-1:-1:-1;;;13034:26:1;;13083:13;;13016:3;;13105:61;13083:13;13155:1;13146:11;;13139:4;13127:17;;13105:61;:::i;:::-;13186:16;;;;13204:1;13182:24;;12786:426;-1:-1:-1;;12786:426:1:o;13217:572::-;-1:-1:-1;;;13575:3:1;13568:16;13550:3;13613:6;13607:13;13629:61;13683:6;13679:1;13674:3;13670:11;13663:4;13655:6;13651:17;13629:61;:::i;:::-;-1:-1:-1;;;13749:1:1;13709:16;;;;13741:10;;;13734:23;-1:-1:-1;13781:1:1;13773:10;;13217:572;-1:-1:-1;13217:572:1:o;13794:448::-;14056:31;14051:3;14044:44;14026:3;14117:6;14111:13;14133:62;14188:6;14183:2;14178:3;14174:12;14167:4;14159:6;14155:17;14133:62;:::i;:::-;14215:16;;;;14233:2;14211:25;;13794:448;-1:-1:-1;;13794:448:1:o;14247:1602::-;-1:-1:-1;;;14896:55:1;;14974:13;;14878:3;;14996:62;14974:13;15046:2;15037:12;;15030:4;15018:17;;14996:62;:::i;:::-;15122:66;15117:2;15077:16;;;15109:11;;;15102:87;15218:34;15213:2;15205:11;;15198:55;15282:34;15277:2;15269:11;;15262:55;15347:34;15341:3;15333:12;;15326:56;15412:34;15406:3;15398:12;;15391:56;15477:34;15471:3;15463:12;;15456:56;15542:66;15536:3;15528:12;;15521:88;15639:66;15633:3;15625:12;;15618:88;15722:121;15752:90;15777:64;15802:38;15835:3;15827:12;;15819:6;15802:38;:::i;:::-;-1:-1:-1;;;8034:55:1;;8114:2;8105:12;;7974:149;15777:64;15769:6;15752:90;:::i;:::-;-1:-1:-1;;;8193:16:1;;8234:1;8225:11;;8128:114;15722:121;15715:128;14247:1602;-1:-1:-1;;;;;;14247:1602:1:o;16836:499::-;-1:-1:-1;;;;;17105:15:1;;;17087:34;;17157:15;;17152:2;17137:18;;17130:43;17204:2;17189:18;;17182:34;;;17252:3;17247:2;17232:18;;17225:31;;;17030:4;;17273:56;;17309:19;;17301:6;17273:56;:::i;17532:228::-;17679:2;17668:9;17661:21;17642:4;17699:55;17750:2;17739:9;17735:18;17727:6;17699:55;:::i;18000:576::-;18245:2;18234:9;18227:21;18208:4;18271:55;18322:2;18311:9;18307:18;18299:6;18271:55;:::i;:::-;18374:9;18366:6;18362:22;18357:2;18346:9;18342:18;18335:50;18408:43;18444:6;18436;18408:43;:::i;:::-;18394:57;;18499:9;18491:6;18487:22;18482:2;18471:9;18467:18;18460:50;18527:43;18563:6;18555;18527:43;:::i;18993:414::-;19195:2;19177:21;;;19234:2;19214:18;;;19207:30;19273:34;19268:2;19253:18;;19246:62;-1:-1:-1;;;19339:2:1;19324:18;;19317:48;19397:3;19382:19;;18993:414::o;24125:413::-;24327:2;24309:21;;;24366:2;24346:18;;;24339:30;24405:34;24400:2;24385:18;;24378:62;-1:-1:-1;;;24471:2:1;24456:18;;24449:47;24528:3;24513:19;;24125:413::o;25841:253::-;25913:2;25907:9;25955:4;25943:17;;25990:18;25975:34;;26011:22;;;25972:62;25969:88;;;26037:18;;:::i;:::-;26073:2;26066:22;25841:253;:::o;26099:275::-;26170:2;26164:9;26235:2;26216:13;;-1:-1:-1;;26212:27:1;26200:40;;26270:18;26255:34;;26291:22;;;26252:62;26249:88;;;26317:18;;:::i;:::-;26353:2;26346:22;26099:275;;-1:-1:-1;26099:275:1:o;26505:224::-;26544:3;26572:6;26605:2;26602:1;26598:10;26635:2;26632:1;26628:10;26666:3;26662:2;26658:12;26653:3;26650:21;26647:47;;;26674:18;;:::i;26734:128::-;26774:3;26805:1;26801:6;26798:1;26795:13;26792:39;;;26811:18;;:::i;:::-;-1:-1:-1;26847:9:1;;26734:128::o;26867:204::-;26905:3;26941:4;26938:1;26934:12;26973:4;26970:1;26966:12;27008:3;27002:4;26998:14;26993:3;26990:23;26987:49;;;27016:18;;:::i;:::-;27052:13;;26867:204;-1:-1:-1;;;26867:204:1:o;27076:120::-;27116:1;27142;27132:35;;27147:18;;:::i;:::-;-1:-1:-1;27181:9:1;;27076:120::o;27201:165::-;27239:1;27273:4;27270:1;27266:12;27297:3;27287:37;;27304:18;;:::i;:::-;27356:3;27349:4;27346:1;27342:12;27338:22;27333:27;;;27201:165;;;;:::o;27371:258::-;27410:7;27442:6;27475:2;27472:1;27468:10;27505:2;27502:1;27498:10;27561:3;27557:2;27553:12;27548:3;27545:21;27538:3;27531:11;27524:19;27520:47;27517:73;;;27570:18;;:::i;:::-;27610:13;;27371:258;-1:-1:-1;;;;27371:258:1:o;27634:168::-;27674:7;27740:1;27736;27732:6;27728:14;27725:1;27722:21;27717:1;27710:9;27703:17;27699:45;27696:71;;;27747:18;;:::i;:::-;-1:-1:-1;27787:9:1;;27634:168::o;27807:238::-;27845:7;27885:4;27882:1;27878:12;27917:4;27914:1;27910:12;27977:3;27971:4;27967:14;27962:3;27959:23;27952:3;27945:11;27938:19;27934:49;27931:75;;;27986:18;;:::i;:::-;28026:13;;27807:238;-1:-1:-1;;;27807:238:1:o;28050:217::-;28089:4;28118:6;28174:10;;;;28144;;28196:12;;;28193:38;;;28211:18;;:::i;:::-;28248:13;;28050:217;-1:-1:-1;;;28050:217:1:o;28272:125::-;28312:4;28340:1;28337;28334:8;28331:34;;;28345:18;;:::i;:::-;-1:-1:-1;28382:9:1;;28272:125::o;28402:195::-;28440:4;28477;28474:1;28470:12;28509:4;28506:1;28502:12;28534:3;28529;28526:12;28523:38;;;28541:18;;:::i;:::-;28578:13;;;28402:195;-1:-1:-1;;;28402:195:1:o;28602:258::-;28674:1;28684:113;28698:6;28695:1;28692:13;28684:113;;;28774:11;;;28768:18;28755:11;;;28748:39;28720:2;28713:10;28684:113;;;28815:6;28812:1;28809:13;28806:48;;;-1:-1:-1;;28850:1:1;28832:16;;28825:27;28602:258::o;28865:380::-;28944:1;28940:12;;;;28987;;;29008:61;;29062:4;29054:6;29050:17;29040:27;;29008:61;29115:2;29107:6;29104:14;29084:18;29081:38;29078:161;;;29161:10;29156:3;29152:20;29149:1;29142:31;29196:4;29193:1;29186:15;29224:4;29221:1;29214:15;29078:161;;28865:380;;;:::o;29250:197::-;29288:3;29316:6;29357:2;29350:5;29346:14;29384:2;29375:7;29372:15;29369:41;;;29390:18;;:::i;:::-;29439:1;29426:15;;29250:197;-1:-1:-1;;;29250:197:1:o;29452:135::-;29491:3;-1:-1:-1;;29512:17:1;;29509:43;;;29532:18;;:::i;:::-;-1:-1:-1;29579:1:1;29568:13;;29452:135::o;29592:175::-;29629:3;29673:4;29666:5;29662:16;29702:4;29693:7;29690:17;29687:43;;;29710:18;;:::i;:::-;29759:1;29746:15;;29592:175;-1:-1:-1;;29592:175:1:o;29772:179::-;29803:1;29829:6;29862:2;29859:1;29855:10;29884:3;29874:37;;29891:18;;:::i;:::-;29929:10;;29925:20;;;;;29772:179;-1:-1:-1;;29772:179:1:o;29956:112::-;29988:1;30014;30004:35;;30019:18;;:::i;:::-;-1:-1:-1;30053:9:1;;29956:112::o;30073:157::-;30103:1;30137:4;30134:1;30130:12;30161:3;30151:37;;30168:18;;:::i;:::-;30220:3;30213:4;30210:1;30206:12;30202:22;30197:27;;;30073:157;;;;:::o;30235:127::-;30296:10;30291:3;30287:20;30284:1;30277:31;30327:4;30324:1;30317:15;30351:4;30348:1;30341:15;30367:127;30428:10;30423:3;30419:20;30416:1;30409:31;30459:4;30456:1;30449:15;30483:4;30480:1;30473:15;30499:127;30560:10;30555:3;30551:20;30548:1;30541:31;30591:4;30588:1;30581:15;30615:4;30612:1;30605:15;30631:127;30692:10;30687:3;30683:20;30680:1;30673:31;30723:4;30720:1;30713:15;30747:4;30744:1;30737:15;30763:127;30824:10;30819:3;30815:20;30812:1;30805:31;30855:4;30852:1;30845:15;30879:4;30876:1;30869:15;30895:131;-1:-1:-1;;;;;;30969:32:1;;30959:43;;30949:71;;31016:1;31013;31006:12

Swarm Source

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