ETH Price: $3,334.91 (-1.57%)
Gas: 21 Gwei

Token

DuaLipaDao (DLDAO)
 

Overview

Max Total Supply

929 DLDAO

Holders

146

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DLDAO
0x194feaadb5972dd0451baca1300921c730062e77
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:
DuaLipaDao

Compiler Version
v0.8.0+commit.c7dfd78e

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-18
*/

// 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/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/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/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: @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: Contracts/DuaLipaDao.sol

pragma solidity ^0.8.0;

contract DuaLipaDao is Ownable, ERC721 {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenSupply;

    uint256 public constant MAX_TOKENS = 1100;
    uint256 public constant MINT_TRANSACTION_LIMIT = 9;

    uint256 public tokenPrice = 0.015 ether;
    uint256 public freeMints = 550;
    bool public saleIsActive;

    string _baseTokenURI;
    address _proxyRegistryAddress;

    constructor(address proxyRegistryAddress) ERC721("DuaLipaDao", "DLDAO") {
        _proxyRegistryAddress = proxyRegistryAddress;
        _tokenSupply.increment();
        _safeMint(msg.sender, 0);
    }

    function freeMint(uint256 amount) external {
        require(saleIsActive, "Sale is not active");
        require(amount < MINT_TRANSACTION_LIMIT, "Mint amount too large");
        uint256 supply = _tokenSupply.current();
        require(supply + amount < freeMints, "Not enough free mints remaining");

        for (uint256 i = 0; i < amount; i++) {
            _tokenSupply.increment();
            _safeMint(msg.sender, supply + i);
        }
    }

    function publicMint(uint256 amount) external payable {
        require(saleIsActive, "Sale is not active");
        require(amount < MINT_TRANSACTION_LIMIT, "Mint amount too large");
        uint256 supply = _tokenSupply.current();
        require(supply + amount < MAX_TOKENS, "Not enough tokens remaining");
        require(tokenPrice * amount <= msg.value, "Not enough ether sent");

        for (uint256 i = 0; i < amount; i++) {
            _tokenSupply.increment();
            _safeMint(msg.sender, supply + i);
        }
    }

    function reserveTokens(address to, uint256 amount) external onlyOwner {
        uint256 supply = _tokenSupply.current();
        require(supply + amount < MAX_TOKENS, "Not enough tokens remaining");
        for (uint256 i = 0; i < amount; i++) {
            _tokenSupply.increment();
            _safeMint(to, supply + i);
        }
    }

    function setTokenPrice(uint256 newPrice) external onlyOwner {
        tokenPrice = newPrice;
    }

    function setFreeMints(uint256 amount) external onlyOwner {
        require(amount <= MAX_TOKENS, "Free mint amount too large");
        freeMints = amount;
    }

    function flipSaleState() external onlyOwner {
        saleIsActive = !saleIsActive;
    }

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

    function setBaseURI(string memory newBaseURI) external onlyOwner {
        _baseTokenURI = newBaseURI;
    }

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

    function setProxyRegistryAddress(address proxyRegistryAddress)
        external
        onlyOwner
    {
        _proxyRegistryAddress = proxyRegistryAddress;
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(_proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }
        return super.isApprovedForAll(owner, operator);
    }

    receive() external payable {}

    function withdraw() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Withdrawal failed");
    }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_TRANSACTION_LIMIT","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":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMints","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setTokenPrice","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":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405266354a6ba7a180006008556102266009553480156200002257600080fd5b506040516200289c3803806200289c8339810160408190526200004591620004cd565b6040518060400160405280600a8152602001694475614c69706144616f60b01b81525060405180604001604052806005815260200164444c44414f60d81b815250620000a06200009a6200011560201b60201c565b62000119565b8151620000b590600190602085019062000427565b508051620000cb90600290602084019062000427565b5050600c80546001600160a01b0319166001600160a01b0384161790555062000101600762000169602090811b62000f4117901c565b6200010e33600062000172565b50620006c0565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80546001019055565b620001948282604051806020016040528060008152506200019860201b60201c565b5050565b620001a48383620001e0565b620001b36000848484620002cb565b620001db5760405162461bcd60e51b8152600401620001d290620005a0565b60405180910390fd5b505050565b6001600160a01b038216620002095760405162461bcd60e51b8152600401620001d29062000629565b620002148162000404565b15620002345760405162461bcd60e51b8152600401620001d290620005f2565b6200024260008383620001db565b6001600160a01b03821660009081526004602052604081208054600192906200026d9084906200065e565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620002ec846001600160a01b03166200042160201b62000f4a1760201c565b15620003f8576001600160a01b03841663150b7a026200030b62000115565b8786866040518563ffffffff1660e01b81526004016200032f949392919062000527565b602060405180830381600087803b1580156200034a57600080fd5b505af19250505080156200037d575060408051601f3d908101601f191682019092526200037a91810190620004fd565b60015b620003dd573d808015620003ae576040519150601f19603f3d011682016040523d82523d6000602084013e620003b3565b606091505b508051620003d55760405162461bcd60e51b8152600401620001d290620005a0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620003fc565b5060015b949350505050565b6000908152600360205260409020546001600160a01b0316151590565b3b151590565b828054620004359062000683565b90600052602060002090601f016020900481019282620004595760008555620004a4565b82601f106200047457805160ff1916838001178555620004a4565b82800160010185558215620004a4579182015b82811115620004a457825182559160200191906001019062000487565b50620004b2929150620004b6565b5090565b5b80821115620004b25760008155600101620004b7565b600060208284031215620004df578081fd5b81516001600160a01b0381168114620004f6578182fd5b9392505050565b6000602082840312156200050f578081fd5b81516001600160e01b031981168114620004f6578182fd5b600060018060a01b0380871683526020818716818501528560408501526080606085015284519150816080850152825b82811015620005755785810182015185820160a00152810162000557565b8281111562000587578360a084870101525b5050601f01601f19169190910160a00195945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b600082198211156200067e57634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200069857607f821691505b60208210811415620006ba57634e487b7160e01b600052602260045260246000fd5b50919050565b6121cc80620006d06000396000f3fe6080604052600436106101dc5760003560e01c806378cf19e911610102578063bea6d30e11610095578063e985e9c511610064578063e985e9c51461050c578063eb8d24441461052c578063f2fde38b14610541578063f47c84c514610561576101e3565b8063bea6d30e14610497578063c87b56dd146104ac578063d26ea6c0146104cc578063e7db8fb0146104ec576101e3565b80638da5cb5b116100d15780638da5cb5b1461042d57806395d89b4114610442578063a22cb46514610457578063b88d4fde14610477576101e3565b806378cf19e9146103c35780637c928fe9146103e35780637ff9b5961461040357806380b1733514610418576101e3565b806334918dfd1161017a5780636352211e116101495780636352211e1461034e5780636a61e5fc1461036e57806370a082311461038e578063715018a6146103ae576101e3565b806334918dfd146102e45780633ccfd60b146102f957806342842e0e1461030e57806355f804b31461032e576101e3565b8063095ea7b3116101b6578063095ea7b31461026d57806318160ddd1461028f57806323b872dd146102b15780632db11544146102d1576101e3565b806301ffc9a7146101e857806306fdde031461021e578063081812fc14610240576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506102086102033660046118e9565b610576565b6040516102159190611a4a565b60405180910390f35b34801561022a57600080fd5b506102336105be565b6040516102159190611a55565b34801561024c57600080fd5b5061026061025b366004611983565b610650565b60405161021591906119f9565b34801561027957600080fd5b5061028d6102883660046118be565b61069c565b005b34801561029b57600080fd5b506102a4610734565b6040516102159190612028565b3480156102bd57600080fd5b5061028d6102cc3660046117d0565b610745565b61028d6102df366004611983565b61077d565b3480156102f057600080fd5b5061028d61085e565b34801561030557600080fd5b5061028d6108b1565b34801561031a57600080fd5b5061028d6103293660046117d0565b61096f565b34801561033a57600080fd5b5061028d61034936600461193d565b61098a565b34801561035a57600080fd5b50610260610369366004611983565b6109e0565b34801561037a57600080fd5b5061028d610389366004611983565b610a15565b34801561039a57600080fd5b506102a46103a936600461177c565b610a59565b3480156103ba57600080fd5b5061028d610a9d565b3480156103cf57600080fd5b5061028d6103de3660046118be565b610ae8565b3480156103ef57600080fd5b5061028d6103fe366004611983565b610b9a565b34801561040f57600080fd5b506102a4610c4a565b34801561042457600080fd5b506102a4610c50565b34801561043957600080fd5b50610260610c56565b34801561044e57600080fd5b50610233610c65565b34801561046357600080fd5b5061028d61047236600461188d565b610c74565b34801561048357600080fd5b5061028d610492366004611810565b610c86565b3480156104a357600080fd5b506102a4610cbf565b3480156104b857600080fd5b506102336104c7366004611983565b610cc4565b3480156104d857600080fd5b5061028d6104e736600461177c565b610d47565b3480156104f857600080fd5b5061028d610507366004611983565b610da8565b34801561051857600080fd5b50610208610527366004611798565b610e0e565b34801561053857600080fd5b50610208610ec4565b34801561054d57600080fd5b5061028d61055c36600461177c565b610ecd565b34801561056d57600080fd5b506102a4610f3b565b60006001600160e01b031982166380ac58cd60e01b14806105a757506001600160e01b03198216635b5e139f60e01b145b806105b657506105b682610f50565b90505b919050565b6060600180546105cd906120bf565b80601f01602080910402602001604051908101604052809291908181526020018280546105f9906120bf565b80156106465780601f1061061b57610100808354040283529160200191610646565b820191906000526020600020905b81548152906001019060200180831161062957829003601f168201915b5050505050905090565b600061065b82610f69565b6106805760405162461bcd60e51b815260040161067790611dec565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106a7826109e0565b9050806001600160a01b0316836001600160a01b031614156106db5760405162461bcd60e51b815260040161067790611f05565b806001600160a01b03166106ed610f86565b6001600160a01b03161480610709575061070981610527610f86565b6107255760405162461bcd60e51b815260040161067790611c90565b61072f8383610f8a565b505050565b60006107406007610ff8565b905090565b610756610750610f86565b82610ffc565b6107725760405162461bcd60e51b815260040161067790611f46565b61072f838383611079565b600a5460ff1661079f5760405162461bcd60e51b815260040161067790611c18565b600981106107bf5760405162461bcd60e51b815260040161067790611a68565b60006107cb6007610ff8565b905061044c6107da8383612031565b106107f75760405162461bcd60e51b815260040161067790611ff1565b3482600854610806919061205d565b11156108245760405162461bcd60e51b815260040161067790611f97565b60005b8281101561072f576108396007610f41565b61084c336108478385612031565b6111a6565b80610856816120fa565b915050610827565b610866610f86565b6001600160a01b0316610877610c56565b6001600160a01b03161461089d5760405162461bcd60e51b815260040161067790611e38565b600a805460ff19811660ff90911615179055565b6108b9610f86565b6001600160a01b03166108ca610c56565b6001600160a01b0316146108f05760405162461bcd60e51b815260040161067790611e38565b6000336001600160a01b031647604051610909906119f6565b60006040518083038185875af1925050503d8060008114610946576040519150601f19603f3d011682016040523d82523d6000602084013e61094b565b606091505b505090508061096c5760405162461bcd60e51b815260040161067790611fc6565b50565b61072f83838360405180602001604052806000815250610c86565b610992610f86565b6001600160a01b03166109a3610c56565b6001600160a01b0316146109c95760405162461bcd60e51b815260040161067790611e38565b80516109dc90600b906020840190611673565b5050565b6000818152600360205260408120546001600160a01b0316806105b65760405162461bcd60e51b815260040161067790611d37565b610a1d610f86565b6001600160a01b0316610a2e610c56565b6001600160a01b031614610a545760405162461bcd60e51b815260040161067790611e38565b600855565b60006001600160a01b038216610a815760405162461bcd60e51b815260040161067790611ced565b506001600160a01b031660009081526004602052604090205490565b610aa5610f86565b6001600160a01b0316610ab6610c56565b6001600160a01b031614610adc5760405162461bcd60e51b815260040161067790611e38565b610ae660006111c0565b565b610af0610f86565b6001600160a01b0316610b01610c56565b6001600160a01b031614610b275760405162461bcd60e51b815260040161067790611e38565b6000610b336007610ff8565b905061044c610b428383612031565b10610b5f5760405162461bcd60e51b815260040161067790611ff1565b60005b82811015610b9457610b746007610f41565b610b82846108478385612031565b80610b8c816120fa565b915050610b62565b50505050565b600a5460ff16610bbc5760405162461bcd60e51b815260040161067790611c18565b60098110610bdc5760405162461bcd60e51b815260040161067790611a68565b6000610be86007610ff8565b600954909150610bf88383612031565b10610c155760405162461bcd60e51b815260040161067790611d80565b60005b8281101561072f57610c2a6007610f41565b610c38336108478385612031565b80610c42816120fa565b915050610c18565b60085481565b60095481565b6000546001600160a01b031690565b6060600280546105cd906120bf565b6109dc610c7f610f86565b8383611210565b610c97610c91610f86565b83610ffc565b610cb35760405162461bcd60e51b815260040161067790611f46565b610b94848484846112b3565b600981565b6060610ccf82610f69565b610ceb5760405162461bcd60e51b815260040161067790611eb6565b6000610cf56112e6565b90506000815111610d155760405180602001604052806000815250610d40565b80610d1f846112f5565b604051602001610d309291906119c7565b6040516020818303038152906040525b9392505050565b610d4f610f86565b6001600160a01b0316610d60610c56565b6001600160a01b031614610d865760405162461bcd60e51b815260040161067790611e38565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610db0610f86565b6001600160a01b0316610dc1610c56565b6001600160a01b031614610de75760405162461bcd60e51b815260040161067790611e38565b61044c811115610e095760405162461bcd60e51b815260040161067790611a97565b600955565b600c5460405163c455279160e01b81526000916001600160a01b039081169190841690829063c455279190610e479088906004016119f9565b60206040518083038186803b158015610e5f57600080fd5b505afa158015610e73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e979190611921565b6001600160a01b03161415610eb0576001915050610ebe565b610eba8484611418565b9150505b92915050565b600a5460ff1681565b610ed5610f86565b6001600160a01b0316610ee6610c56565b6001600160a01b031614610f0c5760405162461bcd60e51b815260040161067790611e38565b6001600160a01b038116610f325760405162461bcd60e51b815260040161067790611b20565b61096c816111c0565b61044c81565b80546001019055565b3b151590565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fbf826109e0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b600061100782610f69565b6110235760405162461bcd60e51b815260040161067790611c44565b600061102e836109e0565b9050806001600160a01b0316846001600160a01b031614806110695750836001600160a01b031661105e84610650565b6001600160a01b0316145b80610eba5750610eba8185610e0e565b826001600160a01b031661108c826109e0565b6001600160a01b0316146110b25760405162461bcd60e51b815260040161067790611e6d565b6001600160a01b0382166110d85760405162461bcd60e51b815260040161067790611b9d565b6110e383838361072f565b6110ee600082610f8a565b6001600160a01b038316600090815260046020526040812080546001929061111790849061207c565b90915550506001600160a01b0382166000908152600460205260408120805460019290611145908490612031565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109dc828260405180602001604052806000815250611446565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156112425760405162461bcd60e51b815260040161067790611be1565b6001600160a01b0383811660008181526006602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906112a6908590611a4a565b60405180910390a3505050565b6112be848484611079565b6112ca84848484611479565b610b945760405162461bcd60e51b815260040161067790611ace565b6060600b80546105cd906120bf565b60608161131a57506040805180820190915260018152600360fc1b60208201526105b9565b8160005b8115611344578061132e816120fa565b915061133d9050600a83612049565b915061131e565b60008167ffffffffffffffff81111561136d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611397576020820181803683370190505b5090505b8415611410576113ac60018361207c565b91506113b9600a86612115565b6113c4906030612031565b60f81b8183815181106113e757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611409600a86612049565b945061139b565b949350505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6114508383611594565b61145d6000848484611479565b61072f5760405162461bcd60e51b815260040161067790611ace565b600061148d846001600160a01b0316610f4a565b1561158957836001600160a01b031663150b7a026114a9610f86565b8786866040518563ffffffff1660e01b81526004016114cb9493929190611a0d565b602060405180830381600087803b1580156114e557600080fd5b505af1925050508015611515575060408051601f3d908101601f1916820190925261151291810190611905565b60015b61156f573d808015611543576040519150601f19603f3d011682016040523d82523d6000602084013e611548565b606091505b5080516115675760405162461bcd60e51b815260040161067790611ace565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611410565b506001949350505050565b6001600160a01b0382166115ba5760405162461bcd60e51b815260040161067790611db7565b6115c381610f69565b156115e05760405162461bcd60e51b815260040161067790611b66565b6115ec6000838361072f565b6001600160a01b0382166000908152600460205260408120805460019290611615908490612031565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461167f906120bf565b90600052602060002090601f0160209004810192826116a157600085556116e7565b82601f106116ba57805160ff19168380011785556116e7565b828001600101855582156116e7579182015b828111156116e75782518255916020019190600101906116cc565b506116f39291506116f7565b5090565b5b808211156116f357600081556001016116f8565b600067ffffffffffffffff8084111561172757611727612155565b604051601f8501601f19168101602001828111828210171561174b5761174b612155565b60405284815291508183850186101561176357600080fd5b8484602083013760006020868301015250509392505050565b60006020828403121561178d578081fd5b8135610d408161216b565b600080604083850312156117aa578081fd5b82356117b58161216b565b915060208301356117c58161216b565b809150509250929050565b6000806000606084860312156117e4578081fd5b83356117ef8161216b565b925060208401356117ff8161216b565b929592945050506040919091013590565b60008060008060808587031215611825578081fd5b84356118308161216b565b935060208501356118408161216b565b925060408501359150606085013567ffffffffffffffff811115611862578182fd5b8501601f81018713611872578182fd5b6118818782356020840161170c565b91505092959194509250565b6000806040838503121561189f578182fd5b82356118aa8161216b565b9150602083013580151581146117c5578182fd5b600080604083850312156118d0578182fd5b82356118db8161216b565b946020939093013593505050565b6000602082840312156118fa578081fd5b8135610d4081612180565b600060208284031215611916578081fd5b8151610d4081612180565b600060208284031215611932578081fd5b8151610d408161216b565b60006020828403121561194e578081fd5b813567ffffffffffffffff811115611964578182fd5b8201601f81018413611974578182fd5b610eba8482356020840161170c565b600060208284031215611994578081fd5b5035919050565b600081518084526119b3816020860160208601612093565b601f01601f19169290920160200192915050565b600083516119d9818460208801612093565b8351908301906119ed818360208801612093565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a409083018461199b565b9695505050505050565b901515815260200190565b600060208252610d40602083018461199b565b6020808252601590820152744d696e7420616d6f756e7420746f6f206c6172676560581b604082015260600190565b6020808252601a908201527f46726565206d696e7420616d6f756e7420746f6f206c61726765000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601f908201527f4e6f7420656e6f7567682066726565206d696e74732072656d61696e696e6700604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260159082015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604082015260600190565b60208082526011908201527015da5d1a191c985dd85b0819985a5b1959607a1b604082015260600190565b6020808252601b908201527f4e6f7420656e6f75676820746f6b656e732072656d61696e696e670000000000604082015260600190565b90815260200190565b6000821982111561204457612044612129565b500190565b6000826120585761205861213f565b500490565b600081600019048311821515161561207757612077612129565b500290565b60008282101561208e5761208e612129565b500390565b60005b838110156120ae578181015183820152602001612096565b83811115610b945750506000910152565b6002810460018216806120d357607f821691505b602082108114156120f457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561210e5761210e612129565b5060010190565b6000826121245761212461213f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461096c57600080fd5b6001600160e01b03198116811461096c57600080fdfea2646970667358221220bf9eb7989fcfb133779dd719b53594ac74eb8a91dad5c731a67780b719b80a9464736f6c634300080000330000000000000000000000005b2b701ba06b94c5a2c83151c30304a7ae45a7a7

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c806378cf19e911610102578063bea6d30e11610095578063e985e9c511610064578063e985e9c51461050c578063eb8d24441461052c578063f2fde38b14610541578063f47c84c514610561576101e3565b8063bea6d30e14610497578063c87b56dd146104ac578063d26ea6c0146104cc578063e7db8fb0146104ec576101e3565b80638da5cb5b116100d15780638da5cb5b1461042d57806395d89b4114610442578063a22cb46514610457578063b88d4fde14610477576101e3565b806378cf19e9146103c35780637c928fe9146103e35780637ff9b5961461040357806380b1733514610418576101e3565b806334918dfd1161017a5780636352211e116101495780636352211e1461034e5780636a61e5fc1461036e57806370a082311461038e578063715018a6146103ae576101e3565b806334918dfd146102e45780633ccfd60b146102f957806342842e0e1461030e57806355f804b31461032e576101e3565b8063095ea7b3116101b6578063095ea7b31461026d57806318160ddd1461028f57806323b872dd146102b15780632db11544146102d1576101e3565b806301ffc9a7146101e857806306fdde031461021e578063081812fc14610240576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506102086102033660046118e9565b610576565b6040516102159190611a4a565b60405180910390f35b34801561022a57600080fd5b506102336105be565b6040516102159190611a55565b34801561024c57600080fd5b5061026061025b366004611983565b610650565b60405161021591906119f9565b34801561027957600080fd5b5061028d6102883660046118be565b61069c565b005b34801561029b57600080fd5b506102a4610734565b6040516102159190612028565b3480156102bd57600080fd5b5061028d6102cc3660046117d0565b610745565b61028d6102df366004611983565b61077d565b3480156102f057600080fd5b5061028d61085e565b34801561030557600080fd5b5061028d6108b1565b34801561031a57600080fd5b5061028d6103293660046117d0565b61096f565b34801561033a57600080fd5b5061028d61034936600461193d565b61098a565b34801561035a57600080fd5b50610260610369366004611983565b6109e0565b34801561037a57600080fd5b5061028d610389366004611983565b610a15565b34801561039a57600080fd5b506102a46103a936600461177c565b610a59565b3480156103ba57600080fd5b5061028d610a9d565b3480156103cf57600080fd5b5061028d6103de3660046118be565b610ae8565b3480156103ef57600080fd5b5061028d6103fe366004611983565b610b9a565b34801561040f57600080fd5b506102a4610c4a565b34801561042457600080fd5b506102a4610c50565b34801561043957600080fd5b50610260610c56565b34801561044e57600080fd5b50610233610c65565b34801561046357600080fd5b5061028d61047236600461188d565b610c74565b34801561048357600080fd5b5061028d610492366004611810565b610c86565b3480156104a357600080fd5b506102a4610cbf565b3480156104b857600080fd5b506102336104c7366004611983565b610cc4565b3480156104d857600080fd5b5061028d6104e736600461177c565b610d47565b3480156104f857600080fd5b5061028d610507366004611983565b610da8565b34801561051857600080fd5b50610208610527366004611798565b610e0e565b34801561053857600080fd5b50610208610ec4565b34801561054d57600080fd5b5061028d61055c36600461177c565b610ecd565b34801561056d57600080fd5b506102a4610f3b565b60006001600160e01b031982166380ac58cd60e01b14806105a757506001600160e01b03198216635b5e139f60e01b145b806105b657506105b682610f50565b90505b919050565b6060600180546105cd906120bf565b80601f01602080910402602001604051908101604052809291908181526020018280546105f9906120bf565b80156106465780601f1061061b57610100808354040283529160200191610646565b820191906000526020600020905b81548152906001019060200180831161062957829003601f168201915b5050505050905090565b600061065b82610f69565b6106805760405162461bcd60e51b815260040161067790611dec565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106a7826109e0565b9050806001600160a01b0316836001600160a01b031614156106db5760405162461bcd60e51b815260040161067790611f05565b806001600160a01b03166106ed610f86565b6001600160a01b03161480610709575061070981610527610f86565b6107255760405162461bcd60e51b815260040161067790611c90565b61072f8383610f8a565b505050565b60006107406007610ff8565b905090565b610756610750610f86565b82610ffc565b6107725760405162461bcd60e51b815260040161067790611f46565b61072f838383611079565b600a5460ff1661079f5760405162461bcd60e51b815260040161067790611c18565b600981106107bf5760405162461bcd60e51b815260040161067790611a68565b60006107cb6007610ff8565b905061044c6107da8383612031565b106107f75760405162461bcd60e51b815260040161067790611ff1565b3482600854610806919061205d565b11156108245760405162461bcd60e51b815260040161067790611f97565b60005b8281101561072f576108396007610f41565b61084c336108478385612031565b6111a6565b80610856816120fa565b915050610827565b610866610f86565b6001600160a01b0316610877610c56565b6001600160a01b03161461089d5760405162461bcd60e51b815260040161067790611e38565b600a805460ff19811660ff90911615179055565b6108b9610f86565b6001600160a01b03166108ca610c56565b6001600160a01b0316146108f05760405162461bcd60e51b815260040161067790611e38565b6000336001600160a01b031647604051610909906119f6565b60006040518083038185875af1925050503d8060008114610946576040519150601f19603f3d011682016040523d82523d6000602084013e61094b565b606091505b505090508061096c5760405162461bcd60e51b815260040161067790611fc6565b50565b61072f83838360405180602001604052806000815250610c86565b610992610f86565b6001600160a01b03166109a3610c56565b6001600160a01b0316146109c95760405162461bcd60e51b815260040161067790611e38565b80516109dc90600b906020840190611673565b5050565b6000818152600360205260408120546001600160a01b0316806105b65760405162461bcd60e51b815260040161067790611d37565b610a1d610f86565b6001600160a01b0316610a2e610c56565b6001600160a01b031614610a545760405162461bcd60e51b815260040161067790611e38565b600855565b60006001600160a01b038216610a815760405162461bcd60e51b815260040161067790611ced565b506001600160a01b031660009081526004602052604090205490565b610aa5610f86565b6001600160a01b0316610ab6610c56565b6001600160a01b031614610adc5760405162461bcd60e51b815260040161067790611e38565b610ae660006111c0565b565b610af0610f86565b6001600160a01b0316610b01610c56565b6001600160a01b031614610b275760405162461bcd60e51b815260040161067790611e38565b6000610b336007610ff8565b905061044c610b428383612031565b10610b5f5760405162461bcd60e51b815260040161067790611ff1565b60005b82811015610b9457610b746007610f41565b610b82846108478385612031565b80610b8c816120fa565b915050610b62565b50505050565b600a5460ff16610bbc5760405162461bcd60e51b815260040161067790611c18565b60098110610bdc5760405162461bcd60e51b815260040161067790611a68565b6000610be86007610ff8565b600954909150610bf88383612031565b10610c155760405162461bcd60e51b815260040161067790611d80565b60005b8281101561072f57610c2a6007610f41565b610c38336108478385612031565b80610c42816120fa565b915050610c18565b60085481565b60095481565b6000546001600160a01b031690565b6060600280546105cd906120bf565b6109dc610c7f610f86565b8383611210565b610c97610c91610f86565b83610ffc565b610cb35760405162461bcd60e51b815260040161067790611f46565b610b94848484846112b3565b600981565b6060610ccf82610f69565b610ceb5760405162461bcd60e51b815260040161067790611eb6565b6000610cf56112e6565b90506000815111610d155760405180602001604052806000815250610d40565b80610d1f846112f5565b604051602001610d309291906119c7565b6040516020818303038152906040525b9392505050565b610d4f610f86565b6001600160a01b0316610d60610c56565b6001600160a01b031614610d865760405162461bcd60e51b815260040161067790611e38565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610db0610f86565b6001600160a01b0316610dc1610c56565b6001600160a01b031614610de75760405162461bcd60e51b815260040161067790611e38565b61044c811115610e095760405162461bcd60e51b815260040161067790611a97565b600955565b600c5460405163c455279160e01b81526000916001600160a01b039081169190841690829063c455279190610e479088906004016119f9565b60206040518083038186803b158015610e5f57600080fd5b505afa158015610e73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e979190611921565b6001600160a01b03161415610eb0576001915050610ebe565b610eba8484611418565b9150505b92915050565b600a5460ff1681565b610ed5610f86565b6001600160a01b0316610ee6610c56565b6001600160a01b031614610f0c5760405162461bcd60e51b815260040161067790611e38565b6001600160a01b038116610f325760405162461bcd60e51b815260040161067790611b20565b61096c816111c0565b61044c81565b80546001019055565b3b151590565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fbf826109e0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5490565b600061100782610f69565b6110235760405162461bcd60e51b815260040161067790611c44565b600061102e836109e0565b9050806001600160a01b0316846001600160a01b031614806110695750836001600160a01b031661105e84610650565b6001600160a01b0316145b80610eba5750610eba8185610e0e565b826001600160a01b031661108c826109e0565b6001600160a01b0316146110b25760405162461bcd60e51b815260040161067790611e6d565b6001600160a01b0382166110d85760405162461bcd60e51b815260040161067790611b9d565b6110e383838361072f565b6110ee600082610f8a565b6001600160a01b038316600090815260046020526040812080546001929061111790849061207c565b90915550506001600160a01b0382166000908152600460205260408120805460019290611145908490612031565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6109dc828260405180602001604052806000815250611446565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156112425760405162461bcd60e51b815260040161067790611be1565b6001600160a01b0383811660008181526006602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906112a6908590611a4a565b60405180910390a3505050565b6112be848484611079565b6112ca84848484611479565b610b945760405162461bcd60e51b815260040161067790611ace565b6060600b80546105cd906120bf565b60608161131a57506040805180820190915260018152600360fc1b60208201526105b9565b8160005b8115611344578061132e816120fa565b915061133d9050600a83612049565b915061131e565b60008167ffffffffffffffff81111561136d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611397576020820181803683370190505b5090505b8415611410576113ac60018361207c565b91506113b9600a86612115565b6113c4906030612031565b60f81b8183815181106113e757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611409600a86612049565b945061139b565b949350505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6114508383611594565b61145d6000848484611479565b61072f5760405162461bcd60e51b815260040161067790611ace565b600061148d846001600160a01b0316610f4a565b1561158957836001600160a01b031663150b7a026114a9610f86565b8786866040518563ffffffff1660e01b81526004016114cb9493929190611a0d565b602060405180830381600087803b1580156114e557600080fd5b505af1925050508015611515575060408051601f3d908101601f1916820190925261151291810190611905565b60015b61156f573d808015611543576040519150601f19603f3d011682016040523d82523d6000602084013e611548565b606091505b5080516115675760405162461bcd60e51b815260040161067790611ace565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611410565b506001949350505050565b6001600160a01b0382166115ba5760405162461bcd60e51b815260040161067790611db7565b6115c381610f69565b156115e05760405162461bcd60e51b815260040161067790611b66565b6115ec6000838361072f565b6001600160a01b0382166000908152600460205260408120805460019290611615908490612031565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461167f906120bf565b90600052602060002090601f0160209004810192826116a157600085556116e7565b82601f106116ba57805160ff19168380011785556116e7565b828001600101855582156116e7579182015b828111156116e75782518255916020019190600101906116cc565b506116f39291506116f7565b5090565b5b808211156116f357600081556001016116f8565b600067ffffffffffffffff8084111561172757611727612155565b604051601f8501601f19168101602001828111828210171561174b5761174b612155565b60405284815291508183850186101561176357600080fd5b8484602083013760006020868301015250509392505050565b60006020828403121561178d578081fd5b8135610d408161216b565b600080604083850312156117aa578081fd5b82356117b58161216b565b915060208301356117c58161216b565b809150509250929050565b6000806000606084860312156117e4578081fd5b83356117ef8161216b565b925060208401356117ff8161216b565b929592945050506040919091013590565b60008060008060808587031215611825578081fd5b84356118308161216b565b935060208501356118408161216b565b925060408501359150606085013567ffffffffffffffff811115611862578182fd5b8501601f81018713611872578182fd5b6118818782356020840161170c565b91505092959194509250565b6000806040838503121561189f578182fd5b82356118aa8161216b565b9150602083013580151581146117c5578182fd5b600080604083850312156118d0578182fd5b82356118db8161216b565b946020939093013593505050565b6000602082840312156118fa578081fd5b8135610d4081612180565b600060208284031215611916578081fd5b8151610d4081612180565b600060208284031215611932578081fd5b8151610d408161216b565b60006020828403121561194e578081fd5b813567ffffffffffffffff811115611964578182fd5b8201601f81018413611974578182fd5b610eba8482356020840161170c565b600060208284031215611994578081fd5b5035919050565b600081518084526119b3816020860160208601612093565b601f01601f19169290920160200192915050565b600083516119d9818460208801612093565b8351908301906119ed818360208801612093565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a409083018461199b565b9695505050505050565b901515815260200190565b600060208252610d40602083018461199b565b6020808252601590820152744d696e7420616d6f756e7420746f6f206c6172676560581b604082015260600190565b6020808252601a908201527f46726565206d696e7420616d6f756e7420746f6f206c61726765000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526012908201527153616c65206973206e6f742061637469766560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601f908201527f4e6f7420656e6f7567682066726565206d696e74732072656d61696e696e6700604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260159082015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b604082015260600190565b60208082526011908201527015da5d1a191c985dd85b0819985a5b1959607a1b604082015260600190565b6020808252601b908201527f4e6f7420656e6f75676820746f6b656e732072656d61696e696e670000000000604082015260600190565b90815260200190565b6000821982111561204457612044612129565b500190565b6000826120585761205861213f565b500490565b600081600019048311821515161561207757612077612129565b500290565b60008282101561208e5761208e612129565b500390565b60005b838110156120ae578181015183820152602001612096565b83811115610b945750506000910152565b6002810460018216806120d357607f821691505b602082108114156120f457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561210e5761210e612129565b5060010190565b6000826121245761212461213f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461096c57600080fd5b6001600160e01b03198116811461096c57600080fdfea2646970667358221220bf9eb7989fcfb133779dd719b53594ac74eb8a91dad5c731a67780b719b80a9464736f6c63430008000033

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

0000000000000000000000005b2b701ba06b94c5a2c83151c30304a7ae45a7a7

-----Decoded View---------------
Arg [0] : proxyRegistryAddress (address): 0x5b2b701BA06b94c5a2C83151c30304a7aE45A7a7

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005b2b701ba06b94c5a2c83151c30304a7ae45a7a7


Deployed Bytecode Sourcemap

37740:3572:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22706:305;;;;;;;;;;-1:-1:-1;22706:305:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23651:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25210:221::-;;;;;;;;;;-1:-1:-1;25210:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;24733:411::-;;;;;;;;;;-1:-1:-1;24733:411:0;;;;;:::i;:::-;;:::i;:::-;;40129:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25960:339::-;;;;;;;;;;-1:-1:-1;25960:339:0;;;;;:::i;:::-;;:::i;38844:545::-;;;;;;:::i;:::-;;:::i;40030:91::-;;;;;;;;;;;;;:::i;41135:174::-;;;;;;;;;;;;;:::i;26370:185::-;;;;;;;;;;-1:-1:-1;26370:185:0;;;;;:::i;:::-;;:::i;40238:110::-;;;;;;;;;;-1:-1:-1;40238:110:0;;;;;:::i;:::-;;:::i;23345:239::-;;;;;;;;;;-1:-1:-1;23345:239:0;;;;;:::i;:::-;;:::i;39750:100::-;;;;;;;;;;-1:-1:-1;39750:100:0;;;;;:::i;:::-;;:::i;23075:208::-;;;;;;;;;;-1:-1:-1;23075:208:0;;;;;:::i;:::-;;:::i;36859:103::-;;;;;;;;;;;;;:::i;39397:345::-;;;;;;;;;;-1:-1:-1;39397:345:0;;;;;:::i;:::-;;:::i;38375:461::-;;;;;;;;;;-1:-1:-1;38375:461:0;;;;;:::i;:::-;;:::i;37981:39::-;;;;;;;;;;;;;:::i;38027:30::-;;;;;;;;;;;;;:::i;36208:87::-;;;;;;;;;;;;;:::i;23820:104::-;;;;;;;;;;;;;:::i;25503:155::-;;;;;;;;;;-1:-1:-1;25503:155:0;;;;;:::i;:::-;;:::i;26626:328::-;;;;;;;;;;-1:-1:-1;26626:328:0;;;;;:::i;:::-;;:::i;37922:50::-;;;;;;;;;;;;;:::i;23995:334::-;;;;;;;;;;-1:-1:-1;23995:334:0;;;;;:::i;:::-;;:::i;40470:168::-;;;;;;;;;;-1:-1:-1;40470:168:0;;;;;:::i;:::-;;:::i;39858:164::-;;;;;;;;;;-1:-1:-1;39858:164:0;;;;;:::i;:::-;;:::i;40646:444::-;;;;;;;;;;-1:-1:-1;40646:444:0;;;;;:::i;:::-;;:::i;38064:24::-;;;;;;;;;;;;;:::i;37117:201::-;;;;;;;;;;-1:-1:-1;37117:201:0;;;;;:::i;:::-;;:::i;37874:41::-;;;;;;;;;;;;;:::i;22706:305::-;22808:4;-1:-1:-1;;;;;;22845:40:0;;-1:-1:-1;;;22845:40:0;;:105;;-1:-1:-1;;;;;;;22902:48:0;;-1:-1:-1;;;22902:48:0;22845:105;:158;;;;22967:36;22991:11;22967:23;:36::i;:::-;22825:178;;22706:305;;;;:::o;23651:100::-;23705:13;23738:5;23731:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23651:100;:::o;25210:221::-;25286:7;25314:16;25322:7;25314;:16::i;:::-;25306:73;;;;-1:-1:-1;;;25306:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;25399:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25399:24:0;;25210:221::o;24733:411::-;24814:13;24830:23;24845:7;24830:14;:23::i;:::-;24814:39;;24878:5;-1:-1:-1;;;;;24872:11:0;:2;-1:-1:-1;;;;;24872:11:0;;;24864:57;;;;-1:-1:-1;;;24864:57:0;;;;;;;:::i;:::-;24972:5;-1:-1:-1;;;;;24956:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;24956:21:0;;:62;;;;24981:37;24998:5;25005:12;:10;:12::i;24981:37::-;24934:168;;;;-1:-1:-1;;;24934:168:0;;;;;;;:::i;:::-;25115:21;25124:2;25128:7;25115:8;:21::i;:::-;24733:411;;;:::o;40129:101::-;40173:7;40200:22;:12;:20;:22::i;:::-;40193:29;;40129:101;:::o;25960:339::-;26155:41;26174:12;:10;:12::i;:::-;26188:7;26155:18;:41::i;:::-;26147:103;;;;-1:-1:-1;;;26147:103:0;;;;;;;:::i;:::-;26263:28;26273:4;26279:2;26283:7;26263:9;:28::i;38844:545::-;38916:12;;;;38908:43;;;;-1:-1:-1;;;38908:43:0;;;;;;;:::i;:::-;37971:1;38970:6;:31;38962:65;;;;-1:-1:-1;;;38962:65:0;;;;;;;:::i;:::-;39038:14;39055:22;:12;:20;:22::i;:::-;39038:39;-1:-1:-1;37911:4:0;39096:15;39105:6;39038:39;39096:15;:::i;:::-;:28;39088:68;;;;-1:-1:-1;;;39088:68:0;;;;;;;:::i;:::-;39198:9;39188:6;39175:10;;:19;;;;:::i;:::-;:32;;39167:66;;;;-1:-1:-1;;;39167:66:0;;;;;;;:::i;:::-;39251:9;39246:136;39270:6;39266:1;:10;39246:136;;;39298:24;:12;:22;:24::i;:::-;39337:33;39347:10;39359;39368:1;39359:6;:10;:::i;:::-;39337:9;:33::i;:::-;39278:3;;;;:::i;:::-;;;;39246:136;;40030:91;36439:12;:10;:12::i;:::-;-1:-1:-1;;;;;36428:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36428:23:0;;36420:68;;;;-1:-1:-1;;;36420:68:0;;;;;;;:::i;:::-;40101:12:::1;::::0;;-1:-1:-1;;40085:28:0;::::1;40101:12;::::0;;::::1;40100:13;40085:28;::::0;;40030:91::o;41135:174::-;36439:12;:10;:12::i;:::-;-1:-1:-1;;;;;36428:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36428:23:0;;36420:68;;;;-1:-1:-1;;;36420:68:0;;;;;;;:::i;:::-;41186:12:::1;41204:10;-1:-1:-1::0;;;;;41204:15:0::1;41227:21;41204:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41185:68;;;41272:7;41264:37;;;;-1:-1:-1::0;;;41264:37:0::1;;;;;;;:::i;:::-;36499:1;41135:174::o:0;26370:185::-;26508:39;26525:4;26531:2;26535:7;26508:39;;;;;;;;;;;;:16;:39::i;40238:110::-;36439:12;:10;:12::i;:::-;-1:-1:-1;;;;;36428:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36428:23:0;;36420:68;;;;-1:-1:-1;;;36420:68:0;;;;;;;:::i;:::-;40314:26;;::::1;::::0;:13:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40238:110:::0;:::o;23345:239::-;23417:7;23453:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23453:16:0;23488:19;23480:73;;;;-1:-1:-1;;;23480:73:0;;;;;;;:::i;39750:100::-;36439:12;:10;:12::i;:::-;-1:-1:-1;;;;;36428:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36428:23:0;;36420:68;;;;-1:-1:-1;;;36420:68:0;;;;;;;:::i;:::-;39821:10:::1;:21:::0;39750:100::o;23075:208::-;23147:7;-1:-1:-1;;;;;23175:19:0;;23167:74;;;;-1:-1:-1;;;23167:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;23259:16:0;;;;;:9;:16;;;;;;;23075:208::o;36859:103::-;36439:12;:10;:12::i;:::-;-1:-1:-1;;;;;36428:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36428:23:0;;36420:68;;;;-1:-1:-1;;;36420:68:0;;;;;;;:::i;:::-;36924:30:::1;36951:1;36924:18;:30::i;:::-;36859:103::o:0;39397:345::-;36439:12;:10;:12::i;:::-;-1:-1:-1;;;;;36428:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36428:23:0;;36420:68;;;;-1:-1:-1;;;36420:68:0;;;;;;;:::i;:::-;39478:14:::1;39495:22;:12;:20;:22::i;:::-;39478:39:::0;-1:-1:-1;37911:4:0::1;39536:15;39545:6:::0;39478:39;39536:15:::1;:::i;:::-;:28;39528:68;;;;-1:-1:-1::0;;;39528:68:0::1;;;;;;;:::i;:::-;39612:9;39607:128;39631:6;39627:1;:10;39607:128;;;39659:24;:12;:22;:24::i;:::-;39698:25;39708:2:::0;39712:10:::1;39721:1:::0;39712:6;:10:::1;:::i;39698:25::-;39639:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39607:128;;;;36499:1;39397:345:::0;;:::o;38375:461::-;38437:12;;;;38429:43;;;;-1:-1:-1;;;38429:43:0;;;;;;;:::i;:::-;37971:1;38491:6;:31;38483:65;;;;-1:-1:-1;;;38483:65:0;;;;;;;:::i;:::-;38559:14;38576:22;:12;:20;:22::i;:::-;38635:9;;38559:39;;-1:-1:-1;38617:15:0;38626:6;38559:39;38617:15;:::i;:::-;:27;38609:71;;;;-1:-1:-1;;;38609:71:0;;;;;;;:::i;:::-;38698:9;38693:136;38717:6;38713:1;:10;38693:136;;;38745:24;:12;:22;:24::i;:::-;38784:33;38794:10;38806;38815:1;38806:6;:10;:::i;38784:33::-;38725:3;;;;:::i;:::-;;;;38693:136;;37981:39;;;;:::o;38027:30::-;;;;:::o;36208:87::-;36254:7;36281:6;-1:-1:-1;;;;;36281:6:0;36208:87;:::o;23820:104::-;23876:13;23909:7;23902:14;;;;;:::i;25503:155::-;25598:52;25617:12;:10;:12::i;:::-;25631:8;25641;25598:18;:52::i;26626:328::-;26801:41;26820:12;:10;:12::i;:::-;26834:7;26801:18;:41::i;:::-;26793:103;;;;-1:-1:-1;;;26793:103:0;;;;;;;:::i;:::-;26907:39;26921:4;26927:2;26931:7;26940:5;26907:13;:39::i;37922:50::-;37971:1;37922:50;:::o;23995:334::-;24068:13;24102:16;24110:7;24102;:16::i;:::-;24094:76;;;;-1:-1:-1;;;24094:76:0;;;;;;;:::i;:::-;24183:21;24207:10;:8;:10::i;:::-;24183:34;;24259:1;24241:7;24235:21;:25;:86;;;;;;;;;;;;;;;;;24287:7;24296:18;:7;:16;:18::i;:::-;24270:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24235:86;24228:93;23995:334;-1:-1:-1;;;23995:334:0:o;40470:168::-;36439:12;:10;:12::i;:::-;-1:-1:-1;;;;;36428:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36428:23:0;;36420:68;;;;-1:-1:-1;;;36420:68:0;;;;;;;:::i;:::-;40586:21:::1;:44:::0;;-1:-1:-1;;;;;;40586:44:0::1;-1:-1:-1::0;;;;;40586:44:0;;;::::1;::::0;;;::::1;::::0;;40470:168::o;39858:164::-;36439:12;:10;:12::i;:::-;-1:-1:-1;;;;;36428:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36428:23:0;;36420:68;;;;-1:-1:-1;;;36420:68:0;;;;;;;:::i;:::-;37911:4:::1;39934:6;:20;;39926:59;;;;-1:-1:-1::0;;;39926:59:0::1;;;;;;;:::i;:::-;39996:9;:18:::0;39858:164::o;40646:444::-;40900:21;;40945:28;;-1:-1:-1;;;40945:28:0;;40771:4;;-1:-1:-1;;;;;40900:21:0;;;;40937:49;;;;40900:21;;40945;;:28;;40967:5;;40945:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;40937:49:0;;40933:93;;;41010:4;41003:11;;;;;40933:93;41043:39;41066:5;41073:8;41043:22;:39::i;:::-;41036:46;;;40646:444;;;;;:::o;38064:24::-;;;;;;:::o;37117:201::-;36439:12;:10;:12::i;:::-;-1:-1:-1;;;;;36428:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36428:23:0;;36420:68;;;;-1:-1:-1;;;36420:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37206:22:0;::::1;37198:73;;;;-1:-1:-1::0;;;37198:73:0::1;;;;;;;:::i;:::-;37282:28;37301:8;37282:18;:28::i;37874:41::-:0;37911:4;37874:41;:::o;1023:127::-;1112:19;;1130:1;1112:19;;;1023:127::o;4438:387::-;4761:20;4809:8;;;4438:387::o;14582:157::-;-1:-1:-1;;;;;;14691:40:0;;-1:-1:-1;;;14691:40:0;14582:157;;;:::o;28464:127::-;28529:4;28553:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28553:16:0;:30;;;28464:127::o;21100:98::-;21180:10;21100:98;:::o;32446:174::-;32521:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32521:29:0;-1:-1:-1;;;;;32521:29:0;;;;;;;;:24;;32575:23;32521:24;32575:14;:23::i;:::-;-1:-1:-1;;;;;32566:46:0;;;;;;;;;;;32446:174;;:::o;901:114::-;993:14;;901:114::o;28758:348::-;28851:4;28876:16;28884:7;28876;:16::i;:::-;28868:73;;;;-1:-1:-1;;;28868:73:0;;;;;;;:::i;:::-;28952:13;28968:23;28983:7;28968:14;:23::i;:::-;28952:39;;29021:5;-1:-1:-1;;;;;29010:16:0;:7;-1:-1:-1;;;;;29010:16:0;;:51;;;;29054:7;-1:-1:-1;;;;;29030:31:0;:20;29042:7;29030:11;:20::i;:::-;-1:-1:-1;;;;;29030:31:0;;29010:51;:87;;;;29065:32;29082:5;29089:7;29065:16;:32::i;31750:578::-;31909:4;-1:-1:-1;;;;;31882:31:0;:23;31897:7;31882:14;:23::i;:::-;-1:-1:-1;;;;;31882:31:0;;31874:85;;;;-1:-1:-1;;;31874:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31978:16:0;;31970:65;;;;-1:-1:-1;;;31970:65:0;;;;;;;:::i;:::-;32048:39;32069:4;32075:2;32079:7;32048:20;:39::i;:::-;32152:29;32169:1;32173:7;32152:8;:29::i;:::-;-1:-1:-1;;;;;32194:15:0;;;;;;:9;:15;;;;;:20;;32213:1;;32194:15;:20;;32213:1;;32194:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32225:13:0;;;;;;:9;:13;;;;;:18;;32242:1;;32225:13;:18;;32242:1;;32225:18;:::i;:::-;;;;-1:-1:-1;;32254:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32254:21:0;-1:-1:-1;;;;;32254:21:0;;;;;;;;;32293:27;;32254:16;;32293:27;;;;;;;31750:578;;;:::o;29448:110::-;29524:26;29534:2;29538:7;29524:26;;;;;;;;;;;;:9;:26::i;37478:191::-;37552:16;37571:6;;-1:-1:-1;;;;;37588:17:0;;;-1:-1:-1;;;;;;37588:17:0;;;;;;37621:40;;37571:6;;;;;;;37621:40;;37552:16;37621:40;37478:191;;:::o;32762:315::-;32917:8;-1:-1:-1;;;;;32908:17:0;:5;-1:-1:-1;;;;;32908:17:0;;;32900:55;;;;-1:-1:-1;;;32900:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32966:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;32966:46:0;;;;;;;33028:41;;;;;32966:46;;33028:41;:::i;:::-;;;;;;;;32762:315;;;:::o;27836:::-;27993:28;28003:4;28009:2;28013:7;27993:9;:28::i;:::-;28040:48;28063:4;28069:2;28073:7;28082:5;28040:22;:48::i;:::-;28032:111;;;;-1:-1:-1;;;28032:111:0;;;;;;;:::i;40356:106::-;40408:13;40441;40434:20;;;;;:::i;1859:723::-;1915:13;2136:10;2132:53;;-1:-1:-1;2163:10:0;;;;;;;;;;;;-1:-1:-1;;;2163:10:0;;;;;;2132:53;2210:5;2195:12;2251:78;2258:9;;2251:78;;2284:8;;;;:::i;:::-;;-1:-1:-1;2307:10:0;;-1:-1:-1;2315:2:0;2307:10;;:::i;:::-;;;2251:78;;;2339:19;2371:6;2361:17;;;;;;-1:-1:-1;;;2361:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2361:17:0;;2339:39;;2389:154;2396:10;;2389:154;;2423:11;2433:1;2423:11;;:::i;:::-;;-1:-1:-1;2492:10:0;2500:2;2492:5;:10;:::i;:::-;2479:24;;:2;:24;:::i;:::-;2466:39;;2449:6;2456;2449:14;;;;;;-1:-1:-1;;;2449:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2449:56:0;;;;;;;;-1:-1:-1;2520:11:0;2529:2;2520:11;;:::i;:::-;;;2389:154;;;2567:6;1859:723;-1:-1:-1;;;;1859:723:0:o;25729:164::-;-1:-1:-1;;;;;25850:25:0;;;25826:4;25850:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25729:164::o;29785:321::-;29915:18;29921:2;29925:7;29915:5;:18::i;:::-;29966:54;29997:1;30001:2;30005:7;30014:5;29966:22;:54::i;:::-;29944:154;;;;-1:-1:-1;;;29944:154:0;;;;;;;:::i;33642:799::-;33797:4;33818:15;:2;-1:-1:-1;;;;;33818:13:0;;:15::i;:::-;33814:620;;;33870:2;-1:-1:-1;;;;;33854:36:0;;33891:12;:10;:12::i;:::-;33905:4;33911:7;33920:5;33854:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33854:72:0;;;;;;;;-1:-1:-1;;33854:72:0;;;;;;;;;;;;:::i;:::-;;;33850:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34096:13:0;;34092:272;;34139:60;;-1:-1:-1;;;34139:60:0;;;;;;;:::i;34092:272::-;34314:6;34308:13;34299:6;34295:2;34291:15;34284:38;33850:529;-1:-1:-1;;;;;;33977:51:0;-1:-1:-1;;;33977:51:0;;-1:-1:-1;33970:58:0;;33814:620;-1:-1:-1;34418:4:0;33642:799;;;;;;:::o;30442:382::-;-1:-1:-1;;;;;30522:16:0;;30514:61;;;;-1:-1:-1;;;30514:61:0;;;;;;;:::i;:::-;30595:16;30603:7;30595;:16::i;:::-;30594:17;30586:58;;;;-1:-1:-1;;;30586:58:0;;;;;;;:::i;:::-;30657:45;30686:1;30690:2;30694:7;30657:20;:45::i;:::-;-1:-1:-1;;;;;30715:13:0;;;;;;:9;:13;;;;;:18;;30732:1;;30715:13;:18;;30732:1;;30715:18;:::i;:::-;;;;-1:-1:-1;;30744:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30744:21:0;-1:-1:-1;;;;;30744:21:0;;;;;;;;30783:33;;30744:16;;;30783:33;;30744:16;;30783:33;30442:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:259::-;;738:2;726:9;717:7;713:23;709:32;706:2;;;759:6;751;744:22;706:2;803:9;790:23;822:33;849:5;822:33;:::i;890:402::-;;;1019:2;1007:9;998:7;994:23;990:32;987:2;;;1040:6;1032;1025:22;987:2;1084:9;1071:23;1103:33;1130:5;1103:33;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:35;1184:32;1225:35;:::i;:::-;1279:7;1269:17;;;977:315;;;;;:::o;1297:470::-;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;1464:6;1456;1449:22;1411:2;1508:9;1495:23;1527:33;1554:5;1527:33;:::i;:::-;1579:5;-1:-1:-1;1636:2:1;1621:18;;1608:32;1649:35;1608:32;1649:35;:::i;:::-;1401:366;;1703:7;;-1:-1:-1;;;1757:2:1;1742:18;;;;1729:32;;1401:366::o;1772:830::-;;;;;1944:3;1932:9;1923:7;1919:23;1915:33;1912:2;;;1966:6;1958;1951:22;1912:2;2010:9;1997:23;2029:33;2056:5;2029:33;:::i;:::-;2081:5;-1:-1:-1;2138:2:1;2123:18;;2110:32;2151:35;2110:32;2151:35;:::i;:::-;2205:7;-1:-1:-1;2259:2:1;2244:18;;2231:32;;-1:-1:-1;2314:2:1;2299:18;;2286:32;2341:18;2330:30;;2327:2;;;2378:6;2370;2363:22;2327:2;2406:22;;2459:4;2451:13;;2447:27;-1:-1:-1;2437:2:1;;2493:6;2485;2478:22;2437:2;2521:75;2588:7;2583:2;2570:16;2565:2;2561;2557:11;2521:75;:::i;:::-;2511:85;;;1902:700;;;;;;;:::o;2607:438::-;;;2733:2;2721:9;2712:7;2708:23;2704:32;2701:2;;;2754:6;2746;2739:22;2701:2;2798:9;2785:23;2817:33;2844:5;2817:33;:::i;:::-;2869:5;-1:-1:-1;2926:2:1;2911:18;;2898:32;2968:15;;2961:23;2949:36;;2939:2;;3004:6;2996;2989:22;3050:327;;;3179:2;3167:9;3158:7;3154:23;3150:32;3147:2;;;3200:6;3192;3185:22;3147:2;3244:9;3231:23;3263:33;3290:5;3263:33;:::i;:::-;3315:5;3367:2;3352:18;;;;3339:32;;-1:-1:-1;;;3137:240:1:o;3382:257::-;;3493:2;3481:9;3472:7;3468:23;3464:32;3461:2;;;3514:6;3506;3499:22;3461:2;3558:9;3545:23;3577:32;3603:5;3577:32;:::i;3644:261::-;;3766:2;3754:9;3745:7;3741:23;3737:32;3734:2;;;3787:6;3779;3772:22;3734:2;3824:9;3818:16;3843:32;3869:5;3843:32;:::i;3910:292::-;;4062:2;4050:9;4041:7;4037:23;4033:32;4030:2;;;4083:6;4075;4068:22;4030:2;4120:9;4114:16;4139:33;4166:5;4139:33;:::i;4207:482::-;;4329:2;4317:9;4308:7;4304:23;4300:32;4297:2;;;4350:6;4342;4335:22;4297:2;4395:9;4382:23;4428:18;4420:6;4417:30;4414:2;;;4465:6;4457;4450:22;4414:2;4493:22;;4546:4;4538:13;;4534:27;-1:-1:-1;4524:2:1;;4580:6;4572;4565:22;4524:2;4608:75;4675:7;4670:2;4657:16;4652:2;4648;4644:11;4608:75;:::i;4694:190::-;;4806:2;4794:9;4785:7;4781:23;4777:32;4774:2;;;4827:6;4819;4812:22;4774:2;-1:-1:-1;4855:23:1;;4764:120;-1:-1:-1;4764:120:1:o;4889:259::-;;4970:5;4964:12;4997:6;4992:3;4985:19;5013:63;5069:6;5062:4;5057:3;5053:14;5046:4;5039:5;5035:16;5013:63;:::i;:::-;5130:2;5109:15;-1:-1:-1;;5105:29:1;5096:39;;;;5137:4;5092:50;;4940:208;-1:-1:-1;;4940:208:1:o;5153:470::-;;5370:6;5364:13;5386:53;5432:6;5427:3;5420:4;5412:6;5408:17;5386:53;:::i;:::-;5502:13;;5461:16;;;;5524:57;5502:13;5461:16;5558:4;5546:17;;5524:57;:::i;:::-;5597:20;;5340:283;-1:-1:-1;;;;5340:283:1:o;5628:205::-;5828:3;5819:14::o;5838:203::-;-1:-1:-1;;;;;6002:32:1;;;;5984:51;;5972:2;5957:18;;5939:102::o;6046:490::-;-1:-1:-1;;;;;6315:15:1;;;6297:34;;6367:15;;6362:2;6347:18;;6340:43;6414:2;6399:18;;6392:34;;;6462:3;6457:2;6442:18;;6435:31;;;6046:490;;6483:47;;6510:19;;6502:6;6483:47;:::i;:::-;6475:55;6249:287;-1:-1:-1;;;;;;6249:287:1:o;6541:187::-;6706:14;;6699:22;6681:41;;6669:2;6654:18;;6636:92::o;6733:221::-;;6882:2;6871:9;6864:21;6902:46;6944:2;6933:9;6929:18;6921:6;6902:46;:::i;6959:345::-;7161:2;7143:21;;;7200:2;7180:18;;;7173:30;-1:-1:-1;;;7234:2:1;7219:18;;7212:51;7295:2;7280:18;;7133:171::o;7309:350::-;7511:2;7493:21;;;7550:2;7530:18;;;7523:30;7589:28;7584:2;7569:18;;7562:56;7650:2;7635:18;;7483:176::o;7664:414::-;7866:2;7848:21;;;7905:2;7885:18;;;7878:30;7944:34;7939:2;7924:18;;7917:62;-1:-1:-1;;;8010:2:1;7995:18;;7988:48;8068:3;8053:19;;7838:240::o;8083:402::-;8285:2;8267:21;;;8324:2;8304:18;;;8297:30;8363:34;8358:2;8343:18;;8336:62;-1:-1:-1;;;8429:2:1;8414:18;;8407:36;8475:3;8460:19;;8257:228::o;8490:352::-;8692:2;8674:21;;;8731:2;8711:18;;;8704:30;8770;8765:2;8750:18;;8743:58;8833:2;8818:18;;8664:178::o;8847:400::-;9049:2;9031:21;;;9088:2;9068:18;;;9061:30;9127:34;9122:2;9107:18;;9100:62;-1:-1:-1;;;9193:2:1;9178:18;;9171:34;9237:3;9222:19;;9021:226::o;9252:349::-;9454:2;9436:21;;;9493:2;9473:18;;;9466:30;9532:27;9527:2;9512:18;;9505:55;9592:2;9577:18;;9426:175::o;9606:342::-;9808:2;9790:21;;;9847:2;9827:18;;;9820:30;-1:-1:-1;;;9881:2:1;9866:18;;9859:48;9939:2;9924:18;;9780:168::o;9953:408::-;10155:2;10137:21;;;10194:2;10174:18;;;10167:30;10233:34;10228:2;10213:18;;10206:62;-1:-1:-1;;;10299:2:1;10284:18;;10277:42;10351:3;10336:19;;10127:234::o;10366:420::-;10568:2;10550:21;;;10607:2;10587:18;;;10580:30;10646:34;10641:2;10626:18;;10619:62;10717:26;10712:2;10697:18;;10690:54;10776:3;10761:19;;10540:246::o;10791:406::-;10993:2;10975:21;;;11032:2;11012:18;;;11005:30;11071:34;11066:2;11051:18;;11044:62;-1:-1:-1;;;11137:2:1;11122:18;;11115:40;11187:3;11172:19;;10965:232::o;11202:405::-;11404:2;11386:21;;;11443:2;11423:18;;;11416:30;11482:34;11477:2;11462:18;;11455:62;-1:-1:-1;;;11548:2:1;11533:18;;11526:39;11597:3;11582:19;;11376:231::o;11612:355::-;11814:2;11796:21;;;11853:2;11833:18;;;11826:30;11892:33;11887:2;11872:18;;11865:61;11958:2;11943:18;;11786:181::o;11972:356::-;12174:2;12156:21;;;12193:18;;;12186:30;12252:34;12247:2;12232:18;;12225:62;12319:2;12304:18;;12146:182::o;12333:408::-;12535:2;12517:21;;;12574:2;12554:18;;;12547:30;12613:34;12608:2;12593:18;;12586:62;-1:-1:-1;;;12679:2:1;12664:18;;12657:42;12731:3;12716:19;;12507:234::o;12746:356::-;12948:2;12930:21;;;12967:18;;;12960:30;13026:34;13021:2;13006:18;;12999:62;13093:2;13078:18;;12920:182::o;13107:405::-;13309:2;13291:21;;;13348:2;13328:18;;;13321:30;13387:34;13382:2;13367:18;;13360:62;-1:-1:-1;;;13453:2:1;13438:18;;13431:39;13502:3;13487:19;;13281:231::o;13517:411::-;13719:2;13701:21;;;13758:2;13738:18;;;13731:30;13797:34;13792:2;13777:18;;13770:62;-1:-1:-1;;;13863:2:1;13848:18;;13841:45;13918:3;13903:19;;13691:237::o;13933:397::-;14135:2;14117:21;;;14174:2;14154:18;;;14147:30;14213:34;14208:2;14193:18;;14186:62;-1:-1:-1;;;14279:2:1;14264:18;;14257:31;14320:3;14305:19;;14107:223::o;14335:413::-;14537:2;14519:21;;;14576:2;14556:18;;;14549:30;14615:34;14610:2;14595:18;;14588:62;-1:-1:-1;;;14681:2:1;14666:18;;14659:47;14738:3;14723:19;;14509:239::o;14753:345::-;14955:2;14937:21;;;14994:2;14974:18;;;14967:30;-1:-1:-1;;;15028:2:1;15013:18;;15006:51;15089:2;15074:18;;14927:171::o;15103:341::-;15305:2;15287:21;;;15344:2;15324:18;;;15317:30;-1:-1:-1;;;15378:2:1;15363:18;;15356:47;15435:2;15420:18;;15277:167::o;15449:351::-;15651:2;15633:21;;;15690:2;15670:18;;;15663:30;15729:29;15724:2;15709:18;;15702:57;15791:2;15776:18;;15623:177::o;15805:::-;15951:25;;;15939:2;15924:18;;15906:76::o;15987:128::-;;16058:1;16054:6;16051:1;16048:13;16045:2;;;16064:18;;:::i;:::-;-1:-1:-1;16100:9:1;;16035:80::o;16120:120::-;;16186:1;16176:2;;16191:18;;:::i;:::-;-1:-1:-1;16225:9:1;;16166:74::o;16245:168::-;;16351:1;16347;16343:6;16339:14;16336:1;16333:21;16328:1;16321:9;16314:17;16310:45;16307:2;;;16358:18;;:::i;:::-;-1:-1:-1;16398:9:1;;16297:116::o;16418:125::-;;16486:1;16483;16480:8;16477:2;;;16491:18;;:::i;:::-;-1:-1:-1;16528:9:1;;16467:76::o;16548:258::-;16620:1;16630:113;16644:6;16641:1;16638:13;16630:113;;;16720:11;;;16714:18;16701:11;;;16694:39;16666:2;16659:10;16630:113;;;16761:6;16758:1;16755:13;16752:2;;;-1:-1:-1;;16796:1:1;16778:16;;16771:27;16601:205::o;16811:380::-;16896:1;16886:12;;16943:1;16933:12;;;16954:2;;17008:4;17000:6;16996:17;16986:27;;16954:2;17061;17053:6;17050:14;17030:18;17027:38;17024:2;;;17107:10;17102:3;17098:20;17095:1;17088:31;17142:4;17139:1;17132:15;17170:4;17167:1;17160:15;17024:2;;16866:325;;;:::o;17196:135::-;;-1:-1:-1;;17256:17:1;;17253:2;;;17276:18;;:::i;:::-;-1:-1:-1;17323:1:1;17312:13;;17243:88::o;17336:112::-;;17394:1;17384:2;;17399:18;;:::i;:::-;-1:-1:-1;17433:9:1;;17374:74::o;17453:127::-;17514:10;17509:3;17505:20;17502:1;17495:31;17545:4;17542:1;17535:15;17569:4;17566:1;17559:15;17585:127;17646:10;17641:3;17637:20;17634:1;17627:31;17677:4;17674:1;17667:15;17701:4;17698:1;17691:15;17717:127;17778:10;17773:3;17769:20;17766:1;17759:31;17809:4;17806:1;17799:15;17833:4;17830:1;17823:15;17849:133;-1:-1:-1;;;;;17926:31:1;;17916:42;;17906:2;;17972:1;17969;17962:12;17987:133;-1:-1:-1;;;;;;18063:32:1;;18053:43;;18043:2;;18110:1;18107;18100:12

Swarm Source

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