ETH Price: $3,270.97 (-4.09%)
Gas: 15 Gwei

Token

Dinomonks (DINO)
 

Overview

Max Total Supply

3,689 DINO

Holders

1,422

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DINO
0xe0f388e5e0203f6ea0f2f9a144e96589baa7a9fc
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:
Dinomonks

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: node_modules\@openzeppelin\contracts\GSN\Context.sol

pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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;
    }
}

// File: node_modules\@openzeppelin\contracts\introspection\IERC165.sol

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

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

pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: node_modules\@openzeppelin\contracts\token\ERC721\IERC721Metadata.sol

pragma solidity >=0.6.2 <0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

// File: node_modules\@openzeppelin\contracts\token\ERC721\IERC721Enumerable.sol

pragma solidity >=0.6.2 <0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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

pragma solidity >=0.6.0 <0.8.0;

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

// File: node_modules\@openzeppelin\contracts\introspection\ERC165.sol

pragma solidity >=0.6.0 <0.8.0;


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

// File: node_modules\@openzeppelin\contracts\math\SafeMath.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 * @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, 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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * 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);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

pragma solidity >=0.6.2 <0.8.0;

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

        uint256 size;
        // 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);
    }

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

// File: node_modules\@openzeppelin\contracts\utils\EnumerableSet.sol

pragma solidity >=0.6.0 <0.8.0;

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

// File: node_modules\@openzeppelin\contracts\utils\EnumerableMap.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 * @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 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) {
        return _get(map, key, "EnumerableMap: nonexistent key");
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     */
    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(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(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(uint256(_get(map._inner, bytes32(key))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint256(_get(map._inner, bytes32(key), errorMessage)));
    }
}

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

pragma solidity >=0.6.0 <0.8.0;

/**
 * @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--] = byte(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

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

pragma solidity >=0.6.0 <0.8.0;












/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // 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_) public {
        _name = name_;
        _symbol = symbol_;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), "ERC721: 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, "ERC721: owner query for nonexistent token");
    }

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

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

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

        string memory _tokenURI = _tokenURIs[tokenId];

        // If there is no base URI, return the token URI.
        if (bytes(_baseURI).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(_baseURI, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(_baseURI, 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 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 override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view 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 returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || 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 {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

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

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

        _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) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: 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_) internal virtual {
        _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
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

    function _approve(address to, uint256 tokenId) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

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

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

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        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 newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts\Dinomonks.sol


pragma solidity 0.7.6;
pragma abicoder v2;




contract Dinomonks is ERC721, Ownable {
    using SafeMath for uint256;

    uint256 public itemPrice;
    bool public isSaleActive;
    uint256 constant public totalTokenToMint = 10000;
	uint256 public mintedDino;
    uint256 public startingIpfsId;
    address public fundWallet;
    uint256 private _lastIpfsId;
    bool public isInitialMinted;

    constructor (string memory _tokenBaseUri, address _fundWallet) ERC721("Dinomonks", "DINO") {
        _setBaseURI(_tokenBaseUri);
        itemPrice = 0.08 ether; // 0.08 ETH
        isSaleActive = false;
        fundWallet = _fundWallet;
    }

    ////////////////////
    // Action methods //
    ////////////////////

	function mintDino(uint256 _howMany) external payable {
	    require(_howMany > 0, "Minimum 1 tokens need to be minted");
        require(isSaleActive || block.timestamp >= 1630620000, "Sale is not active");
	    require(_howMany <= dinoRemainingToBeMinted(), "Mint amount is greater than the token available");
		require(_howMany <= 20, "Max 20 dino at once");
		require(itemPrice.mul(_howMany) == msg.value, "Insufficient ETH to mint");
		for (uint256 i = 0; i < _howMany; i++) {
			_mintDino(_msgSender());
		}
	}

    function mintGiveaway() external onlyOwner {
        require(!isInitialMinted, "Giveaway token had been already minted");
        mintedDino++;
        _mint(owner(), mintedDino);
        _setTokenURI(mintedDino, uint2str(mintedDino));
		isInitialMinted = true;
	}
    
    function _mintDino(address _to) private {
        if(mintedDino == 1) {
            _lastIpfsId = random(2, totalTokenToMint, uint256(uint160(address(_msgSender()))) + 1);
            startingIpfsId = _lastIpfsId;
        } else {
            _lastIpfsId = getIpfsIdToMint();
        }
        mintedDino++;
        require(!_exists(mintedDino), "Mint: Token already exist.");
        _mint(_to, mintedDino);
        _setTokenURI(mintedDino, uint2str(_lastIpfsId));
    }

    function uint2str(uint256 _i) private pure returns (string memory _uintAsString) {
		if (_i == 0) {
			return "0";
		}
		uint256 j = _i;
		uint256 len;
		while (j != 0) {
			len++;
			j /= 10;
		}
		bytes memory bstr = new bytes(len);
		uint256 k = len;
		while (_i != 0) {
			k = k - 1;
			uint8 temp = (48 + uint8(_i - (_i / 10) * 10));
			bytes1 b1 = bytes1(temp);
			bstr[k] = b1;
			_i /= 10;
		}
		return string(bstr);
	}

    function burn(uint256 _tokenId) public {
        require(_exists(_tokenId), "Burn: token does not exist.");
        require(ownerOf(_tokenId) == _msgSender(), "Burn: caller is not token owner.");
        _burn(_tokenId);
    }

    ///////////////////
    // Query methods //
    ///////////////////

    function exists(uint256 _tokenId) external view returns (bool) {
        return _exists(_tokenId);
    }
    
    function dinoRemainingToBeMinted() public view returns (uint256) {
        return totalTokenToMint.sub(mintedDino);
    }

    function isAllTokenMinted() public view returns (bool) {
        return mintedDino == totalTokenToMint;
    }

    function getIpfsIdToMint() public view returns(uint256 _nextIpfsId) {
        require(!isAllTokenMinted(), "All tokens have been minted");
        if(_lastIpfsId == totalTokenToMint && mintedDino < totalTokenToMint) {
            _nextIpfsId = 2;
        } else if(mintedDino < totalTokenToMint) {
            _nextIpfsId = _lastIpfsId + 1;
        }
    }

    function isApprovedOrOwner(address _spender, uint256 _tokenId) external view returns (bool) {
        return _isApprovedOrOwner(_spender, _tokenId);
    }

    //random number
	function random(
		uint256 from,
		uint256 to,
		uint256 salty
	) private view returns (uint256) {
		uint256 seed =
			uint256(
				keccak256(
					abi.encodePacked(
						block.timestamp +
							block.difficulty +
							((uint256(keccak256(abi.encodePacked(block.coinbase)))) / (block.timestamp)) +
							block.gaslimit +
							((uint256(keccak256(abi.encodePacked(_msgSender())))) / (block.timestamp)) +
							block.number +
							salty
					)
				)
			);
		return seed.mod(to - from) + from;
	}

    /////////////
    // Setters //
    /////////////

    function stopSale(bool) external onlyOwner {
        isSaleActive = false;
    }

    function startSale(bool) external onlyOwner {
        isSaleActive = true;
    }

    function changeFundWallet(address _fundWallet) external onlyOwner {
        fundWallet = _fundWallet;
    }

    function withdrawETH(uint256 _amount) external onlyOwner {
        payable(fundWallet).transfer(_amount);
    }

    function setTokenURI(uint256 _tokenId, string memory _uri) external onlyOwner {
        _setTokenURI(_tokenId, _uri);
    }

    function setBaseURI(string memory _baseURI) external onlyOwner {
        _setBaseURI(_baseURI);
    }

    function _beforeTokenTransfer(address _from, address _to, uint256 _tokenId) internal virtual override(ERC721) {
        super._beforeTokenTransfer(_from, _to, _tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenBaseUri","type":"string"},{"internalType":"address","name":"_fundWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_fundWallet","type":"address"}],"name":"changeFundWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dinoRemainingToBeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIpfsIdToMint","outputs":[{"internalType":"uint256","name":"_nextIpfsId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllTokenMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_spender","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isApprovedOrOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isInitialMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"itemPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_howMany","type":"uint256"}],"name":"mintDino","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedDino","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"","type":"bool"}],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIpfsId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"","type":"bool"}],"name":"stopSale","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":[],"name":"totalTokenToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200573a3803806200573a8339818101604052810190620000379190620004a7565b6040518060400160405280600981526020017f44696e6f6d6f6e6b7300000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f44494e4f00000000000000000000000000000000000000000000000000000000815250620000bb6301ffc9a760e01b6200026c60201b60201c565b8160069080519060200190620000d392919062000368565b508060079080519060200190620000ec92919062000368565b50620001056380ac58cd60e01b6200026c60201b60201c565b6200011d635b5e139f60e01b6200026c60201b60201c565b6200013563780e9d6360e01b6200026c60201b60201c565b50506000620001496200034460201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001f9826200034c60201b60201c565b67011c37937e080000600b819055506000600c60006101000a81548160ff02191690831515021790555080600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000663565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002cf9062000543565b60405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b80600990805190602001906200036492919062000368565b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620003a05760008555620003ec565b82601f10620003bb57805160ff1916838001178555620003ec565b82800160010185558215620003ec579182015b82811115620003eb578251825591602001919060010190620003ce565b5b509050620003fb9190620003ff565b5090565b5b808211156200041a57600081600090555060010162000400565b5090565b6000620004356200042f8462000599565b62000565565b9050828152602081018484840111156200044e57600080fd5b6200045b84828562000611565b509392505050565b600081519050620004748162000649565b92915050565b600082601f8301126200048c57600080fd5b81516200049e8482602086016200041e565b91505092915050565b60008060408385031215620004bb57600080fd5b600083015167ffffffffffffffff811115620004d657600080fd5b620004e4858286016200047a565b9250506020620004f78582860162000463565b9150509250929050565b600062000510601c83620005cc565b91507f4552433136353a20696e76616c696420696e74657266616365206964000000006000830152602082019050919050565b600060208201905081810360008301526200055e8162000501565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200058f576200058e62000647565b5b8060405250919050565b600067ffffffffffffffff821115620005b757620005b662000647565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000620005ea82620005f1565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200063157808201518184015260208101905062000614565b8381111562000641576000848401525b50505050565bfe5b6200065481620005dd565b81146200066057600080fd5b50565b6150c780620006736000396000f3fe6080604052600436106102465760003560e01c80636fb4adff11610139578063a760a29f116100b6578063dac6db1c1161007a578063dac6db1c14610883578063e985e9c5146108ae578063ee3bfe44146108eb578063f14210a614610914578063f2fde38b1461093d578063fd15ec581461096657610246565b8063a760a29f1461079c578063b88d4fde146107c7578063be6b5088146107f0578063bebae4bb1461081b578063c87b56dd1461084657610246565b80638f37c23f116100fd5780638f37c23f146106ec57806395d89b41146107085780639c4c557c146107335780639ff048fc1461075c578063a22cb4651461077357610246565b80636fb4adff1461061957806370a0823114610642578063715018a61461067f5780638da5cb5b146106965780638db02a5c146106c157610246565b806342966c68116101c7578063564566a81161018b578063564566a81461053057806358b943ee1461055b5780636352211e14610586578063664a1ad6146105c35780636c0360eb146105ee57610246565b806342966c6814610427578063430c2081146104505780634f558e791461048d5780634f6ccce7146104ca57806355f804b31461050757610246565b806318160ddd1161020e57806318160ddd1461034257806323b872dd1461036d5780632f745c591461039657806340cb36b1146103d357806342842e0e146103fe57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f0578063162094c414610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613b52565b610991565b60405161027f9190614998565b60405180910390f35b34801561029457600080fd5b5061029d6109f8565b6040516102aa91906149b3565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613be5565b610a9a565b6040516102e79190614931565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613aed565b610b1f565b005b34801561032557600080fd5b50610340600480360381019061033b9190613c0e565b610c37565b005b34801561034e57600080fd5b50610357610cdc565b6040516103649190614db5565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f91906139e7565b610ced565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613aed565b610d4d565b6040516103ca9190614db5565b60405180910390f35b3480156103df57600080fd5b506103e8610da8565b6040516103f59190614998565b60405180910390f35b34801561040a57600080fd5b50610425600480360381019061042091906139e7565b610dbb565b005b34801561043357600080fd5b5061044e60048036038101906104499190613be5565b610ddb565b005b34801561045c57600080fd5b5061047760048036038101906104729190613aed565b610eac565b6040516104849190614998565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190613be5565b610ec0565b6040516104c19190614998565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190613be5565b610ed2565b6040516104fe9190614db5565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190613ba4565b610ef5565b005b34801561053c57600080fd5b50610545610f98565b6040516105529190614998565b60405180910390f35b34801561056757600080fd5b50610570610fab565b60405161057d9190614db5565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190613be5565b610fc9565b6040516105ba9190614931565b60405180910390f35b3480156105cf57600080fd5b506105d8611000565b6040516105e59190614931565b60405180910390f35b3480156105fa57600080fd5b50610603611026565b60405161061091906149b3565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190613982565b6110c8565b005b34801561064e57600080fd5b5061066960048036038101906106649190613982565b6111a3565b6040516106769190614db5565b60405180910390f35b34801561068b57600080fd5b50610694611262565b005b3480156106a257600080fd5b506106ab6113ba565b6040516106b89190614931565b60405180910390f35b3480156106cd57600080fd5b506106d66113e4565b6040516106e39190614db5565b60405180910390f35b61070660048036038101906107019190613be5565b6113ea565b005b34801561071457600080fd5b5061071d61159b565b60405161072a91906149b3565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190613b29565b61163d565b005b34801561076857600080fd5b506107716116f2565b005b34801561077f57600080fd5b5061079a60048036038101906107959190613ab1565b611831565b005b3480156107a857600080fd5b506107b16119b2565b6040516107be9190614998565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190613a36565b6119c0565b005b3480156107fc57600080fd5b50610805611a22565b6040516108129190614db5565b60405180910390f35b34801561082757600080fd5b50610830611aa9565b60405161083d9190614db5565b60405180910390f35b34801561085257600080fd5b5061086d60048036038101906108689190613be5565b611aaf565b60405161087a91906149b3565b60405180910390f35b34801561088f57600080fd5b50610898611c3a565b6040516108a59190614db5565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d091906139ab565b611c40565b6040516108e29190614998565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613b29565b611cd4565b005b34801561092057600080fd5b5061093b60048036038101906109369190613be5565b611d89565b005b34801561094957600080fd5b50610964600480360381019061095f9190613982565b611e8c565b005b34801561097257600080fd5b5061097b612053565b6040516109889190614db5565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a905780601f10610a6557610100808354040283529160200191610a90565b820191906000526020600020905b815481529060010190602001808311610a7357829003601f168201915b5050505050905090565b6000610aa582612059565b610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90614bf5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2a82610fc9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290614c95565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bba612076565b73ffffffffffffffffffffffffffffffffffffffff161480610be95750610be881610be3612076565b611c40565b5b610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90614b55565b60405180910390fd5b610c32838361207e565b505050565b610c3f612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc590614c35565b60405180910390fd5b610cd88282612137565b5050565b6000610ce860026121ab565b905090565b610cfe610cf8612076565b826121c0565b610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490614cf5565b60405180910390fd5b610d4883838361229e565b505050565b6000610da082600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206124b590919063ffffffff16565b905092915050565b601160009054906101000a900460ff1681565b610dd6838383604051806020016040528060008152506119c0565b505050565b610de481612059565b610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90614d35565b60405180910390fd5b610e2b612076565b73ffffffffffffffffffffffffffffffffffffffff16610e4a82610fc9565b73ffffffffffffffffffffffffffffffffffffffff1614610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9790614cd5565b60405180910390fd5b610ea9816124cf565b50565b6000610eb883836121c0565b905092915050565b6000610ecb82612059565b9050919050565b600080610ee983600261260990919063ffffffff16565b50905080915050919050565b610efd612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390614c35565b60405180910390fd5b610f9581612635565b50565b600c60009054906101000a900460ff1681565b6000610fc4600d5461271061264f90919063ffffffff16565b905090565b6000610ff9826040518060600160405280602981526020016150696029913960026126999092919063ffffffff16565b9050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110be5780601f10611093576101008083540402835291602001916110be565b820191906000526020600020905b8154815290600101906020018083116110a157829003601f168201915b5050505050905090565b6110d0612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690614c35565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90614b75565b60405180910390fd5b61125b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206126b8565b9050919050565b61126a612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090614c35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6000811161142d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142490614cb5565b60405180910390fd5b600c60009054906101000a900460ff168061144c575063613149604210155b61148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290614ad5565b60405180910390fd5b611493610fab565b8111156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90614b35565b60405180910390fd5b6014811115611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090614d95565b60405180910390fd5b3461152f82600b546126cd90919063ffffffff16565b1461156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156690614d75565b60405180910390fd5b60005b818110156115975761158a611585612076565b61273d565b8080600101915050611572565b5050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116335780601f1061160857610100808354040283529160200191611633565b820191906000526020600020905b81548152906001019060200180831161161657829003601f168201915b5050505050905090565b611645612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb90614c35565b60405180910390fd5b6001600c60006101000a81548160ff02191690831515021790555050565b6116fa612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090614c35565b60405180910390fd5b601160009054906101000a900460ff16156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090614a75565b60405180910390fd5b600d600081548092919060010191905055506117fe6117f66113ba565b600d5461281b565b611814600d5461180f600d546129a9565b612137565b6001601160006101000a81548160ff021916908315150217905550565b611839612076565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90614ab5565b60405180910390fd5b80600560006118b4612076565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611961612076565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119a69190614998565b60405180910390a35050565b6000612710600d5414905090565b6119d16119cb612076565b836121c0565b611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0790614cf5565b60405180910390fd5b611a1c84848484612af9565b50505050565b6000611a2c6119b2565b15611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6390614d55565b60405180910390fd5b612710601054148015611a825750612710600d54105b15611a905760029050611aa6565b612710600d541015611aa55760016010540190505b5b90565b600d5481565b6060611aba82612059565b611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af090614c75565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ba25780601f10611b7757610100808354040283529160200191611ba2565b820191906000526020600020905b815481529060010190602001808311611b8557829003601f168201915b50505050509050600060098054600181600116156101000203166002900490501415611bd15780915050611c35565b600081511115611c0657600981604051602001611bef9291906148f2565b604051602081830303815290604052915050611c35565b6009611c1184612b55565b604051602001611c229291906148f2565b6040516020818303038152906040529150505b919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cdc612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6290614c35565b60405180910390fd5b6000600c60006101000a81548160ff02191690831515021790555050565b611d91612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1790614c35565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e88573d6000803e3d6000fd5b5050565b611e94612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90614c35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a90614a35565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61271081565b600061206f826002612c9c90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120f183610fc9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61214082612059565b61217f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217690614c15565b60405180910390fd5b806008600084815260200190815260200160002090805190602001906121a6929190613756565b505050565b60006121b982600001612cb6565b9050919050565b60006121cb82612059565b61220a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220190614b15565b60405180910390fd5b600061221583610fc9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061228457508373ffffffffffffffffffffffffffffffffffffffff1661226c84610a9a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061229557506122948185611c40565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122be82610fc9565b73ffffffffffffffffffffffffffffffffffffffff1614612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90614c55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237b90614a95565b60405180910390fd5b61238f838383612cc7565b61239a60008261207e565b6123eb81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612cd790919063ffffffff16565b5061243d81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612cf190919063ffffffff16565b5061245481836002612d0b9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006124c48360000183612d40565b60001c905092915050565b60006124da82610fc9565b90506124e881600084612cc7565b6124f360008361207e565b600060086000848152602001908152602001600020805460018160011615610100020316600290049050146125425760086000838152602001908152602001600020600061254191906137e4565b5b61259382600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612cd790919063ffffffff16565b506125a8826002612dad90919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008060008061261c8660000186612dc7565b915091508160001c8160001c9350935050509250929050565b806009908051906020019061264b929190613756565b5050565b600061269183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612e4a565b905092915050565b60006126ac846000018460001b84612ea5565b60001c90509392505050565b60006126c682600001612f36565b9050919050565b6000808314156126e05760009050612737565b60008284029050828482816126f157fe5b0414612732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272990614bd5565b60405180910390fd5b809150505b92915050565b6001600d54141561278a576127766002612710600161275a612076565b73ffffffffffffffffffffffffffffffffffffffff1601612f47565b601081905550601054600e81905550612799565b612792611a22565b6010819055505b600d600081548092919060010191905055506127b6600d54612059565b156127f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ed90614a15565b60405180910390fd5b61280281600d5461281b565b612818600d546128136010546129a9565b612137565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561288b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288290614bb5565b60405180910390fd5b61289481612059565b156128d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cb90614a55565b60405180910390fd5b6128e060008383612cc7565b61293181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612cf190919063ffffffff16565b5061294881836002612d0b9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b606060008214156129f1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612af4565b600082905060005b60008214612a1b578080600101915050600a8281612a1357fe5b0491506129f9565b60008167ffffffffffffffff81118015612a3457600080fd5b506040519080825280601f01601f191660200182016040528015612a675781602001600182028036833780820191505090505b50905060008290505b60008614612aec576001810390506000600a808881612a8b57fe5b04028703603001905060008160f81b905080848481518110612aa957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8881612ae257fe5b0497505050612a70565b819450505050505b919050565b612b0484848461229e565b612b108484848461300e565b612b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b46906149f5565b60405180910390fd5b50505050565b60606000821415612b9d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c97565b600082905060005b60008214612bc7578080600101915050600a8281612bbf57fe5b049150612ba5565b60008167ffffffffffffffff81118015612be057600080fd5b506040519080825280601f01601f191660200182016040528015612c135781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612c8f57600a8481612c3457fe5b0660300160f81b82828060019003935081518110612c4e57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612c8757fe5b049350612c22565b819450505050505b919050565b6000612cae836000018360001b613172565b905092915050565b600081600001805490509050919050565b612cd2838383613195565b505050565b6000612ce9836000018360001b61319a565b905092915050565b6000612d03836000018360001b613282565b905092915050565b6000612d37846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6132f2565b90509392505050565b600081836000018054905011612d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d82906149d5565b60405180910390fd5b826000018281548110612d9a57fe5b9060005260206000200154905092915050565b6000612dbf836000018360001b6133ce565b905092915050565b60008082846000018054905011612e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0a90614b95565b60405180910390fd5b6000846000018481548110612e2457fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000838311158290612e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8991906149b3565b60405180910390fd5b5060008385039050809150509392505050565b60008084600101600085815260200190815260200160002054905060008114158390612f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efe91906149b3565b60405180910390fd5b50846000016001820381548110612f1a57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600080824342612f55612076565b604051602001612f6591906148c0565b6040516020818303038152906040528051906020012060001c81612f8557fe5b04454241604051602001612f9991906148c0565b6040516020818303038152906040528051906020012060001c81612fb957fe5b044442010101010101604051602001612fd29190614916565b6040516020818303038152906040528051906020012060001c905084613003868603836134e790919063ffffffff16565b019150509392505050565b600061302f8473ffffffffffffffffffffffffffffffffffffffff16613531565b61303c576001905061316a565b600061310363150b7a0260e01b613051612076565b888787604051602401613067949392919061494c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615037603291398773ffffffffffffffffffffffffffffffffffffffff166135449092919063ffffffff16565b905060008180602001905181019061311b9190613b7b565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b6000808360010160008481526020019081526020016000205490506000811461327657600060018203905060006001866000018054905003905060008660000182815481106131e557fe5b906000526020600020015490508087600001848154811061320257fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061323a57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061327c565b60009150505b92915050565b600061328e838361355c565b6132e75782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506132ec565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613399578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506133c7565b828560000160018303815481106133ac57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020549050600081146134db576000600182039050600060018660000180549050039050600086600001828154811061341957fe5b906000526020600020906002020190508087600001848154811061343957fe5b906000526020600020906002020160008201548160000155600182015481600101559050506001830187600101600083600001548152602001908152602001600020819055508660000180548061348c57fe5b60019003818190600052602060002090600202016000808201600090556001820160009055505090558660010160008781526020019081526020016000206000905560019450505050506134e1565b60009150505b92915050565b600061352983836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f000000000000000081525061357f565b905092915050565b600080823b905060008111915050919050565b606061355384846000856135db565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083141582906135c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135be91906149b3565b60405180910390fd5b508284816135d157fe5b0690509392505050565b606082471015613620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361790614af5565b60405180910390fd5b61362985613531565b613668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365f90614d15565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161369191906148db565b60006040518083038185875af1925050503d80600081146136ce576040519150601f19603f3d011682016040523d82523d6000602084013e6136d3565b606091505b50915091506136e38282866136ef565b92505050949350505050565b606083156136ff5782905061374f565b6000835111156137125782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374691906149b3565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261378c57600085556137d3565b82601f106137a557805160ff19168380011785556137d3565b828001600101855582156137d3579182015b828111156137d25782518255916020019190600101906137b7565b5b5090506137e0919061382c565b5090565b50805460018160011615610100020316600290046000825580601f1061380a5750613829565b601f016020900490600052602060002090810190613828919061382c565b5b50565b5b8082111561384557600081600090555060010161382d565b5090565b600061385c61385784614e01565b614dd0565b90508281526020810184848401111561387457600080fd5b61387f848285614f4a565b509392505050565b600061389a61389584614e31565b614dd0565b9050828152602081018484840111156138b257600080fd5b6138bd848285614f4a565b509392505050565b6000813590506138d481614fda565b92915050565b6000813590506138e981614ff1565b92915050565b6000813590506138fe81615008565b92915050565b60008151905061391381615008565b92915050565b600082601f83011261392a57600080fd5b813561393a848260208601613849565b91505092915050565b600082601f83011261395457600080fd5b8135613964848260208601613887565b91505092915050565b60008135905061397c8161501f565b92915050565b60006020828403121561399457600080fd5b60006139a2848285016138c5565b91505092915050565b600080604083850312156139be57600080fd5b60006139cc858286016138c5565b92505060206139dd858286016138c5565b9150509250929050565b6000806000606084860312156139fc57600080fd5b6000613a0a868287016138c5565b9350506020613a1b868287016138c5565b9250506040613a2c8682870161396d565b9150509250925092565b60008060008060808587031215613a4c57600080fd5b6000613a5a878288016138c5565b9450506020613a6b878288016138c5565b9350506040613a7c8782880161396d565b925050606085013567ffffffffffffffff811115613a9957600080fd5b613aa587828801613919565b91505092959194509250565b60008060408385031215613ac457600080fd5b6000613ad2858286016138c5565b9250506020613ae3858286016138da565b9150509250929050565b60008060408385031215613b0057600080fd5b6000613b0e858286016138c5565b9250506020613b1f8582860161396d565b9150509250929050565b600060208284031215613b3b57600080fd5b6000613b49848285016138da565b91505092915050565b600060208284031215613b6457600080fd5b6000613b72848285016138ef565b91505092915050565b600060208284031215613b8d57600080fd5b6000613b9b84828501613904565b91505092915050565b600060208284031215613bb657600080fd5b600082013567ffffffffffffffff811115613bd057600080fd5b613bdc84828501613943565b91505092915050565b600060208284031215613bf757600080fd5b6000613c058482850161396d565b91505092915050565b60008060408385031215613c2157600080fd5b6000613c2f8582860161396d565b925050602083013567ffffffffffffffff811115613c4c57600080fd5b613c5885828601613943565b9150509250929050565b613c6b81614ed6565b82525050565b613c82613c7d82614ed6565b614f8c565b82525050565b613c9181614ec4565b82525050565b613ca081614ee8565b82525050565b6000613cb182614e76565b613cbb8185614e8c565b9350613ccb818560208601614f59565b613cd481614fbc565b840191505092915050565b6000613cea82614e76565b613cf48185614e9d565b9350613d04818560208601614f59565b80840191505092915050565b6000613d1b82614e81565b613d258185614ea8565b9350613d35818560208601614f59565b613d3e81614fbc565b840191505092915050565b6000613d5482614e81565b613d5e8185614eb9565b9350613d6e818560208601614f59565b80840191505092915050565b600081546001811660008114613d975760018114613dbc57613e00565b607f6002830416613da88187614eb9565b955060ff1983168652808601935050613e00565b60028204613dca8187614eb9565b9550613dd585614e61565b60005b82811015613df757815481890152600182019150602081019050613dd8565b82880195505050505b505092915050565b6000613e15602283614ea8565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e7b603283614ea8565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613ee1601a83614ea8565b91507f4d696e743a20546f6b656e20616c72656164792065786973742e0000000000006000830152602082019050919050565b6000613f21602683614ea8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f87601c83614ea8565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613fc7602683614ea8565b91507f476976656177617920746f6b656e20686164206265656e20616c72656164792060008301527f6d696e74656400000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061402d602483614ea8565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614093601983614ea8565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006140d3601283614ea8565b91507f53616c65206973206e6f742061637469766500000000000000000000000000006000830152602082019050919050565b6000614113602683614ea8565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614179602c83614ea8565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006141df602f83614ea8565b91507f4d696e7420616d6f756e742069732067726561746572207468616e207468652060008301527f746f6b656e20617661696c61626c6500000000000000000000000000000000006020830152604082019050919050565b6000614245603883614ea8565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006142ab602a83614ea8565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614311602283614ea8565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614377602083614ea8565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006143b7602183614ea8565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061441d602c83614ea8565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614483602c83614ea8565b91507f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006144e9602083614ea8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614529602983614ea8565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061458f602f83614ea8565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006145f5602183614ea8565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061465b602283614ea8565b91507f4d696e696d756d203120746f6b656e73206e65656420746f206265206d696e7460008301527f65640000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146c1602083614ea8565b91507f4275726e3a2063616c6c6572206973206e6f7420746f6b656e206f776e65722e6000830152602082019050919050565b6000614701603183614ea8565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614767601d83614ea8565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b60006147a7601b83614ea8565b91507f4275726e3a20746f6b656e20646f6573206e6f742065786973742e00000000006000830152602082019050919050565b60006147e7601b83614ea8565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b6000614827601883614ea8565b91507f496e73756666696369656e742045544820746f206d696e7400000000000000006000830152602082019050919050565b6000614867601383614ea8565b91507f4d61782032302064696e6f206174206f6e6365000000000000000000000000006000830152602082019050919050565b6148a381614f40565b82525050565b6148ba6148b582614f40565b614fb0565b82525050565b60006148cc8284613c71565b60148201915081905092915050565b60006148e78284613cdf565b915081905092915050565b60006148fe8285613d7a565b915061490a8284613d49565b91508190509392505050565b600061492282846148a9565b60208201915081905092915050565b60006020820190506149466000830184613c88565b92915050565b60006080820190506149616000830187613c62565b61496e6020830186613c88565b61497b604083018561489a565b818103606083015261498d8184613ca6565b905095945050505050565b60006020820190506149ad6000830184613c97565b92915050565b600060208201905081810360008301526149cd8184613d10565b905092915050565b600060208201905081810360008301526149ee81613e08565b9050919050565b60006020820190508181036000830152614a0e81613e6e565b9050919050565b60006020820190508181036000830152614a2e81613ed4565b9050919050565b60006020820190508181036000830152614a4e81613f14565b9050919050565b60006020820190508181036000830152614a6e81613f7a565b9050919050565b60006020820190508181036000830152614a8e81613fba565b9050919050565b60006020820190508181036000830152614aae81614020565b9050919050565b60006020820190508181036000830152614ace81614086565b9050919050565b60006020820190508181036000830152614aee816140c6565b9050919050565b60006020820190508181036000830152614b0e81614106565b9050919050565b60006020820190508181036000830152614b2e8161416c565b9050919050565b60006020820190508181036000830152614b4e816141d2565b9050919050565b60006020820190508181036000830152614b6e81614238565b9050919050565b60006020820190508181036000830152614b8e8161429e565b9050919050565b60006020820190508181036000830152614bae81614304565b9050919050565b60006020820190508181036000830152614bce8161436a565b9050919050565b60006020820190508181036000830152614bee816143aa565b9050919050565b60006020820190508181036000830152614c0e81614410565b9050919050565b60006020820190508181036000830152614c2e81614476565b9050919050565b60006020820190508181036000830152614c4e816144dc565b9050919050565b60006020820190508181036000830152614c6e8161451c565b9050919050565b60006020820190508181036000830152614c8e81614582565b9050919050565b60006020820190508181036000830152614cae816145e8565b9050919050565b60006020820190508181036000830152614cce8161464e565b9050919050565b60006020820190508181036000830152614cee816146b4565b9050919050565b60006020820190508181036000830152614d0e816146f4565b9050919050565b60006020820190508181036000830152614d2e8161475a565b9050919050565b60006020820190508181036000830152614d4e8161479a565b9050919050565b60006020820190508181036000830152614d6e816147da565b9050919050565b60006020820190508181036000830152614d8e8161481a565b9050919050565b60006020820190508181036000830152614dae8161485a565b9050919050565b6000602082019050614dca600083018461489a565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614df757614df6614fba565b5b8060405250919050565b600067ffffffffffffffff821115614e1c57614e1b614fba565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614e4c57614e4b614fba565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ecf82614f20565b9050919050565b6000614ee182614f20565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f77578082015181840152602081019050614f5c565b83811115614f86576000848401525b50505050565b6000614f9782614f9e565b9050919050565b6000614fa982614fcd565b9050919050565b6000819050919050565bfe5b6000601f19601f8301169050919050565b60008160601b9050919050565b614fe381614ec4565b8114614fee57600080fd5b50565b614ffa81614ee8565b811461500557600080fd5b50565b61501181614ef4565b811461501c57600080fd5b50565b61502881614f40565b811461503357600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220ce0afb6f5ab682aad6fc8cb9116ebcdd45d1bccbef57fd96b3ad5e93e2977c8664736f6c6343000706003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000001109700e90a653e01053f7247b8b80710d8bb3bd0000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c80636fb4adff11610139578063a760a29f116100b6578063dac6db1c1161007a578063dac6db1c14610883578063e985e9c5146108ae578063ee3bfe44146108eb578063f14210a614610914578063f2fde38b1461093d578063fd15ec581461096657610246565b8063a760a29f1461079c578063b88d4fde146107c7578063be6b5088146107f0578063bebae4bb1461081b578063c87b56dd1461084657610246565b80638f37c23f116100fd5780638f37c23f146106ec57806395d89b41146107085780639c4c557c146107335780639ff048fc1461075c578063a22cb4651461077357610246565b80636fb4adff1461061957806370a0823114610642578063715018a61461067f5780638da5cb5b146106965780638db02a5c146106c157610246565b806342966c68116101c7578063564566a81161018b578063564566a81461053057806358b943ee1461055b5780636352211e14610586578063664a1ad6146105c35780636c0360eb146105ee57610246565b806342966c6814610427578063430c2081146104505780634f558e791461048d5780634f6ccce7146104ca57806355f804b31461050757610246565b806318160ddd1161020e57806318160ddd1461034257806323b872dd1461036d5780632f745c591461039657806340cb36b1146103d357806342842e0e146103fe57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f0578063162094c414610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613b52565b610991565b60405161027f9190614998565b60405180910390f35b34801561029457600080fd5b5061029d6109f8565b6040516102aa91906149b3565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613be5565b610a9a565b6040516102e79190614931565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613aed565b610b1f565b005b34801561032557600080fd5b50610340600480360381019061033b9190613c0e565b610c37565b005b34801561034e57600080fd5b50610357610cdc565b6040516103649190614db5565b60405180910390f35b34801561037957600080fd5b50610394600480360381019061038f91906139e7565b610ced565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613aed565b610d4d565b6040516103ca9190614db5565b60405180910390f35b3480156103df57600080fd5b506103e8610da8565b6040516103f59190614998565b60405180910390f35b34801561040a57600080fd5b50610425600480360381019061042091906139e7565b610dbb565b005b34801561043357600080fd5b5061044e60048036038101906104499190613be5565b610ddb565b005b34801561045c57600080fd5b5061047760048036038101906104729190613aed565b610eac565b6040516104849190614998565b60405180910390f35b34801561049957600080fd5b506104b460048036038101906104af9190613be5565b610ec0565b6040516104c19190614998565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190613be5565b610ed2565b6040516104fe9190614db5565b60405180910390f35b34801561051357600080fd5b5061052e60048036038101906105299190613ba4565b610ef5565b005b34801561053c57600080fd5b50610545610f98565b6040516105529190614998565b60405180910390f35b34801561056757600080fd5b50610570610fab565b60405161057d9190614db5565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190613be5565b610fc9565b6040516105ba9190614931565b60405180910390f35b3480156105cf57600080fd5b506105d8611000565b6040516105e59190614931565b60405180910390f35b3480156105fa57600080fd5b50610603611026565b60405161061091906149b3565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190613982565b6110c8565b005b34801561064e57600080fd5b5061066960048036038101906106649190613982565b6111a3565b6040516106769190614db5565b60405180910390f35b34801561068b57600080fd5b50610694611262565b005b3480156106a257600080fd5b506106ab6113ba565b6040516106b89190614931565b60405180910390f35b3480156106cd57600080fd5b506106d66113e4565b6040516106e39190614db5565b60405180910390f35b61070660048036038101906107019190613be5565b6113ea565b005b34801561071457600080fd5b5061071d61159b565b60405161072a91906149b3565b60405180910390f35b34801561073f57600080fd5b5061075a60048036038101906107559190613b29565b61163d565b005b34801561076857600080fd5b506107716116f2565b005b34801561077f57600080fd5b5061079a60048036038101906107959190613ab1565b611831565b005b3480156107a857600080fd5b506107b16119b2565b6040516107be9190614998565b60405180910390f35b3480156107d357600080fd5b506107ee60048036038101906107e99190613a36565b6119c0565b005b3480156107fc57600080fd5b50610805611a22565b6040516108129190614db5565b60405180910390f35b34801561082757600080fd5b50610830611aa9565b60405161083d9190614db5565b60405180910390f35b34801561085257600080fd5b5061086d60048036038101906108689190613be5565b611aaf565b60405161087a91906149b3565b60405180910390f35b34801561088f57600080fd5b50610898611c3a565b6040516108a59190614db5565b60405180910390f35b3480156108ba57600080fd5b506108d560048036038101906108d091906139ab565b611c40565b6040516108e29190614998565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190613b29565b611cd4565b005b34801561092057600080fd5b5061093b60048036038101906109369190613be5565b611d89565b005b34801561094957600080fd5b50610964600480360381019061095f9190613982565b611e8c565b005b34801561097257600080fd5b5061097b612053565b6040516109889190614db5565b60405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a905780601f10610a6557610100808354040283529160200191610a90565b820191906000526020600020905b815481529060010190602001808311610a7357829003601f168201915b5050505050905090565b6000610aa582612059565b610ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adb90614bf5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2a82610fc9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9290614c95565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bba612076565b73ffffffffffffffffffffffffffffffffffffffff161480610be95750610be881610be3612076565b611c40565b5b610c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1f90614b55565b60405180910390fd5b610c32838361207e565b505050565b610c3f612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc590614c35565b60405180910390fd5b610cd88282612137565b5050565b6000610ce860026121ab565b905090565b610cfe610cf8612076565b826121c0565b610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490614cf5565b60405180910390fd5b610d4883838361229e565b505050565b6000610da082600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206124b590919063ffffffff16565b905092915050565b601160009054906101000a900460ff1681565b610dd6838383604051806020016040528060008152506119c0565b505050565b610de481612059565b610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90614d35565b60405180910390fd5b610e2b612076565b73ffffffffffffffffffffffffffffffffffffffff16610e4a82610fc9565b73ffffffffffffffffffffffffffffffffffffffff1614610ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9790614cd5565b60405180910390fd5b610ea9816124cf565b50565b6000610eb883836121c0565b905092915050565b6000610ecb82612059565b9050919050565b600080610ee983600261260990919063ffffffff16565b50905080915050919050565b610efd612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390614c35565b60405180910390fd5b610f9581612635565b50565b600c60009054906101000a900460ff1681565b6000610fc4600d5461271061264f90919063ffffffff16565b905090565b6000610ff9826040518060600160405280602981526020016150696029913960026126999092919063ffffffff16565b9050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110be5780601f10611093576101008083540402835291602001916110be565b820191906000526020600020905b8154815290600101906020018083116110a157829003601f168201915b5050505050905090565b6110d0612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115690614c35565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90614b75565b60405180910390fd5b61125b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206126b8565b9050919050565b61126a612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090614c35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b6000811161142d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142490614cb5565b60405180910390fd5b600c60009054906101000a900460ff168061144c575063613149604210155b61148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290614ad5565b60405180910390fd5b611493610fab565b8111156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90614b35565b60405180910390fd5b6014811115611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090614d95565b60405180910390fd5b3461152f82600b546126cd90919063ffffffff16565b1461156f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156690614d75565b60405180910390fd5b60005b818110156115975761158a611585612076565b61273d565b8080600101915050611572565b5050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116335780601f1061160857610100808354040283529160200191611633565b820191906000526020600020905b81548152906001019060200180831161161657829003601f168201915b5050505050905090565b611645612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb90614c35565b60405180910390fd5b6001600c60006101000a81548160ff02191690831515021790555050565b6116fa612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090614c35565b60405180910390fd5b601160009054906101000a900460ff16156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090614a75565b60405180910390fd5b600d600081548092919060010191905055506117fe6117f66113ba565b600d5461281b565b611814600d5461180f600d546129a9565b612137565b6001601160006101000a81548160ff021916908315150217905550565b611839612076565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90614ab5565b60405180910390fd5b80600560006118b4612076565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611961612076565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119a69190614998565b60405180910390a35050565b6000612710600d5414905090565b6119d16119cb612076565b836121c0565b611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0790614cf5565b60405180910390fd5b611a1c84848484612af9565b50505050565b6000611a2c6119b2565b15611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6390614d55565b60405180910390fd5b612710601054148015611a825750612710600d54105b15611a905760029050611aa6565b612710600d541015611aa55760016010540190505b5b90565b600d5481565b6060611aba82612059565b611af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af090614c75565b60405180910390fd5b6000600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611ba25780601f10611b7757610100808354040283529160200191611ba2565b820191906000526020600020905b815481529060010190602001808311611b8557829003601f168201915b50505050509050600060098054600181600116156101000203166002900490501415611bd15780915050611c35565b600081511115611c0657600981604051602001611bef9291906148f2565b604051602081830303815290604052915050611c35565b6009611c1184612b55565b604051602001611c229291906148f2565b6040516020818303038152906040529150505b919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cdc612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6290614c35565b60405180910390fd5b6000600c60006101000a81548160ff02191690831515021790555050565b611d91612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1790614c35565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e88573d6000803e3d6000fd5b5050565b611e94612076565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90614c35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8a90614a35565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61271081565b600061206f826002612c9c90919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120f183610fc9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61214082612059565b61217f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217690614c15565b60405180910390fd5b806008600084815260200190815260200160002090805190602001906121a6929190613756565b505050565b60006121b982600001612cb6565b9050919050565b60006121cb82612059565b61220a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220190614b15565b60405180910390fd5b600061221583610fc9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061228457508373ffffffffffffffffffffffffffffffffffffffff1661226c84610a9a565b73ffffffffffffffffffffffffffffffffffffffff16145b8061229557506122948185611c40565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122be82610fc9565b73ffffffffffffffffffffffffffffffffffffffff1614612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90614c55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237b90614a95565b60405180910390fd5b61238f838383612cc7565b61239a60008261207e565b6123eb81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612cd790919063ffffffff16565b5061243d81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612cf190919063ffffffff16565b5061245481836002612d0b9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006124c48360000183612d40565b60001c905092915050565b60006124da82610fc9565b90506124e881600084612cc7565b6124f360008361207e565b600060086000848152602001908152602001600020805460018160011615610100020316600290049050146125425760086000838152602001908152602001600020600061254191906137e4565b5b61259382600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612cd790919063ffffffff16565b506125a8826002612dad90919063ffffffff16565b5081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008060008061261c8660000186612dc7565b915091508160001c8160001c9350935050509250929050565b806009908051906020019061264b929190613756565b5050565b600061269183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612e4a565b905092915050565b60006126ac846000018460001b84612ea5565b60001c90509392505050565b60006126c682600001612f36565b9050919050565b6000808314156126e05760009050612737565b60008284029050828482816126f157fe5b0414612732576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272990614bd5565b60405180910390fd5b809150505b92915050565b6001600d54141561278a576127766002612710600161275a612076565b73ffffffffffffffffffffffffffffffffffffffff1601612f47565b601081905550601054600e81905550612799565b612792611a22565b6010819055505b600d600081548092919060010191905055506127b6600d54612059565b156127f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ed90614a15565b60405180910390fd5b61280281600d5461281b565b612818600d546128136010546129a9565b612137565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561288b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288290614bb5565b60405180910390fd5b61289481612059565b156128d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cb90614a55565b60405180910390fd5b6128e060008383612cc7565b61293181600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612cf190919063ffffffff16565b5061294881836002612d0b9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b606060008214156129f1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612af4565b600082905060005b60008214612a1b578080600101915050600a8281612a1357fe5b0491506129f9565b60008167ffffffffffffffff81118015612a3457600080fd5b506040519080825280601f01601f191660200182016040528015612a675781602001600182028036833780820191505090505b50905060008290505b60008614612aec576001810390506000600a808881612a8b57fe5b04028703603001905060008160f81b905080848481518110612aa957fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8881612ae257fe5b0497505050612a70565b819450505050505b919050565b612b0484848461229e565b612b108484848461300e565b612b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b46906149f5565b60405180910390fd5b50505050565b60606000821415612b9d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c97565b600082905060005b60008214612bc7578080600101915050600a8281612bbf57fe5b049150612ba5565b60008167ffffffffffffffff81118015612be057600080fd5b506040519080825280601f01601f191660200182016040528015612c135781602001600182028036833780820191505090505b50905060006001830390508593505b60008414612c8f57600a8481612c3457fe5b0660300160f81b82828060019003935081518110612c4e57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481612c8757fe5b049350612c22565b819450505050505b919050565b6000612cae836000018360001b613172565b905092915050565b600081600001805490509050919050565b612cd2838383613195565b505050565b6000612ce9836000018360001b61319a565b905092915050565b6000612d03836000018360001b613282565b905092915050565b6000612d37846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6132f2565b90509392505050565b600081836000018054905011612d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d82906149d5565b60405180910390fd5b826000018281548110612d9a57fe5b9060005260206000200154905092915050565b6000612dbf836000018360001b6133ce565b905092915050565b60008082846000018054905011612e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0a90614b95565b60405180910390fd5b6000846000018481548110612e2457fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000838311158290612e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8991906149b3565b60405180910390fd5b5060008385039050809150509392505050565b60008084600101600085815260200190815260200160002054905060008114158390612f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efe91906149b3565b60405180910390fd5b50846000016001820381548110612f1a57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b600080824342612f55612076565b604051602001612f6591906148c0565b6040516020818303038152906040528051906020012060001c81612f8557fe5b04454241604051602001612f9991906148c0565b6040516020818303038152906040528051906020012060001c81612fb957fe5b044442010101010101604051602001612fd29190614916565b6040516020818303038152906040528051906020012060001c905084613003868603836134e790919063ffffffff16565b019150509392505050565b600061302f8473ffffffffffffffffffffffffffffffffffffffff16613531565b61303c576001905061316a565b600061310363150b7a0260e01b613051612076565b888787604051602401613067949392919061494c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615037603291398773ffffffffffffffffffffffffffffffffffffffff166135449092919063ffffffff16565b905060008180602001905181019061311b9190613b7b565b905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b6000808360010160008481526020019081526020016000205490506000811461327657600060018203905060006001866000018054905003905060008660000182815481106131e557fe5b906000526020600020015490508087600001848154811061320257fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061323a57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061327c565b60009150505b92915050565b600061328e838361355c565b6132e75782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506132ec565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613399578460000160405180604001604052808681526020018581525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010155505084600001805490508560010160008681526020019081526020016000208190555060019150506133c7565b828560000160018303815481106133ac57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080836001016000848152602001908152602001600020549050600081146134db576000600182039050600060018660000180549050039050600086600001828154811061341957fe5b906000526020600020906002020190508087600001848154811061343957fe5b906000526020600020906002020160008201548160000155600182015481600101559050506001830187600101600083600001548152602001908152602001600020819055508660000180548061348c57fe5b60019003818190600052602060002090600202016000808201600090556001820160009055505090558660010160008781526020019081526020016000206000905560019450505050506134e1565b60009150505b92915050565b600061352983836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f000000000000000081525061357f565b905092915050565b600080823b905060008111915050919050565b606061355384846000856135db565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083141582906135c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135be91906149b3565b60405180910390fd5b508284816135d157fe5b0690509392505050565b606082471015613620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161361790614af5565b60405180910390fd5b61362985613531565b613668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365f90614d15565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161369191906148db565b60006040518083038185875af1925050503d80600081146136ce576040519150601f19603f3d011682016040523d82523d6000602084013e6136d3565b606091505b50915091506136e38282866136ef565b92505050949350505050565b606083156136ff5782905061374f565b6000835111156137125782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161374691906149b3565b60405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261378c57600085556137d3565b82601f106137a557805160ff19168380011785556137d3565b828001600101855582156137d3579182015b828111156137d25782518255916020019190600101906137b7565b5b5090506137e0919061382c565b5090565b50805460018160011615610100020316600290046000825580601f1061380a5750613829565b601f016020900490600052602060002090810190613828919061382c565b5b50565b5b8082111561384557600081600090555060010161382d565b5090565b600061385c61385784614e01565b614dd0565b90508281526020810184848401111561387457600080fd5b61387f848285614f4a565b509392505050565b600061389a61389584614e31565b614dd0565b9050828152602081018484840111156138b257600080fd5b6138bd848285614f4a565b509392505050565b6000813590506138d481614fda565b92915050565b6000813590506138e981614ff1565b92915050565b6000813590506138fe81615008565b92915050565b60008151905061391381615008565b92915050565b600082601f83011261392a57600080fd5b813561393a848260208601613849565b91505092915050565b600082601f83011261395457600080fd5b8135613964848260208601613887565b91505092915050565b60008135905061397c8161501f565b92915050565b60006020828403121561399457600080fd5b60006139a2848285016138c5565b91505092915050565b600080604083850312156139be57600080fd5b60006139cc858286016138c5565b92505060206139dd858286016138c5565b9150509250929050565b6000806000606084860312156139fc57600080fd5b6000613a0a868287016138c5565b9350506020613a1b868287016138c5565b9250506040613a2c8682870161396d565b9150509250925092565b60008060008060808587031215613a4c57600080fd5b6000613a5a878288016138c5565b9450506020613a6b878288016138c5565b9350506040613a7c8782880161396d565b925050606085013567ffffffffffffffff811115613a9957600080fd5b613aa587828801613919565b91505092959194509250565b60008060408385031215613ac457600080fd5b6000613ad2858286016138c5565b9250506020613ae3858286016138da565b9150509250929050565b60008060408385031215613b0057600080fd5b6000613b0e858286016138c5565b9250506020613b1f8582860161396d565b9150509250929050565b600060208284031215613b3b57600080fd5b6000613b49848285016138da565b91505092915050565b600060208284031215613b6457600080fd5b6000613b72848285016138ef565b91505092915050565b600060208284031215613b8d57600080fd5b6000613b9b84828501613904565b91505092915050565b600060208284031215613bb657600080fd5b600082013567ffffffffffffffff811115613bd057600080fd5b613bdc84828501613943565b91505092915050565b600060208284031215613bf757600080fd5b6000613c058482850161396d565b91505092915050565b60008060408385031215613c2157600080fd5b6000613c2f8582860161396d565b925050602083013567ffffffffffffffff811115613c4c57600080fd5b613c5885828601613943565b9150509250929050565b613c6b81614ed6565b82525050565b613c82613c7d82614ed6565b614f8c565b82525050565b613c9181614ec4565b82525050565b613ca081614ee8565b82525050565b6000613cb182614e76565b613cbb8185614e8c565b9350613ccb818560208601614f59565b613cd481614fbc565b840191505092915050565b6000613cea82614e76565b613cf48185614e9d565b9350613d04818560208601614f59565b80840191505092915050565b6000613d1b82614e81565b613d258185614ea8565b9350613d35818560208601614f59565b613d3e81614fbc565b840191505092915050565b6000613d5482614e81565b613d5e8185614eb9565b9350613d6e818560208601614f59565b80840191505092915050565b600081546001811660008114613d975760018114613dbc57613e00565b607f6002830416613da88187614eb9565b955060ff1983168652808601935050613e00565b60028204613dca8187614eb9565b9550613dd585614e61565b60005b82811015613df757815481890152600182019150602081019050613dd8565b82880195505050505b505092915050565b6000613e15602283614ea8565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613e7b603283614ea8565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613ee1601a83614ea8565b91507f4d696e743a20546f6b656e20616c72656164792065786973742e0000000000006000830152602082019050919050565b6000613f21602683614ea8565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613f87601c83614ea8565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613fc7602683614ea8565b91507f476976656177617920746f6b656e20686164206265656e20616c72656164792060008301527f6d696e74656400000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061402d602483614ea8565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614093601983614ea8565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006140d3601283614ea8565b91507f53616c65206973206e6f742061637469766500000000000000000000000000006000830152602082019050919050565b6000614113602683614ea8565b91507f416464726573733a20696e73756666696369656e742062616c616e636520666f60008301527f722063616c6c00000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614179602c83614ea8565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006141df602f83614ea8565b91507f4d696e7420616d6f756e742069732067726561746572207468616e207468652060008301527f746f6b656e20617661696c61626c6500000000000000000000000000000000006020830152604082019050919050565b6000614245603883614ea8565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006142ab602a83614ea8565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614311602283614ea8565b91507f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614377602083614ea8565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006143b7602183614ea8565b91507f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008301527f77000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061441d602c83614ea8565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614483602c83614ea8565b91507f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006144e9602083614ea8565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614529602983614ea8565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061458f602f83614ea8565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006145f5602183614ea8565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061465b602283614ea8565b91507f4d696e696d756d203120746f6b656e73206e65656420746f206265206d696e7460008301527f65640000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006146c1602083614ea8565b91507f4275726e3a2063616c6c6572206973206e6f7420746f6b656e206f776e65722e6000830152602082019050919050565b6000614701603183614ea8565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614767601d83614ea8565b91507f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006000830152602082019050919050565b60006147a7601b83614ea8565b91507f4275726e3a20746f6b656e20646f6573206e6f742065786973742e00000000006000830152602082019050919050565b60006147e7601b83614ea8565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b6000614827601883614ea8565b91507f496e73756666696369656e742045544820746f206d696e7400000000000000006000830152602082019050919050565b6000614867601383614ea8565b91507f4d61782032302064696e6f206174206f6e6365000000000000000000000000006000830152602082019050919050565b6148a381614f40565b82525050565b6148ba6148b582614f40565b614fb0565b82525050565b60006148cc8284613c71565b60148201915081905092915050565b60006148e78284613cdf565b915081905092915050565b60006148fe8285613d7a565b915061490a8284613d49565b91508190509392505050565b600061492282846148a9565b60208201915081905092915050565b60006020820190506149466000830184613c88565b92915050565b60006080820190506149616000830187613c62565b61496e6020830186613c88565b61497b604083018561489a565b818103606083015261498d8184613ca6565b905095945050505050565b60006020820190506149ad6000830184613c97565b92915050565b600060208201905081810360008301526149cd8184613d10565b905092915050565b600060208201905081810360008301526149ee81613e08565b9050919050565b60006020820190508181036000830152614a0e81613e6e565b9050919050565b60006020820190508181036000830152614a2e81613ed4565b9050919050565b60006020820190508181036000830152614a4e81613f14565b9050919050565b60006020820190508181036000830152614a6e81613f7a565b9050919050565b60006020820190508181036000830152614a8e81613fba565b9050919050565b60006020820190508181036000830152614aae81614020565b9050919050565b60006020820190508181036000830152614ace81614086565b9050919050565b60006020820190508181036000830152614aee816140c6565b9050919050565b60006020820190508181036000830152614b0e81614106565b9050919050565b60006020820190508181036000830152614b2e8161416c565b9050919050565b60006020820190508181036000830152614b4e816141d2565b9050919050565b60006020820190508181036000830152614b6e81614238565b9050919050565b60006020820190508181036000830152614b8e8161429e565b9050919050565b60006020820190508181036000830152614bae81614304565b9050919050565b60006020820190508181036000830152614bce8161436a565b9050919050565b60006020820190508181036000830152614bee816143aa565b9050919050565b60006020820190508181036000830152614c0e81614410565b9050919050565b60006020820190508181036000830152614c2e81614476565b9050919050565b60006020820190508181036000830152614c4e816144dc565b9050919050565b60006020820190508181036000830152614c6e8161451c565b9050919050565b60006020820190508181036000830152614c8e81614582565b9050919050565b60006020820190508181036000830152614cae816145e8565b9050919050565b60006020820190508181036000830152614cce8161464e565b9050919050565b60006020820190508181036000830152614cee816146b4565b9050919050565b60006020820190508181036000830152614d0e816146f4565b9050919050565b60006020820190508181036000830152614d2e8161475a565b9050919050565b60006020820190508181036000830152614d4e8161479a565b9050919050565b60006020820190508181036000830152614d6e816147da565b9050919050565b60006020820190508181036000830152614d8e8161481a565b9050919050565b60006020820190508181036000830152614dae8161485a565b9050919050565b6000602082019050614dca600083018461489a565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614df757614df6614fba565b5b8060405250919050565b600067ffffffffffffffff821115614e1c57614e1b614fba565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614e4c57614e4b614fba565b5b601f19601f8301169050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ecf82614f20565b9050919050565b6000614ee182614f20565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f77578082015181840152602081019050614f5c565b83811115614f86576000848401525b50505050565b6000614f9782614f9e565b9050919050565b6000614fa982614fcd565b9050919050565b6000819050919050565bfe5b6000601f19601f8301169050919050565b60008160601b9050919050565b614fe381614ec4565b8114614fee57600080fd5b50565b614ffa81614ee8565b811461500557600080fd5b50565b61501181614ef4565b811461501c57600080fd5b50565b61502881614f40565b811461503357600080fd5b5056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220ce0afb6f5ab682aad6fc8cb9116ebcdd45d1bccbef57fd96b3ad5e93e2977c8664736f6c63430007060033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000001109700e90a653e01053f7247b8b80710d8bb3bd0000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenBaseUri (string):
Arg [1] : _fundWallet (address): 0x1109700E90A653e01053F7247b8b80710d8bb3BD

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000001109700e90a653e01053f7247b8b80710d8bb3bd
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

62039:5123:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10263:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47036:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49723:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49267:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66738:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48761:203;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50597:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48531:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62367:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50973:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64494:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65548:156;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64809:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49041:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66871:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62150:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64927:123;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46800:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62301:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48358:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66500:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46523:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61394:148;;;;;;;;;;;;;:::i;:::-;;60752:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62265:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62735:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47197:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66410:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63267:270;;;;;;;;;;;;;:::i;:::-;;50008:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65058:111;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51195:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65177:363;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62233:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47364:755;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62119:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50374:156;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66320:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66617:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61697:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62181:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10263:142;10340:4;10364:20;:33;10385:11;10364:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10357:40;;10263:142;;;:::o;47036:92::-;47082:13;47115:5;47108:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47036:92;:::o;49723:213::-;49791:7;49819:16;49827:7;49819;:16::i;:::-;49811:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49904:15;:24;49920:7;49904:24;;;;;;;;;;;;;;;;;;;;;49897:31;;49723:213;;;:::o;49267:390::-;49348:13;49364:16;49372:7;49364;:16::i;:::-;49348:32;;49405:5;49399:11;;:2;:11;;;;49391:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49485:5;49469:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;49494:37;49511:5;49518:12;:10;:12::i;:::-;49494:16;:37::i;:::-;49469:62;49461:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;49628:21;49637:2;49641:7;49628:8;:21::i;:::-;49267:390;;;:::o;66738:125::-;60974:12;:10;:12::i;:::-;60964:22;;:6;;;;;;;;;;;:22;;;60956:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;66827:28:::1;66840:8;66850:4;66827:12;:28::i;:::-;66738:125:::0;;:::o;48761:203::-;48814:7;48935:21;:12;:19;:21::i;:::-;48928:28;;48761:203;:::o;50597:305::-;50758:41;50777:12;:10;:12::i;:::-;50791:7;50758:18;:41::i;:::-;50750:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;50866:28;50876:4;50882:2;50886:7;50866:9;:28::i;:::-;50597:305;;;:::o;48531:154::-;48620:7;48647:30;48671:5;48647:13;:20;48661:5;48647:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;48640:37;;48531:154;;;;:::o;62367:27::-;;;;;;;;;;;;;:::o;50973:151::-;51077:39;51094:4;51100:2;51104:7;51077:39;;;;;;;;;;;;:16;:39::i;:::-;50973:151;;;:::o;64494:230::-;64552:17;64560:8;64552:7;:17::i;:::-;64544:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;64641:12;:10;:12::i;:::-;64620:33;;:17;64628:8;64620:7;:17::i;:::-;:33;;;64612:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;64701:15;64707:8;64701:5;:15::i;:::-;64494:230;:::o;65548:156::-;65634:4;65658:38;65677:8;65687;65658:18;:38::i;:::-;65651:45;;65548:156;;;;:::o;64809:106::-;64866:4;64890:17;64898:8;64890:7;:17::i;:::-;64883:24;;64809:106;;;:::o;49041:164::-;49108:7;49129:15;49150:22;49166:5;49150:12;:15;;:22;;;;:::i;:::-;49128:44;;;49190:7;49183:14;;;49041:164;;;:::o;66871:103::-;60974:12;:10;:12::i;:::-;60964:22;;:6;;;;;;;;;;;:22;;;60956:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;66945:21:::1;66957:8;66945:11;:21::i;:::-;66871:103:::0;:::o;62150:24::-;;;;;;;;;;;;;:::o;64927:123::-;64983:7;65010:32;65031:10;;62224:5;65010:20;;:32;;;;:::i;:::-;65003:39;;64927:123;:::o;46800:169::-;46864:7;46891:70;46908:7;46891:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;46884:77;;46800:169;;;:::o;62301:25::-;;;;;;;;;;;;;:::o;48358:89::-;48398:13;48431:8;48424:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48358:89;:::o;66500:109::-;60974:12;:10;:12::i;:::-;60964:22;;:6;;;;;;;;;;;:22;;;60956:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;66590:11:::1;66577:10;;:24;;;;;;;;;;;;;;;;;;66500:109:::0;:::o;46523:215::-;46587:7;46632:1;46615:19;;:5;:19;;;;46607:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46701:29;:13;:20;46715:5;46701:20;;;;;;;;;;;;;;;:27;:29::i;:::-;46694:36;;46523:215;;;:::o;61394:148::-;60974:12;:10;:12::i;:::-;60964:22;;:6;;;;;;;;;;;:22;;;60956:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;61501:1:::1;61464:40;;61485:6;;;;;;;;;;;61464:40;;;;;;;;;;;;61532:1;61515:6;;:19;;;;;;;;;;;;;;;;;;61394:148::o:0;60752:79::-;60790:7;60817:6;;;;;;;;;;;60810:13;;60752:79;:::o;62265:29::-;;;;:::o;62735:524::-;62815:1;62804:8;:12;62796:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;62874:12;;;;;;;;;;;:45;;;;62909:10;62890:15;:29;;62874:45;62866:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;62970:25;:23;:25::i;:::-;62958:8;:37;;62950:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;63072:2;63060:8;:14;;63052:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;63138:9;63111:23;63125:8;63111:9;;:13;;:23;;;;:::i;:::-;:36;63103:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;63186:9;63181:74;63205:8;63201:1;:12;63181:74;;;63226:23;63236:12;:10;:12::i;:::-;63226:9;:23::i;:::-;63215:3;;;;;;;63181:74;;;;62735:524;:::o;47197:96::-;47245:13;47278:7;47271:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47197:96;:::o;66410:82::-;60974:12;:10;:12::i;:::-;60964:22;;:6;;;;;;;;;;;:22;;;60956:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;66480:4:::1;66465:12;;:19;;;;;;;;;;;;;;;;;;66410:82:::0;:::o;63267:270::-;60974:12;:10;:12::i;:::-;60964:22;;:6;;;;;;;;;;;:22;;;60956:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;63330:15:::1;;;;;;;;;;;63329:16;63321:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;63399:10;;:12;;;;;;;;;;;;;63422:26;63428:7;:5;:7::i;:::-;63437:10;;63422:5;:26::i;:::-;63459:46;63472:10;;63484:20;63493:10;;63484:8;:20::i;:::-;63459:12;:46::i;:::-;63528:4;63510:15;;:22;;;;;;;;;;;;;;;;;;63267:270::o:0;50008:295::-;50123:12;:10;:12::i;:::-;50111:24;;:8;:24;;;;50103:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;50223:8;50178:18;:32;50197:12;:10;:12::i;:::-;50178:32;;;;;;;;;;;;;;;:42;50211:8;50178:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;50276:8;50247:48;;50262:12;:10;:12::i;:::-;50247:48;;;50286:8;50247:48;;;;;;:::i;:::-;;;;;;;;50008:295;;:::o;65058:111::-;65107:4;62224:5;65131:10;;:30;65124:37;;65058:111;:::o;51195:285::-;51327:41;51346:12;:10;:12::i;:::-;51360:7;51327:18;:41::i;:::-;51319:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;51433:39;51447:4;51453:2;51457:7;51466:5;51433:13;:39::i;:::-;51195:285;;;;:::o;65177:363::-;65224:19;65265:18;:16;:18::i;:::-;65264:19;65256:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;62224:5;65329:11;;:31;:64;;;;;62224:5;65364:10;;:29;65329:64;65326:207;;;65424:1;65410:15;;65326:207;;;62224:5;65446:10;;:29;65443:90;;;65520:1;65506:11;;:15;65492:29;;65443:90;65326:207;65177:363;:::o;62233:25::-;;;;:::o;47364:755::-;47429:13;47463:16;47471:7;47463;:16::i;:::-;47455:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;47544:23;47570:10;:19;47581:7;47570:19;;;;;;;;;;;47544:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47691:1;47671:8;47665:22;;;;;;;;;;;;;;;;:27;47661:76;;;47716:9;47709:16;;;;;47661:76;47867:1;47847:9;47841:23;:27;47837:112;;;47916:8;47926:9;47899:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47885:52;;;;;47837:112;48081:8;48091:18;:7;:16;:18::i;:::-;48064:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48050:61;;;47364:755;;;;:::o;62119:24::-;;;;:::o;50374:156::-;50463:4;50487:18;:25;50506:5;50487:25;;;;;;;;;;;;;;;:35;50513:8;50487:35;;;;;;;;;;;;;;;;;;;;;;;;;50480:42;;50374:156;;;;:::o;66320:82::-;60974:12;:10;:12::i;:::-;60964:22;;:6;;;;;;;;;;;:22;;;60956:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;66389:5:::1;66374:12;;:20;;;;;;;;;;;;;;;;;;66320:82:::0;:::o;66617:113::-;60974:12;:10;:12::i;:::-;60964:22;;:6;;;;;;;;;;;:22;;;60956:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;66693:10:::1;;;;;;;;;;;66685:28;;:37;66714:7;66685:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;66617:113:::0;:::o;61697:244::-;60974:12;:10;:12::i;:::-;60964:22;;:6;;;;;;;;;;;:22;;;60956:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;61806:1:::1;61786:22;;:8;:22;;;;61778:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;61896:8;61867:38;;61888:6;;;;;;;;;;;61867:38;;;;;;;;;;;;61925:8;61916:6;;:17;;;;;;;;;;;;;;;;;;61697:244:::0;:::o;62181:48::-;62224:5;62181:48;:::o;52947:119::-;53004:4;53028:30;53050:7;53028:12;:21;;:30;;;;:::i;:::-;53021:37;;52947:119;;;:::o;643:106::-;696:15;731:10;724:17;;643:106;:::o;58774:158::-;58867:2;58840:15;:24;58856:7;58840:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;58916:7;58912:2;58885:39;;58894:16;58902:7;58894;:16::i;:::-;58885:39;;;;;;;;;;;;58774:158;;:::o;57052:215::-;57152:16;57160:7;57152;:16::i;:::-;57144:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;57250:9;57228:10;:19;57239:7;57228:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;57052:215;;:::o;40419:123::-;40488:7;40515:19;40523:3;:10;;40515:7;:19::i;:::-;40508:26;;40419:123;;;:::o;53233:333::-;53318:4;53343:16;53351:7;53343;:16::i;:::-;53335:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;53419:13;53435:16;53443:7;53435;:16::i;:::-;53419:32;;53481:5;53470:16;;:7;:16;;;:51;;;;53514:7;53490:31;;:20;53502:7;53490:11;:20::i;:::-;:31;;;53470:51;:87;;;;53525:32;53542:5;53549:7;53525:16;:32::i;:::-;53470:87;53462:96;;;53233:333;;;;:::o;56322:574::-;56440:4;56420:24;;:16;56428:7;56420;:16::i;:::-;:24;;;56412:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;56523:1;56509:16;;:2;:16;;;;56501:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;56579:39;56600:4;56606:2;56610:7;56579:20;:39::i;:::-;56683:29;56700:1;56704:7;56683:8;:29::i;:::-;56725:35;56752:7;56725:13;:19;56739:4;56725:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;56771:30;56793:7;56771:13;:17;56785:2;56771:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;56814:29;56831:7;56840:2;56814:12;:16;;:29;;;;;:::i;:::-;;56880:7;56876:2;56861:27;;56870:4;56861:27;;;;;;;;;;;;56322:574;;;:::o;33005:137::-;33076:7;33111:22;33115:3;:10;;33127:5;33111:3;:22::i;:::-;33103:31;;33096:38;;33005:137;;;;:::o;55465:520::-;55525:13;55541:16;55549:7;55541;:16::i;:::-;55525:32;;55570:48;55591:5;55606:1;55610:7;55570:20;:48::i;:::-;55659:29;55676:1;55680:7;55659:8;:29::i;:::-;55778:1;55747:10;:19;55758:7;55747:19;;;;;;;;;;;55741:33;;;;;;;;;;;;;;;;:38;55737:97;;55803:10;:19;55814:7;55803:19;;;;;;;;;;;;55796:26;;;;:::i;:::-;55737:97;55846:36;55874:7;55846:13;:20;55860:5;55846:20;;;;;;;;;;;;;;;:27;;:36;;;;:::i;:::-;;55895:28;55915:7;55895:12;:19;;:28;;;;:::i;:::-;;55969:7;55965:1;55941:36;;55950:5;55941:36;;;;;;;;;;;;55465:520;;:::o;40881:227::-;40961:7;40970;40991:11;41004:13;41021:22;41025:3;:10;;41037:5;41021:3;:22::i;:::-;40990:53;;;;41070:3;41062:12;;41092:5;41084:14;;41054:46;;;;;;40881:227;;;;;:::o;57497:100::-;57581:8;57570;:19;;;;;;;;;;;;:::i;:::-;;57497:100;:::o;12426:136::-;12484:7;12511:43;12515:1;12518;12511:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;12504:50;;12426:136;;;;:::o;41543:204::-;41650:7;41693:44;41698:3;:10;;41718:3;41710:12;;41724;41693:4;:44::i;:::-;41685:53;;41670:69;;41543:204;;;;;:::o;32547:114::-;32607:7;32634:19;32642:3;:10;;32634:7;:19::i;:::-;32627:26;;32547:114;;;:::o;13316:471::-;13374:7;13624:1;13619;:6;13615:47;;;13649:1;13642:8;;;;13615:47;13674:9;13690:1;13686;:5;13674:17;;13719:1;13714;13710;:5;;;;;;:10;13702:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;13778:1;13771:8;;;13316:471;;;;;:::o;63549:482::-;63617:1;63603:10;;:15;63600:240;;;63649:72;63656:1;62224:5;63719:1;63701:12;:10;:12::i;:::-;63677:39;;:43;63649:6;:72::i;:::-;63635:11;:86;;;;63753:11;;63736:14;:28;;;;63600:240;;;63811:17;:15;:17::i;:::-;63797:11;:31;;;;63600:240;63850:10;;:12;;;;;;;;;;;;;63882:19;63890:10;;63882:7;:19::i;:::-;63881:20;63873:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;63943:22;63949:3;63954:10;;63943:5;:22::i;:::-;63976:47;63989:10;;64001:21;64010:11;;64001:8;:21::i;:::-;63976:12;:47::i;:::-;63549:482;:::o;54832:404::-;54926:1;54912:16;;:2;:16;;;;54904:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;54985:16;54993:7;54985;:16::i;:::-;54984:17;54976:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;55047:45;55076:1;55080:2;55084:7;55047:20;:45::i;:::-;55105:30;55127:7;55105:13;:17;55119:2;55105:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;55148:29;55165:7;55174:2;55148:12;:16;;:29;;;;;:::i;:::-;;55220:7;55216:2;55195:33;;55212:1;55195:33;;;;;;;;;;;;54832:404;;:::o;64039:447::-;64091:27;64135:1;64129:2;:7;64125:35;;;64144:10;;;;;;;;;;;;;;;;;;;;;64125:35;64164:9;64176:2;64164:14;;64183:11;64199:45;64211:1;64206;:6;64199:45;;64220:5;;;;;;;64236:2;64231:7;;;;;;;;;64199:45;;;64248:17;64278:3;64268:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64248:34;;64287:9;64299:3;64287:15;;64307:151;64320:1;64314:2;:7;64307:151;;64337:1;64333;:5;64329:9;;64344:10;64386:2;64380;64375;:7;;;;;;64374:14;64369:2;:19;64358:2;:31;64344:46;;64396:9;64415:4;64408:12;;64396:24;;64436:2;64426:4;64431:1;64426:7;;;;;;;;;;;:12;;;;;;;;;;;64450:2;64444:8;;;;;;;;;64307:151;;;;;64476:4;64462:19;;;;;;64039:447;;;;:::o;52362:272::-;52476:28;52486:4;52492:2;52496:7;52476:9;:28::i;:::-;52523:48;52546:4;52552:2;52556:7;52565:5;52523:22;:48::i;:::-;52515:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;52362:272;;;;:::o;42007:744::-;42063:13;42293:1;42284:5;:10;42280:53;;;42311:10;;;;;;;;;;;;;;;;;;;;;42280:53;42343:12;42358:5;42343:20;;42374:14;42399:78;42414:1;42406:4;:9;42399:78;;42432:8;;;;;;;42463:2;42455:10;;;;;;;;;42399:78;;;42487:19;42519:6;42509:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42487:39;;42537:13;42562:1;42553:6;:10;42537:26;;42581:5;42574:12;;42597:115;42612:1;42604:4;:9;42597:115;;42671:2;42664:4;:9;;;;;;42659:2;:14;42648:27;;42630:6;42637:7;;;;;;;42630:15;;;;;;;;;;;:45;;;;;;;;;;;42698:2;42690:10;;;;;;;;;42597:115;;;42736:6;42722:21;;;;;;42007:744;;;;:::o;40180:151::-;40264:4;40288:35;40298:3;:10;;40318:3;40310:12;;40288:9;:35::i;:::-;40281:42;;40180:151;;;;:::o;37802:110::-;37858:7;37885:3;:12;;:19;;;;37878:26;;37802:110;;;:::o;66982:177::-;67103:48;67130:5;67137:3;67142:8;67103:26;:48::i;:::-;66982:177;;;:::o;32092:137::-;32162:4;32186:35;32194:3;:10;;32214:5;32206:14;;32186:7;:35::i;:::-;32179:42;;32092:137;;;;:::o;31785:131::-;31852:4;31876:32;31881:3;:10;;31901:5;31893:14;;31876:4;:32::i;:::-;31869:39;;31785:131;;;;:::o;39612:176::-;39701:4;39725:55;39730:3;:10;;39750:3;39742:12;;39772:5;39764:14;;39756:23;;39725:4;:55::i;:::-;39718:62;;39612:176;;;;;:::o;28079:204::-;28146:7;28195:5;28174:3;:11;;:18;;;;:26;28166:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28257:3;:11;;28269:5;28257:18;;;;;;;;;;;;;;;;28250:25;;28079:204;;;;:::o;39954:142::-;40031:4;40055:33;40063:3;:10;;40083:3;40075:12;;40055:7;:33::i;:::-;40048:40;;39954:142;;;;:::o;38267:279::-;38334:7;38343;38393:5;38371:3;:12;;:19;;;;:27;38363:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;38450:22;38475:3;:12;;38488:5;38475:19;;;;;;;;;;;;;;;;;;38450:44;;38513:5;:10;;;38525:5;:12;;;38505:33;;;;;38267:279;;;;;:::o;12865:192::-;12951:7;12984:1;12979;:6;;12987:12;12971:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;13011:9;13027:1;13023;:5;13011:17;;13048:1;13041:8;;;12865:192;;;;;:::o;38969:319::-;39063:7;39083:16;39102:3;:12;;:17;39115:3;39102:17;;;;;;;;;;;;39083:36;;39150:1;39138:8;:13;;39153:12;39130:36;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;39220:3;:12;;39244:1;39233:8;:12;39220:26;;;;;;;;;;;;;;;;;;:33;;;39213:40;;;38969:319;;;;;:::o;27626:109::-;27682:7;27709:3;:11;;:18;;;;27702:25;;27626:109;;;:::o;65730:523::-;65822:7;65836:12;66184:5;66161:12;66133:15;66113:12;:10;:12::i;:::-;66096:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;66086:41;;;;;;66078:50;;66077:72;;;;;;66051:14;66023:15;66001:14;65984:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;65974:43;;;;;;65966:52;;65965:74;;;;;;65937:16;65911:15;:42;:129;:154;:239;:262;:278;65886:311;;;;;;;;:::i;:::-;;;;;;;;;;;;;65869:335;;;;;;65855:355;;65836:374;;66244:4;66222:19;66236:4;66231:2;:9;66222:4;:8;;:19;;;;:::i;:::-;:26;66215:33;;;65730:523;;;;;:::o;58162:604::-;58283:4;58310:15;:2;:13;;;:15::i;:::-;58305:60;;58349:4;58342:11;;;;58305:60;58375:23;58401:252;58454:45;;;58514:12;:10;:12::i;:::-;58541:4;58560:7;58582:5;58417:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58401:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;58375:278;;58664:13;58691:10;58680:32;;;;;;;;;;;;:::i;:::-;58664:48;;43520:10;58741:16;;58731:26;;;:6;:26;;;;58723:35;;;;58162:604;;;;;;;:::o;37582:125::-;37653:4;37698:1;37677:3;:12;;:17;37690:3;37677:17;;;;;;;;;;;;:22;;37670:29;;37582:125;;;;:::o;59545:93::-;;;;:::o;25781:1544::-;25847:4;25965:18;25986:3;:12;;:19;25999:5;25986:19;;;;;;;;;;;;25965:40;;26036:1;26022:10;:15;26018:1300;;26384:21;26421:1;26408:10;:14;26384:38;;26437:17;26478:1;26457:3;:11;;:18;;;;:22;26437:42;;26724:17;26744:3;:11;;26756:9;26744:22;;;;;;;;;;;;;;;;26724:42;;26890:9;26861:3;:11;;26873:13;26861:26;;;;;;;;;;;;;;;:38;;;;27009:1;26993:13;:17;26967:3;:12;;:23;26980:9;26967:23;;;;;;;;;;;:43;;;;27119:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;27214:3;:12;;:19;27227:5;27214:19;;;;;;;;;;;27207:26;;;27257:4;27250:11;;;;;;;;26018:1300;27301:5;27294:12;;;25781:1544;;;;;:::o;25191:414::-;25254:4;25276:21;25286:3;25291:5;25276:9;:21::i;:::-;25271:327;;25314:3;:11;;25331:5;25314:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25497:3;:11;;:18;;;;25475:3;:12;;:19;25488:5;25475:19;;;;;;;;;;;:40;;;;25537:4;25530:11;;;;25271:327;25581:5;25574:12;;25191:414;;;;;:::o;35082:692::-;35158:4;35274:16;35293:3;:12;;:17;35306:3;35293:17;;;;;;;;;;;;35274:36;;35339:1;35327:8;:13;35323:444;;;35394:3;:12;;35412:38;;;;;;;;35429:3;35412:38;;;;35442:5;35412:38;;;35394:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35609:3;:12;;:19;;;;35589:3;:12;;:17;35602:3;35589:17;;;;;;;;;;;:39;;;;35650:4;35643:11;;;;;35323:444;35723:5;35687:3;:12;;35711:1;35700:8;:12;35687:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;35750:5;35743:12;;;35082:692;;;;;;:::o;35949:1549::-;36013:4;36129:16;36148:3;:12;;:17;36161:3;36148:17;;;;;;;;;;;;36129:36;;36194:1;36182:8;:13;36178:1313;;36543:21;36578:1;36567:8;:12;36543:36;;36594:17;36636:1;36614:3;:12;;:19;;;;:23;36594:43;;36882:26;36911:3;:12;;36924:9;36911:23;;;;;;;;;;;;;;;;;;36882:52;;37059:9;37029:3;:12;;37042:13;37029:27;;;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;;37183:1;37167:13;:17;37136:3;:12;;:28;37149:9;:14;;;37136:28;;;;;;;;;;;:48;;;;37293:3;:12;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37389:3;:12;;:17;37402:3;37389:17;;;;;;;;;;;37382:24;;;37430:4;37423:11;;;;;;;;36178:1313;37474:5;37467:12;;;35949:1549;;;;;:::o;15634:130::-;15692:7;15719:37;15723:1;15726;15719:37;;;;;;;;;;;;;;;;;:3;:37::i;:::-;15712:44;;15634:130;;;;:::o;17205:422::-;17265:4;17473:12;17584:7;17572:20;17564:28;;17618:1;17611:4;:8;17604:15;;;17205:422;;;:::o;20123:195::-;20226:12;20258:52;20280:6;20288:4;20294:1;20297:12;20258:21;:52::i;:::-;20251:59;;20123:195;;;;;:::o;27411:129::-;27484:4;27531:1;27508:3;:12;;:19;27521:5;27508:19;;;;;;;;;;;;:24;;27501:31;;27411:129;;;;:::o;16249:166::-;16335:7;16368:1;16363;:6;;16371:12;16355:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;16406:1;16402;:5;;;;;;16395:12;;16249:166;;;;;:::o;21175:530::-;21302:12;21360:5;21335:21;:30;;21327:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;21427:18;21438:6;21427:10;:18::i;:::-;21419:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;21553:12;21567:23;21594:6;:11;;21614:5;21622:4;21594:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21552:75;;;;21645:52;21663:7;21672:10;21684:12;21645:17;:52::i;:::-;21638:59;;;;21175:530;;;;;;:::o;22711:742::-;22826:12;22855:7;22851:595;;;22886:10;22879:17;;;;22851:595;23020:1;23000:10;:17;:21;22996:439;;;23263:10;23257:17;23324:15;23311:10;23307:2;23303:19;23296:44;23211:148;23406:12;23399:20;;;;;;;;;;;:::i;:::-;;;;;;;;22711:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:256::-;;4986:2;4974:9;4965:7;4961:23;4957:32;4954:2;;;5002:1;4999;4992:12;4954:2;5045:1;5070:50;5112:7;5103:6;5092:9;5088:22;5070:50;:::i;:::-;5060:60;;5016:114;4944:193;;;;:::o;5143:260::-;;5250:2;5238:9;5229:7;5225:23;5221:32;5218:2;;;5266:1;5263;5256:12;5218:2;5309:1;5334:52;5378:7;5369:6;5358:9;5354:22;5334:52;:::i;:::-;5324:62;;5280:116;5208:195;;;;:::o;5409:282::-;;5527:2;5515:9;5506:7;5502:23;5498:32;5495:2;;;5543:1;5540;5533:12;5495:2;5586:1;5611:63;5666:7;5657:6;5646:9;5642:22;5611:63;:::i;:::-;5601:73;;5557:127;5485:206;;;;:::o;5697:375::-;;5815:2;5803:9;5794:7;5790:23;5786:32;5783:2;;;5831:1;5828;5821:12;5783:2;5902:1;5891:9;5887:17;5874:31;5932:18;5924:6;5921:30;5918:2;;;5964:1;5961;5954:12;5918:2;5992:63;6047:7;6038:6;6027:9;6023:22;5992:63;:::i;:::-;5982:73;;5845:220;5773:299;;;;:::o;6078:262::-;;6186:2;6174:9;6165:7;6161:23;6157:32;6154:2;;;6202:1;6199;6192:12;6154:2;6245:1;6270:53;6315:7;6306:6;6295:9;6291:22;6270:53;:::i;:::-;6260:63;;6216:117;6144:196;;;;:::o;6346:520::-;;;6481:2;6469:9;6460:7;6456:23;6452:32;6449:2;;;6497:1;6494;6487:12;6449:2;6540:1;6565:53;6610:7;6601:6;6590:9;6586:22;6565:53;:::i;:::-;6555:63;;6511:117;6695:2;6684:9;6680:18;6667:32;6726:18;6718:6;6715:30;6712:2;;;6758:1;6755;6748:12;6712:2;6786:63;6841:7;6832:6;6821:9;6817:22;6786:63;:::i;:::-;6776:73;;6638:221;6439:427;;;;;:::o;6872:142::-;6975:32;7001:5;6975:32;:::i;:::-;6970:3;6963:45;6953:61;;:::o;7020:189::-;7141:61;7169:32;7195:5;7169:32;:::i;:::-;7141:61;:::i;:::-;7136:3;7129:74;7119:90;;:::o;7215:118::-;7302:24;7320:5;7302:24;:::i;:::-;7297:3;7290:37;7280:53;;:::o;7339:109::-;7420:21;7435:5;7420:21;:::i;:::-;7415:3;7408:34;7398:50;;:::o;7454:360::-;;7568:38;7600:5;7568:38;:::i;:::-;7622:70;7685:6;7680:3;7622:70;:::i;:::-;7615:77;;7701:52;7746:6;7741:3;7734:4;7727:5;7723:16;7701:52;:::i;:::-;7778:29;7800:6;7778:29;:::i;:::-;7773:3;7769:39;7762:46;;7544:270;;;;;:::o;7820:373::-;;7952:38;7984:5;7952:38;:::i;:::-;8006:88;8087:6;8082:3;8006:88;:::i;:::-;7999:95;;8103:52;8148:6;8143:3;8136:4;8129:5;8125:16;8103:52;:::i;:::-;8180:6;8175:3;8171:16;8164:23;;7928:265;;;;;:::o;8199:364::-;;8315:39;8348:5;8315:39;:::i;:::-;8370:71;8434:6;8429:3;8370:71;:::i;:::-;8363:78;;8450:52;8495:6;8490:3;8483:4;8476:5;8472:16;8450:52;:::i;:::-;8527:29;8549:6;8527:29;:::i;:::-;8522:3;8518:39;8511:46;;8291:272;;;;;:::o;8569:377::-;;8703:39;8736:5;8703:39;:::i;:::-;8758:89;8840:6;8835:3;8758:89;:::i;:::-;8751:96;;8856:52;8901:6;8896:3;8889:4;8882:5;8878:16;8856:52;:::i;:::-;8933:6;8928:3;8924:16;8917:23;;8679:267;;;;;:::o;8976:998::-;;9116:5;9110:12;9153:1;9142:9;9138:17;9169:1;9164:301;;;;9479:1;9474:494;;;;9131:837;;9164:301;9254:4;9250:1;9239:9;9235:17;9231:28;9279:89;9361:6;9356:3;9279:89;:::i;:::-;9272:96;;9412:4;9408:9;9397;9393:25;9388:3;9381:38;9448:6;9443:3;9439:16;9432:23;;9171:294;9164:301;;9474:494;9555:1;9544:9;9540:17;9577:89;9659:6;9654:3;9577:89;:::i;:::-;9570:96;;9694:38;9726:5;9694:38;:::i;:::-;9754:1;9768:154;9782:6;9779:1;9776:13;9768:154;;;9856:7;9850:14;9846:1;9841:3;9837:11;9830:35;9906:1;9897:7;9893:15;9882:26;;9804:4;9801:1;9797:12;9792:17;;9768:154;;;9951:6;9946:3;9942:16;9935:23;;9481:487;;;9131:837;;9083:891;;;;;:::o;9980:366::-;;10143:67;10207:2;10202:3;10143:67;:::i;:::-;10136:74;;10240:34;10236:1;10231:3;10227:11;10220:55;10306:4;10301:2;10296:3;10292:12;10285:26;10337:2;10332:3;10328:12;10321:19;;10126:220;;;:::o;10352:382::-;;10515:67;10579:2;10574:3;10515:67;:::i;:::-;10508:74;;10612:34;10608:1;10603:3;10599:11;10592:55;10678:20;10673:2;10668:3;10664:12;10657:42;10725:2;10720:3;10716:12;10709:19;;10498:236;;;:::o;10740:324::-;;10903:67;10967:2;10962:3;10903:67;:::i;:::-;10896:74;;11000:28;10996:1;10991:3;10987:11;10980:49;11055:2;11050:3;11046:12;11039:19;;10886:178;;;:::o;11070:370::-;;11233:67;11297:2;11292:3;11233:67;:::i;:::-;11226:74;;11330:34;11326:1;11321:3;11317:11;11310:55;11396:8;11391:2;11386:3;11382:12;11375:30;11431:2;11426:3;11422:12;11415:19;;11216:224;;;:::o;11446:326::-;;11609:67;11673:2;11668:3;11609:67;:::i;:::-;11602:74;;11706:30;11702:1;11697:3;11693:11;11686:51;11763:2;11758:3;11754:12;11747:19;;11592:180;;;:::o;11778:370::-;;11941:67;12005:2;12000:3;11941:67;:::i;:::-;11934:74;;12038:34;12034:1;12029:3;12025:11;12018:55;12104:8;12099:2;12094:3;12090:12;12083:30;12139:2;12134:3;12130:12;12123:19;;11924:224;;;:::o;12154:368::-;;12317:67;12381:2;12376:3;12317:67;:::i;:::-;12310:74;;12414:34;12410:1;12405:3;12401:11;12394:55;12480:6;12475:2;12470:3;12466:12;12459:28;12513:2;12508:3;12504:12;12497:19;;12300:222;;;:::o;12528:323::-;;12691:67;12755:2;12750:3;12691:67;:::i;:::-;12684:74;;12788:27;12784:1;12779:3;12775:11;12768:48;12842:2;12837:3;12833:12;12826:19;;12674:177;;;:::o;12857:316::-;;13020:67;13084:2;13079:3;13020:67;:::i;:::-;13013:74;;13117:20;13113:1;13108:3;13104:11;13097:41;13164:2;13159:3;13155:12;13148:19;;13003:170;;;:::o;13179:370::-;;13342:67;13406:2;13401:3;13342:67;:::i;:::-;13335:74;;13439:34;13435:1;13430:3;13426:11;13419:55;13505:8;13500:2;13495:3;13491:12;13484:30;13540:2;13535:3;13531:12;13524:19;;13325:224;;;:::o;13555:376::-;;13718:67;13782:2;13777:3;13718:67;:::i;:::-;13711:74;;13815:34;13811:1;13806:3;13802:11;13795:55;13881:14;13876:2;13871:3;13867:12;13860:36;13922:2;13917:3;13913:12;13906:19;;13701:230;;;:::o;13937:379::-;;14100:67;14164:2;14159:3;14100:67;:::i;:::-;14093:74;;14197:34;14193:1;14188:3;14184:11;14177:55;14263:17;14258:2;14253:3;14249:12;14242:39;14307:2;14302:3;14298:12;14291:19;;14083:233;;;:::o;14322:388::-;;14485:67;14549:2;14544:3;14485:67;:::i;:::-;14478:74;;14582:34;14578:1;14573:3;14569:11;14562:55;14648:26;14643:2;14638:3;14634:12;14627:48;14701:2;14696:3;14692:12;14685:19;;14468:242;;;:::o;14716:374::-;;14879:67;14943:2;14938:3;14879:67;:::i;:::-;14872:74;;14976:34;14972:1;14967:3;14963:11;14956:55;15042:12;15037:2;15032:3;15028:12;15021:34;15081:2;15076:3;15072:12;15065:19;;14862:228;;;:::o;15096:366::-;;15259:67;15323:2;15318:3;15259:67;:::i;:::-;15252:74;;15356:34;15352:1;15347:3;15343:11;15336:55;15422:4;15417:2;15412:3;15408:12;15401:26;15453:2;15448:3;15444:12;15437:19;;15242:220;;;:::o;15468:330::-;;15631:67;15695:2;15690:3;15631:67;:::i;:::-;15624:74;;15728:34;15724:1;15719:3;15715:11;15708:55;15789:2;15784:3;15780:12;15773:19;;15614:184;;;:::o;15804:365::-;;15967:67;16031:2;16026:3;15967:67;:::i;:::-;15960:74;;16064:34;16060:1;16055:3;16051:11;16044:55;16130:3;16125:2;16120:3;16116:12;16109:25;16160:2;16155:3;16151:12;16144:19;;15950:219;;;:::o;16175:376::-;;16338:67;16402:2;16397:3;16338:67;:::i;:::-;16331:74;;16435:34;16431:1;16426:3;16422:11;16415:55;16501:14;16496:2;16491:3;16487:12;16480:36;16542:2;16537:3;16533:12;16526:19;;16321:230;;;:::o;16557:376::-;;16720:67;16784:2;16779:3;16720:67;:::i;:::-;16713:74;;16817:34;16813:1;16808:3;16804:11;16797:55;16883:14;16878:2;16873:3;16869:12;16862:36;16924:2;16919:3;16915:12;16908:19;;16703:230;;;:::o;16939:330::-;;17102:67;17166:2;17161:3;17102:67;:::i;:::-;17095:74;;17199:34;17195:1;17190:3;17186:11;17179:55;17260:2;17255:3;17251:12;17244:19;;17085:184;;;:::o;17275:373::-;;17438:67;17502:2;17497:3;17438:67;:::i;:::-;17431:74;;17535:34;17531:1;17526:3;17522:11;17515:55;17601:11;17596:2;17591:3;17587:12;17580:33;17639:2;17634:3;17630:12;17623:19;;17421:227;;;:::o;17654:379::-;;17817:67;17881:2;17876:3;17817:67;:::i;:::-;17810:74;;17914:34;17910:1;17905:3;17901:11;17894:55;17980:17;17975:2;17970:3;17966:12;17959:39;18024:2;18019:3;18015:12;18008:19;;17800:233;;;:::o;18039:365::-;;18202:67;18266:2;18261:3;18202:67;:::i;:::-;18195:74;;18299:34;18295:1;18290:3;18286:11;18279:55;18365:3;18360:2;18355:3;18351:12;18344:25;18395:2;18390:3;18386:12;18379:19;;18185:219;;;:::o;18410:366::-;;18573:67;18637:2;18632:3;18573:67;:::i;:::-;18566:74;;18670:34;18666:1;18661:3;18657:11;18650:55;18736:4;18731:2;18726:3;18722:12;18715:26;18767:2;18762:3;18758:12;18751:19;;18556:220;;;:::o;18782:330::-;;18945:67;19009:2;19004:3;18945:67;:::i;:::-;18938:74;;19042:34;19038:1;19033:3;19029:11;19022:55;19103:2;19098:3;19094:12;19087:19;;18928:184;;;:::o;19118:381::-;;19281:67;19345:2;19340:3;19281:67;:::i;:::-;19274:74;;19378:34;19374:1;19369:3;19365:11;19358:55;19444:19;19439:2;19434:3;19430:12;19423:41;19490:2;19485:3;19481:12;19474:19;;19264:235;;;:::o;19505:327::-;;19668:67;19732:2;19727:3;19668:67;:::i;:::-;19661:74;;19765:31;19761:1;19756:3;19752:11;19745:52;19823:2;19818:3;19814:12;19807:19;;19651:181;;;:::o;19838:325::-;;20001:67;20065:2;20060:3;20001:67;:::i;:::-;19994:74;;20098:29;20094:1;20089:3;20085:11;20078:50;20154:2;20149:3;20145:12;20138:19;;19984:179;;;:::o;20169:325::-;;20332:67;20396:2;20391:3;20332:67;:::i;:::-;20325:74;;20429:29;20425:1;20420:3;20416:11;20409:50;20485:2;20480:3;20476:12;20469:19;;20315:179;;;:::o;20500:322::-;;20663:67;20727:2;20722:3;20663:67;:::i;:::-;20656:74;;20760:26;20756:1;20751:3;20747:11;20740:47;20813:2;20808:3;20804:12;20797:19;;20646:176;;;:::o;20828:317::-;;20991:67;21055:2;21050:3;20991:67;:::i;:::-;20984:74;;21088:21;21084:1;21079:3;21075:11;21068:42;21136:2;21131:3;21127:12;21120:19;;20974:171;;;:::o;21151:118::-;21238:24;21256:5;21238:24;:::i;:::-;21233:3;21226:37;21216:53;;:::o;21275:157::-;21380:45;21400:24;21418:5;21400:24;:::i;:::-;21380:45;:::i;:::-;21375:3;21368:58;21358:74;;:::o;21438:288::-;;21581:91;21668:3;21659:6;21581:91;:::i;:::-;21697:2;21692:3;21688:12;21681:19;;21717:3;21710:10;;21570:156;;;;:::o;21732:271::-;;21884:93;21973:3;21964:6;21884:93;:::i;:::-;21877:100;;21994:3;21987:10;;21866:137;;;;:::o;22009:429::-;;22208:92;22296:3;22287:6;22208:92;:::i;:::-;22201:99;;22317:95;22408:3;22399:6;22317:95;:::i;:::-;22310:102;;22429:3;22422:10;;22190:248;;;;;:::o;22444:256::-;;22571:75;22642:3;22633:6;22571:75;:::i;:::-;22671:2;22666:3;22662:12;22655:19;;22691:3;22684:10;;22560:140;;;;:::o;22706:222::-;;22837:2;22826:9;22822:18;22814:26;;22850:71;22918:1;22907:9;22903:17;22894:6;22850:71;:::i;:::-;22804:124;;;;:::o;22934:672::-;;23183:3;23172:9;23168:19;23160:27;;23197:87;23281:1;23270:9;23266:17;23257:6;23197:87;:::i;:::-;23294:72;23362:2;23351:9;23347:18;23338:6;23294:72;:::i;:::-;23376;23444:2;23433:9;23429:18;23420:6;23376:72;:::i;:::-;23495:9;23489:4;23485:20;23480:2;23469:9;23465:18;23458:48;23523:76;23594:4;23585:6;23523:76;:::i;:::-;23515:84;;23150:456;;;;;;;:::o;23612:210::-;;23737:2;23726:9;23722:18;23714:26;;23750:65;23812:1;23801:9;23797:17;23788:6;23750:65;:::i;:::-;23704:118;;;;:::o;23828:313::-;;23979:2;23968:9;23964:18;23956:26;;24028:9;24022:4;24018:20;24014:1;24003:9;23999:17;23992:47;24056:78;24129:4;24120:6;24056:78;:::i;:::-;24048:86;;23946:195;;;;:::o;24147:419::-;;24351:2;24340:9;24336:18;24328:26;;24400:9;24394:4;24390:20;24386:1;24375:9;24371:17;24364:47;24428:131;24554:4;24428:131;:::i;:::-;24420:139;;24318:248;;;:::o;24572:419::-;;24776:2;24765:9;24761:18;24753:26;;24825:9;24819:4;24815:20;24811:1;24800:9;24796:17;24789:47;24853:131;24979:4;24853:131;:::i;:::-;24845:139;;24743:248;;;:::o;24997:419::-;;25201:2;25190:9;25186:18;25178:26;;25250:9;25244:4;25240:20;25236:1;25225:9;25221:17;25214:47;25278:131;25404:4;25278:131;:::i;:::-;25270:139;;25168:248;;;:::o;25422:419::-;;25626:2;25615:9;25611:18;25603:26;;25675:9;25669:4;25665:20;25661:1;25650:9;25646:17;25639:47;25703:131;25829:4;25703:131;:::i;:::-;25695:139;;25593:248;;;:::o;25847:419::-;;26051:2;26040:9;26036:18;26028:26;;26100:9;26094:4;26090:20;26086:1;26075:9;26071:17;26064:47;26128:131;26254:4;26128:131;:::i;:::-;26120:139;;26018:248;;;:::o;26272:419::-;;26476:2;26465:9;26461:18;26453:26;;26525:9;26519:4;26515:20;26511:1;26500:9;26496:17;26489:47;26553:131;26679:4;26553:131;:::i;:::-;26545:139;;26443:248;;;:::o;26697:419::-;;26901:2;26890:9;26886:18;26878:26;;26950:9;26944:4;26940:20;26936:1;26925:9;26921:17;26914:47;26978:131;27104:4;26978:131;:::i;:::-;26970:139;;26868:248;;;:::o;27122:419::-;;27326:2;27315:9;27311:18;27303:26;;27375:9;27369:4;27365:20;27361:1;27350:9;27346:17;27339:47;27403:131;27529:4;27403:131;:::i;:::-;27395:139;;27293:248;;;:::o;27547:419::-;;27751:2;27740:9;27736:18;27728:26;;27800:9;27794:4;27790:20;27786:1;27775:9;27771:17;27764:47;27828:131;27954:4;27828:131;:::i;:::-;27820:139;;27718:248;;;:::o;27972:419::-;;28176:2;28165:9;28161:18;28153:26;;28225:9;28219:4;28215:20;28211:1;28200:9;28196:17;28189:47;28253:131;28379:4;28253:131;:::i;:::-;28245:139;;28143:248;;;:::o;28397:419::-;;28601:2;28590:9;28586:18;28578:26;;28650:9;28644:4;28640:20;28636:1;28625:9;28621:17;28614:47;28678:131;28804:4;28678:131;:::i;:::-;28670:139;;28568:248;;;:::o;28822:419::-;;29026:2;29015:9;29011:18;29003:26;;29075:9;29069:4;29065:20;29061:1;29050:9;29046:17;29039:47;29103:131;29229:4;29103:131;:::i;:::-;29095:139;;28993:248;;;:::o;29247:419::-;;29451:2;29440:9;29436:18;29428:26;;29500:9;29494:4;29490:20;29486:1;29475:9;29471:17;29464:47;29528:131;29654:4;29528:131;:::i;:::-;29520:139;;29418:248;;;:::o;29672:419::-;;29876:2;29865:9;29861:18;29853:26;;29925:9;29919:4;29915:20;29911:1;29900:9;29896:17;29889:47;29953:131;30079:4;29953:131;:::i;:::-;29945:139;;29843:248;;;:::o;30097:419::-;;30301:2;30290:9;30286:18;30278:26;;30350:9;30344:4;30340:20;30336:1;30325:9;30321:17;30314:47;30378:131;30504:4;30378:131;:::i;:::-;30370:139;;30268:248;;;:::o;30522:419::-;;30726:2;30715:9;30711:18;30703:26;;30775:9;30769:4;30765:20;30761:1;30750:9;30746:17;30739:47;30803:131;30929:4;30803:131;:::i;:::-;30795:139;;30693:248;;;:::o;30947:419::-;;31151:2;31140:9;31136:18;31128:26;;31200:9;31194:4;31190:20;31186:1;31175:9;31171:17;31164:47;31228:131;31354:4;31228:131;:::i;:::-;31220:139;;31118:248;;;:::o;31372:419::-;;31576:2;31565:9;31561:18;31553:26;;31625:9;31619:4;31615:20;31611:1;31600:9;31596:17;31589:47;31653:131;31779:4;31653:131;:::i;:::-;31645:139;;31543:248;;;:::o;31797:419::-;;32001:2;31990:9;31986:18;31978:26;;32050:9;32044:4;32040:20;32036:1;32025:9;32021:17;32014:47;32078:131;32204:4;32078:131;:::i;:::-;32070:139;;31968:248;;;:::o;32222:419::-;;32426:2;32415:9;32411:18;32403:26;;32475:9;32469:4;32465:20;32461:1;32450:9;32446:17;32439:47;32503:131;32629:4;32503:131;:::i;:::-;32495:139;;32393:248;;;:::o;32647:419::-;;32851:2;32840:9;32836:18;32828:26;;32900:9;32894:4;32890:20;32886:1;32875:9;32871:17;32864:47;32928:131;33054:4;32928:131;:::i;:::-;32920:139;;32818:248;;;:::o;33072:419::-;;33276:2;33265:9;33261:18;33253:26;;33325:9;33319:4;33315:20;33311:1;33300:9;33296:17;33289:47;33353:131;33479:4;33353:131;:::i;:::-;33345:139;;33243:248;;;:::o;33497:419::-;;33701:2;33690:9;33686:18;33678:26;;33750:9;33744:4;33740:20;33736:1;33725:9;33721:17;33714:47;33778:131;33904:4;33778:131;:::i;:::-;33770:139;;33668:248;;;:::o;33922:419::-;;34126:2;34115:9;34111:18;34103:26;;34175:9;34169:4;34165:20;34161:1;34150:9;34146:17;34139:47;34203:131;34329:4;34203:131;:::i;:::-;34195:139;;34093:248;;;:::o;34347:419::-;;34551:2;34540:9;34536:18;34528:26;;34600:9;34594:4;34590:20;34586:1;34575:9;34571:17;34564:47;34628:131;34754:4;34628:131;:::i;:::-;34620:139;;34518:248;;;:::o;34772:419::-;;34976:2;34965:9;34961:18;34953:26;;35025:9;35019:4;35015:20;35011:1;35000:9;34996:17;34989:47;35053:131;35179:4;35053:131;:::i;:::-;35045:139;;34943:248;;;:::o;35197:419::-;;35401:2;35390:9;35386:18;35378:26;;35450:9;35444:4;35440:20;35436:1;35425:9;35421:17;35414:47;35478:131;35604:4;35478:131;:::i;:::-;35470:139;;35368:248;;;:::o;35622:419::-;;35826:2;35815:9;35811:18;35803:26;;35875:9;35869:4;35865:20;35861:1;35850:9;35846:17;35839:47;35903:131;36029:4;35903:131;:::i;:::-;35895:139;;35793:248;;;:::o;36047:419::-;;36251:2;36240:9;36236:18;36228:26;;36300:9;36294:4;36290:20;36286:1;36275:9;36271:17;36264:47;36328:131;36454:4;36328:131;:::i;:::-;36320:139;;36218:248;;;:::o;36472:419::-;;36676:2;36665:9;36661:18;36653:26;;36725:9;36719:4;36715:20;36711:1;36700:9;36696:17;36689:47;36753:131;36879:4;36753:131;:::i;:::-;36745:139;;36643:248;;;:::o;36897:419::-;;37101:2;37090:9;37086:18;37078:26;;37150:9;37144:4;37140:20;37136:1;37125:9;37121:17;37114:47;37178:131;37304:4;37178:131;:::i;:::-;37170:139;;37068:248;;;:::o;37322:222::-;;37453:2;37442:9;37438:18;37430:26;;37466:71;37534:1;37523:9;37519:17;37510:6;37466:71;:::i;:::-;37420:124;;;;:::o;37550:278::-;;37616:2;37610:9;37600:19;;37658:4;37650:6;37646:17;37765:6;37753:10;37750:22;37729:18;37717:10;37714:34;37711:62;37708:2;;;37776:13;;:::i;:::-;37708:2;37811:10;37807:2;37800:22;37590:238;;;;:::o;37834:326::-;;37985:18;37977:6;37974:30;37971:2;;;38007:13;;:::i;:::-;37971:2;38087:4;38083:9;38076:4;38068:6;38064:17;38060:33;38052:41;;38148:4;38142;38138:15;38130:23;;37900:260;;;:::o;38166:327::-;;38318:18;38310:6;38307:30;38304:2;;;38340:13;;:::i;:::-;38304:2;38420:4;38416:9;38409:4;38401:6;38397:17;38393:33;38385:41;;38481:4;38475;38471:15;38463:23;;38233:260;;;:::o;38499:141::-;;38571:3;38563:11;;38594:3;38591:1;38584:14;38628:4;38625:1;38615:18;38607:26;;38553:87;;;:::o;38646:98::-;;38731:5;38725:12;38715:22;;38704:40;;;:::o;38750:99::-;;38836:5;38830:12;38820:22;;38809:40;;;:::o;38855:168::-;;38972:6;38967:3;38960:19;39012:4;39007:3;39003:14;38988:29;;38950:73;;;;:::o;39029:147::-;;39167:3;39152:18;;39142:34;;;;:::o;39182:169::-;;39300:6;39295:3;39288:19;39340:4;39335:3;39331:14;39316:29;;39278:73;;;;:::o;39357:148::-;;39496:3;39481:18;;39471:34;;;;:::o;39511:96::-;;39577:24;39595:5;39577:24;:::i;:::-;39566:35;;39556:51;;;:::o;39613:104::-;;39687:24;39705:5;39687:24;:::i;:::-;39676:35;;39666:51;;;:::o;39723:90::-;;39800:5;39793:13;39786:21;39775:32;;39765:48;;;:::o;39819:149::-;;39895:66;39888:5;39884:78;39873:89;;39863:105;;;:::o;39974:126::-;;40051:42;40044:5;40040:54;40029:65;;40019:81;;;:::o;40106:77::-;;40172:5;40161:16;;40151:32;;;:::o;40189:154::-;40273:6;40268:3;40263;40250:30;40335:1;40326:6;40321:3;40317:16;40310:27;40240:103;;;:::o;40349:307::-;40417:1;40427:113;40441:6;40438:1;40435:13;40427:113;;;40526:1;40521:3;40517:11;40511:18;40507:1;40502:3;40498:11;40491:39;40463:2;40460:1;40456:10;40451:15;;40427:113;;;40558:6;40555:1;40552:13;40549:2;;;40638:1;40629:6;40624:3;40620:16;40613:27;40549:2;40398:258;;;;:::o;40662:108::-;;40738:26;40758:5;40738:26;:::i;:::-;40727:37;;40717:53;;;:::o;40776:94::-;;40844:20;40858:5;40844:20;:::i;:::-;40833:31;;40823:47;;;:::o;40876:79::-;;40944:5;40933:16;;40923:32;;;:::o;40961:48::-;40994:9;41015:102;;41107:2;41103:7;41098:2;41091:5;41087:14;41083:28;41073:38;;41063:54;;;:::o;41123:94::-;;41204:5;41200:2;41196:14;41175:35;;41165:52;;;:::o;41223:122::-;41296:24;41314:5;41296:24;:::i;:::-;41289:5;41286:35;41276:2;;41335:1;41332;41325:12;41276:2;41266:79;:::o;41351:116::-;41421:21;41436:5;41421:21;:::i;:::-;41414:5;41411:32;41401:2;;41457:1;41454;41447:12;41401:2;41391:76;:::o;41473:120::-;41545:23;41562:5;41545:23;:::i;:::-;41538:5;41535:34;41525:2;;41583:1;41580;41573:12;41525:2;41515:78;:::o;41599:122::-;41672:24;41690:5;41672:24;:::i;:::-;41665:5;41662:35;41652:2;;41711:1;41708;41701:12;41652:2;41642:79;:::o

Swarm Source

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