ETH Price: $4,079.95 (+4.69%)

Token

Sinart (SA)
 

Overview

Max Total Supply

76 SA

Holders

31

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
0xmunger.eth
Balance
1 SA
0x7ba6527419152e17d78daccbb89a51ab71c8d200
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:
Sinart

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

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

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

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

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor() internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value)
        private
        view
        returns (bool)
    {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index)
        private
        view
        returns (bytes32)
    {
        require(
            set._values.length > index,
            "EnumerableSet: index out of bounds"
        );
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index)
        internal
        view
        returns (bytes32)
    {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index)
        internal
        view
        returns (address)
    {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index)
        internal
        view
        returns (uint256)
    {
        return uint256(_at(set._inner, index));
    }
}

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;
        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(
        Map storage map,
        bytes32 key,
        bytes32 value
    ) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) {
            // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({_key: key, _value: value}));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) {
            // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key)
        private
        view
        returns (bool)
    {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

    /**
     * @dev Returns the key-value pair stored at position `index` in the map. O(1).
     *
     * Note that there are no guarantees on the ordering of entries inside the
     * array, and it may change when more entries are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Map storage map, uint256 index)
        private
        view
        returns (bytes32, bytes32)
    {
        require(
            map._entries.length > index,
            "EnumerableMap: index out of bounds"
        );

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key)
        private
        view
        returns (bool, bytes32)
    {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(
        Map storage map,
        bytes32 key,
        string memory errorMessage
    ) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(
        UintToAddressMap storage map,
        uint256 key,
        address value
    ) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key)
        internal
        returns (bool)
    {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (bool)
    {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map)
        internal
        view
        returns (uint256)
    {
        return _length(map._inner);
    }

    /**
     * @dev Returns the element stored at position `index` in the set. O(1).
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintToAddressMap storage map, uint256 index)
        internal
        view
        returns (uint256, address)
    {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (bool, address)
    {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (address)
    {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(
        UintToAddressMap storage map,
        uint256 key,
        string memory errorMessage
    ) internal view returns (address) {
        return
            address(
                uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))
            );
    }
}

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + (temp % 10)));
            temp /= 10;
        }
        return string(buffer);
    }
}

/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() internal {
        address payable msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

contract Sinart is
    Ownable,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using SafeMath for uint256;
    using Strings for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;

    event Mint(address indexed to, uint256 tokenId, bytes32 hash);

    uint256 HARD_CAP = 10000;
    uint256 SALE_PIRCE = 69000000000000000; // 0.069 ETH
    uint256 MAX_MINT = 10;
    uint256 _reservedTokens = 100; // used for giveaways and markeing purposes

    bool private _paused = true;
    bool private _burned = false;

    mapping(uint256 => bytes32) private _tokenIdHash;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping(address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        string memory uri_,
        uint256 hardCap_
    ) public {
        _name = name_;
        _symbol = symbol_;
        _baseURI = uri_;
        HARD_CAP = hardCap_;
        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    function _mintOne(address _to, uint256 _tokenId) internal {
        bytes32 hash = keccak256(
            abi.encodePacked(_tokenId, block.number, msg.sender)
        );
        _tokenIdHash[_tokenId] = hash;

        _safeMint(_to, _tokenId);

        emit Mint(_to, _tokenId, hash);
    }

    function mintOne(address _to) public payable {
        require(!_paused, "minting is paused");
        require(!_burned, "max supply reached");
        require(_to != address(0), "mint to the zero address");
        uint256 _totalSupply = totalSupply();
        require(_totalSupply < HARD_CAP, "mint would exceed totalSupply");
        require(SALE_PIRCE <= msg.value, "wrong amount sent");
        uint256 _tokenId = _totalSupply + 1;

        _mintOne(_to, _tokenId);
    }

    function mintMany(address _to, uint256 _amount) public payable {
        require(!_paused, "minting is paused");
        require(!_burned, "max supply reached");
        require(_amount <= MAX_MINT, "max mint 15");
        require(SALE_PIRCE * _amount <= msg.value, "wrong amount sent");
        _mintMany(_to, _amount);
    }

    function _mintMany(address _to, uint256 _amount) internal {
        require(_to != address(0), "mint to the zero address");
        uint256 _totalSupply = totalSupply();
        require(
            (_totalSupply + _amount) <= HARD_CAP,
            "mint would exceed totalSupply"
        );
        for (uint256 i = 0; i < _amount; i++) {
            uint256 _tokenId = _totalSupply + 1 + i;
            _mintOne(_to, _tokenId);
        }
    }

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

    function setPaused(bool _isPaused) public onlyOwner {
        _paused = _isPaused;
    }

    function updatePrice(uint256 _price) public onlyOwner {
        SALE_PIRCE = _price;
    }

    function burnUnsold() public onlyOwner {
        _burned = true;
    }

    function mintReserved(address _to, uint256 _amount) public onlyOwner {
        require(!_burned, "max supply reached");
        require(
            _amount <= _reservedTokens,
            "reserved token mint exceeds limit"
        );
        uint256 _totalSupply = totalSupply();
        require(
            (_totalSupply + _amount) <= HARD_CAP,
            "mint exceeds totalSupply"
        );
        _mintMany(_to, _amount);
        _reservedTokens = _reservedTokens - _amount;
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _tokenOwners.get(tokenId, "owner query for nonexistent token");
    }

    /**
     * @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), "URI query for nonexistent token");

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

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

    /**
     * @dev Returns the base URI set via {_setBaseURI}. This will be
     * automatically added as a prefix in {tokenURI} to each token's URI, or
     * to the token ID if no specific URI is set for that token ID.
     */
    function baseURI() public view returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = Sinart.ownerOf(tokenId);
        require(to != owner, "approval to current owner");
        address sender = _msgSender();
        require(
            sender == owner || Sinart.isApprovedForAll(owner, sender),
            "approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        address sender = _msgSender();

        require(
            _isApprovedOrOwner(sender, tokenId),
            "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),
            "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 _tokenOwners.contains(tokenId);
    }

    /**
     * @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), "operator query for nonexistent token");
        address owner = Sinart.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            Sinart.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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 {
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "transfer to non ERC721Receiver implementer"
        );
        _mint(to, tokenId);
    }

    /**
     * @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(!_exists(tokenId), "token already minted");
        _holderTokens[to].add(tokenId);
        _tokenOwners.set(tokenId, to);
        emit Transfer(address(0), to, 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(
            Sinart.ownerOf(tokenId) == from,
            "transfer of token that is not own"
        ); // internal owner
        require(to != address(0), "transfer to the zero address");

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function setBaseURI(string memory baseURI_) public onlyOwner {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(
            abi.encodeWithSelector(
                IERC721Receiver(to).onERC721Received.selector,
                _msgSender(),
                from,
                tokenId,
                _data
            ),
            "transfer to non ERC721Receiver implementer"
        );
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"uri_","type":"string"},{"internalType":"uint256","name":"hardCap_","type":"uint256"}],"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":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"hash","type":"bytes32"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnUnsold","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintMany","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintOne","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPaused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","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":"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 payable","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261271060025566f5232269808000600355600a60045560646005556001600660006101000a81548160ff0219169083151502179055506000600660016101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040516200473b3803806200473b833981810160405260808110156200008857600080fd5b8101908080516040519392919084640100000000821115620000a957600080fd5b83820191506020820185811115620000c057600080fd5b8251866001820283011164010000000082111715620000de57600080fd5b8083526020830192505050908051906020019080838360005b8381101562000114578082015181840152602081019050620000f7565b50505050905090810190601f168015620001425780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200016657600080fd5b838201915060208201858111156200017d57600080fd5b82518660018202830111640100000000821117156200019b57600080fd5b8083526020830192505050908051906020019080838360005b83811015620001d1578082015181840152602081019050620001b4565b50505050905090810190601f168015620001ff5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200022357600080fd5b838201915060208201858111156200023a57600080fd5b82518660018202830111640100000000821117156200025857600080fd5b8083526020830192505050908051906020019080838360005b838110156200028e57808201518184015260208101905062000271565b50505050905090810190601f168015620002bc5780820380516001836020036101000a031916815260200191505b50604052602001805190602001909291905050506000620002e26200043c60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620003986301ffc9a760e01b6200044460201b60201c565b83600d9080519060200190620003b09291906200054d565b5082600e9080519060200190620003c99291906200054d565b508160109080519060200190620003e29291906200054d565b5080600281905550620004026380ac58cd60e01b6200044460201b60201c565b6200041a635b5e139f60e01b6200044460201b60201c565b6200043263780e9d6360e01b6200044460201b60201c565b5050505062000603565b600033905090565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620004e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620005855760008555620005d1565b82601f10620005a057805160ff1916838001178555620005d1565b82800160010185558215620005d1579182015b82811115620005d0578251825591602001919060010190620005b3565b5b509050620005e09190620005e4565b5090565b5b80821115620005ff576000816000905550600101620005e5565b5090565b61412880620006136000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610c24578063e985e9c514610cd8578063f2fde38b14610d5f578063fa695a9714610db0576101c2565b806395d89b4114610a0e578063a22cb46514610a9e578063b52a585114610afb578063b88d4fde14610b12576101c2565b8063715018a6116100d1578063715018a6146109205780637de55fe1146109375780638d6cc56d146109925780638da5cb5b146109cd576101c2565b80636352211e146107c65780636c0360eb1461082b57806370a08231146108bb576101c2565b806323b872dd1161016457806342842e0e1161013e57806342842e0e146105e65780634f6ccce71461066157806355f804b3146106b05780635e83065614610778576101c2565b806323b872dd146104c15780632e1a7d4d1461053c5780632f745c5914610577576101c2565b8063095ea7b3116101a0578063095ea7b31461032c578063162094c41461038757806316c38b3c1461045957806318160ddd14610496576101c2565b806301ffc9a7146101c757806306fdde0314610237578063081812fc146102c7575b600080fd5b3480156101d357600080fd5b5061021f600480360360208110156101ea57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610df4565b60405180821515815260200191505060405180910390f35b34801561024357600080fd5b5061024c610e5c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028c578082015181840152602081019050610271565b50505050905090810190601f1680156102b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d357600080fd5b50610300600480360360208110156102ea57600080fd5b8101908080359060200190929190505050610efe565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561033857600080fd5b506103856004803603604081101561034f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f99565b005b34801561039357600080fd5b50610457600480360360408110156103aa57600080fd5b8101908080359060200190929190803590602001906401000000008111156103d157600080fd5b8201836020820111156103e357600080fd5b8035906020019184600183028401116401000000008311171561040557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506110f9565b005b34801561046557600080fd5b506104946004803603602081101561047c57600080fd5b8101908080351515906020019092919050505061124f565b005b3480156104a257600080fd5b506104ab61131b565b6040518082815260200191505060405180910390f35b3480156104cd57600080fd5b5061053a600480360360608110156104e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061132c565b005b34801561054857600080fd5b506105756004803603602081101561055f57600080fd5b81019080803590602001909291905050506113a8565b005b34801561058357600080fd5b506105d06004803603604081101561059a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114ae565b6040518082815260200191505060405180910390f35b3480156105f257600080fd5b5061065f6004803603606081101561060957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611509565b005b34801561066d57600080fd5b5061069a6004803603602081101561068457600080fd5b8101908080359060200190929190505050611529565b6040518082815260200191505060405180910390f35b3480156106bc57600080fd5b50610776600480360360208110156106d357600080fd5b81019080803590602001906401000000008111156106f057600080fd5b82018360208201111561070257600080fd5b8035906020019184600183028401116401000000008311171561072457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061154c565b005b6107c46004803603604081101561078e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611615565b005b3480156107d257600080fd5b506107ff600480360360208110156107e957600080fd5b810190808035906020019092919050505061181b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561083757600080fd5b50610840611852565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610880578082015181840152602081019050610865565b50505050905090810190601f1680156108ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108c757600080fd5b5061090a600480360360208110156108de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118f4565b6040518082815260200191505060405180910390f35b34801561092c57600080fd5b506109356119c9565b005b34801561094357600080fd5b506109906004803603604081101561095a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b36565b005b34801561099e57600080fd5b506109cb600480360360208110156109b557600080fd5b8101908080359060200190929190505050611d63565b005b3480156109d957600080fd5b506109e2611e1c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a1a57600080fd5b50610a23611e45565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a63578082015181840152602081019050610a48565b50505050905090810190601f168015610a905780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aaa57600080fd5b50610af960048036036040811015610ac157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611ee7565b005b348015610b0757600080fd5b50610b10612095565b005b348015610b1e57600080fd5b50610c2260048036036080811015610b3557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610b9c57600080fd5b820183602082011115610bae57600080fd5b80359060200191846001830284011164010000000083111715610bd057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612161565b005b348015610c3057600080fd5b50610c5d60048036036020811015610c4757600080fd5b81019080803590602001909291905050506121df565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c9d578082015181840152602081019050610c82565b50505050905090810190601f168015610cca5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ce457600080fd5b50610d4760048036036040811015610cfb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124cd565b60405180821515815260200191505060405180910390f35b348015610d6b57600080fd5b50610dae60048036036020811015610d8257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612561565b005b610df260048036036020811015610dc657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612753565b005b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ef45780601f10610ec957610100808354040283529160200191610ef4565b820191906000526020600020905b815481529060010190602001808311610ed757829003601f168201915b5050505050905090565b6000610f0982612a0e565b610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613f656024913960400191505060405180910390fd5b600b600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610fa48261181b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611048576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f617070726f76616c20746f2063757272656e74206f776e65720000000000000081525060200191505060405180910390fd5b6000611052612a2b565b90508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480611094575061109382826124cd565b5b6110e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613f356030913960400191505060405180910390fd5b6110f38484612a33565b50505050565b611101612a2b565b73ffffffffffffffffffffffffffffffffffffffff1661111f611e1c565b73ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6111b182612a0e565b611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f55524920736574206f66206e6f6e6578697374656e7420746f6b656e0000000081525060200191505060405180910390fd5b80600f6000848152602001908152602001600020908051906020019061124a929190613e67565b505050565b611257612a2b565b73ffffffffffffffffffffffffffffffffffffffff16611275611e1c565b73ffffffffffffffffffffffffffffffffffffffff16146112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660006101000a81548160ff02191690831515021790555050565b60006113276009612aec565b905090565b6000611336612a2b565b90506113428183612b01565b611397576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806140636029913960400191505060405180910390fd5b6113a2848484612bf5565b50505050565b6113b0612a2b565b73ffffffffffffffffffffffffffffffffffffffff166113ce611e1c565b73ffffffffffffffffffffffffffffffffffffffff1614611457576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611461611e1c565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156114a9573d6000803e3d6000fd5b505050565b600061150182600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e4a90919063ffffffff16565b905092915050565b61152483838360405180602001604052806000815250612161565b505050565b600080611540836009612e6490919063ffffffff16565b50905080915050919050565b611554612a2b565b73ffffffffffffffffffffffffffffffffffffffff16611572611e1c565b73ffffffffffffffffffffffffffffffffffffffff16146115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060109080519060200190611611929190613e67565b5050565b600660009054906101000a900460ff1615611698576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f6d696e74696e672069732070617573656400000000000000000000000000000081525060200191505060405180910390fd5b600660019054906101000a900460ff161561171b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6d617820737570706c792072656163686564000000000000000000000000000081525060200191505060405180910390fd5b600454811115611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f6d6178206d696e7420313500000000000000000000000000000000000000000081525060200191505060405180910390fd5b348160035402111561180d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f77726f6e6720616d6f756e742073656e7400000000000000000000000000000081525060200191505060405180910390fd5b6118178282612e90565b5050565b600061184b826040518060600160405280602181526020016140ae602191396009612fec9092919063ffffffff16565b9050919050565b606060108054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118ea5780601f106118bf576101008083540402835291602001916118ea565b820191906000526020600020905b8154815290600101906020018083116118cd57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561197b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613faf6022913960400191505060405180910390fd5b6119c2600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061300b565b9050919050565b6119d1612a2b565b73ffffffffffffffffffffffffffffffffffffffff166119ef611e1c565b73ffffffffffffffffffffffffffffffffffffffff1614611a78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611b3e612a2b565b73ffffffffffffffffffffffffffffffffffffffff16611b5c611e1c565b73ffffffffffffffffffffffffffffffffffffffff1614611be5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600660019054906101000a900460ff1615611c68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6d617820737570706c792072656163686564000000000000000000000000000081525060200191505060405180910390fd5b600554811115611cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613ff26021913960400191505060405180910390fd5b6000611ccd61131b565b90506002548282011115611d49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6d696e74206578636565647320746f74616c537570706c79000000000000000081525060200191505060405180910390fd5b611d538383612e90565b8160055403600581905550505050565b611d6b612a2b565b73ffffffffffffffffffffffffffffffffffffffff16611d89611e1c565b73ffffffffffffffffffffffffffffffffffffffff1614611e12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060038190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611edd5780601f10611eb257610100808354040283529160200191611edd565b820191906000526020600020905b815481529060010190602001808311611ec057829003601f168201915b5050505050905090565b6000611ef1612a2b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f95576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f617070726f766520746f2063616c6c657200000000000000000000000000000081525060200191505060405180910390fd5b81600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318460405180821515815260200191505060405180910390a3505050565b61209d612a2b565b73ffffffffffffffffffffffffffffffffffffffff166120bb611e1c565b73ffffffffffffffffffffffffffffffffffffffff1614612144576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660016101000a81548160ff021916908315150217905550565b600061216b612a2b565b90506121778184612b01565b6121cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806140636029913960400191505060405180910390fd5b6121d885858585613020565b5050505050565b60606121ea82612a0e565b61225c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0081525060200191505060405180910390fd5b6000600f60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156123055780601f106122da57610100808354040283529160200191612305565b820191906000526020600020905b8154815290600101906020018083116122e857829003601f168201915b505050505090506000612316611852565b905060008151141561232c5781925050506124c8565b6000825111156123fd5780826040516020018083805190602001908083835b6020831061236e578051825260208201915060208101905060208303925061234b565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106123bf578051825260208201915060208101905060208303925061239c565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050506124c8565b8061240785613092565b6040516020018083805190602001908083835b6020831061243d578051825260208201915060208101905060208303925061241a565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061248e578051825260208201915060208101905060208303925061246b565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612569612a2b565b73ffffffffffffffffffffffffffffffffffffffff16612587611e1c565b73ffffffffffffffffffffffffffffffffffffffff1614612610576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612696576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613f896026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660009054906101000a900460ff16156127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f6d696e74696e672069732070617573656400000000000000000000000000000081525060200191505060405180910390fd5b600660019054906101000a900460ff1615612859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6d617820737570706c792072656163686564000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6d696e7420746f20746865207a65726f2061646472657373000000000000000081525060200191505060405180910390fd5b600061290661131b565b9050600254811061297f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f6d696e7420776f756c642065786365656420746f74616c537570706c7900000081525060200191505060405180910390fd5b3460035411156129f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f77726f6e6720616d6f756e742073656e7400000000000000000000000000000081525060200191505060405180910390fd5b6000600182019050612a0983826131d9565b505050565b6000612a248260096132aa90919063ffffffff16565b9050919050565b600033905090565b81600b600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612aa68361181b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612afa826000016132c4565b9050919050565b6000612b0c82612a0e565b612b61576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806140cf6024913960400191505060405180910390fd5b6000612b6c8361181b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612bdb57508373ffffffffffffffffffffffffffffffffffffffff16612bc384610efe565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bec5750612beb81856124cd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c158261181b565b73ffffffffffffffffffffffffffffffffffffffff1614612c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613fd16021913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f7472616e7366657220746f20746865207a65726f20616464726573730000000081525060200191505060405180910390fd5b612d2f600082612a33565b612d8081600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206132d590919063ffffffff16565b50612dd281600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206132ef90919063ffffffff16565b50612de9818360096133099092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612e59836000018361333e565b60001c905092915050565b600080600080612e7786600001866133c1565b915091508160001c8160001c9350935050509250929050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6d696e7420746f20746865207a65726f2061646472657373000000000000000081525060200191505060405180910390fd5b6000612f3d61131b565b90506002548282011115612fb9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f6d696e7420776f756c642065786365656420746f74616c537570706c7900000081525060200191505060405180910390fd5b60005b82811015612fe65760008160018401019050612fd885826131d9565b508080600101915050612fbc565b50505050565b6000612fff846000018460001b8461345a565b60001c90509392505050565b600061301982600001613550565b9050919050565b61302b848484612bf5565b61303784848484613561565b61308c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614039602a913960400191505060405180910390fd5b50505050565b606060008214156130da576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131d4565b600082905060005b60008214613104578080600101915050600a82816130fc57fe5b0491506130e2565b60008167ffffffffffffffff8111801561311d57600080fd5b506040519080825280601f01601f1916602001820160405280156131505781602001600182028036833780820191505090505b50905060006001830390508593505b600084146131cc57600a848161317157fe5b0660300160f81b8282806001900393508151811061318b57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816131c457fe5b04935061315f565b819450505050505b919050565b6000814333604051602001808481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1660601b8152601401935050505060405160208183030381529060405280519060200120905080600760008481526020019081526020016000208190555061324f838361377a565b8273ffffffffffffffffffffffffffffffffffffffff167f3dec94b8abc8f801eaade1616d3aadd3114b556a284267905e0a053b2df398928383604051808381526020018281526020019250505060405180910390a2505050565b60006132bc836000018360001b613798565b905092915050565b600081600001805490509050919050565b60006132e7836000018360001b6137bb565b905092915050565b6000613301836000018360001b6138a3565b905092915050565b6000613335846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613913565b90509392505050565b60008183600001805490501161339f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613f136022913960400191505060405180910390fd5b8260000182815481106133ae57fe5b9060005260206000200154905092915050565b60008082846000018054905011613423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061408c6022913960400191505060405180910390fd5b600084600001848154811061343457fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390613521576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134e65780820151818401526020810190506134cb565b50505050905090810190601f1680156135135780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061353457fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006135828473ffffffffffffffffffffffffffffffffffffffff166139ef565b61358f5760019050613772565b60006136f963150b7a0260e01b6135a4612a2b565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561362857808201518184015260208101905061360d565b50505050905090810190601f1680156136555780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280602a8152602001614039602a91398773ffffffffffffffffffffffffffffffffffffffff16613a029092919063ffffffff16565b9050600081806020019051602081101561371257600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b613794828260405180602001604052806000815250613a1a565b5050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114613897576000600182039050600060018660000180549050039050600086600001828154811061380657fe5b906000526020600020015490508087600001848154811061382357fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061385b57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061389d565b60009150505b92915050565b60006138af8383613a8b565b61390857826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061390d565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156139ba578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506139e8565b828560000160018303815481106139cd57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b6060613a118484600085613aae565b90509392505050565b613a276000848484613561565b613a7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614039602a913960400191505060405180910390fd5b613a868383613c56565b505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613b09576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806140136026913960400191505060405180910390fd5b613b12856139ef565b613b84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613bd35780518252602082019150602081019050602083039250613bb0565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613c35576040519150601f19603f3d011682016040523d82523d6000602084013e613c3a565b606091505b5091509150613c4a828286613d9b565b92505050949350505050565b613c5f81612a0e565b15613cd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f746f6b656e20616c7265616479206d696e74656400000000000000000000000081525060200191505060405180910390fd5b613d2381600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206132ef90919063ffffffff16565b50613d3a818360096133099092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60608315613dab57829050613e60565b600083511115613dbe5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613e25578082015181840152602081019050613e0a565b50505050905090810190601f168015613e525780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613e9d5760008555613ee4565b82601f10613eb657805160ff1916838001178555613ee4565b82800160010185558215613ee4579182015b82811115613ee3578251825591602001919060010190613ec8565b5b509050613ef19190613ef5565b5090565b5b80821115613f0e576000816000905550600101613ef6565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737362616c616e636520717565727920666f7220746865207a65726f20616464726573737472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e726573657276656420746f6b656e206d696e742065786365656473206c696d6974416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c7472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465727472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64736f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e6f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220df3e8c019626d98222fe0e1c0a2260e4dd779f18433d2e419109a288643a41f664736f6c63430007060033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000653696e617274000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025341000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f73696e6172742d70726f642e6865726f6b756170702e636f6d2f617474726962757465732f00000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636352211e116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610c24578063e985e9c514610cd8578063f2fde38b14610d5f578063fa695a9714610db0576101c2565b806395d89b4114610a0e578063a22cb46514610a9e578063b52a585114610afb578063b88d4fde14610b12576101c2565b8063715018a6116100d1578063715018a6146109205780637de55fe1146109375780638d6cc56d146109925780638da5cb5b146109cd576101c2565b80636352211e146107c65780636c0360eb1461082b57806370a08231146108bb576101c2565b806323b872dd1161016457806342842e0e1161013e57806342842e0e146105e65780634f6ccce71461066157806355f804b3146106b05780635e83065614610778576101c2565b806323b872dd146104c15780632e1a7d4d1461053c5780632f745c5914610577576101c2565b8063095ea7b3116101a0578063095ea7b31461032c578063162094c41461038757806316c38b3c1461045957806318160ddd14610496576101c2565b806301ffc9a7146101c757806306fdde0314610237578063081812fc146102c7575b600080fd5b3480156101d357600080fd5b5061021f600480360360208110156101ea57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610df4565b60405180821515815260200191505060405180910390f35b34801561024357600080fd5b5061024c610e5c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561028c578082015181840152602081019050610271565b50505050905090810190601f1680156102b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d357600080fd5b50610300600480360360208110156102ea57600080fd5b8101908080359060200190929190505050610efe565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561033857600080fd5b506103856004803603604081101561034f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f99565b005b34801561039357600080fd5b50610457600480360360408110156103aa57600080fd5b8101908080359060200190929190803590602001906401000000008111156103d157600080fd5b8201836020820111156103e357600080fd5b8035906020019184600183028401116401000000008311171561040557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506110f9565b005b34801561046557600080fd5b506104946004803603602081101561047c57600080fd5b8101908080351515906020019092919050505061124f565b005b3480156104a257600080fd5b506104ab61131b565b6040518082815260200191505060405180910390f35b3480156104cd57600080fd5b5061053a600480360360608110156104e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061132c565b005b34801561054857600080fd5b506105756004803603602081101561055f57600080fd5b81019080803590602001909291905050506113a8565b005b34801561058357600080fd5b506105d06004803603604081101561059a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114ae565b6040518082815260200191505060405180910390f35b3480156105f257600080fd5b5061065f6004803603606081101561060957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611509565b005b34801561066d57600080fd5b5061069a6004803603602081101561068457600080fd5b8101908080359060200190929190505050611529565b6040518082815260200191505060405180910390f35b3480156106bc57600080fd5b50610776600480360360208110156106d357600080fd5b81019080803590602001906401000000008111156106f057600080fd5b82018360208201111561070257600080fd5b8035906020019184600183028401116401000000008311171561072457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061154c565b005b6107c46004803603604081101561078e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611615565b005b3480156107d257600080fd5b506107ff600480360360208110156107e957600080fd5b810190808035906020019092919050505061181b565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561083757600080fd5b50610840611852565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610880578082015181840152602081019050610865565b50505050905090810190601f1680156108ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108c757600080fd5b5061090a600480360360208110156108de57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118f4565b6040518082815260200191505060405180910390f35b34801561092c57600080fd5b506109356119c9565b005b34801561094357600080fd5b506109906004803603604081101561095a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b36565b005b34801561099e57600080fd5b506109cb600480360360208110156109b557600080fd5b8101908080359060200190929190505050611d63565b005b3480156109d957600080fd5b506109e2611e1c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a1a57600080fd5b50610a23611e45565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a63578082015181840152602081019050610a48565b50505050905090810190601f168015610a905780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610aaa57600080fd5b50610af960048036036040811015610ac157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611ee7565b005b348015610b0757600080fd5b50610b10612095565b005b348015610b1e57600080fd5b50610c2260048036036080811015610b3557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610b9c57600080fd5b820183602082011115610bae57600080fd5b80359060200191846001830284011164010000000083111715610bd057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612161565b005b348015610c3057600080fd5b50610c5d60048036036020811015610c4757600080fd5b81019080803590602001909291905050506121df565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c9d578082015181840152602081019050610c82565b50505050905090810190601f168015610cca5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ce457600080fd5b50610d4760048036036040811015610cfb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124cd565b60405180821515815260200191505060405180910390f35b348015610d6b57600080fd5b50610dae60048036036020811015610d8257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612561565b005b610df260048036036020811015610dc657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612753565b005b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b6060600d8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ef45780601f10610ec957610100808354040283529160200191610ef4565b820191906000526020600020905b815481529060010190602001808311610ed757829003601f168201915b5050505050905090565b6000610f0982612a0e565b610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613f656024913960400191505060405180910390fd5b600b600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610fa48261181b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611048576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f617070726f76616c20746f2063757272656e74206f776e65720000000000000081525060200191505060405180910390fd5b6000611052612a2b565b90508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161480611094575061109382826124cd565b5b6110e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613f356030913960400191505060405180910390fd5b6110f38484612a33565b50505050565b611101612a2b565b73ffffffffffffffffffffffffffffffffffffffff1661111f611e1c565b73ffffffffffffffffffffffffffffffffffffffff16146111a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6111b182612a0e565b611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f55524920736574206f66206e6f6e6578697374656e7420746f6b656e0000000081525060200191505060405180910390fd5b80600f6000848152602001908152602001600020908051906020019061124a929190613e67565b505050565b611257612a2b565b73ffffffffffffffffffffffffffffffffffffffff16611275611e1c565b73ffffffffffffffffffffffffffffffffffffffff16146112fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600660006101000a81548160ff02191690831515021790555050565b60006113276009612aec565b905090565b6000611336612a2b565b90506113428183612b01565b611397576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806140636029913960400191505060405180910390fd5b6113a2848484612bf5565b50505050565b6113b0612a2b565b73ffffffffffffffffffffffffffffffffffffffff166113ce611e1c565b73ffffffffffffffffffffffffffffffffffffffff1614611457576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000611461611e1c565b90508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156114a9573d6000803e3d6000fd5b505050565b600061150182600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612e4a90919063ffffffff16565b905092915050565b61152483838360405180602001604052806000815250612161565b505050565b600080611540836009612e6490919063ffffffff16565b50905080915050919050565b611554612a2b565b73ffffffffffffffffffffffffffffffffffffffff16611572611e1c565b73ffffffffffffffffffffffffffffffffffffffff16146115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060109080519060200190611611929190613e67565b5050565b600660009054906101000a900460ff1615611698576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f6d696e74696e672069732070617573656400000000000000000000000000000081525060200191505060405180910390fd5b600660019054906101000a900460ff161561171b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6d617820737570706c792072656163686564000000000000000000000000000081525060200191505060405180910390fd5b600454811115611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f6d6178206d696e7420313500000000000000000000000000000000000000000081525060200191505060405180910390fd5b348160035402111561180d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f77726f6e6720616d6f756e742073656e7400000000000000000000000000000081525060200191505060405180910390fd5b6118178282612e90565b5050565b600061184b826040518060600160405280602181526020016140ae602191396009612fec9092919063ffffffff16565b9050919050565b606060108054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118ea5780601f106118bf576101008083540402835291602001916118ea565b820191906000526020600020905b8154815290600101906020018083116118cd57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561197b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613faf6022913960400191505060405180910390fd5b6119c2600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061300b565b9050919050565b6119d1612a2b565b73ffffffffffffffffffffffffffffffffffffffff166119ef611e1c565b73ffffffffffffffffffffffffffffffffffffffff1614611a78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611b3e612a2b565b73ffffffffffffffffffffffffffffffffffffffff16611b5c611e1c565b73ffffffffffffffffffffffffffffffffffffffff1614611be5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600660019054906101000a900460ff1615611c68576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6d617820737570706c792072656163686564000000000000000000000000000081525060200191505060405180910390fd5b600554811115611cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613ff26021913960400191505060405180910390fd5b6000611ccd61131b565b90506002548282011115611d49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6d696e74206578636565647320746f74616c537570706c79000000000000000081525060200191505060405180910390fd5b611d538383612e90565b8160055403600581905550505050565b611d6b612a2b565b73ffffffffffffffffffffffffffffffffffffffff16611d89611e1c565b73ffffffffffffffffffffffffffffffffffffffff1614611e12576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060038190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611edd5780601f10611eb257610100808354040283529160200191611edd565b820191906000526020600020905b815481529060010190602001808311611ec057829003601f168201915b5050505050905090565b6000611ef1612a2b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f95576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f617070726f766520746f2063616c6c657200000000000000000000000000000081525060200191505060405180910390fd5b81600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318460405180821515815260200191505060405180910390a3505050565b61209d612a2b565b73ffffffffffffffffffffffffffffffffffffffff166120bb611e1c565b73ffffffffffffffffffffffffffffffffffffffff1614612144576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660016101000a81548160ff021916908315150217905550565b600061216b612a2b565b90506121778184612b01565b6121cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806140636029913960400191505060405180910390fd5b6121d885858585613020565b5050505050565b60606121ea82612a0e565b61225c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0081525060200191505060405180910390fd5b6000600f60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156123055780601f106122da57610100808354040283529160200191612305565b820191906000526020600020905b8154815290600101906020018083116122e857829003601f168201915b505050505090506000612316611852565b905060008151141561232c5781925050506124c8565b6000825111156123fd5780826040516020018083805190602001908083835b6020831061236e578051825260208201915060208101905060208303925061234b565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106123bf578051825260208201915060208101905060208303925061239c565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050506124c8565b8061240785613092565b6040516020018083805190602001908083835b6020831061243d578051825260208201915060208101905060208303925061241a565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b6020831061248e578051825260208201915060208101905060208303925061246b565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612569612a2b565b73ffffffffffffffffffffffffffffffffffffffff16612587611e1c565b73ffffffffffffffffffffffffffffffffffffffff1614612610576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612696576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613f896026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660009054906101000a900460ff16156127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f6d696e74696e672069732070617573656400000000000000000000000000000081525060200191505060405180910390fd5b600660019054906101000a900460ff1615612859576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6d617820737570706c792072656163686564000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156128fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6d696e7420746f20746865207a65726f2061646472657373000000000000000081525060200191505060405180910390fd5b600061290661131b565b9050600254811061297f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f6d696e7420776f756c642065786365656420746f74616c537570706c7900000081525060200191505060405180910390fd5b3460035411156129f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f77726f6e6720616d6f756e742073656e7400000000000000000000000000000081525060200191505060405180910390fd5b6000600182019050612a0983826131d9565b505050565b6000612a248260096132aa90919063ffffffff16565b9050919050565b600033905090565b81600b600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612aa68361181b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612afa826000016132c4565b9050919050565b6000612b0c82612a0e565b612b61576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806140cf6024913960400191505060405180910390fd5b6000612b6c8361181b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612bdb57508373ffffffffffffffffffffffffffffffffffffffff16612bc384610efe565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bec5750612beb81856124cd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c158261181b565b73ffffffffffffffffffffffffffffffffffffffff1614612c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613fd16021913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f7472616e7366657220746f20746865207a65726f20616464726573730000000081525060200191505060405180910390fd5b612d2f600082612a33565b612d8081600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206132d590919063ffffffff16565b50612dd281600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206132ef90919063ffffffff16565b50612de9818360096133099092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612e59836000018361333e565b60001c905092915050565b600080600080612e7786600001866133c1565b915091508160001c8160001c9350935050509250929050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6d696e7420746f20746865207a65726f2061646472657373000000000000000081525060200191505060405180910390fd5b6000612f3d61131b565b90506002548282011115612fb9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f6d696e7420776f756c642065786365656420746f74616c537570706c7900000081525060200191505060405180910390fd5b60005b82811015612fe65760008160018401019050612fd885826131d9565b508080600101915050612fbc565b50505050565b6000612fff846000018460001b8461345a565b60001c90509392505050565b600061301982600001613550565b9050919050565b61302b848484612bf5565b61303784848484613561565b61308c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614039602a913960400191505060405180910390fd5b50505050565b606060008214156130da576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131d4565b600082905060005b60008214613104578080600101915050600a82816130fc57fe5b0491506130e2565b60008167ffffffffffffffff8111801561311d57600080fd5b506040519080825280601f01601f1916602001820160405280156131505781602001600182028036833780820191505090505b50905060006001830390508593505b600084146131cc57600a848161317157fe5b0660300160f81b8282806001900393508151811061318b57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816131c457fe5b04935061315f565b819450505050505b919050565b6000814333604051602001808481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1660601b8152601401935050505060405160208183030381529060405280519060200120905080600760008481526020019081526020016000208190555061324f838361377a565b8273ffffffffffffffffffffffffffffffffffffffff167f3dec94b8abc8f801eaade1616d3aadd3114b556a284267905e0a053b2df398928383604051808381526020018281526020019250505060405180910390a2505050565b60006132bc836000018360001b613798565b905092915050565b600081600001805490509050919050565b60006132e7836000018360001b6137bb565b905092915050565b6000613301836000018360001b6138a3565b905092915050565b6000613335846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b613913565b90509392505050565b60008183600001805490501161339f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613f136022913960400191505060405180910390fd5b8260000182815481106133ae57fe5b9060005260206000200154905092915050565b60008082846000018054905011613423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061408c6022913960400191505060405180910390fd5b600084600001848154811061343457fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390613521576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156134e65780820151818401526020810190506134cb565b50505050905090810190601f1680156135135780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061353457fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006135828473ffffffffffffffffffffffffffffffffffffffff166139ef565b61358f5760019050613772565b60006136f963150b7a0260e01b6135a4612a2b565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561362857808201518184015260208101905061360d565b50505050905090810190601f1680156136555780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040518060600160405280602a8152602001614039602a91398773ffffffffffffffffffffffffffffffffffffffff16613a029092919063ffffffff16565b9050600081806020019051602081101561371257600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b613794828260405180602001604052806000815250613a1a565b5050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114613897576000600182039050600060018660000180549050039050600086600001828154811061380657fe5b906000526020600020015490508087600001848154811061382357fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061385b57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061389d565b60009150505b92915050565b60006138af8383613a8b565b61390857826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061390d565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156139ba578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506139e8565b828560000160018303815481106139cd57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b6060613a118484600085613aae565b90509392505050565b613a276000848484613561565b613a7c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614039602a913960400191505060405180910390fd5b613a868383613c56565b505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613b09576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806140136026913960400191505060405180910390fd5b613b12856139ef565b613b84576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613bd35780518252602082019150602081019050602083039250613bb0565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613c35576040519150601f19603f3d011682016040523d82523d6000602084013e613c3a565b606091505b5091509150613c4a828286613d9b565b92505050949350505050565b613c5f81612a0e565b15613cd2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f746f6b656e20616c7265616479206d696e74656400000000000000000000000081525060200191505060405180910390fd5b613d2381600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206132ef90919063ffffffff16565b50613d3a818360096133099092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60608315613dab57829050613e60565b600083511115613dbe5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613e25578082015181840152602081019050613e0a565b50505050905090810190601f168015613e525780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613e9d5760008555613ee4565b82601f10613eb657805160ff1916838001178555613ee4565b82800160010185558215613ee4579182015b82811115613ee3578251825591602001919060010190613ec8565b5b509050613ef19190613ef5565b5090565b5b80821115613f0e576000816000905550600101613ef6565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e6473617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737362616c616e636520717565727920666f7220746865207a65726f20616464726573737472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e726573657276656420746f6b656e206d696e742065786365656473206c696d6974416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c7472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465727472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64736f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e6f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220df3e8c019626d98222fe0e1c0a2260e4dd779f18433d2e419109a288643a41f664736f6c63430007060033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000653696e617274000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025341000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f73696e6172742d70726f642e6865726f6b756170702e636f6d2f617474726962757465732f00000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Sinart
Arg [1] : symbol_ (string): SA
Arg [2] : uri_ (string): https://sinart-prod.herokuapp.com/attributes/
Arg [3] : hardCap_ (uint256): 10000

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 53696e6172740000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 5341000000000000000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [9] : 68747470733a2f2f73696e6172742d70726f642e6865726f6b756170702e636f
Arg [10] : 6d2f617474726962757465732f00000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50592:19147:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8809:200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;57694:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60618:246;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;60132:420;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;67624:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56354:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59568:203;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;61595:394;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56212:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59280:212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;62060:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59848:222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;68075:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55408:332;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;57466:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;59107:89;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57199:205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49961:148;;;;;;;;;;;;;:::i;:::-;;56632:503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56452:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49302:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;57863:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60936:324;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56552:72;;;;;;;;;;;;;:::i;:::-;;62308:385;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58038:826;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61331:197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50264:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54914:486;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;8809:200;8939:4;8968:20;:33;8989:11;8968:33;;;;;;;;;;;;;;;;;;;;;;;;;;;8961:40;;8809:200;;;:::o;57694:100::-;57748:13;57781:5;57774:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57694:100;:::o;60618:246::-;60722:7;60755:16;60763:7;60755;:16::i;:::-;60747:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60832:15;:24;60848:7;60832:24;;;;;;;;;;;;;;;;;;;;;60825:31;;60618:246;;;:::o;60132:420::-;60205:13;60221:23;60236:7;60221:14;:23::i;:::-;60205:39;;60269:5;60263:11;;:2;:11;;;;60255:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60315:14;60332:12;:10;:12::i;:::-;60315:29;;60387:5;60377:15;;:6;:15;;;:57;;;;60396:38;60420:5;60427:6;60396:23;:38::i;:::-;60377:57;60355:155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60523:21;60532:2;60536:7;60523:8;:21::i;:::-;60132:420;;;;:::o;67624:221::-;49541:12;:10;:12::i;:::-;49530:23;;:7;:5;:7::i;:::-;:23;;;49522:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67746:16:::1;67754:7;67746;:16::i;:::-;67738:57;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;67828:9;67806:10;:19;67817:7;67806:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;67624:221:::0;;:::o;56354:90::-;49541:12;:10;:12::i;:::-;49530:23;;:7;:5;:7::i;:::-;:23;;;49522:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56427:9:::1;56417:7;;:19;;;;;;;;;;;;;;;;;;56354:90:::0;:::o;59568:203::-;59621:7;59742:21;:12;:19;:21::i;:::-;59735:28;;59568:203;:::o;61595:394::-;61774:14;61791:12;:10;:12::i;:::-;61774:29;;61836:35;61855:6;61863:7;61836:18;:35::i;:::-;61814:126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61953:28;61963:4;61969:2;61973:7;61953:9;:28::i;:::-;61595:394;;;;:::o;56212:134::-;49541:12;:10;:12::i;:::-;49530:23;;:7;:5;:7::i;:::-;:23;;;49522:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56273:22:::1;56298:7;:5;:7::i;:::-;56273:32;;56316:6;:15;;:22;56332:5;56316:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;49601:1;56212:134:::0;:::o;59280:212::-;59422:7;59454:30;59478:5;59454:13;:20;59468:5;59454:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;59447:37;;59280:212;;;;:::o;62060:177::-;62190:39;62207:4;62213:2;62217:7;62190:39;;;;;;;;;;;;:16;:39::i;:::-;62060:177;;;:::o;59848:222::-;59968:7;59994:15;60015:22;60031:5;60015:12;:15;;:22;;;;:::i;:::-;59993:44;;;60055:7;60048:14;;;59848:222;;;:::o;68075:99::-;49541:12;:10;:12::i;:::-;49530:23;;:7;:5;:7::i;:::-;:23;;;49522:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68158:8:::1;68147;:19;;;;;;;;;;;;:::i;:::-;;68075:99:::0;:::o;55408:332::-;55491:7;;;;;;;;;;;55490:8;55482:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55540:7;;;;;;;;;;;55539:8;55531:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55600:8;;55589:7;:19;;55581:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55667:9;55656:7;55643:10;;:20;:33;;55635:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55709:23;55719:3;55724:7;55709:9;:23::i;:::-;55408:332;;:::o;57466:161::-;57530:7;57557:62;57574:7;57557:62;;;;;;;;;;;;;;;;;:12;:16;;:62;;;;;:::i;:::-;57550:69;;57466:161;;;:::o;59107:89::-;59147:13;59180:8;59173:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59107:89;:::o;57199:205::-;57263:7;57308:1;57291:19;;:5;:19;;;;57283:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57367:29;:13;:20;57381:5;57367:20;;;;;;;;;;;;;;;:27;:29::i;:::-;57360:36;;57199:205;;;:::o;49961:148::-;49541:12;:10;:12::i;:::-;49530:23;;:7;:5;:7::i;:::-;:23;;;49522:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50068:1:::1;50031:40;;50052:6;::::0;::::1;;;;;;;;50031:40;;;;;;;;;;;;50099:1;50082:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;49961:148::o:0;56632:503::-;49541:12;:10;:12::i;:::-;49530:23;;:7;:5;:7::i;:::-;:23;;;49522:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56721:7:::1;;;;;;;;;;;56720:8;56712:39;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;56795:15;;56784:7;:26;;56762:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56882:20;56905:13;:11;:13::i;:::-;56882:36;;56979:8;;56967:7;56952:12;:22;56951:36;;56929:110;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;57050:23;57060:3;57065:7;57050:9;:23::i;:::-;57120:7;57102:15;;:25;57084:15;:43;;;;49601:1;56632:503:::0;;:::o;56452:92::-;49541:12;:10;:12::i;:::-;49530:23;;:7;:5;:7::i;:::-;:23;;;49522:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56530:6:::1;56517:10;:19;;;;56452:92:::0;:::o;49302:95::-;49348:15;49383:6;;;;;;;;;;;49376:13;;49302:95;:::o;57863:104::-;57919:13;57952:7;57945:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57863:104;:::o;60936:324::-;61046:14;61063:12;:10;:12::i;:::-;61046:29;;61106:6;61094:18;;:8;:18;;;;61086:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61186:8;61147:18;:26;61166:6;61147:26;;;;;;;;;;;;;;;:36;61174:8;61147:36;;;;;;;;;;;;;;;;:47;;;;;;;;;;;;;;;;;;61233:8;61210:42;;61225:6;61210:42;;;61243:8;61210:42;;;;;;;;;;;;;;;;;;;;60936:324;;;:::o;56552:72::-;49541:12;:10;:12::i;:::-;49530:23;;:7;:5;:7::i;:::-;:23;;;49522:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56612:4:::1;56602:7;;:14;;;;;;;;;;;;;;;;;;56552:72::o:0;62308:385::-;62467:14;62484:12;:10;:12::i;:::-;62467:29;;62531:35;62550:6;62558:7;62531:18;:35::i;:::-;62509:126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62646:39;62660:4;62666:2;62670:7;62679:5;62646:13;:39::i;:::-;62308:385;;;;;:::o;58038:826::-;58156:13;58195:16;58203:7;58195;:16::i;:::-;58187:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58260:23;58286:10;:19;58297:7;58286:19;;;;;;;;;;;58260:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58316:18;58337:9;:7;:9::i;:::-;58316:30;;58444:1;58428:4;58422:18;:23;58418:72;;;58469:9;58462:16;;;;;;58418:72;58620:1;58600:9;58594:23;:27;58590:108;;;58669:4;58675:9;58652:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58638:48;;;;;;58590:108;58830:4;58836:18;:7;:16;:18::i;:::-;58813:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58799:57;;;;58038:826;;;;:::o;61331:197::-;61456:4;61485:18;:25;61504:5;61485:25;;;;;;;;;;;;;;;:35;61511:8;61485:35;;;;;;;;;;;;;;;;;;;;;;;;;61478:42;;61331:197;;;;:::o;50264:321::-;49541:12;:10;:12::i;:::-;49530:23;;:7;:5;:7::i;:::-;:23;;;49522:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50427:1:::1;50407:22;;:8;:22;;;;50385:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50540:8;50511:38;;50532:6;::::0;::::1;;;;;;;;50511:38;;;;;;;;;;;;50569:8;50560:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;50264:321:::0;:::o;54914:486::-;54979:7;;;;;;;;;;;54978:8;54970:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55028:7;;;;;;;;;;;55027:8;55019:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55092:1;55077:17;;:3;:17;;;;55069:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55134:20;55157:13;:11;:13::i;:::-;55134:36;;55204:8;;55189:12;:23;55181:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55279:9;55265:10;;:23;;55257:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55321:16;55355:1;55340:12;:16;55321:35;;55369:23;55378:3;55383:8;55369;:23::i;:::-;54914:486;;;:::o;64232:127::-;64297:4;64321:30;64343:7;64321:12;:21;;:30;;;;:::i;:::-;64314:37;;64232:127;;;:::o;47891:106::-;47944:15;47979:10;47972:17;;47891:106;:::o;69544:192::-;69646:2;69619:15;:24;69635:7;69619:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;69702:7;69698:2;69664:46;;69673:23;69688:7;69673:14;:23::i;:::-;69664:46;;;;;;;;;;;;69544:192;;:::o;44258:155::-;44354:7;44386:19;44394:3;:10;;44386:7;:19::i;:::-;44379:26;;44258:155;;;:::o;64526:414::-;64655:4;64685:16;64693:7;64685;:16::i;:::-;64677:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64753:13;64769:23;64784:7;64769:14;:23::i;:::-;64753:39;;64822:5;64811:16;;:7;:16;;;:64;;;;64868:7;64844:31;;:20;64856:7;64844:11;:20::i;:::-;:31;;;64811:64;:120;;;;64892:39;64916:5;64923:7;64892:23;:39::i;:::-;64811:120;64803:129;;;64526:414;;;;:::o;66866:602::-;67039:4;67012:31;;:23;67027:7;67012:14;:23::i;:::-;:31;;;66990:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67155:1;67141:16;;:2;:16;;;;67133:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67255:29;67272:1;67276:7;67255:8;:29::i;:::-;67297:35;67324:7;67297:13;:19;67311:4;67297:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;67343:30;67365:7;67343:13;:17;67357:2;67343:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;67386:29;67403:7;67412:2;67386:12;:16;;:29;;;;;:::i;:::-;;67452:7;67448:2;67433:27;;67442:4;67433:27;;;;;;;;;;;;66866:602;;;:::o;35795:169::-;35893:7;35933:22;35937:3;:10;;35949:5;35933:3;:22::i;:::-;35925:31;;35918:38;;35795:169;;;;:::o;44761:268::-;44868:7;44877;44903:11;44916:13;44933:22;44937:3;:10;;44949:5;44933:3;:22::i;:::-;44902:53;;;;44982:3;44974:12;;45012:5;45004:14;;44966:55;;;;;;44761:268;;;;;:::o;55748:456::-;55840:1;55825:17;;:3;:17;;;;55817:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55882:20;55905:13;:11;:13::i;:::-;55882:36;;55979:8;;55967:7;55952:12;:22;55951:36;;55929:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56060:9;56055:142;56079:7;56075:1;:11;56055:142;;;56108:16;56146:1;56142;56127:12;:16;:20;56108:39;;56162:23;56171:3;56176:8;56162;:23::i;:::-;56055:142;56088:3;;;;;;;56055:142;;;;55748:456;;;:::o;46143:292::-;46284:7;46366:44;46371:3;:10;;46391:3;46383:12;;46397;46366:4;:44::i;:::-;46358:53;;46304:123;;46143:292;;;;;:::o;35327:114::-;35387:7;35414:19;35422:3;:10;;35414:7;:19::i;:::-;35407:26;;35327:114;;;:::o;63575:344::-;63732:28;63742:4;63748:2;63752:7;63732:9;:28::i;:::-;63793:48;63816:4;63822:2;63826:7;63835:5;63793:22;:48::i;:::-;63771:140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63575:344;;;;:::o;46593:748::-;46649:13;46879:1;46870:5;:10;46866:53;;;46897:10;;;;;;;;;;;;;;;;;;;;;46866:53;46929:12;46944:5;46929:20;;46960:14;46985:78;47000:1;46992:4;:9;46985:78;;47018:8;;;;;;;47049:2;47041:10;;;;;;;;;46985:78;;;47073:19;47105:6;47095:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47073:39;;47123:13;47148:1;47139:6;:10;47123:26;;47167:5;47160:12;;47183:119;47198:1;47190:4;:9;47183:119;;47260:2;47253:4;:9;;;;;;47247:2;:16;47234:31;;47216:6;47223:7;;;;;;;47216:15;;;;;;;;;;;:49;;;;;;;;;;;47288:2;47280:10;;;;;;;;;47183:119;;;47326:6;47312:21;;;;;;46593:748;;;;:::o;54607:299::-;54676:12;54732:8;54742:12;54756:10;54715:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54691:87;;;;;;54676:102;;54814:4;54789:12;:22;54802:8;54789:22;;;;;;;;;;;:29;;;;54831:24;54841:3;54846:8;54831:9;:24::i;:::-;54878:3;54873:25;;;54883:8;54893:4;54873:25;;;;;;;;;;;;;;;;;;;;;;;;54607:299;;;:::o;43987:183::-;44098:4;44127:35;44137:3;:10;;44157:3;44149:12;;44127:9;:35::i;:::-;44120:42;;43987:183;;;;:::o;40603:110::-;40659:7;40686:3;:12;;:19;;;;40679:26;;40603:110;;;:::o;34817:160::-;34905:4;34934:35;34942:3;:10;;34962:5;34954:14;;34934:7;:35::i;:::-;34927:42;;34817:160;;;;:::o;34510:131::-;34577:4;34601:32;34606:3;:10;;34626:5;34618:14;;34601:4;:32::i;:::-;34594:39;;34510:131;;;;:::o;43353:219::-;43476:4;43500:64;43505:3;:10;;43525:3;43517:12;;43555:5;43539:23;;43531:32;;43500:4;:64::i;:::-;43493:71;;43353:219;;;;;:::o;30461:273::-;30555:7;30623:5;30602:3;:11;;:18;;;;:26;30580:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30708:3;:11;;30720:5;30708:18;;;;;;;;;;;;;;;;30701:25;;30461:273;;;;:::o;41078:348::-;41172:7;41181;41250:5;41228:3;:12;;:19;;;;:27;41206:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41330:22;41355:3;:12;;41368:5;41355:19;;;;;;;;;;;;;;;;;;41330:44;;41393:5;:10;;;41405:5;:12;;;41385:33;;;;;41078:348;;;;;:::o;42676:353::-;42804:7;42824:16;42843:3;:12;;:17;42856:3;42843:17;;;;;;;;;;;;42824:36;;42891:1;42879:8;:13;;42894:12;42871:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42961:3;:12;;42985:1;42974:8;:12;42961:26;;;;;;;;;;;;;;;;;;:33;;;42954:40;;;42676:353;;;;;:::o;29998:109::-;30054:7;30081:3;:11;;:18;;;;30074:25;;29998:109;;;:::o;68739:686::-;68894:4;68916:15;:2;:13;;;:15::i;:::-;68911:60;;68955:4;68948:11;;;;68911:60;68981:23;69007:305;69078:45;;;69142:12;:10;:12::i;:::-;69173:4;69196:7;69222:5;69037:205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69007:305;;;;;;;;;;;;;;;;;:2;:15;;;;:305;;;;;:::i;:::-;68981:331;;69323:13;69350:10;69339:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69323:48;;51531:10;69400:16;;69390:26;;;:6;:26;;;;69382:35;;;;68739:686;;;;;;;:::o;65283:110::-;65359:26;65369:2;65373:7;65359:26;;;;;;;;;;;;:9;:26::i;:::-;65283:110;;:::o;40351:157::-;40449:4;40499:1;40478:3;:12;;:17;40491:3;40478:17;;;;;;;;;;;;:22;;40471:29;;40351:157;;;;:::o;28108:1557::-;28174:4;28292:18;28313:3;:12;;:19;28326:5;28313:19;;;;;;;;;;;;28292:40;;28363:1;28349:10;:15;28345:1313;;28724:21;28761:1;28748:10;:14;28724:38;;28777:17;28818:1;28797:3;:11;;:18;;;;:22;28777:42;;29064:17;29084:3;:11;;29096:9;29084:22;;;;;;;;;;;;;;;;29064:42;;29230:9;29201:3;:11;;29213:13;29201:26;;;;;;;;;;;;;;;:38;;;;29349:1;29333:13;:17;29307:3;:12;;:23;29320:9;29307:23;;;;;;;;;;;:43;;;;29459:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;29554:3;:12;;:19;29567:5;29554:19;;;;;;;;;;;29547:26;;;29597:4;29590:11;;;;;;;;28345:1313;29641:5;29634:12;;;28108:1557;;;;;:::o;27518:414::-;27581:4;27603:21;27613:3;27618:5;27603:9;:21::i;:::-;27598:327;;27641:3;:11;;27658:5;27641:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27824:3;:11;;:18;;;;27802:3;:12;;:19;27815:5;27802:19;;;;;;;;;;;:40;;;;27864:4;27857:11;;;;27598:327;27908:5;27901:12;;27518:414;;;;;:::o;37793:737::-;37903:4;38019:16;38038:3;:12;;:17;38051:3;38038:17;;;;;;;;;;;;38019:36;;38084:1;38072:8;:13;38068:455;;;38152:3;:12;;38170:36;;;;;;;;38186:3;38170:36;;;;38199:5;38170:36;;;38152:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38365:3;:12;;:19;;;;38345:3;:12;;:17;38358:3;38345:17;;;;;;;;;;;:39;;;;38406:4;38399:11;;;;;38068:455;38479:5;38443:3;:12;;38467:1;38456:8;:12;38443:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38506:5;38499:12;;;37793:737;;;;;;:::o;17938:444::-;17998:4;18206:12;18330:7;18318:20;18310:28;;18373:1;18366:4;:8;18359:15;;;17938:444;;;:::o;20975:229::-;21112:12;21144:52;21166:6;21174:4;21180:1;21183:12;21144:21;:52::i;:::-;21137:59;;20975:229;;;;;:::o;65620:313::-;65772:54;65803:1;65807:2;65811:7;65820:5;65772:22;:54::i;:::-;65750:146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65907:18;65913:2;65917:7;65907:5;:18::i;:::-;65620:313;;;:::o;29751:161::-;29851:4;29903:1;29880:3;:12;;:19;29893:5;29880:19;;;;;;;;;;;;:24;;29873:31;;29751:161;;;;:::o;22191:632::-;22361:12;22433:5;22408:21;:30;;22386:118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22523:18;22534:6;22523:10;:18::i;:::-;22515:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22649:12;22663:23;22690:6;:11;;22709:5;22730:4;22690:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22648:97;;;;22763:52;22781:7;22790:10;22802:12;22763:17;:52::i;:::-;22756:59;;;;22191:632;;;;;;:::o;66269:260::-;66350:16;66358:7;66350;:16::i;:::-;66349:17;66341:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66402:30;66424:7;66402:13;:17;66416:2;66402:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;66443:29;66460:7;66469:2;66443:12;:16;;:29;;;;;:::i;:::-;;66513:7;66509:2;66488:33;;66505:1;66488:33;;;;;;;;;;;;66269:260;;:::o;25114:777::-;25264:12;25293:7;25289:595;;;25324:10;25317:17;;;;25289:595;25458:1;25438:10;:17;:21;25434:439;;;25701:10;25695:17;25762:15;25749:10;25745:2;25741:19;25734:44;25649:148;25844:12;25837:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25114:777;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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