ETH Price: $3,064.55 (+2.00%)
Gas: 2 Gwei

Token

Five Penguins (5P)
 

Overview

Max Total Supply

344 5P

Holders

116

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 5P
0x5905e999425cd9f9e1cd2d9339b25789e46cf936
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:
FivePenguins

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

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/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/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/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/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;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

// File: @openzeppelin/contracts/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/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}. 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _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 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}


pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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


pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


pragma solidity ^0.8.0;

contract FivePenguins is ERC721, ReentrancyGuard {
    address public immutable owner;
    uint256 public constant MAX_SUPPLY = 3125;
    uint256 public price = 1 ether / 20;
    bool public presaleEnabled;
    bool public saleEnabled;
    mapping (address => bool) public admins;
    bool private adminsLocked;
    mapping (address => bool) public whitelist;
    mapping (address => bool) public freeMintClaimed;
    uint256 public totalSupply;
    string private uri;

    constructor(string memory name, string memory symbol, string memory _uri) ERC721(name, symbol) {
        owner = msg.sender;
        uri = _uri;
    }

    function baseURI() public view returns (string memory) {
        return _baseURI();
    }
  
    function _baseURI() internal view override returns (string memory) {
        return uri;
    }

    function canClaimFreeMint(address claimer) public view returns (bool) {
        return whitelist[claimer] && !freeMintClaimed[claimer];
    }

    function soldOut() public view returns (bool) {
        return totalSupply >= MAX_SUPPLY;
    }

    function mint(uint256 amountToBuy) public payable nonReentrant {
        bool onWhitelist = whitelist[msg.sender];
        bool _canClaimFreeMint = onWhitelist && !freeMintClaimed[msg.sender];

        require(totalSupply < MAX_SUPPLY, "No more penguins!");

        if (!saleEnabled && presaleEnabled) {
            require(onWhitelist, "Address not whitelisted");
        } else {
            require(saleEnabled, "Minting disabled");
        }

        require(amountToBuy > 0 && amountToBuy <= 10, "Invalid amount");

        // Validate sent ETH amount
        if (_canClaimFreeMint) {
            require(msg.value == price * (amountToBuy - 1), "Invalid amount of ether for amount to buy");
            freeMintClaimed[msg.sender] = true;
        } else {
            require(msg.value == price * amountToBuy, "Invalid amount of ether for amount to buy");
        }

        for (uint256 tokensLeftToMint = amountToBuy; tokensLeftToMint != 0; tokensLeftToMint--) {
            _mint(msg.sender, ++totalSupply);
            if (totalSupply == MAX_SUPPLY) {
                saleEnabled = false;
                presaleEnabled = false;
                if (_canClaimFreeMint && (amountToBuy - tokensLeftToMint - 1) > 0) {
                    payable(msg.sender).transfer((amountToBuy - tokensLeftToMint - 1) * price);
                } else if (!_canClaimFreeMint) {
                    payable(msg.sender).transfer((amountToBuy - tokensLeftToMint) * price);
                }
                break;
            }
        }
    }

    function withdraw() public {
        require(msg.sender == owner || admins[msg.sender], "Only owner or admin can withdraw");
        payable(owner).transfer(address(this).balance);
    }

    function setPresaleEnabled(bool to) public {
        require(msg.sender == owner || admins[msg.sender], "Only owner or admin can change presale state");
        require(!saleEnabled, "Cannot change presale state while public sale is live");
        require(totalSupply != MAX_SUPPLY, "Cannot change presale state after selling out");
        presaleEnabled = to;
    }

    function setSaleEnabled(bool to) public {
        require(msg.sender == owner || admins[msg.sender], "Only owner or admin can change sale state");
        require(presaleEnabled, "Presale must be live in order to turn on public sale");
        require(totalSupply != MAX_SUPPLY, "Cannot change sale state after selling out");
        saleEnabled = to;
    }

    function setPrice(uint256 to) public {
        require(msg.sender == owner || admins[msg.sender], "Only owner or admin can set prices");
        price = to;
    }

    function addToWhitelist(address[] calldata addresses) public {
        require(msg.sender == owner || admins[msg.sender], "Only owner or admin can add to whitelist");
        for (uint i = 0; i < addresses.length; i++) {
            whitelist[addresses[i]] = true;
        }
    }

    function removeFromWhitelist(address[] calldata addresses) public {
        require(msg.sender == owner || admins[msg.sender], "Only owner or admin can remove from whitelist");
        for (uint i = 0; i < addresses.length; i++) {
            whitelist[addresses[i]] = false;
        }
    }

    function addAdmins(address[] calldata addresses) public {
        require(msg.sender == owner, "Only owner can add administrators");
        require(!adminsLocked, "Cannot change administrators while locked");
        for (uint i = 0; i < addresses.length; i++) {
            admins[addresses[i]] = true;
        }
    }

    function removeAdmins(address[] calldata addresses) public {
        require(msg.sender == owner, "Only owner can remove administrators");
        require(!adminsLocked, "Cannot change administrators while locked");
        for (uint i = 0; i < addresses.length; i++) {
            admins[addresses[i]] = false;
        }
    }

    function setAdminsLock(bool to) public {
        require(msg.sender == owner, "Only owner can set admin lock state");
        adminsLocked = to;
    }

    function tokenOwners(uint256 startAt, uint256 limit) public view returns (address[] memory, uint256) {
        address[] memory addresses = new address[](limit);
        uint256 length = 0;
        for (uint256 i = 0; i < limit && i + startAt <= totalSupply; i++) {
            addresses[i] = ownerOf(startAt + i);
            length++;
        }
        return (addresses, length);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"}],"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":"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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addAdmins","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"admins","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"claimer","type":"address"}],"name":"canClaimFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"amountToBuy","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeAdmins","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromWhitelist","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":"saleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"to","type":"bool"}],"name":"setAdminsLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"to","type":"bool"}],"name":"setPresaleEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"to","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"to","type":"bool"}],"name":"setSaleEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"startAt","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"tokenOwners","outputs":[{"internalType":"address[]","name":"","type":"address[]"},{"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":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405266b1a2bc2ec500006007553480156200001c57600080fd5b5060405162002b8738038062002b878339810160408190526200003f91620001f9565b825183908390620000589060009060208501906200009c565b5080516200006e9060019060208401906200009c565b50506001600655503360601b60805280516200009290600e9060208401906200009c565b50505050620002dd565b828054620000aa906200028a565b90600052602060002090601f016020900481019282620000ce576000855562000119565b82601f10620000e957805160ff191683800117855562000119565b8280016001018555821562000119579182015b8281111562000119578251825591602001919060010190620000fc565b50620001279291506200012b565b5090565b5b808211156200012757600081556001016200012c565b600082601f8301126200015457600080fd5b81516001600160401b0380821115620001715762000171620002c7565b604051601f8301601f19908116603f011681019082821181831017156200019c576200019c620002c7565b81604052838152602092508683858801011115620001b957600080fd5b600091505b83821015620001dd5785820183015181830184015290820190620001be565b83821115620001ef5760008385830101525b9695505050505050565b6000806000606084860312156200020f57600080fd5b83516001600160401b03808211156200022757600080fd5b620002358783880162000142565b945060208601519150808211156200024c57600080fd5b6200025a8783880162000142565b935060408601519150808211156200027157600080fd5b50620002808682870162000142565b9150509250925092565b600181811c908216806200029f57607f821691505b60208210811415620002c157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c61284562000342600039600081816104ec015281816109c501528181610b5901528181610c7201528181610d0601528181610e470152818161106e0152818161118301528181611234015281816116a1015261183501526128456000f3fe60806040526004361061020f5760003560e01c806371b9b64611610118578063a0712d68116100a0578063c10225b81161006f578063c10225b81461061c578063c70b12701461063c578063c87b56dd1461065c578063e0ec7c361461067c578063e985e9c5146106ac57600080fd5b8063a0712d68146105a9578063a192783c146105bc578063a22cb465146105dc578063b88d4fde146105fc57600080fd5b806391b7f5ed116100e757806391b7f5ed1461050e57806395d89b411461052e5780639b19251a146105435780639c54df6414610573578063a035b1fe1461059357600080fd5b806371b9b646146104815780637f649783146104a0578063893da6c9146104c05780638da5cb5b146104da57600080fd5b8063377e11e01161019b578063543e062c1161016a578063543e062c146103de578063548db1741461040c5780636352211e1461042c5780636c0360eb1461044c57806370a082311461046157600080fd5b8063377e11e0146103595780633ccfd60b1461037957806342842e0e1461038e578063429b62e5146103ae57600080fd5b8063143b237f116101e2578063143b237f146102c557806318160ddd146102df57806323b872dd146103035780633020a18e1461032357806332cb6b0c1461034357600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046123ec565b6106f5565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e610747565b604051610240919061254a565b34801561027757600080fd5b5061028b610286366004612426565b6107d9565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612332565b610873565b005b3480156102d157600080fd5b506008546102349060ff1681565b3480156102eb57600080fd5b506102f5600d5481565b604051908152602001610240565b34801561030f57600080fd5b506102c361031e3660046121f0565b610989565b34801561032f57600080fd5b506102c361033e3660046123d1565b6109ba565b34801561034f57600080fd5b506102f5610c3581565b34801561036557600080fd5b506102c361037436600461235c565b610b4e565b34801561038557600080fd5b506102c3610c67565b34801561039a57600080fd5b506102c36103a93660046121f0565b610d51565b3480156103ba57600080fd5b506102346103c93660046121a2565b60096020526000908152604090205460ff1681565b3480156103ea57600080fd5b506103fe6103f936600461243f565b610d6c565b6040516102409291906124f9565b34801561041857600080fd5b506102c361042736600461235c565b610e3c565b34801561043857600080fd5b5061028b610447366004612426565b610f56565b34801561045857600080fd5b5061025e610fcd565b34801561046d57600080fd5b506102f561047c3660046121a2565b610fdc565b34801561048d57600080fd5b5060085461023490610100900460ff1681565b3480156104ac57600080fd5b506102c36104bb36600461235c565b611063565b3480156104cc57600080fd5b50600d54610c351115610234565b3480156104e657600080fd5b5061028b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561051a57600080fd5b506102c3610529366004612426565b611178565b34801561053a57600080fd5b5061025e61121a565b34801561054f57600080fd5b5061023461055e3660046121a2565b600b6020526000908152604090205460ff1681565b34801561057f57600080fd5b506102c361058e36600461235c565b611229565b34801561059f57600080fd5b506102f560075481565b6102c36105b7366004612426565b611340565b3480156105c857600080fd5b506102c36105d73660046123d1565b611696565b3480156105e857600080fd5b506102c36105f7366004612308565b61172d565b34801561060857600080fd5b506102c361061736600461222c565b6117f2565b34801561062857600080fd5b506102c36106373660046123d1565b61182a565b34801561064857600080fd5b506102346106573660046121a2565b6119c4565b34801561066857600080fd5b5061025e610677366004612426565b611a07565b34801561068857600080fd5b506102346106973660046121a2565b600c6020526000908152604090205460ff1681565b3480156106b857600080fd5b506102346106c73660046121bd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061072657506001600160e01b03198216635b5e139f60e01b145b8061074157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461075690612737565b80601f016020809104026020016040519081016040528092919081815260200182805461078290612737565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108575760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087e82610f56565b9050806001600160a01b0316836001600160a01b031614156108ec5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084e565b336001600160a01b0382161480610908575061090881336106c7565b61097a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084e565b6109848383611ae2565b505050565b6109933382611b50565b6109af5760405162461bcd60e51b815260040161084e90612641565b610984838383611c47565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480610a0057503360009081526009602052604090205460ff165b610a5e5760405162461bcd60e51b815260206004820152602960248201527f4f6e6c79206f776e6572206f722061646d696e2063616e206368616e67652073604482015268616c6520737461746560b81b606482015260840161084e565b60085460ff16610acd5760405162461bcd60e51b815260206004820152603460248201527f50726573616c65206d757374206265206c69766520696e206f7264657220746f604482015273207475726e206f6e207075626c69632073616c6560601b606482015260840161084e565b610c35600d541415610b345760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f74206368616e67652073616c652073746174652061667465722073604482015269195b1b1a5b99c81bdd5d60b21b606482015260840161084e565b600880549115156101000261ff0019909216919091179055565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610bd25760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f776e65722063616e2072656d6f76652061646d696e6973747261604482015263746f727360e01b606482015260840161084e565b600a5460ff1615610bf55760405162461bcd60e51b815260040161084e9061255d565b60005b8181101561098457600060096000858585818110610c1857610c186127cd565b9050602002016020810190610c2d91906121a2565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610c5f81612772565b915050610bf8565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480610cad57503360009081526009602052604090205460ff165b610cf95760405162461bcd60e51b815260206004820181905260248201527f4f6e6c79206f776e6572206f722061646d696e2063616e207769746864726177604482015260640161084e565b6040516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016904780156108fc02916000818181858888f19350505050158015610d4e573d6000803e3d6000fd5b50565b610984838383604051806020016040528060008152506117f2565b60606000808367ffffffffffffffff811115610d8a57610d8a6127e3565b604051908082528060200260200182016040528015610db3578160200160208202803683370190505b5090506000805b8581108015610dd45750600d54610dd18883612692565b11155b15610e3057610de66104478289612692565b838281518110610df857610df86127cd565b6001600160a01b039092166020928302919091019091015281610e1a81612772565b9250508080610e2890612772565b915050610dba565b50909590945092505050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480610e8257503360009081526009602052604090205460ff165b610ee45760405162461bcd60e51b815260206004820152602d60248201527f4f6e6c79206f776e6572206f722061646d696e2063616e2072656d6f7665206660448201526c1c9bdb481dda1a5d195b1a5cdd609a1b606482015260840161084e565b60005b81811015610984576000600b6000858585818110610f0757610f076127cd565b9050602002016020810190610f1c91906121a2565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610f4e81612772565b915050610ee7565b6000818152600260205260408120546001600160a01b0316806107415760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084e565b6060610fd7611de7565b905090565b60006001600160a01b0382166110475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084e565b506001600160a01b031660009081526003602052604090205490565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806110a957503360009081526009602052604090205460ff165b6111065760405162461bcd60e51b815260206004820152602860248201527f4f6e6c79206f776e6572206f722061646d696e2063616e2061646420746f20776044820152671a1a5d195b1a5cdd60c21b606482015260840161084e565b60005b81811015610984576001600b6000858585818110611129576111296127cd565b905060200201602081019061113e91906121a2565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061117081612772565b915050611109565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806111be57503360009081526009602052604090205460ff165b6112155760405162461bcd60e51b815260206004820152602260248201527f4f6e6c79206f776e6572206f722061646d696e2063616e207365742070726963604482015261657360f01b606482015260840161084e565b600755565b60606001805461075690612737565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146112ab5760405162461bcd60e51b815260206004820152602160248201527f4f6e6c79206f776e65722063616e206164642061646d696e6973747261746f726044820152607360f81b606482015260840161084e565b600a5460ff16156112ce5760405162461bcd60e51b815260040161084e9061255d565b60005b81811015610984576001600960008585858181106112f1576112f16127cd565b905060200201602081019061130691906121a2565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061133881612772565b9150506112d1565b600260065414156113935760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161084e565b6002600655336000908152600b602052604081205460ff16908180156113c95750336000908152600c602052604090205460ff16155b9050610c35600d54106114125760405162461bcd60e51b81526020600482015260116024820152704e6f206d6f72652070656e6775696e732160781b604482015260640161084e565b600854610100900460ff1615801561142c575060085460ff165b15611483578161147e5760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c6973746564000000000000000000604482015260640161084e565b6114cd565b600854610100900460ff166114cd5760405162461bcd60e51b815260206004820152601060248201526f135a5b9d1a5b99c8191a5cd8589b195960821b604482015260640161084e565b6000831180156114de5750600a8311155b61151b5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015260640161084e565b80156115765761152c6001846126dd565b60075461153991906126be565b34146115575760405162461bcd60e51b815260040161084e906125f8565b336000908152600c60205260409020805460ff191660011790556115a2565b8260075461158491906126be565b34146115a25760405162461bcd60e51b815260040161084e906125f8565b825b801561168b576115c733600d600081546115bd90612772565b9182905550611df6565b610c35600d541415611679576008805461ffff191690558180156116005750600060016115f483876126dd565b6115fe91906126dd565b115b1561165c5760075433906108fc90600161161a85896126dd565b61162491906126dd565b61162e91906126be565b6040518115909202916000818181858888f19350505050158015611656573d6000803e3d6000fd5b5061168b565b816116745760075433906108fc9061162484886126dd565b61168b565b8061168381612720565b9150506115a4565b505060016006555050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461171a5760405162461bcd60e51b815260206004820152602360248201527f4f6e6c79206f776e65722063616e207365742061646d696e206c6f636b20737460448201526261746560e81b606482015260840161084e565b600a805460ff1916911515919091179055565b6001600160a01b0382163314156117865760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6117fc3383611b50565b6118185760405162461bcd60e51b815260040161084e90612641565b61182484848484611f38565b50505050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061187057503360009081526009602052604090205460ff165b6118d15760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c79206f776e6572206f722061646d696e2063616e206368616e6765207060448201526b726573616c6520737461746560a01b606482015260840161084e565b600854610100900460ff16156119475760405162461bcd60e51b815260206004820152603560248201527f43616e6e6f74206368616e67652070726573616c65207374617465207768696c60448201527465207075626c69632073616c65206973206c69766560581b606482015260840161084e565b610c35600d5414156119b15760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f74206368616e67652070726573616c65207374617465206166746560448201526c1c881cd95b1b1a5b99c81bdd5d609a1b606482015260840161084e565b6008805460ff1916911515919091179055565b6001600160a01b0381166000908152600b602052604081205460ff1680156107415750506001600160a01b03166000908152600c602052604090205460ff161590565b6000818152600260205260409020546060906001600160a01b0316611a865760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084e565b6000611a90611de7565b90506000815111611ab05760405180602001604052806000815250611adb565b80611aba84611f6b565b604051602001611acb92919061248d565b6040516020818303038152906040525b9392505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b1782610f56565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611bc95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084e565b6000611bd483610f56565b9050806001600160a01b0316846001600160a01b03161480611c0f5750836001600160a01b0316611c04846107d9565b6001600160a01b0316145b80611c3f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c5a82610f56565b6001600160a01b031614611cc25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084e565b6001600160a01b038216611d245760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084e565b611d2f600082611ae2565b6001600160a01b0383166000908152600360205260408120805460019290611d589084906126dd565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d86908490612692565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060600e805461075690612737565b6001600160a01b038216611e4c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084e565b6000818152600260205260409020546001600160a01b031615611eb15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084e565b6001600160a01b0382166000908152600360205260408120805460019290611eda908490612692565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611f43848484611c47565b611f4f84848484612069565b6118245760405162461bcd60e51b815260040161084e906125a6565b606081611f8f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fb95780611fa381612772565b9150611fb29050600a836126aa565b9150611f93565b60008167ffffffffffffffff811115611fd457611fd46127e3565b6040519080825280601f01601f191660200182016040528015611ffe576020820181803683370190505b5090505b8415611c3f576120136001836126dd565b9150612020600a8661278d565b61202b906030612692565b60f81b818381518110612040576120406127cd565b60200101906001600160f81b031916908160001a905350612062600a866126aa565b9450612002565b60006001600160a01b0384163b1561216b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120ad9033908990889088906004016124bc565b602060405180830381600087803b1580156120c757600080fd5b505af19250505080156120f7575060408051601f3d908101601f191682019092526120f491810190612409565b60015b612151573d808015612125576040519150601f19603f3d011682016040523d82523d6000602084013e61212a565b606091505b5080516121495760405162461bcd60e51b815260040161084e906125a6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c3f565b506001949350505050565b80356001600160a01b038116811461218d57600080fd5b919050565b8035801515811461218d57600080fd5b6000602082840312156121b457600080fd5b611adb82612176565b600080604083850312156121d057600080fd5b6121d983612176565b91506121e760208401612176565b90509250929050565b60008060006060848603121561220557600080fd5b61220e84612176565b925061221c60208501612176565b9150604084013590509250925092565b6000806000806080858703121561224257600080fd5b61224b85612176565b935061225960208601612176565b925060408501359150606085013567ffffffffffffffff8082111561227d57600080fd5b818701915087601f83011261229157600080fd5b8135818111156122a3576122a36127e3565b604051601f8201601f19908116603f011681019083821181831017156122cb576122cb6127e3565b816040528281528a60208487010111156122e457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561231b57600080fd5b61232483612176565b91506121e760208401612192565b6000806040838503121561234557600080fd5b61234e83612176565b946020939093013593505050565b6000806020838503121561236f57600080fd5b823567ffffffffffffffff8082111561238757600080fd5b818501915085601f83011261239b57600080fd5b8135818111156123aa57600080fd5b8660208260051b85010111156123bf57600080fd5b60209290920196919550909350505050565b6000602082840312156123e357600080fd5b611adb82612192565b6000602082840312156123fe57600080fd5b8135611adb816127f9565b60006020828403121561241b57600080fd5b8151611adb816127f9565b60006020828403121561243857600080fd5b5035919050565b6000806040838503121561245257600080fd5b50508035926020909101359150565b600081518084526124798160208601602086016126f4565b601f01601f19169290920160200192915050565b6000835161249f8184602088016126f4565b8351908301906124b38183602088016126f4565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124ef90830184612461565b9695505050505050565b604080825283519082018190526000906020906060840190828701845b8281101561253b5781516001600160a01b031684529284019290840190600101612516565b50505092019290925292915050565b602081526000611adb6020830184612461565b60208082526029908201527f43616e6e6f74206368616e67652061646d696e6973747261746f7273207768696040820152681b19481b1bd8dad95960ba1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526029908201527f496e76616c696420616d6f756e74206f6620657468657220666f7220616d6f756040820152686e7420746f2062757960b81b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156126a5576126a56127a1565b500190565b6000826126b9576126b96127b7565b500490565b60008160001904831182151516156126d8576126d86127a1565b500290565b6000828210156126ef576126ef6127a1565b500390565b60005b8381101561270f5781810151838201526020016126f7565b838111156118245750506000910152565b60008161272f5761272f6127a1565b506000190190565b600181811c9082168061274b57607f821691505b6020821081141561276c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612786576127866127a1565b5060010190565b60008261279c5761279c6127b7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d4e57600080fdfea264697066735822122065923c98058d3d81fe36bb45dff6180d7aaf241f69d5a10c6cf375ca26035b0664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d466976652050656e6775696e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000235500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5947446b3159446975525177486936456b444639463647706266384755524e4a75765361585a6a78463859310000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806371b9b64611610118578063a0712d68116100a0578063c10225b81161006f578063c10225b81461061c578063c70b12701461063c578063c87b56dd1461065c578063e0ec7c361461067c578063e985e9c5146106ac57600080fd5b8063a0712d68146105a9578063a192783c146105bc578063a22cb465146105dc578063b88d4fde146105fc57600080fd5b806391b7f5ed116100e757806391b7f5ed1461050e57806395d89b411461052e5780639b19251a146105435780639c54df6414610573578063a035b1fe1461059357600080fd5b806371b9b646146104815780637f649783146104a0578063893da6c9146104c05780638da5cb5b146104da57600080fd5b8063377e11e01161019b578063543e062c1161016a578063543e062c146103de578063548db1741461040c5780636352211e1461042c5780636c0360eb1461044c57806370a082311461046157600080fd5b8063377e11e0146103595780633ccfd60b1461037957806342842e0e1461038e578063429b62e5146103ae57600080fd5b8063143b237f116101e2578063143b237f146102c557806318160ddd146102df57806323b872dd146103035780633020a18e1461032357806332cb6b0c1461034357600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046123ec565b6106f5565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e610747565b604051610240919061254a565b34801561027757600080fd5b5061028b610286366004612426565b6107d9565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612332565b610873565b005b3480156102d157600080fd5b506008546102349060ff1681565b3480156102eb57600080fd5b506102f5600d5481565b604051908152602001610240565b34801561030f57600080fd5b506102c361031e3660046121f0565b610989565b34801561032f57600080fd5b506102c361033e3660046123d1565b6109ba565b34801561034f57600080fd5b506102f5610c3581565b34801561036557600080fd5b506102c361037436600461235c565b610b4e565b34801561038557600080fd5b506102c3610c67565b34801561039a57600080fd5b506102c36103a93660046121f0565b610d51565b3480156103ba57600080fd5b506102346103c93660046121a2565b60096020526000908152604090205460ff1681565b3480156103ea57600080fd5b506103fe6103f936600461243f565b610d6c565b6040516102409291906124f9565b34801561041857600080fd5b506102c361042736600461235c565b610e3c565b34801561043857600080fd5b5061028b610447366004612426565b610f56565b34801561045857600080fd5b5061025e610fcd565b34801561046d57600080fd5b506102f561047c3660046121a2565b610fdc565b34801561048d57600080fd5b5060085461023490610100900460ff1681565b3480156104ac57600080fd5b506102c36104bb36600461235c565b611063565b3480156104cc57600080fd5b50600d54610c351115610234565b3480156104e657600080fd5b5061028b7f000000000000000000000000edb43e538e2668733b3a1ed282463dfda793722081565b34801561051a57600080fd5b506102c3610529366004612426565b611178565b34801561053a57600080fd5b5061025e61121a565b34801561054f57600080fd5b5061023461055e3660046121a2565b600b6020526000908152604090205460ff1681565b34801561057f57600080fd5b506102c361058e36600461235c565b611229565b34801561059f57600080fd5b506102f560075481565b6102c36105b7366004612426565b611340565b3480156105c857600080fd5b506102c36105d73660046123d1565b611696565b3480156105e857600080fd5b506102c36105f7366004612308565b61172d565b34801561060857600080fd5b506102c361061736600461222c565b6117f2565b34801561062857600080fd5b506102c36106373660046123d1565b61182a565b34801561064857600080fd5b506102346106573660046121a2565b6119c4565b34801561066857600080fd5b5061025e610677366004612426565b611a07565b34801561068857600080fd5b506102346106973660046121a2565b600c6020526000908152604090205460ff1681565b3480156106b857600080fd5b506102346106c73660046121bd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006001600160e01b031982166380ac58cd60e01b148061072657506001600160e01b03198216635b5e139f60e01b145b8061074157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461075690612737565b80601f016020809104026020016040519081016040528092919081815260200182805461078290612737565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108575760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087e82610f56565b9050806001600160a01b0316836001600160a01b031614156108ec5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084e565b336001600160a01b0382161480610908575061090881336106c7565b61097a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084e565b6109848383611ae2565b505050565b6109933382611b50565b6109af5760405162461bcd60e51b815260040161084e90612641565b610984838383611c47565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda7937220161480610a0057503360009081526009602052604090205460ff165b610a5e5760405162461bcd60e51b815260206004820152602960248201527f4f6e6c79206f776e6572206f722061646d696e2063616e206368616e67652073604482015268616c6520737461746560b81b606482015260840161084e565b60085460ff16610acd5760405162461bcd60e51b815260206004820152603460248201527f50726573616c65206d757374206265206c69766520696e206f7264657220746f604482015273207475726e206f6e207075626c69632073616c6560601b606482015260840161084e565b610c35600d541415610b345760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f74206368616e67652073616c652073746174652061667465722073604482015269195b1b1a5b99c81bdd5d60b21b606482015260840161084e565b600880549115156101000261ff0019909216919091179055565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda79372201614610bd25760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f776e65722063616e2072656d6f76652061646d696e6973747261604482015263746f727360e01b606482015260840161084e565b600a5460ff1615610bf55760405162461bcd60e51b815260040161084e9061255d565b60005b8181101561098457600060096000858585818110610c1857610c186127cd565b9050602002016020810190610c2d91906121a2565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610c5f81612772565b915050610bf8565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda7937220161480610cad57503360009081526009602052604090205460ff165b610cf95760405162461bcd60e51b815260206004820181905260248201527f4f6e6c79206f776e6572206f722061646d696e2063616e207769746864726177604482015260640161084e565b6040516001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda793722016904780156108fc02916000818181858888f19350505050158015610d4e573d6000803e3d6000fd5b50565b610984838383604051806020016040528060008152506117f2565b60606000808367ffffffffffffffff811115610d8a57610d8a6127e3565b604051908082528060200260200182016040528015610db3578160200160208202803683370190505b5090506000805b8581108015610dd45750600d54610dd18883612692565b11155b15610e3057610de66104478289612692565b838281518110610df857610df86127cd565b6001600160a01b039092166020928302919091019091015281610e1a81612772565b9250508080610e2890612772565b915050610dba565b50909590945092505050565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda7937220161480610e8257503360009081526009602052604090205460ff165b610ee45760405162461bcd60e51b815260206004820152602d60248201527f4f6e6c79206f776e6572206f722061646d696e2063616e2072656d6f7665206660448201526c1c9bdb481dda1a5d195b1a5cdd609a1b606482015260840161084e565b60005b81811015610984576000600b6000858585818110610f0757610f076127cd565b9050602002016020810190610f1c91906121a2565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610f4e81612772565b915050610ee7565b6000818152600260205260408120546001600160a01b0316806107415760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084e565b6060610fd7611de7565b905090565b60006001600160a01b0382166110475760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084e565b506001600160a01b031660009081526003602052604090205490565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda79372201614806110a957503360009081526009602052604090205460ff165b6111065760405162461bcd60e51b815260206004820152602860248201527f4f6e6c79206f776e6572206f722061646d696e2063616e2061646420746f20776044820152671a1a5d195b1a5cdd60c21b606482015260840161084e565b60005b81811015610984576001600b6000858585818110611129576111296127cd565b905060200201602081019061113e91906121a2565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061117081612772565b915050611109565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda79372201614806111be57503360009081526009602052604090205460ff165b6112155760405162461bcd60e51b815260206004820152602260248201527f4f6e6c79206f776e6572206f722061646d696e2063616e207365742070726963604482015261657360f01b606482015260840161084e565b600755565b60606001805461075690612737565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda793722016146112ab5760405162461bcd60e51b815260206004820152602160248201527f4f6e6c79206f776e65722063616e206164642061646d696e6973747261746f726044820152607360f81b606482015260840161084e565b600a5460ff16156112ce5760405162461bcd60e51b815260040161084e9061255d565b60005b81811015610984576001600960008585858181106112f1576112f16127cd565b905060200201602081019061130691906121a2565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061133881612772565b9150506112d1565b600260065414156113935760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161084e565b6002600655336000908152600b602052604081205460ff16908180156113c95750336000908152600c602052604090205460ff16155b9050610c35600d54106114125760405162461bcd60e51b81526020600482015260116024820152704e6f206d6f72652070656e6775696e732160781b604482015260640161084e565b600854610100900460ff1615801561142c575060085460ff165b15611483578161147e5760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c6973746564000000000000000000604482015260640161084e565b6114cd565b600854610100900460ff166114cd5760405162461bcd60e51b815260206004820152601060248201526f135a5b9d1a5b99c8191a5cd8589b195960821b604482015260640161084e565b6000831180156114de5750600a8311155b61151b5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b604482015260640161084e565b80156115765761152c6001846126dd565b60075461153991906126be565b34146115575760405162461bcd60e51b815260040161084e906125f8565b336000908152600c60205260409020805460ff191660011790556115a2565b8260075461158491906126be565b34146115a25760405162461bcd60e51b815260040161084e906125f8565b825b801561168b576115c733600d600081546115bd90612772565b9182905550611df6565b610c35600d541415611679576008805461ffff191690558180156116005750600060016115f483876126dd565b6115fe91906126dd565b115b1561165c5760075433906108fc90600161161a85896126dd565b61162491906126dd565b61162e91906126be565b6040518115909202916000818181858888f19350505050158015611656573d6000803e3d6000fd5b5061168b565b816116745760075433906108fc9061162484886126dd565b61168b565b8061168381612720565b9150506115a4565b505060016006555050565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda7937220161461171a5760405162461bcd60e51b815260206004820152602360248201527f4f6e6c79206f776e65722063616e207365742061646d696e206c6f636b20737460448201526261746560e81b606482015260840161084e565b600a805460ff1916911515919091179055565b6001600160a01b0382163314156117865760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6117fc3383611b50565b6118185760405162461bcd60e51b815260040161084e90612641565b61182484848484611f38565b50505050565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda793722016148061187057503360009081526009602052604090205460ff165b6118d15760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c79206f776e6572206f722061646d696e2063616e206368616e6765207060448201526b726573616c6520737461746560a01b606482015260840161084e565b600854610100900460ff16156119475760405162461bcd60e51b815260206004820152603560248201527f43616e6e6f74206368616e67652070726573616c65207374617465207768696c60448201527465207075626c69632073616c65206973206c69766560581b606482015260840161084e565b610c35600d5414156119b15760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f74206368616e67652070726573616c65207374617465206166746560448201526c1c881cd95b1b1a5b99c81bdd5d609a1b606482015260840161084e565b6008805460ff1916911515919091179055565b6001600160a01b0381166000908152600b602052604081205460ff1680156107415750506001600160a01b03166000908152600c602052604090205460ff161590565b6000818152600260205260409020546060906001600160a01b0316611a865760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084e565b6000611a90611de7565b90506000815111611ab05760405180602001604052806000815250611adb565b80611aba84611f6b565b604051602001611acb92919061248d565b6040516020818303038152906040525b9392505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b1782610f56565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611bc95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084e565b6000611bd483610f56565b9050806001600160a01b0316846001600160a01b03161480611c0f5750836001600160a01b0316611c04846107d9565b6001600160a01b0316145b80611c3f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c5a82610f56565b6001600160a01b031614611cc25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084e565b6001600160a01b038216611d245760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084e565b611d2f600082611ae2565b6001600160a01b0383166000908152600360205260408120805460019290611d589084906126dd565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d86908490612692565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060600e805461075690612737565b6001600160a01b038216611e4c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084e565b6000818152600260205260409020546001600160a01b031615611eb15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084e565b6001600160a01b0382166000908152600360205260408120805460019290611eda908490612692565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611f43848484611c47565b611f4f84848484612069565b6118245760405162461bcd60e51b815260040161084e906125a6565b606081611f8f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fb95780611fa381612772565b9150611fb29050600a836126aa565b9150611f93565b60008167ffffffffffffffff811115611fd457611fd46127e3565b6040519080825280601f01601f191660200182016040528015611ffe576020820181803683370190505b5090505b8415611c3f576120136001836126dd565b9150612020600a8661278d565b61202b906030612692565b60f81b818381518110612040576120406127cd565b60200101906001600160f81b031916908160001a905350612062600a866126aa565b9450612002565b60006001600160a01b0384163b1561216b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906120ad9033908990889088906004016124bc565b602060405180830381600087803b1580156120c757600080fd5b505af19250505080156120f7575060408051601f3d908101601f191682019092526120f491810190612409565b60015b612151573d808015612125576040519150601f19603f3d011682016040523d82523d6000602084013e61212a565b606091505b5080516121495760405162461bcd60e51b815260040161084e906125a6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c3f565b506001949350505050565b80356001600160a01b038116811461218d57600080fd5b919050565b8035801515811461218d57600080fd5b6000602082840312156121b457600080fd5b611adb82612176565b600080604083850312156121d057600080fd5b6121d983612176565b91506121e760208401612176565b90509250929050565b60008060006060848603121561220557600080fd5b61220e84612176565b925061221c60208501612176565b9150604084013590509250925092565b6000806000806080858703121561224257600080fd5b61224b85612176565b935061225960208601612176565b925060408501359150606085013567ffffffffffffffff8082111561227d57600080fd5b818701915087601f83011261229157600080fd5b8135818111156122a3576122a36127e3565b604051601f8201601f19908116603f011681019083821181831017156122cb576122cb6127e3565b816040528281528a60208487010111156122e457600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561231b57600080fd5b61232483612176565b91506121e760208401612192565b6000806040838503121561234557600080fd5b61234e83612176565b946020939093013593505050565b6000806020838503121561236f57600080fd5b823567ffffffffffffffff8082111561238757600080fd5b818501915085601f83011261239b57600080fd5b8135818111156123aa57600080fd5b8660208260051b85010111156123bf57600080fd5b60209290920196919550909350505050565b6000602082840312156123e357600080fd5b611adb82612192565b6000602082840312156123fe57600080fd5b8135611adb816127f9565b60006020828403121561241b57600080fd5b8151611adb816127f9565b60006020828403121561243857600080fd5b5035919050565b6000806040838503121561245257600080fd5b50508035926020909101359150565b600081518084526124798160208601602086016126f4565b601f01601f19169290920160200192915050565b6000835161249f8184602088016126f4565b8351908301906124b38183602088016126f4565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124ef90830184612461565b9695505050505050565b604080825283519082018190526000906020906060840190828701845b8281101561253b5781516001600160a01b031684529284019290840190600101612516565b50505092019290925292915050565b602081526000611adb6020830184612461565b60208082526029908201527f43616e6e6f74206368616e67652061646d696e6973747261746f7273207768696040820152681b19481b1bd8dad95960ba1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526029908201527f496e76616c696420616d6f756e74206f6620657468657220666f7220616d6f756040820152686e7420746f2062757960b81b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156126a5576126a56127a1565b500190565b6000826126b9576126b96127b7565b500490565b60008160001904831182151516156126d8576126d86127a1565b500290565b6000828210156126ef576126ef6127a1565b500390565b60005b8381101561270f5781810151838201526020016126f7565b838111156118245750506000910152565b60008161272f5761272f6127a1565b506000190190565b600181811c9082168061274b57607f821691505b6020821081141561276c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612786576127866127a1565b5060010190565b60008261279c5761279c6127b7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d4e57600080fdfea264697066735822122065923c98058d3d81fe36bb45dff6180d7aaf241f69d5a10c6cf375ca26035b0664736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d466976652050656e6775696e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000235500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5947446b3159446975525177486936456b444639463647706266384755524e4a75765361585a6a78463859310000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Five Penguins
Arg [1] : symbol (string): 5P
Arg [2] : _uri (string): ipfs://QmYGDk1YDiuRQwHi6EkDF9F6Gpbf8GURNJuvSaXZjxF8Y1

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 466976652050656e6775696e7300000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 3550000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [8] : 697066733a2f2f516d5947446b3159446975525177486936456b444639463647
Arg [9] : 706266384755524e4a75765361585a6a78463859310000000000000000000000


Deployed Bytecode Sourcemap

35946:5637:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20581:292;;;;;;;;;;-1:-1:-1;20581:292:0;;;;;:::i;:::-;;:::i;:::-;;;6893:14:1;;6886:22;6868:41;;6856:2;6841:18;20581:292:0;;;;;;;;21513:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22973:221::-;;;;;;;;;;-1:-1:-1;22973:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5455:32:1;;;5437:51;;5425:2;5410:18;22973:221:0;5291:203:1;22510:397:0;;;;;;;;;;-1:-1:-1;22510:397:0;;;;;:::i;:::-;;:::i;:::-;;36129:26;;;;;;;;;;-1:-1:-1;36129:26:0;;;;;;;;36374;;;;;;;;;;;;;;;;;;;20759:25:1;;;20747:2;20732:18;36374:26:0;20613:177:1;23863:305:0;;;;;;;;;;-1:-1:-1;23863:305:0;;;;;:::i;:::-;;:::i;39208:362::-;;;;;;;;;;-1:-1:-1;39208:362:0;;;;;:::i;:::-;;:::i;36039:41::-;;;;;;;;;;;;36076:4;36039:41;;40682:333;;;;;;;;;;-1:-1:-1;40682:333:0;;;;;:::i;:::-;;:::i;38630:189::-;;;;;;;;;;;;;:::i;24239:151::-;;;;;;;;;;-1:-1:-1;24239:151:0;;;;;:::i;:::-;;:::i;36192:39::-;;;;;;;;;;-1:-1:-1;36192:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;41184:396;;;;;;;;;;-1:-1:-1;41184:396:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;40044:296::-;;;;;;;;;;-1:-1:-1;40044:296:0;;;;;:::i;:::-;;:::i;21207:239::-;;;;;;;;;;-1:-1:-1;21207:239:0;;;;;:::i;:::-;;:::i;36595:91::-;;;;;;;;;;;;;:::i;20937:208::-;;;;;;;;;;-1:-1:-1;20937:208:0;;;;;:::i;:::-;;:::i;36162:23::-;;;;;;;;;;-1:-1:-1;36162:23:0;;;;;;;;;;;39751:285;;;;;;;;;;-1:-1:-1;39751:285:0;;;;;:::i;:::-;;:::i;36951:97::-;;;;;;;;;;-1:-1:-1;37015:11:0;;36076:4;-1:-1:-1;37015:25:0;36951:97;;36002:30;;;;;;;;;;;;;;;39578:165;;;;;;;;;;-1:-1:-1;39578:165:0;;;;;:::i;:::-;;:::i;21682:104::-;;;;;;;;;;;;;:::i;36270:42::-;;;;;;;;;;-1:-1:-1;36270:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;40348:326;;;;;;;;;;-1:-1:-1;40348:326:0;;;;;:::i;:::-;;:::i;36087:35::-;;;;;;;;;;;;;;;;37056:1566;;;;;;:::i;:::-;;:::i;41023:153::-;;;;;;;;;;-1:-1:-1;41023:153:0;;;;;:::i;:::-;;:::i;23266:295::-;;;;;;;;;;-1:-1:-1;23266:295:0;;;;;:::i;:::-;;:::i;24461:285::-;;;;;;;;;;-1:-1:-1;24461:285:0;;;;;:::i;:::-;;:::i;38827:373::-;;;;;;;;;;-1:-1:-1;38827:373:0;;;;;:::i;:::-;;:::i;36800:143::-;;;;;;;;;;-1:-1:-1;36800:143:0;;;;;:::i;:::-;;:::i;21857:360::-;;;;;;;;;;-1:-1:-1;21857:360:0;;;;;:::i;:::-;;:::i;36319:48::-;;;;;;;;;;-1:-1:-1;36319:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23632:164;;;;;;;;;;-1:-1:-1;23632:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23753:25:0;;;23729:4;23753:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23632:164;20581:292;20683:4;-1:-1:-1;;;;;;20707:40:0;;-1:-1:-1;;;20707:40:0;;:105;;-1:-1:-1;;;;;;;20764:48:0;;-1:-1:-1;;;20764:48:0;20707:105;:158;;;-1:-1:-1;;;;;;;;;;19190:40:0;;;20829:36;20700:165;20581:292;-1:-1:-1;;20581:292:0:o;21513:100::-;21567:13;21600:5;21593:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21513:100;:::o;22973:221::-;23049:7;26302:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26302:16:0;23069:73;;;;-1:-1:-1;;;23069:73:0;;15710:2:1;23069:73:0;;;15692:21:1;15749:2;15729:18;;;15722:30;15788:34;15768:18;;;15761:62;-1:-1:-1;;;15839:18:1;;;15832:42;15891:19;;23069:73:0;;;;;;;;;-1:-1:-1;23162:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23162:24:0;;22973:221::o;22510:397::-;22591:13;22607:23;22622:7;22607:14;:23::i;:::-;22591:39;;22655:5;-1:-1:-1;;;;;22649:11:0;:2;-1:-1:-1;;;;;22649:11:0;;;22641:57;;;;-1:-1:-1;;;22641:57:0;;18816:2:1;22641:57:0;;;18798:21:1;18855:2;18835:18;;;18828:30;18894:34;18874:18;;;18867:62;-1:-1:-1;;;18945:18:1;;;18938:31;18986:19;;22641:57:0;18614:397:1;22641:57:0;15955:10;-1:-1:-1;;;;;22719:21:0;;;;:62;;-1:-1:-1;22744:37:0;22761:5;15955:10;23632:164;:::i;22744:37::-;22711:154;;;;-1:-1:-1;;;22711:154:0;;13742:2:1;22711:154:0;;;13724:21:1;13781:2;13761:18;;;13754:30;13820:34;13800:18;;;13793:62;13891:26;13871:18;;;13864:54;13935:19;;22711:154:0;13540:420:1;22711:154:0;22878:21;22887:2;22891:7;22878:8;:21::i;:::-;22580:327;22510:397;;:::o;23863:305::-;24024:41;15955:10;24057:7;24024:18;:41::i;:::-;24016:103;;;;-1:-1:-1;;;24016:103:0;;;;;;;:::i;:::-;24132:28;24142:4;24148:2;24152:7;24132:9;:28::i;39208:362::-;39267:10;-1:-1:-1;;;;;39281:5:0;39267:19;;;:41;;-1:-1:-1;39297:10:0;39290:18;;;;:6;:18;;;;;;;;39267:41;39259:95;;;;-1:-1:-1;;;39259:95:0;;20045:2:1;39259:95:0;;;20027:21:1;20084:2;20064:18;;;20057:30;20123:34;20103:18;;;20096:62;-1:-1:-1;;;20174:18:1;;;20167:39;20223:19;;39259:95:0;19843:405:1;39259:95:0;39373:14;;;;39365:79;;;;-1:-1:-1;;;39365:79:0;;18395:2:1;39365:79:0;;;18377:21:1;18434:2;18414:18;;;18407:30;18473:34;18453:18;;;18446:62;-1:-1:-1;;;18524:18:1;;;18517:50;18584:19;;39365:79:0;18193:416:1;39365:79:0;36076:4;39463:11;;:25;;39455:80;;;;-1:-1:-1;;;39455:80:0;;12503:2:1;39455:80:0;;;12485:21:1;12542:2;12522:18;;;12515:30;12581:34;12561:18;;;12554:62;-1:-1:-1;;;12632:18:1;;;12625:40;12682:19;;39455:80:0;12301:406:1;39455:80:0;39546:11;:16;;;;;;;-1:-1:-1;;39546:16:0;;;;;;;;;39208:362::o;40682:333::-;40760:10;-1:-1:-1;;;;;40774:5:0;40760:19;;40752:68;;;;-1:-1:-1;;;40752:68:0;;10524:2:1;40752:68:0;;;10506:21:1;10563:2;10543:18;;;10536:30;10602:34;10582:18;;;10575:62;-1:-1:-1;;;10653:18:1;;;10646:34;10697:19;;40752:68:0;10322:400:1;40752:68:0;40840:12;;;;40839:13;40831:67;;;;-1:-1:-1;;;40831:67:0;;;;;;;:::i;:::-;40914:6;40909:99;40926:20;;;40909:99;;;40991:5;40968:6;:20;40975:9;;40985:1;40975:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;40968:20:0;;;;;;;;;;;;-1:-1:-1;40968:20:0;:28;;-1:-1:-1;;40968:28:0;;;;;;;;;;40948:3;;;;:::i;:::-;;;;40909:99;;38630:189;38676:10;-1:-1:-1;;;;;38690:5:0;38676:19;;;:41;;-1:-1:-1;38706:10:0;38699:18;;;;:6;:18;;;;;;;;38676:41;38668:86;;;;-1:-1:-1;;;38668:86:0;;14988:2:1;38668:86:0;;;14970:21:1;;;15007:18;;;15000:30;15066:34;15046:18;;;15039:62;15118:18;;38668:86:0;14786:356:1;38668:86:0;38765:46;;-1:-1:-1;;;;;38773:5:0;38765:23;;38789:21;38765:46;;;;;;;;;38789:21;38765:23;:46;;;;;;;;;;;;;;;;;;;;;38630:189::o;24239:151::-;24343:39;24360:4;24366:2;24370:7;24343:39;;;;;;;;;;;;:16;:39::i;41184:396::-;41258:16;41276:7;41296:26;41339:5;41325:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41325:20:0;;41296:49;;41356:14;41390:9;41385:151;41409:5;41405:1;:9;:39;;;;-1:-1:-1;41433:11:0;;41418;41422:7;41418:1;:11;:::i;:::-;:26;;41405:39;41385:151;;;41481:20;41489:11;41499:1;41489:7;:11;:::i;41481:20::-;41466:9;41476:1;41466:12;;;;;;;;:::i;:::-;-1:-1:-1;;;;;41466:35:0;;;:12;;;;;;;;;;;:35;41516:8;;;;:::i;:::-;;;;41446:3;;;;;:::i;:::-;;;;41385:151;;;-1:-1:-1;41554:9:0;;;;-1:-1:-1;41184:396:0;-1:-1:-1;;;41184:396:0:o;40044:296::-;40129:10;-1:-1:-1;;;;;40143:5:0;40129:19;;;:41;;-1:-1:-1;40159:10:0;40152:18;;;;:6;:18;;;;;;;;40129:41;40121:99;;;;-1:-1:-1;;;40121:99:0;;12914:2:1;40121:99:0;;;12896:21:1;12953:2;12933:18;;;12926:30;12992:34;12972:18;;;12965:62;-1:-1:-1;;;13043:18:1;;;13036:43;13096:19;;40121:99:0;12712:409:1;40121:99:0;40236:6;40231:102;40248:20;;;40231:102;;;40316:5;40290:9;:23;40300:9;;40310:1;40300:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;40290:23:0;;;;;;;;;;;;-1:-1:-1;40290:23:0;:31;;-1:-1:-1;;40290:31:0;;;;;;;;;;40270:3;;;;:::i;:::-;;;;40231:102;;21207:239;21279:7;21315:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21315:16:0;21350:19;21342:73;;;;-1:-1:-1;;;21342:73:0;;14578:2:1;21342:73:0;;;14560:21:1;14617:2;14597:18;;;14590:30;14656:34;14636:18;;;14629:62;-1:-1:-1;;;14707:18:1;;;14700:39;14756:19;;21342:73:0;14376:405:1;36595:91:0;36635:13;36668:10;:8;:10::i;:::-;36661:17;;36595:91;:::o;20937:208::-;21009:7;-1:-1:-1;;;;;21037:19:0;;21029:74;;;;-1:-1:-1;;;21029:74:0;;14167:2:1;21029:74:0;;;14149:21:1;14206:2;14186:18;;;14179:30;14245:34;14225:18;;;14218:62;-1:-1:-1;;;14296:18:1;;;14289:40;14346:19;;21029:74:0;13965:406:1;21029:74:0;-1:-1:-1;;;;;;21121:16:0;;;;;:9;:16;;;;;;;20937:208::o;39751:285::-;39831:10;-1:-1:-1;;;;;39845:5:0;39831:19;;;:41;;-1:-1:-1;39861:10:0;39854:18;;;;:6;:18;;;;;;;;39831:41;39823:94;;;;-1:-1:-1;;;39823:94:0;;19636:2:1;39823:94:0;;;19618:21:1;19675:2;19655:18;;;19648:30;19714:34;19694:18;;;19687:62;-1:-1:-1;;;19765:18:1;;;19758:38;19813:19;;39823:94:0;19434:404:1;39823:94:0;39933:6;39928:101;39945:20;;;39928:101;;;40013:4;39987:9;:23;39997:9;;40007:1;39997:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39987:23:0;;;;;;;;;;;;-1:-1:-1;39987:23:0;:30;;-1:-1:-1;;39987:30:0;;;;;;;;;;39967:3;;;;:::i;:::-;;;;39928:101;;39578:165;39634:10;-1:-1:-1;;;;;39648:5:0;39634:19;;;:41;;-1:-1:-1;39664:10:0;39657:18;;;;:6;:18;;;;;;;;39634:41;39626:88;;;;-1:-1:-1;;;39626:88:0;;16123:2:1;39626:88:0;;;16105:21:1;16162:2;16142:18;;;16135:30;16201:34;16181:18;;;16174:62;-1:-1:-1;;;16252:18:1;;;16245:32;16294:19;;39626:88:0;15921:398:1;39626:88:0;39725:5;:10;39578:165::o;21682:104::-;21738:13;21771:7;21764:14;;;;;:::i;40348:326::-;40423:10;-1:-1:-1;;;;;40437:5:0;40423:19;;40415:65;;;;-1:-1:-1;;;40415:65:0;;12101:2:1;40415:65:0;;;12083:21:1;12140:2;12120:18;;;12113:30;12179:34;12159:18;;;12152:62;-1:-1:-1;;;12230:18:1;;;12223:31;12271:19;;40415:65:0;11899:397:1;40415:65:0;40500:12;;;;40499:13;40491:67;;;;-1:-1:-1;;;40491:67:0;;;;;;;:::i;:::-;40574:6;40569:98;40586:20;;;40569:98;;;40651:4;40628:6;:20;40635:9;;40645:1;40635:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;40628:20:0;;;;;;;;;;;;-1:-1:-1;40628:20:0;:27;;-1:-1:-1;;40628:27:0;;;;;;;;;;40608:3;;;;:::i;:::-;;;;40569:98;;37056:1566;34970:1;35568:7;;:19;;35560:63;;;;-1:-1:-1;;;35560:63:0;;20455:2:1;35560:63:0;;;20437:21:1;20494:2;20474:18;;;20467:30;20533:33;20513:18;;;20506:61;20584:18;;35560:63:0;20253:355:1;35560:63:0;34970:1;35701:7;:18;37159:10:::1;37130:16;37149:21:::0;;;:9:::1;:21;::::0;;;;;::::1;;::::0;;37206:43;::::1;;;-1:-1:-1::0;37238:10:0::1;37222:27;::::0;;;:15:::1;:27;::::0;;;;;::::1;;37221:28;37206:43;37181:68;;36076:4;37270:11;;:24;37262:54;;;::::0;-1:-1:-1;;;37262:54:0;;16526:2:1;37262:54:0::1;::::0;::::1;16508:21:1::0;16565:2;16545:18;;;16538:30;-1:-1:-1;;;16584:18:1;;;16577:47;16641:18;;37262:54:0::1;16324:341:1::0;37262:54:0::1;37334:11;::::0;::::1;::::0;::::1;;;37333:12;:30:::0;::::1;;;-1:-1:-1::0;37349:14:0::1;::::0;::::1;;37333:30;37329:183;;;37388:11;37380:47;;;::::0;-1:-1:-1;;;37380:47:0;;18043:2:1;37380:47:0::1;::::0;::::1;18025:21:1::0;18082:2;18062:18;;;18055:30;18121:25;18101:18;;;18094:53;18164:18;;37380:47:0::1;17841:347:1::0;37380:47:0::1;37329:183;;;37468:11;::::0;::::1;::::0;::::1;;;37460:40;;;::::0;-1:-1:-1;;;37460:40:0;;16872:2:1;37460:40:0::1;::::0;::::1;16854:21:1::0;16911:2;16891:18;;;16884:30;-1:-1:-1;;;16930:18:1;;;16923:46;16986:18;;37460:40:0::1;16670:340:1::0;37460:40:0::1;37546:1;37532:11;:15;:36;;;;;37566:2;37551:11;:17;;37532:36;37524:63;;;::::0;-1:-1:-1;;;37524:63:0;;9771:2:1;37524:63:0::1;::::0;::::1;9753:21:1::0;9810:2;9790:18;;;9783:30;-1:-1:-1;;;9829:18:1;;;9822:44;9883:18;;37524:63:0::1;9569:338:1::0;37524:63:0::1;37641:17;37637:310;;;37705:15;37719:1;37705:11:::0;:15:::1;:::i;:::-;37696:5;;:25;;;;:::i;:::-;37683:9;:38;37675:92;;;;-1:-1:-1::0;;;37675:92:0::1;;;;;;;:::i;:::-;37798:10;37782:27;::::0;;;:15:::1;:27;::::0;;;;:34;;-1:-1:-1;;37782:34:0::1;37812:4;37782:34;::::0;;37637:310:::1;;;37878:11;37870:5;;:19;;;;:::i;:::-;37857:9;:32;37849:86;;;;-1:-1:-1::0;;;37849:86:0::1;;;;;;;:::i;:::-;37991:11:::0;37959:656:::1;38004:21:::0;;37959:656:::1;;38062:32;38068:10;38082:11;;38080:13;;;;;:::i;:::-;::::0;;;;-1:-1:-1;38062:5:0::1;:32::i;:::-;36076:4;38113:11;;:25;38109:495;;;38159:11;:19:::0;;-1:-1:-1;;38197:22:0;;;38242:17;:61;::::1;;;-1:-1:-1::0;38302:1:0::1;38297;38264:30;38278:16:::0;38264:11;:30:::1;:::i;:::-;:34;;;;:::i;:::-;38263:40;38242:61;38238:327;;;38396:5;::::0;38336:10:::1;::::0;38328:74:::1;::::0;38391:1:::1;38358:30;38372:16:::0;38358:11;:30:::1;:::i;:::-;:34;;;;:::i;:::-;38357:44;;;;:::i;:::-;38328:74;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;38583:5;;38238:327;38433:17;38428:137;;38539:5;::::0;38483:10:::1;::::0;38475:70:::1;::::0;38505:30:::1;38519:16:::0;38505:11;:30:::1;:::i;38428:137::-;38583:5;;38109:495;38027:18:::0;::::1;::::0;::::1;:::i;:::-;;;;37959:656;;;-1:-1:-1::0;;34926:1:0;35880:7;:22;-1:-1:-1;;37056:1566:0:o;41023:153::-;41081:10;-1:-1:-1;;;;;41095:5:0;41081:19;;41073:67;;;;-1:-1:-1;;;41073:67:0;;7346:2:1;41073:67:0;;;7328:21:1;7385:2;7365:18;;;7358:30;7424:34;7404:18;;;7397:62;-1:-1:-1;;;7475:18:1;;;7468:33;7518:19;;41073:67:0;7144:399:1;41073:67:0;41151:12;:17;;-1:-1:-1;;41151:17:0;;;;;;;;;;41023:153::o;23266:295::-;-1:-1:-1;;;;;23369:24:0;;15955:10;23369:24;;23361:62;;;;-1:-1:-1;;;23361:62:0;;11334:2:1;23361:62:0;;;11316:21:1;11373:2;11353:18;;;11346:30;11412:27;11392:18;;;11385:55;11457:18;;23361:62:0;11132:349:1;23361:62:0;15955:10;23436:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23436:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23436:53:0;;;;;;;;;;23505:48;;6868:41:1;;;23436:42:0;;15955:10;23505:48;;6841:18:1;23505:48:0;;;;;;;23266:295;;:::o;24461:285::-;24593:41;15955:10;24626:7;24593:18;:41::i;:::-;24585:103;;;;-1:-1:-1;;;24585:103:0;;;;;;;:::i;:::-;24699:39;24713:4;24719:2;24723:7;24732:5;24699:13;:39::i;:::-;24461:285;;;;:::o;38827:373::-;38889:10;-1:-1:-1;;;;;38903:5:0;38889:19;;;:41;;-1:-1:-1;38919:10:0;38912:18;;;;:6;:18;;;;;;;;38889:41;38881:98;;;;-1:-1:-1;;;38881:98:0;;7750:2:1;38881:98:0;;;7732:21:1;7789:2;7769:18;;;7762:30;7828:34;7808:18;;;7801:62;-1:-1:-1;;;7879:18:1;;;7872:42;7931:19;;38881:98:0;7548:408:1;38881:98:0;38999:11;;;;;;;38998:12;38990:78;;;;-1:-1:-1;;;38990:78:0;;8992:2:1;38990:78:0;;;8974:21:1;9031:2;9011:18;;;9004:30;9070:34;9050:18;;;9043:62;-1:-1:-1;;;9121:18:1;;;9114:51;9182:19;;38990:78:0;8790:417:1;38990:78:0;36076:4;39087:11;;:25;;39079:83;;;;-1:-1:-1;;;39079:83:0;;13328:2:1;39079:83:0;;;13310:21:1;13367:2;13347:18;;;13340:30;13406:34;13386:18;;;13379:62;-1:-1:-1;;;13457:18:1;;;13450:43;13510:19;;39079:83:0;13126:409:1;39079:83:0;39173:14;:19;;-1:-1:-1;;39173:19:0;;;;;;;;;;38827:373::o;36800:143::-;-1:-1:-1;;;;;36888:18:0;;36864:4;36888:18;;;:9;:18;;;;;;;;:47;;;;-1:-1:-1;;;;;;;36911:24:0;;;;;:15;:24;;;;;;;;36910:25;;36800:143::o;21857:360::-;26278:4;26302:16;;;:7;:16;;;;;;21930:13;;-1:-1:-1;;;;;26302:16:0;21956:76;;;;-1:-1:-1;;;21956:76:0;;17627:2:1;21956:76:0;;;17609:21:1;17666:2;17646:18;;;17639:30;17705:34;17685:18;;;17678:62;-1:-1:-1;;;17756:18:1;;;17749:45;17811:19;;21956:76:0;17425:411:1;21956:76:0;22045:21;22069:10;:8;:10::i;:::-;22045:34;;22121:1;22103:7;22097:21;:25;:112;;;;;;;;;;;;;;;;;22162:7;22171:18;:7;:16;:18::i;:::-;22145:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22097:112;22090:119;21857:360;-1:-1:-1;;;21857:360:0:o;30090:174::-;30165:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30165:29:0;-1:-1:-1;;;;;30165:29:0;;;;;;;;:24;;30219:23;30165:24;30219:14;:23::i;:::-;-1:-1:-1;;;;;30210:46:0;;;;;;;;;;;30090:174;;:::o;26507:348::-;26600:4;26302:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26302:16:0;26617:73;;;;-1:-1:-1;;;26617:73:0;;11688:2:1;26617:73:0;;;11670:21:1;11727:2;11707:18;;;11700:30;11766:34;11746:18;;;11739:62;-1:-1:-1;;;11817:18:1;;;11810:42;11869:19;;26617:73:0;11486:408:1;26617:73:0;26701:13;26717:23;26732:7;26717:14;:23::i;:::-;26701:39;;26770:5;-1:-1:-1;;;;;26759:16:0;:7;-1:-1:-1;;;;;26759:16:0;;:51;;;;26803:7;-1:-1:-1;;;;;26779:31:0;:20;26791:7;26779:11;:20::i;:::-;-1:-1:-1;;;;;26779:31:0;;26759:51;:87;;;-1:-1:-1;;;;;;23753:25:0;;;23729:4;23753:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26814:32;26751:96;26507:348;-1:-1:-1;;;;26507:348:0:o;29428:544::-;29553:4;-1:-1:-1;;;;;29526:31:0;:23;29541:7;29526:14;:23::i;:::-;-1:-1:-1;;;;;29526:31:0;;29518:85;;;;-1:-1:-1;;;29518:85:0;;17217:2:1;29518:85:0;;;17199:21:1;17256:2;17236:18;;;17229:30;17295:34;17275:18;;;17268:62;-1:-1:-1;;;17346:18:1;;;17339:39;17395:19;;29518:85:0;17015:405:1;29518:85:0;-1:-1:-1;;;;;29622:16:0;;29614:65;;;;-1:-1:-1;;;29614:65:0;;10929:2:1;29614:65:0;;;10911:21:1;10968:2;10948:18;;;10941:30;11007:34;10987:18;;;10980:62;-1:-1:-1;;;11058:18:1;;;11051:34;11102:19;;29614:65:0;10727:400:1;29614:65:0;29796:29;29813:1;29817:7;29796:8;:29::i;:::-;-1:-1:-1;;;;;29838:15:0;;;;;;:9;:15;;;;;:20;;29857:1;;29838:15;:20;;29857:1;;29838:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29869:13:0;;;;;;:9;:13;;;;;:18;;29886:1;;29869:13;:18;;29886:1;;29869:18;:::i;:::-;;;;-1:-1:-1;;29898:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29898:21:0;-1:-1:-1;;;;;29898:21:0;;;;;;;;;29937:27;;29898:16;;29937:27;;;;;;;29428:544;;;:::o;36696:96::-;36748:13;36781:3;36774:10;;;;;:::i;28120:382::-;-1:-1:-1;;;;;28200:16:0;;28192:61;;;;-1:-1:-1;;;28192:61:0;;15349:2:1;28192:61:0;;;15331:21:1;;;15368:18;;;15361:30;15427:34;15407:18;;;15400:62;15479:18;;28192:61:0;15147:356:1;28192:61:0;26278:4;26302:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26302:16:0;:30;28264:58;;;;-1:-1:-1;;;28264:58:0;;9414:2:1;28264:58:0;;;9396:21:1;9453:2;9433:18;;;9426:30;9492;9472:18;;;9465:58;9540:18;;28264:58:0;9212:352:1;28264:58:0;-1:-1:-1;;;;;28393:13:0;;;;;;:9;:13;;;;;:18;;28410:1;;28393:13;:18;;28410:1;;28393:18;:::i;:::-;;;;-1:-1:-1;;28422:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28422:21:0;-1:-1:-1;;;;;28422:21:0;;;;;;;;28461:33;;28422:16;;;28461:33;;28422:16;;28461:33;28120:382;;:::o;25628:272::-;25742:28;25752:4;25758:2;25762:7;25742:9;:28::i;:::-;25789:48;25812:4;25818:2;25822:7;25831:5;25789:22;:48::i;:::-;25781:111;;;;-1:-1:-1;;;25781:111:0;;;;;;;:::i;16528:723::-;16584:13;16805:10;16801:53;;-1:-1:-1;;16832:10:0;;;;;;;;;;;;-1:-1:-1;;;16832:10:0;;;;;16528:723::o;16801:53::-;16879:5;16864:12;16920:78;16927:9;;16920:78;;16953:8;;;;:::i;:::-;;-1:-1:-1;16976:10:0;;-1:-1:-1;16984:2:0;16976:10;;:::i;:::-;;;16920:78;;;17008:19;17040:6;17030:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17030:17:0;;17008:39;;17058:154;17065:10;;17058:154;;17092:11;17102:1;17092:11;;:::i;:::-;;-1:-1:-1;17161:10:0;17169:2;17161:5;:10;:::i;:::-;17148:24;;:2;:24;:::i;:::-;17135:39;;17118:6;17125;17118:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17118:56:0;;;;;;;;-1:-1:-1;17189:11:0;17198:2;17189:11;;:::i;:::-;;;17058:154;;30829:843;30950:4;-1:-1:-1;;;;;30976:13:0;;8361:20;8400:8;30972:693;;31012:72;;-1:-1:-1;;;31012:72:0;;-1:-1:-1;;;;;31012:36:0;;;;;:72;;15955:10;;31063:4;;31069:7;;31078:5;;31012:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31012:72:0;;;;;;;;-1:-1:-1;;31012:72:0;;;;;;;;;;;;:::i;:::-;;;31008:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31258:13:0;;31254:341;;31301:60;;-1:-1:-1;;;31301:60:0;;;;;;;:::i;31254:341::-;31545:6;31539:13;31530:6;31526:2;31522:15;31515:38;31008:602;-1:-1:-1;;;;;;31135:55:0;-1:-1:-1;;;31135:55:0;;-1:-1:-1;31128:62:0;;30972:693;-1:-1:-1;31649:4:0;30829:843;;;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:615::-;2893:6;2901;2954:2;2942:9;2933:7;2929:23;2925:32;2922:52;;;2970:1;2967;2960:12;2922:52;3010:9;2997:23;3039:18;3080:2;3072:6;3069:14;3066:34;;;3096:1;3093;3086:12;3066:34;3134:6;3123:9;3119:22;3109:32;;3179:7;3172:4;3168:2;3164:13;3160:27;3150:55;;3201:1;3198;3191:12;3150:55;3241:2;3228:16;3267:2;3259:6;3256:14;3253:34;;;3283:1;3280;3273:12;3253:34;3336:7;3331:2;3321:6;3318:1;3314:14;3310:2;3306:23;3302:32;3299:45;3296:65;;;3357:1;3354;3347:12;3296:65;3388:2;3380:11;;;;;3410:6;;-1:-1:-1;2807:615:1;;-1:-1:-1;;;;2807:615:1:o;3427:180::-;3483:6;3536:2;3524:9;3515:7;3511:23;3507:32;3504:52;;;3552:1;3549;3542:12;3504:52;3575:26;3591:9;3575:26;:::i;3612:245::-;3670:6;3723:2;3711:9;3702:7;3698:23;3694:32;3691:52;;;3739:1;3736;3729:12;3691:52;3778:9;3765:23;3797:30;3821:5;3797:30;:::i;3862:249::-;3931:6;3984:2;3972:9;3963:7;3959:23;3955:32;3952:52;;;4000:1;3997;3990:12;3952:52;4032:9;4026:16;4051:30;4075:5;4051:30;:::i;4116:180::-;4175:6;4228:2;4216:9;4207:7;4203:23;4199:32;4196:52;;;4244:1;4241;4234:12;4196:52;-1:-1:-1;4267:23:1;;4116:180;-1:-1:-1;4116:180:1:o;4301:248::-;4369:6;4377;4430:2;4418:9;4409:7;4405:23;4401:32;4398:52;;;4446:1;4443;4436:12;4398:52;-1:-1:-1;;4469:23:1;;;4539:2;4524:18;;;4511:32;;-1:-1:-1;4301:248:1:o;4554:257::-;4595:3;4633:5;4627:12;4660:6;4655:3;4648:19;4676:63;4732:6;4725:4;4720:3;4716:14;4709:4;4702:5;4698:16;4676:63;:::i;:::-;4793:2;4772:15;-1:-1:-1;;4768:29:1;4759:39;;;;4800:4;4755:50;;4554:257;-1:-1:-1;;4554:257:1:o;4816:470::-;4995:3;5033:6;5027:13;5049:53;5095:6;5090:3;5083:4;5075:6;5071:17;5049:53;:::i;:::-;5165:13;;5124:16;;;;5187:57;5165:13;5124:16;5221:4;5209:17;;5187:57;:::i;:::-;5260:20;;4816:470;-1:-1:-1;;;;4816:470:1:o;5499:488::-;-1:-1:-1;;;;;5768:15:1;;;5750:34;;5820:15;;5815:2;5800:18;;5793:43;5867:2;5852:18;;5845:34;;;5915:3;5910:2;5895:18;;5888:31;;;5693:4;;5936:45;;5961:19;;5953:6;5936:45;:::i;:::-;5928:53;5499:488;-1:-1:-1;;;;;;5499:488:1:o;5992:731::-;6210:2;6222:21;;;6292:13;;6195:18;;;6314:22;;;6162:4;;6389;;6367:2;6352:18;;;6416:15;;;6162:4;6459:195;6473:6;6470:1;6467:13;6459:195;;;6538:13;;-1:-1:-1;;;;;6534:39:1;6522:52;;6594:12;;;;6629:15;;;;6570:1;6488:9;6459:195;;;-1:-1:-1;;;6690:18:1;;6683:34;;;;6671:3;5992:731;-1:-1:-1;;5992:731:1:o;6920:219::-;7069:2;7058:9;7051:21;7032:4;7089:44;7129:2;7118:9;7114:18;7106:6;7089:44;:::i;7961:405::-;8163:2;8145:21;;;8202:2;8182:18;;;8175:30;8241:34;8236:2;8221:18;;8214:62;-1:-1:-1;;;8307:2:1;8292:18;;8285:39;8356:3;8341:19;;7961:405::o;8371:414::-;8573:2;8555:21;;;8612:2;8592:18;;;8585:30;8651:34;8646:2;8631:18;;8624:62;-1:-1:-1;;;8717:2:1;8702:18;;8695:48;8775:3;8760:19;;8371:414::o;9912:405::-;10114:2;10096:21;;;10153:2;10133:18;;;10126:30;10192:34;10187:2;10172:18;;10165:62;-1:-1:-1;;;10258:2:1;10243:18;;10236:39;10307:3;10292:19;;9912:405::o;19016:413::-;19218:2;19200:21;;;19257:2;19237:18;;;19230:30;19296:34;19291:2;19276:18;;19269:62;-1:-1:-1;;;19362:2:1;19347:18;;19340:47;19419:3;19404:19;;19016:413::o;20795:128::-;20835:3;20866:1;20862:6;20859:1;20856:13;20853:39;;;20872:18;;:::i;:::-;-1:-1:-1;20908:9:1;;20795:128::o;20928:120::-;20968:1;20994;20984:35;;20999:18;;:::i;:::-;-1:-1:-1;21033:9:1;;20928:120::o;21053:168::-;21093:7;21159:1;21155;21151:6;21147:14;21144:1;21141:21;21136:1;21129:9;21122:17;21118:45;21115:71;;;21166:18;;:::i;:::-;-1:-1:-1;21206:9:1;;21053:168::o;21226:125::-;21266:4;21294:1;21291;21288:8;21285:34;;;21299:18;;:::i;:::-;-1:-1:-1;21336:9:1;;21226:125::o;21356:258::-;21428:1;21438:113;21452:6;21449:1;21446:13;21438:113;;;21528:11;;;21522:18;21509:11;;;21502:39;21474:2;21467:10;21438:113;;;21569:6;21566:1;21563:13;21560:48;;;-1:-1:-1;;21604:1:1;21586:16;;21579:27;21356:258::o;21619:136::-;21658:3;21686:5;21676:39;;21695:18;;:::i;:::-;-1:-1:-1;;;21731:18:1;;21619:136::o;21760:380::-;21839:1;21835:12;;;;21882;;;21903:61;;21957:4;21949:6;21945:17;21935:27;;21903:61;22010:2;22002:6;21999:14;21979:18;21976:38;21973:161;;;22056:10;22051:3;22047:20;22044:1;22037:31;22091:4;22088:1;22081:15;22119:4;22116:1;22109:15;21973:161;;21760:380;;;:::o;22145:135::-;22184:3;-1:-1:-1;;22205:17:1;;22202:43;;;22225:18;;:::i;:::-;-1:-1:-1;22272:1:1;22261:13;;22145:135::o;22285:112::-;22317:1;22343;22333:35;;22348:18;;:::i;:::-;-1:-1:-1;22382:9:1;;22285:112::o;22402:127::-;22463:10;22458:3;22454:20;22451:1;22444:31;22494:4;22491:1;22484:15;22518:4;22515:1;22508:15;22534:127;22595:10;22590:3;22586:20;22583:1;22576:31;22626:4;22623:1;22616:15;22650:4;22647:1;22640:15;22666:127;22727:10;22722:3;22718:20;22715:1;22708:31;22758:4;22755:1;22748:15;22782:4;22779:1;22772:15;22798:127;22859:10;22854:3;22850:20;22847:1;22840:31;22890:4;22887:1;22880:15;22914:4;22911:1;22904:15;22930:131;-1:-1:-1;;;;;;23004:32:1;;22994:43;;22984:71;;23051:1;23048;23041:12

Swarm Source

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