ETH Price: $3,054.87 (+1.50%)
Gas: 4 Gwei

Token

Squiggles (SQ)
 

Overview

Max Total Supply

5,000 SQ

Holders

2,088

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
4 SQ
0xe1031a765778ec990c040bae8d698360a32851c5
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:
Squiggles

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-10
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        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;
    }
}


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


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


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


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


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

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


/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

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

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

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

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

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

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


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


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

}


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

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


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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


/**
 * @title Squiggles NFT Smart Contract
 */
contract Squiggles is ERC721A, Ownable {
    uint256 public AUCTION_MAX = 3000;
    uint256 public MAX_SUPPLY = 10000;
    string public baseURI = "";

    uint256 public auctionMax = 3;
    uint256 public whitelistMax = 1;
    uint256 public publicMax = 3;

    mapping(address => uint256) public auctionNum;
    mapping(address => uint256) public whitelistNum;
    mapping(address => uint256) public publicNum;

    bool public auctionActive = false;
    bool public whitelistActive = false;
    bool public publicActive = false;
    uint256 public auctionStartTime;

    uint256 public constant auctionStartPrice = 1 ether;
    uint256 public constant auctionEndPrice = 0.4 ether;
    uint256 public constant auctionPriceCurveLength = 240 minutes;
    uint256 public constant auctionDropInterval = 20 minutes;
    uint256 public constant auctionDropPerStep = (auctionStartPrice - auctionEndPrice) / (auctionPriceCurveLength / auctionDropInterval);

    uint256 public whitelistPrice = 0.4 ether;
    uint256 public publicPrice = 1 ether;

    address public signingAuthority = 0x0450E0181D7818ee4679BF06b3340eD306b93B19;

    constructor() ERC721A("Squiggles", "SQ") {}

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

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

    function reserve(address target, uint256 quantity) external onlyOwner {
        require(totalSupply() + quantity <= MAX_SUPPLY, "Squiggles/sold-out");

        _safeMint(target, quantity);
    }

    function batchReserve(address[] memory targets, uint256[] memory quantities) external onlyOwner {
        for (uint256 i = 0; i < targets.length; i++) {
            _safeMint(targets[i], quantities[i]);
        }
    }

    function setAuctionActive(bool newStatus) external onlyOwner {
        auctionActive = newStatus;

        if (newStatus) {
            auctionStartTime = block.timestamp;
        }
    }

    function setWhitelistActive(bool newStatus) external onlyOwner {
        whitelistActive = newStatus; 
    }

    function setPublicActive(bool newStatus) external onlyOwner {
        publicActive = newStatus;
    }

    function setPublicPrice(uint256 _price) external onlyOwner {
        publicPrice = _price;
    }

    function getAuctionPrice() public view returns (uint256) {
        if (block.timestamp < auctionStartTime) {
            return auctionStartPrice;
        }
        if (block.timestamp - auctionStartTime >= auctionPriceCurveLength) {
            return auctionEndPrice;
        } else {
            uint256 steps = (block.timestamp - auctionStartTime) / auctionDropInterval;
            return auctionStartPrice - (steps * auctionDropPerStep);
        }
    }

    function refundExtra(uint256 price) private {
        require(msg.value >= price, "Squiggles/insufficient-funds");

        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    function isValidMessage(uint8 v, bytes32 r, bytes32 s) internal view returns (bool) {
        bytes32 data = keccak256(abi.encodePacked(msg.sender));
        return signingAuthority == ecrecover(data, v, r, s);
    }

    function auctionBuy(uint256 quantity) external payable {
        require(tx.origin == msg.sender, "Squiggles/no-contracts");
        require(auctionActive, "Squiggles/sale-inactive");
        require(quantity > 0, "Squiggles/invalid-quantity");
        require(quantity + auctionNum[msg.sender] <= auctionMax, "Squiggles/exceeds-max");
        require(totalSupply() + quantity <= AUCTION_MAX, "Squiggles/sold-out");

        uint256 totalCost = getAuctionPrice() * quantity;
        refundExtra(totalCost);

        auctionNum[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

    function whitelistBuy(uint256 quantity, uint8 v, bytes32 r, bytes32 s) external payable {
        require(tx.origin == msg.sender, "Squiggles/no-contracts");
        require(whitelistActive, "Squiggles/sale-inactive");
        require(quantity > 0, "Squiggles/invalid-quantity");
        require(quantity + whitelistNum[msg.sender] <= whitelistMax, "Squiggles/exceeds-max");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Squiggles/sold-out");
        require(whitelistPrice * quantity == msg.value, "Squiggles/ether-mismatch");
        require(isValidMessage(v, r, s), "Squiggles/invalid-signature");

        whitelistNum[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

    function publicBuy(uint256 quantity) external payable {
        require(tx.origin == msg.sender, "Squiggles/no-contracts");
        require(publicActive, "Squiggles/sale-inactive");
        require(quantity > 0, "Squiggles/invalid-quantity");
        require(quantity + publicNum[msg.sender] <= publicMax, "Squiggles/exceeds-max");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Squiggles/sold-out");
        require(publicPrice * quantity == msg.value, "Squiggles/ether-mismatch");

        publicNum[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

    function withdrawToSender() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function withdraw() external onlyOwner {
        address[5] memory addresses = [
            0x25eDb46cBB7744De5507ebe50b5086D236B63073,
            0x0308539095797e6F562203C3d8F60Cae82566eBA,
            0xE38FF370893C583D341B1CE52D84b322A6f522fC,
            0x3E71870Eb50db68dc06c926705597571e2Dfb14F,
            0x96eF764778FdF3f831c65b90ee919dE050Caca72
        ];

        uint256[5] memory shares = [
            uint256(1),
            uint256(1),
            uint256(4),
            uint256(97),
            uint256(97)
        ];

        uint256 balance = address(this).balance;

        for (uint256 i = 0; i < addresses.length; i++) {
            uint256 amount = i == addresses.length - 1 ? address(this).balance : balance * shares[i] / 200;
            payable(addresses[i]).transfer(amount);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"AUCTION_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"auctionActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"auctionBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"auctionDropInterval","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionDropPerStep","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionEndPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"auctionNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionPriceCurveLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionStartPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auctionStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"targets","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"batchReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAuctionPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setAuctionActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_value","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setPublicActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setWhitelistActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signingAuthority","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"whitelistBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawToSender","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610bb8600955612710600a5560a06040819052600060808190526200002791600b9162000203565b506003600c8190556001600d55600e556012805462ffffff1916905567058d15e176280000601455670de0b6b3a7640000601555601680546001600160a01b031916730450e0181d7818ee4679bf06b3340ed306b93b191790553480156200008e57600080fd5b5060408051808201825260098152685371756967676c657360b81b60208083019190915282518084019093526002835261535160f01b9083015290620000db6301ffc9a760e01b62000129565b8151620000f090600290602085019062000203565b5080516200010690600390602084019062000203565b505050620001236200011d620001ad60201b60201c565b620001b1565b620002e6565b6001600160e01b03198082161415620001885760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015260640160405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200021190620002a9565b90600052602060002090601f01602090048101928262000235576000855562000280565b82601f106200025057805160ff191683800117855562000280565b8280016001018555821562000280579182015b828111156200028057825182559160200191906001019062000263565b506200028e92915062000292565b5090565b5b808211156200028e576000815560010162000293565b600181811c90821680620002be57607f821691505b60208210811415620002e057634e487b7160e01b600052602260045260246000fd5b50919050565b612d6780620002f66000396000f3fe60806040526004361061031a5760003560e01c806392228006116101ab578063c64d6888116100f7578063e985e9c511610095578063f243669b1161006f578063f243669b146108f4578063f2fde38b1461090a578063f7980b1c1461092a578063fc1a1c361461094057600080fd5b8063e985e9c51461087f578063eb54f9ec146108c8578063ed556250146108de57600080fd5b8063cc47a40b116100d1578063cc47a40b14610818578063d756985b14610838578063e527c6dd14610854578063e6fe34b31461086a57600080fd5b8063c64d6888146107ab578063c87b56dd146107d8578063c9edb3cc146107f857600080fd5b8063abcb0c0911610164578063bc629bf51161013e578063bc629bf514610742578063c0188b6b14610758578063c3b754dc1461076b578063c62752551461078b57600080fd5b8063abcb0c09146106fc578063ae47a1821461070f578063b88d4fde1461072257600080fd5b8063922280061461065b57806395d89b4114610675578063a04a6ac81461068a578063a22cb465146106a6578063a83bdc05146106c6578063a945bf80146106e657600080fd5b80634025b6bd1161026a5780636352211e11610223578063715018a6116101fd578063715018a6146105f25780638a9daf2b146106075780638aca408c1461061d5780638da5cb5b1461063d57600080fd5b80636352211e1461059d5780636c0360eb146105bd57806370a08231146105d257600080fd5b80634025b6bd146104ce57806342842e0e146104fb5780634bd25c6f1461051b5780634f6ccce71461053057806355f804b31461055057806361cf87ce1461057057600080fd5b806318160ddd116102d75780632f745c59116102b15780632f745c591461046357806332cb6b0c146104835780633ccfd60b146104995780633f2981cf146104ae57600080fd5b806318160ddd146104045780631869a4361461042357806323b872dd1461044357600080fd5b806301ffc9a71461031f57806302ce58131461035457806306fdde0314610373578063077af43014610395578063081812fc146103ac578063095ea7b3146103e4575b600080fd5b34801561032b57600080fd5b5061033f61033a36600461255d565b610956565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b5060125461033f90610100900460ff1681565b34801561037f57600080fd5b506103886109cc565b60405161034b91906125d2565b3480156103a157600080fd5b506103aa610a5e565b005b3480156103b857600080fd5b506103cc6103c73660046125e5565b610ac4565b6040516001600160a01b03909116815260200161034b565b3480156103f057600080fd5b506103aa6103ff36600461261a565b610b4f565b34801561041057600080fd5b506001545b60405190815260200161034b565b34801561042f57600080fd5b506103aa61043e36600461271a565b610c67565b34801561044f57600080fd5b506103aa61045e3660046127da565b610ceb565b34801561046f57600080fd5b5061041561047e36600461261a565b610cf6565b34801561048f57600080fd5b50610415600a5481565b3480156104a557600080fd5b506103aa610e5e565b3480156104ba57600080fd5b5060125461033f9062010000900460ff1681565b3480156104da57600080fd5b506104156104e9366004612816565b600f6020526000908152604090205481565b34801561050757600080fd5b506103aa6105163660046127da565b611009565b34801561052757600080fd5b50610415611024565b34801561053c57600080fd5b5061041561054b3660046125e5565b6110d3565b34801561055c57600080fd5b506103aa61056b366004612889565b61113c565b34801561057c57600080fd5b5061041561058b366004612816565b60106020526000908152604090205481565b3480156105a957600080fd5b506103cc6105b83660046125e5565b611179565b3480156105c957600080fd5b5061038861118b565b3480156105de57600080fd5b506104156105ed366004612816565b611219565b3480156105fe57600080fd5b506103aa6112aa565b34801561061357600080fd5b5061041561384081565b34801561062957600080fd5b506103aa6106383660046128e2565b6112e0565b34801561064957600080fd5b506008546001600160a01b03166103cc565b34801561066757600080fd5b5060125461033f9060ff1681565b34801561068157600080fd5b50610388611326565b34801561069657600080fd5b5061041567058d15e17628000081565b3480156106b257600080fd5b506103aa6106c13660046128fd565b611335565b3480156106d257600080fd5b506016546103cc906001600160a01b031681565b3480156106f257600080fd5b5061041560155481565b6103aa61070a366004612930565b6113fa565b6103aa61071d3660046125e5565b6115ad565b34801561072e57600080fd5b506103aa61073d366004612973565b6116cd565b34801561074e57600080fd5b50610415600d5481565b6103aa6107663660046125e5565b611700565b34801561077757600080fd5b506103aa6107863660046128e2565b611860565b34801561079757600080fd5b506103aa6107a63660046125e5565b6118a4565b3480156107b757600080fd5b506104156107c6366004612816565b60116020526000908152604090205481565b3480156107e457600080fd5b506103886107f33660046125e5565b6118d3565b34801561080457600080fd5b506103aa6108133660046128e2565b6119a1565b34801561082457600080fd5b506103aa61083336600461261a565b6119e9565b34801561084457600080fd5b50610415670de0b6b3a764000081565b34801561086057600080fd5b50610415600e5481565b34801561087657600080fd5b50610415611a52565b34801561088b57600080fd5b5061033f61089a3660046129ef565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108d457600080fd5b5061041560135481565b3480156108ea57600080fd5b5061041560095481565b34801561090057600080fd5b506104156104b081565b34801561091657600080fd5b506103aa610925366004612816565b611a87565b34801561093657600080fd5b50610415600c5481565b34801561094c57600080fd5b5061041560145481565b60006001600160e01b031982166380ac58cd60e01b148061098757506001600160e01b03198216635b5e139f60e01b145b806109a257506001600160e01b0319821663780e9d6360e01b145b806109c657506001600160e01b0319821660009081526020819052604090205460ff165b92915050565b6060600280546109db90612a19565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0790612a19565b8015610a545780601f10610a2957610100808354040283529160200191610a54565b820191906000526020600020905b815481529060010190602001808311610a3757829003601f168201915b5050505050905090565b6008546001600160a01b03163314610a915760405162461bcd60e51b8152600401610a8890612a54565b60405180910390fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610ac0573d6000803e3d6000fd5b5050565b6000610ad1826001541190565b610b335760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610a88565b506000908152600660205260409020546001600160a01b031690565b6000610b5a82611179565b9050806001600160a01b0316836001600160a01b03161415610bc95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a88565b336001600160a01b0382161480610be55750610be5813361089a565b610c575760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a88565b610c62838383611b1f565b505050565b6008546001600160a01b03163314610c915760405162461bcd60e51b8152600401610a8890612a54565b60005b8251811015610c6257610cd9838281518110610cb257610cb2612a89565b6020026020010151838381518110610ccc57610ccc612a89565b6020026020010151611b7b565b80610ce381612ab5565b915050610c94565b610c62838383611b95565b6000610d0183611219565b8210610d5a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a88565b6000610d6560015490565b905060008060005b83811015610dfe576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610dc057805192505b876001600160a01b0316836001600160a01b03161415610df55786841415610dee575093506109c692505050565b6001909301925b50600101610d6d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a88565b6008546001600160a01b03163314610e885760405162461bcd60e51b8152600401610a8890612a54565b6040805160a080820183527325edb46cbb7744de5507ebe50b5086d236b630738252730308539095797e6f562203c3d8f60cae82566eba60208084019190915273e38ff370893c583d341b1ce52d84b322a6f522fc83850152733e71870eb50db68dc06c926705597571e2dfb14f6060808501919091527396ef764778fdf3f831c65b90ee919de050caca72608080860191909152855193840186526001808552928401929092526004948301949094526061938201849052810192909252904760005b6005811015611003576000610f6360016005612ad0565b8214610f9b5760c8848360058110610f7d57610f7d612a89565b6020020151610f8c9085612ae7565b610f969190612b1c565b610f9d565b475b9050848260058110610fb157610fb1612a89565b60200201516001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610fee573d6000803e3d6000fd5b50508080610ffb90612ab5565b915050610f4c565b50505050565b610c62838383604051806020016040528060008152506116cd565b600060135442101561103d5750670de0b6b3a764000090565b6138406013544261104e9190612ad0565b10611060575067058d15e17628000090565b60006104b0601354426110739190612ad0565b61107d9190612b1c565b905061108d6104b0613840612b1c565b6110a767058d15e176280000670de0b6b3a7640000612ad0565b6110b19190612b1c565b6110bb9082612ae7565b6110cd90670de0b6b3a7640000612ad0565b91505090565b60006110de60015490565b82106111385760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a88565b5090565b6008546001600160a01b031633146111665760405162461bcd60e51b8152600401610a8890612a54565b8051610ac090600b9060208401906124b7565b600061118482611e7a565b5192915050565b600b805461119890612a19565b80601f01602080910402602001604051908101604052809291908181526020018280546111c490612a19565b80156112115780601f106111e657610100808354040283529160200191611211565b820191906000526020600020905b8154815290600101906020018083116111f457829003601f168201915b505050505081565b60006001600160a01b0382166112855760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a88565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6008546001600160a01b031633146112d45760405162461bcd60e51b8152600401610a8890612a54565b6112de6000611f51565b565b6008546001600160a01b0316331461130a5760405162461bcd60e51b8152600401610a8890612a54565b60128054911515620100000262ff000019909216919091179055565b6060600380546109db90612a19565b6001600160a01b03821633141561138e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a88565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3233146114195760405162461bcd60e51b8152600401610a8890612b30565b601254610100900460ff166114405760405162461bcd60e51b8152600401610a8890612b60565b600084116114605760405162461bcd60e51b8152600401610a8890612b97565b600d543360009081526010602052604090205461147d9086612bce565b111561149b5760405162461bcd60e51b8152600401610a8890612be6565b600a54846114a860015490565b6114b29190612bce565b11156114d05760405162461bcd60e51b8152600401610a8890612c15565b34846014546114df9190612ae7565b146115275760405162461bcd60e51b81526020600482015260186024820152770a6e2ead2ceced8cae65ecae8d0cae45adad2e6dac2e8c6d60431b6044820152606401610a88565b611532838383611fa3565b61157e5760405162461bcd60e51b815260206004820152601b60248201527f5371756967676c65732f696e76616c69642d7369676e617475726500000000006044820152606401610a88565b336000908152601060205260408120805486929061159d908490612bce565b9091555061100390503385611b7b565b3233146115cc5760405162461bcd60e51b8152600401610a8890612b30565b60125460ff166115ee5760405162461bcd60e51b8152600401610a8890612b60565b6000811161160e5760405162461bcd60e51b8152600401610a8890612b97565b600c54336000908152600f602052604090205461162b9083612bce565b11156116495760405162461bcd60e51b8152600401610a8890612be6565b6009548161165660015490565b6116609190612bce565b111561167e5760405162461bcd60e51b8152600401610a8890612c15565b600081611689611024565b6116939190612ae7565b905061169e81612053565b336000908152600f6020526040812080548492906116bd908490612bce565b90915550610ac090503383611b7b565b6116d8848484611b95565b6116e4848484846120e1565b6110035760405162461bcd60e51b8152600401610a8890612c41565b32331461171f5760405162461bcd60e51b8152600401610a8890612b30565b60125462010000900460ff166117475760405162461bcd60e51b8152600401610a8890612b60565b600081116117675760405162461bcd60e51b8152600401610a8890612b97565b600e54336000908152601160205260409020546117849083612bce565b11156117a25760405162461bcd60e51b8152600401610a8890612be6565b600a54816117af60015490565b6117b99190612bce565b11156117d75760405162461bcd60e51b8152600401610a8890612c15565b34816015546117e69190612ae7565b1461182e5760405162461bcd60e51b81526020600482015260186024820152770a6e2ead2ceced8cae65ecae8d0cae45adad2e6dac2e8c6d60431b6044820152606401610a88565b336000908152601160205260408120805483929061184d908490612bce565b9091555061185d90503382611b7b565b50565b6008546001600160a01b0316331461188a5760405162461bcd60e51b8152600401610a8890612a54565b601280549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146118ce5760405162461bcd60e51b8152600401610a8890612a54565b601555565b60606118e0826001541190565b6119445760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a88565b600061194e6121e0565b905080516000141561196f576040518060200160405280600081525061199a565b80611979846121ef565b60405160200161198a929190612c94565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146119cb5760405162461bcd60e51b8152600401610a8890612a54565b6012805460ff1916821580159190911790915561185d574260135550565b6008546001600160a01b03163314611a135760405162461bcd60e51b8152600401610a8890612a54565b600a5481611a2060015490565b611a2a9190612bce565b1115611a485760405162461bcd60e51b8152600401610a8890612c15565b610ac08282611b7b565b611a606104b0613840612b1c565b611a7a67058d15e176280000670de0b6b3a7640000612ad0565b611a849190612b1c565b81565b6008546001600160a01b03163314611ab15760405162461bcd60e51b8152600401610a8890612a54565b6001600160a01b038116611b165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a88565b61185d81611f51565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610ac08282604051806020016040528060008152506122ed565b6000611ba082611e7a565b80519091506000906001600160a01b0316336001600160a01b03161480611bd7575033611bcc84610ac4565b6001600160a01b0316145b80611be957508151611be9903361089a565b905080611c535760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a88565b846001600160a01b031682600001516001600160a01b031614611cc75760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a88565b6001600160a01b038416611d2b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a88565b611d3b6000848460000151611b1f565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611e3057611de3816001541190565b15611e30578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611e99826001541190565b611ef85760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a88565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611f47579392505050565b5060001901611efa565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160408051601f1981840301815282825280516020918201206000845290830180835281905260ff8816918301919091526060820186905260808201859052915060019060a0016020604051602081039080840390855afa15801561202e573d6000803e3d6000fd5b5050604051601f1901516016546001600160a01b039182169116149695505050505050565b803410156120a35760405162461bcd60e51b815260206004820152601c60248201527f5371756967676c65732f696e73756666696369656e742d66756e6473000000006044820152606401610a88565b8034111561185d57336108fc6120b98334612ad0565b6040518115909202916000818181858888f19350505050158015610ac0573d6000803e3d6000fd5b60006001600160a01b0384163b156121d457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612125903390899088908890600401612cc3565b6020604051808303816000875af1925050508015612160575060408051601f3d908101601f1916820190925261215d91810190612d00565b60015b6121ba573d80801561218e576040519150601f19603f3d011682016040523d82523d6000602084013e612193565b606091505b5080516121b25760405162461bcd60e51b8152600401610a8890612c41565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121d8565b5060015b949350505050565b6060600b80546109db90612a19565b6060816122135750506040805180820190915260018152600360fc1b602082015290565b8160005b811561223d578061222781612ab5565b91506122369050600a83612b1c565b9150612217565b60008167ffffffffffffffff81111561225857612258612644565b6040519080825280601f01601f191660200182016040528015612282576020820181803683370190505b5090505b84156121d857612297600183612ad0565b91506122a4600a86612d1d565b6122af906030612bce565b60f81b8183815181106122c4576122c4612a89565b60200101906001600160f81b031916908160001a9053506122e6600a86612b1c565b9450612286565b610c62838383600180546001600160a01b0385166123575760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a88565b836123b55760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610a88565b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156124ae5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156124a25761248660008884886120e1565b6124a25760405162461bcd60e51b8152600401610a8890612c41565b60019182019101612433565b50600155611e73565b8280546124c390612a19565b90600052602060002090601f0160209004810192826124e5576000855561252b565b82601f106124fe57805160ff191683800117855561252b565b8280016001018555821561252b579182015b8281111561252b578251825591602001919060010190612510565b506111389291505b808211156111385760008155600101612533565b6001600160e01b03198116811461185d57600080fd5b60006020828403121561256f57600080fd5b813561199a81612547565b60005b8381101561259557818101518382015260200161257d565b838111156110035750506000910152565b600081518084526125be81602086016020860161257a565b601f01601f19169290920160200192915050565b60208152600061199a60208301846125a6565b6000602082840312156125f757600080fd5b5035919050565b80356001600160a01b038116811461261557600080fd5b919050565b6000806040838503121561262d57600080fd5b612636836125fe565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561268357612683612644565b604052919050565b600067ffffffffffffffff8211156126a5576126a5612644565b5060051b60200190565b600082601f8301126126c057600080fd5b813560206126d56126d08361268b565b61265a565b82815260059290921b840181019181810190868411156126f457600080fd5b8286015b8481101561270f57803583529183019183016126f8565b509695505050505050565b6000806040838503121561272d57600080fd5b823567ffffffffffffffff8082111561274557600080fd5b818501915085601f83011261275957600080fd5b813560206127696126d08361268b565b82815260059290921b8401810191818101908984111561278857600080fd5b948201945b838610156127ad5761279e866125fe565b8252948201949082019061278d565b965050860135925050808211156127c357600080fd5b506127d0858286016126af565b9150509250929050565b6000806000606084860312156127ef57600080fd5b6127f8846125fe565b9250612806602085016125fe565b9150604084013590509250925092565b60006020828403121561282857600080fd5b61199a826125fe565b600067ffffffffffffffff83111561284b5761284b612644565b61285e601f8401601f191660200161265a565b905082815283838301111561287257600080fd5b828260208301376000602084830101529392505050565b60006020828403121561289b57600080fd5b813567ffffffffffffffff8111156128b257600080fd5b8201601f810184136128c357600080fd5b6121d884823560208401612831565b8035801515811461261557600080fd5b6000602082840312156128f457600080fd5b61199a826128d2565b6000806040838503121561291057600080fd5b612919836125fe565b9150612927602084016128d2565b90509250929050565b6000806000806080858703121561294657600080fd5b84359350602085013560ff8116811461295e57600080fd5b93969395505050506040820135916060013590565b6000806000806080858703121561298957600080fd5b612992856125fe565b93506129a0602086016125fe565b925060408501359150606085013567ffffffffffffffff8111156129c357600080fd5b8501601f810187136129d457600080fd5b6129e387823560208401612831565b91505092959194509250565b60008060408385031215612a0257600080fd5b612a0b836125fe565b9150612927602084016125fe565b600181811c90821680612a2d57607f821691505b60208210811415612a4e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612ac957612ac9612a9f565b5060010190565b600082821015612ae257612ae2612a9f565b500390565b6000816000190483118215151615612b0157612b01612a9f565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612b2b57612b2b612b06565b500490565b6020808252601690820152755371756967676c65732f6e6f2d636f6e74726163747360501b604082015260600190565b60208082526017908201527f5371756967676c65732f73616c652d696e616374697665000000000000000000604082015260600190565b6020808252601a908201527f5371756967676c65732f696e76616c69642d7175616e74697479000000000000604082015260600190565b60008219821115612be157612be1612a9f565b500190565b6020808252601590820152740a6e2ead2ceced8cae65ecaf0c6cacac8e65adac2f605b1b604082015260600190565b60208082526012908201527114dc5d5a59d9db195ccbdcdbdb190b5bdd5d60721b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612ca681846020880161257a565b835190830190612cba81836020880161257a565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cf6908301846125a6565b9695505050505050565b600060208284031215612d1257600080fd5b815161199a81612547565b600082612d2c57612d2c612b06565b50069056fea26469706673582212205e15f8314b2e9130ec0c204e03bac4897e28e9834cb2e30ac927b89c98db10de64736f6c634300080b0033

Deployed Bytecode

0x60806040526004361061031a5760003560e01c806392228006116101ab578063c64d6888116100f7578063e985e9c511610095578063f243669b1161006f578063f243669b146108f4578063f2fde38b1461090a578063f7980b1c1461092a578063fc1a1c361461094057600080fd5b8063e985e9c51461087f578063eb54f9ec146108c8578063ed556250146108de57600080fd5b8063cc47a40b116100d1578063cc47a40b14610818578063d756985b14610838578063e527c6dd14610854578063e6fe34b31461086a57600080fd5b8063c64d6888146107ab578063c87b56dd146107d8578063c9edb3cc146107f857600080fd5b8063abcb0c0911610164578063bc629bf51161013e578063bc629bf514610742578063c0188b6b14610758578063c3b754dc1461076b578063c62752551461078b57600080fd5b8063abcb0c09146106fc578063ae47a1821461070f578063b88d4fde1461072257600080fd5b8063922280061461065b57806395d89b4114610675578063a04a6ac81461068a578063a22cb465146106a6578063a83bdc05146106c6578063a945bf80146106e657600080fd5b80634025b6bd1161026a5780636352211e11610223578063715018a6116101fd578063715018a6146105f25780638a9daf2b146106075780638aca408c1461061d5780638da5cb5b1461063d57600080fd5b80636352211e1461059d5780636c0360eb146105bd57806370a08231146105d257600080fd5b80634025b6bd146104ce57806342842e0e146104fb5780634bd25c6f1461051b5780634f6ccce71461053057806355f804b31461055057806361cf87ce1461057057600080fd5b806318160ddd116102d75780632f745c59116102b15780632f745c591461046357806332cb6b0c146104835780633ccfd60b146104995780633f2981cf146104ae57600080fd5b806318160ddd146104045780631869a4361461042357806323b872dd1461044357600080fd5b806301ffc9a71461031f57806302ce58131461035457806306fdde0314610373578063077af43014610395578063081812fc146103ac578063095ea7b3146103e4575b600080fd5b34801561032b57600080fd5b5061033f61033a36600461255d565b610956565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b5060125461033f90610100900460ff1681565b34801561037f57600080fd5b506103886109cc565b60405161034b91906125d2565b3480156103a157600080fd5b506103aa610a5e565b005b3480156103b857600080fd5b506103cc6103c73660046125e5565b610ac4565b6040516001600160a01b03909116815260200161034b565b3480156103f057600080fd5b506103aa6103ff36600461261a565b610b4f565b34801561041057600080fd5b506001545b60405190815260200161034b565b34801561042f57600080fd5b506103aa61043e36600461271a565b610c67565b34801561044f57600080fd5b506103aa61045e3660046127da565b610ceb565b34801561046f57600080fd5b5061041561047e36600461261a565b610cf6565b34801561048f57600080fd5b50610415600a5481565b3480156104a557600080fd5b506103aa610e5e565b3480156104ba57600080fd5b5060125461033f9062010000900460ff1681565b3480156104da57600080fd5b506104156104e9366004612816565b600f6020526000908152604090205481565b34801561050757600080fd5b506103aa6105163660046127da565b611009565b34801561052757600080fd5b50610415611024565b34801561053c57600080fd5b5061041561054b3660046125e5565b6110d3565b34801561055c57600080fd5b506103aa61056b366004612889565b61113c565b34801561057c57600080fd5b5061041561058b366004612816565b60106020526000908152604090205481565b3480156105a957600080fd5b506103cc6105b83660046125e5565b611179565b3480156105c957600080fd5b5061038861118b565b3480156105de57600080fd5b506104156105ed366004612816565b611219565b3480156105fe57600080fd5b506103aa6112aa565b34801561061357600080fd5b5061041561384081565b34801561062957600080fd5b506103aa6106383660046128e2565b6112e0565b34801561064957600080fd5b506008546001600160a01b03166103cc565b34801561066757600080fd5b5060125461033f9060ff1681565b34801561068157600080fd5b50610388611326565b34801561069657600080fd5b5061041567058d15e17628000081565b3480156106b257600080fd5b506103aa6106c13660046128fd565b611335565b3480156106d257600080fd5b506016546103cc906001600160a01b031681565b3480156106f257600080fd5b5061041560155481565b6103aa61070a366004612930565b6113fa565b6103aa61071d3660046125e5565b6115ad565b34801561072e57600080fd5b506103aa61073d366004612973565b6116cd565b34801561074e57600080fd5b50610415600d5481565b6103aa6107663660046125e5565b611700565b34801561077757600080fd5b506103aa6107863660046128e2565b611860565b34801561079757600080fd5b506103aa6107a63660046125e5565b6118a4565b3480156107b757600080fd5b506104156107c6366004612816565b60116020526000908152604090205481565b3480156107e457600080fd5b506103886107f33660046125e5565b6118d3565b34801561080457600080fd5b506103aa6108133660046128e2565b6119a1565b34801561082457600080fd5b506103aa61083336600461261a565b6119e9565b34801561084457600080fd5b50610415670de0b6b3a764000081565b34801561086057600080fd5b50610415600e5481565b34801561087657600080fd5b50610415611a52565b34801561088b57600080fd5b5061033f61089a3660046129ef565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108d457600080fd5b5061041560135481565b3480156108ea57600080fd5b5061041560095481565b34801561090057600080fd5b506104156104b081565b34801561091657600080fd5b506103aa610925366004612816565b611a87565b34801561093657600080fd5b50610415600c5481565b34801561094c57600080fd5b5061041560145481565b60006001600160e01b031982166380ac58cd60e01b148061098757506001600160e01b03198216635b5e139f60e01b145b806109a257506001600160e01b0319821663780e9d6360e01b145b806109c657506001600160e01b0319821660009081526020819052604090205460ff165b92915050565b6060600280546109db90612a19565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0790612a19565b8015610a545780601f10610a2957610100808354040283529160200191610a54565b820191906000526020600020905b815481529060010190602001808311610a3757829003601f168201915b5050505050905090565b6008546001600160a01b03163314610a915760405162461bcd60e51b8152600401610a8890612a54565b60405180910390fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610ac0573d6000803e3d6000fd5b5050565b6000610ad1826001541190565b610b335760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610a88565b506000908152600660205260409020546001600160a01b031690565b6000610b5a82611179565b9050806001600160a01b0316836001600160a01b03161415610bc95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610a88565b336001600160a01b0382161480610be55750610be5813361089a565b610c575760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a88565b610c62838383611b1f565b505050565b6008546001600160a01b03163314610c915760405162461bcd60e51b8152600401610a8890612a54565b60005b8251811015610c6257610cd9838281518110610cb257610cb2612a89565b6020026020010151838381518110610ccc57610ccc612a89565b6020026020010151611b7b565b80610ce381612ab5565b915050610c94565b610c62838383611b95565b6000610d0183611219565b8210610d5a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610a88565b6000610d6560015490565b905060008060005b83811015610dfe576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610dc057805192505b876001600160a01b0316836001600160a01b03161415610df55786841415610dee575093506109c692505050565b6001909301925b50600101610d6d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610a88565b6008546001600160a01b03163314610e885760405162461bcd60e51b8152600401610a8890612a54565b6040805160a080820183527325edb46cbb7744de5507ebe50b5086d236b630738252730308539095797e6f562203c3d8f60cae82566eba60208084019190915273e38ff370893c583d341b1ce52d84b322a6f522fc83850152733e71870eb50db68dc06c926705597571e2dfb14f6060808501919091527396ef764778fdf3f831c65b90ee919de050caca72608080860191909152855193840186526001808552928401929092526004948301949094526061938201849052810192909252904760005b6005811015611003576000610f6360016005612ad0565b8214610f9b5760c8848360058110610f7d57610f7d612a89565b6020020151610f8c9085612ae7565b610f969190612b1c565b610f9d565b475b9050848260058110610fb157610fb1612a89565b60200201516001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610fee573d6000803e3d6000fd5b50508080610ffb90612ab5565b915050610f4c565b50505050565b610c62838383604051806020016040528060008152506116cd565b600060135442101561103d5750670de0b6b3a764000090565b6138406013544261104e9190612ad0565b10611060575067058d15e17628000090565b60006104b0601354426110739190612ad0565b61107d9190612b1c565b905061108d6104b0613840612b1c565b6110a767058d15e176280000670de0b6b3a7640000612ad0565b6110b19190612b1c565b6110bb9082612ae7565b6110cd90670de0b6b3a7640000612ad0565b91505090565b60006110de60015490565b82106111385760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610a88565b5090565b6008546001600160a01b031633146111665760405162461bcd60e51b8152600401610a8890612a54565b8051610ac090600b9060208401906124b7565b600061118482611e7a565b5192915050565b600b805461119890612a19565b80601f01602080910402602001604051908101604052809291908181526020018280546111c490612a19565b80156112115780601f106111e657610100808354040283529160200191611211565b820191906000526020600020905b8154815290600101906020018083116111f457829003601f168201915b505050505081565b60006001600160a01b0382166112855760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610a88565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6008546001600160a01b031633146112d45760405162461bcd60e51b8152600401610a8890612a54565b6112de6000611f51565b565b6008546001600160a01b0316331461130a5760405162461bcd60e51b8152600401610a8890612a54565b60128054911515620100000262ff000019909216919091179055565b6060600380546109db90612a19565b6001600160a01b03821633141561138e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a88565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3233146114195760405162461bcd60e51b8152600401610a8890612b30565b601254610100900460ff166114405760405162461bcd60e51b8152600401610a8890612b60565b600084116114605760405162461bcd60e51b8152600401610a8890612b97565b600d543360009081526010602052604090205461147d9086612bce565b111561149b5760405162461bcd60e51b8152600401610a8890612be6565b600a54846114a860015490565b6114b29190612bce565b11156114d05760405162461bcd60e51b8152600401610a8890612c15565b34846014546114df9190612ae7565b146115275760405162461bcd60e51b81526020600482015260186024820152770a6e2ead2ceced8cae65ecae8d0cae45adad2e6dac2e8c6d60431b6044820152606401610a88565b611532838383611fa3565b61157e5760405162461bcd60e51b815260206004820152601b60248201527f5371756967676c65732f696e76616c69642d7369676e617475726500000000006044820152606401610a88565b336000908152601060205260408120805486929061159d908490612bce565b9091555061100390503385611b7b565b3233146115cc5760405162461bcd60e51b8152600401610a8890612b30565b60125460ff166115ee5760405162461bcd60e51b8152600401610a8890612b60565b6000811161160e5760405162461bcd60e51b8152600401610a8890612b97565b600c54336000908152600f602052604090205461162b9083612bce565b11156116495760405162461bcd60e51b8152600401610a8890612be6565b6009548161165660015490565b6116609190612bce565b111561167e5760405162461bcd60e51b8152600401610a8890612c15565b600081611689611024565b6116939190612ae7565b905061169e81612053565b336000908152600f6020526040812080548492906116bd908490612bce565b90915550610ac090503383611b7b565b6116d8848484611b95565b6116e4848484846120e1565b6110035760405162461bcd60e51b8152600401610a8890612c41565b32331461171f5760405162461bcd60e51b8152600401610a8890612b30565b60125462010000900460ff166117475760405162461bcd60e51b8152600401610a8890612b60565b600081116117675760405162461bcd60e51b8152600401610a8890612b97565b600e54336000908152601160205260409020546117849083612bce565b11156117a25760405162461bcd60e51b8152600401610a8890612be6565b600a54816117af60015490565b6117b99190612bce565b11156117d75760405162461bcd60e51b8152600401610a8890612c15565b34816015546117e69190612ae7565b1461182e5760405162461bcd60e51b81526020600482015260186024820152770a6e2ead2ceced8cae65ecae8d0cae45adad2e6dac2e8c6d60431b6044820152606401610a88565b336000908152601160205260408120805483929061184d908490612bce565b9091555061185d90503382611b7b565b50565b6008546001600160a01b0316331461188a5760405162461bcd60e51b8152600401610a8890612a54565b601280549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146118ce5760405162461bcd60e51b8152600401610a8890612a54565b601555565b60606118e0826001541190565b6119445760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a88565b600061194e6121e0565b905080516000141561196f576040518060200160405280600081525061199a565b80611979846121ef565b60405160200161198a929190612c94565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146119cb5760405162461bcd60e51b8152600401610a8890612a54565b6012805460ff1916821580159190911790915561185d574260135550565b6008546001600160a01b03163314611a135760405162461bcd60e51b8152600401610a8890612a54565b600a5481611a2060015490565b611a2a9190612bce565b1115611a485760405162461bcd60e51b8152600401610a8890612c15565b610ac08282611b7b565b611a606104b0613840612b1c565b611a7a67058d15e176280000670de0b6b3a7640000612ad0565b611a849190612b1c565b81565b6008546001600160a01b03163314611ab15760405162461bcd60e51b8152600401610a8890612a54565b6001600160a01b038116611b165760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a88565b61185d81611f51565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610ac08282604051806020016040528060008152506122ed565b6000611ba082611e7a565b80519091506000906001600160a01b0316336001600160a01b03161480611bd7575033611bcc84610ac4565b6001600160a01b0316145b80611be957508151611be9903361089a565b905080611c535760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610a88565b846001600160a01b031682600001516001600160a01b031614611cc75760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610a88565b6001600160a01b038416611d2b5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610a88565b611d3b6000848460000151611b1f565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611e3057611de3816001541190565b15611e30578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611e99826001541190565b611ef85760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610a88565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611f47579392505050565b5060001901611efa565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160408051601f1981840301815282825280516020918201206000845290830180835281905260ff8816918301919091526060820186905260808201859052915060019060a0016020604051602081039080840390855afa15801561202e573d6000803e3d6000fd5b5050604051601f1901516016546001600160a01b039182169116149695505050505050565b803410156120a35760405162461bcd60e51b815260206004820152601c60248201527f5371756967676c65732f696e73756666696369656e742d66756e6473000000006044820152606401610a88565b8034111561185d57336108fc6120b98334612ad0565b6040518115909202916000818181858888f19350505050158015610ac0573d6000803e3d6000fd5b60006001600160a01b0384163b156121d457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612125903390899088908890600401612cc3565b6020604051808303816000875af1925050508015612160575060408051601f3d908101601f1916820190925261215d91810190612d00565b60015b6121ba573d80801561218e576040519150601f19603f3d011682016040523d82523d6000602084013e612193565b606091505b5080516121b25760405162461bcd60e51b8152600401610a8890612c41565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121d8565b5060015b949350505050565b6060600b80546109db90612a19565b6060816122135750506040805180820190915260018152600360fc1b602082015290565b8160005b811561223d578061222781612ab5565b91506122369050600a83612b1c565b9150612217565b60008167ffffffffffffffff81111561225857612258612644565b6040519080825280601f01601f191660200182016040528015612282576020820181803683370190505b5090505b84156121d857612297600183612ad0565b91506122a4600a86612d1d565b6122af906030612bce565b60f81b8183815181106122c4576122c4612a89565b60200101906001600160f81b031916908160001a9053506122e6600a86612b1c565b9450612286565b610c62838383600180546001600160a01b0385166123575760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610a88565b836123b55760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610a88565b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b858110156124ae5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156124a25761248660008884886120e1565b6124a25760405162461bcd60e51b8152600401610a8890612c41565b60019182019101612433565b50600155611e73565b8280546124c390612a19565b90600052602060002090601f0160209004810192826124e5576000855561252b565b82601f106124fe57805160ff191683800117855561252b565b8280016001018555821561252b579182015b8281111561252b578251825591602001919060010190612510565b506111389291505b808211156111385760008155600101612533565b6001600160e01b03198116811461185d57600080fd5b60006020828403121561256f57600080fd5b813561199a81612547565b60005b8381101561259557818101518382015260200161257d565b838111156110035750506000910152565b600081518084526125be81602086016020860161257a565b601f01601f19169290920160200192915050565b60208152600061199a60208301846125a6565b6000602082840312156125f757600080fd5b5035919050565b80356001600160a01b038116811461261557600080fd5b919050565b6000806040838503121561262d57600080fd5b612636836125fe565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561268357612683612644565b604052919050565b600067ffffffffffffffff8211156126a5576126a5612644565b5060051b60200190565b600082601f8301126126c057600080fd5b813560206126d56126d08361268b565b61265a565b82815260059290921b840181019181810190868411156126f457600080fd5b8286015b8481101561270f57803583529183019183016126f8565b509695505050505050565b6000806040838503121561272d57600080fd5b823567ffffffffffffffff8082111561274557600080fd5b818501915085601f83011261275957600080fd5b813560206127696126d08361268b565b82815260059290921b8401810191818101908984111561278857600080fd5b948201945b838610156127ad5761279e866125fe565b8252948201949082019061278d565b965050860135925050808211156127c357600080fd5b506127d0858286016126af565b9150509250929050565b6000806000606084860312156127ef57600080fd5b6127f8846125fe565b9250612806602085016125fe565b9150604084013590509250925092565b60006020828403121561282857600080fd5b61199a826125fe565b600067ffffffffffffffff83111561284b5761284b612644565b61285e601f8401601f191660200161265a565b905082815283838301111561287257600080fd5b828260208301376000602084830101529392505050565b60006020828403121561289b57600080fd5b813567ffffffffffffffff8111156128b257600080fd5b8201601f810184136128c357600080fd5b6121d884823560208401612831565b8035801515811461261557600080fd5b6000602082840312156128f457600080fd5b61199a826128d2565b6000806040838503121561291057600080fd5b612919836125fe565b9150612927602084016128d2565b90509250929050565b6000806000806080858703121561294657600080fd5b84359350602085013560ff8116811461295e57600080fd5b93969395505050506040820135916060013590565b6000806000806080858703121561298957600080fd5b612992856125fe565b93506129a0602086016125fe565b925060408501359150606085013567ffffffffffffffff8111156129c357600080fd5b8501601f810187136129d457600080fd5b6129e387823560208401612831565b91505092959194509250565b60008060408385031215612a0257600080fd5b612a0b836125fe565b9150612927602084016125fe565b600181811c90821680612a2d57607f821691505b60208210811415612a4e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612ac957612ac9612a9f565b5060010190565b600082821015612ae257612ae2612a9f565b500390565b6000816000190483118215151615612b0157612b01612a9f565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612b2b57612b2b612b06565b500490565b6020808252601690820152755371756967676c65732f6e6f2d636f6e74726163747360501b604082015260600190565b60208082526017908201527f5371756967676c65732f73616c652d696e616374697665000000000000000000604082015260600190565b6020808252601a908201527f5371756967676c65732f696e76616c69642d7175616e74697479000000000000604082015260600190565b60008219821115612be157612be1612a9f565b500190565b6020808252601590820152740a6e2ead2ceced8cae65ecaf0c6cacac8e65adac2f605b1b604082015260600190565b60208082526012908201527114dc5d5a59d9db195ccbdcdbdb190b5bdd5d60721b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612ca681846020880161257a565b835190830190612cba81836020880161257a565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cf6908301846125a6565b9695505050505050565b600060208284031215612d1257600080fd5b815161199a81612547565b600082612d2c57612d2c612b06565b50069056fea26469706673582212205e15f8314b2e9130ec0c204e03bac4897e28e9834cb2e30ac927b89c98db10de64736f6c634300080b0033

Deployed Bytecode Sourcemap

46605:6288:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31040:372;;;;;;;;;;-1:-1:-1;31040:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;31040:372:0;;;;;;;;47076:35;;;;;;;;;;-1:-1:-1;47076:35:0;;;;;;;;;;;32926:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;51882:153::-;;;;;;;;;;;;;:::i;:::-;;34488:214;;;;;;;;;;-1:-1:-1;34488:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;34488:214:0;1528:203:1;34009:413:0;;;;;;;;;;-1:-1:-1;34009:413:0;;;;;:::i;:::-;;:::i;29297:100::-;;;;;;;;;;-1:-1:-1;29377:12:0;;29297:100;;;2319:25:1;;;2307:2;2292:18;29297:100:0;2173:177:1;48230:222:0;;;;;;;;;;-1:-1:-1;48230:222:0;;;;;:::i;:::-;;:::i;35364:162::-;;;;;;;;;;-1:-1:-1;35364:162:0;;;;;:::i;:::-;;:::i;29961:1007::-;;;;;;;;;;-1:-1:-1;29961:1007:0;;;;;:::i;:::-;;:::i;46691:33::-;;;;;;;;;;;;;;;;52043:847;;;;;;;;;;;;;:::i;47118:32::-;;;;;;;;;;-1:-1:-1;47118:32:0;;;;;;;;;;;46877:45;;;;;;;;;;-1:-1:-1;46877:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;35597:177;;;;;;;;;;-1:-1:-1;35597:177:0;;;;;:::i;:::-;;:::i;48996:469::-;;;;;;;;;;;;;:::i;29474:187::-;;;;;;;;;;-1:-1:-1;29474:187:0;;;;;:::i;:::-;;:::i;47922:94::-;;;;;;;;;;-1:-1:-1;47922:94:0;;;;;:::i;:::-;;:::i;46929:47::-;;;;;;;;;;-1:-1:-1;46929:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;32735:124;;;;;;;;;;-1:-1:-1;32735:124:0;;;;;:::i;:::-;;:::i;46731:26::-;;;;;;;;;;;;;:::i;31476:221::-;;;;;;;;;;-1:-1:-1;31476:221:0;;;;;:::i;:::-;;:::i;45736:103::-;;;;;;;;;;;;;:::i;47313:61::-;;;;;;;;;;;;47363:11;47313:61;;48779:103;;;;;;;;;;-1:-1:-1;48779:103:0;;;;;:::i;:::-;;:::i;45085:87::-;;;;;;;;;;-1:-1:-1;45158:6:0;;-1:-1:-1;;;;;45158:6:0;45085:87;;47036:33;;;;;;;;;;-1:-1:-1;47036:33:0;;;;;;;;33095:104;;;;;;;;;;;;;:::i;47255:51::-;;;;;;;;;;;;47297:9;47255:51;;34774:288;;;;;;;;;;-1:-1:-1;34774:288:0;;;;;:::i;:::-;;:::i;47678:76::-;;;;;;;;;;-1:-1:-1;47678:76:0;;;;-1:-1:-1;;;;;47678:76:0;;;47633:36;;;;;;;;;;;;;;;;50557:716;;;;;;:::i;:::-;;:::i;49939:610::-;;;;;;:::i;:::-;;:::i;35845:355::-;;;;;;;;;;-1:-1:-1;35845:355:0;;;;;:::i;:::-;;:::i;46802:31::-;;;;;;;;;;;;;;;;51281:593;;;;;;:::i;:::-;;:::i;48661:110::-;;;;;;;;;;-1:-1:-1;48661:110:0;;;;;:::i;:::-;;:::i;48890:98::-;;;;;;;;;;-1:-1:-1;48890:98:0;;;;;:::i;:::-;;:::i;46983:44::-;;;;;;;;;;-1:-1:-1;46983:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;33270:335;;;;;;;;;;-1:-1:-1;33270:335:0;;;;;:::i;:::-;;:::i;48460:193::-;;;;;;;;;;-1:-1:-1;48460:193:0;;;;;:::i;:::-;;:::i;48024:198::-;;;;;;;;;;-1:-1:-1;48024:198:0;;;;;:::i;:::-;;:::i;47197:51::-;;;;;;;;;;;;47241:7;47197:51;;46840:28;;;;;;;;;;;;;;;;47444:132;;;;;;;;;;;;;:::i;35133:164::-;;;;;;;;;;-1:-1:-1;35133:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35254:25:0;;;35230:4;35254:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35133:164;47157:31;;;;;;;;;;;;;;;;46651:33;;;;;;;;;;;;;;;;47381:56;;;;;;;;;;;;47427:10;47381:56;;45994:201;;;;;;;;;;-1:-1:-1;45994:201:0;;;;;:::i;:::-;;:::i;46766:29::-;;;;;;;;;;;;;;;;47585:41;;;;;;;;;;;;;;;;31040:372;31142:4;-1:-1:-1;;;;;;31179:40:0;;-1:-1:-1;;;31179:40:0;;:105;;-1:-1:-1;;;;;;;31236:48:0;;-1:-1:-1;;;31236:48:0;31179:105;:172;;;-1:-1:-1;;;;;;;31301:50:0;;-1:-1:-1;;;31301:50:0;31179:172;:225;;;-1:-1:-1;;;;;;;8765:33:0;;8741:4;8765:33;;;;;;;;;;;;;31368:36;31159:245;31040:372;-1:-1:-1;;31040:372:0:o;32926:100::-;32980:13;33013:5;33006:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32926:100;:::o;51882:153::-;45158:6;;-1:-1:-1;;;;;45158:6:0;686:10;45305:23;45297:68;;;;-1:-1:-1;;;45297:68:0;;;;;;;:::i;:::-;;;;;;;;;51990:37:::1;::::0;51958:21:::1;::::0;51998:10:::1;::::0;51990:37;::::1;;;::::0;51958:21;;51940:15:::1;51990:37:::0;51940:15;51990:37;51958:21;51998:10;51990:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51929:106;51882:153::o:0;34488:214::-;34556:7;34584:16;34592:7;36546:12;;-1:-1:-1;36536:22:0;36455:111;34584:16;34576:74;;;;-1:-1:-1;;;34576:74:0;;9138:2:1;34576:74:0;;;9120:21:1;9177:2;9157:18;;;9150:30;9216:34;9196:18;;;9189:62;-1:-1:-1;;;9267:18:1;;;9260:43;9320:19;;34576:74:0;8936:409:1;34576:74:0;-1:-1:-1;34670:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34670:24:0;;34488:214::o;34009:413::-;34082:13;34098:24;34114:7;34098:15;:24::i;:::-;34082:40;;34147:5;-1:-1:-1;;;;;34141:11:0;:2;-1:-1:-1;;;;;34141:11:0;;;34133:58;;;;-1:-1:-1;;;34133:58:0;;9552:2:1;34133:58:0;;;9534:21:1;9591:2;9571:18;;;9564:30;9630:34;9610:18;;;9603:62;-1:-1:-1;;;9681:18:1;;;9674:32;9723:19;;34133:58:0;9350:398:1;34133:58:0;686:10;-1:-1:-1;;;;;34226:21:0;;;;:62;;-1:-1:-1;34251:37:0;34268:5;686:10;35133:164;:::i;34251:37::-;34204:169;;;;-1:-1:-1;;;34204:169:0;;9955:2:1;34204:169:0;;;9937:21:1;9994:2;9974:18;;;9967:30;10033:34;10013:18;;;10006:62;10104:27;10084:18;;;10077:55;10149:19;;34204:169:0;9753:421:1;34204:169:0;34386:28;34395:2;34399:7;34408:5;34386:8;:28::i;:::-;34071:351;34009:413;;:::o;48230:222::-;45158:6;;-1:-1:-1;;;;;45158:6:0;686:10;45305:23;45297:68;;;;-1:-1:-1;;;45297:68:0;;;;;;;:::i;:::-;48342:9:::1;48337:108;48361:7;:14;48357:1;:18;48337:108;;;48397:36;48407:7;48415:1;48407:10;;;;;;;;:::i;:::-;;;;;;;48419;48430:1;48419:13;;;;;;;;:::i;:::-;;;;;;;48397:9;:36::i;:::-;48377:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48337:108;;35364:162:::0;35490:28;35500:4;35506:2;35510:7;35490:9;:28::i;29961:1007::-;30050:7;30086:16;30096:5;30086:9;:16::i;:::-;30078:5;:24;30070:71;;;;-1:-1:-1;;;30070:71:0;;10785:2:1;30070:71:0;;;10767:21:1;10824:2;10804:18;;;10797:30;10863:34;10843:18;;;10836:62;-1:-1:-1;;;10914:18:1;;;10907:32;10956:19;;30070:71:0;10583:398:1;30070:71:0;30152:22;30177:13;29377:12;;;29297:100;30177:13;30152:38;;30201:19;30231:25;30420:9;30415:466;30435:14;30431:1;:18;30415:466;;;30475:31;30509:14;;;:11;:14;;;;;;;;;30475:48;;;;;;;;;-1:-1:-1;;;;;30475:48:0;;;;;-1:-1:-1;;;30475:48:0;;;;;;;;;;;;30546:28;30542:111;;30619:14;;;-1:-1:-1;30542:111:0;30696:5;-1:-1:-1;;;;;30675:26:0;:17;-1:-1:-1;;;;;30675:26:0;;30671:195;;;30745:5;30730:11;:20;30726:85;;;-1:-1:-1;30786:1:0;-1:-1:-1;30779:8:0;;-1:-1:-1;;;30779:8:0;30726:85;30833:13;;;;;30671:195;-1:-1:-1;30451:3:0;;30415:466;;;-1:-1:-1;30904:56:0;;-1:-1:-1;;;30904:56:0;;11188:2:1;30904:56:0;;;11170:21:1;11227:2;11207:18;;;11200:30;11266:34;11246:18;;;11239:62;-1:-1:-1;;;11317:18:1;;;11310:44;11371:19;;30904:56:0;10986:410:1;52043:847:0;45158:6;;-1:-1:-1;;;;;45158:6:0;686:10;45305:23;45297:68;;;;-1:-1:-1;;;45297:68:0;;;;;;;:::i;:::-;52093:326:::1;::::0;;::::1;::::0;;::::1;::::0;;52138:42:::1;52093:326:::0;;52195:42:::1;52093:326;::::0;;::::1;::::0;;;;52252:42:::1;52093:326:::0;;;;52309:42:::1;52093:326:::0;;;;;;;;52366:42:::1;52093:326:::0;;;;;;;;52432:165;;;;::::1;::::0;;52482:1:::1;52432:165:::0;;;;;::::1;::::0;;;;52532:1:::1;52432:165:::0;;;;;;;52557:2:::1;52432:165:::0;;;;;;;;;;;;52093:326;52628:21:::1;52093:27;52662:221;52686:16;52682:1;:20;52662:221;;;52724:14;52746:20;52765:1;52746:16;:20;:::i;:::-;52741:1;:25;:77;;52815:3;52803:6;52810:1;52803:9;;;;;;;:::i;:::-;;;;::::0;52793:19:::1;::::0;:7;:19:::1;:::i;:::-;:25;;;;:::i;:::-;52741:77;;;52769:21;52741:77;52724:94;;52841:9;52851:1;52841:12;;;;;;;:::i;:::-;;;;;-1:-1:-1::0;;;;;52833:30:0::1;:38;52864:6;52833:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52709:174;52704:3;;;;;:::i;:::-;;;;52662:221;;;;52082:808;;;52043:847::o:0;35597:177::-;35727:39;35744:4;35750:2;35754:7;35727:39;;;;;;;;;;;;:16;:39::i;48996:469::-;49044:7;49086:16;;49068:15;:34;49064:91;;;-1:-1:-1;47241:7:0;;48996:469::o;49064:91::-;47363:11;49187:16;;49169:15;:34;;;;:::i;:::-;:61;49165:293;;-1:-1:-1;47297:9:0;;48996:469::o;49165:293::-;49302:13;47427:10;49337:16;;49319:15;:34;;;;:::i;:::-;49318:58;;;;:::i;:::-;49302:74;-1:-1:-1;47530:45:0;47427:10;47363:11;47530:45;:::i;:::-;47490:35;47297:9;47241:7;47490:35;:::i;:::-;47489:87;;;;:::i;:::-;49419:26;;:5;:26;:::i;:::-;49398:48;;47241:7;49398:48;:::i;:::-;49391:55;;;48996:469;:::o;29474:187::-;29541:7;29577:13;29377:12;;;29297:100;29577:13;29569:5;:21;29561:69;;;;-1:-1:-1;;;29561:69:0;;12163:2:1;29561:69:0;;;12145:21:1;12202:2;12182:18;;;12175:30;12241:34;12221:18;;;12214:62;-1:-1:-1;;;12292:18:1;;;12285:33;12335:19;;29561:69:0;11961:399:1;29561:69:0;-1:-1:-1;29648:5:0;29474:187::o;47922:94::-;45158:6;;-1:-1:-1;;;;;45158:6:0;686:10;45305:23;45297:68;;;;-1:-1:-1;;;45297:68:0;;;;;;;:::i;:::-;47992:16;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;32735:124::-:0;32799:7;32826:20;32838:7;32826:11;:20::i;:::-;:25;;32735:124;-1:-1:-1;;32735:124:0:o;46731:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31476:221::-;31540:7;-1:-1:-1;;;;;31568:19:0;;31560:75;;;;-1:-1:-1;;;31560:75:0;;12567:2:1;31560:75:0;;;12549:21:1;12606:2;12586:18;;;12579:30;12645:34;12625:18;;;12618:62;-1:-1:-1;;;12696:18:1;;;12689:41;12747:19;;31560:75:0;12365:407:1;31560:75:0;-1:-1:-1;;;;;;31661:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31661:27:0;;31476:221::o;45736:103::-;45158:6;;-1:-1:-1;;;;;45158:6:0;686:10;45305:23;45297:68;;;;-1:-1:-1;;;45297:68:0;;;;;;;:::i;:::-;45801:30:::1;45828:1;45801:18;:30::i;:::-;45736:103::o:0;48779:::-;45158:6;;-1:-1:-1;;;;;45158:6:0;686:10;45305:23;45297:68;;;;-1:-1:-1;;;45297:68:0;;;;;;;:::i;:::-;48850:12:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;48850:24:0;;::::1;::::0;;;::::1;::::0;;48779:103::o;33095:104::-;33151:13;33184:7;33177:14;;;;;:::i;34774:288::-;-1:-1:-1;;;;;34869:24:0;;686:10;34869:24;;34861:63;;;;-1:-1:-1;;;34861:63:0;;12979:2:1;34861:63:0;;;12961:21:1;13018:2;12998:18;;;12991:30;13057:28;13037:18;;;13030:56;13103:18;;34861:63:0;12777:350:1;34861:63:0;686:10;34937:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34937:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34937:53:0;;;;;;;;;;35006:48;;540:41:1;;;34937:42:0;;686:10;35006:48;;513:18:1;35006:48:0;;;;;;;34774:288;;:::o;50557:716::-;50664:9;50677:10;50664:23;50656:58;;;;-1:-1:-1;;;50656:58:0;;;;;;;:::i;:::-;50733:15;;;;;;;50725:51;;;;-1:-1:-1;;;50725:51:0;;;;;;;:::i;:::-;50806:1;50795:8;:12;50787:51;;;;-1:-1:-1;;;50787:51:0;;;;;;;:::i;:::-;50896:12;;50881:10;50868:24;;;;:12;:24;;;;;;50857:35;;:8;:35;:::i;:::-;:51;;50849:85;;;;-1:-1:-1;;;50849:85:0;;;;;;;:::i;:::-;50981:10;;50969:8;50953:13;29377:12;;;29297:100;50953:13;:24;;;;:::i;:::-;:38;;50945:69;;;;-1:-1:-1;;;50945:69:0;;;;;;;:::i;:::-;51062:9;51050:8;51033:14;;:25;;;;:::i;:::-;:38;51025:75;;;;-1:-1:-1;;;51025:75:0;;15222:2:1;51025:75:0;;;15204:21:1;15261:2;15241:18;;;15234:30;-1:-1:-1;;;15280:18:1;;;15273:54;15344:18;;51025:75:0;15020:348:1;51025:75:0;51119:23;51134:1;51137;51140;51119:14;:23::i;:::-;51111:63;;;;-1:-1:-1;;;51111:63:0;;15575:2:1;51111:63:0;;;15557:21:1;15614:2;15594:18;;;15587:30;15653:29;15633:18;;;15626:57;15700:18;;51111:63:0;15373:351:1;51111:63:0;51200:10;51187:24;;;;:12;:24;;;;;:36;;51215:8;;51187:24;:36;;51215:8;;51187:36;:::i;:::-;;;;-1:-1:-1;51234:31:0;;-1:-1:-1;51244:10:0;51256:8;51234:9;:31::i;49939:610::-;50013:9;50026:10;50013:23;50005:58;;;;-1:-1:-1;;;50005:58:0;;;;;;;:::i;:::-;50082:13;;;;50074:49;;;;-1:-1:-1;;;50074:49:0;;;;;;;:::i;:::-;50153:1;50142:8;:12;50134:51;;;;-1:-1:-1;;;50134:51:0;;;;;;;:::i;:::-;50241:10;;50226;50215:22;;;;:10;:22;;;;;;50204:33;;:8;:33;:::i;:::-;:47;;50196:81;;;;-1:-1:-1;;;50196:81:0;;;;;;;:::i;:::-;50324:11;;50312:8;50296:13;29377:12;;;29297:100;50296:13;:24;;;;:::i;:::-;:39;;50288:70;;;;-1:-1:-1;;;50288:70:0;;;;;;;:::i;:::-;50371:17;50411:8;50391:17;:15;:17::i;:::-;:28;;;;:::i;:::-;50371:48;;50430:22;50442:9;50430:11;:22::i;:::-;50476:10;50465:22;;;;:10;:22;;;;;:34;;50491:8;;50465:22;:34;;50491:8;;50465:34;:::i;:::-;;;;-1:-1:-1;50510:31:0;;-1:-1:-1;50520:10:0;50532:8;50510:9;:31::i;35845:355::-;36004:28;36014:4;36020:2;36024:7;36004:9;:28::i;:::-;36065:48;36088:4;36094:2;36098:7;36107:5;36065:22;:48::i;:::-;36043:149;;;;-1:-1:-1;;;36043:149:0;;;;;;;:::i;51281:593::-;51354:9;51367:10;51354:23;51346:58;;;;-1:-1:-1;;;51346:58:0;;;;;;;:::i;:::-;51423:12;;;;;;;51415:48;;;;-1:-1:-1;;;51415:48:0;;;;;;;:::i;:::-;51493:1;51482:8;:12;51474:51;;;;-1:-1:-1;;;51474:51:0;;;;;;;:::i;:::-;51580:9;;51565:10;51555:21;;;;:9;:21;;;;;;51544:32;;:8;:32;:::i;:::-;:45;;51536:79;;;;-1:-1:-1;;;51536:79:0;;;;;;;:::i;:::-;51662:10;;51650:8;51634:13;29377:12;;;29297:100;51634:13;:24;;;;:::i;:::-;:38;;51626:69;;;;-1:-1:-1;;;51626:69:0;;;;;;;:::i;:::-;51740:9;51728:8;51714:11;;:22;;;;:::i;:::-;:35;51706:72;;;;-1:-1:-1;;;51706:72:0;;15222:2:1;51706:72:0;;;15204:21:1;15261:2;15241:18;;;15234:30;-1:-1:-1;;;15280:18:1;;;15273:54;15344:18;;51706:72:0;15020:348:1;51706:72:0;51801:10;51791:21;;;;:9;:21;;;;;:33;;51816:8;;51791:21;:33;;51816:8;;51791:33;:::i;:::-;;;;-1:-1:-1;51835:31:0;;-1:-1:-1;51845:10:0;51857:8;51835:9;:31::i;:::-;51281:593;:::o;48661:110::-;45158:6;;-1:-1:-1;;;;;45158:6:0;686:10;45305:23;45297:68;;;;-1:-1:-1;;;45297:68:0;;;;;;;:::i;:::-;48735:15:::1;:27:::0;;;::::1;;;;-1:-1:-1::0;;48735:27:0;;::::1;::::0;;;::::1;::::0;;48661:110::o;48890:98::-;45158:6;;-1:-1:-1;;;;;45158:6:0;686:10;45305:23;45297:68;;;;-1:-1:-1;;;45297:68:0;;;;;;;:::i;:::-;48960:11:::1;:20:::0;48890:98::o;33270:335::-;33343:13;33377:16;33385:7;36546:12;;-1:-1:-1;36536:22:0;36455:111;33377:16;33369:76;;;;-1:-1:-1;;;33369:76:0;;16351:2:1;33369:76:0;;;16333:21:1;16390:2;16370:18;;;16363:30;16429:34;16409:18;;;16402:62;-1:-1:-1;;;16480:18:1;;;16473:45;16535:19;;33369:76:0;16149:411:1;33369:76:0;33458:21;33482:10;:8;:10::i;:::-;33458:34;;33516:7;33510:21;33535:1;33510:26;;:87;;;;;;;;;;;;;;;;;33563:7;33572:18;:7;:16;:18::i;:::-;33546:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33510:87;33503:94;33270:335;-1:-1:-1;;;33270:335:0:o;48460:193::-;45158:6;;-1:-1:-1;;;;;45158:6:0;686:10;45305:23;45297:68;;;;-1:-1:-1;;;45297:68:0;;;;;;;:::i;:::-;48532:13:::1;:25:::0;;-1:-1:-1;;48532:25:0::1;::::0;::::1;::::0;::::1;::::0;;;::::1;::::0;;;48570:76:::1;;48619:15;48600:16;:34:::0;48460:193;:::o;48024:198::-;45158:6;;-1:-1:-1;;;;;45158:6:0;686:10;45305:23;45297:68;;;;-1:-1:-1;;;45297:68:0;;;;;;;:::i;:::-;48141:10:::1;;48129:8;48113:13;29377:12:::0;;;29297:100;48113:13:::1;:24;;;;:::i;:::-;:38;;48105:69;;;;-1:-1:-1::0;;;48105:69:0::1;;;;;;;:::i;:::-;48187:27;48197:6;48205:8;48187:9;:27::i;47444:132::-:0;47530:45;47427:10;47363:11;47530:45;:::i;:::-;47490:35;47297:9;47241:7;47490:35;:::i;:::-;47489:87;;;;:::i;:::-;47444:132;:::o;45994:201::-;45158:6;;-1:-1:-1;;;;;45158:6:0;686:10;45305:23;45297:68;;;;-1:-1:-1;;;45297:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46083:22:0;::::1;46075:73;;;::::0;-1:-1:-1;;;46075:73:0;;17242:2:1;46075:73:0::1;::::0;::::1;17224:21:1::0;17281:2;17261:18;;;17254:30;17320:34;17300:18;;;17293:62;-1:-1:-1;;;17371:18:1;;;17364:36;17417:19;;46075:73:0::1;17040:402:1::0;46075:73:0::1;46159:28;46178:8;46159:18;:28::i;41375:196::-:0;41490:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41490:29:0;-1:-1:-1;;;;;41490:29:0;;;;;;;;;41535:28;;41490:24;;41535:28;;;;;;;41375:196;;;:::o;36574:104::-;36643:27;36653:2;36657:8;36643:27;;;;;;;;;;;;:9;:27::i;39255:2002::-;39370:35;39408:20;39420:7;39408:11;:20::i;:::-;39483:18;;39370:58;;-1:-1:-1;39441:22:0;;-1:-1:-1;;;;;39467:34:0;686:10;-1:-1:-1;;;;;39467:34:0;;:87;;;-1:-1:-1;686:10:0;39518:20;39530:7;39518:11;:20::i;:::-;-1:-1:-1;;;;;39518:36:0;;39467:87;:154;;;-1:-1:-1;39588:18:0;;39571:50;;686:10;35133:164;:::i;39571:50::-;39441:181;;39643:17;39635:80;;;;-1:-1:-1;;;39635:80:0;;17649:2:1;39635:80:0;;;17631:21:1;17688:2;17668:18;;;17661:30;17727:34;17707:18;;;17700:62;-1:-1:-1;;;17778:18:1;;;17771:48;17836:19;;39635:80:0;17447:414:1;39635:80:0;39758:4;-1:-1:-1;;;;;39736:26:0;:13;:18;;;-1:-1:-1;;;;;39736:26:0;;39728:77;;;;-1:-1:-1;;;39728:77:0;;18068:2:1;39728:77:0;;;18050:21:1;18107:2;18087:18;;;18080:30;18146:34;18126:18;;;18119:62;-1:-1:-1;;;18197:18:1;;;18190:36;18243:19;;39728:77:0;17866:402:1;39728:77:0;-1:-1:-1;;;;;39824:16:0;;39816:66;;;;-1:-1:-1;;;39816:66:0;;18475:2:1;39816:66:0;;;18457:21:1;18514:2;18494:18;;;18487:30;18553:34;18533:18;;;18526:62;-1:-1:-1;;;18604:18:1;;;18597:35;18649:19;;39816:66:0;18273:401:1;39816:66:0;40003:49;40020:1;40024:7;40033:13;:18;;;40003:8;:49::i;:::-;-1:-1:-1;;;;;40348:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;40348:31:0;;;-1:-1:-1;;;;;40348:31:0;;;-1:-1:-1;;40348:31:0;;;;;;;40394:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40394:29:0;;;;;;;;;;;;;40440:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;40485:61:0;;;;-1:-1:-1;;;40530:15:0;40485:61;;;;;;40820:11;;;40850:24;;;;;:29;40820:11;;40850:29;40846:295;;40918:20;40926:11;36546:12;;-1:-1:-1;36536:22:0;36455:111;40918:20;40914:212;;;40995:18;;;40963:24;;;:11;:24;;;;;;;;:50;;41078:28;;;;41036:70;;-1:-1:-1;;;41036:70:0;-1:-1:-1;;;;;;41036:70:0;;;-1:-1:-1;;;;;40963:50:0;;;41036:70;;;;;;;40914:212;40323:829;41188:7;41184:2;-1:-1:-1;;;;;41169:27:0;41178:4;-1:-1:-1;;;;;41169:27:0;;;;;;;;;;;41207:42;39359:1898;;39255:2002;;;:::o;32136:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;32239:16:0;32247:7;36546:12;;-1:-1:-1;36536:22:0;36455:111;32239:16;32231:71;;;;-1:-1:-1;;;32231:71:0;;18881:2:1;32231:71:0;;;18863:21:1;18920:2;18900:18;;;18893:30;18959:34;18939:18;;;18932:62;-1:-1:-1;;;19010:18:1;;;19003:40;19060:19;;32231:71:0;18679:406:1;32231:71:0;32360:7;32340:245;32407:31;32441:17;;;:11;:17;;;;;;;;;32407:51;;;;;;;;;-1:-1:-1;;;;;32407:51:0;;;;;-1:-1:-1;;;32407:51:0;;;;;;;;;;;;32481:28;32477:93;;32541:9;32136:537;-1:-1:-1;;;32136:537:0:o;32477:93::-;-1:-1:-1;;;32380:6:0;32340:245;;46355:191;46448:6;;;-1:-1:-1;;;;;46465:17:0;;;-1:-1:-1;;;;;;46465:17:0;;;;;;;46498:40;;46448:6;;;46465:17;46448:6;;46498:40;;46429:16;;46498:40;46418:128;46355:191;:::o;49712:219::-;49832:28;;-1:-1:-1;;49849:10:0;19655:2:1;19651:15;19647:53;49832:28:0;;;19635:66:1;49790:4:0;;;;19717:12:1;;49832:28:0;;;-1:-1:-1;;49832:28:0;;;;;;;;;49822:39;;49832:28;49822:39;;;;49899:24;;;;;;;;;19967:25:1;;;20040:4;20028:17;;20008:18;;;20001:45;;;;20062:18;;;20055:34;;;20105:18;;;20098:34;;;49822:39:0;-1:-1:-1;49899:24:0;;19939:19:1;;49899:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49899:24:0;;-1:-1:-1;;49899:24:0;;49879:16;;-1:-1:-1;;;;;49879:44:0;;;:16;;:44;;49712:219;-1:-1:-1;;;;;;49712:219:0:o;49473:231::-;49549:5;49536:9;:18;;49528:59;;;;-1:-1:-1;;;49528:59:0;;20345:2:1;49528:59:0;;;20327:21:1;20384:2;20364:18;;;20357:30;20423;20403:18;;;20396:58;20471:18;;49528:59:0;20143:352:1;49528:59:0;49616:5;49604:9;:17;49600:97;;;49646:10;49638:47;49667:17;49679:5;49667:9;:17;:::i;:::-;49638:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42136:804;42291:4;-1:-1:-1;;;;;42312:13:0;;17844:20;17883:8;42308:625;;42348:72;;-1:-1:-1;;;42348:72:0;;-1:-1:-1;;;;;42348:36:0;;;;;:72;;686:10;;42399:4;;42405:7;;42414:5;;42348:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42348:72:0;;;;;;;;-1:-1:-1;;42348:72:0;;;;;;;;;;;;:::i;:::-;;;42344:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42594:13:0;;42590:273;;42637:61;;-1:-1:-1;;;42637:61:0;;;;;;;:::i;42590:273::-;42813:6;42807:13;42798:6;42794:2;42790:15;42783:38;42344:534;-1:-1:-1;;;;;;42471:55:0;-1:-1:-1;;;42471:55:0;;-1:-1:-1;42464:62:0;;42308:625;-1:-1:-1;42917:4:0;42308:625;42136:804;;;;;;:::o;47814:100::-;47866:13;47899:7;47892:14;;;;;:::i;24960:723::-;25016:13;25237:10;25233:53;;-1:-1:-1;;25264:10:0;;;;;;;;;;;;-1:-1:-1;;;25264:10:0;;;;;24960:723::o;25233:53::-;25311:5;25296:12;25352:78;25359:9;;25352:78;;25385:8;;;;:::i;:::-;;-1:-1:-1;25408:10:0;;-1:-1:-1;25416:2:0;25408:10;;:::i;:::-;;;25352:78;;;25440:19;25472:6;25462:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25462:17:0;;25440:39;;25490:154;25497:10;;25490:154;;25524:11;25534:1;25524:11;;:::i;:::-;;-1:-1:-1;25593:10:0;25601:2;25593:5;:10;:::i;:::-;25580:24;;:2;:24;:::i;:::-;25567:39;;25550:6;25557;25550:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;25550:56:0;;;;;;;;-1:-1:-1;25621:11:0;25630:2;25621:11;;:::i;:::-;;;25490:154;;37041:163;37164:32;37170:2;37174:8;37184:5;37191:4;37625:12;;-1:-1:-1;;;;;37656:16:0;;37648:62;;;;-1:-1:-1;;;37648:62:0;;21567:2:1;37648:62:0;;;21549:21:1;21606:2;21586:18;;;21579:30;21645:34;21625:18;;;21618:62;-1:-1:-1;;;21696:18:1;;;21689:31;21737:19;;37648:62:0;21365:397:1;37648:62:0;37729:13;37721:66;;;;-1:-1:-1;;;37721:66:0;;21969:2:1;37721:66:0;;;21951:21:1;22008:2;21988:18;;;21981:30;22047:34;22027:18;;;22020:62;-1:-1:-1;;;22098:18:1;;;22091:38;22146:19;;37721:66:0;21767:404:1;37721:66:0;-1:-1:-1;;;;;38139:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;38139:45:0;;-1:-1:-1;;;;;38139:45:0;;;;;;;;;;38199:50;;;;;;;;;;;;;;38266:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;38316:66:0;;;;-1:-1:-1;;;38366:15:0;38316:66;;;;;;;38266:25;;38451:415;38471:8;38467:1;:12;38451:415;;;38510:38;;38535:12;;-1:-1:-1;;;;;38510:38:0;;;38527:1;;38510:38;;38527:1;;38510:38;38571:4;38567:249;;;38634:59;38665:1;38669:2;38673:12;38687:5;38634:22;:59::i;:::-;38600:196;;;;-1:-1:-1;;;38600:196:0;;;;;;;:::i;:::-;38836:14;;;;;38481:3;38451:415;;;-1:-1:-1;38882:12:0;:27;38933:60;52043:847;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:127::-;2416:10;2411:3;2407:20;2404:1;2397:31;2447:4;2444:1;2437:15;2471:4;2468:1;2461:15;2487:275;2558:2;2552:9;2623:2;2604:13;;-1:-1:-1;;2600:27:1;2588:40;;2658:18;2643:34;;2679:22;;;2640:62;2637:88;;;2705:18;;:::i;:::-;2741:2;2734:22;2487:275;;-1:-1:-1;2487:275:1:o;2767:183::-;2827:4;2860:18;2852:6;2849:30;2846:56;;;2882:18;;:::i;:::-;-1:-1:-1;2927:1:1;2923:14;2939:4;2919:25;;2767:183::o;2955:662::-;3009:5;3062:3;3055:4;3047:6;3043:17;3039:27;3029:55;;3080:1;3077;3070:12;3029:55;3116:6;3103:20;3142:4;3166:60;3182:43;3222:2;3182:43;:::i;:::-;3166:60;:::i;:::-;3260:15;;;3346:1;3342:10;;;;3330:23;;3326:32;;;3291:12;;;;3370:15;;;3367:35;;;3398:1;3395;3388:12;3367:35;3434:2;3426:6;3422:15;3446:142;3462:6;3457:3;3454:15;3446:142;;;3528:17;;3516:30;;3566:12;;;;3479;;3446:142;;;-1:-1:-1;3606:5:1;2955:662;-1:-1:-1;;;;;;2955:662:1:o;3622:1146::-;3740:6;3748;3801:2;3789:9;3780:7;3776:23;3772:32;3769:52;;;3817:1;3814;3807:12;3769:52;3857:9;3844:23;3886:18;3927:2;3919:6;3916:14;3913:34;;;3943:1;3940;3933:12;3913:34;3981:6;3970:9;3966:22;3956:32;;4026:7;4019:4;4015:2;4011:13;4007:27;3997:55;;4048:1;4045;4038:12;3997:55;4084:2;4071:16;4106:4;4130:60;4146:43;4186:2;4146:43;:::i;4130:60::-;4224:15;;;4306:1;4302:10;;;;4294:19;;4290:28;;;4255:12;;;;4330:19;;;4327:39;;;4362:1;4359;4352:12;4327:39;4386:11;;;;4406:148;4422:6;4417:3;4414:15;4406:148;;;4488:23;4507:3;4488:23;:::i;:::-;4476:36;;4439:12;;;;4532;;;;4406:148;;;4573:5;-1:-1:-1;;4616:18:1;;4603:32;;-1:-1:-1;;4647:16:1;;;4644:36;;;4676:1;4673;4666:12;4644:36;;4699:63;4754:7;4743:8;4732:9;4728:24;4699:63;:::i;:::-;4689:73;;;3622:1146;;;;;:::o;4773:328::-;4850:6;4858;4866;4919:2;4907:9;4898:7;4894:23;4890:32;4887:52;;;4935:1;4932;4925:12;4887:52;4958:29;4977:9;4958:29;:::i;:::-;4948:39;;5006:38;5040:2;5029:9;5025:18;5006:38;:::i;:::-;4996:48;;5091:2;5080:9;5076:18;5063:32;5053:42;;4773:328;;;;;:::o;5106:186::-;5165:6;5218:2;5206:9;5197:7;5193:23;5189:32;5186:52;;;5234:1;5231;5224:12;5186:52;5257:29;5276:9;5257:29;:::i;5297:407::-;5362:5;5396:18;5388:6;5385:30;5382:56;;;5418:18;;:::i;:::-;5456:57;5501:2;5480:15;;-1:-1:-1;;5476:29:1;5507:4;5472:40;5456:57;:::i;:::-;5447:66;;5536:6;5529:5;5522:21;5576:3;5567:6;5562:3;5558:16;5555:25;5552:45;;;5593:1;5590;5583:12;5552:45;5642:6;5637:3;5630:4;5623:5;5619:16;5606:43;5696:1;5689:4;5680:6;5673:5;5669:18;5665:29;5658:40;5297:407;;;;;:::o;5709:451::-;5778:6;5831:2;5819:9;5810:7;5806:23;5802:32;5799:52;;;5847:1;5844;5837:12;5799:52;5887:9;5874:23;5920:18;5912:6;5909:30;5906:50;;;5952:1;5949;5942:12;5906:50;5975:22;;6028:4;6020:13;;6016:27;-1:-1:-1;6006:55:1;;6057:1;6054;6047:12;6006:55;6080:74;6146:7;6141:2;6128:16;6123:2;6119;6115:11;6080:74;:::i;6165:160::-;6230:20;;6286:13;;6279:21;6269:32;;6259:60;;6315:1;6312;6305:12;6330:180;6386:6;6439:2;6427:9;6418:7;6414:23;6410:32;6407:52;;;6455:1;6452;6445:12;6407:52;6478:26;6494:9;6478:26;:::i;6515:254::-;6580:6;6588;6641:2;6629:9;6620:7;6616:23;6612:32;6609:52;;;6657:1;6654;6647:12;6609:52;6680:29;6699:9;6680:29;:::i;:::-;6670:39;;6728:35;6759:2;6748:9;6744:18;6728:35;:::i;:::-;6718:45;;6515:254;;;;;:::o;6774:474::-;6858:6;6866;6874;6882;6935:3;6923:9;6914:7;6910:23;6906:33;6903:53;;;6952:1;6949;6942:12;6903:53;6988:9;6975:23;6965:33;;7048:2;7037:9;7033:18;7020:32;7092:4;7085:5;7081:16;7074:5;7071:27;7061:55;;7112:1;7109;7102:12;7061:55;6774:474;;7135:5;;-1:-1:-1;;;;7187:2:1;7172:18;;7159:32;;7238:2;7223:18;7210:32;;6774:474::o;7253:667::-;7348:6;7356;7364;7372;7425:3;7413:9;7404:7;7400:23;7396:33;7393:53;;;7442:1;7439;7432:12;7393:53;7465:29;7484:9;7465:29;:::i;:::-;7455:39;;7513:38;7547:2;7536:9;7532:18;7513:38;:::i;:::-;7503:48;;7598:2;7587:9;7583:18;7570:32;7560:42;;7653:2;7642:9;7638:18;7625:32;7680:18;7672:6;7669:30;7666:50;;;7712:1;7709;7702:12;7666:50;7735:22;;7788:4;7780:13;;7776:27;-1:-1:-1;7766:55:1;;7817:1;7814;7807:12;7766:55;7840:74;7906:7;7901:2;7888:16;7883:2;7879;7875:11;7840:74;:::i;:::-;7830:84;;;7253:667;;;;;;;:::o;7925:260::-;7993:6;8001;8054:2;8042:9;8033:7;8029:23;8025:32;8022:52;;;8070:1;8067;8060:12;8022:52;8093:29;8112:9;8093:29;:::i;:::-;8083:39;;8141:38;8175:2;8164:9;8160:18;8141:38;:::i;8190:380::-;8269:1;8265:12;;;;8312;;;8333:61;;8387:4;8379:6;8375:17;8365:27;;8333:61;8440:2;8432:6;8429:14;8409:18;8406:38;8403:161;;;8486:10;8481:3;8477:20;8474:1;8467:31;8521:4;8518:1;8511:15;8549:4;8546:1;8539:15;8403:161;;8190:380;;;:::o;8575:356::-;8777:2;8759:21;;;8796:18;;;8789:30;8855:34;8850:2;8835:18;;8828:62;8922:2;8907:18;;8575:356::o;10179:127::-;10240:10;10235:3;10231:20;10228:1;10221:31;10271:4;10268:1;10261:15;10295:4;10292:1;10285:15;10311:127;10372:10;10367:3;10363:20;10360:1;10353:31;10403:4;10400:1;10393:15;10427:4;10424:1;10417:15;10443:135;10482:3;-1:-1:-1;;10503:17:1;;10500:43;;;10523:18;;:::i;:::-;-1:-1:-1;10570:1:1;10559:13;;10443:135::o;11401:125::-;11441:4;11469:1;11466;11463:8;11460:34;;;11474:18;;:::i;:::-;-1:-1:-1;11511:9:1;;11401:125::o;11531:168::-;11571:7;11637:1;11633;11629:6;11625:14;11622:1;11619:21;11614:1;11607:9;11600:17;11596:45;11593:71;;;11644:18;;:::i;:::-;-1:-1:-1;11684:9:1;;11531:168::o;11704:127::-;11765:10;11760:3;11756:20;11753:1;11746:31;11796:4;11793:1;11786:15;11820:4;11817:1;11810:15;11836:120;11876:1;11902;11892:35;;11907:18;;:::i;:::-;-1:-1:-1;11941:9:1;;11836:120::o;13132:346::-;13334:2;13316:21;;;13373:2;13353:18;;;13346:30;-1:-1:-1;;;13407:2:1;13392:18;;13385:52;13469:2;13454:18;;13132:346::o;13483:347::-;13685:2;13667:21;;;13724:2;13704:18;;;13697:30;13763:25;13758:2;13743:18;;13736:53;13821:2;13806:18;;13483:347::o;13835:350::-;14037:2;14019:21;;;14076:2;14056:18;;;14049:30;14115:28;14110:2;14095:18;;14088:56;14176:2;14161:18;;13835:350::o;14190:128::-;14230:3;14261:1;14257:6;14254:1;14251:13;14248:39;;;14267:18;;:::i;:::-;-1:-1:-1;14303:9:1;;14190:128::o;14323:345::-;14525:2;14507:21;;;14564:2;14544:18;;;14537:30;-1:-1:-1;;;14598:2:1;14583:18;;14576:51;14659:2;14644:18;;14323:345::o;14673:342::-;14875:2;14857:21;;;14914:2;14894:18;;;14887:30;-1:-1:-1;;;14948:2:1;14933:18;;14926:48;15006:2;14991:18;;14673:342::o;15729:415::-;15931:2;15913:21;;;15970:2;15950:18;;;15943:30;16009:34;16004:2;15989:18;;15982:62;-1:-1:-1;;;16075:2:1;16060:18;;16053:49;16134:3;16119:19;;15729:415::o;16565:470::-;16744:3;16782:6;16776:13;16798:53;16844:6;16839:3;16832:4;16824:6;16820:17;16798:53;:::i;:::-;16914:13;;16873:16;;;;16936:57;16914:13;16873:16;16970:4;16958:17;;16936:57;:::i;:::-;17009:20;;16565:470;-1:-1:-1;;;;16565:470:1:o;20500:489::-;-1:-1:-1;;;;;20769:15:1;;;20751:34;;20821:15;;20816:2;20801:18;;20794:43;20868:2;20853:18;;20846:34;;;20916:3;20911:2;20896:18;;20889:31;;;20694:4;;20937:46;;20963:19;;20955:6;20937:46;:::i;:::-;20929:54;20500:489;-1:-1:-1;;;;;;20500:489:1:o;20994:249::-;21063:6;21116:2;21104:9;21095:7;21091:23;21087:32;21084:52;;;21132:1;21129;21122:12;21084:52;21164:9;21158:16;21183:30;21207:5;21183:30;:::i;21248:112::-;21280:1;21306;21296:35;;21311:18;;:::i;:::-;-1:-1:-1;21345:9:1;;21248:112::o

Swarm Source

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