ETH Price: $3,289.71 (-1.51%)

Token

Lazy Ducks (LDC)
 

Overview

Max Total Supply

232 LDC

Holders

57

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Crazy Panther Art Collabs: Deployer
Balance
1 LDC
0xD49322ADD203C8e04ACDD53B7fF14B5E0AC861D7
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:
DucksProject

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-22
*/

// SPDX-License-Identifier: MIT

// GO TO LINE 1888 TO SEE WHERE THE LAZY DUCKS CONTRACT STARTS
 
// File: @openzeppelin/contracts/utils/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: @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: @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: @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: @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: @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: @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 virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

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

// File: @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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @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(uint160(value))));
    }

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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

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

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

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

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

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

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

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

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

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

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

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

// File: @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--] = bytes1(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 virtual 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 virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

        _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(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

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

    /**
     * @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 virtual returns (address) {
        return _owner;
    }

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

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


// Visit our Website: (https://www.lazyducksnft.com)

pragma solidity ^0.7.0;
pragma experimental ABIEncoderV2;

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

    string public DUCK_PROVENANCE = ""; 
    
    string public LICENSE_TEXT = ""; 
    
    bool licenseLocked = false; 

    uint256 public constant duckPrice = 15000000000000000; // 0.015 ETH

    uint public constant maxDuckPurchase = 20;

    uint256 public constant MAX_DUCKS = 10000;

    bool public saleIsActive = false;
    
    mapping(uint => string) public duckNames;
    
    // Reserve 175 Ducks for team - Giveaways/Prizes etc
    uint public duckReserve = 175;
    
    event duckNameChange(address _by, uint _tokenId, string _name);
    
    event licenseisLocked(string _licenseText);

    constructor() ERC721("Lazy Ducks", "LDC") { }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }
    
    function reserveDucks(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= duckReserve, "Not enough reserve left for team");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        duckReserve = duckReserve.sub(_reserveAmount);
    }


    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        DUCK_PROVENANCE = provenanceHash;
    }

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


    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
    
    // Returns the license for tokens
    function tokenLicense(uint _id) public view returns(string memory) {
        require(_id < totalSupply(), "CHOOSE A DUCK WITHIN RANGE");
        return LICENSE_TEXT;
    }
    
    // Locks the license to prevent further changes 
    function lockLicense() public onlyOwner {
        licenseLocked =  true;
        emit licenseisLocked(LICENSE_TEXT);
    }
    
    // Change the license
    function changeLicense(string memory _license) public onlyOwner {
        require(licenseLocked == false, "License already locked");
        LICENSE_TEXT = _license;
    }
    
    
    function mintLazyDuck(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Duck");
        require(numberOfTokens > 0 && numberOfTokens <= maxDuckPurchase, "Can only mint 20 Ducks at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_DUCKS, "Purchase would exceed max supply of Ducks");
        require(msg.value >= duckPrice.mul(numberOfTokens), "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_DUCKS) {
                _safeMint(msg.sender, mintIndex);
            }
        }

    }
     
    function changeDuckName(uint _tokenId, string memory _name) public {
        require(ownerOf(_tokenId) == msg.sender, "Hey, your wallet doesn't own this duck!");
        require(sha256(bytes(_name)) != sha256(bytes(duckNames[_tokenId])), "New name is same as the current one");
        duckNames[_tokenId] = _name;
        
        emit duckNameChange(msg.sender, _tokenId, _name);
        
    }
    
    function viewDuckName(uint _tokenId) public view returns( string memory ){
        require( _tokenId < totalSupply(), "Choose a duck within range" );
        return duckNames[_tokenId];
    }
    
    
    
    function duckNamesOfOwner(address _owner) external view returns(string[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new string[](0);
        } else {
            string[] memory result = new string[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = duckNames[ tokenOfOwnerByIndex(_owner, index) ] ;
            }
            return result;
        }
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_by","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_name","type":"string"}],"name":"duckNameChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"DUCK_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_DUCKS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"changeDuckName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"duckNames","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"duckNamesOfOwner","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"duckPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"duckReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxDuckPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintLazyDuck","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveDucks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","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":"uint256","name":"_id","type":"uint256"}],"name":"tokenLicense","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"viewDuckName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600b91620001cd565b506040805160208101918290526000908190526200003c91600c91620001cd565b50600d805461ffff1916905560af600f553480156200005a57600080fd5b50604080518082018252600a8152694c617a79204475636b7360b01b602080830191909152825180840190935260038352624c444360e81b9083015290620000a96301ffc9a760e01b6200016e565b8151620000be906006906020850190620001cd565b508051620000d4906007906020840190620001cd565b50620000e76380ac58cd60e01b6200016e565b620000f9635b5e139f60e01b6200016e565b6200010b63780e9d6360e01b6200016e565b50600090506200011a620001c9565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620002b0565b6001600160e01b03198082161415620001a45760405162461bcd60e51b81526004016200019b9062000279565b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000205576000855562000250565b82601f106200022057805160ff191683800117855562000250565b8280016001018555821562000250579182015b828111156200025057825182559160200191906001019062000233565b506200025e92915062000262565b5090565b5b808211156200025e576000815560010162000263565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b61315480620002c06000396000f3fe6080604052600436106102465760003560e01c8063715018a611610139578063b88e574f116100b6578063c91b50451161007a578063c91b504514610652578063ca0941d514610672578063d9b137b214610692578063e985e9c5146106b2578063eb8d2444146106d2578063f2fde38b146106e757610246565b8063b88e574f146105d3578063bacdbd73146105f3578063bd8db2ea14610608578063bf4702fc1461061d578063c87b56dd1461063257610246565b806395d89b41116100fd57806395d89b41146105495780639c3e72bd1461055e578063a22cb46514610573578063b09904b514610593578063b88d4fde146105b357610246565b8063715018a6146104bd5780637bcd3556146104d2578063818b3a98146104f25780638462151c146105075780638da5cb5b1461053457610246565b80632f745c59116101c75780634f6ccce71161018b5780634f6ccce71461042857806355f804b3146104485780636352211e146104685780636c0360eb1461048857806370a082311461049d57610246565b80632f745c59146103a957806334918dfd146103c95780633ccfd60b146103de5780633f2c5159146103f357806342842e0e1461040857610246565b80630d78af941161020e5780630d78af941461031f578063109695231461033457806318160ddd1461035457806323b872dd1461037657806329c3f7861461039657610246565b806301ffc9a71461024b57806306fdde0314610281578063081812fc146102a357806308b87fa8146102d0578063095ea7b3146102fd575b600080fd5b34801561025757600080fd5b5061026b610266366004612522565b610707565b60405161027891906127f6565b60405180910390f35b34801561028d57600080fd5b5061029661072a565b6040516102789190612801565b3480156102af57600080fd5b506102c36102be36600461258d565b6107c0565b60405161027891906126d1565b3480156102dc57600080fd5b506102f06102eb3660046123a7565b61080c565b6040516102789190612752565b34801561030957600080fd5b5061031d6103183660046124e1565b610980565b005b34801561032b57600080fd5b50610296610a18565b34801561034057600080fd5b5061031d61034f36600461255a565b610aa6565b34801561036057600080fd5b50610369610afc565b604051610278919061306c565b34801561038257600080fd5b5061031d6103913660046123f3565b610b0d565b61031d6103a436600461258d565b610b45565b3480156103b557600080fd5b506103696103c43660046124e1565b610c37565b3480156103d557600080fd5b5061031d610c62565b3480156103ea57600080fd5b5061031d610cbe565b3480156103ff57600080fd5b50610369610d2c565b34801561041457600080fd5b5061031d6104233660046123f3565b610d37565b34801561043457600080fd5b5061036961044336600461258d565b610d52565b34801561045457600080fd5b5061031d61046336600461255a565b610d68565b34801561047457600080fd5b506102c361048336600461258d565b610db3565b34801561049457600080fd5b50610296610ddb565b3480156104a957600080fd5b506103696104b83660046123a7565b610e3c565b3480156104c957600080fd5b5061031d610e85565b3480156104de57600080fd5b506102966104ed36600461258d565b610f0e565b3480156104fe57600080fd5b50610369610fd5565b34801561051357600080fd5b506105276105223660046123a7565b610fdb565b60405161027891906127b2565b34801561054057600080fd5b506102c361107f565b34801561055557600080fd5b5061029661108e565b34801561056a57600080fd5b506102966110ef565b34801561057f57600080fd5b5061031d61058e3660046124a7565b61114a565b34801561059f57600080fd5b5061031d6105ae36600461255a565b611218565b3480156105bf57600080fd5b5061031d6105ce36600461242e565b61128d565b3480156105df57600080fd5b5061031d6105ee3660046125a5565b6112cc565b3480156105ff57600080fd5b50610369611427565b34801561061457600080fd5b5061036961142c565b34801561062957600080fd5b5061031d611432565b34801561063e57600080fd5b5061029661064d36600461258d565b6114b9565b34801561065e57600080fd5b5061031d61066d3660046124e1565b6115fd565b34801561067e57600080fd5b5061029661068d36600461258d565b6116ab565b34801561069e57600080fd5b506102966106ad36600461258d565b611713565b3480156106be57600080fd5b5061026b6106cd3660046123c1565b611796565b3480156106de57600080fd5b5061026b6117c4565b3480156106f357600080fd5b5061031d6107023660046123a7565b6117d2565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b65780601f1061078b576101008083540402835291602001916107b6565b820191906000526020600020905b81548152906001019060200180831161079957829003601f168201915b5050505050905090565b60006107cb82611893565b6107f05760405162461bcd60e51b81526004016107e790612d74565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6060600061081983610e3c565b90508061085457604080516000808252602082019092529061084b565b60608152602001906001900390816108365790505b50915050610725565b60008167ffffffffffffffff8111801561086d57600080fd5b506040519080825280602002602001820160405280156108a157816020015b606081526020019060019003908161088c5790505b50905060005b8281101561097657600e60006108bd8784610c37565b815260208082019290925260409081016000208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156109525780601f1061092757610100808354040283529160200191610952565b820191906000526020600020905b81548152906001019060200180831161093557829003601f168201915b505050505082828151811061096357fe5b60209081029190910101526001016108a7565b5091506107259050565b600061098b82610db3565b9050806001600160a01b0316836001600160a01b031614156109bf5760405162461bcd60e51b81526004016107e790612f3e565b806001600160a01b03166109d16118a0565b6001600160a01b031614806109ed57506109ed816106cd6118a0565b610a095760405162461bcd60e51b81526004016107e790612bcc565b610a1383836118a4565b505050565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b820191906000526020600020905b815481529060010190602001808311610a8157829003601f168201915b505050505081565b610aae6118a0565b6001600160a01b0316610abf61107f565b6001600160a01b031614610ae55760405162461bcd60e51b81526004016107e790612dc0565b8051610af890600b90602084019061226c565b5050565b6000610b086002611912565b905090565b610b1e610b186118a0565b8261191d565b610b3a5760405162461bcd60e51b81526004016107e790612faf565b610a138383836119a2565b600d54610100900460ff16610b6c5760405162461bcd60e51b81526004016107e790612927565b600081118015610b7d575060148111155b610b995760405162461bcd60e51b81526004016107e790613000565b612710610bae82610ba8610afc565b90611ab0565b1115610bcc5760405162461bcd60e51b81526004016107e790612cea565b610bdd66354a6ba7a1800082611ad5565b341015610bfc5760405162461bcd60e51b81526004016107e790612b12565b60005b81811015610af8576000610c11610afc565b9050612710610c1e610afc565b1015610c2e57610c2e3382611b0f565b50600101610bff565b6001600160a01b0382166000908152600160205260408120610c599083611b29565b90505b92915050565b610c6a6118a0565b6001600160a01b0316610c7b61107f565b6001600160a01b031614610ca15760405162461bcd60e51b81526004016107e790612dc0565b600d805461ff001981166101009182900460ff1615909102179055565b610cc66118a0565b6001600160a01b0316610cd761107f565b6001600160a01b031614610cfd5760405162461bcd60e51b81526004016107e790612dc0565b6040514790339082156108fc029083906000818181858888f19350505050158015610af8573d6000803e3d6000fd5b66354a6ba7a1800081565b610a138383836040518060200160405280600081525061128d565b600080610d60600284611b35565b509392505050565b610d706118a0565b6001600160a01b0316610d8161107f565b6001600160a01b031614610da75760405162461bcd60e51b81526004016107e790612dc0565b610db081611b51565b50565b6000610c5c826040518060600160405280602981526020016130f66029913960029190611b64565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b65780601f1061078b576101008083540402835291602001916107b6565b60006001600160a01b038216610e645760405162461bcd60e51b81526004016107e790612c29565b6001600160a01b0382166000908152600160205260409020610c5c90611912565b610e8d6118a0565b6001600160a01b0316610e9e61107f565b6001600160a01b031614610ec45760405162461bcd60e51b81526004016107e790612dc0565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6060610f18610afc565b8210610f365760405162461bcd60e51b81526004016107e790612ed0565b6000828152600e602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610fc95780601f10610f9e57610100808354040283529160200191610fc9565b820191906000526020600020905b815481529060010190602001808311610fac57829003601f168201915b50505050509050919050565b600f5481565b60606000610fe883610e3c565b90508061100557604080516000808252602082019092529061084b565b60008167ffffffffffffffff8111801561101e57600080fd5b50604051908082528060200260200182016040528015611048578160200160208202803683370190505b50905060005b82811015610976576110608582610c37565b82828151811061106c57fe5b602090810291909101015260010161104e565b600a546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b65780601f1061078b576101008083540402835291602001916107b6565b600c805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b6111526118a0565b6001600160a01b0316826001600160a01b031614156111835760405162461bcd60e51b81526004016107e790612adb565b80600560006111906118a0565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556111d46118a0565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161120c91906127f6565b60405180910390a35050565b6112206118a0565b6001600160a01b031661123161107f565b6001600160a01b0316146112575760405162461bcd60e51b81526004016107e790612dc0565b600d5460ff161561127a5760405162461bcd60e51b81526004016107e790612f7f565b8051610af890600c90602084019061226c565b61129e6112986118a0565b8361191d565b6112ba5760405162461bcd60e51b81526004016107e790612faf565b6112c684848484611b7b565b50505050565b336112d683610db3565b6001600160a01b0316146112fc5760405162461bcd60e51b81526004016107e79061289e565b6000828152600e602052604090819020905160029161131a91612632565b602060405180830381855afa158015611337573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061135a919061250a565b60028260405161136a9190612616565b602060405180830381855afa158015611387573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906113aa919061250a565b14156113c85760405162461bcd60e51b81526004016107e790612e8d565b6000828152600e6020908152604090912082516113e79284019061226c565b507fb4c3fe78135bf73a3297bc6e4ff98a08d33d71b2b1ea5afcf4229d31a0f277f333838360405161141b93929190612722565b60405180910390a15050565b601481565b61271081565b61143a6118a0565b6001600160a01b031661144b61107f565b6001600160a01b0316146114715760405162461bcd60e51b81526004016107e790612dc0565b600d805460ff191660011790556040517f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0906114af90600c90612814565b60405180910390a1565b60606114c482611893565b6114e05760405162461bcd60e51b81526004016107e790612e3e565b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156115735780601f1061154857610100808354040283529160200191611573565b820191906000526020600020905b81548152906001019060200180831161155657829003601f168201915b505050505090506000611584610ddb565b905080516000141561159857509050610725565b8151156115ca5780826040516020016115b29291906126a2565b60405160208183030381529060405292505050610725565b806115d485611bae565b6040516020016115e59291906126a2565b60405160208183030381529060405292505050919050565b6116056118a0565b6001600160a01b031661161661107f565b6001600160a01b03161461163c5760405162461bcd60e51b81526004016107e790612dc0565b6000611646610afc565b905060008211801561165a5750600f548211155b6116765760405162461bcd60e51b81526004016107e790612a62565b60005b828110156116955761168d84828401611b0f565b600101611679565b50600f546116a39083611c89565b600f55505050565b600e6020908152600091825260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b606061171d610afc565b821061173b5760405162461bcd60e51b81526004016107e790612f07565b600c805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610fc95780601f10610f9e57610100808354040283529160200191610fc9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600d54610100900460ff1681565b6117da6118a0565b6001600160a01b03166117eb61107f565b6001600160a01b0316146118115760405162461bcd60e51b81526004016107e790612dc0565b6001600160a01b0381166118375760405162461bcd60e51b81526004016107e7906129ae565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c5c600283611cb1565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118d982610db3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610c5c82611cbd565b600061192882611893565b6119445760405162461bcd60e51b81526004016107e790612b80565b600061194f83610db3565b9050806001600160a01b0316846001600160a01b0316148061198a5750836001600160a01b031661197f846107c0565b6001600160a01b0316145b8061199a575061199a8185611796565b949350505050565b826001600160a01b03166119b582610db3565b6001600160a01b0316146119db5760405162461bcd60e51b81526004016107e790612df5565b6001600160a01b038216611a015760405162461bcd60e51b81526004016107e790612a97565b611a0c838383610a13565b611a176000826118a4565b6001600160a01b0383166000908152600160205260409020611a399082611cc1565b506001600160a01b0382166000908152600160205260409020611a5c9082611ccd565b50611a6960028284611cd9565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082820183811015610c595760405162461bcd60e51b81526004016107e790612a2b565b600082611ae457506000610c5c565b82820282848281611af157fe5b0414610c595760405162461bcd60e51b81526004016107e790612d33565b610af8828260405180602001604052806000815250611cef565b6000610c598383611d22565b6000808080611b448686611d67565b9097909650945050505050565b8051610af890600990602084019061226c565b6000611b71848484611dc3565b90505b9392505050565b611b868484846119a2565b611b9284848484611e22565b6112c65760405162461bcd60e51b81526004016107e79061295c565b606081611bd357506040805180820190915260018152600360fc1b6020820152610725565b8160005b8115611beb57600101600a82049150611bd7565b60008167ffffffffffffffff81118015611c0457600080fd5b506040519080825280601f01601f191660200182016040528015611c2f576020820181803683370190505b50859350905060001982015b8315611c8057600a840660300160f81b82828060019003935081518110611c5e57fe5b60200101906001600160f81b031916908160001a905350600a84049350611c3b565b50949350505050565b600082821115611cab5760405162461bcd60e51b81526004016107e790612b49565b50900390565b6000610c598383611f01565b5490565b6000610c598383611f19565b6000610c598383611fdf565b6000611b7184846001600160a01b038516612029565b611cf983836120c0565b611d066000848484611e22565b610a135760405162461bcd60e51b81526004016107e79061295c565b81546000908210611d455760405162461bcd60e51b81526004016107e7906128e5565b826000018281548110611d5457fe5b9060005260206000200154905092915050565b815460009081908310611d8c5760405162461bcd60e51b81526004016107e790612c73565b6000846000018481548110611d9d57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611df35760405162461bcd60e51b81526004016107e79190612801565b50846000016001820381548110611e0657fe5b9060005260206000209060020201600101549150509392505050565b6000611e36846001600160a01b0316612184565b611e425750600161199a565b6000611eca630a85bd0160e11b611e576118a0565b888787604051602401611e6d94939291906126e5565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b0383818316178352505050506040518060600160405280603281526020016130c4603291396001600160a01b038816919061218a565b9050600081806020019051810190611ee2919061253e565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015611fd55783546000198083019190810190600090879083908110611f4c57fe5b9060005260206000200154905080876000018481548110611f6957fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611f9957fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610c5c565b6000915050610c5c565b6000611feb8383611f01565b61202157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610c5c565b506000610c5c565b60008281526001840160205260408120548061208e575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611b74565b828560000160018303815481106120a157fe5b9060005260206000209060020201600101819055506000915050611b74565b6001600160a01b0382166120e65760405162461bcd60e51b81526004016107e790612cb5565b6120ef81611893565b1561210c5760405162461bcd60e51b81526004016107e7906129f4565b61211860008383610a13565b6001600160a01b038216600090815260016020526040902061213a9082611ccd565b5061214760028284611cd9565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6060611b7184846000858561219e85612184565b6121ba5760405162461bcd60e51b81526004016107e790613035565b600080866001600160a01b031685876040516121d69190612616565b60006040518083038185875af1925050503d8060008114612213576040519150601f19603f3d011682016040523d82523d6000602084013e612218565b606091505b5091509150612228828286612233565b979650505050505050565b60608315612242575081611b74565b8251156122525782518084602001fd5b8160405162461bcd60e51b81526004016107e79190612801565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826122a257600085556122e8565b82601f106122bb57805160ff19168380011785556122e8565b828001600101855582156122e8579182015b828111156122e85782518255916020019190600101906122cd565b506122f49291506122f8565b5090565b5b808211156122f457600081556001016122f9565b600067ffffffffffffffff8084111561232257fe5b604051601f8501601f19168101602001828111828210171561234057fe5b60405284815291508183850186101561235857600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461072557600080fd5b600082601f830112612398578081fd5b610c598383356020850161230d565b6000602082840312156123b8578081fd5b610c5982612371565b600080604083850312156123d3578081fd5b6123dc83612371565b91506123ea60208401612371565b90509250929050565b600080600060608486031215612407578081fd5b61241084612371565b925061241e60208501612371565b9150604084013590509250925092565b60008060008060808587031215612443578081fd5b61244c85612371565b935061245a60208601612371565b925060408501359150606085013567ffffffffffffffff81111561247c578182fd5b8501601f8101871361248c578182fd5b61249b8782356020840161230d565b91505092959194509250565b600080604083850312156124b9578182fd5b6124c283612371565b9150602083013580151581146124d6578182fd5b809150509250929050565b600080604083850312156124f3578182fd5b6124fc83612371565b946020939093013593505050565b60006020828403121561251b578081fd5b5051919050565b600060208284031215612533578081fd5b8135610c59816130ad565b60006020828403121561254f578081fd5b8151610c59816130ad565b60006020828403121561256b578081fd5b813567ffffffffffffffff811115612581578182fd5b61199a84828501612388565b60006020828403121561259e578081fd5b5035919050565b600080604083850312156125b7578182fd5b82359150602083013567ffffffffffffffff8111156125d4578182fd5b6125e085828601612388565b9150509250929050565b60008151808452612602816020860160208601613081565b601f01601f19169290920160200192915050565b60008251612628818460208701613081565b9190910192915050565b6000808354600180821660008114612651576001811461266857612697565b60ff198316865260028304607f1686019350612697565b600283048786526020808720875b8381101561268f5781548a820152908501908201612676565b505050860193505b509195945050505050565b600083516126b4818460208801613081565b8351908301906126c8818360208801613081565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612718908301846125ea565b9695505050505050565b600060018060a01b03851682528360208301526060604083015261274960608301846125ea565b95945050505050565b6000602080830181845280855180835260408601915060408482028701019250838701855b828110156127a557603f198886030184526127938583516125ea565b94509285019290850190600101612777565b5092979650505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127ea578351835292840192918401916001016127ce565b50909695505050505050565b901515815260200190565b600060208252610c5960208301846125ea565b6000602080830181845282855460018082166000811461283b576001811461285957612891565b60028304607f16855260ff1983166040890152606088019350612891565b600283048086526128698a613075565b885b828110156128875781548b82016040015290840190880161286b565b8a01604001955050505b5091979650505050505050565b60208082526027908201527f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960408201526673206475636b2160c81b606082015260800190565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f53616c65206d7573742062652061637469766520746f206d696e74204475636b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526029908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015268206f66204475636b7360b81b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526023908201527f4e6577206e616d652069732073616d65206173207468652063757272656e74206040820152626f6e6560e81b606082015260800190565b6020808252601a908201527f43686f6f73652061206475636b2077697468696e2072616e6765000000000000604082015260600190565b6020808252601a908201527f43484f4f53452041204455434b2057495448494e2052414e4745000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b602080825260169082015275131a58d95b9cd948185b1c9958591e481b1bd8dad95960521b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f43616e206f6e6c79206d696e74203230204475636b7320617420612074696d65604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b90815260200190565b60009081526020902090565b60005b8381101561309c578181015183820152602001613084565b838111156112c65750506000910152565b6001600160e01b031981168114610db057600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220a469fe4eac003bba7d5e52327a3b92545ce24f97b6a79f417aff99c64f8fb93764736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063715018a611610139578063b88e574f116100b6578063c91b50451161007a578063c91b504514610652578063ca0941d514610672578063d9b137b214610692578063e985e9c5146106b2578063eb8d2444146106d2578063f2fde38b146106e757610246565b8063b88e574f146105d3578063bacdbd73146105f3578063bd8db2ea14610608578063bf4702fc1461061d578063c87b56dd1461063257610246565b806395d89b41116100fd57806395d89b41146105495780639c3e72bd1461055e578063a22cb46514610573578063b09904b514610593578063b88d4fde146105b357610246565b8063715018a6146104bd5780637bcd3556146104d2578063818b3a98146104f25780638462151c146105075780638da5cb5b1461053457610246565b80632f745c59116101c75780634f6ccce71161018b5780634f6ccce71461042857806355f804b3146104485780636352211e146104685780636c0360eb1461048857806370a082311461049d57610246565b80632f745c59146103a957806334918dfd146103c95780633ccfd60b146103de5780633f2c5159146103f357806342842e0e1461040857610246565b80630d78af941161020e5780630d78af941461031f578063109695231461033457806318160ddd1461035457806323b872dd1461037657806329c3f7861461039657610246565b806301ffc9a71461024b57806306fdde0314610281578063081812fc146102a357806308b87fa8146102d0578063095ea7b3146102fd575b600080fd5b34801561025757600080fd5b5061026b610266366004612522565b610707565b60405161027891906127f6565b60405180910390f35b34801561028d57600080fd5b5061029661072a565b6040516102789190612801565b3480156102af57600080fd5b506102c36102be36600461258d565b6107c0565b60405161027891906126d1565b3480156102dc57600080fd5b506102f06102eb3660046123a7565b61080c565b6040516102789190612752565b34801561030957600080fd5b5061031d6103183660046124e1565b610980565b005b34801561032b57600080fd5b50610296610a18565b34801561034057600080fd5b5061031d61034f36600461255a565b610aa6565b34801561036057600080fd5b50610369610afc565b604051610278919061306c565b34801561038257600080fd5b5061031d6103913660046123f3565b610b0d565b61031d6103a436600461258d565b610b45565b3480156103b557600080fd5b506103696103c43660046124e1565b610c37565b3480156103d557600080fd5b5061031d610c62565b3480156103ea57600080fd5b5061031d610cbe565b3480156103ff57600080fd5b50610369610d2c565b34801561041457600080fd5b5061031d6104233660046123f3565b610d37565b34801561043457600080fd5b5061036961044336600461258d565b610d52565b34801561045457600080fd5b5061031d61046336600461255a565b610d68565b34801561047457600080fd5b506102c361048336600461258d565b610db3565b34801561049457600080fd5b50610296610ddb565b3480156104a957600080fd5b506103696104b83660046123a7565b610e3c565b3480156104c957600080fd5b5061031d610e85565b3480156104de57600080fd5b506102966104ed36600461258d565b610f0e565b3480156104fe57600080fd5b50610369610fd5565b34801561051357600080fd5b506105276105223660046123a7565b610fdb565b60405161027891906127b2565b34801561054057600080fd5b506102c361107f565b34801561055557600080fd5b5061029661108e565b34801561056a57600080fd5b506102966110ef565b34801561057f57600080fd5b5061031d61058e3660046124a7565b61114a565b34801561059f57600080fd5b5061031d6105ae36600461255a565b611218565b3480156105bf57600080fd5b5061031d6105ce36600461242e565b61128d565b3480156105df57600080fd5b5061031d6105ee3660046125a5565b6112cc565b3480156105ff57600080fd5b50610369611427565b34801561061457600080fd5b5061036961142c565b34801561062957600080fd5b5061031d611432565b34801561063e57600080fd5b5061029661064d36600461258d565b6114b9565b34801561065e57600080fd5b5061031d61066d3660046124e1565b6115fd565b34801561067e57600080fd5b5061029661068d36600461258d565b6116ab565b34801561069e57600080fd5b506102966106ad36600461258d565b611713565b3480156106be57600080fd5b5061026b6106cd3660046123c1565b611796565b3480156106de57600080fd5b5061026b6117c4565b3480156106f357600080fd5b5061031d6107023660046123a7565b6117d2565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b65780601f1061078b576101008083540402835291602001916107b6565b820191906000526020600020905b81548152906001019060200180831161079957829003601f168201915b5050505050905090565b60006107cb82611893565b6107f05760405162461bcd60e51b81526004016107e790612d74565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6060600061081983610e3c565b90508061085457604080516000808252602082019092529061084b565b60608152602001906001900390816108365790505b50915050610725565b60008167ffffffffffffffff8111801561086d57600080fd5b506040519080825280602002602001820160405280156108a157816020015b606081526020019060019003908161088c5790505b50905060005b8281101561097657600e60006108bd8784610c37565b815260208082019290925260409081016000208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156109525780601f1061092757610100808354040283529160200191610952565b820191906000526020600020905b81548152906001019060200180831161093557829003601f168201915b505050505082828151811061096357fe5b60209081029190910101526001016108a7565b5091506107259050565b600061098b82610db3565b9050806001600160a01b0316836001600160a01b031614156109bf5760405162461bcd60e51b81526004016107e790612f3e565b806001600160a01b03166109d16118a0565b6001600160a01b031614806109ed57506109ed816106cd6118a0565b610a095760405162461bcd60e51b81526004016107e790612bcc565b610a1383836118a4565b505050565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b820191906000526020600020905b815481529060010190602001808311610a8157829003601f168201915b505050505081565b610aae6118a0565b6001600160a01b0316610abf61107f565b6001600160a01b031614610ae55760405162461bcd60e51b81526004016107e790612dc0565b8051610af890600b90602084019061226c565b5050565b6000610b086002611912565b905090565b610b1e610b186118a0565b8261191d565b610b3a5760405162461bcd60e51b81526004016107e790612faf565b610a138383836119a2565b600d54610100900460ff16610b6c5760405162461bcd60e51b81526004016107e790612927565b600081118015610b7d575060148111155b610b995760405162461bcd60e51b81526004016107e790613000565b612710610bae82610ba8610afc565b90611ab0565b1115610bcc5760405162461bcd60e51b81526004016107e790612cea565b610bdd66354a6ba7a1800082611ad5565b341015610bfc5760405162461bcd60e51b81526004016107e790612b12565b60005b81811015610af8576000610c11610afc565b9050612710610c1e610afc565b1015610c2e57610c2e3382611b0f565b50600101610bff565b6001600160a01b0382166000908152600160205260408120610c599083611b29565b90505b92915050565b610c6a6118a0565b6001600160a01b0316610c7b61107f565b6001600160a01b031614610ca15760405162461bcd60e51b81526004016107e790612dc0565b600d805461ff001981166101009182900460ff1615909102179055565b610cc66118a0565b6001600160a01b0316610cd761107f565b6001600160a01b031614610cfd5760405162461bcd60e51b81526004016107e790612dc0565b6040514790339082156108fc029083906000818181858888f19350505050158015610af8573d6000803e3d6000fd5b66354a6ba7a1800081565b610a138383836040518060200160405280600081525061128d565b600080610d60600284611b35565b509392505050565b610d706118a0565b6001600160a01b0316610d8161107f565b6001600160a01b031614610da75760405162461bcd60e51b81526004016107e790612dc0565b610db081611b51565b50565b6000610c5c826040518060600160405280602981526020016130f66029913960029190611b64565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b65780601f1061078b576101008083540402835291602001916107b6565b60006001600160a01b038216610e645760405162461bcd60e51b81526004016107e790612c29565b6001600160a01b0382166000908152600160205260409020610c5c90611912565b610e8d6118a0565b6001600160a01b0316610e9e61107f565b6001600160a01b031614610ec45760405162461bcd60e51b81526004016107e790612dc0565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6060610f18610afc565b8210610f365760405162461bcd60e51b81526004016107e790612ed0565b6000828152600e602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610fc95780601f10610f9e57610100808354040283529160200191610fc9565b820191906000526020600020905b815481529060010190602001808311610fac57829003601f168201915b50505050509050919050565b600f5481565b60606000610fe883610e3c565b90508061100557604080516000808252602082019092529061084b565b60008167ffffffffffffffff8111801561101e57600080fd5b50604051908082528060200260200182016040528015611048578160200160208202803683370190505b50905060005b82811015610976576110608582610c37565b82828151811061106c57fe5b602090810291909101015260010161104e565b600a546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b65780601f1061078b576101008083540402835291602001916107b6565b600c805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b6111526118a0565b6001600160a01b0316826001600160a01b031614156111835760405162461bcd60e51b81526004016107e790612adb565b80600560006111906118a0565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556111d46118a0565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161120c91906127f6565b60405180910390a35050565b6112206118a0565b6001600160a01b031661123161107f565b6001600160a01b0316146112575760405162461bcd60e51b81526004016107e790612dc0565b600d5460ff161561127a5760405162461bcd60e51b81526004016107e790612f7f565b8051610af890600c90602084019061226c565b61129e6112986118a0565b8361191d565b6112ba5760405162461bcd60e51b81526004016107e790612faf565b6112c684848484611b7b565b50505050565b336112d683610db3565b6001600160a01b0316146112fc5760405162461bcd60e51b81526004016107e79061289e565b6000828152600e602052604090819020905160029161131a91612632565b602060405180830381855afa158015611337573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061135a919061250a565b60028260405161136a9190612616565b602060405180830381855afa158015611387573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906113aa919061250a565b14156113c85760405162461bcd60e51b81526004016107e790612e8d565b6000828152600e6020908152604090912082516113e79284019061226c565b507fb4c3fe78135bf73a3297bc6e4ff98a08d33d71b2b1ea5afcf4229d31a0f277f333838360405161141b93929190612722565b60405180910390a15050565b601481565b61271081565b61143a6118a0565b6001600160a01b031661144b61107f565b6001600160a01b0316146114715760405162461bcd60e51b81526004016107e790612dc0565b600d805460ff191660011790556040517f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0906114af90600c90612814565b60405180910390a1565b60606114c482611893565b6114e05760405162461bcd60e51b81526004016107e790612e3e565b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156115735780601f1061154857610100808354040283529160200191611573565b820191906000526020600020905b81548152906001019060200180831161155657829003601f168201915b505050505090506000611584610ddb565b905080516000141561159857509050610725565b8151156115ca5780826040516020016115b29291906126a2565b60405160208183030381529060405292505050610725565b806115d485611bae565b6040516020016115e59291906126a2565b60405160208183030381529060405292505050919050565b6116056118a0565b6001600160a01b031661161661107f565b6001600160a01b03161461163c5760405162461bcd60e51b81526004016107e790612dc0565b6000611646610afc565b905060008211801561165a5750600f548211155b6116765760405162461bcd60e51b81526004016107e790612a62565b60005b828110156116955761168d84828401611b0f565b600101611679565b50600f546116a39083611c89565b600f55505050565b600e6020908152600091825260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610a9e5780601f10610a7357610100808354040283529160200191610a9e565b606061171d610afc565b821061173b5760405162461bcd60e51b81526004016107e790612f07565b600c805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610fc95780601f10610f9e57610100808354040283529160200191610fc9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600d54610100900460ff1681565b6117da6118a0565b6001600160a01b03166117eb61107f565b6001600160a01b0316146118115760405162461bcd60e51b81526004016107e790612dc0565b6001600160a01b0381166118375760405162461bcd60e51b81526004016107e7906129ae565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610c5c600283611cb1565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118d982610db3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610c5c82611cbd565b600061192882611893565b6119445760405162461bcd60e51b81526004016107e790612b80565b600061194f83610db3565b9050806001600160a01b0316846001600160a01b0316148061198a5750836001600160a01b031661197f846107c0565b6001600160a01b0316145b8061199a575061199a8185611796565b949350505050565b826001600160a01b03166119b582610db3565b6001600160a01b0316146119db5760405162461bcd60e51b81526004016107e790612df5565b6001600160a01b038216611a015760405162461bcd60e51b81526004016107e790612a97565b611a0c838383610a13565b611a176000826118a4565b6001600160a01b0383166000908152600160205260409020611a399082611cc1565b506001600160a01b0382166000908152600160205260409020611a5c9082611ccd565b50611a6960028284611cd9565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082820183811015610c595760405162461bcd60e51b81526004016107e790612a2b565b600082611ae457506000610c5c565b82820282848281611af157fe5b0414610c595760405162461bcd60e51b81526004016107e790612d33565b610af8828260405180602001604052806000815250611cef565b6000610c598383611d22565b6000808080611b448686611d67565b9097909650945050505050565b8051610af890600990602084019061226c565b6000611b71848484611dc3565b90505b9392505050565b611b868484846119a2565b611b9284848484611e22565b6112c65760405162461bcd60e51b81526004016107e79061295c565b606081611bd357506040805180820190915260018152600360fc1b6020820152610725565b8160005b8115611beb57600101600a82049150611bd7565b60008167ffffffffffffffff81118015611c0457600080fd5b506040519080825280601f01601f191660200182016040528015611c2f576020820181803683370190505b50859350905060001982015b8315611c8057600a840660300160f81b82828060019003935081518110611c5e57fe5b60200101906001600160f81b031916908160001a905350600a84049350611c3b565b50949350505050565b600082821115611cab5760405162461bcd60e51b81526004016107e790612b49565b50900390565b6000610c598383611f01565b5490565b6000610c598383611f19565b6000610c598383611fdf565b6000611b7184846001600160a01b038516612029565b611cf983836120c0565b611d066000848484611e22565b610a135760405162461bcd60e51b81526004016107e79061295c565b81546000908210611d455760405162461bcd60e51b81526004016107e7906128e5565b826000018281548110611d5457fe5b9060005260206000200154905092915050565b815460009081908310611d8c5760405162461bcd60e51b81526004016107e790612c73565b6000846000018481548110611d9d57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611df35760405162461bcd60e51b81526004016107e79190612801565b50846000016001820381548110611e0657fe5b9060005260206000209060020201600101549150509392505050565b6000611e36846001600160a01b0316612184565b611e425750600161199a565b6000611eca630a85bd0160e11b611e576118a0565b888787604051602401611e6d94939291906126e5565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b0383818316178352505050506040518060600160405280603281526020016130c4603291396001600160a01b038816919061218a565b9050600081806020019051810190611ee2919061253e565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015611fd55783546000198083019190810190600090879083908110611f4c57fe5b9060005260206000200154905080876000018481548110611f6957fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611f9957fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610c5c565b6000915050610c5c565b6000611feb8383611f01565b61202157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610c5c565b506000610c5c565b60008281526001840160205260408120548061208e575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611b74565b828560000160018303815481106120a157fe5b9060005260206000209060020201600101819055506000915050611b74565b6001600160a01b0382166120e65760405162461bcd60e51b81526004016107e790612cb5565b6120ef81611893565b1561210c5760405162461bcd60e51b81526004016107e7906129f4565b61211860008383610a13565b6001600160a01b038216600090815260016020526040902061213a9082611ccd565b5061214760028284611cd9565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6060611b7184846000858561219e85612184565b6121ba5760405162461bcd60e51b81526004016107e790613035565b600080866001600160a01b031685876040516121d69190612616565b60006040518083038185875af1925050503d8060008114612213576040519150601f19603f3d011682016040523d82523d6000602084013e612218565b606091505b5091509150612228828286612233565b979650505050505050565b60608315612242575081611b74565b8251156122525782518084602001fd5b8160405162461bcd60e51b81526004016107e79190612801565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826122a257600085556122e8565b82601f106122bb57805160ff19168380011785556122e8565b828001600101855582156122e8579182015b828111156122e85782518255916020019190600101906122cd565b506122f49291506122f8565b5090565b5b808211156122f457600081556001016122f9565b600067ffffffffffffffff8084111561232257fe5b604051601f8501601f19168101602001828111828210171561234057fe5b60405284815291508183850186101561235857600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461072557600080fd5b600082601f830112612398578081fd5b610c598383356020850161230d565b6000602082840312156123b8578081fd5b610c5982612371565b600080604083850312156123d3578081fd5b6123dc83612371565b91506123ea60208401612371565b90509250929050565b600080600060608486031215612407578081fd5b61241084612371565b925061241e60208501612371565b9150604084013590509250925092565b60008060008060808587031215612443578081fd5b61244c85612371565b935061245a60208601612371565b925060408501359150606085013567ffffffffffffffff81111561247c578182fd5b8501601f8101871361248c578182fd5b61249b8782356020840161230d565b91505092959194509250565b600080604083850312156124b9578182fd5b6124c283612371565b9150602083013580151581146124d6578182fd5b809150509250929050565b600080604083850312156124f3578182fd5b6124fc83612371565b946020939093013593505050565b60006020828403121561251b578081fd5b5051919050565b600060208284031215612533578081fd5b8135610c59816130ad565b60006020828403121561254f578081fd5b8151610c59816130ad565b60006020828403121561256b578081fd5b813567ffffffffffffffff811115612581578182fd5b61199a84828501612388565b60006020828403121561259e578081fd5b5035919050565b600080604083850312156125b7578182fd5b82359150602083013567ffffffffffffffff8111156125d4578182fd5b6125e085828601612388565b9150509250929050565b60008151808452612602816020860160208601613081565b601f01601f19169290920160200192915050565b60008251612628818460208701613081565b9190910192915050565b6000808354600180821660008114612651576001811461266857612697565b60ff198316865260028304607f1686019350612697565b600283048786526020808720875b8381101561268f5781548a820152908501908201612676565b505050860193505b509195945050505050565b600083516126b4818460208801613081565b8351908301906126c8818360208801613081565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612718908301846125ea565b9695505050505050565b600060018060a01b03851682528360208301526060604083015261274960608301846125ea565b95945050505050565b6000602080830181845280855180835260408601915060408482028701019250838701855b828110156127a557603f198886030184526127938583516125ea565b94509285019290850190600101612777565b5092979650505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127ea578351835292840192918401916001016127ce565b50909695505050505050565b901515815260200190565b600060208252610c5960208301846125ea565b6000602080830181845282855460018082166000811461283b576001811461285957612891565b60028304607f16855260ff1983166040890152606088019350612891565b600283048086526128698a613075565b885b828110156128875781548b82016040015290840190880161286b565b8a01604001955050505b5091979650505050505050565b60208082526027908201527f4865792c20796f75722077616c6c657420646f65736e2774206f776e2074686960408201526673206475636b2160c81b606082015260800190565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f53616c65206d7573742062652061637469766520746f206d696e74204475636b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526029908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015268206f66204475636b7360b81b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526023908201527f4e6577206e616d652069732073616d65206173207468652063757272656e74206040820152626f6e6560e81b606082015260800190565b6020808252601a908201527f43686f6f73652061206475636b2077697468696e2072616e6765000000000000604082015260600190565b6020808252601a908201527f43484f4f53452041204455434b2057495448494e2052414e4745000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b602080825260169082015275131a58d95b9cd948185b1c9958591e481b1bd8dad95960521b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f43616e206f6e6c79206d696e74203230204475636b7320617420612074696d65604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b90815260200190565b60009081526020902090565b60005b8381101561309c578181015183820152602001613084565b838111156112c65750506000910152565b6001600160e01b031981168114610db057600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220a469fe4eac003bba7d5e52327a3b92545ce24f97b6a79f417aff99c64f8fb93764736f6c63430007060033

Deployed Bytecode Sourcemap

66972:4754:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10302:150;;;;;;;;;;-1:-1:-1;10302:150:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51587:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54373:221::-;;;;;;;;;;-1:-1:-1;54373:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;71164:553::-;;;;;;;;;;-1:-1:-1;71164:553:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53903:404::-;;;;;;;;;;-1:-1:-1;53903:404:0;;;;;:::i;:::-;;:::i;:::-;;67061:34;;;;;;;;;;;;;:::i;68297:125::-;;;;;;;;;;-1:-1:-1;68297:125:0;;;;;:::i;:::-;;:::i;53381:211::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55263:305::-;;;;;;;;;;-1:-1:-1;55263:305:0;;;;;:::i;:::-;;:::i;69833:685::-;;;;;;:::i;:::-;;:::i;53143:162::-;;;;;;;;;;-1:-1:-1;53143:162:0;;;;;:::i;:::-;;:::i;68539:89::-;;;;;;;;;;;;;:::i;67746:131::-;;;;;;;;;;;;;:::i;67190:53::-;;;;;;;;;;;;;:::i;55639:151::-;;;;;;;;;;-1:-1:-1;55639:151:0;;;;;:::i;:::-;;:::i;53669:172::-;;;;;;;;;;-1:-1:-1;53669:172:0;;;;;:::i;:::-;;:::i;68430:99::-;;;;;;;;;;-1:-1:-1;68430:99:0;;;;;:::i;:::-;;:::i;51343:177::-;;;;;;;;;;-1:-1:-1;51343:177:0;;;;;:::i;:::-;;:::i;52962:97::-;;;;;;;;;;;;;:::i;51060:221::-;;;;;;;;;;-1:-1:-1;51060:221:0;;;;;:::i;:::-;;:::i;66298:148::-;;;;;;;;;;;;;:::i;70946:194::-;;;;;;;;;;-1:-1:-1;70946:194:0;;;;;:::i;:::-;;:::i;67521:29::-;;;;;;;;;;;;;:::i;68646:540::-;;;;;;;;;;-1:-1:-1;68646:540:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65647:87::-;;;;;;;;;;;;;:::i;51756:104::-;;;;;;;;;;;;;:::i;67109:31::-;;;;;;;;;;;;;:::i;54666:295::-;;;;;;;;;;-1:-1:-1;54666:295:0;;;;;:::i;:::-;;:::i;69641:174::-;;;;;;;;;;-1:-1:-1;69641:174:0;;;;;:::i;:::-;;:::i;55861:285::-;;;;;;;;;;-1:-1:-1;55861:285:0;;;;;:::i;:::-;;:::i;70531:403::-;;;;;;;;;;-1:-1:-1;70531:403:0;;;;;:::i;:::-;;:::i;67265:41::-;;;;;;;;;;;;;:::i;67315:::-;;;;;;;;;;;;;:::i;69477:125::-;;;;;;;;;;;;;:::i;51931:792::-;;;;;;;;;;-1:-1:-1;51931:792:0;;;;;:::i;:::-;;:::i;67889:398::-;;;;;;;;;;-1:-1:-1;67889:398:0;;;;;:::i;:::-;;:::i;67410:40::-;;;;;;;;;;-1:-1:-1;67410:40:0;;;;;:::i;:::-;;:::i;69237:174::-;;;;;;;;;;-1:-1:-1;69237:174:0;;;;;:::i;:::-;;:::i;55032:164::-;;;;;;;;;;-1:-1:-1;55032:164:0;;;;;:::i;:::-;;:::i;67365:32::-;;;;;;;;;;;;;:::i;66601:244::-;;;;;;;;;;-1:-1:-1;66601:244:0;;;;;:::i;:::-;;:::i;10302:150::-;-1:-1:-1;;;;;;10411:33:0;;10387:4;10411:33;;;;;;;;;;;;;10302:150;;;;:::o;51587:100::-;51674:5;51667:12;;;;;;;;-1:-1:-1;;51667:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51641:13;;51667:12;;51674:5;;51667:12;;51674:5;51667:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51587:100;:::o;54373:221::-;54449:7;54477:16;54485:7;54477;:16::i;:::-;54469:73;;;;-1:-1:-1;;;54469:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;54562:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;54562:24:0;;54373:221::o;71164:553::-;71228:15;71257:18;71278:17;71288:6;71278:9;:17::i;:::-;71257:38;-1:-1:-1;71310:15:0;71306:404;;71387:15;;;71400:1;71387:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71380:22;;;;;71306:404;71435:22;71473:10;71460:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71435:49;;71499:13;71527:144;71551:10;71543:5;:18;71527:144;;;71607:9;:47;71618:34;71638:6;71646:5;71618:19;:34::i;:::-;71607:47;;;;;;;;;;;;;;-1:-1:-1;71607:47:0;71591:63;;;;;;;;;;;-1:-1:-1;;71591:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;71607:47;;71591:63;;;71607:47;71591:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;71598:5;71591:13;;;;;;;;;;;;;;;;;:63;71563:7;;71527:144;;;-1:-1:-1;71692:6:0;-1:-1:-1;71685:13:0;;-1:-1:-1;71685:13:0;53903:404;53984:13;54000:23;54015:7;54000:14;:23::i;:::-;53984:39;;54048:5;-1:-1:-1;;;;;54042:11:0;:2;-1:-1:-1;;;;;54042:11:0;;;54034:57;;;;-1:-1:-1;;;54034:57:0;;;;;;;:::i;:::-;54128:5;-1:-1:-1;;;;;54112:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;54112:21:0;;:69;;;;54137:44;54161:5;54168:12;:10;:12::i;54137:44::-;54104:161;;;;-1:-1:-1;;;54104:161:0;;;;;;;:::i;:::-;54278:21;54287:2;54291:7;54278:8;:21::i;:::-;53903:404;;;:::o;67061:34::-;;;;;;;;;;;;;;;-1:-1:-1;;67061:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68297:125::-;65878:12;:10;:12::i;:::-;-1:-1:-1;;;;;65867:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65867:23:0;;65859:68;;;;-1:-1:-1;;;65859:68:0;;;;;;;:::i;:::-;68382:32;;::::1;::::0;:15:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;68297:125:::0;:::o;53381:211::-;53442:7;53563:21;:12;:19;:21::i;:::-;53556:28;;53381:211;:::o;55263:305::-;55424:41;55443:12;:10;:12::i;:::-;55457:7;55424:18;:41::i;:::-;55416:103;;;;-1:-1:-1;;;55416:103:0;;;;;;;:::i;:::-;55532:28;55542:4;55548:2;55552:7;55532:9;:28::i;69833:685::-;69910:12;;;;;;;69902:57;;;;-1:-1:-1;;;69902:57:0;;;;;;;:::i;:::-;69995:1;69978:14;:18;:55;;;;;67304:2;70000:14;:33;;69978:55;69970:100;;;;-1:-1:-1;;;69970:100:0;;;;;;;:::i;:::-;67351:5;70089:33;70107:14;70089:13;:11;:13::i;:::-;:17;;:33::i;:::-;:46;;70081:100;;;;-1:-1:-1;;;70081:100:0;;;;;;;:::i;:::-;70213:29;67226:17;70227:14;70213:13;:29::i;:::-;70200:9;:42;;70192:86;;;;-1:-1:-1;;;70192:86:0;;;;;;;:::i;:::-;70303:6;70299:210;70319:14;70315:1;:18;70299:210;;;70355:14;70372:13;:11;:13::i;:::-;70355:30;;67351:5;70404:13;:11;:13::i;:::-;:25;70400:98;;;70450:32;70460:10;70472:9;70450;:32::i;:::-;-1:-1:-1;70335:3:0;;70299:210;;53143:162;-1:-1:-1;;;;;53267:20:0;;53240:7;53267:20;;;:13;:20;;;;;:30;;53291:5;53267:23;:30::i;:::-;53260:37;;53143:162;;;;;:::o;68539:89::-;65878:12;:10;:12::i;:::-;-1:-1:-1;;;;;65867:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65867:23:0;;65859:68;;;;-1:-1:-1;;;65859:68:0;;;;;;;:::i;:::-;68608:12:::1;::::0;;-1:-1:-1;;68592:28:0;::::1;68608:12;::::0;;;::::1;;;68607:13;68592:28:::0;;::::1;;::::0;;68539:89::o;67746:131::-;65878:12;:10;:12::i;:::-;-1:-1:-1;;;;;65867:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65867:23:0;;65859:68;;;;-1:-1:-1;;;65859:68:0;;;;;;;:::i;:::-;67841:28:::1;::::0;67809:21:::1;::::0;67841:10:::1;::::0;:28;::::1;;;::::0;67809:21;;67794:12:::1;67841:28:::0;67794:12;67841:28;67809:21;67841:10;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;67190:53:::0;67226:17;67190:53;:::o;55639:151::-;55743:39;55760:4;55766:2;55770:7;55743:39;;;;;;;;;;;;:16;:39::i;53669:172::-;53744:7;;53786:22;:12;53802:5;53786:15;:22::i;:::-;-1:-1:-1;53764:44:0;53669:172;-1:-1:-1;;;53669:172:0:o;68430:99::-;65878:12;:10;:12::i;:::-;-1:-1:-1;;;;;65867:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65867:23:0;;65859:68;;;;-1:-1:-1;;;65859:68:0;;;;;;;:::i;:::-;68501:20:::1;68513:7;68501:11;:20::i;:::-;68430:99:::0;:::o;51343:177::-;51415:7;51442:70;51459:7;51442:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;52962:97::-;53043:8;53036:15;;;;;;;;-1:-1:-1;;53036:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53010:13;;53036:15;;53043:8;;53036:15;;53043:8;53036:15;;;;;;;;;;;;;;;;;;;;;;;;51060:221;51132:7;-1:-1:-1;;;;;51160:19:0;;51152:74;;;;-1:-1:-1;;;51152:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51244:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;66298:148::-;65878:12;:10;:12::i;:::-;-1:-1:-1;;;;;65867:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65867:23:0;;65859:68;;;;-1:-1:-1;;;65859:68:0;;;;;;;:::i;:::-;66389:6:::1;::::0;66368:40:::1;::::0;66405:1:::1;::::0;-1:-1:-1;;;;;66389:6:0::1;::::0;66368:40:::1;::::0;66405:1;;66368:40:::1;66419:6;:19:::0;;-1:-1:-1;;;;;;66419:19:0::1;::::0;;66298:148::o;70946:194::-;71004:13;71050;:11;:13::i;:::-;71039:8;:24;71030:65;;;;-1:-1:-1;;;71030:65:0;;;;;;;:::i;:::-;71113:19;;;;:9;:19;;;;;;;;;71106:26;;;;;;-1:-1:-1;;71106:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71113:19;;71106:26;;71113:19;71106:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70946:194;;;:::o;67521:29::-;;;;:::o;68646:540::-;68707:16;68737:18;68758:17;68768:6;68758:9;:17::i;:::-;68737:38;-1:-1:-1;68790:15:0;68786:393;;68867:16;;;68881:1;68867:16;;;;;;;;;;;;68786:393;68916:23;68956:10;68942:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68942:25:0;;68916:51;;68982:13;69010:130;69034:10;69026:5;:18;69010:130;;;69090:34;69110:6;69118:5;69090:19;:34::i;:::-;69074:6;69081:5;69074:13;;;;;;;;;;;;;;;;;:50;69046:7;;69010:130;;65647:87;65720:6;;-1:-1:-1;;;;;65720:6:0;65647:87;:::o;51756:104::-;51845:7;51838:14;;;;;;;;-1:-1:-1;;51838:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51812:13;;51838:14;;51845:7;;51838:14;;51845:7;51838:14;;;;;;;;;;;;;;;;;;;;;;;;67109:31;;;;;;;;;;;;;;;-1:-1:-1;;67109:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54666:295;54781:12;:10;:12::i;:::-;-1:-1:-1;;;;;54769:24:0;:8;-1:-1:-1;;;;;54769:24:0;;;54761:62;;;;-1:-1:-1;;;54761:62:0;;;;;;;:::i;:::-;54881:8;54836:18;:32;54855:12;:10;:12::i;:::-;-1:-1:-1;;;;;54836:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;54836:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;54836:53:0;;;;;;;;;;;54920:12;:10;:12::i;:::-;-1:-1:-1;;;;;54905:48:0;;54944:8;54905:48;;;;;;:::i;:::-;;;;;;;;54666:295;;:::o;69641:174::-;65878:12;:10;:12::i;:::-;-1:-1:-1;;;;;65867:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65867:23:0;;65859:68;;;;-1:-1:-1;;;65859:68:0;;;;;;;:::i;:::-;69724:13:::1;::::0;::::1;;:22;69716:57;;;;-1:-1:-1::0;;;69716:57:0::1;;;;;;;:::i;:::-;69784:23:::0;;::::1;::::0;:12:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;55861:285::-:0;55993:41;56012:12;:10;:12::i;:::-;56026:7;55993:18;:41::i;:::-;55985:103;;;;-1:-1:-1;;;55985:103:0;;;;;;;:::i;:::-;56099:39;56113:4;56119:2;56123:7;56132:5;56099:13;:39::i;:::-;55861:285;;;;:::o;70531:403::-;70638:10;70617:17;70625:8;70617:7;:17::i;:::-;-1:-1:-1;;;;;70617:31:0;;70609:83;;;;-1:-1:-1;;;70609:83:0;;;;;;;:::i;:::-;70748:19;;;;:9;:19;;;;;;;70735:34;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70711:20;70724:5;70711:20;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:58;;70703:106;;;;-1:-1:-1;;;70703:106:0;;;;;;;:::i;:::-;70820:19;;;;:9;:19;;;;;;;;:27;;;;;;;;:::i;:::-;;70873:43;70888:10;70900:8;70910:5;70873:43;;;;;;;;:::i;:::-;;;;;;;;70531:403;;:::o;67265:41::-;67304:2;67265:41;:::o;67315:::-;67351:5;67315:41;:::o;69477:125::-;65878:12;:10;:12::i;:::-;-1:-1:-1;;;;;65867:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65867:23:0;;65859:68;;;;-1:-1:-1;;;65859:68:0;;;;;;;:::i;:::-;69528:13:::1;:21:::0;;-1:-1:-1;;69528:21:0::1;69545:4;69528:21;::::0;;69565:29:::1;::::0;::::1;::::0;::::1;::::0;69581:12:::1;::::0;69565:29:::1;:::i;:::-;;;;;;;;69477:125::o:0;51931:792::-;52004:13;52038:16;52046:7;52038;:16::i;:::-;52030:76;;;;-1:-1:-1;;;52030:76:0;;;;;;;:::i;:::-;52119:23;52145:19;;;:10;:19;;;;;;;;52119:45;;;;;;;;;;;-1:-1:-1;;52119:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;52145:19;;52119:45;;;52145:19;52119:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52175:18;52196:9;:7;:9::i;:::-;52175:30;;52287:4;52281:18;52303:1;52281:23;52277:72;;;-1:-1:-1;52328:9:0;-1:-1:-1;52321:16:0;;52277:72;52453:23;;:27;52449:108;;52528:4;52534:9;52511:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52497:48;;;;;;52449:108;52689:4;52695:18;:7;:16;:18::i;:::-;52672:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52658:57;;;;51931:792;;;:::o;67889:398::-;65878:12;:10;:12::i;:::-;-1:-1:-1;;;;;65867:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65867:23:0;;65859:68;;;;-1:-1:-1;;;65859:68:0;;;;;;;:::i;:::-;67984:11:::1;67998:13;:11;:13::i;:::-;67984:27;;68047:1;68030:14;:18;:51;;;;;68070:11;;68052:14;:29;;68030:51;68022:96;;;;-1:-1:-1::0;;;68022:96:0::1;;;;;;;:::i;:::-;68134:6;68129:95;68150:14;68146:1;:18;68129:95;;;68186:26;68196:3;68210:1;68201:6;:10;68186:9;:26::i;:::-;68166:3;;68129:95;;;-1:-1:-1::0;68248:11:0::1;::::0;:31:::1;::::0;68264:14;68248:15:::1;:31::i;:::-;68234:11;:45:::0;-1:-1:-1;;;67889:398:0:o;67410:40::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;67410:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69237:174;69289:13;69329;:11;:13::i;:::-;69323:3;:19;69315:58;;;;-1:-1:-1;;;69315:58:0;;;;;;;:::i;:::-;69391:12;69384:19;;;;;;;;;;;;;-1:-1:-1;;69384:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;69391:12;69384:19;;69391:12;69384:19;;;;;;;;;;;;;;;;;;;;;;;;55032:164;-1:-1:-1;;;;;55153:25:0;;;55129:4;55153:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;55032:164::o;67365:32::-;;;;;;;;;:::o;66601:244::-;65878:12;:10;:12::i;:::-;-1:-1:-1;;;;;65867:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65867:23:0;;65859:68;;;;-1:-1:-1;;;65859:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;66690:22:0;::::1;66682:73;;;;-1:-1:-1::0;;;66682:73:0::1;;;;;;;:::i;:::-;66792:6;::::0;66771:38:::1;::::0;-1:-1:-1;;;;;66771:38:0;;::::1;::::0;66792:6:::1;::::0;66771:38:::1;::::0;66792:6:::1;::::0;66771:38:::1;66820:6;:17:::0;;-1:-1:-1;;;;;;66820:17:0::1;-1:-1:-1::0;;;;;66820:17:0;;;::::1;::::0;;;::::1;::::0;;66601:244::o;57613:127::-;57678:4;57702:30;:12;57724:7;57702:21;:30::i;734:106::-;822:10;734:106;:::o;63631:192::-;63706:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;63706:29:0;-1:-1:-1;;;;;63706:29:0;;;;;;;;:24;;63760:23;63706:24;63760:14;:23::i;:::-;-1:-1:-1;;;;;63751:46:0;;;;;;;;;;;63631:192;;:::o;44345:123::-;44414:7;44441:19;44449:3;44441:7;:19::i;57907:355::-;58000:4;58025:16;58033:7;58025;:16::i;:::-;58017:73;;;;-1:-1:-1;;;58017:73:0;;;;;;;:::i;:::-;58101:13;58117:23;58132:7;58117:14;:23::i;:::-;58101:39;;58170:5;-1:-1:-1;;;;;58159:16:0;:7;-1:-1:-1;;;;;58159:16:0;;:51;;;;58203:7;-1:-1:-1;;;;;58179:31:0;:20;58191:7;58179:11;:20::i;:::-;-1:-1:-1;;;;;58179:31:0;;58159:51;:94;;;;58214:39;58238:5;58245:7;58214:23;:39::i;:::-;58151:103;57907:355;-1:-1:-1;;;;57907:355:0:o;61043:599::-;61168:4;-1:-1:-1;;;;;61141:31:0;:23;61156:7;61141:14;:23::i;:::-;-1:-1:-1;;;;;61141:31:0;;61133:85;;;;-1:-1:-1;;;61133:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61255:16:0;;61247:65;;;;-1:-1:-1;;;61247:65:0;;;;;;;:::i;:::-;61325:39;61346:4;61352:2;61356:7;61325:20;:39::i;:::-;61429:29;61446:1;61450:7;61429:8;:29::i;:::-;-1:-1:-1;;;;;61471:19:0;;;;;;:13;:19;;;;;:35;;61498:7;61471:26;:35::i;:::-;-1:-1:-1;;;;;;61517:17:0;;;;;;:13;:17;;;;;:30;;61539:7;61517:21;:30::i;:::-;-1:-1:-1;61560:29:0;:12;61577:7;61586:2;61560:16;:29::i;:::-;;61626:7;61622:2;-1:-1:-1;;;;;61607:27:0;61616:4;-1:-1:-1;;;;;61607:27:0;;;;;;;;;;;61043:599;;;:::o;13864:179::-;13922:7;13954:5;;;13978:6;;;;13970:46;;;;-1:-1:-1;;;13970:46:0;;;;;;;:::i;14743:220::-;14801:7;14825:6;14821:20;;-1:-1:-1;14840:1:0;14833:8;;14821:20;14864:5;;;14868:1;14864;:5;:1;14888:5;;;;;:10;14880:56;;;;-1:-1:-1;;;14880:56:0;;;;;;;:::i;58605:110::-;58681:26;58691:2;58695:7;58681:26;;;;;;;;;;;;:9;:26::i;36136:137::-;36207:7;36242:22;36246:3;36258:5;36242:3;:22::i;44807:236::-;44887:7;;;;44947:22;44951:3;44963:5;44947:3;:22::i;:::-;44916:53;;;;-1:-1:-1;44807:236:0;-1:-1:-1;;;;;44807:236:0:o;62243:100::-;62316:19;;;;:8;;:19;;;;;:::i;46093:213::-;46200:7;46251:44;46256:3;46276;46282:12;46251:4;:44::i;:::-;46243:53;-1:-1:-1;46093:213:0;;;;;;:::o;57028:272::-;57142:28;57152:4;57158:2;57162:7;57142:9;:28::i;:::-;57189:48;57212:4;57218:2;57222:7;57231:5;57189:22;:48::i;:::-;57181:111;;;;-1:-1:-1;;;57181:111:0;;;;;;;:::i;46557:746::-;46613:13;46834:10;46830:53;;-1:-1:-1;46861:10:0;;;;;;;;;;;;-1:-1:-1;;;46861:10:0;;;;;;46830:53;46908:5;46893:12;46949:78;46956:9;;46949:78;;46982:8;;47013:2;47005:10;;;;46949:78;;;47037:19;47069:6;47059:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47059:17:0;-1:-1:-1;47131:5:0;;-1:-1:-1;47037:39:0;-1:-1:-1;;;47103:10:0;;47147:117;47154:9;;47147:117;;47223:2;47216:4;:9;47211:2;:14;47198:29;;47180:6;47187:7;;;;;;;47180:15;;;;;;;;;;;:47;-1:-1:-1;;;;;47180:47:0;;;;;;;;-1:-1:-1;47250:2:0;47242:10;;;;47147:117;;;-1:-1:-1;47288:6:0;46557:746;-1:-1:-1;;;;46557:746:0:o;14326:158::-;14384:7;14417:1;14412;:6;;14404:49;;;;-1:-1:-1;;;14404:49:0;;;;;;;:::i;:::-;-1:-1:-1;14471:5:0;;;14326:158::o;44106:151::-;44190:4;44214:35;44224:3;44244;44214:9;:35::i;40924:110::-;41007:19;;40924:110::o;35223:137::-;35293:4;35317:35;35325:3;35345:5;35317:7;:35::i;34916:131::-;34983:4;35007:32;35012:3;35032:5;35007:4;:32::i;43529:185::-;43618:4;43642:64;43647:3;43667;-1:-1:-1;;;;;43681:23:0;;43642:4;:64::i;58942:250::-;59038:18;59044:2;59048:7;59038:5;:18::i;:::-;59075:54;59106:1;59110:2;59114:7;59123:5;59075:22;:54::i;:::-;59067:117;;;;-1:-1:-1;;;59067:117:0;;;;;;;:::i;31174:204::-;31269:18;;31241:7;;31269:26;-1:-1:-1;31261:73:0;;;;-1:-1:-1;;;31261:73:0;;;;;;;:::i;:::-;31352:3;:11;;31364:5;31352:18;;;;;;;;;;;;;;;;31345:25;;31174:204;;;;:::o;41389:279::-;41493:19;;41456:7;;;;41493:27;-1:-1:-1;41485:74:0;;;;-1:-1:-1;;;41485:74:0;;;;;;;:::i;:::-;41572:22;41597:3;:12;;41610:5;41597:19;;;;;;;;;;;;;;;;;;41572:44;;41635:5;:10;;;41647:5;:12;;;41627:33;;;;;41389:279;;;;;:::o;42886:319::-;42980:7;43019:17;;;:12;;;:17;;;;;;43070:12;43055:13;43047:36;;;;-1:-1:-1;;;43047:36:0;;;;;;;;:::i;:::-;;43137:3;:12;;43161:1;43150:8;:12;43137:26;;;;;;;;;;;;;;;;;;:33;;;43130:40;;;42886:319;;;;;:::o;62908:604::-;63029:4;63056:15;:2;-1:-1:-1;;;;;63056:13:0;;:15::i;:::-;63051:60;;-1:-1:-1;63095:4:0;63088:11;;63051:60;63121:23;63147:252;-1:-1:-1;;;63260:12:0;:10;:12::i;:::-;63287:4;63306:7;63328:5;63163:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;63163:181:0;;;;;;;-1:-1:-1;;;;;63163:181:0;;;;;;;;;;;63147:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;63147:15:0;;;:252;:15;:252::i;:::-;63121:278;;63410:13;63437:10;63426:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;63477:26:0;-1:-1:-1;;;63477:26:0;;-1:-1:-1;;;62908:604:0;;;;;;:::o;40704:125::-;40775:4;40799:17;;;:12;;;;;:17;;;;;;:22;;;40704:125::o;28876:1544::-;28942:4;29081:19;;;:12;;;:19;;;;;;29117:15;;29113:1300;;29552:18;;-1:-1:-1;;29503:14:0;;;;29552:22;;;;29479:21;;29552:3;;:22;;29839;;;;;;;;;;;;;;29819:42;;29985:9;29956:3;:11;;29968:13;29956:26;;;;;;;;;;;;;;;;;;;:38;;;;30062:23;;;30104:1;30062:12;;;:23;;;;;;30088:17;;;30062:43;;30214:17;;30062:3;;30214:17;;;;;;;;;;;;;;;;;;;;;;30309:3;:12;;:19;30322:5;30309:19;;;;;;;;;;;30302:26;;;30352:4;30345:11;;;;;;;;29113:1300;30396:5;30389:12;;;;;28286:414;28349:4;28371:21;28381:3;28386:5;28371:9;:21::i;:::-;28366:327;;-1:-1:-1;28409:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;28592:18;;28570:19;;;:12;;;:19;;;;;;:40;;;;28625:11;;28366:327;-1:-1:-1;28676:5:0;28669:12;;38204:692;38280:4;38415:17;;;:12;;;:17;;;;;;38449:13;38445:444;;-1:-1:-1;;38534:38:0;;;;;;;;;;;;;;;;;;38516:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;38731:19;;38711:17;;;:12;;;:17;;;;;;;:39;38765:11;;38445:444;38845:5;38809:3;:12;;38833:1;38822:8;:12;38809:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38872:5;38865:12;;;;;59528:404;-1:-1:-1;;;;;59608:16:0;;59600:61;;;;-1:-1:-1;;;59600:61:0;;;;;;;:::i;:::-;59681:16;59689:7;59681;:16::i;:::-;59680:17;59672:58;;;;-1:-1:-1;;;59672:58:0;;;;;;;:::i;:::-;59743:45;59772:1;59776:2;59780:7;59743:20;:45::i;:::-;-1:-1:-1;;;;;59801:17:0;;;;;;:13;:17;;;;;:30;;59823:7;59801:21;:30::i;:::-;-1:-1:-1;59844:29:0;:12;59861:7;59870:2;59844:16;:29::i;:::-;-1:-1:-1;59891:33:0;;59916:7;;-1:-1:-1;;;;;59891:33:0;;;59908:1;;59891:33;;59908:1;;59891:33;59528:404;;:::o;19305:422::-;19672:20;19711:8;;;19305:422::o;22223:195::-;22326:12;22358:52;22380:6;22388:4;22394:1;22397:12;22326;23527:18;23538:6;23527:10;:18::i;:::-;23519:60;;;;-1:-1:-1;;;23519:60:0;;;;;;;:::i;:::-;23653:12;23667:23;23694:6;-1:-1:-1;;;;;23694:11:0;23714:5;23722:4;23694:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23652:75;;;;23745:52;23763:7;23772:10;23784:12;23745:17;:52::i;:::-;23738:59;23275:530;-1:-1:-1;;;;;;;23275:530:0:o;25815:742::-;25930:12;25959:7;25955:595;;;-1:-1:-1;25990:10:0;25983:17;;25955:595;26104:17;;:21;26100:439;;26367:10;26361:17;26428:15;26415:10;26411:2;26407:19;26400:44;26315:148;26510:12;26503:20;;-1:-1:-1;;;26503:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:589:1;;110:18;151:2;143:6;140:14;137:2;;;157:9;137:2;197;191:9;270:2;247:17;;-1:-1:-1;;243:31:1;231:44;;277:4;227:55;297:18;;;317:22;;;294:46;291:2;;;343:9;291:2;370;363:22;418;;;403:6;-1:-1:-1;403:6:1;455:16;;;452:25;-1:-1:-1;449:2:1;;;490:1;487;480:12;449:2;540:6;535:3;528:4;520:6;516:17;503:44;595:1;588:4;579:6;571;567:19;563:30;556:41;;;90:513;;;;;:::o;608:175::-;678:20;;-1:-1:-1;;;;;727:31:1;;717:42;;707:2;;773:1;770;763:12;788:233;;886:3;879:4;871:6;867:17;863:27;853:2;;908:5;901;894:20;853:2;934:81;1011:3;1002:6;989:20;982:4;974:6;970:17;934:81;:::i;1026:198::-;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;1229:274::-;;;1358:2;1346:9;1337:7;1333:23;1329:32;1326:2;;;1379:6;1371;1364:22;1326:2;1407:31;1428:9;1407:31;:::i;:::-;1397:41;;1457:40;1493:2;1482:9;1478:18;1457:40;:::i;:::-;1447:50;;1316:187;;;;;:::o;1508:342::-;;;;1654:2;1642:9;1633:7;1629:23;1625:32;1622:2;;;1675:6;1667;1660:22;1622:2;1703:31;1724:9;1703:31;:::i;:::-;1693:41;;1753:40;1789:2;1778:9;1774:18;1753:40;:::i;:::-;1743:50;;1840:2;1829:9;1825:18;1812:32;1802:42;;1612:238;;;;;:::o;1855:702::-;;;;;2027:3;2015:9;2006:7;2002:23;1998:33;1995:2;;;2049:6;2041;2034:22;1995:2;2077:31;2098:9;2077:31;:::i;:::-;2067:41;;2127:40;2163:2;2152:9;2148:18;2127:40;:::i;:::-;2117:50;;2214:2;2203:9;2199:18;2186:32;2176:42;;2269:2;2258:9;2254:18;2241:32;2296:18;2288:6;2285:30;2282:2;;;2333:6;2325;2318:22;2282:2;2361:22;;2414:4;2406:13;;2402:27;-1:-1:-1;2392:2:1;;2448:6;2440;2433:22;2392:2;2476:75;2543:7;2538:2;2525:16;2520:2;2516;2512:11;2476:75;:::i;:::-;2466:85;;;1985:572;;;;;;;:::o;2562:369::-;;;2688:2;2676:9;2667:7;2663:23;2659:32;2656:2;;;2709:6;2701;2694:22;2656:2;2737:31;2758:9;2737:31;:::i;:::-;2727:41;;2818:2;2807:9;2803:18;2790:32;2865:5;2858:13;2851:21;2844:5;2841:32;2831:2;;2892:6;2884;2877:22;2831:2;2920:5;2910:15;;;2646:285;;;;;:::o;2936:266::-;;;3065:2;3053:9;3044:7;3040:23;3036:32;3033:2;;;3086:6;3078;3071:22;3033:2;3114:31;3135:9;3114:31;:::i;:::-;3104:41;3192:2;3177:18;;;;3164:32;;-1:-1:-1;;;3023:179:1:o;3207:194::-;;3330:2;3318:9;3309:7;3305:23;3301:32;3298:2;;;3351:6;3343;3336:22;3298:2;-1:-1:-1;3379:16:1;;3288:113;-1:-1:-1;3288:113:1:o;3406:257::-;;3517:2;3505:9;3496:7;3492:23;3488:32;3485:2;;;3538:6;3530;3523:22;3485:2;3582:9;3569:23;3601:32;3627:5;3601:32;:::i;3668:261::-;;3790:2;3778:9;3769:7;3765:23;3761:32;3758:2;;;3811:6;3803;3796:22;3758:2;3848:9;3842:16;3867:32;3893:5;3867:32;:::i;3934:344::-;;4056:2;4044:9;4035:7;4031:23;4027:32;4024:2;;;4077:6;4069;4062:22;4024:2;4122:9;4109:23;4155:18;4147:6;4144:30;4141:2;;;4192:6;4184;4177:22;4141:2;4220:52;4264:7;4255:6;4244:9;4240:22;4220:52;:::i;4283:190::-;;4395:2;4383:9;4374:7;4370:23;4366:32;4363:2;;;4416:6;4408;4401:22;4363:2;-1:-1:-1;4444:23:1;;4353:120;-1:-1:-1;4353:120:1:o;4478:412::-;;;4617:2;4605:9;4596:7;4592:23;4588:32;4585:2;;;4638:6;4630;4623:22;4585:2;4679:9;4666:23;4656:33;;4740:2;4729:9;4725:18;4712:32;4767:18;4759:6;4756:30;4753:2;;;4804:6;4796;4789:22;4753:2;4832:52;4876:7;4867:6;4856:9;4852:22;4832:52;:::i;:::-;4822:62;;;4575:315;;;;;:::o;4895:259::-;;4976:5;4970:12;5003:6;4998:3;4991:19;5019:63;5075:6;5068:4;5063:3;5059:14;5052:4;5045:5;5041:16;5019:63;:::i;:::-;5136:2;5115:15;-1:-1:-1;;5111:29:1;5102:39;;;;5143:4;5098:50;;4946:208;-1:-1:-1;;4946:208:1:o;5159:274::-;;5326:6;5320:13;5342:53;5388:6;5383:3;5376:4;5368:6;5364:17;5342:53;:::i;:::-;5411:16;;;;;5296:137;-1:-1:-1;;5296:137:1:o;5438:830::-;;5597:3;5632:6;5626:13;5658:1;5690:2;5679:9;5675:18;5707:1;5702:126;;;;5842:1;5837:406;;;;5668:575;;5702:126;-1:-1:-1;;5735:24:1;;5723:37;;5808:1;5793:17;;5812:4;5789:28;5780:38;;;-1:-1:-1;5702:126:1;;5837:406;5887:1;5876:9;5872:17;5914:6;5909:3;5902:19;5944:4;5991:2;5986:3;5976:18;6016:3;6032:165;6046:6;6043:1;6040:13;6032:165;;;6124:14;;6111:11;;;6104:35;6167:16;;;;6061:10;;6032:165;;;-1:-1:-1;;;6217:16:1;;;-1:-1:-1;5668:575:1;-1:-1:-1;6259:3:1;;5576:692;-1:-1:-1;;;;;5576:692:1:o;6273:470::-;;6490:6;6484:13;6506:53;6552:6;6547:3;6540:4;6532:6;6528:17;6506:53;:::i;:::-;6622:13;;6581:16;;;;6644:57;6622:13;6581:16;6678:4;6666:17;;6644:57;:::i;:::-;6717:20;;6460:283;-1:-1:-1;;;;6460:283:1:o;6748:203::-;-1:-1:-1;;;;;6912:32:1;;;;6894:51;;6882:2;6867:18;;6849:102::o;6956:506::-;-1:-1:-1;;;;;7241:15:1;;;7223:34;;7293:15;;7288:2;7273:18;;7266:43;7340:2;7325:18;;7318:34;;;7388:3;7383:2;7368:18;;7361:31;;;6956:506;;7409:47;;7436:19;;7428:6;7409:47;:::i;:::-;7401:55;7175:287;-1:-1:-1;;;;;;7175:287:1:o;7467:397::-;;7709:1;7705;7700:3;7696:11;7692:19;7684:6;7680:32;7669:9;7662:51;7749:6;7744:2;7733:9;7729:18;7722:34;7792:2;7787;7776:9;7772:18;7765:30;7812:46;7854:2;7843:9;7839:18;7831:6;7812:46;:::i;:::-;7804:54;7652:212;-1:-1:-1;;;;;7652:212:1:o;7869:808::-;;8060:2;8100;8089:9;8085:18;8130:2;8119:9;8112:21;8153:6;8188;8182:13;8219:6;8211;8204:22;8257:2;8246:9;8242:18;8235:25;;8320:2;8314;8306:6;8302:15;8291:9;8287:31;8283:40;8269:54;;8358:2;8350:6;8346:15;8379:4;8392:256;8406:6;8403:1;8400:13;8392:256;;;8499:2;8495:7;8483:9;8475:6;8471:22;8467:36;8462:3;8455:49;8527:41;8561:6;8552;8546:13;8527:41;:::i;:::-;8517:51;-1:-1:-1;8626:12:1;;;;8591:15;;;;8428:1;8421:9;8392:256;;;-1:-1:-1;8665:6:1;;8040:637;-1:-1:-1;;;;;;;8040:637:1:o;8682:635::-;8853:2;8905:21;;;8975:13;;8878:18;;;8997:22;;;8682:635;;8853:2;9076:15;;;;9050:2;9035:18;;;8682:635;9122:169;9136:6;9133:1;9130:13;9122:169;;;9197:13;;9185:26;;9266:15;;;;9231:12;;;;9158:1;9151:9;9122:169;;;-1:-1:-1;9308:3:1;;8833:484;-1:-1:-1;;;;;;8833:484:1:o;9322:187::-;9487:14;;9480:22;9462:41;;9450:2;9435:18;;9417:92::o;9514:221::-;;9663:2;9652:9;9645:21;9683:46;9725:2;9714:9;9710:18;9702:6;9683:46;:::i;9740:982::-;;9878:2;9918;9907:9;9903:18;9948:2;9937:9;9930:21;9971:4;10007:6;10001:13;10033:1;10065:2;10054:9;10050:18;10082:1;10077:178;;;;10269:1;10264:432;;;;10043:653;;10077:178;10132:1;10117:17;;10136:4;10113:28;10098:44;;-1:-1:-1;;10182:24:1;;10177:2;10162:18;;10155:52;10242:2;10227:18;;;-1:-1:-1;10077:178:1;;10264:432;10314:1;10303:9;10299:17;10344:6;10336;10329:22;10379:42;10414:6;10379:42;:::i;:::-;10443:4;10460:180;10474:6;10471:1;10468:13;10460:180;;;10567:14;;10543:17;;;10562:2;10539:26;10532:50;10610:16;;;;10489:10;;10460:180;;;10664:17;;10683:2;10660:26;;-1:-1:-1;;;10043:653:1;-1:-1:-1;10713:3:1;;9858:864;-1:-1:-1;;;;;;;9858:864:1:o;10727:403::-;10929:2;10911:21;;;10968:2;10948:18;;;10941:30;11007:34;11002:2;10987:18;;10980:62;-1:-1:-1;;;11073:2:1;11058:18;;11051:37;11120:3;11105:19;;10901:229::o;11135:398::-;11337:2;11319:21;;;11376:2;11356:18;;;11349:30;11415:34;11410:2;11395:18;;11388:62;-1:-1:-1;;;11481:2:1;11466:18;;11459:32;11523:3;11508:19;;11309:224::o;11538:356::-;11740:2;11722:21;;;11759:18;;;11752:30;11818:34;11813:2;11798:18;;11791:62;11885:2;11870:18;;11712:182::o;11899:414::-;12101:2;12083:21;;;12140:2;12120:18;;;12113:30;12179:34;12174:2;12159:18;;12152:62;-1:-1:-1;;;12245:2:1;12230:18;;12223:48;12303:3;12288:19;;12073:240::o;12318:402::-;12520:2;12502:21;;;12559:2;12539:18;;;12532:30;12598:34;12593:2;12578:18;;12571:62;-1:-1:-1;;;12664:2:1;12649:18;;12642:36;12710:3;12695:19;;12492:228::o;12725:352::-;12927:2;12909:21;;;12966:2;12946:18;;;12939:30;13005;13000:2;12985:18;;12978:58;13068:2;13053:18;;12899:178::o;13082:351::-;13284:2;13266:21;;;13323:2;13303:18;;;13296:30;13362:29;13357:2;13342:18;;13335:57;13424:2;13409:18;;13256:177::o;13438:356::-;13640:2;13622:21;;;13659:18;;;13652:30;13718:34;13713:2;13698:18;;13691:62;13785:2;13770:18;;13612:182::o;13799:400::-;14001:2;13983:21;;;14040:2;14020:18;;;14013:30;14079:34;14074:2;14059:18;;14052:62;-1:-1:-1;;;14145:2:1;14130:18;;14123:34;14189:3;14174:19;;13973:226::o;14204:349::-;14406:2;14388:21;;;14445:2;14425:18;;;14418:30;14484:27;14479:2;14464:18;;14457:55;14544:2;14529:18;;14378:175::o;14558:355::-;14760:2;14742:21;;;14799:2;14779:18;;;14772:30;14838:33;14833:2;14818:18;;14811:61;14904:2;14889:18;;14732:181::o;14918:354::-;15120:2;15102:21;;;15159:2;15139:18;;;15132:30;15198:32;15193:2;15178:18;;15171:60;15263:2;15248:18;;15092:180::o;15684:408::-;15886:2;15868:21;;;15925:2;15905:18;;;15898:30;15964:34;15959:2;15944:18;;15937:62;-1:-1:-1;;;16030:2:1;16015:18;;16008:42;16082:3;16067:19;;15858:234::o;16097:420::-;16299:2;16281:21;;;16338:2;16318:18;;;16311:30;16377:34;16372:2;16357:18;;16350:62;16448:26;16443:2;16428:18;;16421:54;16507:3;16492:19;;16271:246::o;16522:406::-;16724:2;16706:21;;;16763:2;16743:18;;;16736:30;16802:34;16797:2;16782:18;;16775:62;-1:-1:-1;;;16868:2:1;16853:18;;16846:40;16918:3;16903:19;;16696:232::o;16933:398::-;17135:2;17117:21;;;17174:2;17154:18;;;17147:30;17213:34;17208:2;17193:18;;17186:62;-1:-1:-1;;;17279:2:1;17264:18;;17257:32;17321:3;17306:19;;17107:224::o;17336:356::-;17538:2;17520:21;;;17557:18;;;17550:30;17616:34;17611:2;17596:18;;17589:62;17683:2;17668:18;;17510:182::o;17697:405::-;17899:2;17881:21;;;17938:2;17918:18;;;17911:30;17977:34;17972:2;17957:18;;17950:62;-1:-1:-1;;;18043:2:1;18028:18;;18021:39;18092:3;18077:19;;17871:231::o;18107:397::-;18309:2;18291:21;;;18348:2;18328:18;;;18321:30;18387:34;18382:2;18367:18;;18360:62;-1:-1:-1;;;18453:2:1;18438:18;;18431:31;18494:3;18479:19;;18281:223::o;18509:408::-;18711:2;18693:21;;;18750:2;18730:18;;;18723:30;18789:34;18784:2;18769:18;;18762:62;-1:-1:-1;;;18855:2:1;18840:18;;18833:42;18907:3;18892:19;;18683:234::o;18922:356::-;19124:2;19106:21;;;19143:18;;;19136:30;19202:34;19197:2;19182:18;;19175:62;19269:2;19254:18;;19096:182::o;19283:405::-;19485:2;19467:21;;;19524:2;19504:18;;;19497:30;19563:34;19558:2;19543:18;;19536:62;-1:-1:-1;;;19629:2:1;19614:18;;19607:39;19678:3;19663:19;;19457:231::o;19693:411::-;19895:2;19877:21;;;19934:2;19914:18;;;19907:30;19973:34;19968:2;19953:18;;19946:62;-1:-1:-1;;;20039:2:1;20024:18;;20017:45;20094:3;20079:19;;19867:237::o;20109:399::-;20311:2;20293:21;;;20350:2;20330:18;;;20323:30;20389:34;20384:2;20369:18;;20362:62;-1:-1:-1;;;20455:2:1;20440:18;;20433:33;20498:3;20483:19;;20283:225::o;20513:350::-;20715:2;20697:21;;;20754:2;20734:18;;;20727:30;20793:28;20788:2;20773:18;;20766:56;20854:2;20839:18;;20687:176::o;20868:350::-;21070:2;21052:21;;;21109:2;21089:18;;;21082:30;21148:28;21143:2;21128:18;;21121:56;21209:2;21194:18;;21042:176::o;21223:397::-;21425:2;21407:21;;;21464:2;21444:18;;;21437:30;21503:34;21498:2;21483:18;;21476:62;-1:-1:-1;;;21569:2:1;21554:18;;21547:31;21610:3;21595:19;;21397:223::o;21625:346::-;21827:2;21809:21;;;21866:2;21846:18;;;21839:30;-1:-1:-1;;;21900:2:1;21885:18;;21878:52;21962:2;21947:18;;21799:172::o;21976:413::-;22178:2;22160:21;;;22217:2;22197:18;;;22190:30;22256:34;22251:2;22236:18;;22229:62;-1:-1:-1;;;22322:2:1;22307:18;;22300:47;22379:3;22364:19;;22150:239::o;22394:356::-;22596:2;22578:21;;;22615:18;;;22608:30;22674:34;22669:2;22654:18;;22647:62;22741:2;22726:18;;22568:182::o;22755:353::-;22957:2;22939:21;;;22996:2;22976:18;;;22969:30;23035:31;23030:2;23015:18;;23008:59;23099:2;23084:18;;22929:179::o;23113:177::-;23259:25;;;23247:2;23232:18;;23214:76::o;23295:132::-;;23366:17;;;23416:4;23400:21;;;23356:71::o;23432:258::-;23504:1;23514:113;23528:6;23525:1;23522:13;23514:113;;;23604:11;;;23598:18;23585:11;;;23578:39;23550:2;23543:10;23514:113;;;23645:6;23642:1;23639:13;23636:2;;;-1:-1:-1;;23680:1:1;23662:16;;23655:27;23485:205::o;23695:133::-;-1:-1:-1;;;;;;23771:32:1;;23761:43;;23751:2;;23818:1;23815;23808:12

Swarm Source

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