ETH Price: $3,506.99 (-0.07%)
Gas: 2 Gwei

Token

CryptoDucksGenesis (CDG)
 

Overview

Max Total Supply

2,520 CDG

Holders

783

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CDG
0xa38928141bebca3ba45eaeebb7697bfb626498ee
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:
CryptoDucksGenesis

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

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

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

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: contracts/Bear.sol



pragma solidity ^0.8.0;

contract CryptoDucksGenesis is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.07 ether;
  uint256 public maxSupply = 9999;
  uint256 public maxMintAmountPerTx = 6;
  uint256 public nftPerAddressLimit = 6;

  bool public paused = true;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  constructor() ERC721("CryptoDucksGenesis", "CDG") {
    setHiddenMetadataUri("ipfs://QmXsDSR5QsAXRsVHrxmWyejAWag2hqmi8MGPC45vjvGZk7/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    if(onlyWhitelisted == true) {
        require(isWhitelisted(msg.sender), "user is not whitelisted");
    }
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _mintLoop(msg.sender, _mintAmount);
  }

  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }

  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    whitelistedAddresses = _users;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      addressMintedBalance[msg.sender]++;
      _safeMint(_receiver, supply.current());
    }
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b9160089162000205565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a9160099162000205565b5066f8b0a10e470000600b5561270f600c556006600d819055600e55600f805462ffffff1916620100011790553480156200008457600080fd5b50604080518082018252601281527143727970746f4475636b7347656e6573697360701b60208083019182528351808501909452600384526243444760e81b908401528151919291620000da9160009162000205565b508051620000f090600190602084019062000205565b5050506200010d620001076200013760201b60201c565b6200013b565b6200013160405180608001604052806041815260200162002a05604191396200018d565b620002e8565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200020190600a90602084019062000205565b5050565b8280546200021390620002ab565b90600052602060002090601f01602090048101928262000237576000855562000282565b82601f106200025257805160ff191683800117855562000282565b8280016001018555821562000282579182015b828111156200028257825182559160200191906001019062000265565b506200029092915062000294565b5090565b5b8082111562000290576000815560010162000295565b600181811c90821680620002c057607f821691505b60208210811415620002e257634e487b7160e01b600052602260045260246000fd5b50919050565b61270d80620002f86000396000f3fe6080604052600436106102675760003560e01c806370a0823111610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb0114610704578063e0a808531461071a578063e985e9c51461073a578063edec5f2714610783578063efbd73f4146107a3578063f2fde38b146107c357600080fd5b8063b88d4fde1461066e578063ba4e5c491461068e578063ba7d2c76146106ae578063c87b56dd146106c4578063d0eb26b0146106e457600080fd5b806395d89b411161010857806395d89b41146105d15780639c70b512146105e6578063a0712d6814610606578063a22cb46514610619578063a45ba8e714610639578063b071401b1461064e57600080fd5b806370a0823114610548578063715018a6146105685780637ec4a6591461057d5780638da5cb5b1461059d57806394354fd0146105bb57600080fd5b80633c952764116101dd5780634fdd43cb116101a15780634fdd43cb146104a557806351830227146104c55780635503a0e8146104e45780635c975abb146104f957806362b99ad4146105135780636352211e1461052857600080fd5b80633c952764146104035780633ccfd60b1461042357806342842e0e14610438578063438b63001461045857806344a0d68a1461048557600080fd5b806316ba10e01161022f57806316ba10e01461034157806316c38b3c1461036157806318160ddd1461038157806318cae2691461039657806323b872dd146103c35780633af32abf146103e357600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806313faede61461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004611fe0565b6107e3565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610835565b6040516102989190612055565b3480156102cf57600080fd5b506102e36102de366004612068565b6108c7565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b61031636600461209d565b610961565b005b34801561032957600080fd5b50610333600b5481565b604051908152602001610298565b34801561034d57600080fd5b5061031b61035c366004612153565b610a77565b34801561036d57600080fd5b5061031b61037c3660046121ac565b610ab8565b34801561038d57600080fd5b50610333610af5565b3480156103a257600080fd5b506103336103b13660046121c7565b60116020526000908152604090205481565b3480156103cf57600080fd5b5061031b6103de3660046121e2565b610b05565b3480156103ef57600080fd5b5061028c6103fe3660046121c7565b610b36565b34801561040f57600080fd5b5061031b61041e3660046121ac565b610ba0565b34801561042f57600080fd5b5061031b610be6565b34801561044457600080fd5b5061031b6104533660046121e2565b610c84565b34801561046457600080fd5b506104786104733660046121c7565b610c9f565b604051610298919061221e565b34801561049157600080fd5b5061031b6104a0366004612068565b610d80565b3480156104b157600080fd5b5061031b6104c0366004612153565b610daf565b3480156104d157600080fd5b50600f5461028c90610100900460ff1681565b3480156104f057600080fd5b506102b6610dec565b34801561050557600080fd5b50600f5461028c9060ff1681565b34801561051f57600080fd5b506102b6610e7a565b34801561053457600080fd5b506102e3610543366004612068565b610e87565b34801561055457600080fd5b506103336105633660046121c7565b610efe565b34801561057457600080fd5b5061031b610f85565b34801561058957600080fd5b5061031b610598366004612153565b610fbb565b3480156105a957600080fd5b506006546001600160a01b03166102e3565b3480156105c757600080fd5b50610333600d5481565b3480156105dd57600080fd5b506102b6610ff8565b3480156105f257600080fd5b50600f5461028c9062010000900460ff1681565b61031b610614366004612068565b611007565b34801561062557600080fd5b5061031b610634366004612262565b61123f565b34801561064557600080fd5b506102b661124a565b34801561065a57600080fd5b5061031b610669366004612068565b611257565b34801561067a57600080fd5b5061031b610689366004612295565b611286565b34801561069a57600080fd5b506102e36106a9366004612068565b6112be565b3480156106ba57600080fd5b50610333600e5481565b3480156106d057600080fd5b506102b66106df366004612068565b6112e8565b3480156106f057600080fd5b5061031b6106ff366004612068565b611467565b34801561071057600080fd5b50610333600c5481565b34801561072657600080fd5b5061031b6107353660046121ac565b611496565b34801561074657600080fd5b5061028c610755366004612311565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078f57600080fd5b5061031b61079e36600461233b565b6114da565b3480156107af57600080fd5b5061031b6107be3660046123b0565b611510565b3480156107cf57600080fd5b5061031b6107de3660046121c7565b6115f6565b60006001600160e01b031982166380ac58cd60e01b148061081457506001600160e01b03198216635b5e139f60e01b145b8061082f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610844906123d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610870906123d3565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109455760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061096c82610e87565b9050806001600160a01b0316836001600160a01b031614156109da5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161093c565b336001600160a01b03821614806109f657506109f68133610755565b610a685760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161093c565b610a72838361168e565b505050565b6006546001600160a01b03163314610aa15760405162461bcd60e51b815260040161093c9061240e565b8051610ab4906009906020840190611ede565b5050565b6006546001600160a01b03163314610ae25760405162461bcd60e51b815260040161093c9061240e565b600f805460ff1916911515919091179055565b6000610b0060075490565b905090565b610b0f33826116fc565b610b2b5760405162461bcd60e51b815260040161093c90612443565b610a728383836117f3565b6000805b601054811015610b9757826001600160a01b031660108281548110610b6157610b61612494565b6000918252602090912001546001600160a01b03161415610b855750600192915050565b80610b8f816124c0565b915050610b3a565b50600092915050565b6006546001600160a01b03163314610bca5760405162461bcd60e51b815260040161093c9061240e565b600f8054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610c105760405162461bcd60e51b815260040161093c9061240e565b6000610c246006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c6e576040519150601f19603f3d011682016040523d82523d6000602084013e610c73565b606091505b5050905080610c8157600080fd5b50565b610a7283838360405180602001604052806000815250611286565b60606000610cac83610efe565b905060008167ffffffffffffffff811115610cc957610cc96120c7565b604051908082528060200260200182016040528015610cf2578160200160208202803683370190505b509050600160005b8381108015610d0b5750600c548211155b15610d76576000610d1b83610e87565b9050866001600160a01b0316816001600160a01b03161415610d635782848381518110610d4a57610d4a612494565b602090810291909101015281610d5f816124c0565b9250505b82610d6d816124c0565b93505050610cfa565b5090949350505050565b6006546001600160a01b03163314610daa5760405162461bcd60e51b815260040161093c9061240e565b600b55565b6006546001600160a01b03163314610dd95760405162461bcd60e51b815260040161093c9061240e565b8051610ab490600a906020840190611ede565b60098054610df9906123d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e25906123d3565b8015610e725780601f10610e4757610100808354040283529160200191610e72565b820191906000526020600020905b815481529060010190602001808311610e5557829003601f168201915b505050505081565b60088054610df9906123d3565b6000818152600260205260408120546001600160a01b03168061082f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161093c565b60006001600160a01b038216610f695760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161093c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610faf5760405162461bcd60e51b815260040161093c9061240e565b610fb96000611993565b565b6006546001600160a01b03163314610fe55760405162461bcd60e51b815260040161093c9061240e565b8051610ab4906008906020840190611ede565b606060018054610844906123d3565b8060008111801561101a5750600d548111155b61105d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161093c565b600c548161106a60075490565b61107491906124db565b11156110b95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161093c565b600f5460ff161561110c5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161093c565b600f5462010000900460ff161515600114156111775761112b33610b36565b6111775760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161093c565b33600090815260116020526040902054600e5461119484836124db565b11156111e25760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161093c565b82600b546111f091906124f3565b3410156112355760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161093c565b610a7233846119e5565b610ab4338383611a42565b600a8054610df9906123d3565b6006546001600160a01b031633146112815760405162461bcd60e51b815260040161093c9061240e565b600d55565b61129033836116fc565b6112ac5760405162461bcd60e51b815260040161093c90612443565b6112b884848484611b11565b50505050565b601081815481106112ce57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260409020546060906001600160a01b03166113675760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093c565b600f54610100900460ff1661140857600a8054611383906123d3565b80601f01602080910402602001604051908101604052809291908181526020018280546113af906123d3565b80156113fc5780601f106113d1576101008083540402835291602001916113fc565b820191906000526020600020905b8154815290600101906020018083116113df57829003601f168201915b50505050509050919050565b6000611412611b44565b905060008151116114325760405180602001604052806000815250611460565b8061143c84611b53565b600960405160200161145093929190612512565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114915760405162461bcd60e51b815260040161093c9061240e565b600e55565b6006546001600160a01b031633146114c05760405162461bcd60e51b815260040161093c9061240e565b600f80549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146115045760405162461bcd60e51b815260040161093c9061240e565b610a7260108383611f62565b816000811180156115235750600d548111155b6115665760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161093c565b600c548161157360075490565b61157d91906124db565b11156115c25760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161093c565b6006546001600160a01b031633146115ec5760405162461bcd60e51b815260040161093c9061240e565b610a7282846119e5565b6006546001600160a01b031633146116205760405162461bcd60e51b815260040161093c9061240e565b6001600160a01b0381166116855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093c565b610c8181611993565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116c382610e87565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161093c565b600061178083610e87565b9050806001600160a01b0316846001600160a01b031614806117bb5750836001600160a01b03166117b0846108c7565b6001600160a01b0316145b806117eb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661180682610e87565b6001600160a01b03161461186e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161093c565b6001600160a01b0382166118d05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161093c565b6118db60008261168e565b6001600160a01b03831660009081526003602052604081208054600192906119049084906125d6565b90915550506001600160a01b03821660009081526003602052604081208054600192906119329084906124db565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610a72576119fe600780546001019055565b336000908152601160205260408120805491611a19836124c0565b9190505550611a3083611a2b60075490565b611c51565b80611a3a816124c0565b9150506119e8565b816001600160a01b0316836001600160a01b03161415611aa45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161093c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b1c8484846117f3565b611b2884848484611c6b565b6112b85760405162461bcd60e51b815260040161093c906125ed565b606060088054610844906123d3565b606081611b775750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ba15780611b8b816124c0565b9150611b9a9050600a83612655565b9150611b7b565b60008167ffffffffffffffff811115611bbc57611bbc6120c7565b6040519080825280601f01601f191660200182016040528015611be6576020820181803683370190505b5090505b84156117eb57611bfb6001836125d6565b9150611c08600a86612669565b611c139060306124db565b60f81b818381518110611c2857611c28612494565b60200101906001600160f81b031916908160001a905350611c4a600a86612655565b9450611bea565b610ab4828260405180602001604052806000815250611d69565b60006001600160a01b0384163b15611d5e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611caf90339089908890889060040161267d565b6020604051808303816000875af1925050508015611cea575060408051601f3d908101601f19168201909252611ce7918101906126ba565b60015b611d44573d808015611d18576040519150601f19603f3d011682016040523d82523d6000602084013e611d1d565b606091505b508051611d3c5760405162461bcd60e51b815260040161093c906125ed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117eb565b506001949350505050565b611d738383611d9c565b611d806000848484611c6b565b610a725760405162461bcd60e51b815260040161093c906125ed565b6001600160a01b038216611df25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161093c565b6000818152600260205260409020546001600160a01b031615611e575760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161093c565b6001600160a01b0382166000908152600360205260408120805460019290611e809084906124db565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611eea906123d3565b90600052602060002090601f016020900481019282611f0c5760008555611f52565b82601f10611f2557805160ff1916838001178555611f52565b82800160010185558215611f52579182015b82811115611f52578251825591602001919060010190611f37565b50611f5e929150611fb5565b5090565b828054828255906000526020600020908101928215611f52579160200282015b82811115611f525781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611f82565b5b80821115611f5e5760008155600101611fb6565b6001600160e01b031981168114610c8157600080fd5b600060208284031215611ff257600080fd5b813561146081611fca565b60005b83811015612018578181015183820152602001612000565b838111156112b85750506000910152565b60008151808452612041816020860160208601611ffd565b601f01601f19169290920160200192915050565b6020815260006114606020830184612029565b60006020828403121561207a57600080fd5b5035919050565b80356001600160a01b038116811461209857600080fd5b919050565b600080604083850312156120b057600080fd5b6120b983612081565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156120f8576120f86120c7565b604051601f8501601f19908116603f01168101908282118183101715612120576121206120c7565b8160405280935085815286868601111561213957600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561216557600080fd5b813567ffffffffffffffff81111561217c57600080fd5b8201601f8101841361218d57600080fd5b6117eb848235602084016120dd565b8035801515811461209857600080fd5b6000602082840312156121be57600080fd5b6114608261219c565b6000602082840312156121d957600080fd5b61146082612081565b6000806000606084860312156121f757600080fd5b61220084612081565b925061220e60208501612081565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156122565783518352928401929184019160010161223a565b50909695505050505050565b6000806040838503121561227557600080fd5b61227e83612081565b915061228c6020840161219c565b90509250929050565b600080600080608085870312156122ab57600080fd5b6122b485612081565b93506122c260208601612081565b925060408501359150606085013567ffffffffffffffff8111156122e557600080fd5b8501601f810187136122f657600080fd5b612305878235602084016120dd565b91505092959194509250565b6000806040838503121561232457600080fd5b61232d83612081565b915061228c60208401612081565b6000806020838503121561234e57600080fd5b823567ffffffffffffffff8082111561236657600080fd5b818501915085601f83011261237a57600080fd5b81358181111561238957600080fd5b8660208260051b850101111561239e57600080fd5b60209290920196919550909350505050565b600080604083850312156123c357600080fd5b8235915061228c60208401612081565b600181811c908216806123e757607f821691505b6020821081141561240857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156124d4576124d46124aa565b5060010190565b600082198211156124ee576124ee6124aa565b500190565b600081600019048311821515161561250d5761250d6124aa565b500290565b6000845160206125258285838a01611ffd565b8551918401916125388184848a01611ffd565b8554920191600090600181811c908083168061255557607f831692505b85831081141561257357634e487b7160e01b85526022600452602485fd5b8080156125875760018114612598576125c5565b60ff198516885283880195506125c5565b60008b81526020902060005b858110156125bd5781548a8201529084019088016125a4565b505083880195505b50939b9a5050505050505050505050565b6000828210156125e8576125e86124aa565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826126645761266461263f565b500490565b6000826126785761267861263f565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126b090830184612029565b9695505050505050565b6000602082840312156126cc57600080fd5b815161146081611fca56fea26469706673582212202f4d560751144f7bdaafa96fb8a3d5ac8e858e695f45c07de77e592e83b593b764736f6c634300080b0033697066733a2f2f516d587344535235517341585273564872786d5779656a415761673268716d69384d4750433435766a76475a6b372f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102675760003560e01c806370a0823111610144578063b88d4fde116100b6578063d5abeb011161007a578063d5abeb0114610704578063e0a808531461071a578063e985e9c51461073a578063edec5f2714610783578063efbd73f4146107a3578063f2fde38b146107c357600080fd5b8063b88d4fde1461066e578063ba4e5c491461068e578063ba7d2c76146106ae578063c87b56dd146106c4578063d0eb26b0146106e457600080fd5b806395d89b411161010857806395d89b41146105d15780639c70b512146105e6578063a0712d6814610606578063a22cb46514610619578063a45ba8e714610639578063b071401b1461064e57600080fd5b806370a0823114610548578063715018a6146105685780637ec4a6591461057d5780638da5cb5b1461059d57806394354fd0146105bb57600080fd5b80633c952764116101dd5780634fdd43cb116101a15780634fdd43cb146104a557806351830227146104c55780635503a0e8146104e45780635c975abb146104f957806362b99ad4146105135780636352211e1461052857600080fd5b80633c952764146104035780633ccfd60b1461042357806342842e0e14610438578063438b63001461045857806344a0d68a1461048557600080fd5b806316ba10e01161022f57806316ba10e01461034157806316c38b3c1461036157806318160ddd1461038157806318cae2691461039657806323b872dd146103c35780633af32abf146103e357600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806313faede61461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004611fe0565b6107e3565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610835565b6040516102989190612055565b3480156102cf57600080fd5b506102e36102de366004612068565b6108c7565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b61031636600461209d565b610961565b005b34801561032957600080fd5b50610333600b5481565b604051908152602001610298565b34801561034d57600080fd5b5061031b61035c366004612153565b610a77565b34801561036d57600080fd5b5061031b61037c3660046121ac565b610ab8565b34801561038d57600080fd5b50610333610af5565b3480156103a257600080fd5b506103336103b13660046121c7565b60116020526000908152604090205481565b3480156103cf57600080fd5b5061031b6103de3660046121e2565b610b05565b3480156103ef57600080fd5b5061028c6103fe3660046121c7565b610b36565b34801561040f57600080fd5b5061031b61041e3660046121ac565b610ba0565b34801561042f57600080fd5b5061031b610be6565b34801561044457600080fd5b5061031b6104533660046121e2565b610c84565b34801561046457600080fd5b506104786104733660046121c7565b610c9f565b604051610298919061221e565b34801561049157600080fd5b5061031b6104a0366004612068565b610d80565b3480156104b157600080fd5b5061031b6104c0366004612153565b610daf565b3480156104d157600080fd5b50600f5461028c90610100900460ff1681565b3480156104f057600080fd5b506102b6610dec565b34801561050557600080fd5b50600f5461028c9060ff1681565b34801561051f57600080fd5b506102b6610e7a565b34801561053457600080fd5b506102e3610543366004612068565b610e87565b34801561055457600080fd5b506103336105633660046121c7565b610efe565b34801561057457600080fd5b5061031b610f85565b34801561058957600080fd5b5061031b610598366004612153565b610fbb565b3480156105a957600080fd5b506006546001600160a01b03166102e3565b3480156105c757600080fd5b50610333600d5481565b3480156105dd57600080fd5b506102b6610ff8565b3480156105f257600080fd5b50600f5461028c9062010000900460ff1681565b61031b610614366004612068565b611007565b34801561062557600080fd5b5061031b610634366004612262565b61123f565b34801561064557600080fd5b506102b661124a565b34801561065a57600080fd5b5061031b610669366004612068565b611257565b34801561067a57600080fd5b5061031b610689366004612295565b611286565b34801561069a57600080fd5b506102e36106a9366004612068565b6112be565b3480156106ba57600080fd5b50610333600e5481565b3480156106d057600080fd5b506102b66106df366004612068565b6112e8565b3480156106f057600080fd5b5061031b6106ff366004612068565b611467565b34801561071057600080fd5b50610333600c5481565b34801561072657600080fd5b5061031b6107353660046121ac565b611496565b34801561074657600080fd5b5061028c610755366004612311565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078f57600080fd5b5061031b61079e36600461233b565b6114da565b3480156107af57600080fd5b5061031b6107be3660046123b0565b611510565b3480156107cf57600080fd5b5061031b6107de3660046121c7565b6115f6565b60006001600160e01b031982166380ac58cd60e01b148061081457506001600160e01b03198216635b5e139f60e01b145b8061082f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610844906123d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610870906123d3565b80156108bd5780601f10610892576101008083540402835291602001916108bd565b820191906000526020600020905b8154815290600101906020018083116108a057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109455760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061096c82610e87565b9050806001600160a01b0316836001600160a01b031614156109da5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161093c565b336001600160a01b03821614806109f657506109f68133610755565b610a685760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161093c565b610a72838361168e565b505050565b6006546001600160a01b03163314610aa15760405162461bcd60e51b815260040161093c9061240e565b8051610ab4906009906020840190611ede565b5050565b6006546001600160a01b03163314610ae25760405162461bcd60e51b815260040161093c9061240e565b600f805460ff1916911515919091179055565b6000610b0060075490565b905090565b610b0f33826116fc565b610b2b5760405162461bcd60e51b815260040161093c90612443565b610a728383836117f3565b6000805b601054811015610b9757826001600160a01b031660108281548110610b6157610b61612494565b6000918252602090912001546001600160a01b03161415610b855750600192915050565b80610b8f816124c0565b915050610b3a565b50600092915050565b6006546001600160a01b03163314610bca5760405162461bcd60e51b815260040161093c9061240e565b600f8054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610c105760405162461bcd60e51b815260040161093c9061240e565b6000610c246006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c6e576040519150601f19603f3d011682016040523d82523d6000602084013e610c73565b606091505b5050905080610c8157600080fd5b50565b610a7283838360405180602001604052806000815250611286565b60606000610cac83610efe565b905060008167ffffffffffffffff811115610cc957610cc96120c7565b604051908082528060200260200182016040528015610cf2578160200160208202803683370190505b509050600160005b8381108015610d0b5750600c548211155b15610d76576000610d1b83610e87565b9050866001600160a01b0316816001600160a01b03161415610d635782848381518110610d4a57610d4a612494565b602090810291909101015281610d5f816124c0565b9250505b82610d6d816124c0565b93505050610cfa565b5090949350505050565b6006546001600160a01b03163314610daa5760405162461bcd60e51b815260040161093c9061240e565b600b55565b6006546001600160a01b03163314610dd95760405162461bcd60e51b815260040161093c9061240e565b8051610ab490600a906020840190611ede565b60098054610df9906123d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610e25906123d3565b8015610e725780601f10610e4757610100808354040283529160200191610e72565b820191906000526020600020905b815481529060010190602001808311610e5557829003601f168201915b505050505081565b60088054610df9906123d3565b6000818152600260205260408120546001600160a01b03168061082f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161093c565b60006001600160a01b038216610f695760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161093c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610faf5760405162461bcd60e51b815260040161093c9061240e565b610fb96000611993565b565b6006546001600160a01b03163314610fe55760405162461bcd60e51b815260040161093c9061240e565b8051610ab4906008906020840190611ede565b606060018054610844906123d3565b8060008111801561101a5750600d548111155b61105d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161093c565b600c548161106a60075490565b61107491906124db565b11156110b95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161093c565b600f5460ff161561110c5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e74726163742069732070617573656421000000000000000000604482015260640161093c565b600f5462010000900460ff161515600114156111775761112b33610b36565b6111775760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161093c565b33600090815260116020526040902054600e5461119484836124db565b11156111e25760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161093c565b82600b546111f091906124f3565b3410156112355760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161093c565b610a7233846119e5565b610ab4338383611a42565b600a8054610df9906123d3565b6006546001600160a01b031633146112815760405162461bcd60e51b815260040161093c9061240e565b600d55565b61129033836116fc565b6112ac5760405162461bcd60e51b815260040161093c90612443565b6112b884848484611b11565b50505050565b601081815481106112ce57600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260409020546060906001600160a01b03166113675760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093c565b600f54610100900460ff1661140857600a8054611383906123d3565b80601f01602080910402602001604051908101604052809291908181526020018280546113af906123d3565b80156113fc5780601f106113d1576101008083540402835291602001916113fc565b820191906000526020600020905b8154815290600101906020018083116113df57829003601f168201915b50505050509050919050565b6000611412611b44565b905060008151116114325760405180602001604052806000815250611460565b8061143c84611b53565b600960405160200161145093929190612512565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146114915760405162461bcd60e51b815260040161093c9061240e565b600e55565b6006546001600160a01b031633146114c05760405162461bcd60e51b815260040161093c9061240e565b600f80549115156101000261ff0019909216919091179055565b6006546001600160a01b031633146115045760405162461bcd60e51b815260040161093c9061240e565b610a7260108383611f62565b816000811180156115235750600d548111155b6115665760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161093c565b600c548161157360075490565b61157d91906124db565b11156115c25760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161093c565b6006546001600160a01b031633146115ec5760405162461bcd60e51b815260040161093c9061240e565b610a7282846119e5565b6006546001600160a01b031633146116205760405162461bcd60e51b815260040161093c9061240e565b6001600160a01b0381166116855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093c565b610c8181611993565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116c382610e87565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161093c565b600061178083610e87565b9050806001600160a01b0316846001600160a01b031614806117bb5750836001600160a01b03166117b0846108c7565b6001600160a01b0316145b806117eb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661180682610e87565b6001600160a01b03161461186e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161093c565b6001600160a01b0382166118d05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161093c565b6118db60008261168e565b6001600160a01b03831660009081526003602052604081208054600192906119049084906125d6565b90915550506001600160a01b03821660009081526003602052604081208054600192906119329084906124db565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610a72576119fe600780546001019055565b336000908152601160205260408120805491611a19836124c0565b9190505550611a3083611a2b60075490565b611c51565b80611a3a816124c0565b9150506119e8565b816001600160a01b0316836001600160a01b03161415611aa45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161093c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b1c8484846117f3565b611b2884848484611c6b565b6112b85760405162461bcd60e51b815260040161093c906125ed565b606060088054610844906123d3565b606081611b775750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ba15780611b8b816124c0565b9150611b9a9050600a83612655565b9150611b7b565b60008167ffffffffffffffff811115611bbc57611bbc6120c7565b6040519080825280601f01601f191660200182016040528015611be6576020820181803683370190505b5090505b84156117eb57611bfb6001836125d6565b9150611c08600a86612669565b611c139060306124db565b60f81b818381518110611c2857611c28612494565b60200101906001600160f81b031916908160001a905350611c4a600a86612655565b9450611bea565b610ab4828260405180602001604052806000815250611d69565b60006001600160a01b0384163b15611d5e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611caf90339089908890889060040161267d565b6020604051808303816000875af1925050508015611cea575060408051601f3d908101601f19168201909252611ce7918101906126ba565b60015b611d44573d808015611d18576040519150601f19603f3d011682016040523d82523d6000602084013e611d1d565b606091505b508051611d3c5760405162461bcd60e51b815260040161093c906125ed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117eb565b506001949350505050565b611d738383611d9c565b611d806000848484611c6b565b610a725760405162461bcd60e51b815260040161093c906125ed565b6001600160a01b038216611df25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161093c565b6000818152600260205260409020546001600160a01b031615611e575760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161093c565b6001600160a01b0382166000908152600360205260408120805460019290611e809084906124db565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611eea906123d3565b90600052602060002090601f016020900481019282611f0c5760008555611f52565b82601f10611f2557805160ff1916838001178555611f52565b82800160010185558215611f52579182015b82811115611f52578251825591602001919060010190611f37565b50611f5e929150611fb5565b5090565b828054828255906000526020600020908101928215611f52579160200282015b82811115611f525781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611f82565b5b80821115611f5e5760008155600101611fb6565b6001600160e01b031981168114610c8157600080fd5b600060208284031215611ff257600080fd5b813561146081611fca565b60005b83811015612018578181015183820152602001612000565b838111156112b85750506000910152565b60008151808452612041816020860160208601611ffd565b601f01601f19169290920160200192915050565b6020815260006114606020830184612029565b60006020828403121561207a57600080fd5b5035919050565b80356001600160a01b038116811461209857600080fd5b919050565b600080604083850312156120b057600080fd5b6120b983612081565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156120f8576120f86120c7565b604051601f8501601f19908116603f01168101908282118183101715612120576121206120c7565b8160405280935085815286868601111561213957600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561216557600080fd5b813567ffffffffffffffff81111561217c57600080fd5b8201601f8101841361218d57600080fd5b6117eb848235602084016120dd565b8035801515811461209857600080fd5b6000602082840312156121be57600080fd5b6114608261219c565b6000602082840312156121d957600080fd5b61146082612081565b6000806000606084860312156121f757600080fd5b61220084612081565b925061220e60208501612081565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156122565783518352928401929184019160010161223a565b50909695505050505050565b6000806040838503121561227557600080fd5b61227e83612081565b915061228c6020840161219c565b90509250929050565b600080600080608085870312156122ab57600080fd5b6122b485612081565b93506122c260208601612081565b925060408501359150606085013567ffffffffffffffff8111156122e557600080fd5b8501601f810187136122f657600080fd5b612305878235602084016120dd565b91505092959194509250565b6000806040838503121561232457600080fd5b61232d83612081565b915061228c60208401612081565b6000806020838503121561234e57600080fd5b823567ffffffffffffffff8082111561236657600080fd5b818501915085601f83011261237a57600080fd5b81358181111561238957600080fd5b8660208260051b850101111561239e57600080fd5b60209290920196919550909350505050565b600080604083850312156123c357600080fd5b8235915061228c60208401612081565b600181811c908216806123e757607f821691505b6020821081141561240857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156124d4576124d46124aa565b5060010190565b600082198211156124ee576124ee6124aa565b500190565b600081600019048311821515161561250d5761250d6124aa565b500290565b6000845160206125258285838a01611ffd565b8551918401916125388184848a01611ffd565b8554920191600090600181811c908083168061255557607f831692505b85831081141561257357634e487b7160e01b85526022600452602485fd5b8080156125875760018114612598576125c5565b60ff198516885283880195506125c5565b60008b81526020902060005b858110156125bd5781548a8201529084019088016125a4565b505083880195505b50939b9a5050505050505050505050565b6000828210156125e8576125e86124aa565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826126645761266461263f565b500490565b6000826126785761267861263f565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126b090830184612029565b9695505050505050565b6000602082840312156126cc57600080fd5b815161146081611fca56fea26469706673582212202f4d560751144f7bdaafa96fb8a3d5ac8e858e695f45c07de77e592e83b593b764736f6c634300080b0033

Deployed Bytecode Sourcemap

38099:4781:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25597:305;;;;;;;;;;-1:-1:-1;25597:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25597:305:0;;;;;;;;26542:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28101:221::-;;;;;;;;;;-1:-1:-1;28101:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;28101:221:0;1528:203:1;27624:411:0;;;;;;;;;;-1:-1:-1;27624:411:0;;;;;:::i;:::-;;:::i;:::-;;38372:32;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;38372:32:0;2173:177:1;42188:100:0;;;;;;;;;;-1:-1:-1;42188:100:0;;;;;:::i;:::-;;:::i;42294:77::-;;;;;;;;;;-1:-1:-1;42294:77:0;;;;;:::i;:::-;;:::i;39135:89::-;;;;;;;;;;;;;:::i;38675:55::-;;;;;;;;;;-1:-1:-1;38675:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;28851:339;;;;;;;;;;-1:-1:-1;28851:339:0;;;;;:::i;:::-;;:::i;39763:239::-;;;;;;;;;;-1:-1:-1;39763:239:0;;;;;:::i;:::-;;:::i;41589:95::-;;;;;;;;;;-1:-1:-1;41589:95:0;;;;;:::i;:::-;;:::i;42377:137::-;;;;;;;;;;;;;:::i;29261:185::-;;;;;;;;;;-1:-1:-1;29261:185:0;;;;;:::i;:::-;;:::i;40171:635::-;;;;;;;;;;-1:-1:-1;40171:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41399:74::-;;;;;;;;;;-1:-1:-1;41399:74:0;;;;;:::i;:::-;;:::i;41944:132::-;;;;;;;;;;-1:-1:-1;41944:132:0;;;;;:::i;:::-;;:::i;38561:28::-;;;;;;;;;;-1:-1:-1;38561:28:0;;;;;;;;;;;38294:33;;;;;;;;;;;;;:::i;38531:25::-;;;;;;;;;;-1:-1:-1;38531:25:0;;;;;;;;38261:28;;;;;;;;;;;;;:::i;26236:239::-;;;;;;;;;;-1:-1:-1;26236:239:0;;;;;:::i;:::-;;:::i;25966:208::-;;;;;;;;;;-1:-1:-1;25966:208:0;;;;;:::i;:::-;;:::i;6585:103::-;;;;;;;;;;;;;:::i;42082:100::-;;;;;;;;;;-1:-1:-1;42082:100:0;;;;;:::i;:::-;;:::i;5934:87::-;;;;;;;;;;-1:-1:-1;6007:6:0;;-1:-1:-1;;;;;6007:6:0;5934:87;;38445:37;;;;;;;;;;;;;;;;26711:104;;;;;;;;;;;;;:::i;38594:34::-;;;;;;;;;;-1:-1:-1;38594:34:0;;;;;;;;;;;39230:527;;;;;;:::i;:::-;;:::i;28394:155::-;;;;;;;;;;-1:-1:-1;28394:155:0;;;;;:::i;:::-;;:::i;38332:31::-;;;;;;;;;;;;;:::i;41808:130::-;;;;;;;;;;-1:-1:-1;41808:130:0;;;;;:::i;:::-;;:::i;29517:328::-;;;;;;;;;;-1:-1:-1;29517:328:0;;;;;:::i;:::-;;:::i;38633:37::-;;;;;;;;;;-1:-1:-1;38633:37:0;;;;;:::i;:::-;;:::i;38487:::-;;;;;;;;;;;;;;;;40812:494;;;;;;;;;;-1:-1:-1;40812:494:0;;;;;:::i;:::-;;:::i;41479:104::-;;;;;;;;;;-1:-1:-1;41479:104:0;;;;;:::i;:::-;;:::i;38409:31::-;;;;;;;;;;;;;;;;41312:81;;;;;;;;;;-1:-1:-1;41312:81:0;;;;;:::i;:::-;;:::i;28620:164::-;;;;;;;;;;-1:-1:-1;28620:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28741:25:0;;;28717:4;28741:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28620:164;41692:110;;;;;;;;;;-1:-1:-1;41692:110:0;;;;;:::i;:::-;;:::i;40010:155::-;;;;;;;;;;-1:-1:-1;40010:155:0;;;;;:::i;:::-;;:::i;6843:201::-;;;;;;;;;;-1:-1:-1;6843:201:0;;;;;:::i;:::-;;:::i;25597:305::-;25699:4;-1:-1:-1;;;;;;25736:40:0;;-1:-1:-1;;;25736:40:0;;:105;;-1:-1:-1;;;;;;;25793:48:0;;-1:-1:-1;;;25793:48:0;25736:105;:158;;;-1:-1:-1;;;;;;;;;;18475:40:0;;;25858:36;25716:178;25597:305;-1:-1:-1;;25597:305:0:o;26542:100::-;26596:13;26629:5;26622:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26542:100;:::o;28101:221::-;28177:7;31444:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31444:16:0;28197:73;;;;-1:-1:-1;;;28197:73:0;;7753:2:1;28197:73:0;;;7735:21:1;7792:2;7772:18;;;7765:30;7831:34;7811:18;;;7804:62;-1:-1:-1;;;7882:18:1;;;7875:42;7934:19;;28197:73:0;;;;;;;;;-1:-1:-1;28290:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28290:24:0;;28101:221::o;27624:411::-;27705:13;27721:23;27736:7;27721:14;:23::i;:::-;27705:39;;27769:5;-1:-1:-1;;;;;27763:11:0;:2;-1:-1:-1;;;;;27763:11:0;;;27755:57;;;;-1:-1:-1;;;27755:57:0;;8166:2:1;27755:57:0;;;8148:21:1;8205:2;8185:18;;;8178:30;8244:34;8224:18;;;8217:62;-1:-1:-1;;;8295:18:1;;;8288:31;8336:19;;27755:57:0;7964:397:1;27755:57:0;4738:10;-1:-1:-1;;;;;27847:21:0;;;;:62;;-1:-1:-1;27872:37:0;27889:5;4738:10;28620:164;:::i;27872:37::-;27825:168;;;;-1:-1:-1;;;27825:168:0;;8568:2:1;27825:168:0;;;8550:21:1;8607:2;8587:18;;;8580:30;8646:34;8626:18;;;8619:62;8717:26;8697:18;;;8690:54;8761:19;;27825:168:0;8366:420:1;27825:168:0;28006:21;28015:2;28019:7;28006:8;:21::i;:::-;27694:341;27624:411;;:::o;42188:100::-;6007:6;;-1:-1:-1;;;;;6007:6:0;4738:10;6154:23;6146:68;;;;-1:-1:-1;;;6146:68:0;;;;;;;:::i;:::-;42260:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42188:100:::0;:::o;42294:77::-;6007:6;;-1:-1:-1;;;;;6007:6:0;4738:10;6154:23;6146:68;;;;-1:-1:-1;;;6146:68:0;;;;;;;:::i;:::-;42350:6:::1;:15:::0;;-1:-1:-1;;42350:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42294:77::o;39135:89::-;39179:7;39202:16;:6;1354:14;;1262:114;39202:16;39195:23;;39135:89;:::o;28851:339::-;29046:41;4738:10;29079:7;29046:18;:41::i;:::-;29038:103;;;;-1:-1:-1;;;29038:103:0;;;;;;;:::i;:::-;29154:28;29164:4;29170:2;29174:7;29154:9;:28::i;39763:239::-;39822:4;;39835:143;39856:20;:27;39852:31;;39835:143;;;39930:5;-1:-1:-1;;;;;39903:32:0;:20;39924:1;39903:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;39903:23:0;:32;39899:72;;;-1:-1:-1;39957:4:0;;39763:239;-1:-1:-1;;39763:239:0:o;39899:72::-;39885:3;;;;:::i;:::-;;;;39835:143;;;-1:-1:-1;39991:5:0;;39763:239;-1:-1:-1;;39763:239:0:o;41589:95::-;6007:6;;-1:-1:-1;;;;;6007:6:0;4738:10;6154:23;6146:68;;;;-1:-1:-1;;;6146:68:0;;;;;;;:::i;:::-;41654:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;41654:24:0;;::::1;::::0;;;::::1;::::0;;41589:95::o;42377:137::-;6007:6;;-1:-1:-1;;;;;6007:6:0;4738:10;6154:23;6146:68;;;;-1:-1:-1;;;6146:68:0;;;;;;;:::i;:::-;42422:7:::1;42443;6007:6:::0;;-1:-1:-1;;;;;6007:6:0;;5934:87;42443:7:::1;-1:-1:-1::0;;;;;42435:21:0::1;42464;42435:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42421:69;;;42505:2;42497:11;;;::::0;::::1;;42414:100;42377:137::o:0;29261:185::-;29399:39;29416:4;29422:2;29426:7;29399:39;;;;;;;;;;;;:16;:39::i;40171:635::-;40246:16;40274:23;40300:17;40310:6;40300:9;:17::i;:::-;40274:43;;40324:30;40371:15;40357:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40357:30:0;-1:-1:-1;40324:63:0;-1:-1:-1;40419:1:0;40394:22;40463:309;40488:15;40470;:33;:64;;;;;40525:9;;40507:14;:27;;40470:64;40463:309;;;40545:25;40573:23;40581:14;40573:7;:23::i;:::-;40545:51;;40632:6;-1:-1:-1;;;;;40611:27:0;:17;-1:-1:-1;;;;;40611:27:0;;40607:131;;;40684:14;40651:13;40665:15;40651:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;40711:17;;;;:::i;:::-;;;;40607:131;40748:16;;;;:::i;:::-;;;;40536:236;40463:309;;;-1:-1:-1;40787:13:0;;40171:635;-1:-1:-1;;;;40171:635:0:o;41399:74::-;6007:6;;-1:-1:-1;;;;;6007:6:0;4738:10;6154:23;6146:68;;;;-1:-1:-1;;;6146:68:0;;;;;;;:::i;:::-;41455:4:::1;:12:::0;41399:74::o;41944:132::-;6007:6;;-1:-1:-1;;;;;6007:6:0;4738:10;6154:23;6146:68;;;;-1:-1:-1;;;6146:68:0;;;;;;;:::i;:::-;42032:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;38294:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38261:28::-;;;;;;;:::i;26236:239::-;26308:7;26344:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26344:16:0;26379:19;26371:73;;;;-1:-1:-1;;;26371:73:0;;10386:2:1;26371:73:0;;;10368:21:1;10425:2;10405:18;;;10398:30;10464:34;10444:18;;;10437:62;-1:-1:-1;;;10515:18:1;;;10508:39;10564:19;;26371:73:0;10184:405:1;25966:208:0;26038:7;-1:-1:-1;;;;;26066:19:0;;26058:74;;;;-1:-1:-1;;;26058:74:0;;10796:2:1;26058:74:0;;;10778:21:1;10835:2;10815:18;;;10808:30;10874:34;10854:18;;;10847:62;-1:-1:-1;;;10925:18:1;;;10918:40;10975:19;;26058:74:0;10594:406:1;26058:74:0;-1:-1:-1;;;;;;26150:16:0;;;;;:9;:16;;;;;;;25966:208::o;6585:103::-;6007:6;;-1:-1:-1;;;;;6007:6:0;4738:10;6154:23;6146:68;;;;-1:-1:-1;;;6146:68:0;;;;;;;:::i;:::-;6650:30:::1;6677:1;6650:18;:30::i;:::-;6585:103::o:0;42082:100::-;6007:6;;-1:-1:-1;;;;;6007:6:0;4738:10;6154:23;6146:68;;;;-1:-1:-1;;;6146:68:0;;;;;;;:::i;:::-;42154:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;26711:104::-:0;26767:13;26800:7;26793:14;;;;;:::i;39230:527::-;39295:11;38969:1;38955:11;:15;:52;;;;;38989:18;;38974:11;:33;;38955:52;38947:85;;;;-1:-1:-1;;;38947:85:0;;11207:2:1;38947:85:0;;;11189:21:1;11246:2;11226:18;;;11219:30;-1:-1:-1;;;11265:18:1;;;11258:50;11325:18;;38947:85:0;11005:344:1;38947:85:0;39081:9;;39066:11;39047:16;:6;1354:14;;1262:114;39047:16;:30;;;;:::i;:::-;:43;;39039:76;;;;-1:-1:-1;;;39039:76:0;;11689:2:1;39039:76:0;;;11671:21:1;11728:2;11708:18;;;11701:30;-1:-1:-1;;;11747:18:1;;;11740:50;11807:18;;39039:76:0;11487:344:1;39039:76:0;39324:6:::1;::::0;::::1;;39323:7;39315:43;;;::::0;-1:-1:-1;;;39315:43:0;;12038:2:1;39315:43:0::1;::::0;::::1;12020:21:1::0;12077:2;12057:18;;;12050:30;12116:25;12096:18;;;12089:53;12159:18;;39315:43:0::1;11836:347:1::0;39315:43:0::1;39368:15;::::0;;;::::1;;;:23;;39387:4;39368:23;39365:108;;;39412:25;39426:10;39412:13;:25::i;:::-;39404:61;;;::::0;-1:-1:-1;;;39404:61:0;;12390:2:1;39404:61:0::1;::::0;::::1;12372:21:1::0;12429:2;12409:18;;;12402:30;12468:25;12448:18;;;12441:53;12511:18;;39404:61:0::1;12188:347:1::0;39404:61:0::1;39527:10;39479:24;39506:32:::0;;;:20:::1;:32;::::0;;;;;39587:18:::1;::::0;39553:30:::1;39572:11:::0;39506:32;39553:30:::1;:::i;:::-;:52;;39545:93;;;::::0;-1:-1:-1;;;39545:93:0;;12742:2:1;39545:93:0::1;::::0;::::1;12724:21:1::0;12781:2;12761:18;;;12754:30;12820;12800:18;;;12793:58;12868:18;;39545:93:0::1;12540:352:1::0;39545:93:0::1;39673:11;39666:4;;:18;;;;:::i;:::-;39653:9;:31;;39645:63;;;::::0;-1:-1:-1;;;39645:63:0;;13272:2:1;39645:63:0::1;::::0;::::1;13254:21:1::0;13311:2;13291:18;;;13284:30;-1:-1:-1;;;13330:18:1;;;13323:49;13389:18;;39645:63:0::1;13070:343:1::0;39645:63:0::1;39717:34;39727:10;39739:11;39717:9;:34::i;28394:155::-:0;28489:52;4738:10;28522:8;28532;28489:18;:52::i;38332:31::-;;;;;;;:::i;41808:130::-;6007:6;;-1:-1:-1;;;;;6007:6:0;4738:10;6154:23;6146:68;;;;-1:-1:-1;;;6146:68:0;;;;;;;:::i;:::-;41892:18:::1;:40:::0;41808:130::o;29517:328::-;29692:41;4738:10;29725:7;29692:18;:41::i;:::-;29684:103;;;;-1:-1:-1;;;29684:103:0;;;;;;;:::i;:::-;29798:39;29812:4;29818:2;29822:7;29831:5;29798:13;:39::i;:::-;29517:328;;;;:::o;38633:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38633:37:0;;-1:-1:-1;38633:37:0;:::o;40812:494::-;31420:4;31444:16;;;:7;:16;;;;;;40911:13;;-1:-1:-1;;;;;31444:16:0;40936:98;;;;-1:-1:-1;;;40936:98:0;;13620:2:1;40936:98:0;;;13602:21:1;13659:2;13639:18;;;13632:30;13698:34;13678:18;;;13671:62;-1:-1:-1;;;13749:18:1;;;13742:45;13804:19;;40936:98:0;13418:411:1;40936:98:0;41047:8;;;;;;;41043:64;;41082:17;41075:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40812:494;;;:::o;41043:64::-;41115:28;41146:10;:8;:10::i;:::-;41115:41;;41201:1;41176:14;41170:28;:32;:130;;;;;;;;;;;;;;;;;41238:14;41254:19;:8;:17;:19::i;:::-;41275:9;41221:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41170:130;41163:137;40812:494;-1:-1:-1;;;40812:494:0:o;41479:104::-;6007:6;;-1:-1:-1;;;;;6007:6:0;4738:10;6154:23;6146:68;;;;-1:-1:-1;;;6146:68:0;;;;;;;:::i;:::-;41550:18:::1;:27:::0;41479:104::o;41312:81::-;6007:6;;-1:-1:-1;;;;;6007:6:0;4738:10;6154:23;6146:68;;;;-1:-1:-1;;;6146:68:0;;;;;;;:::i;:::-;41370:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;41370:17:0;;::::1;::::0;;;::::1;::::0;;41312:81::o;41692:110::-;6007:6;;-1:-1:-1;;;;;6007:6:0;4738:10;6154:23;6146:68;;;;-1:-1:-1;;;6146:68:0;;;;;;;:::i;:::-;41767:29:::1;:20;41790:6:::0;;41767:29:::1;:::i;40010:155::-:0;40096:11;38969:1;38955:11;:15;:52;;;;;38989:18;;38974:11;:33;;38955:52;38947:85;;;;-1:-1:-1;;;38947:85:0;;11207:2:1;38947:85:0;;;11189:21:1;11246:2;11226:18;;;11219:30;-1:-1:-1;;;11265:18:1;;;11258:50;11325:18;;38947:85:0;11005:344:1;38947:85:0;39081:9;;39066:11;39047:16;:6;1354:14;;1262:114;39047:16;:30;;;;:::i;:::-;:43;;39039:76;;;;-1:-1:-1;;;39039:76:0;;11689:2:1;39039:76:0;;;11671:21:1;11728:2;11708:18;;;11701:30;-1:-1:-1;;;11747:18:1;;;11740:50;11807:18;;39039:76:0;11487:344:1;39039:76:0;6007:6;;-1:-1:-1;;;;;6007:6:0;4738:10;6154:23:::1;6146:68;;;;-1:-1:-1::0;;;6146:68:0::1;;;;;;;:::i;:::-;40126:33:::2;40136:9;40147:11;40126:9;:33::i;6843:201::-:0;6007:6;;-1:-1:-1;;;;;6007:6:0;4738:10;6154:23;6146:68;;;;-1:-1:-1;;;6146:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6932:22:0;::::1;6924:73;;;::::0;-1:-1:-1;;;6924:73:0;;15694:2:1;6924:73:0::1;::::0;::::1;15676:21:1::0;15733:2;15713:18;;;15706:30;15772:34;15752:18;;;15745:62;-1:-1:-1;;;15823:18:1;;;15816:36;15869:19;;6924:73:0::1;15492:402:1::0;6924:73:0::1;7008:28;7027:8;7008:18;:28::i;35337:174::-:0;35412:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35412:29:0;-1:-1:-1;;;;;35412:29:0;;;;;;;;:24;;35466:23;35412:24;35466:14;:23::i;:::-;-1:-1:-1;;;;;35457:46:0;;;;;;;;;;;35337:174;;:::o;31649:348::-;31742:4;31444:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31444:16:0;31759:73;;;;-1:-1:-1;;;31759:73:0;;16101:2:1;31759:73:0;;;16083:21:1;16140:2;16120:18;;;16113:30;16179:34;16159:18;;;16152:62;-1:-1:-1;;;16230:18:1;;;16223:42;16282:19;;31759:73:0;15899:408:1;31759:73:0;31843:13;31859:23;31874:7;31859:14;:23::i;:::-;31843:39;;31912:5;-1:-1:-1;;;;;31901:16:0;:7;-1:-1:-1;;;;;31901:16:0;;:51;;;;31945:7;-1:-1:-1;;;;;31921:31:0;:20;31933:7;31921:11;:20::i;:::-;-1:-1:-1;;;;;31921:31:0;;31901:51;:87;;;-1:-1:-1;;;;;;28741:25:0;;;28717:4;28741:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31956:32;31893:96;31649:348;-1:-1:-1;;;;31649:348:0:o;34641:578::-;34800:4;-1:-1:-1;;;;;34773:31:0;:23;34788:7;34773:14;:23::i;:::-;-1:-1:-1;;;;;34773:31:0;;34765:85;;;;-1:-1:-1;;;34765:85:0;;16514:2:1;34765:85:0;;;16496:21:1;16553:2;16533:18;;;16526:30;16592:34;16572:18;;;16565:62;-1:-1:-1;;;16643:18:1;;;16636:39;16692:19;;34765:85:0;16312:405:1;34765:85:0;-1:-1:-1;;;;;34869:16:0;;34861:65;;;;-1:-1:-1;;;34861:65:0;;16924:2:1;34861:65:0;;;16906:21:1;16963:2;16943:18;;;16936:30;17002:34;16982:18;;;16975:62;-1:-1:-1;;;17053:18:1;;;17046:34;17097:19;;34861:65:0;16722:400:1;34861:65:0;35043:29;35060:1;35064:7;35043:8;:29::i;:::-;-1:-1:-1;;;;;35085:15:0;;;;;;:9;:15;;;;;:20;;35104:1;;35085:15;:20;;35104:1;;35085:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35116:13:0;;;;;;:9;:13;;;;;:18;;35133:1;;35116:13;:18;;35133:1;;35116:18;:::i;:::-;;;;-1:-1:-1;;35145:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35145:21:0;-1:-1:-1;;;;;35145:21:0;;;;;;;;;35184:27;;35145:16;;35184:27;;;;;;;34641:578;;;:::o;7204:191::-;7297:6;;;-1:-1:-1;;;;;7314:17:0;;;-1:-1:-1;;;;;;7314:17:0;;;;;;;7347:40;;7297:6;;;7314:17;7297:6;;7347:40;;7278:16;;7347:40;7267:128;7204:191;:::o;42520:247::-;42600:9;42595:167;42619:11;42615:1;:15;42595:167;;;42646:18;:6;1473:19;;1491:1;1473:19;;;1384:127;42646:18;42694:10;42673:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;;;42716:38;42726:9;42737:16;:6;1354:14;;1262:114;42737:16;42716:9;:38::i;:::-;42632:3;;;;:::i;:::-;;;;42595:167;;35653:315;35808:8;-1:-1:-1;;;;;35799:17:0;:5;-1:-1:-1;;;;;35799:17:0;;;35791:55;;;;-1:-1:-1;;;35791:55:0;;17459:2:1;35791:55:0;;;17441:21:1;17498:2;17478:18;;;17471:30;17537:27;17517:18;;;17510:55;17582:18;;35791:55:0;17257:349:1;35791:55:0;-1:-1:-1;;;;;35857:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35857:46:0;;;;;;;;;;35919:41;;540::1;;;35919::0;;513:18:1;35919:41:0;;;;;;;35653:315;;;:::o;30727:::-;30884:28;30894:4;30900:2;30904:7;30884:9;:28::i;:::-;30931:48;30954:4;30960:2;30964:7;30973:5;30931:22;:48::i;:::-;30923:111;;;;-1:-1:-1;;;30923:111:0;;;;;;;:::i;42773:104::-;42833:13;42862:9;42855:16;;;;;:::i;2220:723::-;2276:13;2497:10;2493:53;;-1:-1:-1;;2524:10:0;;;;;;;;;;;;-1:-1:-1;;;2524:10:0;;;;;2220:723::o;2493:53::-;2571:5;2556:12;2612:78;2619:9;;2612:78;;2645:8;;;;:::i;:::-;;-1:-1:-1;2668:10:0;;-1:-1:-1;2676:2:0;2668:10;;:::i;:::-;;;2612:78;;;2700:19;2732:6;2722:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2722:17:0;;2700:39;;2750:154;2757:10;;2750:154;;2784:11;2794:1;2784:11;;:::i;:::-;;-1:-1:-1;2853:10:0;2861:2;2853:5;:10;:::i;:::-;2840:24;;:2;:24;:::i;:::-;2827:39;;2810:6;2817;2810:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2810:56:0;;;;;;;;-1:-1:-1;2881:11:0;2890:2;2881:11;;:::i;:::-;;;2750:154;;32339:110;32415:26;32425:2;32429:7;32415:26;;;;;;;;;;;;:9;:26::i;36533:799::-;36688:4;-1:-1:-1;;;;;36709:13:0;;8545:20;8593:8;36705:620;;36745:72;;-1:-1:-1;;;36745:72:0;;-1:-1:-1;;;;;36745:36:0;;;;;:72;;4738:10;;36796:4;;36802:7;;36811:5;;36745:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36745:72:0;;;;;;;;-1:-1:-1;;36745:72:0;;;;;;;;;;;;:::i;:::-;;;36741:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36987:13:0;;36983:272;;37030:60;;-1:-1:-1;;;37030:60:0;;;;;;;:::i;36983:272::-;37205:6;37199:13;37190:6;37186:2;37182:15;37175:38;36741:529;-1:-1:-1;;;;;;36868:51:0;-1:-1:-1;;;36868:51:0;;-1:-1:-1;36861:58:0;;36705:620;-1:-1:-1;37309:4:0;36533:799;;;;;;:::o;32676:321::-;32806:18;32812:2;32816:7;32806:5;:18::i;:::-;32857:54;32888:1;32892:2;32896:7;32905:5;32857:22;:54::i;:::-;32835:154;;;;-1:-1:-1;;;32835:154:0;;;;;;;:::i;33333:382::-;-1:-1:-1;;;;;33413:16:0;;33405:61;;;;-1:-1:-1;;;33405:61:0;;19354:2:1;33405:61:0;;;19336:21:1;;;19373:18;;;19366:30;19432:34;19412:18;;;19405:62;19484:18;;33405:61:0;19152:356:1;33405:61:0;31420:4;31444:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31444:16:0;:30;33477:58;;;;-1:-1:-1;;;33477:58:0;;19715:2:1;33477:58:0;;;19697:21:1;19754:2;19734:18;;;19727:30;19793;19773:18;;;19766:58;19841:18;;33477:58:0;19513:352:1;33477:58:0;-1:-1:-1;;;;;33606:13:0;;;;;;:9;:13;;;;;:18;;33623:1;;33606:13;:18;;33623:1;;33606:18;:::i;:::-;;;;-1:-1:-1;;33635:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33635:21:0;-1:-1:-1;;;;;33635:21:0;;;;;;;;33674:33;;33635:16;;;33674:33;;33635:16;;33674:33;33333:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:632;2552:5;2582:18;2623:2;2615:6;2612:14;2609:40;;;2629:18;;:::i;:::-;2704:2;2698:9;2672:2;2758:15;;-1:-1:-1;;2754:24:1;;;2780:2;2750:33;2746:42;2734:55;;;2804:18;;;2824:22;;;2801:46;2798:72;;;2850:18;;:::i;:::-;2890:10;2886:2;2879:22;2919:6;2910:15;;2949:6;2941;2934:22;2989:3;2980:6;2975:3;2971:16;2968:25;2965:45;;;3006:1;3003;2996:12;2965:45;3056:6;3051:3;3044:4;3036:6;3032:17;3019:44;3111:1;3104:4;3095:6;3087;3083:19;3079:30;3072:41;;;;2487:632;;;;;:::o;3124:451::-;3193:6;3246:2;3234:9;3225:7;3221:23;3217:32;3214:52;;;3262:1;3259;3252:12;3214:52;3302:9;3289:23;3335:18;3327:6;3324:30;3321:50;;;3367:1;3364;3357:12;3321:50;3390:22;;3443:4;3435:13;;3431:27;-1:-1:-1;3421:55:1;;3472:1;3469;3462:12;3421:55;3495:74;3561:7;3556:2;3543:16;3538:2;3534;3530:11;3495:74;:::i;3580:160::-;3645:20;;3701:13;;3694:21;3684:32;;3674:60;;3730:1;3727;3720:12;3745:180;3801:6;3854:2;3842:9;3833:7;3829:23;3825:32;3822:52;;;3870:1;3867;3860:12;3822:52;3893:26;3909:9;3893:26;:::i;3930:186::-;3989:6;4042:2;4030:9;4021:7;4017:23;4013:32;4010:52;;;4058:1;4055;4048:12;4010:52;4081:29;4100:9;4081:29;:::i;4121:328::-;4198:6;4206;4214;4267:2;4255:9;4246:7;4242:23;4238:32;4235:52;;;4283:1;4280;4273:12;4235:52;4306:29;4325:9;4306:29;:::i;:::-;4296:39;;4354:38;4388:2;4377:9;4373:18;4354:38;:::i;:::-;4344:48;;4439:2;4428:9;4424:18;4411:32;4401:42;;4121:328;;;;;:::o;4454:632::-;4625:2;4677:21;;;4747:13;;4650:18;;;4769:22;;;4596:4;;4625:2;4848:15;;;;4822:2;4807:18;;;4596:4;4891:169;4905:6;4902:1;4899:13;4891:169;;;4966:13;;4954:26;;5035:15;;;;5000:12;;;;4927:1;4920:9;4891:169;;;-1:-1:-1;5077:3:1;;4454:632;-1:-1:-1;;;;;;4454:632:1:o;5091:254::-;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;:::-;5294:45;;5091:254;;;;;:::o;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;5777:18;5769:6;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:615::-;6373:6;6381;6434:2;6422:9;6413:7;6409:23;6405:32;6402:52;;;6450:1;6447;6440:12;6402:52;6490:9;6477:23;6519:18;6560:2;6552:6;6549:14;6546:34;;;6576:1;6573;6566:12;6546:34;6614:6;6603:9;6599:22;6589:32;;6659:7;6652:4;6648:2;6644:13;6640:27;6630:55;;6681:1;6678;6671:12;6630:55;6721:2;6708:16;6747:2;6739:6;6736:14;6733:34;;;6763:1;6760;6753:12;6733:34;6816:7;6811:2;6801:6;6798:1;6794:14;6790:2;6786:23;6782:32;6779:45;6776:65;;;6837:1;6834;6827:12;6776:65;6868:2;6860:11;;;;;6890:6;;-1:-1:-1;6287:615:1;;-1:-1:-1;;;;6287:615:1:o;6907:254::-;6975:6;6983;7036:2;7024:9;7015:7;7011:23;7007:32;7004:52;;;7052:1;7049;7042:12;7004:52;7088:9;7075:23;7065:33;;7117:38;7151:2;7140:9;7136:18;7117:38;:::i;7166:380::-;7245:1;7241:12;;;;7288;;;7309:61;;7363:4;7355:6;7351:17;7341:27;;7309:61;7416:2;7408:6;7405:14;7385:18;7382:38;7379:161;;;7462:10;7457:3;7453:20;7450:1;7443:31;7497:4;7494:1;7487:15;7525:4;7522:1;7515:15;7379:161;;7166:380;;;:::o;8791:356::-;8993:2;8975:21;;;9012:18;;;9005:30;9071:34;9066:2;9051:18;;9044:62;9138:2;9123:18;;8791:356::o;9152:413::-;9354:2;9336:21;;;9393:2;9373:18;;;9366:30;9432:34;9427:2;9412:18;;9405:62;-1:-1:-1;;;9498:2:1;9483:18;;9476:47;9555:3;9540:19;;9152:413::o;9570:127::-;9631:10;9626:3;9622:20;9619:1;9612:31;9662:4;9659:1;9652:15;9686:4;9683:1;9676:15;9702:127;9763:10;9758:3;9754:20;9751:1;9744:31;9794:4;9791:1;9784:15;9818:4;9815:1;9808:15;9834:135;9873:3;-1:-1:-1;;9894:17:1;;9891:43;;;9914:18;;:::i;:::-;-1:-1:-1;9961:1:1;9950:13;;9834:135::o;11354:128::-;11394:3;11425:1;11421:6;11418:1;11415:13;11412:39;;;11431:18;;:::i;:::-;-1:-1:-1;11467:9:1;;11354:128::o;12897:168::-;12937:7;13003:1;12999;12995:6;12991:14;12988:1;12985:21;12980:1;12973:9;12966:17;12962:45;12959:71;;;13010:18;;:::i;:::-;-1:-1:-1;13050:9:1;;12897:168::o;13960:1527::-;14184:3;14222:6;14216:13;14248:4;14261:51;14305:6;14300:3;14295:2;14287:6;14283:15;14261:51;:::i;:::-;14375:13;;14334:16;;;;14397:55;14375:13;14334:16;14419:15;;;14397:55;:::i;:::-;14541:13;;14474:20;;;14514:1;;14601;14623:18;;;;14676;;;;14703:93;;14781:4;14771:8;14767:19;14755:31;;14703:93;14844:2;14834:8;14831:16;14811:18;14808:40;14805:167;;;-1:-1:-1;;;14871:33:1;;14927:4;14924:1;14917:15;14957:4;14878:3;14945:17;14805:167;14988:18;15015:110;;;;15139:1;15134:328;;;;14981:481;;15015:110;-1:-1:-1;;15050:24:1;;15036:39;;15095:20;;;;-1:-1:-1;15015:110:1;;15134:328;13907:1;13900:14;;;13944:4;13931:18;;15229:1;15243:169;15257:8;15254:1;15251:15;15243:169;;;15339:14;;15324:13;;;15317:37;15382:16;;;;15274:10;;15243:169;;;15247:3;;15443:8;15436:5;15432:20;15425:27;;14981:481;-1:-1:-1;15478:3:1;;13960:1527;-1:-1:-1;;;;;;;;;;;13960:1527:1:o;17127:125::-;17167:4;17195:1;17192;17189:8;17186:34;;;17200:18;;:::i;:::-;-1:-1:-1;17237:9:1;;17127:125::o;17611:414::-;17813:2;17795:21;;;17852:2;17832:18;;;17825:30;17891:34;17886:2;17871:18;;17864:62;-1:-1:-1;;;17957:2:1;17942:18;;17935:48;18015:3;18000:19;;17611:414::o;18030:127::-;18091:10;18086:3;18082:20;18079:1;18072:31;18122:4;18119:1;18112:15;18146:4;18143:1;18136:15;18162:120;18202:1;18228;18218:35;;18233:18;;:::i;:::-;-1:-1:-1;18267:9:1;;18162:120::o;18287:112::-;18319:1;18345;18335:35;;18350:18;;:::i;:::-;-1:-1:-1;18384:9:1;;18287:112::o;18404:489::-;-1:-1:-1;;;;;18673:15:1;;;18655:34;;18725:15;;18720:2;18705:18;;18698:43;18772:2;18757:18;;18750:34;;;18820:3;18815:2;18800:18;;18793:31;;;18598:4;;18841:46;;18867:19;;18859:6;18841:46;:::i;:::-;18833:54;18404:489;-1:-1:-1;;;;;;18404:489:1:o;18898:249::-;18967:6;19020:2;19008:9;18999:7;18995:23;18991:32;18988:52;;;19036:1;19033;19026:12;18988:52;19068:9;19062:16;19087:30;19111:5;19087:30;:::i

Swarm Source

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